@dolanske/vui 1.0.4 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (195) hide show
  1. package/LICENSE +673 -673
  2. package/README.md +42 -42
  3. package/dist/components/Accordion/Accordion.vue.d.ts +3 -2
  4. package/dist/components/Accordion/AccordionGroup.vue.d.ts +5 -2
  5. package/dist/components/Alert/Alert.vue.d.ts +3 -2
  6. package/dist/components/Avatar/Avatar.vue.d.ts +3 -2
  7. package/dist/components/Badge/Badge.vue.d.ts +3 -2
  8. package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +3 -2
  9. package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +3 -2
  10. package/dist/components/Button/Button.vue.d.ts +3 -2
  11. package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +3 -2
  12. package/dist/components/Calendar/Calendar.vue.d.ts +6 -6
  13. package/dist/components/Card/Card.vue.d.ts +4 -3
  14. package/dist/components/Checkbox/Checkbox.vue.d.ts +7 -6
  15. package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +2 -1
  16. package/dist/components/Divider/Divider.vue.d.ts +3 -2
  17. package/dist/components/Drawer/Drawer.vue.d.ts +10 -9
  18. package/dist/components/Dropdown/Dropdown.vue.d.ts +66 -3
  19. package/dist/components/Dropdown/DropdownItem.vue.d.ts +3 -2
  20. package/dist/components/Dropdown/DropdownTitle.vue.d.ts +6 -6
  21. package/dist/components/Flex/Flex.vue.d.ts +13 -12
  22. package/dist/components/Grid/Grid.vue.d.ts +7 -6
  23. package/dist/components/Input/Color.vue.d.ts +5 -5
  24. package/dist/components/Input/Counter.vue.d.ts +5 -5
  25. package/dist/components/Input/Dropzone.vue.d.ts +95 -10
  26. package/dist/components/Input/File.vue.d.ts +4 -3
  27. package/dist/components/Input/Input.vue.d.ts +7 -6
  28. package/dist/components/Input/Password.vue.d.ts +1 -1
  29. package/dist/components/Input/Textarea.vue.d.ts +7 -6
  30. package/dist/components/Kbd/Kbd.vue.d.ts +1 -1
  31. package/dist/components/Kbd/KbdGroup.vue.d.ts +2 -1
  32. package/dist/components/Modal/Confirm.vue.d.ts +7 -9
  33. package/dist/components/Modal/Modal.vue.d.ts +16 -13
  34. package/dist/components/OTP/OTP.vue.d.ts +7 -6
  35. package/dist/components/OTP/OTPItem.vue.d.ts +1 -1
  36. package/dist/components/Pagination/Pagination.vue.d.ts +3 -2
  37. package/dist/components/Popout/Popout.vue.d.ts +3 -2
  38. package/dist/components/Progress/Progress.vue.d.ts +5 -5
  39. package/dist/components/Radio/Radio.vue.d.ts +7 -6
  40. package/dist/components/Radio/RadioGroup.vue.d.ts +7 -6
  41. package/dist/components/Select/Select.vue.d.ts +4 -8
  42. package/dist/components/Sheet/Sheet.vue.d.ts +22 -13
  43. package/dist/components/Sidebar/Sidebar.vue.d.ts +7 -6
  44. package/dist/components/Skeleton/Skeleton.vue.d.ts +1 -1
  45. package/dist/components/Spinner/Spinner.vue.d.ts +1 -1
  46. package/dist/components/Switch/Switch.vue.d.ts +7 -6
  47. package/dist/components/Table/Cell.vue.d.ts +5 -2
  48. package/dist/components/Table/Head.vue.d.ts +3 -2
  49. package/dist/components/Table/Root.vue.d.ts +3 -2
  50. package/dist/components/Table/table.d.ts +2 -2
  51. package/dist/components/Tabs/Tab.vue.d.ts +3 -2
  52. package/dist/components/Tabs/Tabs.vue.d.ts +7 -6
  53. package/dist/components/Toast/toast.d.ts +6 -6
  54. package/dist/components/Tooltip/Tooltip.vue.d.ts +2 -1
  55. package/dist/internal/Backdrop/Backdrop.vue.d.ts +3 -2
  56. package/dist/vui.css +1 -0
  57. package/dist/vui.js +8090 -7884
  58. package/package.json +73 -72
  59. package/src/App.vue +95 -95
  60. package/src/components/Accordion/Accordion.vue +91 -91
  61. package/src/components/Accordion/AccordionGroup.vue +43 -43
  62. package/src/components/Accordion/accordion.scss +82 -82
  63. package/src/components/Alert/Alert.vue +59 -59
  64. package/src/components/Alert/alert.scss +161 -161
  65. package/src/components/Avatar/Avatar.vue +53 -53
  66. package/src/components/Avatar/avatar.scss +52 -52
  67. package/src/components/Badge/Badge.vue +21 -21
  68. package/src/components/Badge/badge.scss +210 -206
  69. package/src/components/Breadcrumbs/BreadcrumbItem.vue +26 -26
  70. package/src/components/Breadcrumbs/Breadcrumbs.vue +30 -30
  71. package/src/components/Breadcrumbs/breadcrumbs.scss +31 -31
  72. package/src/components/Button/Button.vue +85 -85
  73. package/src/components/Button/button.scss +279 -279
  74. package/src/components/ButtonGroup/ButtonGroup.vue +28 -28
  75. package/src/components/ButtonGroup/button-group.scss +51 -51
  76. package/src/components/Calendar/Calendar.vue +66 -66
  77. package/src/components/Calendar/calendar.scss +83 -83
  78. package/src/components/Card/Card.vue +48 -48
  79. package/src/components/Card/card.scss +53 -53
  80. package/src/components/Checkbox/Checkbox.vue +54 -54
  81. package/src/components/Checkbox/checkbox.scss +80 -80
  82. package/src/components/CopyClipboard/CopyClipboard.vue +91 -91
  83. package/src/components/CopyClipboard/copy-clipboard.scss +25 -25
  84. package/src/components/Divider/Divider.vue +44 -44
  85. package/src/components/Divider/divider.scss +35 -35
  86. package/src/components/Drawer/Drawer.vue +102 -97
  87. package/src/components/Drawer/drawer.scss +37 -37
  88. package/src/components/Dropdown/Dropdown.vue +135 -135
  89. package/src/components/Dropdown/DropdownItem.vue +33 -33
  90. package/src/components/Dropdown/DropdownTitle.vue +14 -14
  91. package/src/components/Dropdown/dropdown-item.scss +84 -84
  92. package/src/components/Dropdown/dropdown.scss +53 -53
  93. package/src/components/Flex/Flex.vue +113 -113
  94. package/src/components/Grid/Grid.vue +79 -80
  95. package/src/components/Input/Color.vue +26 -26
  96. package/src/components/Input/Counter.vue +66 -66
  97. package/src/components/Input/Dropzone.vue +65 -65
  98. package/src/components/Input/File.vue +15 -15
  99. package/src/components/Input/Input.vue +123 -123
  100. package/src/components/Input/Password.vue +35 -35
  101. package/src/components/Input/Textarea.vue +78 -78
  102. package/src/components/Input/input.scss +302 -302
  103. package/src/components/Kbd/Kbd.vue +48 -48
  104. package/src/components/Kbd/KbdGroup.vue +27 -27
  105. package/src/components/Kbd/kbd.scss +19 -19
  106. package/src/components/Modal/Confirm.vue +56 -56
  107. package/src/components/Modal/Modal.vue +103 -99
  108. package/src/components/Modal/modal.scss +54 -54
  109. package/src/components/OTP/OTP.vue +133 -133
  110. package/src/components/OTP/OTPItem.vue +37 -37
  111. package/src/components/OTP/otp.scss +84 -84
  112. package/src/components/Pagination/Pagination.vue +77 -77
  113. package/src/components/Pagination/pagination.ts +78 -78
  114. package/src/components/Popout/Popout.vue +52 -52
  115. package/src/components/Popout/popout.scss +15 -15
  116. package/src/components/Progress/Progress.vue +103 -103
  117. package/src/components/Progress/progress.scss +47 -47
  118. package/src/components/Radio/Radio.vue +38 -38
  119. package/src/components/Radio/RadioGroup.vue +40 -40
  120. package/src/components/Radio/radio.scss +78 -78
  121. package/src/components/Select/Select.vue +211 -211
  122. package/src/components/Select/select.scss +77 -77
  123. package/src/components/Sheet/Sheet.vue +108 -98
  124. package/src/components/Sheet/sheet.scss +69 -69
  125. package/src/components/Sidebar/Sidebar.vue +115 -115
  126. package/src/components/Sidebar/sidebar.scss +124 -124
  127. package/src/components/Skeleton/Skeleton.vue +43 -43
  128. package/src/components/Skeleton/skeleton.scss +14 -14
  129. package/src/components/Spinner/Spinner.vue +42 -42
  130. package/src/components/Spinner/spinner.scss +47 -47
  131. package/src/components/Switch/Switch.vue +31 -31
  132. package/src/components/Switch/switch.scss +93 -93
  133. package/src/components/Table/Cell.vue +23 -23
  134. package/src/components/Table/Head.vue +59 -59
  135. package/src/components/Table/Root.vue +66 -66
  136. package/src/components/Table/SelectAll.vue +23 -23
  137. package/src/components/Table/SelectRow.vue +30 -30
  138. package/src/components/Table/index.ts +7 -7
  139. package/src/components/Table/table.scss +154 -154
  140. package/src/components/Table/table.ts +248 -248
  141. package/src/components/Tabs/Tab.vue +25 -25
  142. package/src/components/Tabs/Tabs.vue +90 -90
  143. package/src/components/Tabs/tabs.scss +87 -87
  144. package/src/components/Toast/Toasts.vue +52 -52
  145. package/src/components/Toast/toast.scss +45 -45
  146. package/src/components/Toast/toast.ts +75 -75
  147. package/src/components/Tooltip/Tooltip.vue +86 -86
  148. package/src/components/Tooltip/tooltip.scss +8 -8
  149. package/src/examples/ExampleAccordions.vue +58 -58
  150. package/src/examples/ExampleAlerts.vue +78 -78
  151. package/src/examples/ExampleAvatars.vue +44 -44
  152. package/src/examples/ExampleBadges.vue +48 -48
  153. package/src/examples/ExampleBreadcrumbs.vue +46 -46
  154. package/src/examples/ExampleButtons.vue +140 -140
  155. package/src/examples/ExampleCalendars.vue +40 -40
  156. package/src/examples/ExampleCards.vue +94 -94
  157. package/src/examples/ExampleCheckboxes.vue +123 -123
  158. package/src/examples/ExampleCopyClipboard.vue +47 -47
  159. package/src/examples/ExampleDividers.vue +39 -39
  160. package/src/examples/ExampleDrawers.vue +67 -67
  161. package/src/examples/ExampleDropdowns.vue +114 -114
  162. package/src/examples/ExampleFlexGrid.vue +124 -122
  163. package/src/examples/ExampleInputs.vue +234 -234
  164. package/src/examples/ExampleKBD.vue +65 -65
  165. package/src/examples/ExampleModals.vue +143 -143
  166. package/src/examples/ExamplePalette.vue +159 -159
  167. package/src/examples/ExamplePopouts.vue +41 -41
  168. package/src/examples/ExampleSheets.vue +77 -77
  169. package/src/examples/ExampleSidebars.vue +270 -270
  170. package/src/examples/ExampleSkeletons.vue +26 -26
  171. package/src/examples/ExampleSpinners.vue +80 -78
  172. package/src/examples/ExampleTables.vue +195 -195
  173. package/src/examples/ExampleTabs.vue +119 -119
  174. package/src/examples/ExampleToasts.vue +96 -96
  175. package/src/examples/ExampleTooltips.vue +70 -70
  176. package/src/examples/shared/ExampleColor.vue +28 -28
  177. package/src/index.ts +116 -116
  178. package/src/internal/Backdrop/Backdrop.vue +22 -22
  179. package/src/internal/Backdrop/backdrop.scss +34 -34
  180. package/src/main.ts +5 -5
  181. package/src/shared/helpers.ts +117 -117
  182. package/src/shared/theme.ts +22 -22
  183. package/src/shared/types.ts +29 -29
  184. package/src/style/animation.scss +22 -22
  185. package/src/style/core.scss +119 -125
  186. package/src/style/layout.scss +207 -233
  187. package/src/style/media-query.scss +29 -29
  188. package/src/style/reset.scss +135 -135
  189. package/src/style/text.scss +137 -124
  190. package/src/style/theme.scss +195 -195
  191. package/src/style/tooltip.scss +146 -146
  192. package/src/style/typography.scss +415 -415
  193. package/src/style/utils.scss +36 -36
  194. package/src/style.scss +1 -1
  195. package/dist/style.css +0 -1
