@ariakit/react 0.3.11 → 0.3.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @ariakit/react
2
2
 
3
+ ## 0.3.12
4
+
5
+ - The auto-select feature on [Combobox](https://ariakit.org/components/combobox) now resets with each keystroke.
6
+ - Fixed [`Combobox`](https://ariakit.org/reference/combobox) with the [`autoSelect`](https://ariakit.org/reference/combobox#autoselect) prop calling `onFocus` with every input change.
7
+ - Fixed [`Hovercard`](https://ariakit.org/reference/hovercard) flickering when used with shadow DOM.
8
+ - Fixed [`Select`](https://ariakit.org/reference/select) with [`Combobox`](https://ariakit.org/reference/combobox) scroll jumping when opening using keyboard navigation.
9
+ - Fixed [`CompositeItem`](https://ariakit.org/reference/composite-item) triggering blur on focus.
10
+ - Fixed [`ComboboxItem`](https://ariakit.org/reference/combobox-item) not triggering the `onClick` event when the item is partially visible.
11
+ - Improved JSDocs.
12
+ - Updated dependencies: `@ariakit/react-core@0.3.12`
13
+
3
14
  ## 0.3.11
4
15
 
5
16
  ### Modal Combobox
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ariakit/react",
3
- "version": "0.3.11",
3
+ "version": "0.3.12",
4
4
  "description": "Toolkit for building accessible web apps with React",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",
@@ -37,7 +37,7 @@
37
37
  "components"
38
38
  ],
39
39
  "dependencies": {
40
- "@ariakit/react-core": "0.3.11"
40
+ "@ariakit/react-core": "0.3.12"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "react": "^17.0.0 || ^18.0.0",