Skip to content

Commit b9f2fe1

Browse files
committed
Merge branch 'main' of github.com:chakra-ui/atlas
2 parents 4d0217d + 1739bcb commit b9f2fe1

File tree

6 files changed

+93
-15
lines changed

6 files changed

+93
-15
lines changed

packages/react/CHANGELOG.md

+30-4
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,49 @@ description: All notable changes will be documented in this file.
66

77
## [Unreleased]
88

9-
### Added
9+
## [3.6.0] - 2024-07-25
1010

11-
- Added `Fieldset` component to help group form fields.
11+
### Added
1212

13+
- **Fieldset Component**: Introduced to help group form fields.
1314
```jsx
1415
<Fieldset.Root>
1516
<Fieldset.Legend>Legend</Fieldset.Legend>
1617
<Fieldset.HelperText>Helper text</Fieldset.HelperText>
1718
<Fieldset.ErrorText>Error text</Fieldset.ErrorText>
1819
</Fieldset.Root>
20+
```
21+
Learn more in the [documentation](https://ark-ui.com/docs/react/components/fieldset).
22+
23+
- **Highlight Component**: Added to highlight text based on a query.
24+
```jsx
25+
import { Highlight } from '@ark-ui/react'
26+
27+
export const App = () => (
28+
<Highlight
29+
query={['Ark UI', 'exclusive examples']}
30+
text="Unlock exclusive examples and support the development by getting Ark UI Plus."
31+
/>
32+
)
1933
```
2034

21-
- Added `Highlight` component.
35+
- **Tooltip**: Added `closeOnClick` to control tooltip closure on trigger click.
2236

2337
### Changed
2438

25-
- **Toast**: Exported `CreateToasterReturn` type to improve type inference when creating a toaster.
39+
- **Toast**: Exported `CreateToasterReturn` type to improve type inference.
40+
- **Combobox**: Enhanced accessibility by removing unnecessary `aria-selected` and `aria-disabled` attributes.
41+
42+
### Fixed
43+
44+
- **Toast**: Added missing `aria-labelledby` and `aria-describedby` attributes on the root element.
45+
- **Combobox**: Fixed issue where the input didn't update on selection with a pointer.
46+
- **RadioGroup**: Corrected misspelt `data-readonly` attribute.
47+
- **Select**: Enabled customization of `closeOnSelect` when `multiple` is true.
48+
- **Tags Input**:
49+
- Fixed issues with repeat pasting and undo.
50+
- Addressed problem where deleting a pasted value disabled further pasting.
51+
- Ensured values are always unique by discarding duplicates.
2652

2753
## [3.5.0] - 2024-06-30
2854

packages/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ark-ui/react",
3-
"version": "3.5.0",
3+
"version": "3.6.0",
44
"description": "A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.",
55
"keywords": [
66
"accordion",

packages/solid/CHANGELOG.md

+30-4
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,49 @@ description: All notable changes will be documented in this file.
66

77
## [Unreleased]
88

9-
### Added
9+
## [3.6.0] - 2024-07-25
1010

11-
- Added `Fieldset` component to help group form fields.
11+
### Added
1212

13+
- **Fieldset Component**: Introduced to help group form fields.
1314
```jsx
1415
<Fieldset.Root>
1516
<Fieldset.Legend>Legend</Fieldset.Legend>
1617
<Fieldset.HelperText>Helper text</Fieldset.HelperText>
1718
<Fieldset.ErrorText>Error text</Fieldset.ErrorText>
1819
</Fieldset.Root>
20+
```
21+
Learn more in the [documentation](https://ark-ui.com/docs/react/components/fieldset).
22+
23+
- **Highlight Component**: Added to highlight text based on a query.
24+
```jsx
25+
import { Highlight } from '@ark-ui/react'
26+
27+
export const App = () => (
28+
<Highlight
29+
query={['Ark UI', 'exclusive examples']}
30+
text="Unlock exclusive examples and support the development by getting Ark UI Plus."
31+
/>
32+
)
1933
```
2034

21-
- Added `Highlight` component.
35+
- **Tooltip**: Added `closeOnClick` to control tooltip closure on trigger click.
2236

2337
### Changed
2438

25-
- **Toast**: Exported `CreateToasterReturn` type to improve type inference when creating a toaster.
39+
- **Toast**: Exported `CreateToasterReturn` type to improve type inference.
40+
- **Combobox**: Enhanced accessibility by removing unnecessary `aria-selected` and `aria-disabled` attributes.
41+
42+
### Fixed
43+
44+
- **Toast**: Added missing `aria-labelledby` and `aria-describedby` attributes on the root element.
45+
- **Combobox**: Fixed issue where the input didn't update on selection with a pointer.
46+
- **RadioGroup**: Corrected misspelt `data-readonly` attribute.
47+
- **Select**: Enabled customization of `closeOnSelect` when `multiple` is true.
48+
- **Tags Input**:
49+
- Fixed issues with repeat pasting and undo.
50+
- Addressed problem where deleting a pasted value disabled further pasting.
51+
- Ensured values are always unique by discarding duplicates
2652

2753
## [3.5.0] - 2024-06-30
2854

packages/solid/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ark-ui/solid",
3-
"version": "3.5.0",
3+
"version": "3.6.0",
44
"description": "A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.",
55
"keywords": [
66
"accordion",

packages/vue/CHANGELOG.md

+30-4
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,49 @@ description: All notable changes will be documented in this file.
66

77
## [Unreleased]
88

9-
### Added
9+
## [3.7.0] - 2024-07-25
1010

11-
- Added `Fieldset` component to help group form fields.
11+
### Added
1212

13+
- **Fieldset Component**: Introduced to help group form fields.
1314
```jsx
1415
<Fieldset.Root>
1516
<Fieldset.Legend>Legend</Fieldset.Legend>
1617
<Fieldset.HelperText>Helper text</Fieldset.HelperText>
1718
<Fieldset.ErrorText>Error text</Fieldset.ErrorText>
1819
</Fieldset.Root>
20+
```
21+
Learn more in the [documentation](https://ark-ui.com/docs/react/components/fieldset).
22+
23+
- **Highlight Component**: Added to highlight text based on a query.
24+
```jsx
25+
import { Highlight } from '@ark-ui/react'
26+
27+
export const App = () => (
28+
<Highlight
29+
query={['Ark UI', 'exclusive examples']}
30+
text="Unlock exclusive examples and support the development by getting Ark UI Plus."
31+
/>
32+
)
1933
```
2034

21-
- Added `Highlight` component.
35+
- **Tooltip**: Added `closeOnClick` to control tooltip closure on trigger click.
2236

2337
### Changed
2438

25-
- **Toast**: Exported `CreateToasterReturn` type to improve type inference when creating a toaster.
39+
- **Toast**: Exported `CreateToasterReturn` type to improve type inference.
40+
- **Combobox**: Enhanced accessibility by removing unnecessary `aria-selected` and `aria-disabled` attributes.
41+
42+
### Fixed
43+
44+
- **Toast**: Added missing `aria-labelledby` and `aria-describedby` attributes on the root element.
45+
- **Combobox**: Fixed issue where the input didn't update on selection with a pointer.
46+
- **RadioGroup**: Corrected misspelt `data-readonly` attribute.
47+
- **Select**: Enabled customization of `closeOnSelect` when `multiple` is true.
48+
- **Tags Input**:
49+
- Fixed issues with repeat pasting and undo.
50+
- Addressed problem where deleting a pasted value disabled further pasting.
51+
- Ensured values are always unique by discarding duplicates
2652

2753
## [3.6.0] - 2024-06-30
2854

packages/vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ark-ui/vue",
3-
"version": "3.6.0",
3+
"version": "3.7.0",
44
"description": "A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.",
55
"keywords": [
66
"accordion",

0 commit comments

Comments
 (0)