package/README.md CHANGED
@@ -1,42 +1,42 @@
1
- # VUI
2
-
3
- 1. `npm i @dolanske/vui`
4
- 2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
5
- 3. Build your thing bro
6
-
7
- ---
8
-
9
- ## 1.0 Checklist
10
-
11
- - [ ] Real life test
12
- - [x] Might be useful to build this in the hivecom project
13
- - [x] Build an example page with 100% of the components
14
- - [x] Run accessibility tools on it
15
- - [x] Run color contrast test
16
- - [ ] Make sure it works on mobile down to 340px
17
- - [ ] Components
18
- - [ ] Scale down Typography
19
- - [x] Sidebar
20
-
21
- ---
22
-
23
- ### Post 1.2 components
24
-
25
- - [ ] Carousel (slider)
26
- - [ ] CodeBlock
27
- - [ ] Code highlighting
28
- - [ ] Copy code
29
- - [ ] Type, padding, etc
30
- - [ ] Use this https://shiki.style/guide/install
31
- - [ ] Command dropdown
32
- - [ ] Documentation
33
- - [ ] Design my own documentation site (GENERIC?!)
34
- - [ ] Pages
35
- - [ ] CSS variable setup, accent, fonts
36
- - [ ] CSS helpers
37
- - [ ] Components
38
- - [ ] Typography page
39
-
40
- ### Whenever
41
-
42
- - [ ] Bump target from ES2022 whenever vite-plugin-dts is fixed
1
+ # VUI
2
+
3
+ 1. `npm i @dolanske/vui`
4
+ 2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
5
+ 3. Build your thing bro
6
+
7
+ ---
8
+
9
+ ## 1.0 Checklist
10
+
11
+ - [ ] Real life test
12
+ - [x] Might be useful to build this in the hivecom project
13
+ - [x] Build an example page with 100% of the components
14
+ - [x] Run accessibility tools on it
15
+ - [x] Run color contrast test
16
+ - [ ] Make sure it works on mobile down to 340px
17
+ - [ ] Components
18
+ - [ ] Scale down Typography
19
+ - [x] Sidebar
20
+
21
+ ---
22
+
23
+ ### Post 1.2 components
24
+
25
+ - [ ] Carousel (slider)
26
+ - [ ] CodeBlock
27
+ - [ ] Code highlighting
28
+ - [ ] Copy code
29
+ - [ ] Type, padding, etc
30
+ - [ ] Use this https://shiki.style/guide/install
31
+ - [ ] Command dropdown
32
+ - [ ] Documentation
33
+ - [ ] Design my own documentation site (GENERIC?!)
34
+ - [ ] Pages
35
+ - [ ] CSS variable setup, accent, fonts
36
+ - [ ] CSS helpers
37
+ - [ ] Components
38
+ - [ ] Typography page
39
+
40
+ ### Whenever
41
+
42
+ - [ ] Bump target from ES2022 whenever vite-plugin-dts is fixed
@@ -7,6 +7,7 @@ declare function open(): void;
7
7
  declare function close(): void;
