compote-ui 0.46.1 → 0.46.3

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.
@@ -140,7 +140,7 @@
140
140
  <Portal>
141
141
  <Combobox.Positioner class="data-[state=closed]:pointer-events-none">
142
142
  <Combobox.Content
143
- class="z-50 max-h-60 min-w-(--reference-width) overflow-auto rounded-md border bg-surface-document p-1 shadow-md data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95"
143
+ class="z-200 max-h-60 min-w-(--reference-width) overflow-auto rounded-md border bg-surface-document p-1 shadow-md data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95"
144
144
  >
145
145
  {#if loading}
146
146
  <div class="flex items-center justify-center py-4">
@@ -65,7 +65,7 @@
65
65
  <Portal>
66
66
  <Select.Positioner>
67
67
  <Select.Content
68
- class="z-50 max-h-60 min-w-(--reference-width) overflow-auto rounded-md border bg-surface-document p-1 text-ink shadow-md data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95"
68
+ class="z-200 max-h-60 min-w-(--reference-width) overflow-auto rounded-md border bg-surface-document p-1 text-ink shadow-md data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95"
69
69
  >
70
70
  <Select.ItemGroup>
71
71
  {#each items as item (item.value)}
package/dist/index.d.ts CHANGED
@@ -46,4 +46,5 @@ export type { PortalProps } from '@ark-ui/svelte/portal';
46
46
  export { createListCollection, createTreeCollection } from './utils/collections';
47
47
  export type { ListItem, TreeItem } from './utils/collections';
48
48
  export type { ListCollection, TreeCollection } from '@ark-ui/svelte/collection';
49
+ export { PersistedState } from 'runed';
49
50
  export { cn } from 'tailwind-variants';
package/dist/index.js CHANGED
@@ -35,4 +35,5 @@ export { default as TreeView } from './components/tree-view/tree-view.svelte';
35
35
  export { LocaleProvider, useLocaleContext } from '@ark-ui/svelte/locale';
36
36
  export { Portal } from '@ark-ui/svelte/portal';
37
37
  export { createListCollection, createTreeCollection } from './utils/collections';
38
+ export { PersistedState } from 'runed';
38
39
  export { cn } from 'tailwind-variants';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compote-ui",
3
- "version": "0.46.1",
3
+ "version": "0.46.3",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev --open",