@@ -6,23 +6,49 @@ description: All notable changes will be documented in this file.
6
6
7
7
## [ Unreleased]
8
8
9
- ### Added
9
+ ## [ 3.6.0 ] - 2024-07-25
10
10
11
- - Added ` Fieldset ` component to help group form fields.
11
+ ### Added
12
12
13
+ - ** Fieldset Component** : Introduced to help group form fields.
13
14
``` jsx
14
15
< Fieldset .Root >
15
16
< Fieldset .Legend > Legend< / Fieldset .Legend >
16
17
< Fieldset .HelperText > Helper text< / Fieldset .HelperText >
17
18
< Fieldset .ErrorText > Error text< / Fieldset .ErrorText >
18
19
< / 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
+ )
19
33
```
20
34
21
- - Added ` Highlight ` component .
35
+ - ** Tooltip ** : Added ` closeOnClick ` to control tooltip closure on trigger click .
22
36
23
37
### Changed
24
38
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.
26
52
27
53
## [ 3.5.0] - 2024-06-30
28
54
0 commit comments