arvue-ui 0.7.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.
Files changed (86) hide show
  1. package/dist/accordion/accordion.js +32 -0
  2. package/dist/accordion/accordion.js.map +1 -0
  3. package/dist/accordion/accordionContent.js +34 -0
  4. package/dist/accordion/accordionContent.js.map +1 -0
  5. package/dist/accordion/accordionHeader.js +33 -0
  6. package/dist/accordion/accordionHeader.js.map +1 -0
  7. package/dist/accordion/accordionItem.js +36 -0
  8. package/dist/accordion/accordionItem.js.map +1 -0
  9. package/dist/accordion/accordionTrigger.js +41 -0
  10. package/dist/accordion/accordionTrigger.js.map +1 -0
  11. package/dist/all.css +1 -1
  12. package/dist/context-menu/contextMenu.js +25 -0
  13. package/dist/context-menu/contextMenu.js.map +1 -0
  14. package/dist/context-menu/contextMenuCheckboxItem.js +42 -0
  15. package/dist/context-menu/contextMenuCheckboxItem.js.map +1 -0
  16. package/dist/context-menu/contextMenuContent.js +87 -0
  17. package/dist/context-menu/contextMenuContent.js.map +1 -0
  18. package/dist/context-menu/contextMenuGroup.js +23 -0
  19. package/dist/context-menu/contextMenuGroup.js.map +1 -0
  20. package/dist/context-menu/contextMenuItem.js +38 -0
  21. package/dist/context-menu/contextMenuItem.js.map +1 -0
  22. package/dist/context-menu/contextMenuLabel.js +34 -0
  23. package/dist/context-menu/contextMenuLabel.js.map +1 -0
  24. package/dist/context-menu/contextMenuPortal.js +25 -0
  25. package/dist/context-menu/contextMenuPortal.js.map +1 -0
  26. package/dist/context-menu/contextMenuRadioGroup.js +25 -0
  27. package/dist/context-menu/contextMenuRadioGroup.js.map +1 -0
  28. package/dist/context-menu/contextMenuRadioItem.js +42 -0
  29. package/dist/context-menu/contextMenuRadioItem.js.map +1 -0
  30. package/dist/context-menu/contextMenuSeparator.js +30 -0
  31. package/dist/context-menu/contextMenuSeparator.js.map +1 -0
  32. package/dist/context-menu/contextMenuShortcut.js +33 -0
  33. package/dist/context-menu/contextMenuShortcut.js.map +1 -0
  34. package/dist/context-menu/contextMenuSub.js +24 -0
  35. package/dist/context-menu/contextMenuSub.js.map +1 -0
  36. package/dist/context-menu/contextMenuSubContent.js +92 -0
  37. package/dist/context-menu/contextMenuSubContent.js.map +1 -0
  38. package/dist/context-menu/contextMenuSubTrigger.js +36 -0
  39. package/dist/context-menu/contextMenuSubTrigger.js.map +1 -0
  40. package/dist/context-menu/contextMenuTrigger.js +24 -0
  41. package/dist/context-menu/contextMenuTrigger.js.map +1 -0
  42. package/dist/index.d.ts +489 -141
  43. package/dist/index.d.ts.map +1 -1
  44. package/dist/index.js +102 -82
  45. package/dist/index.js.map +1 -1
  46. package/dist/select/selectContent.js +1 -1
  47. package/dist/select/selectContent.js.map +1 -1
  48. package/dist/style.css +26 -0
  49. package/package.json +1 -1
  50. package/src/accordion/Accordion.vue +30 -0
  51. package/src/accordion/AccordionContent.vue +33 -0
  52. package/src/accordion/AccordionHeader.vue +33 -0
  53. package/src/accordion/AccordionItem.vue +34 -0
  54. package/src/accordion/AccordionTrigger.vue +41 -0
  55. package/src/accordion/accordion-content.css +33 -0
  56. package/src/accordion/accordion-header.css +4 -0
  57. package/src/accordion/accordion-item.css +7 -0
  58. package/src/accordion/accordion-trigger.css +29 -0
  59. package/src/accordion/index.ts +21 -0
  60. package/src/context-menu/ContextMenu.vue +21 -0
  61. package/src/context-menu/ContextMenuCheckboxItem.vue +48 -0
  62. package/src/context-menu/ContextMenuContent.vue +69 -0
  63. package/src/context-menu/ContextMenuGroup.vue +18 -0
  64. package/src/context-menu/ContextMenuItem.vue +47 -0
  65. package/src/context-menu/ContextMenuLabel.vue +37 -0
  66. package/src/context-menu/ContextMenuPortal.vue +17 -0
  67. package/src/context-menu/ContextMenuRadioGroup.vue +27 -0
  68. package/src/context-menu/ContextMenuRadioItem.vue +48 -0
  69. package/src/context-menu/ContextMenuSeparator.vue +29 -0
  70. package/src/context-menu/ContextMenuShortcut.vue +33 -0
  71. package/src/context-menu/ContextMenuSub.vue +31 -0
  72. package/src/context-menu/ContextMenuSubContent.vue +74 -0
  73. package/src/context-menu/ContextMenuSubTrigger.vue +41 -0
  74. package/src/context-menu/ContextMenuTrigger.vue +19 -0
  75. package/src/context-menu/context-menu-checkbox-item.css +33 -0
  76. package/src/context-menu/context-menu-content.css +9 -0
  77. package/src/context-menu/context-menu-item.css +27 -0
  78. package/src/context-menu/context-menu-label.css +12 -0
  79. package/src/context-menu/context-menu-radio-item.css +33 -0
  80. package/src/context-menu/context-menu-separator.css +5 -0
  81. package/src/context-menu/context-menu-shortcut.css +7 -0
  82. package/src/context-menu/context-menu-sub-content.css +8 -0
  83. package/src/context-menu/context-menu-sub-trigger.css +33 -0
  84. package/src/context-menu/index.ts +68 -0
  85. package/src/index.ts +2 -0
  86. package/src/select/SelectContent.vue +1 -0
package/dist/index.d.ts CHANGED
@@ -1,17 +1,98 @@
1
1
  import { HTMLAttributes } from "vue";
2
- import { AspectRatioProps as AspectRatioProps$1, AutocompleteInputEmits as AutocompleteInputEmits$1, AutocompleteInputProps as AutocompleteInputProps$1, AutocompleteRootEmits, AutocompleteRootProps, ComboboxAnchorProps as ComboboxAnchorProps$1, ComboboxCancelProps as ComboboxCancelProps$1, ComboboxContentEmits as ComboboxContentEmits$1, ComboboxContentProps as ComboboxContentProps$1, ComboboxEmptyProps as ComboboxEmptyProps$1, ComboboxGroupProps as ComboboxGroupProps$1, ComboboxInputEmits as ComboboxInputEmits$1, ComboboxInputProps as ComboboxInputProps$1, ComboboxItemEmits as ComboboxItemEmits$1, ComboboxItemProps as ComboboxItemProps$1, ComboboxLabelProps as ComboboxLabelProps$1, ComboboxPortalProps as ComboboxPortalProps$1, ComboboxRootEmits, ComboboxRootProps, ComboboxSeparatorProps as ComboboxSeparatorProps$1, ComboboxTriggerProps as ComboboxTriggerProps$1, ComboboxViewportProps as ComboboxViewportProps$1, DialogCloseProps as DialogCloseProps$1, DialogContentEmits as DialogContentEmits$1, DialogContentProps as DialogContentProps$1, DialogDescriptionProps as DialogDescriptionProps$1, DialogOverlayProps as DialogOverlayProps$1, DialogRootEmits, DialogRootProps, DialogTitleProps as DialogTitleProps$1, DialogTriggerProps as DialogTriggerProps$1, DropdownMenuCheckboxItemEmits as DropdownMenuCheckboxItemEmits$1, DropdownMenuCheckboxItemProps as DropdownMenuCheckboxItemProps$1, DropdownMenuContentEmits as DropdownMenuContentEmits$1, DropdownMenuContentProps as DropdownMenuContentProps$1, DropdownMenuGroupProps as DropdownMenuGroupProps$1, DropdownMenuItemProps as DropdownMenuItemProps$1, DropdownMenuLabelProps as DropdownMenuLabelProps$1, DropdownMenuPortalProps as DropdownMenuPortalProps$1, DropdownMenuRadioGroupEmits as DropdownMenuRadioGroupEmits$1, DropdownMenuRadioGroupProps as DropdownMenuRadioGroupProps$1, DropdownMenuRadioItemEmits as DropdownMenuRadioItemEmits$1, DropdownMenuRadioItemProps as DropdownMenuRadioItemProps$1, DropdownMenuRootEmits, DropdownMenuRootProps, DropdownMenuSeparatorProps as DropdownMenuSeparatorProps$1, DropdownMenuSubContentEmits as DropdownMenuSubContentEmits$1, DropdownMenuSubContentProps as DropdownMenuSubContentProps$1, DropdownMenuSubProps as DropdownMenuSubProps$1, DropdownMenuSubTriggerProps as DropdownMenuSubTriggerProps$1, DropdownMenuTriggerProps as DropdownMenuTriggerProps$1, PrimitiveProps, SelectContentEmits as SelectContentEmits$1, SelectContentProps as SelectContentProps$1, SelectGroupProps as SelectGroupProps$1, SelectItemProps as SelectItemProps$1, SelectItemTextProps as SelectItemTextProps$1, SelectLabelProps as SelectLabelProps$1, SelectRootEmits, SelectRootProps, SelectScrollDownButtonProps as SelectScrollDownButtonProps$1, SelectScrollUpButtonProps as SelectScrollUpButtonProps$1, SelectSeparatorProps as SelectSeparatorProps$1, SelectTriggerProps as SelectTriggerProps$1, SelectValueProps as SelectValueProps$1 } from "reka-ui";
2
+ import { AccordionContentProps as AccordionContentProps$1, AccordionHeaderProps as AccordionHeaderProps$1, AccordionItemProps as AccordionItemProps$1, AccordionRootEmits, AccordionRootProps, AccordionTriggerProps as AccordionTriggerProps$1, AspectRatioProps as AspectRatioProps$1, AutocompleteInputEmits as AutocompleteInputEmits$1, AutocompleteInputProps as AutocompleteInputProps$1, AutocompleteRootEmits, AutocompleteRootProps, ComboboxAnchorProps as ComboboxAnchorProps$1, ComboboxCancelProps as ComboboxCancelProps$1, ComboboxContentEmits as ComboboxContentEmits$1, ComboboxContentProps as ComboboxContentProps$1, ComboboxEmptyProps as ComboboxEmptyProps$1, ComboboxGroupProps as ComboboxGroupProps$1, ComboboxInputEmits as ComboboxInputEmits$1, ComboboxInputProps as ComboboxInputProps$1, ComboboxItemEmits as ComboboxItemEmits$1, ComboboxItemProps as ComboboxItemProps$1, ComboboxLabelProps as ComboboxLabelProps$1, ComboboxPortalProps as ComboboxPortalProps$1, ComboboxRootEmits, ComboboxRootProps, ComboboxSeparatorProps as ComboboxSeparatorProps$1, ComboboxTriggerProps as ComboboxTriggerProps$1, ComboboxViewportProps as ComboboxViewportProps$1, ContextMenuCheckboxItemEmits as ContextMenuCheckboxItemEmits$1, ContextMenuCheckboxItemProps as ContextMenuCheckboxItemProps$1, ContextMenuContentEmits as ContextMenuContentEmits$1, ContextMenuContentProps as ContextMenuContentProps$1, ContextMenuGroupProps as ContextMenuGroupProps$1, ContextMenuItemEmits as ContextMenuItemEmits$1, ContextMenuItemProps as ContextMenuItemProps$1, ContextMenuLabelProps as ContextMenuLabelProps$1, ContextMenuPortalProps as ContextMenuPortalProps$1, ContextMenuRadioGroupEmits as ContextMenuRadioGroupEmits$1, ContextMenuRadioGroupProps as ContextMenuRadioGroupProps$1, ContextMenuRadioItemEmits as ContextMenuRadioItemEmits$1, ContextMenuRadioItemProps as ContextMenuRadioItemProps$1, ContextMenuRootEmits, ContextMenuRootProps, ContextMenuSeparatorProps as ContextMenuSeparatorProps$1, ContextMenuSubContentEmits as ContextMenuSubContentEmits$1, ContextMenuSubContentProps as ContextMenuSubContentProps$1, ContextMenuSubEmits as ContextMenuSubEmits$1, ContextMenuSubProps as ContextMenuSubProps$1, ContextMenuSubTriggerProps as ContextMenuSubTriggerProps$1, ContextMenuTriggerProps as ContextMenuTriggerProps$1, DialogCloseProps as DialogCloseProps$1, DialogContentEmits as DialogContentEmits$1, DialogContentProps as DialogContentProps$1, DialogDescriptionProps as DialogDescriptionProps$1, DialogOverlayProps as DialogOverlayProps$1, DialogRootEmits, DialogRootProps, DialogTitleProps as DialogTitleProps$1, DialogTriggerProps as DialogTriggerProps$1, DropdownMenuCheckboxItemEmits as DropdownMenuCheckboxItemEmits$1, DropdownMenuCheckboxItemProps as DropdownMenuCheckboxItemProps$1, DropdownMenuContentEmits as DropdownMenuContentEmits$1, DropdownMenuContentProps as DropdownMenuContentProps$1, DropdownMenuGroupProps as DropdownMenuGroupProps$1, DropdownMenuItemProps as DropdownMenuItemProps$1, DropdownMenuLabelProps as DropdownMenuLabelProps$1, DropdownMenuPortalProps as DropdownMenuPortalProps$1, DropdownMenuRadioGroupEmits as DropdownMenuRadioGroupEmits$1, DropdownMenuRadioGroupProps as DropdownMenuRadioGroupProps$1, DropdownMenuRadioItemEmits as DropdownMenuRadioItemEmits$1, DropdownMenuRadioItemProps as DropdownMenuRadioItemProps$1, DropdownMenuRootEmits, DropdownMenuRootProps, DropdownMenuSeparatorProps as DropdownMenuSeparatorProps$1, DropdownMenuSubContentEmits as DropdownMenuSubContentEmits$1, DropdownMenuSubContentProps as DropdownMenuSubContentProps$1, DropdownMenuSubProps as DropdownMenuSubProps$1, DropdownMenuSubTriggerProps as DropdownMenuSubTriggerProps$1, DropdownMenuTriggerProps as DropdownMenuTriggerProps$1, PrimitiveProps, SelectContentEmits as SelectContentEmits$1, SelectContentProps as SelectContentProps$1, SelectGroupProps as SelectGroupProps$1, SelectItemProps as SelectItemProps$1, SelectItemTextProps as SelectItemTextProps$1, SelectLabelProps as SelectLabelProps$1, SelectRootEmits, SelectRootProps, SelectScrollDownButtonProps as SelectScrollDownButtonProps$1, SelectScrollUpButtonProps as SelectScrollUpButtonProps$1, SelectSeparatorProps as SelectSeparatorProps$1, SelectTriggerProps as SelectTriggerProps$1, SelectValueProps as SelectValueProps$1 } from "reka-ui";
3
3
  import { DrawerCloseProps as DrawerCloseProps$1, DrawerDescriptionProps as DrawerDescriptionProps$1, DrawerRootEmits, DrawerRootProps, DrawerTitleProps as DrawerTitleProps$1, DrawerTriggerProps as DrawerTriggerProps$1 } from "vaul-vue";