8
8
  declare function toggle(): void;
9
9
  declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
10
11
  slots: {
11
12
  trigger?(_: {
12
13
  open: typeof open;
@@ -20,7 +21,7 @@ declare function __VLS_template(): {
20
21
  refs: {
21
22
  content: HTMLDivElement;
22
23
  };
23
- attrs: Partial<{}>;
24
+ rootEl: HTMLDivElement;
24
25
  };
25
26
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
26
27
  declare const __VLS_component: import('vue').DefineComponent<AccordionProps, {
@@ -36,7 +37,7 @@ declare const __VLS_component: import('vue').DefineComponent<AccordionProps, {
36
37
  onClose?: (() => any) | undefined;
37
38
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
38
39
  content: HTMLDivElement;
39
- }, any>;
40
+ }, HTMLDivElement>;
40
41
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
41
42
  export default _default;
42
43
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -7,6 +7,7 @@ interface Props {
7
7
  single?: boolean;
8
8
  }
9
9
  declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
10
11
  slots: Readonly<{
11
12
  default: () => Array<VNode & {
12
13
  props: AccordionProps;
@@ -19,10 +20,12 @@ declare function __VLS_template(): {
19
20
  refs: {
20
21
  accordion: unknown[];
21
22
  };
22
- attrs: Partial<{}>;
23
+ rootEl: any;
23
24
  };
24
25
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
27
+ accordion: unknown[];
28
+ }, any>;
26
29
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
30
  export default _default;
28
31
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -16,16 +16,17 @@ interface Props {
16
16
  description?: string;
17
17
  }
18
18
  declare function __VLS_template(): {
19
+ attrs: Partial<{}>;
19
20
  slots: {
20
21
  default?(_: {}): any;
21
22
  default?(_: {}): any;
22
23
  end?(_: {}): any;
23
24
  };
24
25
  refs: {};
25
- attrs: Partial<{}>;
26
+ rootEl: HTMLDivElement;
26
27
  };
27
28
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
28
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
29
30
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
30
31
  export default _default;
31
32
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -7,14 +7,15 @@ interface Props {
7
7
  alt?: string;
8
8
  }
9
9
  declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
10
11
  slots: {
11
12
  default?(_: {}): any;
12
13
  };
13
14
  refs: {};
14
- attrs: Partial<{}>;
15
+ rootEl: HTMLDivElement;
15
16
  };
16
17
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
18
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
18
19
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
19
20
  export default _default;
20
21
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,14 +4,15 @@ interface Props {
4
4
  filled?: boolean;
5
5
  }
6
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
7
8
  slots: {
8
9
  default?(_: {}): any;
9
10
  };
10
11
  refs: {};
11
- attrs: Partial<{}>;
12
+ rootEl: HTMLDivElement;
12
13
  };
13
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
16
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
17
  export default _default;
17
18
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -3,15 +3,16 @@ export interface BreadcrumbItemProps {
3
3
  href?: string;
4
4
  }
5
5
  declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
6
7
  slots: {
7
8
  default?(_: {}): any;
8
9
  default?(_: {}): any;
9
10
  };
10
11
  refs: {};
11
- attrs: Partial<{}>;
12
+ rootEl: HTMLLIElement;
12
13
  };
13
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import('vue').DefineComponent<BreadcrumbItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BreadcrumbItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_component: import('vue').DefineComponent<BreadcrumbItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BreadcrumbItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLIElement>;
15
16
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
17
  export default _default;
17
18
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,6 +4,7 @@ interface Props {
4
4
  separator?: string;
5
5
  }
6
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
7
8
  slots: Readonly<{
8
9
  default: () => Array<VNode & {
9
10
  props: BreadcrumbItemProps;
@@ -14,10 +15,10 @@ declare function __VLS_template(): {
14
15
  }>;
15
16
  };
16
17
  refs: {};
17
- attrs: Partial<{}>;
18
+ rootEl: HTMLUListElement;
18
19
  };
19
20
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
21
22
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
22
23
  export default _default;
23
24
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -12,16 +12,17 @@ interface Props {
12
12
  plain?: boolean;
13
13
  }
14
14
  declare function __VLS_template(): {
15
+ attrs: Partial<{}>;
15
16
  slots: {
16
17
  start?(_: {}): any;
17
18
  default?(_: {}): any;
18
19
  end?(_: {}): any;
19
20
  };
20
21
  refs: {};
21
- attrs: Partial<{}>;
22
+ rootEl: HTMLButtonElement;
22
23
  };
23
24
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
24
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
25
26
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
26
27
  export default _default;
27
28
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,14 +4,15 @@ interface Props {
4
4
  gap?: Space | number;
5
5
  }
6
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
7
8
  slots: {
8
9
  default?(_: {}): any;
9
10
  };
10
11
  refs: {};
11
- attrs: Partial<{}>;
12
+ rootEl: HTMLDivElement;
12
13
  };
