@ark-ui/vue 5.16.0 → 5.16.1

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.
@@ -10,72 +10,94 @@ function useListCollection(props) {
10
10
  const { initialItems = [], filter, limit, ...collectionOptions } = vue.toValue(props);
11
11
  return [{ initialItems, filter, limit }, collectionOptions];
12
12
  });
13
- const create = (items) => {
14
- const [, collectionOptions] = resolvedProps.value;
15
- return listCollection.createListCollection({ ...collectionOptions, items });
16
- };
17
13
  const init = () => {
18
- const [localProps] = resolvedProps.value;
19
- return create(
20
- localProps.limit != null ? localProps.initialItems.slice(0, localProps.limit) : localProps.initialItems
21
- );
14
+ const { initialItems } = resolvedProps.value[0];
15
+ return initialItems;
22
16
  };
23
- const collection = vue.ref(init());
24
- const setCollection = (newCollection) => {
25
- const [localProps] = resolvedProps.value;
26
- collection.value = localProps.limit == null ? newCollection : newCollection.copy(newCollection.items.slice(0, localProps.limit));
17
+ const items = vue.ref(init());
18
+ const filterText = vue.ref("");
19
+ const setItems = (newItems) => {
20
+ items.value = newItems;
21
+ filterText.value = "";
22
+ };
23
+ const create = (itemsToCreate) => {
24
+ const [, collectionOptions] = resolvedProps.value;
25
+ return listCollection.createListCollection({ ...collectionOptions, items: itemsToCreate });
27
26
  };
27
+ const collection = vue.computed(() => {
28
+ const [localProps, collectionOptions] = resolvedProps.value;
29
+ let activeItems = items.value;
30
+ const filter = localProps.filter;
31
+ if (filterText.value && filter) {
32
+ activeItems = create(items.value).filter(
33
+ (itemString, _index, item) => filter(itemString, filterText.value, item)
34
+ ).items;
35
+ }
36
+ const limitedItems = localProps.limit == null ? activeItems : activeItems.slice(0, localProps.limit);
37
+ return listCollection.createListCollection({ ...collectionOptions, items: limitedItems });
38
+ });
28
39
  return {
29
40
  collection,
30
- filter: (inputValue) => {
31
- const [localProps] = resolvedProps.value;
32
- const filter = localProps.filter;
33
- if (!filter) return;
34
- const filtered = create(localProps.initialItems).filter((itemString) => filter(itemString, inputValue));
35
- setCollection(filtered);
41
+ filter: (inputValue = "") => {
42
+ filterText.value = inputValue;
36
43
  },
37
- set: (items) => {
38
- setCollection(create(items));
44
+ set: (newItems) => {
45
+ setItems(newItems);
39
46
  },
40
47
  reset: () => {
41
48
  const [localProps] = resolvedProps.value;
42
- setCollection(create(localProps.initialItems));
49
+ setItems(localProps.initialItems);
43
50
  },
44
51
  clear: () => {
45
- setCollection(create([]));
52
+ setItems([]);
46
53
  },
47
- insert: (index, ...items) => {
48
- setCollection(collection.value.insert(index, ...items));
54
+ insert: (index, ...itemsToInsert) => {
55
+ const newItems = create(items.value).insert(index, ...itemsToInsert).items;
56
+ setItems(newItems);
49
57
  },
50
- insertBefore: (value, ...items) => {
51
- setCollection(collection.value.insertBefore(value, ...items));
58
+ insertBefore: (value, ...itemsToInsert) => {
59
+ const newItems = create(items.value).insertBefore(value, ...itemsToInsert).items;
60
+ setItems(newItems);
52
61
  },
53
- insertAfter: (value, ...items) => {
54
- setCollection(collection.value.insertAfter(value, ...items));
62
+ insertAfter: (value, ...itemsToInsert) => {
63
+ const newItems = create(items.value).insertAfter(value, ...itemsToInsert).items;
64
+ setItems(newItems);
55
65
  },
56
66
  remove: (...itemOrValues) => {
57
- setCollection(collection.value.remove(...itemOrValues));
67
+ const newItems = create(items.value).remove(...itemOrValues).items;
68
+ setItems(newItems);
58
69
  },
59
70
  move: (value, to) => {
60
- setCollection(collection.value.move(value, to));
71
+ const newItems = create(items.value).move(value, to).items;
72
+ setItems(newItems);
61
73
  },
62
74
  moveBefore: (value, ...values) => {
63
- setCollection(collection.value.moveBefore(value, ...values));
75
+ const newItems = create(items.value).moveBefore(value, ...values).items;
76
+ setItems(newItems);
64
77
  },
65
78
  moveAfter: (value, ...values) => {
66
- setCollection(collection.value.moveAfter(value, ...values));
79
+ const newItems = create(items.value).moveAfter(value, ...values).items;
80
+ setItems(newItems);
67
81
  },
68
82
  reorder: (from, to) => {
69
- setCollection(collection.value.reorder(from, to));
83
+ const newItems = create(items.value).reorder(from, to).items;
84
+ setItems(newItems);
85
+ },
86
+ append: (...itemsToAppend) => {
87
+ const newItems = create(items.value).append(...itemsToAppend).items;
88
+ setItems(newItems);
70
89
  },
71
- append: (...items) => {
72
- setCollection(collection.value.append(...items));
90
+ upsert: (value, item, mode = "append") => {
91
+ const newItems = create(items.value).upsert(value, item, mode).items;
92
+ setItems(newItems);
73
93
  },
74
- prepend: (...items) => {
75
- setCollection(collection.value.prepend(...items));
94
+ prepend: (...itemsToPrepend) => {
95
+ const newItems = create(items.value).prepend(...itemsToPrepend).items;
96
+ setItems(newItems);
76
97
  },
77
98
  update: (value, item) => {
78
- setCollection(collection.value.update(value, item));
99
+ const newItems = create(items.value).update(value, item).items;
100
+ setItems(newItems);
79
101
  }
80
102
  };
81
103
  }
@@ -8,28 +8,81 @@ export interface UseListCollectionProps<T> extends Omit<CollectionOptions<T>, 'i
8
8
  /**
9
9
  * The filter function to use to filter the items.
10
10
  */
11
- filter?: (itemText: string, filterText: string) => boolean;
11
+ filter?: (itemText: string, filterText: string, item: T) => boolean;
12
12
  /**
13
13
  * The maximum number of items to display in the collection.
14
14
  * Useful for performance when you have a large number of items.
15
15
  */
16
16
  limit?: number;
17
17
  }
18
- export declare function useListCollection<T>(props: MaybeRef<UseListCollectionProps<T>>): {
19
- collection: Ref<ListCollection<T>, ListCollection<T>>;
18
+ export declare function useListCollection<T>(props: MaybeRef<UseListCollectionProps<T>>): UseListCollectionReturn<T>;
19
+ export interface UseListCollectionReturn<T> {
20
+ /**
21
+ * The collection of items.
22
+ */
23
+ collection: Ref<ListCollection<T>>;
24
+ /**
25
+ * The function to filter the items.
26
+ */
20
27
  filter: (inputValue: string) => void;
28
+ /**
29
+ * The function to set the items.
30
+ */
21
31
  set: (items: T[]) => void;
32
+ /**
33
+ * The function to reset the items.
34
+ */
22
35
  reset: () => void;
36
+ /**
37
+ * The function to clear the items.
38
+ */
23
39
  clear: () => void;
40
+ /**
41
+ * The function to insert items at a specific index.
42
+ */
24
43
  insert: (index: number, ...items: T[]) => void;
44
+ /**
45
+ * The function to insert items before a specific value.
46
+ */
25
47
  insertBefore: (value: string, ...items: T[]) => void;
48
+ /**
49
+ * The function to insert items after a specific value.
50
+ */
26
51
  insertAfter: (value: string, ...items: T[]) => void;
27
- remove: (...itemOrValues: T[]) => void;
52
+ /**
53
+ * The function to remove items.
54
+ */
55
+ remove: (...itemOrValues: Array<T | string>) => void;
56
+ /**
57
+ * The function to move an item to a specific index.
58
+ */
28
59
  move: (value: string, to: number) => void;
60
+ /**
61
+ * The function to move an item before a specific value.
62
+ */
29
63
  moveBefore: (value: string, ...values: string[]) => void;
64
+ /**
65
+ * The function to move an item after a specific value.
66
+ */
30
67
  moveAfter: (value: string, ...values: string[]) => void;
68
+ /**
69
+ * The function to reorder items.
70
+ */
31
71
  reorder: (from: number, to: number) => void;
72
+ /**
73
+ * The function to append items.
74
+ */
32
75
  append: (...items: T[]) => void;
76
+ /**
77
+ * The function to upsert an item.
78
+ */
79
+ upsert: (value: string, item: T, mode?: 'append' | 'prepend') => void;
80
+ /**
81
+ * The function to prepend items.
82
+ */
33
83
  prepend: (...items: T[]) => void;
84
+ /**
85
+ * The function to update an item.
86
+ */
34
87
  update: (value: string, item: T) => void;
35
- };
88
+ }
@@ -8,28 +8,81 @@ export interface UseListCollectionProps<T> extends Omit<CollectionOptions<T>, 'i
8
8
  /**
9
9
  * The filter function to use to filter the items.
10
10
  */
11
- filter?: (itemText: string, filterText: string) => boolean;
11
+ filter?: (itemText: string, filterText: string, item: T) => boolean;
12
12
  /**
13
13
  * The maximum number of items to display in the collection.
14
14
  * Useful for performance when you have a large number of items.
15
15
  */
16
16
  limit?: number;
17
17
  }
18
- export declare function useListCollection<T>(props: MaybeRef<UseListCollectionProps<T>>): {
19
- collection: Ref<ListCollection<T>, ListCollection<T>>;
18
+ export declare function useListCollection<T>(props: MaybeRef<UseListCollectionProps<T>>): UseListCollectionReturn<T>;
19
+ export interface UseListCollectionReturn<T> {
20
+ /**
21
+ * The collection of items.
22
+ */
23
+ collection: Ref<ListCollection<T>>;
24
+ /**
25
+ * The function to filter the items.
26
+ */
20
27
  filter: (inputValue: string) => void;
28
+ /**
29
+ * The function to set the items.
30
+ */
21
31
  set: (items: T[]) => void;
32
+ /**
33
+ * The function to reset the items.
34
+ */
22
35
  reset: () => void;
36
+ /**
37
+ * The function to clear the items.
38
+ */
23
39
  clear: () => void;
40
+ /**
41
+ * The function to insert items at a specific index.
42
+ */
24
43
  insert: (index: number, ...items: T[]) => void;
44
+ /**
45
+ * The function to insert items before a specific value.
46
+ */
25
47
  insertBefore: (value: string, ...items: T[]) => void;
48
+ /**
49
+ * The function to insert items after a specific value.
50
+ */
26
51
  insertAfter: (value: string, ...items: T[]) => void;
27
- remove: (...itemOrValues: T[]) => void;
52
+ /**
53
+ * The function to remove items.
54
+ */
55
+ remove: (...itemOrValues: Array<T | string>) => void;
56
+ /**
57
+ * The function to move an item to a specific index.
58
+ */
28
59
  move: (value: string, to: number) => void;
60
+ /**
61
+ * The function to move an item before a specific value.
62
+ */
29
63
  moveBefore: (value: string, ...values: string[]) => void;
64
+ /**
65
+ * The function to move an item after a specific value.
66
+ */
30
67
  moveAfter: (value: string, ...values: string[]) => void;
68
+ /**
69
+ * The function to reorder items.
70
+ */
31
71
  reorder: (from: number, to: number) => void;
72
+ /**
73
+ * The function to append items.
74
+ */
32
75
  append: (...items: T[]) => void;
76
+ /**
77
+ * The function to upsert an item.
78
+ */
79
+ upsert: (value: string, item: T, mode?: 'append' | 'prepend') => void;
80
+ /**
81
+ * The function to prepend items.
82
+ */
33
83
  prepend: (...items: T[]) => void;
84
+ /**
85
+ * The function to update an item.
86
+ */
34
87
  update: (value: string, item: T) => void;
35
- };
88
+ }
@@ -6,72 +6,94 @@ function useListCollection(props) {
6
6
  const { initialItems = [], filter, limit, ...collectionOptions } = toValue(props);
7
7
  return [{ initialItems, filter, limit }, collectionOptions];
8
8
  });
9
- const create = (items) => {
10
- const [, collectionOptions] = resolvedProps.value;
11
- return createListCollection({ ...collectionOptions, items });
12
- };
13
9
  const init = () => {
14
- const [localProps] = resolvedProps.value;
15
- return create(
16
- localProps.limit != null ? localProps.initialItems.slice(0, localProps.limit) : localProps.initialItems
17
- );
10
+ const { initialItems } = resolvedProps.value[0];
11
+ return initialItems;
18
12
  };
19
- const collection = ref(init());
20
- const setCollection = (newCollection) => {
21
- const [localProps] = resolvedProps.value;
22
- collection.value = localProps.limit == null ? newCollection : newCollection.copy(newCollection.items.slice(0, localProps.limit));
13
+ const items = ref(init());
14
+ const filterText = ref("");
15
+ const setItems = (newItems) => {
16
+ items.value = newItems;
17
+ filterText.value = "";
18
+ };
19
+ const create = (itemsToCreate) => {
20
+ const [, collectionOptions] = resolvedProps.value;
21
+ return createListCollection({ ...collectionOptions, items: itemsToCreate });
23
22
  };
23
+ const collection = computed(() => {
24
+ const [localProps, collectionOptions] = resolvedProps.value;
25
+ let activeItems = items.value;
26
+ const filter = localProps.filter;
27
+ if (filterText.value && filter) {
28
+ activeItems = create(items.value).filter(
29
+ (itemString, _index, item) => filter(itemString, filterText.value, item)
30
+ ).items;
31
+ }
32
+ const limitedItems = localProps.limit == null ? activeItems : activeItems.slice(0, localProps.limit);
33
+ return createListCollection({ ...collectionOptions, items: limitedItems });
34
+ });
24
35
  return {
25
36
  collection,
26
- filter: (inputValue) => {
27
- const [localProps] = resolvedProps.value;
28
- const filter = localProps.filter;
29
- if (!filter) return;
30
- const filtered = create(localProps.initialItems).filter((itemString) => filter(itemString, inputValue));
31
- setCollection(filtered);
37
+ filter: (inputValue = "") => {
38
+ filterText.value = inputValue;
32
39
  },
33
- set: (items) => {
34
- setCollection(create(items));
40
+ set: (newItems) => {
41
+ setItems(newItems);
35
42
  },
36
43
  reset: () => {
37
44
  const [localProps] = resolvedProps.value;
38
- setCollection(create(localProps.initialItems));
45
+ setItems(localProps.initialItems);
39
46
  },
40
47
  clear: () => {
41
- setCollection(create([]));
48
+ setItems([]);
42
49
  },
43
- insert: (index, ...items) => {
44
- setCollection(collection.value.insert(index, ...items));
50
+ insert: (index, ...itemsToInsert) => {
51
+ const newItems = create(items.value).insert(index, ...itemsToInsert).items;
52
+ setItems(newItems);
45
53
  },
46
- insertBefore: (value, ...items) => {
47
- setCollection(collection.value.insertBefore(value, ...items));
54
+ insertBefore: (value, ...itemsToInsert) => {
55
+ const newItems = create(items.value).insertBefore(value, ...itemsToInsert).items;
56
+ setItems(newItems);
48
57
  },
49
- insertAfter: (value, ...items) => {
50
- setCollection(collection.value.insertAfter(value, ...items));
58
+ insertAfter: (value, ...itemsToInsert) => {
59
+ const newItems = create(items.value).insertAfter(value, ...itemsToInsert).items;
60
+ setItems(newItems);
51
61
  },
52
62
  remove: (...itemOrValues) => {
53
- setCollection(collection.value.remove(...itemOrValues));
63
+ const newItems = create(items.value).remove(...itemOrValues).items;
64
+ setItems(newItems);
54
65
  },
55
66
  move: (value, to) => {
56
- setCollection(collection.value.move(value, to));
67
+ const newItems = create(items.value).move(value, to).items;
68
+ setItems(newItems);
57
69
  },
58
70
  moveBefore: (value, ...values) => {
59
- setCollection(collection.value.moveBefore(value, ...values));
71
+ const newItems = create(items.value).moveBefore(value, ...values).items;
72
+ setItems(newItems);
60
73
  },
61
74
  moveAfter: (value, ...values) => {
62
- setCollection(collection.value.moveAfter(value, ...values));
75
+ const newItems = create(items.value).moveAfter(value, ...values).items;
76
+ setItems(newItems);
63
77
  },
64
78
  reorder: (from, to) => {
65
- setCollection(collection.value.reorder(from, to));
79
+ const newItems = create(items.value).reorder(from, to).items;
80
+ setItems(newItems);
81
+ },
82
+ append: (...itemsToAppend) => {
83
+ const newItems = create(items.value).append(...itemsToAppend).items;
84
+ setItems(newItems);
66
85
  },
67
- append: (...items) => {
68
- setCollection(collection.value.append(...items));
86
+ upsert: (value, item, mode = "append") => {
87
+ const newItems = create(items.value).upsert(value, item, mode).items;
88
+ setItems(newItems);
69
89
  },
70
- prepend: (...items) => {
71
- setCollection(collection.value.prepend(...items));
90
+ prepend: (...itemsToPrepend) => {
91
+ const newItems = create(items.value).prepend(...itemsToPrepend).items;
92
+ setItems(newItems);
72
93
  },
73
94
  update: (value, item) => {
74
- setCollection(collection.value.update(value, item));
95
+ const newItems = create(items.value).update(value, item).items;
96
+ setItems(newItems);
75
97
  }
76
98
  };
77
99
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ark-ui/vue",
3
3
  "type": "module",
4
- "version": "5.16.0",
4
+ "version": "5.16.1",
5
5
  "description": "A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.",
6
6
  "keywords": [
7
7
  "accordion",
@@ -140,63 +140,63 @@
140
140
  "sideEffects": false,
141
141
  "dependencies": {
142
142
  "@internationalized/date": "3.8.2",
143
- "@zag-js/accordion": "1.18.0",
144
- "@zag-js/angle-slider": "1.18.0",
145
- "@zag-js/anatomy": "1.18.0",
146
- "@zag-js/auto-resize": "1.18.0",
147
- "@zag-js/avatar": "1.18.0",
148
- "@zag-js/carousel": "1.18.0",
149
- "@zag-js/checkbox": "1.18.0",
150
- "@zag-js/clipboard": "1.18.0",
151
- "@zag-js/collapsible": "1.18.0",
152
- "@zag-js/collection": "1.18.0",
153
- "@zag-js/color-picker": "1.18.0",
154
- "@zag-js/color-utils": "1.18.0",
155
- "@zag-js/combobox": "1.18.0",
156
- "@zag-js/core": "1.18.0",
157
- "@zag-js/date-picker": "1.18.0",
158
- "@zag-js/date-utils": "1.18.0",
159
- "@zag-js/dialog": "1.18.0",
160
- "@zag-js/dom-query": "1.18.0",
161
- "@zag-js/editable": "1.18.0",
162
- "@zag-js/file-upload": "1.18.0",
163
- "@zag-js/file-utils": "1.18.0",
164
- "@zag-js/focus-trap": "1.18.0",
165
- "@zag-js/floating-panel": "1.18.0",
166
- "@zag-js/highlight-word": "1.18.0",
167
- "@zag-js/hover-card": "1.18.0",
168
- "@zag-js/i18n-utils": "1.18.0",
169
- "@zag-js/listbox": "1.18.0",
170
- "@zag-js/menu": "1.18.0",
171
- "@zag-js/number-input": "1.18.0",
172
- "@zag-js/pagination": "1.18.0",
173
- "@zag-js/password-input": "1.18.0",
174
- "@zag-js/pin-input": "1.18.0",
175
- "@zag-js/popover": "1.18.0",
176
- "@zag-js/presence": "1.18.0",
177
- "@zag-js/progress": "1.18.0",
178
- "@zag-js/qr-code": "1.18.0",
179
- "@zag-js/radio-group": "1.18.0",
180
- "@zag-js/rating-group": "1.18.0",
181
- "@zag-js/select": "1.18.0",
182
- "@zag-js/signature-pad": "1.18.0",
183
- "@zag-js/slider": "1.18.0",
184
- "@zag-js/splitter": "1.18.0",
185
- "@zag-js/switch": "1.18.0",
186
- "@zag-js/tabs": "1.18.0",
187
- "@zag-js/tags-input": "1.18.0",
188
- "@zag-js/time-picker": "1.18.0",
189
- "@zag-js/timer": "1.18.0",
190
- "@zag-js/toast": "1.18.0",
191
- "@zag-js/toggle": "1.18.0",
192
- "@zag-js/toggle-group": "1.18.0",
193
- "@zag-js/tooltip": "1.18.0",
194
- "@zag-js/tour": "1.18.0",
195
- "@zag-js/tree-view": "1.18.0",
196
- "@zag-js/types": "1.18.0",
197
- "@zag-js/utils": "1.18.0",
198
- "@zag-js/steps": "1.18.0",
199
- "@zag-js/vue": "1.18.0"
143
+ "@zag-js/accordion": "1.18.2",
144
+ "@zag-js/angle-slider": "1.18.2",
145
+ "@zag-js/anatomy": "1.18.2",
146
+ "@zag-js/auto-resize": "1.18.2",
147
+ "@zag-js/avatar": "1.18.2",
148
+ "@zag-js/carousel": "1.18.2",
149
+ "@zag-js/checkbox": "1.18.2",
150
+ "@zag-js/clipboard": "1.18.2",
151
+ "@zag-js/collapsible": "1.18.2",
152
+ "@zag-js/collection": "1.18.2",
153
+ "@zag-js/color-picker": "1.18.2",
154
+ "@zag-js/color-utils": "1.18.2",
155
+ "@zag-js/combobox": "1.18.2",
156
+ "@zag-js/core": "1.18.2",
157
+ "@zag-js/date-picker": "1.18.2",
158
+ "@zag-js/date-utils": "1.18.2",
159
+ "@zag-js/dialog": "1.18.2",
160
+ "@zag-js/dom-query": "1.18.2",
161
+ "@zag-js/editable": "1.18.2",
162
+ "@zag-js/file-upload": "1.18.2",
163
+ "@zag-js/file-utils": "1.18.2",
164
+ "@zag-js/focus-trap": "1.18.2",
165
+ "@zag-js/floating-panel": "1.18.2",
166
+ "@zag-js/highlight-word": "1.18.2",
167
+ "@zag-js/hover-card": "1.18.2",
168
+ "@zag-js/i18n-utils": "1.18.2",
169
+ "@zag-js/listbox": "1.18.2",
170
+ "@zag-js/menu": "1.18.2",
171
+ "@zag-js/number-input": "1.18.2",
172
+ "@zag-js/pagination": "1.18.2",
173
+ "@zag-js/password-input": "1.18.2",
174
+ "@zag-js/pin-input": "1.18.2",
175
+ "@zag-js/popover": "1.18.2",
176
+ "@zag-js/presence": "1.18.2",
177
+ "@zag-js/progress": "1.18.2",
178
+ "@zag-js/qr-code": "1.18.2",
179
+ "@zag-js/radio-group": "1.18.2",
180
+ "@zag-js/rating-group": "1.18.2",
181
+ "@zag-js/select": "1.18.2",
182
+ "@zag-js/signature-pad": "1.18.2",
183
+ "@zag-js/slider": "1.18.2",
184
+ "@zag-js/splitter": "1.18.2",
185
+ "@zag-js/switch": "1.18.2",
186
+ "@zag-js/tabs": "1.18.2",
187
+ "@zag-js/tags-input": "1.18.2",
188
+ "@zag-js/time-picker": "1.18.2",
189
+ "@zag-js/timer": "1.18.2",
190
+ "@zag-js/toast": "1.18.2",
191
+ "@zag-js/toggle": "1.18.2",
192
+ "@zag-js/toggle-group": "1.18.2",
193
+ "@zag-js/tooltip": "1.18.2",
194
+ "@zag-js/tour": "1.18.2",
195
+ "@zag-js/tree-view": "1.18.2",
196
+ "@zag-js/types": "1.18.2",
197
+ "@zag-js/utils": "1.18.2",
198
+ "@zag-js/steps": "1.18.2",
199
+ "@zag-js/vue": "1.18.2"
200
200
  },
201
201
  "devDependencies": {
202
202
  "@biomejs/biome": "1.9.4",
@@ -208,20 +208,20 @@
208
208
  "@types/jsdom": "21.1.7",
209
209
  "@vitejs/plugin-vue": "6.0.0",
210
210
  "@vitejs/plugin-vue-jsx": "5.0.1",
211
- "@vue/compiler-sfc": "3.5.16",
211
+ "@vue/compiler-sfc": "3.5.17",
212
212
  "clean-package": "2.2.0",
213
213
  "globby": "14.1.0",
214
214
  "histoire": "0.17.17",
215
215
  "jsdom": "26.1.0",
216
- "lucide-vue-next": "0.515.0",
216
+ "lucide-vue-next": "0.525.0",
217
217
  "resize-observer-polyfill": "1.5.1",
218
218
  "typescript": "5.8.3",
219
- "vite": "6.3.5",
219
+ "vite": "7.0.2",
220
220
  "vite-plugin-dts": "4.5.4",
221
- "vitest": "3.2.3",
222
- "@vitest/coverage-v8": "3.2.3",
223
- "vue": "3.5.16",
224
- "vue-tsc": "2.2.10"
221
+ "vitest": "3.2.4",
222
+ "@vitest/coverage-v8": "3.2.4",
223
+ "vue": "3.5.17",
224
+ "vue-tsc": "3.0.1"
225
225
  },
226
226
  "peerDependencies": {
227
227
  "vue": ">=3.5.0"