From ddb724007c2282cfdfc5f6a8b722a1764ebd722a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Schr=C3=B6ter?= Date: Thu, 25 Jul 2024 17:59:10 +0200 Subject: [PATCH] chore: rollback --- packages/react/CHANGELOG.md | 34 ++++++++++++++++++++++++++++++---- packages/react/package.json | 2 +- packages/solid/CHANGELOG.md | 34 ++++++++++++++++++++++++++++++---- packages/solid/package.json | 2 +- packages/vue/CHANGELOG.md | 34 ++++++++++++++++++++++++++++++---- packages/vue/package.json | 2 +- 6 files changed, 93 insertions(+), 15 deletions(-) diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 39fd585922..efb1261174 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -6,23 +6,49 @@ description: All notable changes will be documented in this file. ## [Unreleased] -### Added +## [3.6.0] - 2024-07-25 -- Added `Fieldset` component to help group form fields. +### Added +- **Fieldset Component**: Introduced to help group form fields. ```jsx Legend Helper text Error text +``` + Learn more in the [documentation](https://ark-ui.com/docs/react/components/fieldset). + +- **Highlight Component**: Added to highlight text based on a query. +```jsx +import { Highlight } from '@ark-ui/react' + +export const App = () => ( + +) ``` -- Added `Highlight` component. +- **Tooltip**: Added `closeOnClick` to control tooltip closure on trigger click. ### Changed -- **Toast**: Exported `CreateToasterReturn` type to improve type inference when creating a toaster. +- **Toast**: Exported `CreateToasterReturn` type to improve type inference. +- **Combobox**: Enhanced accessibility by removing unnecessary `aria-selected` and `aria-disabled` attributes. + +### Fixed + +- **Toast**: Added missing `aria-labelledby` and `aria-describedby` attributes on the root element. +- **Combobox**: Fixed issue where the input didn't update on selection with a pointer. +- **RadioGroup**: Corrected misspelt `data-readonly` attribute. +- **Select**: Enabled customization of `closeOnSelect` when `multiple` is true. +- **Tags Input**: + - Fixed issues with repeat pasting and undo. + - Addressed problem where deleting a pasted value disabled further pasting. + - Ensured values are always unique by discarding duplicates. ## [3.5.0] - 2024-06-30 diff --git a/packages/react/package.json b/packages/react/package.json index 8b57afd702..307b99f641 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@ark-ui/react", - "version": "3.5.0", + "version": "3.6.0", "description": "A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.", "keywords": [ "accordion", diff --git a/packages/solid/CHANGELOG.md b/packages/solid/CHANGELOG.md index cb2e5b97e3..c54555e8cf 100644 --- a/packages/solid/CHANGELOG.md +++ b/packages/solid/CHANGELOG.md @@ -6,23 +6,49 @@ description: All notable changes will be documented in this file. ## [Unreleased] -### Added +## [3.6.0] - 2024-07-25 -- Added `Fieldset` component to help group form fields. +### Added +- **Fieldset Component**: Introduced to help group form fields. ```jsx Legend Helper text Error text +``` + Learn more in the [documentation](https://ark-ui.com/docs/react/components/fieldset). + +- **Highlight Component**: Added to highlight text based on a query. +```jsx +import { Highlight } from '@ark-ui/react' + +export const App = () => ( + +) ``` -- Added `Highlight` component. +- **Tooltip**: Added `closeOnClick` to control tooltip closure on trigger click. ### Changed -- **Toast**: Exported `CreateToasterReturn` type to improve type inference when creating a toaster. +- **Toast**: Exported `CreateToasterReturn` type to improve type inference. +- **Combobox**: Enhanced accessibility by removing unnecessary `aria-selected` and `aria-disabled` attributes. + +### Fixed + +- **Toast**: Added missing `aria-labelledby` and `aria-describedby` attributes on the root element. +- **Combobox**: Fixed issue where the input didn't update on selection with a pointer. +- **RadioGroup**: Corrected misspelt `data-readonly` attribute. +- **Select**: Enabled customization of `closeOnSelect` when `multiple` is true. +- **Tags Input**: + - Fixed issues with repeat pasting and undo. + - Addressed problem where deleting a pasted value disabled further pasting. + - Ensured values are always unique by discarding duplicates ## [3.5.0] - 2024-06-30 diff --git a/packages/solid/package.json b/packages/solid/package.json index b8deb1449f..ca0ab6ed3d 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@ark-ui/solid", - "version": "3.5.0", + "version": "3.6.0", "description": "A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.", "keywords": [ "accordion", diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index 2c37b3008f..40b0b4b848 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -6,23 +6,49 @@ description: All notable changes will be documented in this file. ## [Unreleased] -### Added +## [3.7.0] - 2024-07-25 -- Added `Fieldset` component to help group form fields. +### Added +- **Fieldset Component**: Introduced to help group form fields. ```jsx Legend Helper text Error text +``` + Learn more in the [documentation](https://ark-ui.com/docs/react/components/fieldset). + +- **Highlight Component**: Added to highlight text based on a query. +```jsx +import { Highlight } from '@ark-ui/react' + +export const App = () => ( + +) ``` -- Added `Highlight` component. +- **Tooltip**: Added `closeOnClick` to control tooltip closure on trigger click. ### Changed -- **Toast**: Exported `CreateToasterReturn` type to improve type inference when creating a toaster. +- **Toast**: Exported `CreateToasterReturn` type to improve type inference. +- **Combobox**: Enhanced accessibility by removing unnecessary `aria-selected` and `aria-disabled` attributes. + +### Fixed + +- **Toast**: Added missing `aria-labelledby` and `aria-describedby` attributes on the root element. +- **Combobox**: Fixed issue where the input didn't update on selection with a pointer. +- **RadioGroup**: Corrected misspelt `data-readonly` attribute. +- **Select**: Enabled customization of `closeOnSelect` when `multiple` is true. +- **Tags Input**: + - Fixed issues with repeat pasting and undo. + - Addressed problem where deleting a pasted value disabled further pasting. + - Ensured values are always unique by discarding duplicates ## [3.6.0] - 2024-06-30 diff --git a/packages/vue/package.json b/packages/vue/package.json index de032519ec..a80851bba1 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@ark-ui/vue", - "version": "3.6.0", + "version": "3.7.0", "description": "A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.", "keywords": [ "accordion",