13
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
16
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
17
  export default _default;
17
18
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,17 +1,17 @@
1
1
  import { VueDatePickerProps } from '@vuepic/vue-datepicker';
2
+ type __VLS_Props = VueDatePickerProps & {
3
+ expand?: boolean;
4
+ };
2
5
  declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
3
7
  slots: {
4
8
  trigger?(_: {}): any;
5
9
  };
6
10
  refs: {};
7
- attrs: Partial<{}>;
11
+ rootEl: any;
8
12
  };
9
13
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
- declare const __VLS_component: import('vue').DefineComponent<VueDatePickerProps & {
11
- expand?: boolean;
12
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<VueDatePickerProps & {
13
- expand?: boolean;
14
- }> & Readonly<{}>, {
14
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
15
15
  expand: boolean;
16
16
  format: string | ((date: Date) => string) | ((dates: Date[]) => string);
17
17
  autoApply: boolean;
@@ -5,17 +5,18 @@ export interface Props {
5
5
  padding?: boolean;
6
6
  }
7
7
  declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
8
9
  slots: {
9
10
  header?(_: {}): any;
10
- "header-end"?(_: {}): any;
11
+ 'header-end'?(_: {}): any;
11
12
  default?(_: {}): any;
12
13
  footer?(_: {}): any;
13
14
  };
14
15
  refs: {};
15
- attrs: Partial<{}>;
16
+ rootEl: HTMLDivElement;
16
17
  };
17
18
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
18
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
19
20
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
20
21
  export default _default;
21
22
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -6,23 +6,24 @@ interface Props {
6
6
  checked?: boolean;
7
7
  accent?: boolean;
8
8
  }
9
- declare let __VLS_typeProps: Props;
9
+ type __VLS_Props = Props;
10
10
  type __VLS_PublicProps = {
11
11
  modelValue?: boolean;
12
- } & typeof __VLS_typeProps;
12
+ } & __VLS_Props;
13
13
  declare function __VLS_template(): {
14
+ attrs: Partial<{}>;
14
15
  slots: Readonly<Record<string, any>> & Record<string, any>;
15
16
  refs: {};
16
- attrs: Partial<{}>;
17
+ rootEl: HTMLDivElement;
17
18
  };
