Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release packages (dev) #1364

Merged
merged 2 commits into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,47 @@
"astro-playground": "0.0.1",
"next-playground": "0.1.0",
"vite-playground": "0.0.0",
"examples": "0.0.0"
"examples": "0.0.0",
"a11y": "0.0.0"
},
"changesets": [
"beige-suits-jam",
"big-ducks-confess",
"brave-suits-exercise",
"calm-owls-shout",
"cold-needles-know",
"empty-months-rest",
"few-ghosts-judge",
"gorgeous-boxes-smell",
"happy-walls-nail",
"late-tips-beam",
"loud-adults-deny",
"many-actors-tell",
"nasty-walls-juggle",
"nervous-birds-shake",
"new-carrots-double",
"nine-clocks-compare",
"ninety-keys-double",
"ninety-phones-deny",
"odd-crabs-approve",
"polite-walls-rush",
"quick-balloons-drum",
"quick-dodos-hang",
"real-wombats-fly",
"rich-garlics-love",
"rotten-buckets-leave",
"rude-timers-lick",
"sharp-oranges-kneel",
"silly-roses-yell",
"silver-coats-eat",
"smart-guests-play",
"spicy-houses-join",
"spicy-tools-tell",
"thick-goats-work",
"thirty-lemons-tie",
"tiny-stingrays-allow",
"twelve-olives-roll",
"violet-laws-stare",
"young-beds-matter"
]
}
4 changes: 2 additions & 2 deletions apps/portal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"clean": "rimraf .turbo && rimraf node_modules && rimraf dist"
},
"dependencies": {
"@itwin/itwinui-css": "2.0.0-dev.3",
"@itwin/itwinui-variables": "2.1.0-dev.0",
"@itwin/itwinui-css": "2.0.0-dev.4",
"@itwin/itwinui-variables": "3.0.0-dev.1",
"astro": "2"
}
}
2 changes: 1 addition & 1 deletion apps/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {},
"devDependencies": {
"@itwin/itwinui-icons-react": "2",
"@itwin/itwinui-react": "3.0.0-dev.3",
"@itwin/itwinui-react": "3.0.0-dev.4",
"@storybook/addon-a11y": "~7.0.2",
"@storybook/addon-actions": "~7.0.2",
"@storybook/addon-essentials": "~7.0.2",
Expand Down
2 changes: 1 addition & 1 deletion apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@astrojs/sitemap": "^1.3.3",
"@fontsource/noto-sans": "^4.5.11",
"@fontsource/noto-sans-mono": "^4.5.11",
"@itwin/itwinui-react": "3.0.0-dev.3",
"@itwin/itwinui-react": "3.0.0-dev.4",
"@jsdevtools/rehype-toc": "3.0.2",
"@tippyjs/react": "4.2.6",
"@types/react": "^18.0.0",
Expand Down
12 changes: 12 additions & 0 deletions packages/itwinui-css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 2.0.0-dev.4

### Major Changes

- [#1255](https://github.com/iTwin/iTwinUI/pull/1255): `iui-folder` is updated to use `display: grid`. `iui-tile-name` is now moved outside of `iui-tile-content` for folder variant.
- [#1356](https://github.com/iTwin/iTwinUI/pull/1356): `iui-progress-radial` has been refactored to be a single `<div>` instead of using a nested svg. Size and status have been moved to data attributes. Also it is recommended to explicitly set `size` when using in other components.

### Minor Changes

- [#1362](https://github.com/iTwin/iTwinUI/pull/1362): All elements under the root will now get a default focus styling matching `--iui-color-border-accent`.
- [#1363](https://github.com/iTwin/iTwinUI/pull/1363): `iui-svg-icon` now supports controlling size and fill using `--iui-svg-size` and `--iui-svg-fill` custom properties.

## 2.0.0-dev.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/itwinui-css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/itwinui-css",
"version": "2.0.0-dev.3",
"version": "2.0.0-dev.4",
"author": "Bentley Systems",
"license": "MIT",
"main": "css/all.css",
Expand Down
20 changes: 20 additions & 0 deletions packages/itwinui-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 3.0.0-dev.4

### Major Changes

- [#1383](https://github.com/iTwin/iTwinUI/pull/1383): Removed previously-deprecated `UserIcon` and `UserIconGroup` components. Also removed `userIcon` prop from `Header`.
- [#1384](https://github.com/iTwin/iTwinUI/pull/1384): Removed previously-deprecated `Wizard` component (replaced by `Stepper` and `WorkflowDiagram`).
- [#1255](https://github.com/iTwin/iTwinUI/pull/1255): Updated Tile component to be composition of customizable subcomponents: `Tile.Name`, `Tile.NameIcon`, `Tile.NameLabel`, `Tile.Action`, `Tile.ThumbnailArea`, `Tile.ThumbnailPicture`, `Tile.BadgeContainer`, `Tile.TypeIndicator`, `Tile.QuickAction`, `Tile.ContentArea`, `Tile.Description`, `Tile.MoreOptions`, `Tile.Metadata`, `Tile.Buttons`. Certain props have been removed as they are now subcomponents: `name`, `description`, `metadata`, `thumbnail`, `badge`, `leftIcon`, `rightIcon`, `button`, `moreOptions`, `isActionable` props have been removed.

- [#1356](https://github.com/iTwin/iTwinUI/pull/1356): ProgressRadial has been refactored to be a single `<div>` instead of using a nested svg. Also it is recommended to explicitly set `size` when using in other components.
- [#1311](https://github.com/iTwin/iTwinUI/pull/1311): - Removed Tippy.js as dependency in Tooltip. Using FloatingUI instead.
- [#1388](https://github.com/iTwin/iTwinUI/pull/1388): Removed deprecated `HorizontalTabs` and `VerticalTabs` (replaced by `orientation` prop in `Tabs`).

### Minor Changes

- [#1362](https://github.com/iTwin/iTwinUI/pull/1362): All elements under the root will now get a default focus styling matching `--iui-color-border-accent`.

### Patch Changes

- [#1360](https://github.com/iTwin/iTwinUI/pull/1360): The `color-scheme` property will now be correctly set for dark theme, resulting in better theming of built-in html elements.

## 3.0.0-dev.3

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/itwinui-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/itwinui-react",
"version": "3.0.0-dev.3",
"version": "3.0.0-dev.4",
"author": "Bentley Systems",
"license": "MIT",
"main": "cjs/index.js",
Expand Down Expand Up @@ -83,8 +83,8 @@
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@itwin/itwinui-css": "^2.0.0-dev.3",
"@itwin/itwinui-variables": "2.1.0-dev.0",
"@itwin/itwinui-css": "^2.0.0-dev.4",
"@itwin/itwinui-variables": "3.0.0-dev.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.21",
"@testing-library/jest-dom": "^5.16.4",
Expand Down
10 changes: 10 additions & 0 deletions packages/itwinui-variables/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @itwin/itwinui-variables

## 3.0.0-dev.1

### Major Changes

- [#1359](https://github.com/iTwin/iTwinUI/pull/1359): `iui-root` has been removed. `data-iui-theme` must now always be set in order to use variables.

### Patch Changes

- [#1360](https://github.com/iTwin/iTwinUI/pull/1360): The `color-scheme` property will now be correctly set for dark theme, resulting in better theming of built-in html elements.

## 2.1.0-dev.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/itwinui-variables/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/itwinui-variables",
"version": "2.1.0-dev.0",
"version": "3.0.0-dev.1",
"author": "Bentley Systems",
"license": "MIT",
"main": "index.css",
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"dependencies": {
"@astrojs/react": "^2.0.2",
"@itwin/itwinui-react": "3.0.0-dev.3",
"@itwin/itwinui-react": "3.0.0-dev.4",
"astro": "^2.0.13",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"clean": "rimraf .turbo && rimraf node_modules && rimraf .next"
},
"dependencies": {
"@itwin/itwinui-react": "3.0.0-dev.3",
"@itwin/itwinui-react": "3.0.0-dev.4",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"clean": "rimraf .turbo && rimraf node_modules && rimraf dist"
},
"dependencies": {
"@itwin/itwinui-react": "3.0.0-dev.3",
"@itwin/itwinui-react": "3.0.0-dev.4",
"@itwin/itwinui-icons-react": "2",
"react": "^18.0.0",
"react-dom": "^18.0.0"
Expand Down
2 changes: 1 addition & 1 deletion testing/a11y/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"clean": "rimraf .turbo && rimraf node_modules"
},
"dependencies": {
"@itwin/itwinui-react": "3.0.0-dev.3",
"@itwin/itwinui-react": "3.0.0-dev.4",
"axe-core": "^4.7.2",
"cypress": "^12.16.0",
"cypress-axe": "^1.4.0",
Expand Down