@ark-ui/svelte 5.0.0-0 → 5.0.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/tree-view/index.d.ts +2 -0
- package/dist/components/tree-view/index.js +2 -0
- package/dist/components/tree-view/tree-view-node-checkbox-indicator.svelte +27 -0
- package/dist/components/tree-view/tree-view-node-checkbox-indicator.svelte.d.ts +11 -0
- package/dist/components/tree-view/tree-view-node-checkbox.svelte +22 -0
- package/dist/components/tree-view/tree-view-node-checkbox.svelte.d.ts +8 -0
- package/dist/components/tree-view/tree-view-root.svelte +10 -4
- package/dist/components/tree-view/tree-view-root.svelte.d.ts +1 -1
- package/dist/components/tree-view/tree-view-split-props.d.ts +1 -1
- package/dist/components/tree-view/tree-view-split-props.js +7 -2
- package/dist/components/tree-view/tree-view.d.ts +2 -0
- package/dist/components/tree-view/tree-view.js +2 -0
- package/package.json +58 -58
|
@@ -13,6 +13,8 @@ export { default as TreeViewItemIndicator, type TreeViewItemIndicatorBaseProps,
|
|
|
13
13
|
export { default as TreeViewItemText, type TreeViewItemTextBaseProps, type TreeViewItemTextProps, } from './tree-view-item-text.svelte';
|
|
14
14
|
export { default as TreeViewLabel, type TreeViewLabelBaseProps, type TreeViewLabelProps, } from './tree-view-label.svelte';
|
|
15
15
|
export { default as TreeViewNodeContext, type TreeViewNodeContextProps } from './tree-view-node-context.svelte';
|
|
16
|
+
export { default as TreeViewNodeCheckbox, type TreeViewNodeCheckboxBaseProps, type TreeViewNodeCheckboxProps, } from './tree-view-node-checkbox.svelte';
|
|
17
|
+
export { default as TreeViewNodeCheckboxIndicator, type TreeViewNodeCheckboxIndicatorBaseProps, type TreeViewNodeCheckboxIndicatorProps, } from './tree-view-node-checkbox-indicator.svelte';
|
|
16
18
|
export { default as TreeViewNodeProvider, type TreeViewNodeProviderBaseProps, type TreeViewNodeProviderProps, } from './tree-view-node-provider.svelte';
|
|
17
19
|
export { default as TreeViewRoot, type TreeViewRootBaseProps, type TreeViewRootProps } from './tree-view-root.svelte';
|
|
18
20
|
export { default as TreeViewRootProvider, type TreeViewRootProviderBaseProps, type TreeViewRootProviderProps, } from './tree-view-root-provider.svelte';
|
|
@@ -12,6 +12,8 @@ export { default as TreeViewItemIndicator, } from './tree-view-item-indicator.sv
|
|
|
12
12
|
export { default as TreeViewItemText, } from './tree-view-item-text.svelte';
|
|
13
13
|
export { default as TreeViewLabel, } from './tree-view-label.svelte';
|
|
14
14
|
export { default as TreeViewNodeContext } from './tree-view-node-context.svelte';
|
|
15
|
+
export { default as TreeViewNodeCheckbox, } from './tree-view-node-checkbox.svelte';
|
|
16
|
+
export { default as TreeViewNodeCheckboxIndicator, } from './tree-view-node-checkbox-indicator.svelte';
|
|
15
17
|
export { default as TreeViewNodeProvider, } from './tree-view-node-provider.svelte';
|
|
16
18
|
export { default as TreeViewRoot } from './tree-view-root.svelte';
|
|
17
19
|
export { default as TreeViewRootProvider, } from './tree-view-root-provider.svelte';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<script module lang="ts">
|
|
2
|
+
import type { Snippet } from 'svelte'
|
|
3
|
+
|
|
4
|
+
export interface TreeViewNodeCheckboxIndicatorBaseProps {
|
|
5
|
+
children?: Snippet
|
|
6
|
+
indeterminate?: Snippet
|
|
7
|
+
fallback?: Snippet
|
|
8
|
+
}
|
|
9
|
+
export interface TreeViewNodeCheckboxIndicatorProps extends TreeViewNodeCheckboxIndicatorBaseProps {}
|
|
10
|
+
</script>
|
|
11
|
+
|
|
12
|
+
<script lang="ts">
|
|
13
|
+
import { useTreeViewNodeContext } from './use-tree-view-node-context'
|
|
14
|
+
|
|
15
|
+
const { children, indeterminate, fallback }: TreeViewNodeCheckboxIndicatorProps = $props()
|
|
16
|
+
|
|
17
|
+
const nodeState = useTreeViewNodeContext()
|
|
18
|
+
const checkedState = $derived(nodeState().checked)
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
{#if checkedState === 'indeterminate' && indeterminate}
|
|
22
|
+
{@render indeterminate()}
|
|
23
|
+
{:else if checkedState === true && children}
|
|
24
|
+
{@render children()}
|
|
25
|
+
{:else if fallback}
|
|
26
|
+
{@render fallback()}
|
|
27
|
+
{/if}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Snippet } from 'svelte';
|
|
2
|
+
export interface TreeViewNodeCheckboxIndicatorBaseProps {
|
|
3
|
+
children?: Snippet;
|
|
4
|
+
indeterminate?: Snippet;
|
|
5
|
+
fallback?: Snippet;
|
|
6
|
+
}
|
|
7
|
+
export interface TreeViewNodeCheckboxIndicatorProps extends TreeViewNodeCheckboxIndicatorBaseProps {
|
|
8
|
+
}
|
|
9
|
+
declare const TreeViewNodeCheckboxIndicator: import("svelte").Component<TreeViewNodeCheckboxIndicatorProps, {}, "">;
|
|
10
|
+
type TreeViewNodeCheckboxIndicator = ReturnType<typeof TreeViewNodeCheckboxIndicator>;
|
|
11
|
+
export default TreeViewNodeCheckboxIndicator;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<script module lang="ts">
|
|
2
|
+
import type { Assign, HTMLProps, PolymorphicProps } from '../../types'
|
|
3
|
+
|
|
4
|
+
export interface TreeViewNodeCheckboxBaseProps extends PolymorphicProps<'span'> {}
|
|
5
|
+
export interface TreeViewNodeCheckboxProps extends Assign<HTMLProps<'span'>, TreeViewNodeCheckboxBaseProps> {}
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<script lang="ts">
|
|
9
|
+
import { mergeProps } from '@zag-js/svelte'
|
|
10
|
+
import { Ark } from '../factory'
|
|
11
|
+
import { useTreeViewContext } from './use-tree-view-context'
|
|
12
|
+
import { useTreeViewNodePropsContext } from './use-tree-view-node-props-context'
|
|
13
|
+
|
|
14
|
+
const props: TreeViewNodeCheckboxProps = $props()
|
|
15
|
+
|
|
16
|
+
const treeView = useTreeViewContext()
|
|
17
|
+
const nodeProps = useTreeViewNodePropsContext()
|
|
18
|
+
|
|
19
|
+
const mergedProps = $derived(mergeProps(treeView().getNodeCheckboxProps(nodeProps()), props))
|
|
20
|
+
</script>
|
|
21
|
+
|
|
22
|
+
<Ark as="span" {...mergedProps} />
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Assign, HTMLProps, PolymorphicProps } from '../../types';
|
|
2
|
+
export interface TreeViewNodeCheckboxBaseProps extends PolymorphicProps<'span'> {
|
|
3
|
+
}
|
|
4
|
+
export interface TreeViewNodeCheckboxProps extends Assign<HTMLProps<'span'>, TreeViewNodeCheckboxBaseProps> {
|
|
5
|
+
}
|
|
6
|
+
declare const TreeViewNodeCheckbox: import("svelte").Component<TreeViewNodeCheckboxProps, {}, "">;
|
|
7
|
+
type TreeViewNodeCheckbox = ReturnType<typeof TreeViewNodeCheckbox>;
|
|
8
|
+
export default TreeViewNodeCheckbox;
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
expandedValue = $bindable<string[]>(),
|
|
28
28
|
selectedValue = $bindable<string[]>(),
|
|
29
29
|
focusedValue = $bindable<string>(),
|
|
30
|
+
checkedValue = $bindable<string[]>(),
|
|
30
31
|
...props
|
|
31
32
|
}: TreeViewRootProps<T> = $props()
|
|
32
33
|
|
|
@@ -35,24 +36,29 @@
|
|
|
35
36
|
|
|
36
37
|
const id = $props.id()
|
|
37
38
|
|
|
38
|
-
const machineProps = $derived.by(() => ({
|
|
39
|
+
const machineProps = $derived.by<UseTreeViewProps<T>>(() => ({
|
|
39
40
|
...useTreeViewProps,
|
|
40
41
|
id: useTreeViewProps.id ?? id,
|
|
41
42
|
selectedValue,
|
|
42
43
|
expandedValue,
|
|
43
44
|
focusedValue,
|
|
44
|
-
|
|
45
|
+
checkedValue,
|
|
46
|
+
onExpandedChange: (details) => {
|
|
45
47
|
useTreeViewProps.onExpandedChange?.(details)
|
|
46
48
|
expandedValue = details.expandedValue
|
|
47
49
|
},
|
|
48
|
-
onFocusChange: (details
|
|
50
|
+
onFocusChange: (details) => {
|
|
49
51
|
useTreeViewProps.onFocusChange?.(details)
|
|
50
52
|
focusedValue = details.focusedValue
|
|
51
53
|
},
|
|
52
|
-
onSelectionChange: (details
|
|
54
|
+
onSelectionChange: (details) => {
|
|
53
55
|
useTreeViewProps.onSelectionChange?.(details)
|
|
54
56
|
selectedValue = details.selectedValue
|
|
55
57
|
},
|
|
58
|
+
onCheckedChange: (details) => {
|
|
59
|
+
useTreeViewProps.onCheckedChange?.(details)
|
|
60
|
+
checkedValue = details.checkedValue
|
|
61
|
+
},
|
|
56
62
|
}))
|
|
57
63
|
|
|
58
64
|
const treeView = useTreeView(() => machineProps)
|
|
@@ -10,7 +10,7 @@ declare class __sveltets_Render<T extends TreeNode> {
|
|
|
10
10
|
props(): TreeViewRootProps<T>;
|
|
11
11
|
events(): {};
|
|
12
12
|
slots(): {};
|
|
13
|
-
bindings(): "focusedValue" | "expandedValue" | "selectedValue";
|
|
13
|
+
bindings(): "focusedValue" | "expandedValue" | "selectedValue" | "checkedValue";
|
|
14
14
|
exports(): {};
|
|
15
15
|
}
|
|
16
16
|
interface $$IsomorphicComponent {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { TreeNode } from '../collection';
|
|
2
2
|
import type { UseTreeViewProps } from './use-tree-view.svelte';
|
|
3
|
-
export declare function splitTreeViewProps<T extends UseTreeViewProps<TreeNode>>(props: T): [UseTreeViewProps<any>, Omit<T, "ids" | "id" | "onFocusChange" | "collection" | "focusedValue" | "selectionMode" | "typeahead" | "expandedValue" | "defaultExpandedValue" | "selectedValue" | "defaultSelectedValue" | "onExpandedChange" | "onSelectionChange" | "onLoadChildrenComplete" | "expandOnClick" | "loadChildren">];
|
|
3
|
+
export declare function splitTreeViewProps<T extends UseTreeViewProps<TreeNode>>(props: T): [UseTreeViewProps<any>, Omit<T, "ids" | "id" | "onFocusChange" | "onCheckedChange" | "collection" | "focusedValue" | "defaultFocusedValue" | "selectionMode" | "typeahead" | "expandedValue" | "defaultExpandedValue" | "selectedValue" | "defaultSelectedValue" | "defaultCheckedValue" | "checkedValue" | "onExpandedChange" | "onSelectionChange" | "onLoadChildrenComplete" | "onLoadChildrenError" | "expandOnClick" | "loadChildren">];
|
|
@@ -2,21 +2,26 @@ import { createSplitProps } from '../../utils/create-split-props';
|
|
|
2
2
|
const splitFn = createSplitProps();
|
|
3
3
|
export function splitTreeViewProps(props) {
|
|
4
4
|
return splitFn(props, [
|
|
5
|
+
'checkedValue',
|
|
5
6
|
'collection',
|
|
7
|
+
'defaultCheckedValue',
|
|
6
8
|
'defaultExpandedValue',
|
|
9
|
+
'defaultFocusedValue',
|
|
7
10
|
'defaultSelectedValue',
|
|
8
11
|
'expandedValue',
|
|
9
12
|
'expandOnClick',
|
|
10
13
|
'focusedValue',
|
|
11
14
|
'id',
|
|
12
15
|
'ids',
|
|
16
|
+
'loadChildren',
|
|
17
|
+
'onCheckedChange',
|
|
13
18
|
'onExpandedChange',
|
|
14
19
|
'onFocusChange',
|
|
20
|
+
'onLoadChildrenComplete',
|
|
21
|
+
'onLoadChildrenError',
|
|
15
22
|
'onSelectionChange',
|
|
16
23
|
'selectedValue',
|
|
17
24
|
'selectionMode',
|
|
18
25
|
'typeahead',
|
|
19
|
-
'loadChildren',
|
|
20
|
-
'onLoadChildrenComplete',
|
|
21
26
|
]);
|
|
22
27
|
}
|
|
@@ -11,6 +11,8 @@ export { default as Item, type TreeViewItemBaseProps as ItemBaseProps, type Tree
|
|
|
11
11
|
export { default as ItemIndicator, type TreeViewItemIndicatorBaseProps as ItemIndicatorBaseProps, type TreeViewItemIndicatorProps as ItemIndicatorProps, } from './tree-view-item-indicator.svelte';
|
|
12
12
|
export { default as ItemText, type TreeViewItemTextBaseProps as ItemTextBaseProps, type TreeViewItemTextProps as ItemTextProps, } from './tree-view-item-text.svelte';
|
|
13
13
|
export { default as Label, type TreeViewLabelBaseProps as LabelBaseProps, type TreeViewLabelProps as LabelProps, } from './tree-view-label.svelte';
|
|
14
|
+
export { default as NodeCheckbox, type TreeViewNodeCheckboxBaseProps as NodeCheckboxBaseProps, type TreeViewNodeCheckboxProps as NodeCheckboxProps, } from './tree-view-node-checkbox.svelte';
|
|
15
|
+
export { default as NodeCheckboxIndicator, type TreeViewNodeCheckboxIndicatorBaseProps as NodeCheckboxIndicatorBaseProps, type TreeViewNodeCheckboxIndicatorProps as NodeCheckboxIndicatorProps, } from './tree-view-node-checkbox-indicator.svelte';
|
|
14
16
|
export { default as NodeContext, type TreeViewNodeContextProps as NodeContextProps, } from './tree-view-node-context.svelte';
|
|
15
17
|
export { default as NodeProvider, type TreeViewNodeProviderBaseProps as NodeProviderBaseProps, type TreeViewNodeProviderProps as NodeProviderProps, } from './tree-view-node-provider.svelte';
|
|
16
18
|
export { default as Root, type TreeViewRootBaseProps as RootBaseProps, type TreeViewRootProps as RootProps, } from './tree-view-root.svelte';
|
|
@@ -10,6 +10,8 @@ export { default as Item, } from './tree-view-item.svelte';
|
|
|
10
10
|
export { default as ItemIndicator, } from './tree-view-item-indicator.svelte';
|
|
11
11
|
export { default as ItemText, } from './tree-view-item-text.svelte';
|
|
12
12
|
export { default as Label, } from './tree-view-label.svelte';
|
|
13
|
+
export { default as NodeCheckbox, } from './tree-view-node-checkbox.svelte';
|
|
14
|
+
export { default as NodeCheckboxIndicator, } from './tree-view-node-checkbox-indicator.svelte';
|
|
13
15
|
export { default as NodeContext, } from './tree-view-node-context.svelte';
|
|
14
16
|
export { default as NodeProvider, } from './tree-view-node-provider.svelte';
|
|
15
17
|
export { default as Root, } from './tree-view-root.svelte';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/svelte",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.0.0
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"description": "A collection of unstyled, accessible UI components for Svelte",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"avatar",
|
|
@@ -81,63 +81,63 @@
|
|
|
81
81
|
"sideEffects": false,
|
|
82
82
|
"dependencies": {
|
|
83
83
|
"@internationalized/date": "3.8.2",
|
|
84
|
-
"@zag-js/accordion": "1.
|
|
85
|
-
"@zag-js/angle-slider": "1.
|
|
86
|
-
"@zag-js/anatomy": "1.
|
|
87
|
-
"@zag-js/auto-resize": "1.
|
|
88
|
-
"@zag-js/avatar": "1.
|
|
89
|
-
"@zag-js/carousel": "1.
|
|
90
|
-
"@zag-js/checkbox": "1.
|
|
91
|
-
"@zag-js/clipboard": "1.
|
|
92
|
-
"@zag-js/collapsible": "1.
|
|
93
|
-
"@zag-js/collection": "1.
|
|
94
|
-
"@zag-js/color-picker": "1.
|
|
95
|
-
"@zag-js/color-utils": "1.
|
|
96
|
-
"@zag-js/combobox": "1.
|
|
97
|
-
"@zag-js/core": "1.
|
|
98
|
-
"@zag-js/date-picker": "1.
|
|
99
|
-
"@zag-js/date-utils": "1.
|
|
100
|
-
"@zag-js/dialog": "1.
|
|
101
|
-
"@zag-js/dom-query": "1.
|
|
102
|
-
"@zag-js/editable": "1.
|
|
103
|
-
"@zag-js/file-upload": "1.
|
|
104
|
-
"@zag-js/file-utils": "1.
|
|
105
|
-
"@zag-js/focus-trap": "1.
|
|
106
|
-
"@zag-js/floating-panel": "1.
|
|
107
|
-
"@zag-js/highlight-word": "1.
|
|
108
|
-
"@zag-js/hover-card": "1.
|
|
109
|
-
"@zag-js/i18n-utils": "1.
|
|
110
|
-
"@zag-js/listbox": "1.
|
|
111
|
-
"@zag-js/menu": "1.
|
|
112
|
-
"@zag-js/number-input": "1.
|
|
113
|
-
"@zag-js/pagination": "1.
|
|
114
|
-
"@zag-js/password-input": "1.
|
|
115
|
-
"@zag-js/pin-input": "1.
|
|
116
|
-
"@zag-js/popover": "1.
|
|
117
|
-
"@zag-js/presence": "1.
|
|
118
|
-
"@zag-js/progress": "1.
|
|
119
|
-
"@zag-js/qr-code": "1.
|
|
120
|
-
"@zag-js/radio-group": "1.
|
|
121
|
-
"@zag-js/rating-group": "1.
|
|
122
|
-
"@zag-js/svelte": "1.
|
|
123
|
-
"@zag-js/select": "1.
|
|
124
|
-
"@zag-js/signature-pad": "1.
|
|
125
|
-
"@zag-js/slider": "1.
|
|
126
|
-
"@zag-js/splitter": "1.
|
|
127
|
-
"@zag-js/steps": "1.
|
|
128
|
-
"@zag-js/switch": "1.
|
|
129
|
-
"@zag-js/tabs": "1.
|
|
130
|
-
"@zag-js/tags-input": "1.
|
|
131
|
-
"@zag-js/time-picker": "1.
|
|
132
|
-
"@zag-js/timer": "1.
|
|
133
|
-
"@zag-js/toast": "1.
|
|
134
|
-
"@zag-js/toggle": "1.
|
|
135
|
-
"@zag-js/toggle-group": "1.
|
|
136
|
-
"@zag-js/tooltip": "1.
|
|
137
|
-
"@zag-js/tour": "1.
|
|
138
|
-
"@zag-js/tree-view": "1.
|
|
139
|
-
"@zag-js/types": "1.
|
|
140
|
-
"@zag-js/utils": "1.
|
|
84
|
+
"@zag-js/accordion": "1.17.0",
|
|
85
|
+
"@zag-js/angle-slider": "1.17.0",
|
|
86
|
+
"@zag-js/anatomy": "1.17.0",
|
|
87
|
+
"@zag-js/auto-resize": "1.17.0",
|
|
88
|
+
"@zag-js/avatar": "1.17.0",
|
|
89
|
+
"@zag-js/carousel": "1.17.0",
|
|
90
|
+
"@zag-js/checkbox": "1.17.0",
|
|
91
|
+
"@zag-js/clipboard": "1.17.0",
|
|
92
|
+
"@zag-js/collapsible": "1.17.0",
|
|
93
|
+
"@zag-js/collection": "1.17.0",
|
|
94
|
+
"@zag-js/color-picker": "1.17.0",
|
|
95
|
+
"@zag-js/color-utils": "1.17.0",
|
|
96
|
+
"@zag-js/combobox": "1.17.0",
|
|
97
|
+
"@zag-js/core": "1.17.0",
|
|
98
|
+
"@zag-js/date-picker": "1.17.0",
|
|
99
|
+
"@zag-js/date-utils": "1.17.0",
|
|
100
|
+
"@zag-js/dialog": "1.17.0",
|
|
101
|
+
"@zag-js/dom-query": "1.17.0",
|
|
102
|
+
"@zag-js/editable": "1.17.0",
|
|
103
|
+
"@zag-js/file-upload": "1.17.0",
|
|
104
|
+
"@zag-js/file-utils": "1.17.0",
|
|
105
|
+
"@zag-js/focus-trap": "1.17.0",
|
|
106
|
+
"@zag-js/floating-panel": "1.17.0",
|
|
107
|
+
"@zag-js/highlight-word": "1.17.0",
|
|
108
|
+
"@zag-js/hover-card": "1.17.0",
|
|
109
|
+
"@zag-js/i18n-utils": "1.17.0",
|
|
110
|
+
"@zag-js/listbox": "1.17.0",
|
|
111
|
+
"@zag-js/menu": "1.17.0",
|
|
112
|
+
"@zag-js/number-input": "1.17.0",
|
|
113
|
+
"@zag-js/pagination": "1.17.0",
|
|
114
|
+
"@zag-js/password-input": "1.17.0",
|
|
115
|
+
"@zag-js/pin-input": "1.17.0",
|
|
116
|
+
"@zag-js/popover": "1.17.0",
|
|
117
|
+
"@zag-js/presence": "1.17.0",
|
|
118
|
+
"@zag-js/progress": "1.17.0",
|
|
119
|
+
"@zag-js/qr-code": "1.17.0",
|
|
120
|
+
"@zag-js/radio-group": "1.17.0",
|
|
121
|
+
"@zag-js/rating-group": "1.17.0",
|
|
122
|
+
"@zag-js/svelte": "1.17.0",
|
|
123
|
+
"@zag-js/select": "1.17.0",
|
|
124
|
+
"@zag-js/signature-pad": "1.17.0",
|
|
125
|
+
"@zag-js/slider": "1.17.0",
|
|
126
|
+
"@zag-js/splitter": "1.17.0",
|
|
127
|
+
"@zag-js/steps": "1.17.0",
|
|
128
|
+
"@zag-js/switch": "1.17.0",
|
|
129
|
+
"@zag-js/tabs": "1.17.0",
|
|
130
|
+
"@zag-js/tags-input": "1.17.0",
|
|
131
|
+
"@zag-js/time-picker": "1.17.0",
|
|
132
|
+
"@zag-js/timer": "1.17.0",
|
|
133
|
+
"@zag-js/toast": "1.17.0",
|
|
134
|
+
"@zag-js/toggle": "1.17.0",
|
|
135
|
+
"@zag-js/toggle-group": "1.17.0",
|
|
136
|
+
"@zag-js/tooltip": "1.17.0",
|
|
137
|
+
"@zag-js/tour": "1.17.0",
|
|
138
|
+
"@zag-js/tree-view": "1.17.0",
|
|
139
|
+
"@zag-js/types": "1.17.0",
|
|
140
|
+
"@zag-js/utils": "1.17.0"
|
|
141
141
|
},
|
|
142
142
|
"devDependencies": {
|
|
143
143
|
"@storybook/addon-a11y": "9.0.10",
|