diff --git a/.changeset/blue-frogs-visit.md b/.changeset/blue-frogs-visit.md deleted file mode 100644 index 3ffb333bdc0a..000000000000 --- a/.changeset/blue-frogs-visit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stratakit/mui": patch ---- - -Fixed an issue where the viewport was still scrollable when a `Dialog` or `Drawer` was open. diff --git a/.changeset/chubby-ways-relax.md b/.changeset/chubby-ways-relax.md deleted file mode 100644 index 6e3262509a0a..000000000000 --- a/.changeset/chubby-ways-relax.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stratakit/mui": patch ---- - -Added `render` prop to `Accordion`'s `slotProps.heading`. diff --git a/.changeset/curly-numbers-wait.md b/.changeset/curly-numbers-wait.md deleted file mode 100644 index b0e90e6337a0..000000000000 --- a/.changeset/curly-numbers-wait.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@stratakit/foundations": patch -"@stratakit/mui": patch ---- - -Updated portal container rendering to prevent initially open `Dialog` incorrectly being `aria-hidden` diff --git a/.changeset/eleven-trams-listen.md b/.changeset/eleven-trams-listen.md deleted file mode 100644 index dbae983d7dec..000000000000 --- a/.changeset/eleven-trams-listen.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -"@stratakit/icons": patch ---- - -Added new icons: - -- `arrow-north.svg` -- `assign.svg` -- `prefab.svg` -- `reaction-add.svg` -- `slab-opening.svg` -- `slab-region.svg` -- `slice.svg` -- `unassign.svg` - -Updated icons: - -- `construction-area.svg` -- `list.svg` -- `sorting.svg` diff --git a/.changeset/fiery-bats-jam.md b/.changeset/fiery-bats-jam.md deleted file mode 100644 index 0b5cac7890d4..000000000000 --- a/.changeset/fiery-bats-jam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stratakit/icons": patch ---- - -Fixed `merge-cells.svg` to use the correct glyph. diff --git a/.changeset/five-lilies-ask.md b/.changeset/five-lilies-ask.md deleted file mode 100644 index 82c576dd695b..000000000000 --- a/.changeset/five-lilies-ask.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stratakit/icons": patch ---- - -Added `components.svg` diff --git a/.changeset/old-buses-stare.md b/.changeset/old-buses-stare.md deleted file mode 100644 index 464aa647f3d1..000000000000 --- a/.changeset/old-buses-stare.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stratakit/mui": patch ---- - -Deprecated MUI's `Icon` component. diff --git a/.changeset/quick-owls-eat.md b/.changeset/quick-owls-eat.md deleted file mode 100644 index 6fe016d2bd53..000000000000 --- a/.changeset/quick-owls-eat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stratakit/mui": patch ---- - -Updated `Tooltip` component to be placed in the [top layer](https://developer.mozilla.org/en-US/docs/Glossary/Top_layer). diff --git a/.changeset/violet-toes-vanish.md b/.changeset/violet-toes-vanish.md deleted file mode 100644 index 91062575a1ed..000000000000 --- a/.changeset/violet-toes-vanish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stratakit/mui": patch ---- - -Fixed a bug with `Tooltip` overflow causing scrollbars. diff --git a/.changeset/young-worlds-report.md b/.changeset/young-worlds-report.md deleted file mode 100644 index 4a7fea58cf0f..000000000000 --- a/.changeset/young-worlds-report.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stratakit/mui": patch ---- - -Deprecated MUI `SvgIcon` in favor of StrataKit `Icon`. diff --git a/.changeset/yummy-crabs-post.md b/.changeset/yummy-crabs-post.md deleted file mode 100644 index de61028c5d76..000000000000 --- a/.changeset/yummy-crabs-post.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stratakit/structures": patch ---- - -Fix icon size of `NavigationRail.Button` and `NavigationRail.Anchor` components when a React element is passed to the `icon` prop. diff --git a/packages/foundations/CHANGELOG.md b/packages/foundations/CHANGELOG.md index 8cba06b9cce8..21b42a1ed90c 100644 --- a/packages/foundations/CHANGELOG.md +++ b/packages/foundations/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.4.10 + +- [#1658](https://github.com/iTwin/stratakit/pull/1658): Updated the `Root` component to render the portal container before `children`. + ## 0.4.9 - [#1516](https://github.com/iTwin/stratakit/pull/1516): Adjusted sizes for `caption-*` typography variants. diff --git a/packages/foundations/package.json b/packages/foundations/package.json index 916d994b8604..24522ff6a475 100644 --- a/packages/foundations/package.json +++ b/packages/foundations/package.json @@ -1,7 +1,7 @@ { "name": "@stratakit/foundations", "type": "module", - "version": "0.4.9", + "version": "0.4.10", "license": "MIT", "sideEffects": false, "types": "./dist/index.d.ts", diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index d0b560c167e7..f7eeb99e4024 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 0.4.3 + +- [#1682](https://github.com/iTwin/stratakit/pull/1682): Added new icons: + - `arrow-north.svg` + - `assign.svg` + - `prefab.svg` + - `reaction-add.svg` + - `slab-opening.svg` + - `slab-region.svg` + - `slice.svg` + - `unassign.svg` + + Updated icons: + - `construction-area.svg` + - `list.svg` + - `sorting.svg` + +- [#1661](https://github.com/iTwin/stratakit/pull/1661): Added new icon: `components.svg`. +- [#1674](https://github.com/iTwin/stratakit/pull/1674): Updated icon: `merge-cells.svg` (now uses the correct glyph for the regular size). + ## 0.4.2 - [#1630](https://github.com/iTwin/stratakit/pull/1630): Added new icons: diff --git a/packages/icons/package.json b/packages/icons/package.json index 9989aba94a3b..442f7ad7c18f 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,7 +1,7 @@ { "name": "@stratakit/icons", "type": "module", - "version": "0.4.2", + "version": "0.4.3", "license": "MIT", "exports": { "./*.svg": "./icons/*.svg", diff --git a/packages/mui/CHANGELOG.md b/packages/mui/CHANGELOG.md index 56a7bb47d22b..0af1eb561945 100644 --- a/packages/mui/CHANGELOG.md +++ b/packages/mui/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.5.3 + +- [#1657](https://github.com/iTwin/stratakit/pull/1657): Added `render` prop to `Accordion`'s `slotProps.heading`. +- [#1658](https://github.com/iTwin/stratakit/pull/1658): Updated portal container rendering to prevent an initially open `Dialog` incorrectly being `aria-hidden`. +- [#1665](https://github.com/iTwin/stratakit/pull/1665): Updated `Tooltip` component to be placed in the [top layer](https://developer.mozilla.org/en-US/docs/Glossary/Top_layer). +- [#1668](https://github.com/iTwin/stratakit/pull/1668): Fixed an issue where the viewport was still scrollable when a `Dialog` or `Drawer` was open. +- [#1651](https://github.com/iTwin/stratakit/pull/1651): Fixed a bug with `Tooltip` overflow causing scrollbars. +- [#1655](https://github.com/iTwin/stratakit/pull/1655): Deprecated MUI `SvgIcon` in favor of StrataKit's `Icon`. +- [#1676](https://github.com/iTwin/stratakit/pull/1676): Deprecated MUI `Icon` in favor of StrataKit's `Icon`. +- Updated dependencies: + - @stratakit/foundations@0.4.10 + - @stratakit/icons@0.4.3 + ## 0.5.2 - [#1575](https://github.com/iTwin/stratakit/pull/1575): Added `size` prop to `Badge` when `inline`. diff --git a/packages/mui/package.json b/packages/mui/package.json index ca5388ee555c..9667bd85e451 100644 --- a/packages/mui/package.json +++ b/packages/mui/package.json @@ -1,7 +1,7 @@ { "name": "@stratakit/mui", "type": "module", - "version": "0.5.2", + "version": "0.5.3", "license": "MIT", "sideEffects": false, "types": "./dist/index.d.ts", @@ -53,8 +53,8 @@ "@emotion/cache": "^11.14.0", "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.1", - "@stratakit/foundations": "^0.4.9", - "@stratakit/icons": "^0.4.2", + "@stratakit/foundations": "^0.4.10", + "@stratakit/icons": "^0.4.3", "classnames": "^2.5.1", "react-compiler-runtime": "^1.0.0" }, diff --git a/packages/structures/CHANGELOG.md b/packages/structures/CHANGELOG.md index ce6ef1027a8d..b79547d05b36 100644 --- a/packages/structures/CHANGELOG.md +++ b/packages/structures/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.5.9 + +- [#1664](https://github.com/iTwin/stratakit/pull/1664): Fixed icon size of `NavigationRail.Button` and `NavigationRail.Anchor` components when a React element is passed to the `icon` prop. +- Updated dependencies: + - @stratakit/foundations@0.4.10 + ## 0.5.8 - [#1445](https://github.com/iTwin/stratakit/pull/1445): Added `suffix` prop to `NavigationRail.Anchor` and `NavigationRail.Button` components. diff --git a/packages/structures/package.json b/packages/structures/package.json index 2c35501a8041..7bf3f20ed96e 100644 --- a/packages/structures/package.json +++ b/packages/structures/package.json @@ -1,7 +1,7 @@ { "name": "@stratakit/structures", "type": "module", - "version": "0.5.8", + "version": "0.5.9", "license": "MIT", "sideEffects": false, "types": "./dist/index.d.ts", @@ -125,7 +125,7 @@ "dependencies": { "@ariakit/react": "^0.4.29", "@stratakit/bricks": "^0.5.5", - "@stratakit/foundations": "^0.4.9", + "@stratakit/foundations": "^0.4.10", "classnames": "^2.5.1", "react-compiler-runtime": "^1.0.0", "zustand": "^5.0.14" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6b015202de43..9020e9f9b7c6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -435,10 +435,10 @@ importers: specifier: ^9.0.0 version: 9.0.1(@emotion/react@11.14.0(@types/react@19.2.16)(react@19.2.7))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.16)(react@19.2.7))(@types/react@19.2.16)(react@19.2.7))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) "@stratakit/foundations": - specifier: ^0.4.9 + specifier: ^0.4.10 version: link:../foundations "@stratakit/icons": - specifier: ^0.4.2 + specifier: ^0.4.3 version: link:../icons classnames: specifier: ^2.5.1 @@ -478,7 +478,7 @@ importers: specifier: ^0.5.5 version: link:../bricks "@stratakit/foundations": - specifier: ^0.4.9 + specifier: ^0.4.10 version: link:../foundations classnames: specifier: ^2.5.1