@ariakit/react 0.4.7 → 0.4.8
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 +13 -0
- package/package.json +2 -2
- package/readme.md +5 -0
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# @ariakit/react
|
2
2
|
|
3
|
+
## 0.4.8
|
4
|
+
|
5
|
+
### Accessing selected tabs when disabled
|
6
|
+
|
7
|
+
A [Tab](https://ariakit.org/components/tab) component that is both selected and disabled will now remain accessible to keyboard focus even if the [`accessibleWhenDisabled`](https://ariakit.org/reference/tab#accessiblewhendisabled) prop is set to `false`. This ensures users can navigate to other tabs using the keyboard.
|
8
|
+
|
9
|
+
### Other updates
|
10
|
+
|
11
|
+
- Fixed [Dialog](https://ariakit.org/components/dialog) to prevent smooth scrolling on hide.
|
12
|
+
- Fixed [Hovercard](https://ariakit.org/components/hovercard) unexpectedly hiding when scrolling in Safari.
|
13
|
+
- Improved JSDocs.
|
14
|
+
- Updated dependencies: `@ariakit/react-core@0.4.8`
|
15
|
+
|
3
16
|
## 0.4.7
|
4
17
|
|
5
18
|
### New `SelectValue` component
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ariakit/react",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.8",
|
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.8"
|
41
41
|
},
|
42
42
|
"peerDependencies": {
|
43
43
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
package/readme.md
CHANGED