4
4
  import { ToasterProps, toast } from "vue-sonner";
5
5
 
6
+ //#region src/accordion/Accordion.vue.d.ts
7
+ interface AccordionProps extends AccordionRootProps {}
8
+ interface AccordionEmits extends AccordionRootEmits {}
9
+ declare const _default: typeof __VLS_export$100;
10
+ declare const __VLS_export$100: __VLS_WithSlots$92<import("vue").DefineComponent<AccordionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
+ "update:modelValue": (value: string | string[] | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<AccordionProps> & Readonly<{
13
+ "onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
15
+ default?: (props: {
16
+ modelValue: import("reka-ui").AcceptableValue | import("reka-ui").AcceptableValue[] | undefined;
17
+ }) => any;
18
+ }>;
19
+ type __VLS_WithSlots$92<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ }; //# sourceMappingURL=Accordion.vue.d.ts.map
24
+ //#endregion
25
+ //#region src/accordion/AccordionContent.vue.d.ts
26
+ interface AccordionContentProps extends AccordionContentProps$1 {
27
+ class?: HTMLAttributes['class'];
28
+ }
29
+ declare const _default$1: typeof __VLS_export$99;
30
+ declare const __VLS_export$99: __VLS_WithSlots$91<import("vue").DefineComponent<AccordionContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
31
+ default?: (props: {}) => any;
32
+ }>;
33
+ type __VLS_WithSlots$91<T, S> = T & {
34
+ new (): {
35
+ $slots: S;
36
+ };
37
+ }; //# sourceMappingURL=AccordionContent.vue.d.ts.map
38
+ //#endregion
39
+ //#region src/accordion/AccordionHeader.vue.d.ts
40
+ interface AccordionHeaderProps extends AccordionHeaderProps$1 {
41
+ class?: HTMLAttributes['class'];
42
+ }
43
+ declare const _default$2: typeof __VLS_export$98;
44
+ declare const __VLS_export$98: __VLS_WithSlots$90<import("vue").DefineComponent<AccordionHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AccordionHeaderProps> & Readonly<{}>, {
45
+ as: import("reka-ui").AsTag | import("vue").Component;
46
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
47
+ default?: (props: {}) => any;
48
+ }>;
49
+ type __VLS_WithSlots$90<T, S> = T & {
50
+ new (): {
51
+ $slots: S;
52
+ };
53
+ }; //# sourceMappingURL=AccordionHeader.vue.d.ts.map
54
+ //#endregion
55
+ //#region src/accordion/AccordionItem.vue.d.ts
56
+ interface AccordionItemProps extends AccordionItemProps$1 {
57
+ class?: HTMLAttributes['class'];
58
+ }
59
+ declare const _default$3: typeof __VLS_export$97;
60
+ declare const __VLS_export$97: __VLS_WithSlots$89<import("vue").DefineComponent<AccordionItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
61
+ default?: (props: {
62
+ open: boolean;
63
+ }) => any;
64
+ }>;
65
+ type __VLS_WithSlots$89<T, S> = T & {
66
+ new (): {
67
+ $slots: S;
68
+ };
69
+ }; //# sourceMappingURL=AccordionItem.vue.d.ts.map
70
+ //#endregion
71
+ //#region src/accordion/AccordionTrigger.vue.d.ts
72
+ interface AccordionTriggerProps extends AccordionTriggerProps$1 {
73
+ class?: HTMLAttributes['class'];
74
+ }
75
+ declare const _default$4: typeof __VLS_export$96;
76
+ declare const __VLS_export$96: __VLS_WithSlots$88<import("vue").DefineComponent<AccordionTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AccordionTriggerProps> & Readonly<{}>, {
77
+ as: import("reka-ui").AsTag | import("vue").Component;
78
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
79
+ default?: (props: {}) => any;
80
+ }>;
81
+ type __VLS_WithSlots$88<T, S> = T & {
82
+ new (): {
83
+ $slots: S;
84
+ };
85
+ }; //# sourceMappingURL=AccordionTrigger.vue.d.ts.map
86
+ //#endregion
6
87
  //#region src/aspect-ratio/AspectRatio.vue.d.ts
7
88
  interface AspectRatioProps extends AspectRatioProps$1 {}
8
- declare const _default: typeof __VLS_export$80;
9
- declare const __VLS_export$80: __VLS_WithSlots$73<import("vue").DefineComponent<AspectRatioProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AspectRatioProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
89
+ declare const _default$5: typeof __VLS_export$95;
90
+ declare const __VLS_export$95: __VLS_WithSlots$87<import("vue").DefineComponent<AspectRatioProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AspectRatioProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
10
91
  default?: (props: {
11
92
  aspect: number;
12
93
  }) => any;
13
94
  }>;
