@ark-ui/svelte 5.1.1 → 5.2.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/checkbox/checkbox-group-provider.svelte +24 -0
- package/dist/components/checkbox/checkbox-group-provider.svelte.d.ts +10 -0
- package/dist/components/checkbox/checkbox-group.svelte +2 -2
- package/dist/components/checkbox/checkbox.d.ts +1 -0
- package/dist/components/checkbox/checkbox.js +1 -0
- package/dist/components/checkbox/index.d.ts +2 -1
- package/dist/components/checkbox/index.js +2 -1
- package/dist/components/checkbox/use-checkbox-group-context.d.ts +1 -1
- package/dist/components/checkbox/use-checkbox-group-context.js +1 -1
- package/dist/components/collection/index.d.ts +1 -1
- package/dist/components/collection/index.js +1 -1
- package/dist/components/file-upload/file-upload.d.ts +1 -1
- package/dist/components/file-upload/index.d.ts +1 -1
- package/dist/components/portal/portal.svelte +38 -3
- package/dist/components/portal/portal.svelte.d.ts +10 -0
- package/package.json +68 -68
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<script module lang="ts">
|
|
2
|
+
import type { Assign, HTMLProps, PolymorphicProps, RefAttribute } from '../../types'
|
|
3
|
+
import type { UseCheckboxGroupReturn } from './use-checkbox-group.svelte'
|
|
4
|
+
|
|
5
|
+
export interface CheckboxGroupProviderBaseProps extends PolymorphicProps<'div'>, RefAttribute {
|
|
6
|
+
value: UseCheckboxGroupReturn
|
|
7
|
+
}
|
|
8
|
+
export interface CheckboxGroupProviderProps extends Assign<HTMLProps<'div'>, CheckboxGroupProviderBaseProps> {}
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<script lang="ts">
|
|
12
|
+
import { mergeProps } from '@zag-js/svelte'
|
|
13
|
+
import { Ark } from '../factory'
|
|
14
|
+
import { CheckboxGroupContextProvider } from './use-checkbox-group-context'
|
|
15
|
+
import { checkboxAnatomy } from './checkbox.anatomy'
|
|
16
|
+
|
|
17
|
+
let { ref = $bindable(null), value, ...props }: CheckboxGroupProviderProps = $props()
|
|
18
|
+
|
|
19
|
+
const mergedProps = $derived(mergeProps({ role: 'group', ...checkboxAnatomy.build().group.attrs }, props))
|
|
20
|
+
|
|
21
|
+
CheckboxGroupContextProvider(value)
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
<Ark as="div" bind:ref {...mergedProps} />
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Assign, HTMLProps, PolymorphicProps, RefAttribute } from '../../types';
|
|
2
|
+
import type { UseCheckboxGroupReturn } from './use-checkbox-group.svelte';
|
|
3
|
+
export interface CheckboxGroupProviderBaseProps extends PolymorphicProps<'div'>, RefAttribute {
|
|
4
|
+
value: UseCheckboxGroupReturn;
|
|
5
|
+
}
|
|
6
|
+
export interface CheckboxGroupProviderProps extends Assign<HTMLProps<'div'>, CheckboxGroupProviderBaseProps> {
|
|
7
|
+
}
|
|
8
|
+
declare const CheckboxGroupProvider: import("svelte").Component<CheckboxGroupProviderProps, {}, "ref">;
|
|
9
|
+
type CheckboxGroupProvider = ReturnType<typeof CheckboxGroupProvider>;
|
|
10
|
+
export default CheckboxGroupProvider;
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<script lang="ts">
|
|
10
10
|
import { Ark } from '../factory'
|
|
11
11
|
import { checkboxAnatomy } from './checkbox.anatomy'
|
|
12
|
-
import {
|
|
12
|
+
import { CheckboxGroupContextProvider } from './use-checkbox-group-context'
|
|
13
13
|
import { splitCheckboxGroupProps } from './split-checkbox-group-props.svelte'
|
|
14
14
|
import { useCheckboxGroup } from './use-checkbox-group.svelte'
|
|
15
15
|
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
const checkboxGroup = useCheckboxGroup(() => resolvedProps)
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
CheckboxGroupContextProvider(checkboxGroup)
|
|
32
32
|
</script>
|
|
33
33
|
|
|
34
34
|
<Ark as="div" bind:ref role="group" {...checkboxAnatomy.build().group.attrs} {...localProps} />
|
|
@@ -2,6 +2,7 @@ export type { CheckedChangeDetails, CheckedState } from '@zag-js/checkbox';
|
|
|
2
2
|
export { default as Context, type CheckboxContextProps as ContextProps } from './checkbox-context.svelte';
|
|
3
3
|
export { default as Control, type CheckboxControlBaseProps as ControlBaseProps, type CheckboxControlProps as ControlProps, } from './checkbox-control.svelte';
|
|
4
4
|
export { default as Group, type CheckboxGroupBaseProps as GroupBaseProps, type CheckboxGroupProps as GroupProps, } from './checkbox-group.svelte';
|
|
5
|
+
export { default as GroupProvider, type CheckboxGroupProviderBaseProps as GroupProviderBaseProps, type CheckboxGroupProviderProps as GroupProviderProps, } from './checkbox-group-provider.svelte';
|
|
5
6
|
export { default as HiddenInput, type CheckboxHiddenInputBaseProps as HiddenInputBaseProps, type CheckboxHiddenInputProps as HiddenInputProps, } from './checkbox-hidden-input.svelte';
|
|
6
7
|
export { default as Indicator, type CheckboxIndicatorBaseProps as IndicatorBaseProps, type CheckboxIndicatorProps as IndicatorProps, } from './checkbox-indicator.svelte';
|
|
7
8
|
export { default as Label, type CheckboxLabelBaseProps as LabelBaseProps, type CheckboxLabelProps as LabelProps, } from './checkbox-label.svelte';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { default as Context } from './checkbox-context.svelte';
|
|
2
2
|
export { default as Control, } from './checkbox-control.svelte';
|
|
3
3
|
export { default as Group, } from './checkbox-group.svelte';
|
|
4
|
+
export { default as GroupProvider, } from './checkbox-group-provider.svelte';
|
|
4
5
|
export { default as HiddenInput, } from './checkbox-hidden-input.svelte';
|
|
5
6
|
export { default as Indicator, } from './checkbox-indicator.svelte';
|
|
6
7
|
export { default as Label, } from './checkbox-label.svelte';
|
|
@@ -2,6 +2,7 @@ export type { CheckedChangeDetails as CheckboxCheckedChangeDetails, CheckedState
|
|
|
2
2
|
export { default as CheckboxContext, type CheckboxContextProps } from './checkbox-context.svelte';
|
|
3
3
|
export { default as CheckboxControl, type CheckboxControlBaseProps, type CheckboxControlProps, } from './checkbox-control.svelte';
|
|
4
4
|
export { default as CheckboxGroup, type CheckboxGroupBaseProps, type CheckboxGroupProps } from './checkbox-group.svelte';
|
|
5
|
+
export { default as CheckboxGroupProvider, type CheckboxGroupProviderBaseProps, type CheckboxGroupProviderProps, } from './checkbox-group-provider.svelte';
|
|
5
6
|
export { default as CheckboxHiddenInput, type CheckboxHiddenInputBaseProps, type CheckboxHiddenInputProps, } from './checkbox-hidden-input.svelte';
|
|
6
7
|
export { default as CheckboxIndicator, type CheckboxIndicatorBaseProps, type CheckboxIndicatorProps, } from './checkbox-indicator.svelte';
|
|
7
8
|
export { default as CheckboxLabel, type CheckboxLabelBaseProps, type CheckboxLabelProps } from './checkbox-label.svelte';
|
|
@@ -10,7 +11,7 @@ export { default as CheckboxRoot, type CheckboxRootBaseProps, type CheckboxRootP
|
|
|
10
11
|
export { checkboxAnatomy } from './checkbox.anatomy';
|
|
11
12
|
export { CheckboxProvider, useCheckboxContext } from './use-checkbox-context';
|
|
12
13
|
export type { UseCheckboxContext } from './use-checkbox-context';
|
|
13
|
-
export {
|
|
14
|
+
export { useCheckboxGroupContext } from './use-checkbox-group-context';
|
|
14
15
|
export type { UseCheckboxGroupContext } from './use-checkbox-group-context';
|
|
15
16
|
export { useCheckboxGroup } from './use-checkbox-group.svelte';
|
|
16
17
|
export type { UseCheckboxGroupProps, UseCheckboxGroupReturn } from './use-checkbox-group.svelte';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { default as CheckboxContext } from './checkbox-context.svelte';
|
|
2
2
|
export { default as CheckboxControl, } from './checkbox-control.svelte';
|
|
3
3
|
export { default as CheckboxGroup } from './checkbox-group.svelte';
|
|
4
|
+
export { default as CheckboxGroupProvider, } from './checkbox-group-provider.svelte';
|
|
4
5
|
export { default as CheckboxHiddenInput, } from './checkbox-hidden-input.svelte';
|
|
5
6
|
export { default as CheckboxIndicator, } from './checkbox-indicator.svelte';
|
|
6
7
|
export { default as CheckboxLabel } from './checkbox-label.svelte';
|
|
@@ -8,7 +9,7 @@ export { default as CheckboxRootProvider, } from './checkbox-root-provider.svelt
|
|
|
8
9
|
export { default as CheckboxRoot } from './checkbox-root.svelte';
|
|
9
10
|
export { checkboxAnatomy } from './checkbox.anatomy';
|
|
10
11
|
export { CheckboxProvider, useCheckboxContext } from './use-checkbox-context';
|
|
11
|
-
export {
|
|
12
|
+
export { useCheckboxGroupContext } from './use-checkbox-group-context';
|
|
12
13
|
export { useCheckboxGroup } from './use-checkbox-group.svelte';
|
|
13
14
|
export { useCheckbox } from './use-checkbox.svelte';
|
|
14
15
|
export * as Checkbox from './checkbox';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { UseCheckboxGroupReturn } from './use-checkbox-group.svelte';
|
|
2
2
|
export interface UseCheckboxGroupContext extends UseCheckboxGroupReturn {
|
|
3
3
|
}
|
|
4
|
-
export declare const
|
|
4
|
+
export declare const CheckboxGroupContextProvider: (opts: UseCheckboxGroupContext) => void, useCheckboxGroupContext: (fallback?: UseCheckboxGroupContext | undefined) => UseCheckboxGroupContext;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createContext } from '../../utils/create-context';
|
|
2
|
-
export const [
|
|
2
|
+
export const [CheckboxGroupContextProvider, useCheckboxGroupContext] = createContext({
|
|
3
3
|
name: 'CheckboxGroupContext',
|
|
4
4
|
strict: false,
|
|
5
5
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { createGridCollection, type GridCollection, type GridCollectionOptions } from './grid-collection';
|
|
2
2
|
export { createListCollection, type CollectionItem, type CollectionOptions, type ListCollection, } from './list-collection';
|
|
3
3
|
export { createFileTreeCollection, createTreeCollection, type FilePathTreeNode, type FlatTreeNode, type TreeCollection, type TreeCollectionOptions, type TreeNode, } from './tree-collection';
|
|
4
|
-
export { useListCollection, type UseListCollectionProps } from './use-list-collection.svelte';
|
|
4
|
+
export { useListCollection, type UseListCollectionProps, type UseListCollectionReturn, } from './use-list-collection.svelte';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { createGridCollection } from './grid-collection';
|
|
2
2
|
export { createListCollection, } from './list-collection';
|
|
3
3
|
export { createFileTreeCollection, createTreeCollection, } from './tree-collection';
|
|
4
|
-
export { useListCollection } from './use-list-collection.svelte';
|
|
4
|
+
export { useListCollection, } from './use-list-collection.svelte';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { FileAcceptDetails, FileChangeDetails, FileRejectDetails, FileValidateDetails } from '@zag-js/file-upload';
|
|
1
|
+
export type { FileAcceptDetails, FileChangeDetails, FileRejectDetails, FileValidateDetails, FileError, FileMimeType, FileRejection, } from '@zag-js/file-upload';
|
|
2
2
|
export { default as ClearTrigger, type FileUploadClearTriggerBaseProps as ClearTriggerBaseProps, type FileUploadClearTriggerProps as ClearTriggerProps, } from './file-upload-clear-trigger.svelte';
|
|
3
3
|
export { default as Context, type FileUploadContextProps as ContextProps } from './file-upload-context.svelte';
|
|
4
4
|
export { default as Dropzone, type FileUploadDropzoneBaseProps as DropzoneBaseProps, type FileUploadDropzoneProps as DropzoneProps, } from './file-upload-dropzone.svelte';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { FileAcceptDetails as FileUploadFileAcceptDetails, FileChangeDetails as FileUploadFileChangeDetails, FileRejectDetails as FileUploadFileRejectDetails, FileValidateDetails as FileUploadFileValidateDetails, } from '@zag-js/file-upload';
|
|
1
|
+
export type { FileAcceptDetails as FileUploadFileAcceptDetails, FileChangeDetails as FileUploadFileChangeDetails, FileRejectDetails as FileUploadFileRejectDetails, FileValidateDetails as FileUploadFileValidateDetails, FileError as FileUploadFileError, FileMimeType as FileUploadFileMimeType, FileRejection as FileUploadFileRejection, } from '@zag-js/file-upload';
|
|
2
2
|
export { default as FileUploadClearTrigger, type FileUploadClearTriggerBaseProps, type FileUploadClearTriggerProps, } from './file-upload-clear-trigger.svelte';
|
|
3
3
|
export { default as FileUploadContext, type FileUploadContextProps } from './file-upload-context.svelte';
|
|
4
4
|
export { default as FileUploadDropzone, type FileUploadDropzoneBaseProps, type FileUploadDropzoneProps, } from './file-upload-dropzone.svelte';
|
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
2
|
import type { Snippet } from 'svelte'
|
|
3
|
+
|
|
3
4
|
export interface PortalProps {
|
|
5
|
+
/**
|
|
6
|
+
* If true, the portal will not be rendered.
|
|
7
|
+
*/
|
|
8
|
+
disabled?: boolean
|
|
9
|
+
/**
|
|
10
|
+
* The container to render the portal into.
|
|
11
|
+
*/
|
|
4
12
|
container?: HTMLElement
|
|
13
|
+
/**
|
|
14
|
+
* The children to render in the portal.
|
|
15
|
+
*/
|
|
5
16
|
children: Snippet
|
|
6
17
|
}
|
|
7
18
|
</script>
|
|
@@ -13,13 +24,37 @@
|
|
|
13
24
|
import { getAllContexts, mount, unmount } from 'svelte'
|
|
14
25
|
import PortalConsumer from './portal-consumer.svelte'
|
|
15
26
|
|
|
16
|
-
const { container = globalThis?.document?.body, children }: PortalProps = $props()
|
|
27
|
+
const { container = globalThis?.document?.body, children, disabled = false }: PortalProps = $props()
|
|
17
28
|
|
|
18
29
|
const context = getAllContexts()
|
|
19
30
|
|
|
31
|
+
let instance: ReturnType<typeof mount> | null = null
|
|
32
|
+
|
|
33
|
+
const unmountInstance = () => {
|
|
34
|
+
if (instance) {
|
|
35
|
+
unmount(instance)
|
|
36
|
+
instance = null
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
20
40
|
$effect(() => {
|
|
21
|
-
|
|
41
|
+
if (disabled || !container) {
|
|
42
|
+
unmountInstance()
|
|
43
|
+
return
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
instance = mount(PortalConsumer, {
|
|
47
|
+
target: container,
|
|
48
|
+
props: { children },
|
|
49
|
+
context,
|
|
50
|
+
})
|
|
22
51
|
|
|
23
|
-
return () =>
|
|
52
|
+
return () => {
|
|
53
|
+
unmountInstance()
|
|
54
|
+
}
|
|
24
55
|
})
|
|
25
56
|
</script>
|
|
57
|
+
|
|
58
|
+
{#if disabled}
|
|
59
|
+
{@render children?.()}
|
|
60
|
+
{/if}
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
import type { Snippet } from 'svelte';
|
|
2
2
|
export interface PortalProps {
|
|
3
|
+
/**
|
|
4
|
+
* If true, the portal will not be rendered.
|
|
5
|
+
*/
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* The container to render the portal into.
|
|
9
|
+
*/
|
|
3
10
|
container?: HTMLElement;
|
|
11
|
+
/**
|
|
12
|
+
* The children to render in the portal.
|
|
13
|
+
*/
|
|
4
14
|
children: Snippet;
|
|
5
15
|
}
|
|
6
16
|
declare const Portal: import("svelte").Component<PortalProps, {}, "">;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/svelte",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.2.0",
|
|
5
5
|
"description": "A collection of unstyled, accessible UI components for Svelte",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"accordion",
|
|
@@ -120,84 +120,84 @@
|
|
|
120
120
|
"sideEffects": false,
|
|
121
121
|
"dependencies": {
|
|
122
122
|
"@internationalized/date": "3.8.2",
|
|
123
|
-
"@zag-js/accordion": "1.18.
|
|
124
|
-
"@zag-js/angle-slider": "1.18.
|
|
125
|
-
"@zag-js/anatomy": "1.18.
|
|
126
|
-
"@zag-js/auto-resize": "1.18.
|
|
127
|
-
"@zag-js/avatar": "1.18.
|
|
128
|
-
"@zag-js/carousel": "1.18.
|
|
129
|
-
"@zag-js/checkbox": "1.18.
|
|
130
|
-
"@zag-js/clipboard": "1.18.
|
|
131
|
-
"@zag-js/collapsible": "1.18.
|
|
132
|
-
"@zag-js/collection": "1.18.
|
|
133
|
-
"@zag-js/color-picker": "1.18.
|
|
134
|
-
"@zag-js/color-utils": "1.18.
|
|
135
|
-
"@zag-js/combobox": "1.18.
|
|
136
|
-
"@zag-js/core": "1.18.
|
|
137
|
-
"@zag-js/date-picker": "1.18.
|
|
138
|
-
"@zag-js/date-utils": "1.18.
|
|
139
|
-
"@zag-js/dialog": "1.18.
|
|
140
|
-
"@zag-js/dom-query": "1.18.
|
|
141
|
-
"@zag-js/editable": "1.18.
|
|
142
|
-
"@zag-js/file-upload": "1.18.
|
|
143
|
-
"@zag-js/file-utils": "1.18.
|
|
144
|
-
"@zag-js/focus-trap": "1.18.
|
|
145
|
-
"@zag-js/floating-panel": "1.18.
|
|
146
|
-
"@zag-js/highlight-word": "1.18.
|
|
147
|
-
"@zag-js/hover-card": "1.18.
|
|
148
|
-
"@zag-js/i18n-utils": "1.18.
|
|
149
|
-
"@zag-js/listbox": "1.18.
|
|
150
|
-
"@zag-js/menu": "1.18.
|
|
151
|
-
"@zag-js/number-input": "1.18.
|
|
152
|
-
"@zag-js/pagination": "1.18.
|
|
153
|
-
"@zag-js/password-input": "1.18.
|
|
154
|
-
"@zag-js/pin-input": "1.18.
|
|
155
|
-
"@zag-js/popover": "1.18.
|
|
156
|
-
"@zag-js/presence": "1.18.
|
|
157
|
-
"@zag-js/progress": "1.18.
|
|
158
|
-
"@zag-js/qr-code": "1.18.
|
|
159
|
-
"@zag-js/radio-group": "1.18.
|
|
160
|
-
"@zag-js/rating-group": "1.18.
|
|
161
|
-
"@zag-js/svelte": "1.18.
|
|
162
|
-
"@zag-js/select": "1.18.
|
|
163
|
-
"@zag-js/signature-pad": "1.18.
|
|
164
|
-
"@zag-js/slider": "1.18.
|
|
165
|
-
"@zag-js/splitter": "1.18.
|
|
166
|
-
"@zag-js/steps": "1.18.
|
|
167
|
-
"@zag-js/switch": "1.18.
|
|
168
|
-
"@zag-js/tabs": "1.18.
|
|
169
|
-
"@zag-js/tags-input": "1.18.
|
|
170
|
-
"@zag-js/time-picker": "1.18.
|
|
171
|
-
"@zag-js/timer": "1.18.
|
|
172
|
-
"@zag-js/toast": "1.18.
|
|
173
|
-
"@zag-js/toggle": "1.18.
|
|
174
|
-
"@zag-js/toggle-group": "1.18.
|
|
175
|
-
"@zag-js/tooltip": "1.18.
|
|
176
|
-
"@zag-js/tour": "1.18.
|
|
177
|
-
"@zag-js/tree-view": "1.18.
|
|
178
|
-
"@zag-js/types": "1.18.
|
|
179
|
-
"@zag-js/utils": "1.18.
|
|
123
|
+
"@zag-js/accordion": "1.18.4",
|
|
124
|
+
"@zag-js/angle-slider": "1.18.4",
|
|
125
|
+
"@zag-js/anatomy": "1.18.4",
|
|
126
|
+
"@zag-js/auto-resize": "1.18.4",
|
|
127
|
+
"@zag-js/avatar": "1.18.4",
|
|
128
|
+
"@zag-js/carousel": "1.18.4",
|
|
129
|
+
"@zag-js/checkbox": "1.18.4",
|
|
130
|
+
"@zag-js/clipboard": "1.18.4",
|
|
131
|
+
"@zag-js/collapsible": "1.18.4",
|
|
132
|
+
"@zag-js/collection": "1.18.4",
|
|
133
|
+
"@zag-js/color-picker": "1.18.4",
|
|
134
|
+
"@zag-js/color-utils": "1.18.4",
|
|
135
|
+
"@zag-js/combobox": "1.18.4",
|
|
136
|
+
"@zag-js/core": "1.18.4",
|
|
137
|
+
"@zag-js/date-picker": "1.18.4",
|
|
138
|
+
"@zag-js/date-utils": "1.18.4",
|
|
139
|
+
"@zag-js/dialog": "1.18.4",
|
|
140
|
+
"@zag-js/dom-query": "1.18.4",
|
|
141
|
+
"@zag-js/editable": "1.18.4",
|
|
142
|
+
"@zag-js/file-upload": "1.18.4",
|
|
143
|
+
"@zag-js/file-utils": "1.18.4",
|
|
144
|
+
"@zag-js/focus-trap": "1.18.4",
|
|
145
|
+
"@zag-js/floating-panel": "1.18.4",
|
|
146
|
+
"@zag-js/highlight-word": "1.18.4",
|
|
147
|
+
"@zag-js/hover-card": "1.18.4",
|
|
148
|
+
"@zag-js/i18n-utils": "1.18.4",
|
|
149
|
+
"@zag-js/listbox": "1.18.4",
|
|
150
|
+
"@zag-js/menu": "1.18.4",
|
|
151
|
+
"@zag-js/number-input": "1.18.4",
|
|
152
|
+
"@zag-js/pagination": "1.18.4",
|
|
153
|
+
"@zag-js/password-input": "1.18.4",
|
|
154
|
+
"@zag-js/pin-input": "1.18.4",
|
|
155
|
+
"@zag-js/popover": "1.18.4",
|
|
156
|
+
"@zag-js/presence": "1.18.4",
|
|
157
|
+
"@zag-js/progress": "1.18.4",
|
|
158
|
+
"@zag-js/qr-code": "1.18.4",
|
|
159
|
+
"@zag-js/radio-group": "1.18.4",
|
|
160
|
+
"@zag-js/rating-group": "1.18.4",
|
|
161
|
+
"@zag-js/svelte": "1.18.4",
|
|
162
|
+
"@zag-js/select": "1.18.4",
|
|
163
|
+
"@zag-js/signature-pad": "1.18.4",
|
|
164
|
+
"@zag-js/slider": "1.18.4",
|
|
165
|
+
"@zag-js/splitter": "1.18.4",
|
|
166
|
+
"@zag-js/steps": "1.18.4",
|
|
167
|
+
"@zag-js/switch": "1.18.4",
|
|
168
|
+
"@zag-js/tabs": "1.18.4",
|
|
169
|
+
"@zag-js/tags-input": "1.18.4",
|
|
170
|
+
"@zag-js/time-picker": "1.18.4",
|
|
171
|
+
"@zag-js/timer": "1.18.4",
|
|
172
|
+
"@zag-js/toast": "1.18.4",
|
|
173
|
+
"@zag-js/toggle": "1.18.4",
|
|
174
|
+
"@zag-js/toggle-group": "1.18.4",
|
|
175
|
+
"@zag-js/tooltip": "1.18.4",
|
|
176
|
+
"@zag-js/tour": "1.18.4",
|
|
177
|
+
"@zag-js/tree-view": "1.18.4",
|
|
178
|
+
"@zag-js/types": "1.18.4",
|
|
179
|
+
"@zag-js/utils": "1.18.4"
|
|
180
180
|
},
|
|
181
181
|
"devDependencies": {
|
|
182
|
-
"@storybook/addon-a11y": "9.0.
|
|
183
|
-
"@storybook/sveltekit": "9.0.
|
|
182
|
+
"@storybook/addon-a11y": "9.0.17",
|
|
183
|
+
"@storybook/sveltekit": "9.0.17",
|
|
184
184
|
"@sveltejs/adapter-auto": "6.0.1",
|
|
185
|
-
"@sveltejs/kit": "2.
|
|
186
|
-
"@sveltejs/package": "2.
|
|
187
|
-
"@sveltejs/vite-plugin-svelte": "
|
|
188
|
-
"@tanstack/svelte-form": "1.
|
|
185
|
+
"@sveltejs/kit": "2.25.0",
|
|
186
|
+
"@sveltejs/package": "2.4.0",
|
|
187
|
+
"@sveltejs/vite-plugin-svelte": "6.1.0",
|
|
188
|
+
"@tanstack/svelte-form": "1.14.0",
|
|
189
189
|
"@testing-library/jest-dom": "6.6.3",
|
|
190
190
|
"@testing-library/svelte": "5.2.8",
|
|
191
191
|
"@testing-library/user-event": "14.6.1",
|
|
192
192
|
"@vitest/coverage-v8": "3.2.4",
|
|
193
193
|
"clean-package": "2.2.0",
|
|
194
194
|
"lucide-svelte": "0.525.0",
|
|
195
|
-
"storybook": "9.0.
|
|
196
|
-
"svelte": "5.
|
|
197
|
-
"svelte-check": "4.
|
|
195
|
+
"storybook": "9.0.17",
|
|
196
|
+
"svelte": "5.36.7",
|
|
197
|
+
"svelte-check": "4.3.0",
|
|
198
198
|
"tslib": "2.8.1",
|
|
199
199
|
"typescript": "5.8.3",
|
|
200
|
-
"vite": "7.0.
|
|
200
|
+
"vite": "7.0.5",
|
|
201
201
|
"vitest": "3.2.4"
|
|
202
202
|
},
|
|
203
203
|
"peerDependencies": {
|