compote-ui 0.8.0 → 0.9.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/index.d.ts CHANGED
@@ -27,3 +27,7 @@ export * as Menu from './components/menu';
27
27
  export * as Field from './components/field';
28
28
  export { default as TreeView } from './components/tree-view/tree-view.svelte';
29
29
  export type { TreeNode } from './components/tree-view/types';
30
+ export { createListCollection } from '@ark-ui/svelte/collection';
31
+ export type { CollectionItem, CollectionOptions, ListCollection } from '@ark-ui/svelte/collection';
32
+ export { createTreeCollection } from '@ark-ui/svelte/collection';
33
+ export type { TreeCollection, TreeCollectionOptions } from '@ark-ui/svelte/collection';
package/dist/index.js CHANGED
@@ -20,3 +20,5 @@ export * as Tabs from './components/tabs';
20
20
  export * as Menu from './components/menu';
21
21
  export * as Field from './components/field';
22
22
  export { default as TreeView } from './components/tree-view/tree-view.svelte';
23
+ export { createListCollection } from '@ark-ui/svelte/collection';
24
+ export { createTreeCollection } from '@ark-ui/svelte/collection';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compote-ui",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",