@ark-ui/react 5.13.0 → 5.14.0
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/dist/components/menu/menu-checkbox-item.cjs +1 -1
- package/dist/components/menu/menu-checkbox-item.js +2 -2
- package/dist/components/menu/menu-item-indicator.cjs +2 -2
- package/dist/components/menu/menu-item-indicator.js +3 -3
- package/dist/components/menu/menu-item-text.cjs +2 -2
- package/dist/components/menu/menu-item-text.js +3 -3
- package/dist/components/menu/menu-item.cjs +2 -1
- package/dist/components/menu/menu-item.js +2 -1
- package/dist/components/menu/menu-radio-item.cjs +1 -1
- package/dist/components/menu/menu-radio-item.js +2 -2
- package/dist/components/menu/use-menu-option-item-props-context.cjs +6 -6
- package/dist/components/menu/use-menu-option-item-props-context.d.cts +2 -2
- package/dist/components/menu/use-menu-option-item-props-context.d.ts +2 -2
- package/dist/components/menu/use-menu-option-item-props-context.js +5 -5
- package/package.json +72 -84
|
@@ -28,7 +28,7 @@ const MenuCheckboxItem = react.forwardRef((props, ref) => {
|
|
|
28
28
|
const menu = useMenuContext.useMenuContext();
|
|
29
29
|
const mergedProps = react$1.mergeProps(menu.getOptionItemProps(optionItemProps), localProps);
|
|
30
30
|
const optionItemState = menu.getOptionItemState(optionItemProps);
|
|
31
|
-
return /* @__PURE__ */ jsxRuntime.jsx(useMenuOptionItemPropsContext.
|
|
31
|
+
return /* @__PURE__ */ jsxRuntime.jsx(useMenuOptionItemPropsContext.MenuItemPropsProvider, { value: optionItemProps, children: /* @__PURE__ */ jsxRuntime.jsx(useMenuItemContext.MenuItemProvider, { value: optionItemState, children: /* @__PURE__ */ jsxRuntime.jsx(factory.ark.div, { ...mergedProps, ref }) }) });
|
|
32
32
|
});
|
|
33
33
|
MenuCheckboxItem.displayName = "MenuCheckboxItem";
|
|
34
34
|
|
|
@@ -6,7 +6,7 @@ import { createSplitProps } from '../../utils/create-split-props.js';
|
|
|
6
6
|
import { ark } from '../factory.js';
|
|
7
7
|
import { useMenuContext } from './use-menu-context.js';
|
|
8
8
|
import { MenuItemProvider } from './use-menu-item-context.js';
|
|
9
|
-
import {
|
|
9
|
+
import { MenuItemPropsProvider } from './use-menu-option-item-props-context.js';
|
|
10
10
|
|
|
11
11
|
const MenuCheckboxItem = forwardRef((props, ref) => {
|
|
12
12
|
const [partialOptionItemProps, localProps] = createSplitProps()(props, [
|
|
@@ -24,7 +24,7 @@ const MenuCheckboxItem = forwardRef((props, ref) => {
|
|
|
24
24
|
const menu = useMenuContext();
|
|
25
25
|
const mergedProps = mergeProps(menu.getOptionItemProps(optionItemProps), localProps);
|
|
26
26
|
const optionItemState = menu.getOptionItemState(optionItemProps);
|
|
27
|
-
return /* @__PURE__ */ jsx(
|
|
27
|
+
return /* @__PURE__ */ jsx(MenuItemPropsProvider, { value: optionItemProps, children: /* @__PURE__ */ jsx(MenuItemProvider, { value: optionItemState, children: /* @__PURE__ */ jsx(ark.div, { ...mergedProps, ref }) }) });
|
|
28
28
|
});
|
|
29
29
|
MenuCheckboxItem.displayName = "MenuCheckboxItem";
|
|
30
30
|
|
|
@@ -12,8 +12,8 @@ const useMenuOptionItemPropsContext = require('./use-menu-option-item-props-cont
|
|
|
12
12
|
|
|
13
13
|
const MenuItemIndicator = react.forwardRef((props, ref) => {
|
|
14
14
|
const menu = useMenuContext.useMenuContext();
|
|
15
|
-
const
|
|
16
|
-
const mergedProps = react$1.mergeProps(menu.getItemIndicatorProps(
|
|
15
|
+
const itemProps = useMenuOptionItemPropsContext.useMenuItemPropsContext();
|
|
16
|
+
const mergedProps = react$1.mergeProps(menu.getItemIndicatorProps(itemProps), props);
|
|
17
17
|
return /* @__PURE__ */ jsxRuntime.jsx(factory.ark.div, { ...mergedProps, ref });
|
|
18
18
|
});
|
|
19
19
|
MenuItemIndicator.displayName = "MenuItemIndicator";
|
|
@@ -4,12 +4,12 @@ import { mergeProps } from '@zag-js/react';
|
|
|
4
4
|
import { forwardRef } from 'react';
|
|
5
5
|
import { ark } from '../factory.js';
|
|
6
6
|
import { useMenuContext } from './use-menu-context.js';
|
|
7
|
-
import {
|
|
7
|
+
import { useMenuItemPropsContext } from './use-menu-option-item-props-context.js';
|
|
8
8
|
|
|
9
9
|
const MenuItemIndicator = forwardRef((props, ref) => {
|
|
10
10
|
const menu = useMenuContext();
|
|
11
|
-
const
|
|
12
|
-
const mergedProps = mergeProps(menu.getItemIndicatorProps(
|
|
11
|
+
const itemProps = useMenuItemPropsContext();
|
|
12
|
+
const mergedProps = mergeProps(menu.getItemIndicatorProps(itemProps), props);
|
|
13
13
|
return /* @__PURE__ */ jsx(ark.div, { ...mergedProps, ref });
|
|
14
14
|
});
|
|
15
15
|
MenuItemIndicator.displayName = "MenuItemIndicator";
|
|
@@ -12,8 +12,8 @@ const useMenuOptionItemPropsContext = require('./use-menu-option-item-props-cont
|
|
|
12
12
|
|
|
13
13
|
const MenuItemText = react.forwardRef((props, ref) => {
|
|
14
14
|
const menu = useMenuContext.useMenuContext();
|
|
15
|
-
const
|
|
16
|
-
const mergedProps = react$1.mergeProps(menu.getItemTextProps(
|
|
15
|
+
const itemProps = useMenuOptionItemPropsContext.useMenuItemPropsContext();
|
|
16
|
+
const mergedProps = react$1.mergeProps(menu.getItemTextProps(itemProps), props);
|
|
17
17
|
return /* @__PURE__ */ jsxRuntime.jsx(factory.ark.div, { ...mergedProps, ref });
|
|
18
18
|
});
|
|
19
19
|
MenuItemText.displayName = "MenuItemText";
|
|
@@ -4,12 +4,12 @@ import { mergeProps } from '@zag-js/react';
|
|
|
4
4
|
import { forwardRef } from 'react';
|
|
5
5
|
import { ark } from '../factory.js';
|
|
6
6
|
import { useMenuContext } from './use-menu-context.js';
|
|
7
|
-
import {
|
|
7
|
+
import { useMenuItemPropsContext } from './use-menu-option-item-props-context.js';
|
|
8
8
|
|
|
9
9
|
const MenuItemText = forwardRef((props, ref) => {
|
|
10
10
|
const menu = useMenuContext();
|
|
11
|
-
const
|
|
12
|
-
const mergedProps = mergeProps(menu.getItemTextProps(
|
|
11
|
+
const itemProps = useMenuItemPropsContext();
|
|
12
|
+
const mergedProps = mergeProps(menu.getItemTextProps(itemProps), props);
|
|
13
13
|
return /* @__PURE__ */ jsx(ark.div, { ...mergedProps, ref });
|
|
14
14
|
});
|
|
15
15
|
MenuItemText.displayName = "MenuItemText";
|
|
@@ -10,6 +10,7 @@ const createSplitProps = require('../../utils/create-split-props.cjs');
|
|
|
10
10
|
const factory = require('../factory.cjs');
|
|
11
11
|
const useMenuContext = require('./use-menu-context.cjs');
|
|
12
12
|
const useMenuItemContext = require('./use-menu-item-context.cjs');
|
|
13
|
+
const useMenuOptionItemPropsContext = require('./use-menu-option-item-props-context.cjs');
|
|
13
14
|
|
|
14
15
|
const MenuItem = react.forwardRef((props, ref) => {
|
|
15
16
|
const [itemProps, localProps] = createSplitProps.createSplitProps()(props, [
|
|
@@ -25,7 +26,7 @@ const MenuItem = react.forwardRef((props, ref) => {
|
|
|
25
26
|
react.useEffect(() => {
|
|
26
27
|
return menu.addItemListener({ id: itemState.id, onSelect: itemProps.onSelect });
|
|
27
28
|
}, [itemState.id, itemProps.onSelect]);
|
|
28
|
-
return /* @__PURE__ */ jsxRuntime.jsx(useMenuItemContext.MenuItemProvider, { value: itemState, children: /* @__PURE__ */ jsxRuntime.jsx(factory.ark.div, { ...mergedProps, ref }) });
|
|
29
|
+
return /* @__PURE__ */ jsxRuntime.jsx(useMenuOptionItemPropsContext.MenuItemPropsProvider, { value: itemProps, children: /* @__PURE__ */ jsxRuntime.jsx(useMenuItemContext.MenuItemProvider, { value: itemState, children: /* @__PURE__ */ jsxRuntime.jsx(factory.ark.div, { ...mergedProps, ref }) }) });
|
|
29
30
|
});
|
|
30
31
|
MenuItem.displayName = "MenuItem";
|
|
31
32
|
|
|
@@ -6,6 +6,7 @@ import { createSplitProps } from '../../utils/create-split-props.js';
|
|
|
6
6
|
import { ark } from '../factory.js';
|
|
7
7
|
import { useMenuContext } from './use-menu-context.js';
|
|
8
8
|
import { MenuItemProvider } from './use-menu-item-context.js';
|
|
9
|
+
import { MenuItemPropsProvider } from './use-menu-option-item-props-context.js';
|
|
9
10
|
|
|
10
11
|
const MenuItem = forwardRef((props, ref) => {
|
|
11
12
|
const [itemProps, localProps] = createSplitProps()(props, [
|
|
@@ -21,7 +22,7 @@ const MenuItem = forwardRef((props, ref) => {
|
|
|
21
22
|
useEffect(() => {
|
|
22
23
|
return menu.addItemListener({ id: itemState.id, onSelect: itemProps.onSelect });
|
|
23
24
|
}, [itemState.id, itemProps.onSelect]);
|
|
24
|
-
return /* @__PURE__ */ jsx(MenuItemProvider, { value: itemState, children: /* @__PURE__ */ jsx(ark.div, { ...mergedProps, ref }) });
|
|
25
|
+
return /* @__PURE__ */ jsx(MenuItemPropsProvider, { value: itemProps, children: /* @__PURE__ */ jsx(MenuItemProvider, { value: itemState, children: /* @__PURE__ */ jsx(ark.div, { ...mergedProps, ref }) }) });
|
|
25
26
|
});
|
|
26
27
|
MenuItem.displayName = "MenuItem";
|
|
27
28
|
|
|
@@ -30,7 +30,7 @@ const MenuRadioItem = react.forwardRef((props, ref) => {
|
|
|
30
30
|
};
|
|
31
31
|
const mergedProps = react$1.mergeProps(menu.getOptionItemProps(optionItemProps), localProps);
|
|
32
32
|
const optionItemState = menu.getOptionItemState(optionItemProps);
|
|
33
|
-
return /* @__PURE__ */ jsxRuntime.jsx(useMenuOptionItemPropsContext.
|
|
33
|
+
return /* @__PURE__ */ jsxRuntime.jsx(useMenuOptionItemPropsContext.MenuItemPropsProvider, { value: optionItemProps, children: /* @__PURE__ */ jsxRuntime.jsx(useMenuItemContext.MenuItemProvider, { value: optionItemState, children: /* @__PURE__ */ jsxRuntime.jsx(factory.ark.div, { ...mergedProps, ref }) }) });
|
|
34
34
|
});
|
|
35
35
|
MenuRadioItem.displayName = "MenuRadioItem";
|
|
36
36
|
|
|
@@ -7,7 +7,7 @@ import { ark } from '../factory.js';
|
|
|
7
7
|
import { useMenuContext } from './use-menu-context.js';
|
|
8
8
|
import { MenuItemProvider } from './use-menu-item-context.js';
|
|
9
9
|
import { useMenuItemGroupContext } from './use-menu-item-group-context.js';
|
|
10
|
-
import {
|
|
10
|
+
import { MenuItemPropsProvider } from './use-menu-option-item-props-context.js';
|
|
11
11
|
|
|
12
12
|
const MenuRadioItem = forwardRef((props, ref) => {
|
|
13
13
|
const [partialItemProps, localProps] = createSplitProps()(props, [
|
|
@@ -26,7 +26,7 @@ const MenuRadioItem = forwardRef((props, ref) => {
|
|
|
26
26
|
};
|
|
27
27
|
const mergedProps = mergeProps(menu.getOptionItemProps(optionItemProps), localProps);
|
|
28
28
|
const optionItemState = menu.getOptionItemState(optionItemProps);
|
|
29
|
-
return /* @__PURE__ */ jsx(
|
|
29
|
+
return /* @__PURE__ */ jsx(MenuItemPropsProvider, { value: optionItemProps, children: /* @__PURE__ */ jsx(MenuItemProvider, { value: optionItemState, children: /* @__PURE__ */ jsx(ark.div, { ...mergedProps, ref }) }) });
|
|
30
30
|
});
|
|
31
31
|
MenuRadioItem.displayName = "MenuRadioItem";
|
|
32
32
|
|
|
@@ -5,11 +5,11 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
5
5
|
|
|
6
6
|
const createContext = require('../../utils/create-context.cjs');
|
|
7
7
|
|
|
8
|
-
const [
|
|
9
|
-
name: "
|
|
10
|
-
hookName: "
|
|
11
|
-
providerName: "<
|
|
8
|
+
const [MenuItemPropsProvider, useMenuItemPropsContext] = createContext.createContext({
|
|
9
|
+
name: "MenuItemPropsContext",
|
|
10
|
+
hookName: "useMenuItemPropsContext",
|
|
11
|
+
providerName: "<MenuItemPropsProvider />"
|
|
12
12
|
});
|
|
13
13
|
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
14
|
+
exports.MenuItemPropsProvider = MenuItemPropsProvider;
|
|
15
|
+
exports.useMenuItemPropsContext = useMenuItemPropsContext;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ItemBaseProps } from '@zag-js/menu';
|
|
2
2
|
import { Provider } from 'react';
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const MenuItemPropsProvider: Provider<ItemBaseProps>, useMenuItemPropsContext: () => ItemBaseProps;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ItemBaseProps } from '@zag-js/menu';
|
|
2
2
|
import { Provider } from 'react';
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const MenuItemPropsProvider: Provider<ItemBaseProps>, useMenuItemPropsContext: () => ItemBaseProps;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
import { createContext } from '../../utils/create-context.js';
|
|
3
3
|
|
|
4
|
-
const [
|
|
5
|
-
name: "
|
|
6
|
-
hookName: "
|
|
7
|
-
providerName: "<
|
|
4
|
+
const [MenuItemPropsProvider, useMenuItemPropsContext] = createContext({
|
|
5
|
+
name: "MenuItemPropsContext",
|
|
6
|
+
hookName: "useMenuItemPropsContext",
|
|
7
|
+
providerName: "<MenuItemPropsProvider />"
|
|
8
8
|
});
|
|
9
9
|
|
|
10
|
-
export {
|
|
10
|
+
export { MenuItemPropsProvider, useMenuItemPropsContext };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/react",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.14.0",
|
|
5
5
|
"description": "A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"accordion",
|
|
@@ -80,16 +80,6 @@
|
|
|
80
80
|
"default": "./dist/components/anatomy.cjs"
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"./collection": {
|
|
84
|
-
"import": {
|
|
85
|
-
"types": "./dist/components/collection.d.ts",
|
|
86
|
-
"default": "./dist/components/collection.js"
|
|
87
|
-
},
|
|
88
|
-
"require": {
|
|
89
|
-
"types": "./dist/components/collection.d.cts",
|
|
90
|
-
"default": "./dist/components/collection.cjs"
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
83
|
"./factory": {
|
|
94
84
|
"import": {
|
|
95
85
|
"types": "./dist/components/factory.d.ts",
|
|
@@ -150,96 +140,94 @@
|
|
|
150
140
|
},
|
|
151
141
|
"sideEffects": false,
|
|
152
142
|
"dependencies": {
|
|
153
|
-
"@internationalized/date": "3.8.
|
|
154
|
-
"@zag-js/accordion": "1.15.
|
|
155
|
-
"@zag-js/angle-slider": "1.15.
|
|
156
|
-
"@zag-js/anatomy": "1.15.
|
|
157
|
-
"@zag-js/auto-resize": "1.15.
|
|
158
|
-
"@zag-js/avatar": "1.15.
|
|
159
|
-
"@zag-js/carousel": "1.15.
|
|
160
|
-
"@zag-js/checkbox": "1.15.
|
|
161
|
-
"@zag-js/clipboard": "1.15.
|
|
162
|
-
"@zag-js/collapsible": "1.15.
|
|
163
|
-
"@zag-js/collection": "1.15.
|
|
164
|
-
"@zag-js/color-picker": "1.15.
|
|
165
|
-
"@zag-js/color-utils": "1.15.
|
|
166
|
-
"@zag-js/combobox": "1.15.
|
|
167
|
-
"@zag-js/core": "1.15.
|
|
168
|
-
"@zag-js/date-picker": "1.15.
|
|
169
|
-
"@zag-js/date-utils": "1.15.
|
|
170
|
-
"@zag-js/dialog": "1.15.
|
|
171
|
-
"@zag-js/dom-query": "1.15.
|
|
172
|
-
"@zag-js/editable": "1.15.
|
|
173
|
-
"@zag-js/file-upload": "1.15.
|
|
174
|
-
"@zag-js/file-utils": "1.15.
|
|
175
|
-
"@zag-js/focus-trap": "1.15.
|
|
176
|
-
"@zag-js/floating-panel": "1.15.
|
|
177
|
-
"@zag-js/highlight-word": "1.15.
|
|
178
|
-
"@zag-js/hover-card": "1.15.
|
|
179
|
-
"@zag-js/i18n-utils": "1.15.
|
|
180
|
-
"@zag-js/listbox": "1.15.
|
|
181
|
-
"@zag-js/menu": "1.15.
|
|
182
|
-
"@zag-js/number-input": "1.15.
|
|
183
|
-
"@zag-js/pagination": "1.15.
|
|
184
|
-
"@zag-js/password-input": "1.15.
|
|
185
|
-
"@zag-js/pin-input": "1.15.
|
|
186
|
-
"@zag-js/popover": "1.15.
|
|
187
|
-
"@zag-js/presence": "1.15.
|
|
188
|
-
"@zag-js/progress": "1.15.
|
|
189
|
-
"@zag-js/qr-code": "1.15.
|
|
190
|
-
"@zag-js/radio-group": "1.15.
|
|
191
|
-
"@zag-js/rating-group": "1.15.
|
|
192
|
-
"@zag-js/react": "1.15.
|
|
193
|
-
"@zag-js/select": "1.15.
|
|
194
|
-
"@zag-js/signature-pad": "1.15.
|
|
195
|
-
"@zag-js/slider": "1.15.
|
|
196
|
-
"@zag-js/splitter": "1.15.
|
|
197
|
-
"@zag-js/steps": "1.15.
|
|
198
|
-
"@zag-js/switch": "1.15.
|
|
199
|
-
"@zag-js/tabs": "1.15.
|
|
200
|
-
"@zag-js/tags-input": "1.15.
|
|
201
|
-
"@zag-js/time-picker": "1.15.
|
|
202
|
-
"@zag-js/timer": "1.15.
|
|
203
|
-
"@zag-js/toast": "1.15.
|
|
204
|
-
"@zag-js/toggle": "1.15.
|
|
205
|
-
"@zag-js/toggle-group": "1.15.
|
|
206
|
-
"@zag-js/tooltip": "1.15.
|
|
207
|
-
"@zag-js/tour": "1.15.
|
|
208
|
-
"@zag-js/tree-view": "1.15.
|
|
209
|
-
"@zag-js/types": "1.15.
|
|
210
|
-
"@zag-js/utils": "1.15.
|
|
143
|
+
"@internationalized/date": "3.8.2",
|
|
144
|
+
"@zag-js/accordion": "1.15.2",
|
|
145
|
+
"@zag-js/angle-slider": "1.15.2",
|
|
146
|
+
"@zag-js/anatomy": "1.15.2",
|
|
147
|
+
"@zag-js/auto-resize": "1.15.2",
|
|
148
|
+
"@zag-js/avatar": "1.15.2",
|
|
149
|
+
"@zag-js/carousel": "1.15.2",
|
|
150
|
+
"@zag-js/checkbox": "1.15.2",
|
|
151
|
+
"@zag-js/clipboard": "1.15.2",
|
|
152
|
+
"@zag-js/collapsible": "1.15.2",
|
|
153
|
+
"@zag-js/collection": "1.15.2",
|
|
154
|
+
"@zag-js/color-picker": "1.15.2",
|
|
155
|
+
"@zag-js/color-utils": "1.15.2",
|
|
156
|
+
"@zag-js/combobox": "1.15.2",
|
|
157
|
+
"@zag-js/core": "1.15.2",
|
|
158
|
+
"@zag-js/date-picker": "1.15.2",
|
|
159
|
+
"@zag-js/date-utils": "1.15.2",
|
|
160
|
+
"@zag-js/dialog": "1.15.2",
|
|
161
|
+
"@zag-js/dom-query": "1.15.2",
|
|
162
|
+
"@zag-js/editable": "1.15.2",
|
|
163
|
+
"@zag-js/file-upload": "1.15.2",
|
|
164
|
+
"@zag-js/file-utils": "1.15.2",
|
|
165
|
+
"@zag-js/focus-trap": "1.15.2",
|
|
166
|
+
"@zag-js/floating-panel": "1.15.2",
|
|
167
|
+
"@zag-js/highlight-word": "1.15.2",
|
|
168
|
+
"@zag-js/hover-card": "1.15.2",
|
|
169
|
+
"@zag-js/i18n-utils": "1.15.2",
|
|
170
|
+
"@zag-js/listbox": "1.15.2",
|
|
171
|
+
"@zag-js/menu": "1.15.2",
|
|
172
|
+
"@zag-js/number-input": "1.15.2",
|
|
173
|
+
"@zag-js/pagination": "1.15.2",
|
|
174
|
+
"@zag-js/password-input": "1.15.2",
|
|
175
|
+
"@zag-js/pin-input": "1.15.2",
|
|
176
|
+
"@zag-js/popover": "1.15.2",
|
|
177
|
+
"@zag-js/presence": "1.15.2",
|
|
178
|
+
"@zag-js/progress": "1.15.2",
|
|
179
|
+
"@zag-js/qr-code": "1.15.2",
|
|
180
|
+
"@zag-js/radio-group": "1.15.2",
|
|
181
|
+
"@zag-js/rating-group": "1.15.2",
|
|
182
|
+
"@zag-js/react": "1.15.2",
|
|
183
|
+
"@zag-js/select": "1.15.2",
|
|
184
|
+
"@zag-js/signature-pad": "1.15.2",
|
|
185
|
+
"@zag-js/slider": "1.15.2",
|
|
186
|
+
"@zag-js/splitter": "1.15.2",
|
|
187
|
+
"@zag-js/steps": "1.15.2",
|
|
188
|
+
"@zag-js/switch": "1.15.2",
|
|
189
|
+
"@zag-js/tabs": "1.15.2",
|
|
190
|
+
"@zag-js/tags-input": "1.15.2",
|
|
191
|
+
"@zag-js/time-picker": "1.15.2",
|
|
192
|
+
"@zag-js/timer": "1.15.2",
|
|
193
|
+
"@zag-js/toast": "1.15.2",
|
|
194
|
+
"@zag-js/toggle": "1.15.2",
|
|
195
|
+
"@zag-js/toggle-group": "1.15.2",
|
|
196
|
+
"@zag-js/tooltip": "1.15.2",
|
|
197
|
+
"@zag-js/tour": "1.15.2",
|
|
198
|
+
"@zag-js/tree-view": "1.15.2",
|
|
199
|
+
"@zag-js/types": "1.15.2",
|
|
200
|
+
"@zag-js/utils": "1.15.2"
|
|
211
201
|
},
|
|
212
202
|
"devDependencies": {
|
|
213
203
|
"@biomejs/biome": "1.9.4",
|
|
214
|
-
"@storybook/addon-a11y": "
|
|
215
|
-
"@storybook/
|
|
216
|
-
"@storybook/react": "8.6.12",
|
|
217
|
-
"@storybook/react-vite": "8.6.12",
|
|
204
|
+
"@storybook/addon-a11y": "9.0.8",
|
|
205
|
+
"@storybook/react-vite": "9.0.8",
|
|
218
206
|
"@testing-library/dom": "10.4.0",
|
|
219
207
|
"@testing-library/jest-dom": "6.6.3",
|
|
220
208
|
"@testing-library/react": "16.3.0",
|
|
221
209
|
"@testing-library/user-event": "14.6.1",
|
|
222
210
|
"@types/jsdom": "21.1.7",
|
|
223
|
-
"@types/react": "19.1.
|
|
224
|
-
"@types/react-dom": "19.1.
|
|
225
|
-
"@vitejs/plugin-react": "4.5.
|
|
226
|
-
"@zag-js/stringify-state": "1.15.
|
|
211
|
+
"@types/react": "19.1.7",
|
|
212
|
+
"@types/react-dom": "19.1.6",
|
|
213
|
+
"@vitejs/plugin-react": "4.5.2",
|
|
214
|
+
"@zag-js/stringify-state": "1.15.2",
|
|
227
215
|
"clean-package": "2.2.0",
|
|
228
216
|
"globby": "14.1.0",
|
|
229
|
-
"happy-dom": "17.
|
|
230
|
-
"lucide-react": "0.
|
|
217
|
+
"happy-dom": "17.6.3",
|
|
218
|
+
"lucide-react": "0.514.0",
|
|
231
219
|
"react": "19.1.0",
|
|
232
220
|
"react-dom": "19.1.0",
|
|
233
221
|
"react-shadow": "20.6.0",
|
|
234
222
|
"react-frame-component": "5.2.7",
|
|
235
|
-
"react-hook-form": "7.
|
|
223
|
+
"react-hook-form": "7.57.0",
|
|
236
224
|
"resize-observer-polyfill": "1.5.1",
|
|
237
|
-
"storybook": "
|
|
225
|
+
"storybook": "9.0.8",
|
|
238
226
|
"typescript": "5.8.3",
|
|
239
227
|
"vite": "6.3.5",
|
|
240
|
-
"vite-plugin-dts": "4.5.
|
|
241
|
-
"vitest": "3.
|
|
242
|
-
"@vitest/coverage-v8": "3.
|
|
228
|
+
"vite-plugin-dts": "4.5.4",
|
|
229
|
+
"vitest": "3.2.3",
|
|
230
|
+
"@vitest/coverage-v8": "3.2.3",
|
|
243
231
|
"vitest-axe": "1.0.0-pre.5"
|
|
244
232
|
},
|
|
245
233
|
"peerDependencies": {
|