diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 1d72a5c9..d69e332a 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.8](https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/core@0.14.7...@mezzanine-ui/core@0.14.8) (2024-04-12) + +### Features + +- **core/table:** add disabledRowKeys typing for rowSelection ([b35ea68](https://github.com/Mezzanine-UI/mezzanine/commit/b35ea68e8c6791b5f04958b4ce1cb47371384390)) + ## [0.14.7](https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/core@0.14.6...@mezzanine-ui/core@0.14.7) (2024-03-06) **Note:** Version bump only for package @mezzanine-ui/core diff --git a/packages/core/package.json b/packages/core/package.json index a94b06f0..0f923f5f 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@mezzanine-ui/core", - "version": "0.14.7", + "version": "0.14.8", "description": "Core for mezzanine-ui", "author": "Mezzanine", "repository": { @@ -40,8 +40,8 @@ } }, "dependencies": { - "@mezzanine-ui/icons": "^0.14.7", - "@mezzanine-ui/system": "^0.14.7", + "@mezzanine-ui/icons": "^0.14.8", + "@mezzanine-ui/system": "^0.14.8", "lodash": "^4.17.21", "tslib": "^2.4.1" }, diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 3b2e5c64..06ff5196 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.8](https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/icons@0.14.7...@mezzanine-ui/icons@0.14.8) (2024-04-12) + +**Note:** Version bump only for package @mezzanine-ui/icons + ## [0.14.7](https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/icons@0.14.6...@mezzanine-ui/icons@0.14.7) (2024-03-06) **Note:** Version bump only for package @mezzanine-ui/icons diff --git a/packages/icons/package.json b/packages/icons/package.json index 04f4b182..9b464ec2 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@mezzanine-ui/icons", - "version": "0.14.7", + "version": "0.14.8", "description": "Icons for mezzanine-ui", "author": "Mezzanine", "repository": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index a4b706e1..64b0386c 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.8](https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.14.7...@mezzanine-ui/react@0.14.8) (2024-04-12) + +### Bug Fixes + +- **react/table:** fix type of bodyRowClassName ([28fd407](https://github.com/Mezzanine-UI/mezzanine/commit/28fd40764ef9d6b2ff4289a827265db10c7124f9)) + +### Features + +- **react/table:** export useTableRowSelection & SELECTED_ALL_KEY ([b09ae73](https://github.com/Mezzanine-UI/mezzanine/commit/b09ae735243ce073e0af68277ce976d8736feff1)) +- **react/table:** implement rowSelection.disabledRowKeys for table ([f00560e](https://github.com/Mezzanine-UI/mezzanine/commit/f00560eb1bbfc42f8a98cff6ca30e66018e9b289)) + ## [0.14.7](https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.14.6...@mezzanine-ui/react@0.14.7) (2024-03-06) ### Features diff --git a/packages/react/package.json b/packages/react/package.json index 17cd6c88..c96e4b21 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@mezzanine-ui/react", - "version": "0.14.7", + "version": "0.14.8", "description": "React components for mezzanine-ui", "author": "Mezzanine", "repository": { @@ -28,9 +28,9 @@ "react-dom": "^18.2.0" }, "dependencies": { - "@mezzanine-ui/core": "^0.14.7", - "@mezzanine-ui/icons": "^0.14.7", - "@mezzanine-ui/system": "^0.14.7", + "@mezzanine-ui/core": "^0.14.8", + "@mezzanine-ui/icons": "^0.14.8", + "@mezzanine-ui/system": "^0.14.8", "@popperjs/core": "^2.11.6", "@types/react-transition-group": "^4.4.8", "clsx": "^2.0.0", diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index 5c21a096..f573a840 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.8](https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/system@0.14.7...@mezzanine-ui/system@0.14.8) (2024-04-12) + +**Note:** Version bump only for package @mezzanine-ui/system + ## [0.14.7](https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/system@0.14.6...@mezzanine-ui/system@0.14.7) (2024-03-06) **Note:** Version bump only for package @mezzanine-ui/system diff --git a/packages/system/package.json b/packages/system/package.json index 543ddebb..5edfb55b 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@mezzanine-ui/system", - "version": "0.14.7", + "version": "0.14.8", "description": "Design System for mezzanine-ui", "author": "Mezzanine", "repository": {