vkedit 2.8.5

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 (193) hide show
  1. package/LICENSE +21 -0
  2. package/README.en.md +1173 -0
  3. package/README.md +1172 -0
  4. package/dist/commands/add-element-command.d.ts +13 -0
  5. package/dist/commands/align-elements-command.d.ts +13 -0
  6. package/dist/commands/base-command.d.ts +15 -0
  7. package/dist/commands/batch-command.d.ts +16 -0
  8. package/dist/commands/change-layer-order-command.d.ts +15 -0
  9. package/dist/commands/clear-selection-command.d.ts +11 -0
  10. package/dist/commands/i-command.d.ts +13 -0
  11. package/dist/commands/index.d.ts +16 -0
  12. package/dist/commands/remove-element-command.d.ts +12 -0
  13. package/dist/commands/transform-element-command.d.ts +18 -0
  14. package/dist/commands/update-property-command.d.ts +20 -0
  15. package/dist/components/BaseElementPropertyPanel.vue.d.ts +9 -0
  16. package/dist/components/CanvasPropertyPanel.vue.d.ts +9 -0
  17. package/dist/components/ContextMenuDelete.vue.d.ts +5 -0
  18. package/dist/components/TextProperty.vue.d.ts +15 -0
  19. package/dist/components/index.d.ts +4 -0
  20. package/dist/components/ui/button/Button.vue.d.ts +27 -0
  21. package/dist/components/ui/button/index.d.ts +7 -0
  22. package/dist/components/ui/button-group/ButtonGroup.vue.d.ts +23 -0
  23. package/dist/components/ui/button-group/ButtonGroupSeparator.vue.d.ts +9 -0
  24. package/dist/components/ui/button-group/ButtonGroupText.vue.d.ts +26 -0
  25. package/dist/components/ui/button-group/index.d.ts +8 -0
  26. package/dist/components/ui/dropdown-menu/DropdownMenu.vue.d.ts +22 -0
  27. package/dist/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +28 -0
  28. package/dist/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +36 -0
  29. package/dist/components/ui/dropdown-menu/DropdownMenuGroup.vue.d.ts +18 -0
  30. package/dist/components/ui/dropdown-menu/DropdownMenuItem.vue.d.ts +26 -0
  31. package/dist/components/ui/dropdown-menu/DropdownMenuLabel.vue.d.ts +23 -0
  32. package/dist/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts +22 -0
  33. package/dist/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +26 -0
  34. package/dist/components/ui/dropdown-menu/DropdownMenuSeparator.vue.d.ts +7 -0
  35. package/dist/components/ui/dropdown-menu/DropdownMenuShortcut.vue.d.ts +21 -0
  36. package/dist/components/ui/dropdown-menu/DropdownMenuSub.vue.d.ts +22 -0
  37. package/dist/components/ui/dropdown-menu/DropdownMenuSubContent.vue.d.ts +38 -0
  38. package/dist/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +23 -0
  39. package/dist/components/ui/dropdown-menu/DropdownMenuTrigger.vue.d.ts +18 -0
  40. package/dist/components/ui/dropdown-menu/index.d.ts +15 -0
  41. package/dist/components/ui/index.d.ts +14 -0
  42. package/dist/components/ui/input/Input.vue.d.ts +12 -0
  43. package/dist/components/ui/input/index.d.ts +1 -0
  44. package/dist/components/ui/input-mm/InputMM.vue.d.ts +13 -0
  45. package/dist/components/ui/input-mm/InputNumberMM.vue.d.ts +14 -0
  46. package/dist/components/ui/input-mm/index.d.ts +2 -0
  47. package/dist/components/ui/input-number/VkInputNumber.vue.d.ts +9 -0
  48. package/dist/components/ui/input-number/index.d.ts +1 -0
  49. package/dist/components/ui/label/Label.vue.d.ts +22 -0
  50. package/dist/components/ui/label/index.d.ts +1 -0
  51. package/dist/components/ui/number-field/NumberField.vue.d.ts +26 -0
  52. package/dist/components/ui/number-field/NumberFieldContent.vue.d.ts +21 -0
  53. package/dist/components/ui/number-field/NumberFieldDecrement.vue.d.ts +22 -0
  54. package/dist/components/ui/number-field/NumberFieldIncrement.vue.d.ts +22 -0
  55. package/dist/components/ui/number-field/NumberFieldInput.vue.d.ts +6 -0
  56. package/dist/components/ui/number-field/index.d.ts +5 -0
  57. package/dist/components/ui/scroll-area/ScrollArea.vue.d.ts +22 -0
  58. package/dist/components/ui/scroll-area/ScrollBar.vue.d.ts +9 -0
  59. package/dist/components/ui/scroll-area/index.d.ts +2 -0
  60. package/dist/components/ui/select/Select.vue.d.ts +25 -0
  61. package/dist/components/ui/select/SelectContent.vue.d.ts +32 -0
  62. package/dist/components/ui/select/SelectGroup.vue.d.ts +18 -0
  63. package/dist/components/ui/select/SelectItem.vue.d.ts +22 -0
  64. package/dist/components/ui/select/SelectItemText.vue.d.ts +18 -0
  65. package/dist/components/ui/select/SelectLabel.vue.d.ts +22 -0
  66. package/dist/components/ui/select/SelectScrollDownButton.vue.d.ts +22 -0
  67. package/dist/components/ui/select/SelectScrollUpButton.vue.d.ts +22 -0
  68. package/dist/components/ui/select/SelectSeparator.vue.d.ts +7 -0
  69. package/dist/components/ui/select/SelectTrigger.vue.d.ts +25 -0
  70. package/dist/components/ui/select/SelectValue.vue.d.ts +18 -0
  71. package/dist/components/ui/select/index.d.ts +11 -0
  72. package/dist/components/ui/separator/Separator.vue.d.ts +10 -0
  73. package/dist/components/ui/separator/index.d.ts +1 -0
  74. package/dist/components/ui/slider/Slider.vue.d.ts +13 -0
  75. package/dist/components/ui/slider/index.d.ts +1 -0
  76. package/dist/components/ui/switch/Switch.vue.d.ts +26 -0
  77. package/dist/components/ui/switch/index.d.ts +1 -0
  78. package/dist/components/ui/textarea/Textarea.vue.d.ts +12 -0
  79. package/dist/components/ui/textarea/index.d.ts +1 -0
  80. package/dist/components/ui/toggle/Toggle.vue.d.ts +33 -0
  81. package/dist/components/ui/toggle/index.d.ts +7 -0
  82. package/dist/core/BgLayer.vue.d.ts +8 -0
  83. package/dist/core/ContentLayer.vue.d.ts +29 -0
  84. package/dist/core/ContextMenu.vue.d.ts +6 -0
  85. package/dist/core/Editor.vue.d.ts +38 -0
  86. package/dist/core/PropertyPanel.vue.d.ts +23 -0
  87. package/dist/core/RulerLayer.vue.d.ts +10 -0
  88. package/dist/core/ScrollbarLayer.vue.d.ts +8 -0
  89. package/dist/core/SelectionLayer.vue.d.ts +6 -0
  90. package/dist/core/StageView.vue.d.ts +9 -0
  91. package/dist/core/Toolbar.vue.d.ts +29 -0
  92. package/dist/core/Toolbox.vue.d.ts +23 -0
  93. package/dist/core/Zoom.vue.d.ts +6 -0
  94. package/dist/core/editor-host.d.ts +34 -0
  95. package/dist/core/index.d.ts +2 -0
  96. package/dist/create-host.d.ts +9 -0
  97. package/dist/favicon.ico +0 -0
  98. package/dist/hooks/index.d.ts +10 -0
  99. package/dist/hooks/use-bg-layer.d.ts +22 -0
  100. package/dist/hooks/use-content-layer.d.ts +66 -0
  101. package/dist/hooks/use-host-state.d.ts +14 -0
  102. package/dist/hooks/use-property-command.d.ts +6 -0
  103. package/dist/hooks/use-ruler-layer.d.ts +24 -0
  104. package/dist/hooks/use-scrollbar-layer.d.ts +47 -0
  105. package/dist/hooks/use-selection-layer.d.ts +35 -0
  106. package/dist/hooks/use-stage-event.d.ts +33 -0
  107. package/dist/hooks/use-stage.d.ts +14 -0
  108. package/dist/hooks/use-zoom.d.ts +12 -0
  109. package/dist/html2canvas.esm-Dmi1NfiH.js +4871 -0
  110. package/dist/index-CjPgwxVC.js +82707 -0
  111. package/dist/index.d.ts +8 -0
  112. package/dist/index.es-DekiblxN.js +6674 -0
  113. package/dist/lib/utils.d.ts +2 -0
  114. package/dist/plugins/align/Align.vue.d.ts +6 -0
  115. package/dist/plugins/align/align.d.ts +11 -0
  116. package/dist/plugins/align/index.d.ts +2 -0
  117. package/dist/plugins/barcode/PropertyPanel.vue.d.ts +9 -0
  118. package/dist/plugins/barcode/Shape.vue.d.ts +8 -0
  119. package/dist/plugins/barcode/Tool.vue.d.ts +5 -0
  120. package/dist/plugins/barcode/barcode.d.ts +72 -0
  121. package/dist/plugins/barcode/index.d.ts +4 -0
  122. package/dist/plugins/chart/PropertyPanel.vue.d.ts +9 -0
  123. package/dist/plugins/chart/Shape.vue.d.ts +23 -0
  124. package/dist/plugins/chart/Tool.vue.d.ts +5 -0
  125. package/dist/plugins/chart/chart.d.ts +38 -0
  126. package/dist/plugins/chart/index.d.ts +4 -0
  127. package/dist/plugins/context-menu-manager/context-menu-manager.d.ts +28 -0
  128. package/dist/plugins/context-menu-manager/index.d.ts +1 -0
  129. package/dist/plugins/element-manager.d.ts +24 -0
  130. package/dist/plugins/export/Export.vue.d.ts +6 -0
  131. package/dist/plugins/export/export.d.ts +36 -0
  132. package/dist/plugins/export/index.d.ts +2 -0
  133. package/dist/plugins/graphic-manager/graphic-manager.d.ts +31 -0
  134. package/dist/plugins/graphic-manager/index.d.ts +1 -0
  135. package/dist/plugins/graphic-tool-manager.d.ts +16 -0
  136. package/dist/plugins/import/Import.vue.d.ts +6 -0
  137. package/dist/plugins/import/import.d.ts +33 -0
  138. package/dist/plugins/import/index.d.ts +2 -0
  139. package/dist/plugins/index.d.ts +19 -0
  140. package/dist/plugins/keydown.d.ts +15 -0
  141. package/dist/plugins/line/PropertyPanel.vue.d.ts +9 -0
  142. package/dist/plugins/line/Shape.vue.d.ts +6 -0
  143. package/dist/plugins/line/Tool.vue.d.ts +6 -0
  144. package/dist/plugins/line/index.d.ts +4 -0
  145. package/dist/plugins/line/line.d.ts +62 -0
  146. package/dist/plugins/preview/PreviewButton.vue.d.ts +5 -0
  147. package/dist/plugins/preview/index.d.ts +1 -0
  148. package/dist/plugins/preview/preview.d.ts +26 -0
  149. package/dist/plugins/property-panel-manager/index.d.ts +1 -0
  150. package/dist/plugins/property-panel-manager/property-panel-manager.d.ts +32 -0
  151. package/dist/plugins/qrcode/PropertyPanel.vue.d.ts +9 -0
  152. package/dist/plugins/qrcode/Shape.vue.d.ts +8 -0
  153. package/dist/plugins/qrcode/Tool.vue.d.ts +5 -0
  154. package/dist/plugins/qrcode/index.d.ts +4 -0
  155. package/dist/plugins/qrcode/qrcode.d.ts +75 -0
  156. package/dist/plugins/rect/PropertyPanel.vue.d.ts +9 -0
  157. package/dist/plugins/rect/Shape.vue.d.ts +6 -0
  158. package/dist/plugins/rect/Tool.vue.d.ts +6 -0
  159. package/dist/plugins/rect/index.d.ts +4 -0
  160. package/dist/plugins/rect/rect.d.ts +70 -0
  161. package/dist/plugins/selection.d.ts +35 -0
  162. package/dist/plugins/table/CellsBorder.vue.d.ts +6 -0
  163. package/dist/plugins/table/ContextMenu.vue.d.ts +9 -0
  164. package/dist/plugins/table/PropertyPanel.vue.d.ts +9 -0
  165. package/dist/plugins/table/Shape.vue.d.ts +26 -0
  166. package/dist/plugins/table/Tool.vue.d.ts +6 -0
  167. package/dist/plugins/table/cell.d.ts +61 -0
  168. package/dist/plugins/table/index.d.ts +6 -0
  169. package/dist/plugins/table/table.d.ts +93 -0
  170. package/dist/plugins/text/PropertyPanel.vue.d.ts +9 -0
  171. package/dist/plugins/text/Shape.vue.d.ts +6 -0
  172. package/dist/plugins/text/TextContextMenu.vue.d.ts +5 -0
  173. package/dist/plugins/text/Tool.vue.d.ts +5 -0
  174. package/dist/plugins/text/index.d.ts +5 -0
  175. package/dist/plugins/text/text.d.ts +75 -0
  176. package/dist/plugins/toolbar-manager.d.ts +16 -0
  177. package/dist/purify.es-8O7LIJdo.js +553 -0
  178. package/dist/stores/index.d.ts +1 -0
  179. package/dist/stores/use-stage-store.d.ts +40 -0
  180. package/dist/styles/index.css +144 -0
  181. package/dist/types/base-graphic-element.d.ts +82 -0
  182. package/dist/types/base-graphic-type.d.ts +9 -0
  183. package/dist/types/base-plugin.d.ts +17 -0
  184. package/dist/types/base.d.ts +81 -0
  185. package/dist/types/element-type-map.d.ts +12 -0
  186. package/dist/types/event-data.d.ts +116 -0
  187. package/dist/types/event-map.d.ts +146 -0
  188. package/dist/types/index.d.ts +9 -0
  189. package/dist/types/konva-text.d.ts +3 -0
  190. package/dist/types/plugin-map.d.ts +12 -0
  191. package/dist/vkedit.css +1 -0
  192. package/dist/vkedit.es.js +113 -0
  193. package/package.json +91 -0