18
19
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
20
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
21
  change: (checked: boolean) => any;
21
- "update:modelValue": (modelValue: boolean) => any;
22
+ "update:modelValue": (value: boolean) => any;
22
23
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
23
24
  onChange?: ((checked: boolean) => any) | undefined;
24
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
25
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
26
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
26
27
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
28
  export default _default;
28
29
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -13,6 +13,7 @@ interface Props {
13
13
  confirmTime?: number;
14
14
  }
15
15
  declare function __VLS_template(): {
16
+ attrs: Partial<{}>;
16
17
  slots: {
17
18
  default?(_: {
18
19
  copy: (text: string) => Promise<void>;
@@ -24,7 +25,7 @@ declare function __VLS_template(): {
24
25
  anchor: HTMLDivElement;
25
26
  tooltip: HTMLDivElement;
26
27
  };
27
- attrs: Partial<{}>;
28
+ rootEl: any;
28
29
  };
29
30
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
30
31
  declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
@@ -5,14 +5,15 @@ interface Props {
5
5
  margin?: string | number;
6
6
  }
7
7
  declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
8
9
  slots: {
9
10
  default?(_: {}): any;
10
11
  };
11
12
  refs: {};
12
- attrs: Partial<{}>;
13
+ rootEl: HTMLDivElement;
13
14
  };
14
15
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
16
17
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
18
  export default _default;
18
19
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,6 +1,10 @@
1
1
  import { DrawerPortalProps, DrawerRootProps } from 'vaul-vue';
2
2
  import { Sizes, VueClass } from '../../shared/types';
3
3
  interface Props {
4
+ /**
5
+ * Controls the visibility of the drawer
6
+ */
7
+ open?: boolean;
4
8
  /**
5
9
  * Title for accessibility.
6
10
  */
@@ -26,22 +30,19 @@ interface Props {
26
30
  rootProps?: DrawerRootProps;
27
31
  portalProps?: DrawerPortalProps;
28
32
  }
29
- declare let __VLS_typeProps: Props;
30
- type __VLS_PublicProps = {
31
- modelValue?: boolean;
32
- } & typeof __VLS_typeProps;
33
33
  declare function __VLS_template(): {
34
+ attrs: Partial<{}>;
34
35
  slots: {
35
36
  default?(_: {}): any;
36
37
  };
37
38
  refs: {};
38
- attrs: Partial<{}>;
39
+ rootEl: any;
39
40
  };
40
41
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
41
- declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
42
- "update:modelValue": (modelValue: boolean) => any;
43
- }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
44
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
42
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
43
+ close: () => any;
44
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
45
+ onClose?: (() => any) | undefined;
45
46
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
46
47
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
47
48
  export default _default;
@@ -21,6 +21,7 @@ declare function open(): void;
21
21
  declare function close(): void;
22
22
  declare function toggle(): void;
23
23
  declare function __VLS_template(): {
24
+ attrs: Partial<{}>;
24
25
  slots: {
25
26
  trigger?(_: {
26
27
  open: typeof open;
@@ -61,7 +62,7 @@ declare function __VLS_template(): {
61
62
  $parent: import('vue').ComponentPublicInstance | null;
62
63
  $host: Element | null;
63
64
  $emit: (event: "clickOutside") => void;
64
- $el: any;
65
+ $el: HTMLDivElement;
65
66
  $options: import('vue').ComponentOptionsBase<Readonly<import('../Popout/Popout.vue').Props> & Readonly<{
66
67
  onClickOutside?: (() => any) | undefined;
67
68
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -98,7 +99,7 @@ declare function __VLS_template(): {
98
99
  };
99
100
  }) | null;
100
101
  };
101
- attrs: Partial<{}>;
102
+ rootEl: any;
102
103
  };
103
104
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
104
105
  declare const __VLS_component: import('vue').DefineComponent<Props, {
@@ -110,7 +111,69 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
110
111
  close: () => any;
111
112
  }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
112
113
  onClose?: (() => any) | undefined;
113
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
114
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
115
+ anchor: HTMLDivElement;
116
+ dropdown: ({
117
+ $: import('vue').ComponentInternalInstance;
118
+ $data: {};
119
+ $props: {
120
+ readonly anchor: import('../../shared/types').PopoutMaybeElement<HTMLElement>;
121
+ readonly placement?: Placement | undefined;
122
+ readonly offset?: number | undefined;
123
+ readonly onClickOutside?: (() => any) | undefined;
124
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
125
+ $attrs: {
126
+ [x: string]: unknown;
127
+ };
128
+ $refs: {
129
+ [x: string]: unknown;
130
+ } & {
131
+ popout: HTMLDivElement;
132
+ };
133
+ $slots: Readonly<{
134
+ [name: string]: import('vue').Slot<any> | undefined;
135
+ }>;
136
+ $root: import('vue').ComponentPublicInstance | null;
137
+ $parent: import('vue').ComponentPublicInstance | null;
138
+ $host: Element | null;
139
+ $emit: (event: "clickOutside") => void;
140
+ $el: HTMLDivElement;
141
+ $options: import('vue').ComponentOptionsBase<Readonly<import('../Popout/Popout.vue').Props> & Readonly<{
142
+ onClickOutside?: (() => any) | undefined;
143
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
144
+ clickOutside: () => any;
145
+ }, string, {
146
+ offset: number;
147
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
148
+ beforeCreate?: (() => void) | (() => void)[];
149
+ created?: (() => void) | (() => void)[];
150
+ beforeMount?: (() => void) | (() => void)[];
151
+ mounted?: (() => void) | (() => void)[];
152
+ beforeUpdate?: (() => void) | (() => void)[];
153
+ updated?: (() => void) | (() => void)[];
154
+ activated?: (() => void) | (() => void)[];
155
+ deactivated?: (() => void) | (() => void)[];
156
+ beforeDestroy?: (() => void) | (() => void)[];
157
+ beforeUnmount?: (() => void) | (() => void)[];
158
+ destroyed?: (() => void) | (() => void)[];
159
+ unmounted?: (() => void) | (() => void)[];
160
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
161
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
162
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
163
+ };
164
+ $forceUpdate: () => void;
165
+ $nextTick: typeof import('vue').nextTick;
166
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
167
+ } & Readonly<{
168
+ offset: number;
169
+ }> & Omit<Readonly<import('../Popout/Popout.vue').Props> & Readonly<{
170
+ onClickOutside?: (() => any) | undefined;
171
+ }>, "offset"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
172
+ $slots: {
173
+ default?(_: {}): any;
174
+ };
175
+ }) | null;
176
+ }, any>;
114
177
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
115
178
  export default _default;
116
179
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,15 +4,16 @@ interface Props {
4
4
  iconEnd?: string;
5
5
  }
6
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
7
8
  slots: {
8
9
  default?(_: {}): any;
9
10
  hint?(_: {}): any;
10
11
  };
11
12
  refs: {};
12
- attrs: Partial<{}>;
13
+ rootEl: HTMLButtonElement;
13
14
  };
14
15
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
16
17
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
18
  export default _default;
18
19
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,17 +1,17 @@
1
+ type __VLS_Props = {
2
+ sticky?: boolean;
3
+ };
1
4
  declare function __VLS_template(): {
5
+ attrs: Partial<{}>;
2
6
  slots: {
3
7
  default?(_: {}): any;
4
8
  end?(_: {}): any;
5
9
  };
6
10
  refs: {};
7
- attrs: Partial<{}>;
11
+ rootEl: HTMLDivElement;
8
12
  };
9
13
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
- declare const __VLS_component: import('vue').DefineComponent<{
11
- sticky?: boolean;
12
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
13
- sticky?: boolean;
14
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
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
15
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
16
  export default _default;
17
17
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -8,29 +8,30 @@ export interface FlexProps {
8
8
  rowReverse?: boolean;
9
9
  columnReverse?: boolean;
10
10
  gap?: Space | number;
11
- justifyStart?: boolean;
12
- justifyEnd?: boolean;
13
- justifyCenter?: boolean;
14
- spaceBetween?: boolean;
15
- spaceAround?: boolean;
16
- spaceEvenly?: boolean;
17
- alignCenter?: boolean;
18
- alignStart?: boolean;
19
- alignEnd?: boolean;
20
- alignBaseline?: boolean;
11
+ xStart?: boolean;
12
+ xEnd?: boolean;
13
+ xCenter?: boolean;
14
+ xBetween?: boolean;
15
+ xAround?: boolean;
16
+ xEvenly?: boolean;
17
+ yCenter?: boolean;
18
+ yStart?: boolean;
19
+ yEnd?: boolean;
20
+ yBaseline?: boolean;
21
21
  expand?: boolean;
22
22
  }
23
23
  declare function __VLS_template(): {
24
+ attrs: Partial<{}>;
24
25
  slots: {
25
26
  default?(_: {}): any;
26
27
  };
27
28
  refs: {};
28
- attrs: Partial<{}>;
29
+ rootEl: HTMLDivElement;
29
30
  };
30
31
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
31
32
  declare const __VLS_component: import('vue').DefineComponent<FlexProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FlexProps> & Readonly<{}>, {
32
33
  gap: Space | number;
33
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
34
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
34
35
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
36
  export default _default;
36
37
  type __VLS_WithTemplateSlots<T, S> = T & {