14
- type __VLS_WithSlots$73<T, S> = T & {
95
+ type __VLS_WithSlots$87<T, S> = T & {
15
96
  new (): {
16
97
  $slots: S;
17
98
  };
@@ -22,17 +103,17 @@ interface AutocompleteProps extends AutocompleteRootProps {
22
103
  class?: HTMLAttributes['class'];
23
104
  }
24
105
  interface AutocompleteEmits extends AutocompleteRootEmits {}
25
- declare const _default$1: typeof __VLS_export$79;
26
- declare const __VLS_export$79: __VLS_WithSlots$72<import("vue").DefineComponent<AutocompleteProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
- "update:open": (value: boolean) => any;
106
+ declare const _default$6: typeof __VLS_export$94;
107
+ declare const __VLS_export$94: __VLS_WithSlots$86<import("vue").DefineComponent<AutocompleteProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
28
108
  "update:modelValue": (value: string) => any;
109
+ "update:open": (value: boolean) => any;
29
110
  highlight: (payload: {
30
111
  ref: HTMLElement;
31
112
  value: string;
32
113
  } | undefined) => any;
33
114
  }, string, import("vue").PublicProps, Readonly<AutocompleteProps> & Readonly<{
34
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
35
115
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
116
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
36
117
  onHighlight?: ((payload: {
37
118
  ref: HTMLElement;
38
119
  value: string;
@@ -43,7 +124,7 @@ declare const __VLS_export$79: __VLS_WithSlots$72<import("vue").DefineComponent<
43
124
  modelValue: string;
44
125
  }) => any;
45
126
  }>;
46
- type __VLS_WithSlots$72<T, S> = T & {
127
+ type __VLS_WithSlots$86<T, S> = T & {
47
128
  new (): {
48
129
  $slots: S;
49
130
  };
@@ -51,11 +132,11 @@ type __VLS_WithSlots$72<T, S> = T & {
51
132
  //#endregion
52
133
  //#region src/autocomplete/AutocompleteAnchor.vue.d.ts
53
134
  interface AutocompleteAnchorProps extends ComboboxAnchorProps$1 {}
54
- declare const _default$2: typeof __VLS_export$78;
55
- declare const __VLS_export$78: __VLS_WithSlots$71<import("vue").DefineComponent<AutocompleteAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
135
+ declare const _default$7: typeof __VLS_export$93;
136
+ declare const __VLS_export$93: __VLS_WithSlots$85<import("vue").DefineComponent<AutocompleteAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
56
137
  default?: (props: {}) => any;
57
138
  }>;
58
- type __VLS_WithSlots$71<T, S> = T & {
139
+ type __VLS_WithSlots$85<T, S> = T & {
59
140
  new (): {
60
141
  $slots: S;
61
142
  };
@@ -63,11 +144,11 @@ type __VLS_WithSlots$71<T, S> = T & {
63
144
  //#endregion
64
145
  //#region src/autocomplete/AutocompleteCancel.vue.d.ts
65
146
  interface AutocompleteCancelProps extends ComboboxCancelProps$1 {}
66
- declare const _default$3: typeof __VLS_export$77;
67
- declare const __VLS_export$77: __VLS_WithSlots$70<import("vue").DefineComponent<AutocompleteCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
147
+ declare const _default$8: typeof __VLS_export$92;
148
+ declare const __VLS_export$92: __VLS_WithSlots$84<import("vue").DefineComponent<AutocompleteCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
68
149
  default?: (props: {}) => any;
69
150
  }>;
70
- type __VLS_WithSlots$70<T, S> = T & {
151
+ type __VLS_WithSlots$84<T, S> = T & {
71
152
  new (): {
72
153
  $slots: S;
73
154
  };
@@ -78,8 +159,8 @@ interface AutocompleteContentProps extends Omit<ComboboxContentProps$1, 'positio
78
159
  class?: HTMLAttributes['class'];
79
160
  }
80
161
  interface AutocompleteContentEmits extends ComboboxContentEmits$1 {}
81
- declare const _default$4: typeof __VLS_export$76;
82
- declare const __VLS_export$76: __VLS_WithSlots$69<import("vue").DefineComponent<AutocompleteContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
162
+ declare const _default$9: typeof __VLS_export$91;
163
+ declare const __VLS_export$91: __VLS_WithSlots$83<import("vue").DefineComponent<AutocompleteContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
83
164
  escapeKeyDown: (event: KeyboardEvent) => any;
84
165
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
85
166
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -94,7 +175,7 @@ declare const __VLS_export$76: __VLS_WithSlots$69<import("vue").DefineComponent<
94
175
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
95
176
  default?: (props: {}) => any;
96
177
  }>;
97
- type __VLS_WithSlots$69<T, S> = T & {
178
+ type __VLS_WithSlots$83<T, S> = T & {
98
179
  new (): {
99
180
  $slots: S;
100
181
  };
@@ -104,11 +185,11 @@ type __VLS_WithSlots$69<T, S> = T & {
104
185
  interface AutocompleteEmptyProps extends ComboboxEmptyProps$1 {
105
186
  class?: HTMLAttributes['class'];
106
187
  }
107
- declare const _default$5: typeof __VLS_export$75;
108
- declare const __VLS_export$75: __VLS_WithSlots$68<import("vue").DefineComponent<AutocompleteEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
188
+ declare const _default$10: typeof __VLS_export$90;
189
+ declare const __VLS_export$90: __VLS_WithSlots$82<import("vue").DefineComponent<AutocompleteEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
109
190
  default?: (props: {}) => any;
110
191
  }>;
111
- type __VLS_WithSlots$68<T, S> = T & {
192
+ type __VLS_WithSlots$82<T, S> = T & {
112
193
  new (): {
113
194
  $slots: S;
114
195
  };
@@ -116,11 +197,11 @@ type __VLS_WithSlots$68<T, S> = T & {
116
197
  //#endregion
117
198
  //#region src/autocomplete/AutocompleteGroup.vue.d.ts
118
199
  interface AutocompleteGroupProps extends ComboboxGroupProps$1 {}
119
- declare const _default$6: typeof __VLS_export$74;
120
- declare const __VLS_export$74: __VLS_WithSlots$67<import("vue").DefineComponent<AutocompleteGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
200
+ declare const _default$11: typeof __VLS_export$89;
201
+ declare const __VLS_export$89: __VLS_WithSlots$81<import("vue").DefineComponent<AutocompleteGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
121
202
  default?: (props: {}) => any;
122
203
  }>;
123
- type __VLS_WithSlots$67<T, S> = T & {
204
+ type __VLS_WithSlots$81<T, S> = T & {
124
205
  new (): {
125
206
  $slots: S;
126
207
  };
@@ -134,8 +215,8 @@ interface AutocompleteInputProps extends AutocompleteInputProps$1 {
134
215
  interface AutocompleteInputEmits extends AutocompleteInputEmits$1 {
135
216
  'cancel': [void];
136
217
  }
137
- declare const _default$7: typeof __VLS_export$73;
138
- declare const __VLS_export$73: import("vue").DefineComponent<AutocompleteInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
218
+ declare const _default$12: typeof __VLS_export$88;
219
+ declare const __VLS_export$88: import("vue").DefineComponent<AutocompleteInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
139
220
  "update:modelValue": (args_0: string) => any;
140
221
  cancel: (args_0: void) => any;
141
222
  }, string, import("vue").PublicProps, Readonly<AutocompleteInputProps> & Readonly<{
@@ -151,15 +232,15 @@ interface AutocompleteItemProps extends ComboboxItemProps$1 {
151
232
  class?: HTMLAttributes['class'];
152
233
  }
153
234
  interface AutocompleteItemEmits extends ComboboxItemEmits$1 {}
154
- declare const _default$8: typeof __VLS_export$72;
155
- declare const __VLS_export$72: __VLS_WithSlots$66<import("vue").DefineComponent<AutocompleteItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
235
+ declare const _default$13: typeof __VLS_export$87;
236
+ declare const __VLS_export$87: __VLS_WithSlots$80<import("vue").DefineComponent<AutocompleteItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
156
237
  select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
157
238
  }, string, import("vue").PublicProps, Readonly<AutocompleteItemProps> & Readonly<{
158
239
  onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
159
240
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
160
241
  default?: (props: {}) => any;
161
242
  }>;
162
- type __VLS_WithSlots$66<T, S> = T & {
243
+ type __VLS_WithSlots$80<T, S> = T & {
163
244
  new (): {
164
245
  $slots: S;
165
246
  };
@@ -169,11 +250,11 @@ type __VLS_WithSlots$66<T, S> = T & {
169
250
  interface AutocompleteLabelProps extends ComboboxLabelProps$1 {
170
251
  class?: HTMLAttributes['class'];
171
252
  }
172
- declare const _default$9: typeof __VLS_export$71;
173
- declare const __VLS_export$71: __VLS_WithSlots$65<import("vue").DefineComponent<AutocompleteLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
253
+ declare const _default$14: typeof __VLS_export$86;
254
+ declare const __VLS_export$86: __VLS_WithSlots$79<import("vue").DefineComponent<AutocompleteLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
174
255
  default?: (props: {}) => any;
175
256
  }>;
176
- type __VLS_WithSlots$65<T, S> = T & {
257
+ type __VLS_WithSlots$79<T, S> = T & {
177
258
  new (): {
178
259
  $slots: S;
179
260
  };
@@ -181,11 +262,11 @@ type __VLS_WithSlots$65<T, S> = T & {
181
262
  //#endregion
182
263
  //#region src/autocomplete/AutocompletePortal.vue.d.ts
183
264
  interface AutocompletePortalProps extends ComboboxPortalProps$1 {}
184
- declare const _default$10: typeof __VLS_export$70;
185
- declare const __VLS_export$70: __VLS_WithSlots$64<import("vue").DefineComponent<AutocompletePortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompletePortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
265
+ declare const _default$15: typeof __VLS_export$85;
266
+ declare const __VLS_export$85: __VLS_WithSlots$78<import("vue").DefineComponent<AutocompletePortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompletePortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
186
267
  default?: (props: {}) => any;
187
268
  }>;
188
- type __VLS_WithSlots$64<T, S> = T & {
269
+ type __VLS_WithSlots$78<T, S> = T & {
189
270
  new (): {
190
271
  $slots: S;
191
272
  };
@@ -195,11 +276,11 @@ type __VLS_WithSlots$64<T, S> = T & {
195
276
  interface AutocompleteSeparatorProps extends ComboboxSeparatorProps$1 {
196
277
  class?: HTMLAttributes['class'];
197
278
  }
198
- declare const _default$11: typeof __VLS_export$69;
199
- declare const __VLS_export$69: __VLS_WithSlots$63<import("vue").DefineComponent<AutocompleteSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
279
+ declare const _default$16: typeof __VLS_export$84;
280
+ declare const __VLS_export$84: __VLS_WithSlots$77<import("vue").DefineComponent<AutocompleteSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
200
281
  default?: (props: {}) => any;
201
282
  }>;
202
- type __VLS_WithSlots$63<T, S> = T & {
283
+ type __VLS_WithSlots$77<T, S> = T & {
203
284
  new (): {
204
285
  $slots: S;
205
286
  };
@@ -207,11 +288,11 @@ type __VLS_WithSlots$63<T, S> = T & {
207
288
  //#endregion
208
289
  //#region src/autocomplete/AutocompleteTrigger.vue.d.ts
209
290
  interface AutocompleteTriggerProps extends ComboboxTriggerProps$1 {}
210
- declare const _default$12: typeof __VLS_export$68;
211
- declare const __VLS_export$68: __VLS_WithSlots$62<import("vue").DefineComponent<AutocompleteTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
291
+ declare const _default$17: typeof __VLS_export$83;
292
+ declare const __VLS_export$83: __VLS_WithSlots$76<import("vue").DefineComponent<AutocompleteTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
212
293
  default?: (props: {}) => any;
213
294
  }>;
214
- type __VLS_WithSlots$62<T, S> = T & {
295
+ type __VLS_WithSlots$76<T, S> = T & {
215
296
  new (): {
216
297
  $slots: S;
217
298
  };
@@ -219,11 +300,11 @@ type __VLS_WithSlots$62<T, S> = T & {
219
300
  //#endregion
220
301
  //#region src/autocomplete/AutocompleteViewport.vue.d.ts
221
302
  interface AutocompleteViewportProps extends ComboboxViewportProps$1 {}
222
- declare const _default$13: typeof __VLS_export$67;
223
- declare const __VLS_export$67: __VLS_WithSlots$61<import("vue").DefineComponent<AutocompleteViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
303
+ declare const _default$18: typeof __VLS_export$82;
304
+ declare const __VLS_export$82: __VLS_WithSlots$75<import("vue").DefineComponent<AutocompleteViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
224
305
  default?: (props: {}) => any;
225
306
  }>;
226
- type __VLS_WithSlots$61<T, S> = T & {
307
+ type __VLS_WithSlots$75<T, S> = T & {
227
308
  new (): {
228
309
  $slots: S;
229
310
  };
@@ -234,17 +315,17 @@ interface ComboboxProps extends ComboboxRootProps {
234
315
  class?: HTMLAttributes['class'];
235
316
  }
236
317
  interface ComboboxEmits extends ComboboxRootEmits {}
237
- declare const _default$14: typeof __VLS_export$66;
238
- declare const __VLS_export$66: __VLS_WithSlots$60<import("vue").DefineComponent<ComboboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
239
- "update:open": (value: boolean) => any;
318
+ declare const _default$19: typeof __VLS_export$81;
319
+ declare const __VLS_export$81: __VLS_WithSlots$74<import("vue").DefineComponent<ComboboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
240
320
  "update:modelValue": (value: import("reka-ui").AcceptableValue) => any;
321
+ "update:open": (value: boolean) => any;
241
322
  highlight: (payload: {
242
323
  ref: HTMLElement;
243
324
  value: import("reka-ui").AcceptableValue;
244
325
  } | undefined) => any;
245
326
  }, string, import("vue").PublicProps, Readonly<ComboboxProps> & Readonly<{
246
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
247
327
  "onUpdate:modelValue"?: ((value: import("reka-ui").AcceptableValue) => any) | undefined;
328
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
248
329
  onHighlight?: ((payload: {
249
330
  ref: HTMLElement;
250
331
  value: import("reka-ui").AcceptableValue;
@@ -255,7 +336,7 @@ declare const __VLS_export$66: __VLS_WithSlots$60<import("vue").DefineComponent<
255
336
  modelValue: string | number | bigint | Record<string, any> | (string | number | bigint | Record<string, any> | null)[] | null;
256
337
  }) => any;
257
338
  }>;
258
- type __VLS_WithSlots$60<T, S> = T & {
339
+ type __VLS_WithSlots$74<T, S> = T & {
259
340
  new (): {
260
341
  $slots: S;
261
342
  };
@@ -263,11 +344,11 @@ type __VLS_WithSlots$60<T, S> = T & {
263
344
  //#endregion
264
345
  //#region src/combobox/ComboboxAnchor.vue.d.ts
265
346
  interface ComboboxAnchorProps extends ComboboxAnchorProps$1 {}
266
- declare const _default$15: typeof __VLS_export$65;
267
- declare const __VLS_export$65: __VLS_WithSlots$59<import("vue").DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
347
+ declare const _default$20: typeof __VLS_export$80;
348
+ declare const __VLS_export$80: __VLS_WithSlots$73<import("vue").DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
268
349
  default?: (props: {}) => any;
269
350
  }>;
270
- type __VLS_WithSlots$59<T, S> = T & {
351
+ type __VLS_WithSlots$73<T, S> = T & {
271
352
  new (): {
272
353
  $slots: S;
273
354
  };
@@ -275,11 +356,11 @@ type __VLS_WithSlots$59<T, S> = T & {
275
356
  //#endregion
276
357
  //#region src/combobox/ComboboxCancel.vue.d.ts
277
358
  interface ComboboxCancelProps extends ComboboxCancelProps$1 {}
278
- declare const _default$16: typeof __VLS_export$64;
279
- declare const __VLS_export$64: __VLS_WithSlots$58<import("vue").DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
359
+ declare const _default$21: typeof __VLS_export$79;
360
+ declare const __VLS_export$79: __VLS_WithSlots$72<import("vue").DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
280
361
  default?: (props: {}) => any;
281
362
  }>;
282
- type __VLS_WithSlots$58<T, S> = T & {
363
+ type __VLS_WithSlots$72<T, S> = T & {
283
364
  new (): {
284
365
  $slots: S;
285
366
  };
@@ -290,8 +371,8 @@ interface ComboboxContentProps extends Omit<ComboboxContentProps$1, 'position'>
290
371
  class?: HTMLAttributes['class'];
291
372
  }
292
373
  interface ComboboxContentEmits extends ComboboxContentEmits$1 {}
293
- declare const _default$17: typeof __VLS_export$63;
294
- declare const __VLS_export$63: __VLS_WithSlots$57<import("vue").DefineComponent<ComboboxContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
374
+ declare const _default$22: typeof __VLS_export$78;
375
+ declare const __VLS_export$78: __VLS_WithSlots$71<import("vue").DefineComponent<ComboboxContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
295
376
  escapeKeyDown: (event: KeyboardEvent) => any;
296
377
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
297
378
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -306,7 +387,7 @@ declare const __VLS_export$63: __VLS_WithSlots$57<import("vue").DefineComponent<
306
387
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
307
388
  default?: (props: {}) => any;
308
389
  }>;
309
- type __VLS_WithSlots$57<T, S> = T & {
390
+ type __VLS_WithSlots$71<T, S> = T & {
310
391
  new (): {
311
392
  $slots: S;
312
393
  };
@@ -316,11 +397,11 @@ type __VLS_WithSlots$57<T, S> = T & {
316
397
  interface ComboboxEmptyProps extends ComboboxEmptyProps$1 {
317
398
  class?: HTMLAttributes['class'];
318
399
  }
319
- declare const _default$18: typeof __VLS_export$62;
320
- declare const __VLS_export$62: __VLS_WithSlots$56<import("vue").DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
400
+ declare const _default$23: typeof __VLS_export$77;
401
+ declare const __VLS_export$77: __VLS_WithSlots$70<import("vue").DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
321
402
  default?: (props: {}) => any;
322
403
  }>;
323
- type __VLS_WithSlots$56<T, S> = T & {
404
+ type __VLS_WithSlots$70<T, S> = T & {
324
405
  new (): {
325
406
  $slots: S;
326
407
  };
@@ -328,11 +409,11 @@ type __VLS_WithSlots$56<T, S> = T & {
328
409
  //#endregion
329
410
  //#region src/combobox/ComboboxGroup.vue.d.ts
330
411
  interface ComboboxGroupProps extends ComboboxGroupProps$1 {}
331
- declare const _default$19: typeof __VLS_export$61;
332
- declare const __VLS_export$61: __VLS_WithSlots$55<import("vue").DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
412
+ declare const _default$24: typeof __VLS_export$76;
413
+ declare const __VLS_export$76: __VLS_WithSlots$69<import("vue").DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
333
414
  default?: (props: {}) => any;
334
415
  }>;
335
- type __VLS_WithSlots$55<T, S> = T & {
416
+ type __VLS_WithSlots$69<T, S> = T & {
336
417
  new (): {
337
418
  $slots: S;
338
419
  };
@@ -346,8 +427,8 @@ interface ComboboxInputProps extends ComboboxInputProps$1 {
346
427
  interface ComboboxInputEmits extends ComboboxInputEmits$1 {
347
428
  'cancel': [void];
348
429
  }
349
- declare const _default$20: typeof __VLS_export$60;
350
- declare const __VLS_export$60: import("vue").DefineComponent<ComboboxInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
430
+ declare const _default$25: typeof __VLS_export$75;
431
+ declare const __VLS_export$75: import("vue").DefineComponent<ComboboxInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
351
432
  "update:modelValue": (args_0: string) => any;
352
433
  cancel: (args_0: void) => any;
353
434
  }, string, import("vue").PublicProps, Readonly<ComboboxInputProps> & Readonly<{
@@ -363,15 +444,15 @@ interface ComboboxItemProps extends ComboboxItemProps$1 {
363
444
  class?: HTMLAttributes['class'];
364
445
  }
365
446
  interface ComboboxItemEmits extends ComboboxItemEmits$1 {}
366
- declare const _default$21: typeof __VLS_export$59;
367
- declare const __VLS_export$59: __VLS_WithSlots$54<import("vue").DefineComponent<ComboboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
447
+ declare const _default$26: typeof __VLS_export$74;
448
+ declare const __VLS_export$74: __VLS_WithSlots$68<import("vue").DefineComponent<ComboboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
368
449
  select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
369
450
  }, string, import("vue").PublicProps, Readonly<ComboboxItemProps> & Readonly<{
370
451
  onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
371
452
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
372
453
  default?: (props: {}) => any;
373
454
  }>;
374
- type __VLS_WithSlots$54<T, S> = T & {
455
+ type __VLS_WithSlots$68<T, S> = T & {
375
456
  new (): {
376
457
  $slots: S;
377
458
  };
@@ -381,11 +462,11 @@ type __VLS_WithSlots$54<T, S> = T & {
381
462
  interface ComboboxLabelProps extends ComboboxLabelProps$1 {
382
463
  class?: HTMLAttributes['class'];
383
464
  }
384
- declare const _default$22: typeof __VLS_export$58;
385
- declare const __VLS_export$58: __VLS_WithSlots$53<import("vue").DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
465
+ declare const _default$27: typeof __VLS_export$73;
466
+ declare const __VLS_export$73: __VLS_WithSlots$67<import("vue").DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
386
467
  default?: (props: {}) => any;
387
468
  }>;
388
- type __VLS_WithSlots$53<T, S> = T & {
469
+ type __VLS_WithSlots$67<T, S> = T & {
389
470
  new (): {
390
471
  $slots: S;
391
472
  };
@@ -393,11 +474,11 @@ type __VLS_WithSlots$53<T, S> = T & {
393
474
  //#endregion
394
475
  //#region src/combobox/ComboboxPortal.vue.d.ts
395
476
  interface ComboboxPortalProps extends ComboboxPortalProps$1 {}
396
- declare const _default$23: typeof __VLS_export$57;
397
- declare const __VLS_export$57: __VLS_WithSlots$52<import("vue").DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
477
+ declare const _default$28: typeof __VLS_export$72;
478
+ declare const __VLS_export$72: __VLS_WithSlots$66<import("vue").DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
398
479
  default?: (props: {}) => any;
399
480
  }>;
400
- type __VLS_WithSlots$52<T, S> = T & {
481
+ type __VLS_WithSlots$66<T, S> = T & {
401
482
  new (): {
402
483
  $slots: S;
403
484
  };
@@ -407,11 +488,11 @@ type __VLS_WithSlots$52<T, S> = T & {
407
488
  interface ComboboxSeparatorProps extends ComboboxSeparatorProps$1 {
408
489
  class?: HTMLAttributes['class'];
409
490
  }
410
- declare const _default$24: typeof __VLS_export$56;
411
- declare const __VLS_export$56: __VLS_WithSlots$51<import("vue").DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
491
+ declare const _default$29: typeof __VLS_export$71;
492
+ declare const __VLS_export$71: __VLS_WithSlots$65<import("vue").DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
412
493
  default?: (props: {}) => any;
413
494
  }>;
414
- type __VLS_WithSlots$51<T, S> = T & {
495
+ type __VLS_WithSlots$65<T, S> = T & {
415
496
  new (): {
416
497
  $slots: S;
417
498
  };
@@ -419,11 +500,11 @@ type __VLS_WithSlots$51<T, S> = T & {
419
500
  //#endregion
420
501
  //#region src/combobox/ComboboxTrigger.vue.d.ts
421
502
  interface ComboboxTriggerProps extends ComboboxTriggerProps$1 {}
422
- declare const _default$25: typeof __VLS_export$55;
423
- declare const __VLS_export$55: __VLS_WithSlots$50<import("vue").DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
503
+ declare const _default$30: typeof __VLS_export$70;
504
+ declare const __VLS_export$70: __VLS_WithSlots$64<import("vue").DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
424
505
  default?: (props: {}) => any;
425
506
  }>;
426
- type __VLS_WithSlots$50<T, S> = T & {
507
+ type __VLS_WithSlots$64<T, S> = T & {
427
508
  new (): {
428
509
  $slots: S;
429
510
  };
@@ -431,22 +512,288 @@ type __VLS_WithSlots$50<T, S> = T & {
431
512
  //#endregion
432
513
  //#region src/combobox/ComboboxViewport.vue.d.ts
433
514
  interface ComboboxViewportProps extends ComboboxViewportProps$1 {}
434
- declare const _default$26: typeof __VLS_export$54;
435
- declare const __VLS_export$54: __VLS_WithSlots$49<import("vue").DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
515
+ declare const _default$31: typeof __VLS_export$69;
516
+ declare const __VLS_export$69: __VLS_WithSlots$63<import("vue").DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
436
517
  default?: (props: {}) => any;
437
518
  }>;
438
- type __VLS_WithSlots$49<T, S> = T & {
519
+ type __VLS_WithSlots$63<T, S> = T & {
439
520
  new (): {
440
521
  $slots: S;
441
522
  };
442
523
  }; //# sourceMappingURL=ComboboxViewport.vue.d.ts.map
443
524
  //#endregion
525
+ //#region src/context-menu/ContextMenu.vue.d.ts
526
+ interface ContextMenuEmits extends ContextMenuRootEmits {}
527
+ interface ContextMenuProps extends ContextMenuRootProps {}
528
+ declare const _default$32: typeof __VLS_export$68;
529
+ declare const __VLS_export$68: __VLS_WithSlots$62<import("vue").DefineComponent<ContextMenuEmits, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
530
+ dir: () => any;
531
+ modal: () => any;
532
+ pressOpenDelay: () => any;
533
+ }, string, import("vue").PublicProps, Readonly<ContextMenuEmits> & Readonly<{
534
+ onDir?: (() => any) | undefined;
535
+ onModal?: (() => any) | undefined;
536
+ onPressOpenDelay?: (() => any) | undefined;
537
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
538
+ default?: (props: {}) => any;
539
+ }>;
540
+ type __VLS_WithSlots$62<T, S> = T & {
541
+ new (): {
542
+ $slots: S;
543
+ };
544
+ }; //# sourceMappingURL=ContextMenu.vue.d.ts.map
545
+ //#endregion
546
+ //#region src/context-menu/ContextMenuCheckboxItem.vue.d.ts
547
+ interface ContextMenuCheckboxItemProps extends ContextMenuCheckboxItemProps$1 {
548
+ class?: HTMLAttributes['class'];
549
+ }
550
+ interface ContextMenuCheckboxItemEmits extends ContextMenuCheckboxItemEmits$1 {}
551
+ declare const _default$33: typeof __VLS_export$67;
552
+ declare const __VLS_export$67: __VLS_WithSlots$61<import("vue").DefineComponent<ContextMenuCheckboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
553
+ "update:modelValue": (payload: boolean) => any;
554
+ select: (event: Event) => any;
555
+ }, string, import("vue").PublicProps, Readonly<ContextMenuCheckboxItemProps> & Readonly<{
556
+ "onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
557
+ onSelect?: ((event: Event) => any) | undefined;
558
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
559
+ default?: (props: {}) => any;
560
+ }>;
561
+ type __VLS_WithSlots$61<T, S> = T & {
562
+ new (): {
563
+ $slots: S;
564
+ };
565
+ }; //# sourceMappingURL=ContextMenuCheckboxItem.vue.d.ts.map
566
+ //#endregion
567
+ //#region src/context-menu/ContextMenuContent.vue.d.ts
568
+ interface ContextMenuContentProps extends ContextMenuContentProps$1 {
569
+ class?: HTMLAttributes['class'];
570
+ }
571
+ interface ContextMenuContentEmits extends ContextMenuContentEmits$1 {}
572
+ declare const _default$34: typeof __VLS_export$66;
573
+ declare const __VLS_export$66: __VLS_WithSlots$60<import("vue").DefineComponent<ContextMenuContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
574
+ escapeKeyDown: (event: KeyboardEvent) => any;
575
+ pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
576
+ focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
577
+ interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
578
+ closeAutoFocus: (event: Event) => any;
579
+ }, string, import("vue").PublicProps, Readonly<ContextMenuContentProps> & Readonly<{
580
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
581
+ onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
582
+ onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
583
+ onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
584
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
585
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
586
+ default?: (props: {}) => any;
587
+ }>;
588
+ type __VLS_WithSlots$60<T, S> = T & {
589
+ new (): {
590
+ $slots: S;
591
+ };
592
+ }; //# sourceMappingURL=ContextMenuContent.vue.d.ts.map
593
+ //#endregion
594
+ //#region src/context-menu/ContextMenuGroup.vue.d.ts
595
+ interface ContextMenuGroupProps extends ContextMenuGroupProps$1 {}
596
+ declare const _default$35: typeof __VLS_export$65;
597
+ declare const __VLS_export$65: __VLS_WithSlots$59<import("vue").DefineComponent<ContextMenuGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ContextMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
598
+ default?: (props: {}) => any;
599
+ }>;
600
+ type __VLS_WithSlots$59<T, S> = T & {
601
+ new (): {
602
+ $slots: S;
603
+ };
604
+ }; //# sourceMappingURL=ContextMenuGroup.vue.d.ts.map
605
+ //#endregion
606
+ //#region src/context-menu/ContextMenuItem.vue.d.ts
607
+ interface ContextMenuItemProps extends ContextMenuItemProps$1 {
608
+ class?: HTMLAttributes['class'];
609
+ inset?: boolean;
610
+ }
611
+ interface ContextMenuItemEmits extends ContextMenuItemEmits$1 {}
612
+ declare const _default$36: typeof __VLS_export$64;
613
+ declare const __VLS_export$64: __VLS_WithSlots$58<import("vue").DefineComponent<ContextMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
614
+ select: (event: Event) => any;
615
+ }, string, import("vue").PublicProps, Readonly<ContextMenuItemProps> & Readonly<{
616
+ onSelect?: ((event: Event) => any) | undefined;
617
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
618
+ default?: (props: {}) => any;
619
+ }>;
620
+ type __VLS_WithSlots$58<T, S> = T & {
621
+ new (): {
622
+ $slots: S;
623
+ };
624
+ }; //# sourceMappingURL=ContextMenuItem.vue.d.ts.map
625
+ //#endregion
626
+ //#region src/context-menu/ContextMenuLabel.vue.d.ts
627
+ interface ContextMenuLabelProps extends ContextMenuLabelProps$1 {
628
+ class?: HTMLAttributes['class'];
629
+ inset?: boolean;
630
+ }
631
+ declare const _default$37: typeof __VLS_export$63;
632
+ declare const __VLS_export$63: __VLS_WithSlots$57<import("vue").DefineComponent<ContextMenuLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ContextMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
633
+ default?: (props: {}) => any;
634
+ }>;
635
+ type __VLS_WithSlots$57<T, S> = T & {
636
+ new (): {
637
+ $slots: S;
638
+ };
639
+ }; //# sourceMappingURL=ContextMenuLabel.vue.d.ts.map
640
+ //#endregion
641
+ //#region src/context-menu/ContextMenuPortal.vue.d.ts
642
+ interface ContextMenuPortalProps extends ContextMenuPortalProps$1 {}
643
+ declare const _default$38: typeof __VLS_export$62;
644
+ declare const __VLS_export$62: __VLS_WithSlots$56<import("vue").DefineComponent<ContextMenuPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ContextMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
645
+ default?: (props: {}) => any;
646
+ }>;
647
+ type __VLS_WithSlots$56<T, S> = T & {
648
+ new (): {
649
+ $slots: S;
650
+ };
651
+ }; //# sourceMappingURL=ContextMenuPortal.vue.d.ts.map
652
+ //#endregion
653
+ //#region src/context-menu/ContextMenuRadioGroup.vue.d.ts
654
+ interface ContextMenuRadioGroupProps extends ContextMenuRadioGroupProps$1 {}
655
+ interface ContextMenuRadioGroupEmits extends ContextMenuRadioGroupEmits$1 {}
656
+ declare const _default$39: typeof __VLS_export$61;
657
+ declare const __VLS_export$61: __VLS_WithSlots$55<import("vue").DefineComponent<ContextMenuRadioGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
658
+ "update:modelValue": (payload: import("reka-ui").AcceptableValue) => any;
659
+ }, string, import("vue").PublicProps, Readonly<ContextMenuRadioGroupProps> & Readonly<{
660
+ "onUpdate:modelValue"?: ((payload: import("reka-ui").AcceptableValue) => any) | undefined;
661
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
662
+ default?: (props: {}) => any;
663
+ }>;
664
+ type __VLS_WithSlots$55<T, S> = T & {
665
+ new (): {
666
+ $slots: S;
667
+ };
668
+ }; //# sourceMappingURL=ContextMenuRadioGroup.vue.d.ts.map
669
+ //#endregion
670
+ //#region src/context-menu/ContextMenuRadioItem.vue.d.ts
671
+ interface ContextMenuRadioItemProps extends ContextMenuRadioItemProps$1 {
672
+ class?: HTMLAttributes['class'];
673
+ }
674
+ interface ContextMenuRadioItemEmits extends ContextMenuRadioItemEmits$1 {}
675
+ declare const _default$40: typeof __VLS_export$60;
676
+ declare const __VLS_export$60: __VLS_WithSlots$54<import("vue").DefineComponent<ContextMenuRadioItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
677
+ select: (event: Event) => any;
678
+ }, string, import("vue").PublicProps, Readonly<ContextMenuRadioItemProps> & Readonly<{
679
+ onSelect?: ((event: Event) => any) | undefined;
680
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
681
+ default?: (props: {}) => any;
682
+ }>;
683
+ type __VLS_WithSlots$54<T, S> = T & {
684
+ new (): {
685
+ $slots: S;
686
+ };
687
+ }; //# sourceMappingURL=ContextMenuRadioItem.vue.d.ts.map
688
+ //#endregion
689
+ //#region src/context-menu/ContextMenuSeparator.vue.d.ts
690
+ interface ContextMenuSeparatorProps extends ContextMenuSeparatorProps$1 {
691
+ class?: HTMLAttributes['class'];
692
+ }
693
+ declare const _default$41: typeof __VLS_export$59;
694
+ declare const __VLS_export$59: import("vue").DefineComponent<ContextMenuSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ContextMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=ContextMenuSeparator.vue.d.ts.map
695
+ //#endregion
696
+ //#region src/context-menu/ContextMenuShortcut.vue.d.ts
697
+ interface ContextMenuShortcutProps extends PrimitiveProps {
698
+ class?: HTMLAttributes['class'];
699
+ }
700
+ declare const _default$42: typeof __VLS_export$58;
701
+ declare const __VLS_export$58: __VLS_WithSlots$53<import("vue").DefineComponent<ContextMenuShortcutProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ContextMenuShortcutProps> & Readonly<{}>, {
702
+ as: import("reka-ui").AsTag | import("vue").Component;
703
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
704
+ default?: (props: {}) => any;
705
+ }>;
706
+ type __VLS_WithSlots$53<T, S> = T & {
707
+ new (): {
708
+ $slots: S;
709
+ };
710
+ }; //# sourceMappingURL=ContextMenuShortcut.vue.d.ts.map
711
+ //#endregion
712
+ //#region src/context-menu/ContextMenuSub.vue.d.ts
713
+ interface ContextMenuSubProps extends ContextMenuSubProps$1 {}
714
+ interface ContextMenuSubEmits extends ContextMenuSubEmits$1 {}
715
+ declare const _default$43: typeof __VLS_export$57;
716
+ declare const __VLS_export$57: __VLS_WithSlots$52<import("vue").DefineComponent<ContextMenuSubProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
717
+ "update:open": (payload: boolean) => any;
718
+ }, string, import("vue").PublicProps, Readonly<ContextMenuSubProps> & Readonly<{
719
+ "onUpdate:open"?: ((payload: boolean) => any) | undefined;
720
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
721
+ default?: (props: {
722
+ open: boolean;
723
+ }) => any;
724
+ }>;
725
+ type __VLS_WithSlots$52<T, S> = T & {
726
+ new (): {
727
+ $slots: S;
728
+ };
729
+ }; //# sourceMappingURL=ContextMenuSub.vue.d.ts.map
730
+ //#endregion
731
+ //#region src/context-menu/ContextMenuSubContent.vue.d.ts
732
+ interface ContextMenuSubContentProps extends ContextMenuSubContentProps$1 {
733
+ class?: HTMLAttributes['class'];
734
+ }
735
+ interface ContextMenuSubContentEmits extends ContextMenuSubContentEmits$1 {}
736
+ declare const _default$44: typeof __VLS_export$56;
737
+ declare const __VLS_export$56: __VLS_WithSlots$51<import("vue").DefineComponent<ContextMenuSubContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
738
+ escapeKeyDown: (event: KeyboardEvent) => any;
739
+ pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
740
+ focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
741
+ interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
742
+ openAutoFocus: (event: Event) => any;
743
+ closeAutoFocus: (event: Event) => any;
744
+ entryFocus: (event: Event) => any;
745
+ }, string, import("vue").PublicProps, Readonly<ContextMenuSubContentProps> & Readonly<{
746
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
747
+ onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
748
+ onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
749
+ onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
750
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
751
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
752
+ onEntryFocus?: ((event: Event) => any) | undefined;
753
+ }>, {
754
+ sideOffset: number;
755
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
756
+ default?: (props: {}) => any;
757
+ }>;
758
+ type __VLS_WithSlots$51<T, S> = T & {
759
+ new (): {
760
+ $slots: S;
761
+ };
762
+ }; //# sourceMappingURL=ContextMenuSubContent.vue.d.ts.map
763
+ //#endregion
764
+ //#region src/context-menu/ContextMenuSubTrigger.vue.d.ts
765
+ interface ContextMenuSubTriggerProps extends ContextMenuSubTriggerProps$1 {
766
+ class?: HTMLAttributes['class'];
767
+ inset?: boolean;
768
+ }
769
+ declare const _default$45: typeof __VLS_export$55;
770
+ declare const __VLS_export$55: __VLS_WithSlots$50<import("vue").DefineComponent<ContextMenuSubTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ContextMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
771
+ default?: (props: {}) => any;
772
+ }>;
773
+ type __VLS_WithSlots$50<T, S> = T & {
774
+ new (): {
775
+ $slots: S;
776
+ };
777
+ }; //# sourceMappingURL=ContextMenuSubTrigger.vue.d.ts.map
778
+ //#endregion
779
+ //#region src/context-menu/ContextMenuTrigger.vue.d.ts
780
+ interface ContextMenuTriggerProps extends ContextMenuTriggerProps$1 {}
781
+ declare const _default$46: typeof __VLS_export$54;
782
+ declare const __VLS_export$54: __VLS_WithSlots$49<import("vue").DefineComponent<ContextMenuTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ContextMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
783
+ default?: (props: {}) => any;
784
+ }>;
785
+ type __VLS_WithSlots$49<T, S> = T & {
786
+ new (): {
787
+ $slots: S;
788
+ };
789
+ }; //# sourceMappingURL=ContextMenuTrigger.vue.d.ts.map
790
+ //#endregion
444
791
  //#region src/dialog/Dialog.vue.d.ts
445
792
  interface DialogProps extends DialogRootProps {
446
793
  class?: HTMLAttributes['class'];
447
794
  }
448
795
  interface DialogEmits extends DialogRootEmits {}
449
- declare const _default$27: typeof __VLS_export$53;
796
+ declare const _default$47: typeof __VLS_export$53;
450
797
  declare const __VLS_export$53: __VLS_WithSlots$48<import("vue").DefineComponent<DialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
451
798
  "update:open": (value: boolean) => any;
452
799
  }, string, import("vue").PublicProps, Readonly<DialogProps> & Readonly<{
@@ -465,7 +812,7 @@ type __VLS_WithSlots$48<T, S> = T & {
465
812
  //#endregion
466
813
  //#region src/dialog/DialogClose.vue.d.ts
467
814
  interface DialogCloseProps extends DialogCloseProps$1 {}
468
- declare const _default$28: typeof __VLS_export$52;
815
+ declare const _default$48: typeof __VLS_export$52;
469
816
  declare const __VLS_export$52: __VLS_WithSlots$47<import("vue").DefineComponent<DialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
470
817
  as: import("reka-ui").AsTag | import("vue").Component;
471
818
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -483,7 +830,7 @@ interface DialogContentProps extends DialogContentProps$1 {
483
830
  showCloseButton?: boolean;
484
831
  }
485
832
  interface DialogContentEmits extends DialogContentEmits$1 {}
486
- declare const _default$29: typeof __VLS_export$51;
833
+ declare const _default$49: typeof __VLS_export$51;
487
834
  declare const __VLS_export$51: __VLS_WithSlots$46<import("vue").DefineComponent<DialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
488
835
  escapeKeyDown: (event: KeyboardEvent) => any;
489
836
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -513,7 +860,7 @@ type __VLS_WithSlots$46<T, S> = T & {
513
860
  interface DialogDescriptionProps extends DialogDescriptionProps$1 {
514
861
  class?: HTMLAttributes['class'];
515
862
  }
516
- declare const _default$30: typeof __VLS_export$50;
863
+ declare const _default$50: typeof __VLS_export$50;
517
864
  declare const __VLS_export$50: __VLS_WithSlots$45<import("vue").DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
518
865
  as: import("reka-ui").AsTag | import("vue").Component;
519
866
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -529,7 +876,7 @@ type __VLS_WithSlots$45<T, S> = T & {
529
876
  interface DialogFooterProps extends PrimitiveProps {
530
877
  class?: HTMLAttributes['class'];
531
878
  }
532
- declare const _default$31: typeof __VLS_export$49;
879
+ declare const _default$51: typeof __VLS_export$49;
533
880
  declare const __VLS_export$49: __VLS_WithSlots$44<import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
534
881
  default?: (props: {}) => any;
535
882
  }>;
@@ -543,7 +890,7 @@ type __VLS_WithSlots$44<T, S> = T & {
543
890
  interface DialogHeaderProps extends PrimitiveProps {
544
891
  class?: HTMLAttributes['class'];
545
892
  }
546
- declare const _default$32: typeof __VLS_export$48;
893
+ declare const _default$52: typeof __VLS_export$48;
547
894
  declare const __VLS_export$48: __VLS_WithSlots$43<import("vue").DefineComponent<DialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
548
895
  default?: (props: {}) => any;
549
896
  }>;
@@ -557,7 +904,7 @@ type __VLS_WithSlots$43<T, S> = T & {
557
904
  interface DialogOverlayProps extends DialogOverlayProps$1 {
558
905
  class?: HTMLAttributes['class'];
559
906
  }
560
- declare const _default$33: typeof __VLS_export$47;
907
+ declare const _default$53: typeof __VLS_export$47;
561
908
  declare const __VLS_export$47: __VLS_WithSlots$42<import("vue").DefineComponent<DialogOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
562
909
  default?: (props: {}) => any;
563
910
  }>;
@@ -571,7 +918,7 @@ type __VLS_WithSlots$42<T, S> = T & {
571
918
  interface DialogTitleProps extends DialogTitleProps$1 {
572
919
  class?: HTMLAttributes['class'];
573
920
  }
574
- declare const _default$34: typeof __VLS_export$46;
921
+ declare const _default$54: typeof __VLS_export$46;
575
922
  declare const __VLS_export$46: __VLS_WithSlots$41<import("vue").DefineComponent<DialogTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
576
923
  as: import("reka-ui").AsTag | import("vue").Component;
577
924
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -585,7 +932,7 @@ type __VLS_WithSlots$41<T, S> = T & {
585
932
  //#endregion
586
933
  //#region src/dialog/DialogTrigger.vue.d.ts
587
934
  interface DialogTriggerProps extends DialogTriggerProps$1 {}
588
- declare const _default$35: typeof __VLS_export$45;
935
+ declare const _default$55: typeof __VLS_export$45;
589
936
  declare const __VLS_export$45: __VLS_WithSlots$40<import("vue").DefineComponent<DialogTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
590
937
  default?: (props: {}) => any;
591
938
  }>;
@@ -600,7 +947,7 @@ interface DrawerProps extends DialogRootProps {
600
947
  class?: HTMLAttributes['class'];
601
948
  }
602
949
  interface DrawerEmits extends DialogRootEmits {}
603
- declare const _default$36: typeof __VLS_export$44;
950
+ declare const _default$56: typeof __VLS_export$44;
604
951
  declare const __VLS_export$44: __VLS_WithSlots$39<import("vue").DefineComponent<DrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
605
952
  "update:open": (value: boolean) => any;
606
953
  }, string, import("vue").PublicProps, Readonly<DrawerProps> & Readonly<{
@@ -619,7 +966,7 @@ type __VLS_WithSlots$39<T, S> = T & {
619
966
  //#endregion
620
967
  //#region src/drawer/DrawerClose.vue.d.ts
621
968
  interface DrawerCloseProps extends DialogCloseProps$1 {}
622
- declare const _default$37: typeof __VLS_export$43;
969
+ declare const _default$57: typeof __VLS_export$43;
623
970
  declare const __VLS_export$43: __VLS_WithSlots$38<import("vue").DefineComponent<DrawerCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerCloseProps> & Readonly<{}>, {
624
971
  as: import("reka-ui").AsTag | import("vue").Component;
625
972
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -638,7 +985,7 @@ interface DrawerContentProps extends DialogContentProps$1 {
638
985
  side?: 'top' | 'right' | 'bottom' | 'left';
639
986
  showCloseButton?: boolean;
640
987
  }
641
- declare const _default$38: typeof __VLS_export$42;
988
+ declare const _default$58: typeof __VLS_export$42;
642
989
  declare const __VLS_export$42: __VLS_WithSlots$37<import("vue").DefineComponent<DrawerContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
643
990
  escapeKeyDown: (event: KeyboardEvent) => any;
644
991
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -669,7 +1016,7 @@ type __VLS_WithSlots$37<T, S> = T & {
669
1016
  interface DrawerDescriptionProps extends DialogDescriptionProps$1 {
670
1017
  class?: HTMLAttributes['class'];
671
1018
  }
672
- declare const _default$39: typeof __VLS_export$41;
1019
+ declare const _default$59: typeof __VLS_export$41;
673
1020
  declare const __VLS_export$41: __VLS_WithSlots$36<import("vue").DefineComponent<DrawerDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerDescriptionProps> & Readonly<{}>, {
674
1021
  as: import("reka-ui").AsTag | import("vue").Component;
675
1022
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -685,7 +1032,7 @@ type __VLS_WithSlots$36<T, S> = T & {
685
1032
  interface DrawerFooterProps extends PrimitiveProps {
686
1033
  class?: HTMLAttributes['class'];
687
1034
  }
688
- declare const _default$40: typeof __VLS_export$40;
1035
+ declare const _default$60: typeof __VLS_export$40;
689
1036
  declare const __VLS_export$40: __VLS_WithSlots$35<import("vue").DefineComponent<DrawerFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
690
1037
  default?: (props: {}) => any;
691
1038
  }>;
@@ -699,7 +1046,7 @@ type __VLS_WithSlots$35<T, S> = T & {
699
1046
  interface DrawerHeaderProps extends PrimitiveProps {
700
1047
  class?: HTMLAttributes['class'];
701
1048
  }
702
- declare const _default$41: typeof __VLS_export$39;
1049
+ declare const _default$61: typeof __VLS_export$39;
703
1050
  declare const __VLS_export$39: __VLS_WithSlots$34<import("vue").DefineComponent<DrawerHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
704
1051
  default?: (props: {}) => any;
705
1052
  }>;
@@ -713,7 +1060,7 @@ type __VLS_WithSlots$34<T, S> = T & {
713
1060
  interface DrawerOverlayProps extends DialogOverlayProps$1 {
714
1061
  class?: HTMLAttributes['class'];
715
1062
  }
716
- declare const _default$42: typeof __VLS_export$38;
1063
+ declare const _default$62: typeof __VLS_export$38;
717
1064
  declare const __VLS_export$38: __VLS_WithSlots$33<import("vue").DefineComponent<DrawerOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
718
1065
  default?: (props: {}) => any;
719
1066
  }>;
@@ -727,7 +1074,7 @@ type __VLS_WithSlots$33<T, S> = T & {
727
1074
  interface DrawerTitleProps extends DialogTitleProps$1 {
728
1075
  class?: HTMLAttributes['class'];
729
1076
  }
730
- declare const _default$43: typeof __VLS_export$37;
1077
+ declare const _default$63: typeof __VLS_export$37;
731
1078
  declare const __VLS_export$37: __VLS_WithSlots$32<import("vue").DefineComponent<DrawerTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTitleProps> & Readonly<{}>, {
732
1079
  as: import("reka-ui").AsTag | import("vue").Component;
733
1080
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -741,7 +1088,7 @@ type __VLS_WithSlots$32<T, S> = T & {
741
1088
  //#endregion
742
1089
  //#region src/drawer/DrawerTrigger.vue.d.ts
743
1090
  interface DrawerTriggerProps extends DialogTriggerProps$1 {}
744
- declare const _default$44: typeof __VLS_export$36;
1091
+ declare const _default$64: typeof __VLS_export$36;
745
1092
  declare const __VLS_export$36: __VLS_WithSlots$31<import("vue").DefineComponent<DrawerTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
746
1093
  default?: (props: {}) => any;
747
1094
  }>;
@@ -754,7 +1101,7 @@ type __VLS_WithSlots$31<T, S> = T & {
754
1101
  //#region src/dropdown-menu/DropdownMenu.vue.d.ts
755
1102
  interface DropdownMenuProps extends DropdownMenuRootProps {}
756
1103
  interface DropdownMenuEmits extends DropdownMenuRootEmits {}
757
- declare const _default$45: typeof __VLS_export$35;
1104
+ declare const _default$65: typeof __VLS_export$35;
758
1105
  declare const __VLS_export$35: __VLS_WithSlots$30<import("vue").DefineComponent<DropdownMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
759
1106
  "update:open": (payload: boolean) => any;
760
1107
  }, string, import("vue").PublicProps, Readonly<DropdownMenuProps> & Readonly<{
@@ -775,7 +1122,7 @@ interface DropdownMenuCheckboxItemProps extends DropdownMenuCheckboxItemProps$1
775
1122
  class?: HTMLAttributes['class'];
776
1123
  }
777
1124
  interface DropdownMenuCheckboxItemEmits extends DropdownMenuCheckboxItemEmits$1 {}
778
- declare const _default$46: typeof __VLS_export$34;
1125
+ declare const _default$66: typeof __VLS_export$34;
779
1126
  declare const __VLS_export$34: __VLS_WithSlots$29<import("vue").DefineComponent<DropdownMenuCheckboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
780
1127
  "update:modelValue": (payload: boolean) => any;
781
1128
  select: (event: Event) => any;
@@ -796,7 +1143,7 @@ interface DropdownMenuContentProps extends DropdownMenuContentProps$1 {
796
1143
  class?: HTMLAttributes['class'];
797
1144
  }
798
1145
  interface DropdownMenuContentEmits extends DropdownMenuContentEmits$1 {}
799
- declare const _default$47: typeof __VLS_export$33;
1146
+ declare const _default$67: typeof __VLS_export$33;
800
1147
  declare const __VLS_export$33: __VLS_WithSlots$28<import("vue").DefineComponent<DropdownMenuContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
801
1148
  escapeKeyDown: (event: KeyboardEvent) => any;
802
1149
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -822,7 +1169,7 @@ type __VLS_WithSlots$28<T, S> = T & {
822
1169
  //#endregion
823
1170
  //#region src/dropdown-menu/DropdownMenuGroup.vue.d.ts
824
1171
  interface DropdownMenuGroupProps extends DropdownMenuGroupProps$1 {}
825
- declare const _default$48: typeof __VLS_export$32;
1172
+ declare const _default$68: typeof __VLS_export$32;
826
1173
  declare const __VLS_export$32: __VLS_WithSlots$27<import("vue").DefineComponent<DropdownMenuGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
827
1174
  default?: (props: {}) => any;
828
1175
  }>;
@@ -837,7 +1184,7 @@ interface DropdownMenuItemProps extends DropdownMenuItemProps$1 {
837
1184
  class?: HTMLAttributes['class'];
838
1185
  inset?: boolean;
839
1186
  }
840
- declare const _default$49: typeof __VLS_export$31;
1187
+ declare const _default$69: typeof __VLS_export$31;
841
1188
  declare const __VLS_export$31: __VLS_WithSlots$26<import("vue").DefineComponent<DropdownMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
842
1189
  default?: (props: {}) => any;
843
1190
  }>;
@@ -852,7 +1199,7 @@ interface DropdownMenuLabelProps extends DropdownMenuLabelProps$1 {
852
1199
  class?: HTMLAttributes['class'];
853
1200
  inset?: boolean;
854
1201
  }
855
- declare const _default$50: typeof __VLS_export$30;
1202
+ declare const _default$70: typeof __VLS_export$30;
856
1203
  declare const __VLS_export$30: __VLS_WithSlots$25<import("vue").DefineComponent<DropdownMenuLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
857
1204
  default?: (props: {}) => any;
858
1205
  }>;
@@ -864,7 +1211,7 @@ type __VLS_WithSlots$25<T, S> = T & {
864
1211
  //#endregion
865
1212
  //#region src/dropdown-menu/DropdownMenuPortal.vue.d.ts
866
1213
  interface DropdownMenuPortalProps extends DropdownMenuPortalProps$1 {}
867
- declare const _default$51: typeof __VLS_export$29;
1214
+ declare const _default$71: typeof __VLS_export$29;
868
1215
  declare const __VLS_export$29: __VLS_WithSlots$24<import("vue").DefineComponent<DropdownMenuPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
869
1216
  default?: (props: {}) => any;
870
1217
  }>;
@@ -877,7 +1224,7 @@ type __VLS_WithSlots$24<T, S> = T & {
877
1224
  //#region src/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts
878
1225
  interface DropdownMenuRadioGroupProps extends DropdownMenuRadioGroupProps$1 {}
879
1226
  interface DropdownMenuRadioGroupEmits extends DropdownMenuRadioGroupEmits$1 {}
880
- declare const _default$52: typeof __VLS_export$28;
1227
+ declare const _default$72: typeof __VLS_export$28;
881
1228
  declare const __VLS_export$28: __VLS_WithSlots$23<import("vue").DefineComponent<DropdownMenuRadioGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
882
1229
  "update:modelValue": (payload: import("reka-ui").AcceptableValue) => any;
883
1230
  }, string, import("vue").PublicProps, Readonly<DropdownMenuRadioGroupProps> & Readonly<{
@@ -896,7 +1243,7 @@ interface DropdownMenuRadioItemProps extends DropdownMenuRadioItemProps$1 {
896
1243
  class?: HTMLAttributes['class'];
897
1244
  }
898
1245
  interface DropdownMenuRadioItemEmits extends DropdownMenuRadioItemEmits$1 {}
899
- declare const _default$53: typeof __VLS_export$27;
1246
+ declare const _default$73: typeof __VLS_export$27;
900
1247
  declare const __VLS_export$27: __VLS_WithSlots$22<import("vue").DefineComponent<DropdownMenuRadioItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
901
1248
  select: (event: Event) => any;
902
1249
  }, string, import("vue").PublicProps, Readonly<DropdownMenuRadioItemProps> & Readonly<{
@@ -914,14 +1261,14 @@ type __VLS_WithSlots$22<T, S> = T & {
914
1261
  interface DropdownMenuSeparatorProps extends DropdownMenuSeparatorProps$1 {
915
1262
  class?: HTMLAttributes['class'];
916
1263
  }
917
- declare const _default$54: typeof __VLS_export$26;
1264
+ declare const _default$74: typeof __VLS_export$26;
918
1265
  declare const __VLS_export$26: import("vue").DefineComponent<DropdownMenuSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=DropdownMenuSeparator.vue.d.ts.map
919
1266
  //#endregion
920
1267
  //#region src/dropdown-menu/DropdownMenuShortcut.vue.d.ts
921
1268
  interface DropdownMenuShortcutProps extends PrimitiveProps {
922
1269
  class?: HTMLAttributes['class'];
923
1270
  }
924
- declare const _default$55: typeof __VLS_export$25;
1271
+ declare const _default$75: typeof __VLS_export$25;
925
1272
  declare const __VLS_export$25: __VLS_WithSlots$21<import("vue").DefineComponent<DropdownMenuShortcutProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuShortcutProps> & Readonly<{}>, {
926
1273
  as: import("reka-ui").AsTag | import("vue").Component;
927
1274
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -935,7 +1282,7 @@ type __VLS_WithSlots$21<T, S> = T & {
935
1282
  //#endregion
936
1283
  //#region src/dropdown-menu/DropdownMenuSub.vue.d.ts
937
1284
  interface DropdownMenuSubProps extends DropdownMenuSubProps$1 {}
938
- declare const _default$56: typeof __VLS_export$24;
1285
+ declare const _default$76: typeof __VLS_export$24;
939
1286
  declare const __VLS_export$24: __VLS_WithSlots$20<import("vue").DefineComponent<DropdownMenuSubProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
940
1287
  "update:open": (payload: boolean) => any;
941
1288
  }, string, import("vue").PublicProps, Readonly<DropdownMenuSubProps> & Readonly<{
@@ -956,7 +1303,7 @@ interface DropdownMenuSubContentProps extends DropdownMenuSubContentProps$1 {
956
1303
  class?: HTMLAttributes['class'];
957
1304
  }
958
1305
  interface DropdownMenuSubContentEmits extends DropdownMenuSubContentEmits$1 {}
959
- declare const _default$57: typeof __VLS_export$23;
1306
+ declare const _default$77: typeof __VLS_export$23;
960
1307
  declare const __VLS_export$23: __VLS_WithSlots$19<import("vue").DefineComponent<DropdownMenuSubContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
961
1308
  escapeKeyDown: (event: KeyboardEvent) => any;
962
1309
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -989,7 +1336,7 @@ interface DropdownMenuSubTriggerProps extends DropdownMenuSubTriggerProps$1 {
989
1336
  class?: HTMLAttributes['class'];
990
1337
  inset?: boolean;
991
1338
  }
992
- declare const _default$58: typeof __VLS_export$22;
1339
+ declare const _default$78: typeof __VLS_export$22;
993
1340
  declare const __VLS_export$22: __VLS_WithSlots$18<import("vue").DefineComponent<DropdownMenuSubTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
994
1341
  default?: (props: {}) => any;
995
1342
  }>;
@@ -1001,7 +1348,7 @@ type __VLS_WithSlots$18<T, S> = T & {
1001
1348
  //#endregion
1002
1349
  //#region src/dropdown-menu/DropdownMenuTrigger.vue.d.ts
1003
1350
  interface DropdownMenuTriggerProps extends DropdownMenuTriggerProps$1 {}
1004
- declare const _default$59: typeof __VLS_export$21;
1351
+ declare const _default$79: typeof __VLS_export$21;
1005
1352
  declare const __VLS_export$21: __VLS_WithSlots$17<import("vue").DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1006
1353
  default?: (props: {}) => any;
1007
1354
  }>;
@@ -1014,13 +1361,13 @@ type __VLS_WithSlots$17<T, S> = T & {
1014
1361
  //#region src/select/Select.vue.d.ts
1015
1362
  interface SelectProps extends SelectRootProps {}
1016
1363
  interface SelectEmits extends SelectRootEmits {}
1017
- declare const _default$60: typeof __VLS_export$20;
1364
+ declare const _default$80: typeof __VLS_export$20;
1018
1365
  declare const __VLS_export$20: __VLS_WithSlots$16<import("vue").DefineComponent<SelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1019
- "update:open": (value: boolean) => any;
1020
1366
  "update:modelValue": (value: import("reka-ui").AcceptableValue) => any;
1367
+ "update:open": (value: boolean) => any;
1021
1368
  }, string, import("vue").PublicProps, Readonly<SelectProps> & Readonly<{
1022
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
1023
1369
  "onUpdate:modelValue"?: ((value: import("reka-ui").AcceptableValue) => any) | undefined;
1370
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
1024
1371
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1025
1372
  default?: (props: {
1026
1373
  modelValue: string | number | bigint | Record<string, any> | (string | number | bigint | Record<string, any> | null)[] | null | undefined;
@@ -1038,7 +1385,7 @@ interface SelectContentProps extends Omit<SelectContentProps$1, 'position'> {
1038
1385
  class?: HTMLAttributes['class'];
1039
1386
  }
1040
1387
  interface SelectContentEmits extends SelectContentEmits$1 {}
1041
- declare const _default$61: typeof __VLS_export$19;
1388
+ declare const _default$81: typeof __VLS_export$19;
1042
1389
  declare const __VLS_export$19: __VLS_WithSlots$15<import("vue").DefineComponent<SelectContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1043
1390
  escapeKeyDown: (event: KeyboardEvent) => any;
1044
1391
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -1049,6 +1396,7 @@ declare const __VLS_export$19: __VLS_WithSlots$15<import("vue").DefineComponent<
1049
1396
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
1050
1397
  }>, {
1051
1398
  sideOffset: number;
1399
+ collisionPadding: number | Partial<Record<"top" | "right" | "bottom" | "left", number>>;
1052
1400
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1053
1401
  default?: (props: {}) => any;
1054
1402
  }>;
@@ -1060,7 +1408,7 @@ type __VLS_WithSlots$15<T, S> = T & {
1060
1408
  //#endregion
1061
1409
  //#region src/select/SelectGroup.vue.d.ts
1062
1410
  interface SelectGroupProps extends SelectGroupProps$1 {}
1063
- declare const _default$62: typeof __VLS_export$18;
1411
+ declare const _default$82: typeof __VLS_export$18;
1064
1412
  declare const __VLS_export$18: __VLS_WithSlots$14<import("vue").DefineComponent<SelectGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1065
1413
  default?: (props: {}) => any;
1066
1414
  }>;
@@ -1074,7 +1422,7 @@ type __VLS_WithSlots$14<T, S> = T & {
1074
1422
  interface SelectItemProps extends SelectItemProps$1 {
1075
1423
  class?: HTMLAttributes['class'];
1076
1424
  }
1077
- declare const _default$63: typeof __VLS_export$17;
1425
+ declare const _default$83: typeof __VLS_export$17;
1078
1426
  declare const __VLS_export$17: __VLS_WithSlots$13<import("vue").DefineComponent<SelectItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1079
1427
  default?: (props: {}) => any;
1080
1428
  }>;
@@ -1086,7 +1434,7 @@ type __VLS_WithSlots$13<T, S> = T & {
1086
1434
  //#endregion
1087
1435
  //#region src/select/SelectItemText.vue.d.ts
1088
1436
  interface SelectItemTextProps extends SelectItemTextProps$1 {}
1089
- declare const _default$64: typeof __VLS_export$16;
1437
+ declare const _default$84: typeof __VLS_export$16;
1090
1438
  declare const __VLS_export$16: __VLS_WithSlots$12<import("vue").DefineComponent<SelectItemTextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectItemTextProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1091
1439
  default?: (props: {}) => any;
1092
1440
  }>;
@@ -1100,7 +1448,7 @@ type __VLS_WithSlots$12<T, S> = T & {
1100
1448
  interface SelectLabelProps extends SelectLabelProps$1 {
1101
1449
  class?: HTMLAttributes['class'];
1102
1450
  }
1103
- declare const _default$65: typeof __VLS_export$15;
1451
+ declare const _default$85: typeof __VLS_export$15;
1104
1452
  declare const __VLS_export$15: __VLS_WithSlots$11<import("vue").DefineComponent<SelectLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1105
1453
  default?: (props: {}) => any;
1106
1454
  }>;
@@ -1114,28 +1462,28 @@ type __VLS_WithSlots$11<T, S> = T & {
1114
1462
  interface SelectScrollDownButtonProps extends SelectScrollDownButtonProps$1 {
1115
1463
  class?: HTMLAttributes['class'];
1116
1464
  }
1117
- declare const _default$66: typeof __VLS_export$14;
1465
+ declare const _default$86: typeof __VLS_export$14;
1118
1466
  declare const __VLS_export$14: import("vue").DefineComponent<SelectScrollDownButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectScrollDownButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=SelectScrollDownButton.vue.d.ts.map
1119
1467
  //#endregion
1120
1468
  //#region src/select/SelectScrollUpButton.vue.d.ts
1121
1469
  interface SelectScrollUpButtonProps extends SelectScrollUpButtonProps$1 {
1122
1470
  class?: HTMLAttributes['class'];
1123
1471
  }
1124
- declare const _default$67: typeof __VLS_export$13;
1472
+ declare const _default$87: typeof __VLS_export$13;
1125
1473
  declare const __VLS_export$13: import("vue").DefineComponent<SelectScrollUpButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectScrollUpButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=SelectScrollUpButton.vue.d.ts.map
1126
1474
  //#endregion
1127
1475
  //#region src/select/SelectSeparator.vue.d.ts
1128
1476
  interface SelectSeparatorProps extends SelectSeparatorProps$1 {
1129
1477
  class?: HTMLAttributes['class'];
1130
1478
  }
1131
- declare const _default$68: typeof __VLS_export$12;
1479
+ declare const _default$88: typeof __VLS_export$12;
1132
1480
  declare const __VLS_export$12: import("vue").DefineComponent<SelectSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=SelectSeparator.vue.d.ts.map
1133
1481
  //#endregion
1134
1482
  //#region src/select/SelectTrigger.vue.d.ts
1135
1483
  interface SelectTriggerProps extends SelectTriggerProps$1 {
1136
1484
  class?: HTMLAttributes['class'];
1137
1485
  }
1138
- declare const _default$69: typeof __VLS_export$11;
1486
+ declare const _default$89: typeof __VLS_export$11;
1139
1487
  declare const __VLS_export$11: __VLS_WithSlots$10<import("vue").DefineComponent<SelectTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectTriggerProps> & Readonly<{}>, {
1140
1488
  as: import("reka-ui").AsTag | import("vue").Component;
1141
1489
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -1151,7 +1499,7 @@ type __VLS_WithSlots$10<T, S> = T & {
1151
1499
  interface SelectValueProps extends SelectValueProps$1 {
1152
1500
  class?: HTMLAttributes['class'];
1153
1501
  }
1154
- declare const _default$70: typeof __VLS_export$10;
1502
+ declare const _default$90: typeof __VLS_export$10;
1155
1503
  declare const __VLS_export$10: __VLS_WithSlots$9<import("vue").DefineComponent<SelectValueProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectValueProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1156
1504
  default?: (props: {}) => any;
1157
1505
  }>;
@@ -1166,7 +1514,7 @@ interface SheetEmits extends DrawerRootEmits {}
1166
1514
  interface SheetProps extends DrawerRootProps {
1167
1515
  class?: HTMLAttributes['class'];
1168
1516
  }
1169
- declare const _default$71: typeof __VLS_export$9;
1517
+ declare const _default$91: typeof __VLS_export$9;
1170
1518
  declare const __VLS_export$9: __VLS_WithSlots$8<import("vue").DefineComponent<SheetProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
1171
1519
  drag: (percentageDragged: number) => any;
1172
1520
  "update:open": (open: boolean) => any;
@@ -1194,7 +1542,7 @@ type __VLS_WithSlots$8<T, S> = T & {
1194
1542
  //#endregion
1195
1543
  //#region src/sheet/SheetClose.vue.d.ts
1196
1544
  interface SheetCloseProps extends DrawerCloseProps$1 {}
1197
- declare const _default$72: typeof __VLS_export$8;
1545
+ declare const _default$92: typeof __VLS_export$8;
1198
1546
  declare const __VLS_export$8: __VLS_WithSlots$7<import("vue").DefineComponent<SheetCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetCloseProps> & Readonly<{}>, {
1199
1547
  as: import("reka-ui").AsTag | import("vue").Component;
1200
1548
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -1212,7 +1560,7 @@ interface SheetContentProps extends DialogContentProps$1 {
1212
1560
  class?: HTMLAttributes['class'];
1213
1561
  showHandle?: boolean;
1214
1562
  }
1215
- declare const _default$73: typeof __VLS_export$7;
1563
+ declare const _default$93: typeof __VLS_export$7;
1216
1564
  declare const __VLS_export$7: __VLS_WithSlots$6<import("vue").DefineComponent<SheetContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1217
1565
  escapeKeyDown: (event: KeyboardEvent) => any;
1218
1566
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -1242,7 +1590,7 @@ type __VLS_WithSlots$6<T, S> = T & {
1242
1590
  interface SheetDescriptionProps extends DrawerDescriptionProps$1 {
1243
1591
  class?: HTMLAttributes['class'];
1244
1592
  }
1245
- declare const _default$74: typeof __VLS_export$6;
1593
+ declare const _default$94: typeof __VLS_export$6;
1246
1594
  declare const __VLS_export$6: __VLS_WithSlots$5<import("vue").DefineComponent<SheetDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetDescriptionProps> & Readonly<{}>, {
1247
1595
  as: import("reka-ui").AsTag | import("vue").Component;
1248
1596
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -1258,7 +1606,7 @@ type __VLS_WithSlots$5<T, S> = T & {
1258
1606
  interface SheetFooterProps extends PrimitiveProps {
1259
1607
  class?: HTMLAttributes['class'];
1260
1608
  }
1261
- declare const _default$75: typeof __VLS_export$5;
1609
+ declare const _default$95: typeof __VLS_export$5;
1262
1610
  declare const __VLS_export$5: __VLS_WithSlots$4<import("vue").DefineComponent<SheetFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1263
1611
  default?: (props: {}) => any;
1264
1612
  }>;
@@ -1272,7 +1620,7 @@ type __VLS_WithSlots$4<T, S> = T & {
1272
1620
  interface SheetHeaderProps extends PrimitiveProps {
1273
1621
  class?: HTMLAttributes['class'];
1274
1622
  }
1275
- declare const _default$76: typeof __VLS_export$4;
1623
+ declare const _default$96: typeof __VLS_export$4;
1276
1624
  declare const __VLS_export$4: __VLS_WithSlots$3<import("vue").DefineComponent<SheetHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1277
1625
  default?: (props: {}) => any;
1278
1626
  }>;
@@ -1286,7 +1634,7 @@ type __VLS_WithSlots$3<T, S> = T & {
1286
1634
  interface SheetOverlayProps extends DialogOverlayProps$1 {
1287
1635
  class?: HTMLAttributes['class'];
1288
1636
  }
1289
- declare const _default$77: typeof __VLS_export$3;
1637
+ declare const _default$97: typeof __VLS_export$3;
1290
1638
  declare const __VLS_export$3: __VLS_WithSlots$2<import("vue").DefineComponent<SheetOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1291
1639
  default?: (props: {}) => any;
1292
1640
  }>;
@@ -1300,7 +1648,7 @@ type __VLS_WithSlots$2<T, S> = T & {
1300
1648
  interface SheetTitleProps extends DrawerTitleProps$1 {
1301
1649
  class?: HTMLAttributes['class'];
1302
1650
  }
1303
- declare const _default$78: typeof __VLS_export$2;
1651
+ declare const _default$98: typeof __VLS_export$2;
1304
1652
  declare const __VLS_export$2: __VLS_WithSlots$1<import("vue").DefineComponent<SheetTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetTitleProps> & Readonly<{}>, {
1305
1653
  as: import("reka-ui").AsTag | import("vue").Component;
1306
1654
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -1314,7 +1662,7 @@ type __VLS_WithSlots$1<T, S> = T & {
1314
1662
  //#endregion
1315
1663
  //#region src/sheet/SheetTrigger.vue.d.ts
1316
1664
  interface SheetTriggerProps extends DrawerTriggerProps$1 {}
1317
- declare const _default$79: typeof __VLS_export$1;
1665
+ declare const _default$99: typeof __VLS_export$1;
1318
1666
  declare const __VLS_export$1: __VLS_WithSlots<import("vue").DefineComponent<SheetTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1319
1667
  default?: (props: {}) => any;
1320
1668
  }>;
@@ -1326,10 +1674,10 @@ type __VLS_WithSlots<T, S> = T & {
1326
1674
  //#endregion
1327
1675
  //#region src/sonner/Sonner.vue.d.ts
1328
1676
  interface SonnerProps extends ToasterProps {}
1329
- declare const _default$80: typeof __VLS_export;
1677
+ declare const _default$100: typeof __VLS_export;
1330
1678
  declare const __VLS_export: import("vue").DefineComponent<SonnerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SonnerProps> & Readonly<{}>, {
1331
1679
  richColors: boolean;
1332
1680
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=Sonner.vue.d.ts.map
1333
1681
  //#endregion
1334
- export { __VLS_export$80 as AspectRatio, type AspectRatioProps, __VLS_export$79 as Autocomplete, __VLS_export$78 as AutocompleteAnchor, type AutocompleteAnchorProps, __VLS_export$77 as AutocompleteCancel, type AutocompleteCancelProps, __VLS_export$76 as AutocompleteContent, type AutocompleteContentEmits, type AutocompleteContentProps, type AutocompleteEmits, __VLS_export$75 as AutocompleteEmpty, type AutocompleteEmptyProps, __VLS_export$74 as AutocompleteGroup, type AutocompleteGroupProps, __VLS_export$73 as AutocompleteInput, type AutocompleteInputEmits, type AutocompleteInputProps, __VLS_export$72 as AutocompleteItem, type AutocompleteItemEmits, type AutocompleteItemProps, __VLS_export$71 as AutocompleteLabel, type AutocompleteLabelProps, __VLS_export$70 as AutocompletePortal, type AutocompletePortalProps, type AutocompleteProps, __VLS_export$69 as AutocompleteSeparator, type AutocompleteSeparatorProps, __VLS_export$68 as AutocompleteTrigger, type AutocompleteTriggerProps, __VLS_export$67 as AutocompleteViewport, type AutocompleteViewportProps, __VLS_export$66 as Combobox, __VLS_export$65 as ComboboxAnchor, type ComboboxAnchorProps, __VLS_export$64 as ComboboxCancel, type ComboboxCancelProps, __VLS_export$63 as ComboboxContent, type ComboboxContentEmits, type ComboboxContentProps, type ComboboxEmits, __VLS_export$62 as ComboboxEmpty, type ComboboxEmptyProps, __VLS_export$61 as ComboboxGroup, type ComboboxGroupProps, __VLS_export$60 as ComboboxInput, type ComboboxInputEmits, type ComboboxInputProps, __VLS_export$59 as ComboboxItem, type ComboboxItemEmits, type ComboboxItemProps, __VLS_export$58 as ComboboxLabel, type ComboboxLabelProps, __VLS_export$57 as ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, __VLS_export$56 as ComboboxSeparator, type ComboboxSeparatorProps, __VLS_export$55 as ComboboxTrigger, type ComboboxTriggerProps, __VLS_export$54 as ComboboxViewport, type ComboboxViewportProps, __VLS_export$53 as Dialog, __VLS_export$52 as DialogClose, type DialogCloseProps, __VLS_export$51 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$50 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$49 as DialogFooter, type DialogFooterProps, __VLS_export$48 as DialogHeader, type DialogHeaderProps, __VLS_export$47 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$46 as DialogTitle, type DialogTitleProps, __VLS_export$45 as DialogTrigger, type DialogTriggerProps, __VLS_export$44 as Drawer, __VLS_export$43 as DrawerClose, type DrawerCloseProps, __VLS_export$42 as DrawerContent, type DrawerContentEmits, type DrawerContentProps, __VLS_export$41 as DrawerDescription, type DrawerDescriptionProps, type DrawerEmits, __VLS_export$40 as DrawerFooter, type DrawerFooterProps, __VLS_export$39 as DrawerHeader, type DrawerHeaderProps, __VLS_export$38 as DrawerOverlay, type DrawerOverlayProps, type DrawerProps, __VLS_export$37 as DrawerTitle, type DrawerTitleProps, __VLS_export$36 as DrawerTrigger, type DrawerTriggerProps, __VLS_export$35 as DropdownMenu, __VLS_export$34 as DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemEmits, type DropdownMenuCheckboxItemProps, __VLS_export$33 as DropdownMenuContent, type DropdownMenuContentEmits, type DropdownMenuContentProps, type DropdownMenuEmits, __VLS_export$32 as DropdownMenuGroup, type DropdownMenuGroupProps, __VLS_export$31 as DropdownMenuItem, type DropdownMenuItemProps, __VLS_export$30 as DropdownMenuLabel, type DropdownMenuLabelProps, __VLS_export$29 as DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, __VLS_export$28 as DropdownMenuRadioGroup, type DropdownMenuRadioGroupEmits, type DropdownMenuRadioGroupProps, __VLS_export$27 as DropdownMenuRadioItem, type DropdownMenuRadioItemEmits, type DropdownMenuRadioItemProps, __VLS_export$26 as DropdownMenuSeparator, type DropdownMenuSeparatorProps, __VLS_export$25 as DropdownMenuShortcut, type DropdownMenuShortcutProps, __VLS_export$24 as DropdownMenuSub, __VLS_export$23 as DropdownMenuSubContent, type DropdownMenuSubContentEmits, type DropdownMenuSubContentProps, type DropdownMenuSubProps, __VLS_export$22 as DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, __VLS_export$21 as DropdownMenuTrigger, type DropdownMenuTriggerProps, __VLS_export$20 as Select, __VLS_export$19 as SelectContent, type SelectContentEmits, type SelectContentProps, type SelectEmits, __VLS_export$18 as SelectGroup, type SelectGroupProps, __VLS_export$17 as SelectItem, type SelectItemProps, __VLS_export$16 as SelectItemText, type SelectItemTextProps, __VLS_export$15 as SelectLabel, type SelectLabelProps, type SelectProps, __VLS_export$14 as SelectScrollDownButton, type SelectScrollDownButtonProps, __VLS_export$13 as SelectScrollUpButton, type SelectScrollUpButtonProps, __VLS_export$12 as SelectSeparator, type SelectSeparatorProps, __VLS_export$11 as SelectTrigger, type SelectTriggerProps, __VLS_export$10 as SelectValue, type SelectValueProps, __VLS_export$9 as Sheet, __VLS_export$8 as SheetClose, type SheetCloseProps, __VLS_export$7 as SheetContent, type SheetContentEmits, type SheetContentProps, __VLS_export$6 as SheetDescription, type SheetDescriptionProps, type SheetEmits, __VLS_export$5 as SheetFooter, type SheetFooterProps, __VLS_export$4 as SheetHeader, type SheetHeaderProps, __VLS_export$3 as SheetOverlay, type SheetOverlayProps, type SheetProps, __VLS_export$2 as SheetTitle, type SheetTitleProps, __VLS_export$1 as SheetTrigger, type SheetTriggerProps, _default$80 as Sonner, type SonnerProps, toast };
1682
+ export { __VLS_export$100 as Accordion, __VLS_export$99 as AccordionContent, type AccordionContentProps, type AccordionEmits, __VLS_export$98 as AccordionHeader, type AccordionHeaderProps, __VLS_export$97 as AccordionItem, type AccordionItemProps, type AccordionProps, __VLS_export$96 as AccordionTrigger, type AccordionTriggerProps, __VLS_export$95 as AspectRatio, type AspectRatioProps, __VLS_export$94 as Autocomplete, __VLS_export$93 as AutocompleteAnchor, type AutocompleteAnchorProps, __VLS_export$92 as AutocompleteCancel, type AutocompleteCancelProps, __VLS_export$91 as AutocompleteContent, type AutocompleteContentEmits, type AutocompleteContentProps, type AutocompleteEmits, __VLS_export$90 as AutocompleteEmpty, type AutocompleteEmptyProps, __VLS_export$89 as AutocompleteGroup, type AutocompleteGroupProps, __VLS_export$88 as AutocompleteInput, type AutocompleteInputEmits, type AutocompleteInputProps, __VLS_export$87 as AutocompleteItem, type AutocompleteItemEmits, type AutocompleteItemProps, __VLS_export$86 as AutocompleteLabel, type AutocompleteLabelProps, __VLS_export$85 as AutocompletePortal, type AutocompletePortalProps, type AutocompleteProps, __VLS_export$84 as AutocompleteSeparator, type AutocompleteSeparatorProps, __VLS_export$83 as AutocompleteTrigger, type AutocompleteTriggerProps, __VLS_export$82 as AutocompleteViewport, type AutocompleteViewportProps, __VLS_export$81 as Combobox, __VLS_export$80 as ComboboxAnchor, type ComboboxAnchorProps, __VLS_export$79 as ComboboxCancel, type ComboboxCancelProps, __VLS_export$78 as ComboboxContent, type ComboboxContentEmits, type ComboboxContentProps, type ComboboxEmits, __VLS_export$77 as ComboboxEmpty, type ComboboxEmptyProps, __VLS_export$76 as ComboboxGroup, type ComboboxGroupProps, __VLS_export$75 as ComboboxInput, type ComboboxInputEmits, type ComboboxInputProps, __VLS_export$74 as ComboboxItem, type ComboboxItemEmits, type ComboboxItemProps, __VLS_export$73 as ComboboxLabel, type ComboboxLabelProps, __VLS_export$72 as ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, __VLS_export$71 as ComboboxSeparator, type ComboboxSeparatorProps, __VLS_export$70 as ComboboxTrigger, type ComboboxTriggerProps, __VLS_export$69 as ComboboxViewport, type ComboboxViewportProps, __VLS_export$68 as ContextMenu, __VLS_export$67 as ContextMenuCheckboxItem, type ContextMenuCheckboxItemEmits, type ContextMenuCheckboxItemProps, __VLS_export$66 as ContextMenuContent, type ContextMenuContentEmits, type ContextMenuContentProps, type ContextMenuEmits, __VLS_export$65 as ContextMenuGroup, type ContextMenuGroupProps, __VLS_export$64 as ContextMenuItem, type ContextMenuItemEmits, type ContextMenuItemProps, __VLS_export$63 as ContextMenuLabel, type ContextMenuLabelProps, __VLS_export$62 as ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, __VLS_export$61 as ContextMenuRadioGroup, type ContextMenuRadioGroupEmits, type ContextMenuRadioGroupProps, __VLS_export$60 as ContextMenuRadioItem, type ContextMenuRadioItemEmits, type ContextMenuRadioItemProps, __VLS_export$59 as ContextMenuSeparator, type ContextMenuSeparatorProps, __VLS_export$58 as ContextMenuShortcut, type ContextMenuShortcutProps, __VLS_export$57 as ContextMenuSub, __VLS_export$56 as ContextMenuSubContent, type ContextMenuSubContentEmits, type ContextMenuSubContentProps, type ContextMenuSubEmits, type ContextMenuSubProps, __VLS_export$55 as ContextMenuSubTrigger, type ContextMenuSubTriggerProps, __VLS_export$54 as ContextMenuTrigger, type ContextMenuTriggerProps, __VLS_export$53 as Dialog, __VLS_export$52 as DialogClose, type DialogCloseProps, __VLS_export$51 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$50 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$49 as DialogFooter, type DialogFooterProps, __VLS_export$48 as DialogHeader, type DialogHeaderProps, __VLS_export$47 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$46 as DialogTitle, type DialogTitleProps, __VLS_export$45 as DialogTrigger, type DialogTriggerProps, __VLS_export$44 as Drawer, __VLS_export$43 as DrawerClose, type DrawerCloseProps, __VLS_export$42 as DrawerContent, type DrawerContentEmits, type DrawerContentProps, __VLS_export$41 as DrawerDescription, type DrawerDescriptionProps, type DrawerEmits, __VLS_export$40 as DrawerFooter, type DrawerFooterProps, __VLS_export$39 as DrawerHeader, type DrawerHeaderProps, __VLS_export$38 as DrawerOverlay, type DrawerOverlayProps, type DrawerProps, __VLS_export$37 as DrawerTitle, type DrawerTitleProps, __VLS_export$36 as DrawerTrigger, type DrawerTriggerProps, __VLS_export$35 as DropdownMenu, __VLS_export$34 as DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemEmits, type DropdownMenuCheckboxItemProps, __VLS_export$33 as DropdownMenuContent, type DropdownMenuContentEmits, type DropdownMenuContentProps, type DropdownMenuEmits, __VLS_export$32 as DropdownMenuGroup, type DropdownMenuGroupProps, __VLS_export$31 as DropdownMenuItem, type DropdownMenuItemProps, __VLS_export$30 as DropdownMenuLabel, type DropdownMenuLabelProps, __VLS_export$29 as DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, __VLS_export$28 as DropdownMenuRadioGroup, type DropdownMenuRadioGroupEmits, type DropdownMenuRadioGroupProps, __VLS_export$27 as DropdownMenuRadioItem, type DropdownMenuRadioItemEmits, type DropdownMenuRadioItemProps, __VLS_export$26 as DropdownMenuSeparator, type DropdownMenuSeparatorProps, __VLS_export$25 as DropdownMenuShortcut, type DropdownMenuShortcutProps, __VLS_export$24 as DropdownMenuSub, __VLS_export$23 as DropdownMenuSubContent, type DropdownMenuSubContentEmits, type DropdownMenuSubContentProps, type DropdownMenuSubProps, __VLS_export$22 as DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, __VLS_export$21 as DropdownMenuTrigger, type DropdownMenuTriggerProps, __VLS_export$20 as Select, __VLS_export$19 as SelectContent, type SelectContentEmits, type SelectContentProps, type SelectEmits, __VLS_export$18 as SelectGroup, type SelectGroupProps, __VLS_export$17 as SelectItem, type SelectItemProps, __VLS_export$16 as SelectItemText, type SelectItemTextProps, __VLS_export$15 as SelectLabel, type SelectLabelProps, type SelectProps, __VLS_export$14 as SelectScrollDownButton, type SelectScrollDownButtonProps, __VLS_export$13 as SelectScrollUpButton, type SelectScrollUpButtonProps, __VLS_export$12 as SelectSeparator, type SelectSeparatorProps, __VLS_export$11 as SelectTrigger, type SelectTriggerProps, __VLS_export$10 as SelectValue, type SelectValueProps, __VLS_export$9 as Sheet, __VLS_export$8 as SheetClose, type SheetCloseProps, __VLS_export$7 as SheetContent, type SheetContentEmits, type SheetContentProps, __VLS_export$6 as SheetDescription, type SheetDescriptionProps, type SheetEmits, __VLS_export$5 as SheetFooter, type SheetFooterProps, __VLS_export$4 as SheetHeader, type SheetHeaderProps, __VLS_export$3 as SheetOverlay, type SheetOverlayProps, type SheetProps, __VLS_export$2 as SheetTitle, type SheetTitleProps, __VLS_export$1 as SheetTrigger, type SheetTriggerProps, _default$100 as Sonner, type SonnerProps, toast };
1335
1683
  //# sourceMappingURL=index.d.ts.map