@ark-ui/react 5.11.0 → 5.12.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/index.cjs +2 -0
- package/dist/components/index.js +1 -0
- package/dist/components/tree-view/index.cjs +2 -0
- package/dist/components/tree-view/index.d.cts +2 -1
- package/dist/components/tree-view/index.d.ts +2 -1
- package/dist/components/tree-view/index.js +1 -0
- package/dist/components/tree-view/tree-view-branch.cjs +3 -2
- package/dist/components/tree-view/tree-view-branch.js +3 -2
- package/dist/components/tree-view/tree-view-node-provider.cjs +5 -1
- package/dist/components/tree-view/tree-view-node-provider.js +5 -1
- package/dist/components/tree-view/tree-view-root.cjs +3 -1
- package/dist/components/tree-view/tree-view-root.js +3 -1
- package/dist/components/tree-view/tree-view.d.cts +1 -1
- package/dist/components/tree-view/tree-view.d.ts +1 -1
- package/dist/components/tree-view/use-tree-view-node-context.cjs +2 -2
- package/dist/components/tree-view/use-tree-view-node-context.d.cts +1 -1
- package/dist/components/tree-view/use-tree-view-node-context.d.ts +1 -1
- package/dist/components/tree-view/use-tree-view-node-context.js +2 -2
- package/dist/index.cjs +2 -0
- package/dist/index.js +1 -0
- package/package.json +59 -59
|
@@ -664,6 +664,7 @@ const treeViewRoot = require('./tree-view/tree-view-root.cjs');
|
|
|
664
664
|
const treeViewRootProvider = require('./tree-view/tree-view-root-provider.cjs');
|
|
665
665
|
const treeViewTree = require('./tree-view/tree-view-tree.cjs');
|
|
666
666
|
const useTreeView = require('./tree-view/use-tree-view.cjs');
|
|
667
|
+
const useTreeViewNodeContext = require('./tree-view/use-tree-view-node-context.cjs');
|
|
667
668
|
const treeView$1 = require('./tree-view/tree-view.cjs');
|
|
668
669
|
const accordion = require('@zag-js/accordion');
|
|
669
670
|
const angleSlider = require('@zag-js/angle-slider');
|
|
@@ -1380,6 +1381,7 @@ exports.TreeViewRoot = treeViewRoot.TreeViewRoot;
|
|
|
1380
1381
|
exports.TreeViewRootProvider = treeViewRootProvider.TreeViewRootProvider;
|
|
1381
1382
|
exports.TreeViewTree = treeViewTree.TreeViewTree;
|
|
1382
1383
|
exports.useTreeView = useTreeView.useTreeView;
|
|
1384
|
+
exports.useTreeViewNodeContext = useTreeViewNodeContext.useTreeViewNodeContext;
|
|
1383
1385
|
exports.TreeView = treeView$1;
|
|
1384
1386
|
Object.defineProperty(exports, "accordionAnatomy", {
|
|
1385
1387
|
enumerable: true,
|
package/dist/components/index.js
CHANGED
|
@@ -705,6 +705,7 @@ export { TreeViewRoot } from './tree-view/tree-view-root.js';
|
|
|
705
705
|
export { TreeViewRootProvider } from './tree-view/tree-view-root-provider.js';
|
|
706
706
|
export { TreeViewTree } from './tree-view/tree-view-tree.js';
|
|
707
707
|
export { useTreeView } from './tree-view/use-tree-view.js';
|
|
708
|
+
export { useTreeViewNodeContext } from './tree-view/use-tree-view-node-context.js';
|
|
708
709
|
import * as treeView from './tree-view/tree-view.js';
|
|
709
710
|
export { treeView as TreeView };
|
|
710
711
|
export { anatomy as accordionAnatomy } from '@zag-js/accordion';
|
|
@@ -21,6 +21,7 @@ const treeViewRoot = require('./tree-view-root.cjs');
|
|
|
21
21
|
const treeViewRootProvider = require('./tree-view-root-provider.cjs');
|
|
22
22
|
const treeViewTree = require('./tree-view-tree.cjs');
|
|
23
23
|
const useTreeView = require('./use-tree-view.cjs');
|
|
24
|
+
const useTreeViewNodeContext = require('./use-tree-view-node-context.cjs');
|
|
24
25
|
const treeView$1 = require('./tree-view.cjs');
|
|
25
26
|
const treeView = require('@zag-js/tree-view');
|
|
26
27
|
|
|
@@ -46,6 +47,7 @@ exports.TreeViewRoot = treeViewRoot.TreeViewRoot;
|
|
|
46
47
|
exports.TreeViewRootProvider = treeViewRootProvider.TreeViewRootProvider;
|
|
47
48
|
exports.TreeViewTree = treeViewTree.TreeViewTree;
|
|
48
49
|
exports.useTreeView = useTreeView.useTreeView;
|
|
50
|
+
exports.useTreeViewNodeContext = useTreeViewNodeContext.useTreeViewNodeContext;
|
|
49
51
|
exports.TreeView = treeView$1;
|
|
50
52
|
Object.defineProperty(exports, "treeViewAnatomy", {
|
|
51
53
|
enumerable: true,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { ExpandedChangeDetails as TreeViewExpandedChangeDetails, FocusChangeDetails as TreeViewFocusChangeDetails, SelectionChangeDetails as TreeViewSelectionChangeDetails, } from '@zag-js/tree-view';
|
|
1
|
+
export type { ExpandedChangeDetails as TreeViewExpandedChangeDetails, FocusChangeDetails as TreeViewFocusChangeDetails, SelectionChangeDetails as TreeViewSelectionChangeDetails, LoadChildrenDetails as TreeViewLoadChildrenDetails, LoadChildrenCompleteDetails as TreeViewLoadChildrenCompleteDetails, } from '@zag-js/tree-view';
|
|
2
2
|
export { createFileTreeCollection, createTreeCollection, type TreeCollection, type TreeNode } from '../collection';
|
|
3
3
|
export { TreeViewBranch, type TreeViewBranchBaseProps, type TreeViewBranchProps } from './tree-view-branch';
|
|
4
4
|
export { TreeViewBranchContent, type TreeViewBranchContentBaseProps, type TreeViewBranchContentProps, } from './tree-view-branch-content';
|
|
@@ -19,4 +19,5 @@ export { TreeViewRootProvider, type TreeViewRootProviderBaseProps, type TreeView
|
|
|
19
19
|
export { TreeViewTree, type TreeViewTreeBaseProps, type TreeViewTreeProps } from './tree-view-tree';
|
|
20
20
|
export { treeViewAnatomy } from './tree-view.anatomy';
|
|
21
21
|
export { useTreeView, type UseTreeViewProps, type UseTreeViewReturn } from './use-tree-view';
|
|
22
|
+
export { useTreeViewNodeContext, type UseTreeViewNodeContext } from './use-tree-view-node-context';
|
|
22
23
|
export * as TreeView from './tree-view';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { ExpandedChangeDetails as TreeViewExpandedChangeDetails, FocusChangeDetails as TreeViewFocusChangeDetails, SelectionChangeDetails as TreeViewSelectionChangeDetails, } from '@zag-js/tree-view';
|
|
1
|
+
export type { ExpandedChangeDetails as TreeViewExpandedChangeDetails, FocusChangeDetails as TreeViewFocusChangeDetails, SelectionChangeDetails as TreeViewSelectionChangeDetails, LoadChildrenDetails as TreeViewLoadChildrenDetails, LoadChildrenCompleteDetails as TreeViewLoadChildrenCompleteDetails, } from '@zag-js/tree-view';
|
|
2
2
|
export { createFileTreeCollection, createTreeCollection, type TreeCollection, type TreeNode } from '../collection';
|
|
3
3
|
export { TreeViewBranch, type TreeViewBranchBaseProps, type TreeViewBranchProps } from './tree-view-branch';
|
|
4
4
|
export { TreeViewBranchContent, type TreeViewBranchContentBaseProps, type TreeViewBranchContentProps, } from './tree-view-branch-content';
|
|
@@ -19,4 +19,5 @@ export { TreeViewRootProvider, type TreeViewRootProviderBaseProps, type TreeView
|
|
|
19
19
|
export { TreeViewTree, type TreeViewTreeBaseProps, type TreeViewTreeProps } from './tree-view-tree';
|
|
20
20
|
export { treeViewAnatomy } from './tree-view.anatomy';
|
|
21
21
|
export { useTreeView, type UseTreeViewProps, type UseTreeViewReturn } from './use-tree-view';
|
|
22
|
+
export { useTreeViewNodeContext, type UseTreeViewNodeContext } from './use-tree-view-node-context';
|
|
22
23
|
export * as TreeView from './tree-view';
|
|
@@ -17,6 +17,7 @@ export { TreeViewRoot } from './tree-view-root.js';
|
|
|
17
17
|
export { TreeViewRootProvider } from './tree-view-root-provider.js';
|
|
18
18
|
export { TreeViewTree } from './tree-view-tree.js';
|
|
19
19
|
export { useTreeView } from './use-tree-view.js';
|
|
20
|
+
export { useTreeViewNodeContext } from './use-tree-view-node-context.js';
|
|
20
21
|
import * as treeView from './tree-view.js';
|
|
21
22
|
export { treeView as TreeView };
|
|
22
23
|
export { anatomy as treeViewAnatomy } from '@zag-js/tree-view';
|
|
@@ -9,20 +9,21 @@ const react = require('react');
|
|
|
9
9
|
const renderStrategy = require('../../utils/render-strategy.cjs');
|
|
10
10
|
const collapsibleRoot = require('../collapsible/collapsible-root.cjs');
|
|
11
11
|
const useTreeViewContext = require('./use-tree-view-context.cjs');
|
|
12
|
+
const useTreeViewNodeContext = require('./use-tree-view-node-context.cjs');
|
|
12
13
|
const useTreeViewNodePropsContext = require('./use-tree-view-node-props-context.cjs');
|
|
13
14
|
|
|
14
15
|
const TreeViewBranch = react.forwardRef((props, ref) => {
|
|
15
16
|
const treeView = useTreeViewContext.useTreeViewContext();
|
|
16
17
|
const nodeProps = useTreeViewNodePropsContext.useTreeViewNodePropsContext();
|
|
18
|
+
const nodeState = useTreeViewNodeContext.useTreeViewNodeContext();
|
|
17
19
|
const renderStrategyProps = renderStrategy.useRenderStrategyPropsContext();
|
|
18
|
-
const node = treeView.getNodeState(nodeProps);
|
|
19
20
|
const mergedProps = react$1.mergeProps(treeView.getBranchProps(nodeProps), props);
|
|
20
21
|
const branchContentProps = treeView.getBranchContentProps(nodeProps);
|
|
21
22
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
22
23
|
collapsibleRoot.CollapsibleRoot,
|
|
23
24
|
{
|
|
24
25
|
ref,
|
|
25
|
-
open:
|
|
26
|
+
open: nodeState.expanded,
|
|
26
27
|
ids: { content: branchContentProps.id },
|
|
27
28
|
...renderStrategyProps,
|
|
28
29
|
...mergedProps
|
|
@@ -5,20 +5,21 @@ import { forwardRef } from 'react';
|
|
|
5
5
|
import { useRenderStrategyPropsContext } from '../../utils/render-strategy.js';
|
|
6
6
|
import { CollapsibleRoot } from '../collapsible/collapsible-root.js';
|
|
7
7
|
import { useTreeViewContext } from './use-tree-view-context.js';
|
|
8
|
+
import { useTreeViewNodeContext } from './use-tree-view-node-context.js';
|
|
8
9
|
import { useTreeViewNodePropsContext } from './use-tree-view-node-props-context.js';
|
|
9
10
|
|
|
10
11
|
const TreeViewBranch = forwardRef((props, ref) => {
|
|
11
12
|
const treeView = useTreeViewContext();
|
|
12
13
|
const nodeProps = useTreeViewNodePropsContext();
|
|
14
|
+
const nodeState = useTreeViewNodeContext();
|
|
13
15
|
const renderStrategyProps = useRenderStrategyPropsContext();
|
|
14
|
-
const node = treeView.getNodeState(nodeProps);
|
|
15
16
|
const mergedProps = mergeProps(treeView.getBranchProps(nodeProps), props);
|
|
16
17
|
const branchContentProps = treeView.getBranchContentProps(nodeProps);
|
|
17
18
|
return /* @__PURE__ */ jsx(
|
|
18
19
|
CollapsibleRoot,
|
|
19
20
|
{
|
|
20
21
|
ref,
|
|
21
|
-
open:
|
|
22
|
+
open: nodeState.expanded,
|
|
22
23
|
ids: { content: branchContentProps.id },
|
|
23
24
|
...renderStrategyProps,
|
|
24
25
|
...mergedProps
|
|
@@ -5,11 +5,15 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
5
5
|
|
|
6
6
|
const jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
const createSplitProps = require('../../utils/create-split-props.cjs');
|
|
8
|
+
const useTreeViewContext = require('./use-tree-view-context.cjs');
|
|
9
|
+
const useTreeViewNodeContext = require('./use-tree-view-node-context.cjs');
|
|
8
10
|
const useTreeViewNodePropsContext = require('./use-tree-view-node-props-context.cjs');
|
|
9
11
|
|
|
10
12
|
function TreeViewNodeProvider(props) {
|
|
11
13
|
const [nodeProps, localProps] = createSplitProps.createSplitProps()(props, ["indexPath", "node"]);
|
|
12
|
-
|
|
14
|
+
const treeView = useTreeViewContext.useTreeViewContext();
|
|
15
|
+
const nodeState = treeView.getNodeState(nodeProps);
|
|
16
|
+
return /* @__PURE__ */ jsxRuntime.jsx(useTreeViewNodeContext.TreeViewNodeStateProvider, { value: nodeState, children: /* @__PURE__ */ jsxRuntime.jsx(useTreeViewNodePropsContext.TreeViewNodePropsProvider, { value: nodeProps, children: localProps.children }) });
|
|
13
17
|
}
|
|
14
18
|
|
|
15
19
|
exports.TreeViewNodeProvider = TreeViewNodeProvider;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
3
|
import { createSplitProps } from '../../utils/create-split-props.js';
|
|
4
|
+
import { useTreeViewContext } from './use-tree-view-context.js';
|
|
5
|
+
import { TreeViewNodeStateProvider } from './use-tree-view-node-context.js';
|
|
4
6
|
import { TreeViewNodePropsProvider } from './use-tree-view-node-props-context.js';
|
|
5
7
|
|
|
6
8
|
function TreeViewNodeProvider(props) {
|
|
7
9
|
const [nodeProps, localProps] = createSplitProps()(props, ["indexPath", "node"]);
|
|
8
|
-
|
|
10
|
+
const treeView = useTreeViewContext();
|
|
11
|
+
const nodeState = treeView.getNodeState(nodeProps);
|
|
12
|
+
return /* @__PURE__ */ jsx(TreeViewNodeStateProvider, { value: nodeState, children: /* @__PURE__ */ jsx(TreeViewNodePropsProvider, { value: nodeProps, children: localProps.children }) });
|
|
9
13
|
}
|
|
10
14
|
|
|
11
15
|
export { TreeViewNodeProvider };
|
|
@@ -28,7 +28,9 @@ const TreeViewImpl = (props, ref) => {
|
|
|
28
28
|
"onSelectionChange",
|
|
29
29
|
"selectedValue",
|
|
30
30
|
"selectionMode",
|
|
31
|
-
"typeahead"
|
|
31
|
+
"typeahead",
|
|
32
|
+
"loadChildren",
|
|
33
|
+
"onLoadChildrenComplete"
|
|
32
34
|
]);
|
|
33
35
|
const treeView = useTreeView.useTreeView(useTreeViewProps);
|
|
34
36
|
const mergedProps = react$1.mergeProps(treeView.getRootProps(), localProps);
|
|
@@ -24,7 +24,9 @@ const TreeViewImpl = (props, ref) => {
|
|
|
24
24
|
"onSelectionChange",
|
|
25
25
|
"selectedValue",
|
|
26
26
|
"selectionMode",
|
|
27
|
-
"typeahead"
|
|
27
|
+
"typeahead",
|
|
28
|
+
"loadChildren",
|
|
29
|
+
"onLoadChildrenComplete"
|
|
28
30
|
]);
|
|
29
31
|
const treeView = useTreeView(useTreeViewProps);
|
|
30
32
|
const mergedProps = mergeProps(treeView.getRootProps(), localProps);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { ExpandedChangeDetails, FocusChangeDetails, SelectionChangeDetails } from '@zag-js/tree-view';
|
|
1
|
+
export type { ExpandedChangeDetails, FocusChangeDetails, SelectionChangeDetails, LoadChildrenDetails, LoadChildrenCompleteDetails, } from '@zag-js/tree-view';
|
|
2
2
|
export { TreeViewBranch as Branch, type TreeViewBranchBaseProps as BranchBaseProps, type TreeViewBranchProps as BranchProps, } from './tree-view-branch';
|
|
3
3
|
export { TreeViewBranchContent as BranchContent, type TreeViewBranchContentBaseProps as BranchContentBaseProps, type TreeViewBranchContentProps as BranchContentProps, } from './tree-view-branch-content';
|
|
4
4
|
export { TreeViewBranchControl as BranchControl, type TreeViewBranchControlBaseProps as BranchControlBaseProps, type TreeViewBranchControlProps as BranchControlProps, } from './tree-view-branch-control';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { ExpandedChangeDetails, FocusChangeDetails, SelectionChangeDetails } from '@zag-js/tree-view';
|
|
1
|
+
export type { ExpandedChangeDetails, FocusChangeDetails, SelectionChangeDetails, LoadChildrenDetails, LoadChildrenCompleteDetails, } from '@zag-js/tree-view';
|
|
2
2
|
export { TreeViewBranch as Branch, type TreeViewBranchBaseProps as BranchBaseProps, type TreeViewBranchProps as BranchProps, } from './tree-view-branch';
|
|
3
3
|
export { TreeViewBranchContent as BranchContent, type TreeViewBranchContentBaseProps as BranchContentBaseProps, type TreeViewBranchContentProps as BranchContentProps, } from './tree-view-branch-content';
|
|
4
4
|
export { TreeViewBranchControl as BranchControl, type TreeViewBranchControlBaseProps as BranchControlBaseProps, type TreeViewBranchControlProps as BranchControlProps, } from './tree-view-branch-control';
|
|
@@ -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 [
|
|
8
|
+
const [TreeViewNodeStateProvider, useTreeViewNodeContext] = createContext.createContext({
|
|
9
9
|
name: "TreeViewNodeContext",
|
|
10
10
|
hookName: "useTreeViewNodeContext",
|
|
11
11
|
providerName: "<TreeViewNodeProvider />"
|
|
12
12
|
});
|
|
13
13
|
|
|
14
|
-
exports.
|
|
14
|
+
exports.TreeViewNodeStateProvider = TreeViewNodeStateProvider;
|
|
15
15
|
exports.useTreeViewNodeContext = useTreeViewNodeContext;
|
|
@@ -2,4 +2,4 @@ import { NodeState } from '@zag-js/tree-view';
|
|
|
2
2
|
import { Provider } from 'react';
|
|
3
3
|
export interface UseTreeViewNodeContext extends NodeState {
|
|
4
4
|
}
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const TreeViewNodeStateProvider: Provider<UseTreeViewNodeContext>, useTreeViewNodeContext: () => UseTreeViewNodeContext;
|
|
@@ -2,4 +2,4 @@ import { NodeState } from '@zag-js/tree-view';
|
|
|
2
2
|
import { Provider } from 'react';
|
|
3
3
|
export interface UseTreeViewNodeContext extends NodeState {
|
|
4
4
|
}
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const TreeViewNodeStateProvider: Provider<UseTreeViewNodeContext>, useTreeViewNodeContext: () => UseTreeViewNodeContext;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
import { createContext } from '../../utils/create-context.js';
|
|
3
3
|
|
|
4
|
-
const [
|
|
4
|
+
const [TreeViewNodeStateProvider, useTreeViewNodeContext] = createContext({
|
|
5
5
|
name: "TreeViewNodeContext",
|
|
6
6
|
hookName: "useTreeViewNodeContext",
|
|
7
7
|
providerName: "<TreeViewNodeProvider />"
|
|
8
8
|
});
|
|
9
9
|
|
|
10
|
-
export {
|
|
10
|
+
export { TreeViewNodeStateProvider, useTreeViewNodeContext };
|
package/dist/index.cjs
CHANGED
|
@@ -664,6 +664,7 @@ const treeViewRoot = require('./components/tree-view/tree-view-root.cjs');
|
|
|
664
664
|
const treeViewRootProvider = require('./components/tree-view/tree-view-root-provider.cjs');
|
|
665
665
|
const treeViewTree = require('./components/tree-view/tree-view-tree.cjs');
|
|
666
666
|
const useTreeView = require('./components/tree-view/use-tree-view.cjs');
|
|
667
|
+
const useTreeViewNodeContext = require('./components/tree-view/use-tree-view-node-context.cjs');
|
|
667
668
|
const treeView$1 = require('./components/tree-view/tree-view.cjs');
|
|
668
669
|
const environmentProvider = require('./providers/environment/environment-provider.cjs');
|
|
669
670
|
const useEnvironmentContext = require('./providers/environment/use-environment-context.cjs');
|
|
@@ -1385,6 +1386,7 @@ exports.TreeViewRoot = treeViewRoot.TreeViewRoot;
|
|
|
1385
1386
|
exports.TreeViewRootProvider = treeViewRootProvider.TreeViewRootProvider;
|
|
1386
1387
|
exports.TreeViewTree = treeViewTree.TreeViewTree;
|
|
1387
1388
|
exports.useTreeView = useTreeView.useTreeView;
|
|
1389
|
+
exports.useTreeViewNodeContext = useTreeViewNodeContext.useTreeViewNodeContext;
|
|
1388
1390
|
exports.TreeView = treeView$1;
|
|
1389
1391
|
exports.EnvironmentProvider = environmentProvider.EnvironmentProvider;
|
|
1390
1392
|
exports.useEnvironmentContext = useEnvironmentContext.useEnvironmentContext;
|
package/dist/index.js
CHANGED
|
@@ -705,6 +705,7 @@ export { TreeViewRoot } from './components/tree-view/tree-view-root.js';
|
|
|
705
705
|
export { TreeViewRootProvider } from './components/tree-view/tree-view-root-provider.js';
|
|
706
706
|
export { TreeViewTree } from './components/tree-view/tree-view-tree.js';
|
|
707
707
|
export { useTreeView } from './components/tree-view/use-tree-view.js';
|
|
708
|
+
export { useTreeViewNodeContext } from './components/tree-view/use-tree-view-node-context.js';
|
|
708
709
|
import * as treeView from './components/tree-view/tree-view.js';
|
|
709
710
|
export { treeView as TreeView };
|
|
710
711
|
export { EnvironmentProvider } from './providers/environment/environment-provider.js';
|
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.12.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",
|
|
@@ -151,63 +151,63 @@
|
|
|
151
151
|
"sideEffects": false,
|
|
152
152
|
"dependencies": {
|
|
153
153
|
"@internationalized/date": "3.8.1",
|
|
154
|
-
"@zag-js/accordion": "1.
|
|
155
|
-
"@zag-js/angle-slider": "1.
|
|
156
|
-
"@zag-js/anatomy": "1.
|
|
157
|
-
"@zag-js/auto-resize": "1.
|
|
158
|
-
"@zag-js/avatar": "1.
|
|
159
|
-
"@zag-js/carousel": "1.
|
|
160
|
-
"@zag-js/checkbox": "1.
|
|
161
|
-
"@zag-js/clipboard": "1.
|
|
162
|
-
"@zag-js/collapsible": "1.
|
|
163
|
-
"@zag-js/collection": "1.
|
|
164
|
-
"@zag-js/color-picker": "1.
|
|
165
|
-
"@zag-js/color-utils": "1.
|
|
166
|
-
"@zag-js/combobox": "1.
|
|
167
|
-
"@zag-js/core": "1.
|
|
168
|
-
"@zag-js/date-picker": "1.
|
|
169
|
-
"@zag-js/date-utils": "1.
|
|
170
|
-
"@zag-js/dialog": "1.
|
|
171
|
-
"@zag-js/dom-query": "1.
|
|
172
|
-
"@zag-js/editable": "1.
|
|
173
|
-
"@zag-js/file-upload": "1.
|
|
174
|
-
"@zag-js/file-utils": "1.
|
|
175
|
-
"@zag-js/focus-trap": "1.
|
|
176
|
-
"@zag-js/floating-panel": "1.
|
|
177
|
-
"@zag-js/highlight-word": "1.
|
|
178
|
-
"@zag-js/hover-card": "1.
|
|
179
|
-
"@zag-js/i18n-utils": "1.
|
|
180
|
-
"@zag-js/listbox": "1.
|
|
181
|
-
"@zag-js/menu": "1.
|
|
182
|
-
"@zag-js/number-input": "1.
|
|
183
|
-
"@zag-js/pagination": "1.
|
|
184
|
-
"@zag-js/password-input": "1.
|
|
185
|
-
"@zag-js/pin-input": "1.
|
|
186
|
-
"@zag-js/popover": "1.
|
|
187
|
-
"@zag-js/presence": "1.
|
|
188
|
-
"@zag-js/progress": "1.
|
|
189
|
-
"@zag-js/qr-code": "1.
|
|
190
|
-
"@zag-js/radio-group": "1.
|
|
191
|
-
"@zag-js/rating-group": "1.
|
|
192
|
-
"@zag-js/react": "1.
|
|
193
|
-
"@zag-js/select": "1.
|
|
194
|
-
"@zag-js/signature-pad": "1.
|
|
195
|
-
"@zag-js/slider": "1.
|
|
196
|
-
"@zag-js/splitter": "1.
|
|
197
|
-
"@zag-js/steps": "1.
|
|
198
|
-
"@zag-js/switch": "1.
|
|
199
|
-
"@zag-js/tabs": "1.
|
|
200
|
-
"@zag-js/tags-input": "1.
|
|
201
|
-
"@zag-js/time-picker": "1.
|
|
202
|
-
"@zag-js/timer": "1.
|
|
203
|
-
"@zag-js/toast": "1.
|
|
204
|
-
"@zag-js/toggle": "1.
|
|
205
|
-
"@zag-js/toggle-group": "1.
|
|
206
|
-
"@zag-js/tooltip": "1.
|
|
207
|
-
"@zag-js/tour": "1.
|
|
208
|
-
"@zag-js/tree-view": "1.
|
|
209
|
-
"@zag-js/types": "1.
|
|
210
|
-
"@zag-js/utils": "1.
|
|
154
|
+
"@zag-js/accordion": "1.15.0",
|
|
155
|
+
"@zag-js/angle-slider": "1.15.0",
|
|
156
|
+
"@zag-js/anatomy": "1.15.0",
|
|
157
|
+
"@zag-js/auto-resize": "1.15.0",
|
|
158
|
+
"@zag-js/avatar": "1.15.0",
|
|
159
|
+
"@zag-js/carousel": "1.15.0",
|
|
160
|
+
"@zag-js/checkbox": "1.15.0",
|
|
161
|
+
"@zag-js/clipboard": "1.15.0",
|
|
162
|
+
"@zag-js/collapsible": "1.15.0",
|
|
163
|
+
"@zag-js/collection": "1.15.0",
|
|
164
|
+
"@zag-js/color-picker": "1.15.0",
|
|
165
|
+
"@zag-js/color-utils": "1.15.0",
|
|
166
|
+
"@zag-js/combobox": "1.15.0",
|
|
167
|
+
"@zag-js/core": "1.15.0",
|
|
168
|
+
"@zag-js/date-picker": "1.15.0",
|
|
169
|
+
"@zag-js/date-utils": "1.15.0",
|
|
170
|
+
"@zag-js/dialog": "1.15.0",
|
|
171
|
+
"@zag-js/dom-query": "1.15.0",
|
|
172
|
+
"@zag-js/editable": "1.15.0",
|
|
173
|
+
"@zag-js/file-upload": "1.15.0",
|
|
174
|
+
"@zag-js/file-utils": "1.15.0",
|
|
175
|
+
"@zag-js/focus-trap": "1.15.0",
|
|
176
|
+
"@zag-js/floating-panel": "1.15.0",
|
|
177
|
+
"@zag-js/highlight-word": "1.15.0",
|
|
178
|
+
"@zag-js/hover-card": "1.15.0",
|
|
179
|
+
"@zag-js/i18n-utils": "1.15.0",
|
|
180
|
+
"@zag-js/listbox": "1.15.0",
|
|
181
|
+
"@zag-js/menu": "1.15.0",
|
|
182
|
+
"@zag-js/number-input": "1.15.0",
|
|
183
|
+
"@zag-js/pagination": "1.15.0",
|
|
184
|
+
"@zag-js/password-input": "1.15.0",
|
|
185
|
+
"@zag-js/pin-input": "1.15.0",
|
|
186
|
+
"@zag-js/popover": "1.15.0",
|
|
187
|
+
"@zag-js/presence": "1.15.0",
|
|
188
|
+
"@zag-js/progress": "1.15.0",
|
|
189
|
+
"@zag-js/qr-code": "1.15.0",
|
|
190
|
+
"@zag-js/radio-group": "1.15.0",
|
|
191
|
+
"@zag-js/rating-group": "1.15.0",
|
|
192
|
+
"@zag-js/react": "1.15.0",
|
|
193
|
+
"@zag-js/select": "1.15.0",
|
|
194
|
+
"@zag-js/signature-pad": "1.15.0",
|
|
195
|
+
"@zag-js/slider": "1.15.0",
|
|
196
|
+
"@zag-js/splitter": "1.15.0",
|
|
197
|
+
"@zag-js/steps": "1.15.0",
|
|
198
|
+
"@zag-js/switch": "1.15.0",
|
|
199
|
+
"@zag-js/tabs": "1.15.0",
|
|
200
|
+
"@zag-js/tags-input": "1.15.0",
|
|
201
|
+
"@zag-js/time-picker": "1.15.0",
|
|
202
|
+
"@zag-js/timer": "1.15.0",
|
|
203
|
+
"@zag-js/toast": "1.15.0",
|
|
204
|
+
"@zag-js/toggle": "1.15.0",
|
|
205
|
+
"@zag-js/toggle-group": "1.15.0",
|
|
206
|
+
"@zag-js/tooltip": "1.15.0",
|
|
207
|
+
"@zag-js/tour": "1.15.0",
|
|
208
|
+
"@zag-js/tree-view": "1.15.0",
|
|
209
|
+
"@zag-js/types": "1.15.0",
|
|
210
|
+
"@zag-js/utils": "1.15.0"
|
|
211
211
|
},
|
|
212
212
|
"devDependencies": {
|
|
213
213
|
"@biomejs/biome": "1.9.4",
|
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
"@types/react": "19.1.6",
|
|
224
224
|
"@types/react-dom": "19.1.5",
|
|
225
225
|
"@vitejs/plugin-react": "4.5.0",
|
|
226
|
-
"@zag-js/stringify-state": "1.
|
|
226
|
+
"@zag-js/stringify-state": "1.15.0",
|
|
227
227
|
"clean-package": "2.2.0",
|
|
228
228
|
"globby": "14.1.0",
|
|
229
229
|
"happy-dom": "17.4.6",
|