Skip to content

Commit

Permalink
chore: rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
cschroeter committed Jul 25, 2024
1 parent 4d0217d commit ddb7240
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 15 deletions.
34 changes: 30 additions & 4 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<Fieldset.Root>
<Fieldset.Legend>Legend</Fieldset.Legend>
<Fieldset.HelperText>Helper text</Fieldset.HelperText>
<Fieldset.ErrorText>Error text</Fieldset.ErrorText>
</Fieldset.Root>
```
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 = () => (
<Highlight
query={['Ark UI', 'exclusive examples']}
text="Unlock exclusive examples and support the development by getting Ark UI Plus."
/>
)
```

- 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

Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
34 changes: 30 additions & 4 deletions packages/solid/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<Fieldset.Root>
<Fieldset.Legend>Legend</Fieldset.Legend>
<Fieldset.HelperText>Helper text</Fieldset.HelperText>
<Fieldset.ErrorText>Error text</Fieldset.ErrorText>
</Fieldset.Root>
```
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 = () => (
<Highlight
query={['Ark UI', 'exclusive examples']}
text="Unlock exclusive examples and support the development by getting Ark UI Plus."
/>
)
```

- 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

Expand Down
2 changes: 1 addition & 1 deletion packages/solid/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
34 changes: 30 additions & 4 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<Fieldset.Root>
<Fieldset.Legend>Legend</Fieldset.Legend>
<Fieldset.HelperText>Helper text</Fieldset.HelperText>
<Fieldset.ErrorText>Error text</Fieldset.ErrorText>
</Fieldset.Root>
```
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 = () => (
<Highlight
query={['Ark UI', 'exclusive examples']}
text="Unlock exclusive examples and support the development by getting Ark UI Plus."
/>
)
```

- 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

Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit ddb7240

Please sign in to comment.