@@ -0,0 +1,38 @@
1
+ import { DropdownMenuSubContentProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = DropdownMenuSubContentProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ closeAutoFocus: (event: Event) => any;
17
+ escapeKeyDown: (event: KeyboardEvent) => any;
18
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
19
+ entryFocus: (event: Event) => any;
20
+ openAutoFocus: (event: Event) => any;
21
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
22
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
23
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
24
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
25
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
26
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
27
+ onEntryFocus?: ((event: Event) => any) | undefined;
28
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
29
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
30
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
31
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
32
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
33
+ export default _default;
34
+ type __VLS_WithTemplateSlots<T, S> = T & {
35
+ new (): {
36
+ $slots: S;
37
+ };
38
+ };
@@ -0,0 +1,23 @@
1
+ import { DropdownMenuSubTriggerProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = DropdownMenuSubTriggerProps & {
4
+ class?: HTMLAttributes["class"];
5
+ inset?: boolean;
6
+ };
7
+ declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
9
+ slots: {
10
+ default?(_: {}): any;
11
+ };
12
+ refs: {};
13
+ rootEl: any;
14
+ };
15
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
+ export default _default;
19
+ type __VLS_WithTemplateSlots<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ };
@@ -0,0 +1,18 @@
1
+ import { DropdownMenuTriggerProps } from 'reka-ui';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
+ export default _default;
14
+ type __VLS_WithTemplateSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,15 @@
1
+ export { default as DropdownMenu } from './DropdownMenu.vue';
2
+ export { default as DropdownMenuCheckboxItem } from './DropdownMenuCheckboxItem.vue';
3
+ export { default as DropdownMenuContent } from './DropdownMenuContent.vue';
4
+ export { default as DropdownMenuGroup } from './DropdownMenuGroup.vue';
5
+ export { default as DropdownMenuItem } from './DropdownMenuItem.vue';
6
+ export { default as DropdownMenuLabel } from './DropdownMenuLabel.vue';
7
+ export { default as DropdownMenuRadioGroup } from './DropdownMenuRadioGroup.vue';
8
+ export { default as DropdownMenuRadioItem } from './DropdownMenuRadioItem.vue';
9
+ export { default as DropdownMenuSeparator } from './DropdownMenuSeparator.vue';
10
+ export { default as DropdownMenuShortcut } from './DropdownMenuShortcut.vue';
11
+ export { default as DropdownMenuSub } from './DropdownMenuSub.vue';
12
+ export { default as DropdownMenuSubContent } from './DropdownMenuSubContent.vue';
13
+ export { default as DropdownMenuSubTrigger } from './DropdownMenuSubTrigger.vue';
14
+ export { default as DropdownMenuTrigger } from './DropdownMenuTrigger.vue';
15
+ export { DropdownMenuPortal } from 'reka-ui';
@@ -0,0 +1,14 @@
1
+ export { Button as VkButton } from './button';
2
+ export { ButtonGroup as VkButtonGroup } from './button-group';
3
+ export { Input as VkInput } from './input';
4
+ export { Label as VkLabel } from './label';
5
+ export { NumberField as VkNumberField, NumberFieldContent as VkNumberFieldContent, NumberFieldDecrement as VkNumberFieldDecrement, NumberFieldInput as VkNumberFieldInput, NumberFieldIncrement as VkNumberFieldIncrement, } from './number-field';
6
+ export { Separator as VkSeparator } from './separator';
7
+ export { Slider as VkSlider } from './slider';
8
+ export { Switch as VkSwitch } from './switch';
9
+ export { Select as VkSelect, SelectContent as VkSelectContent, SelectGroup as VkSelectGroup, SelectItem as VkSelectItem, SelectLabel as VkSelectLabel, SelectTrigger as VkSelectTrigger, SelectValue as VkSelectValue, } from './select';
10
+ export { Toggle as VkToggle } from './toggle';
11
+ export { Textarea as VkTextarea } from './textarea';
12
+ export { InputMM as VkInputMM } from './input-mm';
13
+ export { InputNumberMM as VkInputNumberMM } from './input-mm';
14
+ export * from './input-number';
@@ -0,0 +1,12 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ defaultValue?: string | number;
4
+ modelValue?: string | number;
5
+ class?: HTMLAttributes["class"];
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
8
+ "update:modelValue": (payload: string | number) => any;
9
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
+ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLInputElement>;
12
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as Input } from './Input.vue';
@@ -0,0 +1,13 @@
1
+ type __VLS_Props = {
2
+ modelValue: number;
3
+ dpm?: number;
4
+ step?: number;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ "update:model-value": (args_0: number) => any;
8
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ "onUpdate:model-value"?: ((args_0: number) => any) | undefined;
10
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
11
+ inputParentRef: HTMLDivElement;
12
+ }, any>;
13
+ export default _default;
@@ -0,0 +1,14 @@
1
+ type __VLS_Props = {
2
+ step?: number;
3
+ };
4
+ type __VLS_PublicProps = {
5
+ modelValue: number;
6
+ } & __VLS_Props;
7
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
+ "update:modelValue": (value: number) => any;
9
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
12
+ inputParentRef: HTMLDivElement;
13
+ }, any>;
14
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as InputMM } from './InputMM.vue';
2
+ export { default as InputNumberMM } from './InputNumberMM.vue';
@@ -0,0 +1,9 @@
1
+ type __VLS_PublicProps = {
2
+ modelValue?: number;
3
+ };
4
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
+ "update:modelValue": (value: number) => any;
6
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
7
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
8
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
9
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as VkInputNumber } from './VkInputNumber.vue';
@@ -0,0 +1,22 @@
1
+ import { LabelProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = LabelProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1 @@
1
+ export { default as Label } from './Label.vue';
@@ -0,0 +1,26 @@
1
+ import { NumberFieldRootProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = NumberFieldRootProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ "update:modelValue": (val: number) => any;
17
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
18
+ "onUpdate:modelValue"?: ((val: number) => any) | undefined;
19
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
21
+ export default _default;
22
+ type __VLS_WithTemplateSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -0,0 +1,21 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes["class"];
4
+ };
5
+ declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
7
+ slots: {
8
+ default?(_: {}): any;
9
+ };
10
+ refs: {};
11
+ rootEl: HTMLDivElement;
12
+ };
13
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
+ export default _default;
17
+ type __VLS_WithTemplateSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,22 @@
1
+ import { NumberFieldDecrementProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = NumberFieldDecrementProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,22 @@
1
+ import { NumberFieldIncrementProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = NumberFieldIncrementProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,6 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ type __VLS_Props = {
3
+ class?: HTMLAttributes["class"];
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
6
+ export default _default;
@@ -0,0 +1,5 @@
1
+ export { default as NumberField } from './NumberField.vue';
2
+ export { default as NumberFieldContent } from './NumberFieldContent.vue';
3
+ export { default as NumberFieldDecrement } from './NumberFieldDecrement.vue';
4
+ export { default as NumberFieldIncrement } from './NumberFieldIncrement.vue';
5
+ export { default as NumberFieldInput } from './NumberFieldInput.vue';
@@ -0,0 +1,22 @@
1
+ import { ScrollAreaRootProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ScrollAreaRootProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,9 @@
1
+ import { ScrollAreaScrollbarProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = ScrollAreaScrollbarProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ orientation: "vertical" | "horizontal";
8
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
9
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as ScrollArea } from './ScrollArea.vue';
2
+ export { default as ScrollBar } from './ScrollBar.vue';
@@ -0,0 +1,25 @@
1
+ import { SelectRootProps } from 'reka-ui';
2
+ type __VLS_Props = SelectRootProps;
3
+ declare function __VLS_template(): {
4
+ attrs: Partial<{}>;
5
+ slots: {
6
+ default?(_: {}): any;
7
+ };
8
+ refs: {};
9
+ rootEl: any;
10
+ };
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ "update:modelValue": (value: import('reka-ui').AcceptableValue) => any;
14
+ "update:open": (value: boolean) => any;
15
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
16
+ "onUpdate:modelValue"?: ((value: import('reka-ui').AcceptableValue) => any) | undefined;
17
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
20
+ export default _default;
21
+ type __VLS_WithTemplateSlots<T, S> = T & {
22
+ new (): {
23
+ $slots: S;
24
+ };
25
+ };
@@ -0,0 +1,32 @@
1
+ import { SelectContentProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = SelectContentProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ closeAutoFocus: (event: Event) => any;
17
+ escapeKeyDown: (event: KeyboardEvent) => any;
18
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
20
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
21
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
22
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
23
+ }>, {
24
+ position: "item-aligned" | "popper";
25
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
+ export default _default;
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $slots: S;
31
+ };
32
+ };
@@ -0,0 +1,18 @@
1
+ import { SelectGroupProps } from 'reka-ui';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<SelectGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SelectGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
+ export default _default;
14
+ type __VLS_WithTemplateSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,22 @@
1
+ import { SelectItemProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = SelectItemProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,18 @@
1
+ import { SelectItemTextProps } from 'reka-ui';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<SelectItemTextProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SelectItemTextProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
+ export default _default;
14
+ type __VLS_WithTemplateSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,22 @@
1
+ import { SelectLabelProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = SelectLabelProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,22 @@
1
+ import { SelectScrollDownButtonProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = SelectScrollDownButtonProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,22 @@
1
+ import { SelectScrollUpButtonProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = SelectScrollUpButtonProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,7 @@
1
+ import { SelectSeparatorProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = SelectSeparatorProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
+ export default _default;
@@ -0,0 +1,25 @@
1
+ import { SelectTriggerProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = SelectTriggerProps & {
4
+ class?: HTMLAttributes["class"];
5
+ size?: "sm" | "default";
6
+ };
7
+ declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
9
+ slots: {
10
+ default?(_: {}): any;
11
+ };
12
+ refs: {};
13
+ rootEl: any;
14
+ };
15
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
+ size: "sm" | "default";
18
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
20
+ export default _default;
21
+ type __VLS_WithTemplateSlots<T, S> = T & {
22
+ new (): {
23
+ $slots: S;
24
+ };
25
+ };
@@ -0,0 +1,18 @@
1
+ import { SelectValueProps } from 'reka-ui';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<SelectValueProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SelectValueProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
+ export default _default;
14
+ type __VLS_WithTemplateSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,11 @@
1
+ export { default as Select } from './Select.vue';
2
+ export { default as SelectContent } from './SelectContent.vue';
3
+ export { default as SelectGroup } from './SelectGroup.vue';
4
+ export { default as SelectItem } from './SelectItem.vue';
5
+ export { default as SelectItemText } from './SelectItemText.vue';
6
+ export { default as SelectLabel } from './SelectLabel.vue';
7
+ export { default as SelectScrollDownButton } from './SelectScrollDownButton.vue';
8
+ export { default as SelectScrollUpButton } from './SelectScrollUpButton.vue';
9
+ export { default as SelectSeparator } from './SelectSeparator.vue';
10
+ export { default as SelectTrigger } from './SelectTrigger.vue';
11
+ export { default as SelectValue } from './SelectValue.vue';
@@ -0,0 +1,10 @@
1
+ import { SeparatorProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = SeparatorProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ orientation: "horizontal" | "vertical";
8
+ decorative: boolean;
9
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as Separator } from './Separator.vue';