@ariakit/react 0.4.2 → 0.4.3
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.
- package/CHANGELOG.md +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# @ariakit/react
|
2
2
|
|
3
|
+
## 0.4.3
|
4
|
+
|
5
|
+
- Fixed TypeScript types for `ref`.
|
6
|
+
- Fixed [`CompositeItem`](https://ariakit.org/reference/composite-item) occasionally failing to set the [`activeId`](https://ariakit.org/reference/use-composite-store#activeid) state on focus.
|
7
|
+
- Fixed [`unmountOnHide`](https://ariakit.org/reference/tab-panel#unmountonhide) prop not working on [`TabPanel`](https://ariakit.org/reference/tab-panel) without [`tabId`](https://ariakit.org/reference/tab-panel#tabid).
|
8
|
+
- Fixed regression in `v0.4.2` that caused nested tabs to stop working.
|
9
|
+
- Added new [`combobox`](https://ariakit.org/reference/tab-provider#combobox) property to tab store.
|
10
|
+
- Improved JSDocs.
|
11
|
+
- Updated dependencies: `@ariakit/react-core@0.4.3`
|
12
|
+
|
3
13
|
## 0.4.2
|
4
14
|
|
5
15
|
### Tooltip behavior improvements
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ariakit/react",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.3",
|
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.4.
|
40
|
+
"@ariakit/react-core": "0.4.3"
|
41
41
|
},
|
42
42
|
"peerDependencies": {
|
43
43
|
"react": "^17.0.0 || ^18.0.0",
|