diff --git a/.changeset/tonic-ui-900.md b/.changeset/tonic-ui-900.md deleted file mode 100644 index 2fd4b8c538..0000000000 --- a/.changeset/tonic-ui-900.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@tonic-ui/react": minor ---- - -feat(react/DatePicker): add `closeOnSelect` prop to automatically close the date picker after a date is selected diff --git a/.changeset/tonic-ui-900b.md b/.changeset/tonic-ui-900b.md deleted file mode 100644 index 3bf334be2f..0000000000 --- a/.changeset/tonic-ui-900b.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@tonic-ui/react": minor ---- - -test(react/DatePicker): resolve failing test snapshots diff --git a/.changeset/tonic-ui-904.md b/.changeset/tonic-ui-904.md deleted file mode 100644 index 0e8fd00481..0000000000 --- a/.changeset/tonic-ui-904.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@tonic-ui/react": minor -"@tonic-ui/utils": patch ---- - -feat(react/Calendar): enhance keyboard navigation and date selection -refactor(util/dom-query): handle invalid element input in `getAllFocusable` diff --git a/.changeset/tonic-ui-907.md b/.changeset/tonic-ui-907.md deleted file mode 100644 index 12c0a229e9..0000000000 --- a/.changeset/tonic-ui-907.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@tonic-ui/styled-system": patch ---- - -fix(styled-system): specify unit for CSS custom property negation diff --git a/.changeset/tonic-ui-912.md b/.changeset/tonic-ui-912.md deleted file mode 100644 index 868f5f3895..0000000000 --- a/.changeset/tonic-ui-912.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@tonic-ui/react": patch ---- - -fix(react/OverflowTooltip): show the tooltip only when the string is truncated and the `disabled` prop is not true diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index b545b95e5a..70133916e3 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,22 @@ # @tonic-ui/react +## 2.1.0 + +### Minor Changes + +- feat(react/DatePicker): add `closeOnSelect` prop to automatically close the date picker after a date is selected by [@cheton](https://github.com/cheton) in [#903](https://github.com/trendmicro-frontend/tonic-ui/pull/903) + +- test(react/DatePicker): resolve failing test snapshots by [@cheton](https://github.com/cheton) in [#906](https://github.com/trendmicro-frontend/tonic-ui/pull/906) + +- feat(react/Calendar): enhance keyboard navigation and date selection by [@cheton](https://github.com/cheton) in [#909](https://github.com/trendmicro-frontend/tonic-ui/pull/909) + +### Patch Changes + +- fix(react/OverflowTooltip): show the tooltip only when the string is truncated and the `disabled` prop is not true by [@tinaClin](https://github.com/tinaClin) in [#913](https://github.com/trendmicro-frontend/tonic-ui/pull/913) +- Updated dependencies [[`fa0f6cf`](https://github.com/trendmicro-frontend/tonic-ui/commit/fa0f6cf55672689cc2058c512f65afe3854e8e9a), [`272869f`](https://github.com/trendmicro-frontend/tonic-ui/commit/272869f92a6614a66767200a9a4cdf3d50bc07b1)] + - @tonic-ui/utils@2.0.1 + - @tonic-ui/styled-system@2.0.2 + ## 2.0.3 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 557c54198b..00d8e0f141 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/react", - "version": "2.0.3", + "version": "2.1.0", "description": "React Tonic UI component library.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -27,9 +27,9 @@ "@tonic-ui/react-base": "^2.0.1", "@tonic-ui/react-hooks": "^2.0.0", "@tonic-ui/react-icons": "^2.0.2", - "@tonic-ui/styled-system": "^2.0.1", + "@tonic-ui/styled-system": "^2.0.2", "@tonic-ui/theme": "^2.0.0", - "@tonic-ui/utils": "^2.0.0", + "@tonic-ui/utils": "^2.0.1", "date-fns": "2.x", "ensure-type": "^1.5.1", "lodash.get": "4.x", diff --git a/packages/styled-system/CHANGELOG.md b/packages/styled-system/CHANGELOG.md new file mode 100644 index 0000000000..3b331bb7ae --- /dev/null +++ b/packages/styled-system/CHANGELOG.md @@ -0,0 +1,7 @@ +# @tonic-ui/styled-system + +## 2.0.2 + +### Patch Changes + +- fix(styled-system): specify unit for CSS custom property negation by [@cheton](https://github.com/cheton) in [#908](https://github.com/trendmicro-frontend/tonic-ui/pull/908) diff --git a/packages/styled-system/package.json b/packages/styled-system/package.json index 2822cc198b..56c9f277aa 100644 --- a/packages/styled-system/package.json +++ b/packages/styled-system/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/styled-system", - "version": "2.0.1", + "version": "2.0.2", "description": "The framework agnostic styling engine for Tonic UI.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md new file mode 100644 index 0000000000..607ef9721b --- /dev/null +++ b/packages/utils/CHANGELOG.md @@ -0,0 +1,7 @@ +# @tonic-ui/utils + +## 2.0.1 + +### Patch Changes + +- refactor(util/dom-query): handle invalid element input in `getAllFocusable` by [@cheton](https://github.com/cheton) in [#909](https://github.com/trendmicro-frontend/tonic-ui/pull/909) diff --git a/packages/utils/package.json b/packages/utils/package.json index 1fbda94287..e2c8c3d229 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@tonic-ui/utils", - "version": "2.0.0", + "version": "2.0.1", "description": "Common utilities for various Tonic UI components and packages.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js",