@sabrenski/spire-ui 0.0.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 (237) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +233 -0
  3. package/dist/index.d.ts +4981 -0
  4. package/dist/spire-ui.css +1 -0
  5. package/dist/spire-ui.es.js +18403 -0
  6. package/dist/spire-ui.umd.js +45 -0
  7. package/package.json +83 -0
  8. package/src/components/Accordion/Accordion.test.ts +218 -0
  9. package/src/components/Accordion/AccordionContent.vue +112 -0
  10. package/src/components/Accordion/AccordionItem.vue +87 -0
  11. package/src/components/Accordion/AccordionRoot.vue +111 -0
  12. package/src/components/Accordion/AccordionTrigger.vue +125 -0
  13. package/src/components/Accordion/index.ts +11 -0
  14. package/src/components/Accordion/keys.ts +23 -0
  15. package/src/components/Avatar/Avatar.test.ts +181 -0
  16. package/src/components/Avatar/Avatar.vue +150 -0
  17. package/src/components/Avatar/index.ts +2 -0
  18. package/src/components/Badge/Badge.test.ts +141 -0
  19. package/src/components/Badge/Badge.vue +133 -0
  20. package/src/components/Badge/index.ts +2 -0
  21. package/src/components/BadgeContainer/BadgeContainer.test.ts +150 -0
  22. package/src/components/BadgeContainer/BadgeContainer.vue +90 -0
  23. package/src/components/BadgeContainer/index.ts +2 -0
  24. package/src/components/Breadcrumb/Breadcrumb.test.ts +342 -0
  25. package/src/components/Breadcrumb/BreadcrumbEllipsis.vue +96 -0
  26. package/src/components/Breadcrumb/BreadcrumbItem.vue +16 -0
  27. package/src/components/Breadcrumb/BreadcrumbLink.vue +67 -0
  28. package/src/components/Breadcrumb/BreadcrumbList.vue +20 -0
  29. package/src/components/Breadcrumb/BreadcrumbPage.vue +25 -0
  30. package/src/components/Breadcrumb/BreadcrumbRoot.vue +41 -0
  31. package/src/components/Breadcrumb/BreadcrumbSeparator.vue +63 -0
  32. package/src/components/Breadcrumb/index.ts +13 -0
  33. package/src/components/Breadcrumb/keys.ts +7 -0
  34. package/src/components/Button/Button.test.ts +231 -0
  35. package/src/components/Button/Button.vue +349 -0
  36. package/src/components/Button/index.ts +2 -0
  37. package/src/components/Callout/Callout.test.ts +260 -0
  38. package/src/components/Callout/Callout.vue +341 -0
  39. package/src/components/Callout/index.ts +2 -0
  40. package/src/components/Card/Card.test.ts +565 -0
  41. package/src/components/Card/Card.vue +209 -0
  42. package/src/components/Card/CardContent.vue +57 -0
  43. package/src/components/Card/CardFooter.vue +72 -0
  44. package/src/components/Card/CardHeader.vue +111 -0
  45. package/src/components/Card/CardImage.vue +124 -0
  46. package/src/components/Card/index.ts +14 -0
  47. package/src/components/Chart/BarChart.vue +208 -0
  48. package/src/components/Chart/BaseChart.vue +444 -0
  49. package/src/components/Chart/Chart.test.ts +359 -0
  50. package/src/components/Chart/DonutChart.vue +283 -0
  51. package/src/components/Chart/LineChart.vue +211 -0
  52. package/src/components/Chart/index.ts +20 -0
  53. package/src/components/Chart/useChartTheme.ts +192 -0
  54. package/src/components/Checkbox/Checkbox.test.ts +209 -0
  55. package/src/components/Checkbox/Checkbox.vue +285 -0
  56. package/src/components/Checkbox/index.ts +2 -0
  57. package/src/components/ChoiceChip/ChoiceChip.test.ts +142 -0
  58. package/src/components/ChoiceChip/ChoiceChip.vue +218 -0
  59. package/src/components/ChoiceChip/index.ts +2 -0
  60. package/src/components/ChoiceChipGroup/ChoiceChipGroup.test.ts +151 -0
  61. package/src/components/ChoiceChipGroup/ChoiceChipGroup.vue +70 -0
  62. package/src/components/ChoiceChipGroup/index.ts +2 -0
  63. package/src/components/ColorPicker/ColorArea.vue +159 -0
  64. package/src/components/ColorPicker/ColorPicker.test.ts +250 -0
  65. package/src/components/ColorPicker/ColorPicker.vue +339 -0
  66. package/src/components/ColorPicker/ColorSlider.vue +191 -0
  67. package/src/components/ColorPicker/index.ts +7 -0
  68. package/src/components/Combobox/Combobox.test.ts +891 -0
  69. package/src/components/Combobox/Combobox.vue +934 -0
  70. package/src/components/Combobox/index.ts +2 -0
  71. package/src/components/DataTable/DataTable.test.ts +1221 -0
  72. package/src/components/DataTable/DataTable.vue +1415 -0
  73. package/src/components/DataTable/index.ts +10 -0
  74. package/src/components/DatePicker/DatePicker.test.ts +625 -0
  75. package/src/components/DatePicker/DatePicker.vue +1586 -0
  76. package/src/components/DatePicker/index.ts +2 -0
  77. package/src/components/Drawer/Drawer.test.ts +336 -0
  78. package/src/components/Drawer/Drawer.vue +466 -0
  79. package/src/components/Drawer/index.ts +2 -0
  80. package/src/components/Dropdown/Dropdown.test.ts +607 -0
  81. package/src/components/Dropdown/Dropdown.vue +807 -0
  82. package/src/components/Dropdown/DropdownItem.vue +227 -0
  83. package/src/components/Dropdown/DropdownSeparator.vue +14 -0
  84. package/src/components/Dropdown/DropdownSub.vue +104 -0
  85. package/src/components/Dropdown/DropdownSubContent.vue +187 -0
  86. package/src/components/Dropdown/DropdownSubTrigger.vue +151 -0
  87. package/src/components/Dropdown/index.ts +14 -0
  88. package/src/components/EmptyState/EmptyState.test.ts +180 -0
  89. package/src/components/EmptyState/EmptyState.vue +137 -0
  90. package/src/components/EmptyState/index.ts +2 -0
  91. package/src/components/FileUpload/FileUpload.test.ts +1151 -0
  92. package/src/components/FileUpload/FileUpload.vue +1042 -0
  93. package/src/components/FileUpload/index.ts +2 -0
  94. package/src/components/Heading/Heading.test.ts +107 -0
  95. package/src/components/Heading/Heading.vue +67 -0
  96. package/src/components/Heading/index.ts +2 -0
  97. package/src/components/Icon/Icon.test.ts +157 -0
  98. package/src/components/Icon/Icon.vue +86 -0
  99. package/src/components/Icon/index.ts +2 -0
  100. package/src/components/Input/Input.test.ts +273 -0
  101. package/src/components/Input/Input.vue +388 -0
  102. package/src/components/Input/index.ts +2 -0
  103. package/src/components/Layout/Container.vue +67 -0
  104. package/src/components/Layout/Grid.vue +159 -0
  105. package/src/components/Layout/GridItem.vue +154 -0
  106. package/src/components/Layout/Layout.test.ts +202 -0
  107. package/src/components/Layout/Stack.vue +128 -0
  108. package/src/components/Layout/index.ts +9 -0
  109. package/src/components/Layout/keys.ts +7 -0
  110. package/src/components/Modal/Modal.test.ts +311 -0
  111. package/src/components/Modal/Modal.vue +336 -0
  112. package/src/components/Modal/index.ts +2 -0
  113. package/src/components/Pagination/Pagination.test.ts +303 -0
  114. package/src/components/Pagination/Pagination.vue +212 -0
  115. package/src/components/Pagination/index.ts +3 -0
  116. package/src/components/Pagination/utils.ts +86 -0
  117. package/src/components/Popover/Popover.test.ts +285 -0
  118. package/src/components/Popover/Popover.vue +441 -0
  119. package/src/components/Popover/index.ts +2 -0
  120. package/src/components/Progress/Progress.test.ts +361 -0
  121. package/src/components/Progress/Progress.vue +363 -0
  122. package/src/components/Progress/index.ts +7 -0
  123. package/src/components/Radio/Radio.test.ts +216 -0
  124. package/src/components/Radio/Radio.vue +214 -0
  125. package/src/components/Radio/index.ts +2 -0
  126. package/src/components/Rating/Rating.test.ts +319 -0
  127. package/src/components/Rating/Rating.vue +247 -0
  128. package/src/components/Rating/index.ts +2 -0
  129. package/src/components/SegmentedControl/SegmentedControl.test.ts +292 -0
  130. package/src/components/SegmentedControl/SegmentedControl.vue +288 -0
  131. package/src/components/SegmentedControl/index.ts +2 -0
  132. package/src/components/Select/Select.test.ts +589 -0
  133. package/src/components/Select/Select.vue +666 -0
  134. package/src/components/Select/index.ts +2 -0
  135. package/src/components/Sidebar/Sidebar.test.ts +301 -0
  136. package/src/components/Sidebar/SidebarGroup.vue +103 -0
  137. package/src/components/Sidebar/SidebarItem.vue +196 -0
  138. package/src/components/Sidebar/SidebarLayout.vue +42 -0
  139. package/src/components/Sidebar/SidebarRoot.vue +122 -0
  140. package/src/components/Sidebar/index.ts +11 -0
  141. package/src/components/Sidebar/keys.ts +14 -0
  142. package/src/components/Skeleton/Skeleton.test.ts +130 -0
  143. package/src/components/Skeleton/Skeleton.vue +104 -0
  144. package/src/components/Skeleton/index.ts +2 -0
  145. package/src/components/Slider/Slider.test.ts +416 -0
  146. package/src/components/Slider/Slider.vue +435 -0
  147. package/src/components/Slider/index.ts +2 -0
  148. package/src/components/Slider/utils.ts +91 -0
  149. package/src/components/Spinner/Spinner.test.ts +79 -0
  150. package/src/components/Spinner/Spinner.vue +159 -0
  151. package/src/components/Spinner/index.ts +2 -0
  152. package/src/components/SpireProvider/SpireProvider.vue +71 -0
  153. package/src/components/SpireProvider/index.ts +11 -0
  154. package/src/components/Stepper/Stepper.test.ts +221 -0
  155. package/src/components/Stepper/StepperContent.vue +51 -0
  156. package/src/components/Stepper/StepperItem.vue +89 -0
  157. package/src/components/Stepper/StepperRoot.vue +101 -0
  158. package/src/components/Stepper/StepperSeparator.vue +52 -0
  159. package/src/components/Stepper/StepperTrigger.vue +144 -0
  160. package/src/components/Stepper/index.ts +11 -0
  161. package/src/components/Stepper/keys.ts +27 -0
  162. package/src/components/Switch/Switch.test.ts +214 -0
  163. package/src/components/Switch/Switch.vue +235 -0
  164. package/src/components/Switch/index.ts +2 -0
  165. package/src/components/Tabs/Tabs.test.ts +363 -0
  166. package/src/components/Tabs/Tabs.vue +318 -0
  167. package/src/components/Tabs/index.ts +2 -0
  168. package/src/components/Text/Text.test.ts +154 -0
  169. package/src/components/Text/Text.vue +100 -0
  170. package/src/components/Text/index.ts +2 -0
  171. package/src/components/Textarea/Textarea.test.ts +432 -0
  172. package/src/components/Textarea/Textarea.vue +411 -0
  173. package/src/components/Textarea/index.ts +2 -0
  174. package/src/components/TimePicker/TimePicker.test.ts +352 -0
  175. package/src/components/TimePicker/TimePicker.vue +569 -0
  176. package/src/components/TimePicker/index.ts +2 -0
  177. package/src/components/Timeline/Timeline.test.ts +193 -0
  178. package/src/components/Timeline/Timeline.vue +111 -0
  179. package/src/components/Timeline/TimelineItem.vue +167 -0
  180. package/src/components/Timeline/index.ts +13 -0
  181. package/src/components/Timeline/keys.ts +21 -0
  182. package/src/components/Toast/ToastItem.test.ts +289 -0
  183. package/src/components/Toast/ToastItem.vue +370 -0
  184. package/src/components/Toast/ToastProvider.test.ts +158 -0
  185. package/src/components/Toast/ToastProvider.vue +181 -0
  186. package/src/components/Toast/index.ts +83 -0
  187. package/src/components/Toast/toastState.test.ts +165 -0
  188. package/src/components/Toast/toastState.ts +161 -0
  189. package/src/components/ToggleButton/ToggleButton.test.ts +166 -0
  190. package/src/components/ToggleButton/ToggleButton.vue +197 -0
  191. package/src/components/ToggleButton/index.ts +2 -0
  192. package/src/components/ToggleGroup/ToggleGroup.test.ts +181 -0
  193. package/src/components/ToggleGroup/ToggleGroup.vue +130 -0
  194. package/src/components/ToggleGroup/index.ts +2 -0
  195. package/src/components/Tooltip/Tooltip.test.ts +238 -0
  196. package/src/components/Tooltip/Tooltip.vue +217 -0
  197. package/src/components/Tooltip/index.ts +2 -0
  198. package/src/components/TreeView/TreeView.test.ts +357 -0
  199. package/src/components/TreeView/TreeView.vue +251 -0
  200. package/src/components/TreeView/TreeViewItem.vue +288 -0
  201. package/src/components/TreeView/index.ts +11 -0
  202. package/src/components/TreeView/keys.ts +35 -0
  203. package/src/composables/index.ts +12 -0
  204. package/src/composables/useClickOutside.ts +36 -0
  205. package/src/composables/useClipboard.ts +35 -0
  206. package/src/composables/useEventListener.ts +48 -0
  207. package/src/composables/useFocusTrap.ts +58 -0
  208. package/src/composables/useHoverReveal.ts +98 -0
  209. package/src/composables/useId.ts +10 -0
  210. package/src/composables/useMagnetic.ts +171 -0
  211. package/src/composables/useRelativePosition.ts +127 -0
  212. package/src/composables/useRipple.ts +146 -0
  213. package/src/composables/useScrollLock.ts +25 -0
  214. package/src/composables/useSpireConfig.ts +27 -0
  215. package/src/composables/useStagger.ts +224 -0
  216. package/src/config/icons.test.ts +115 -0
  217. package/src/config/icons.ts +170 -0
  218. package/src/index.ts +361 -0
  219. package/src/styles/depth.css +129 -0
  220. package/src/styles/effects.css +169 -0
  221. package/src/styles/fallback.css +152 -0
  222. package/src/styles/main.css +25 -0
  223. package/src/styles/mood.css +211 -0
  224. package/src/styles/motion.css +159 -0
  225. package/src/styles/reset.css +97 -0
  226. package/src/styles/theme.css +708 -0
  227. package/src/styles/tokens.css +183 -0
  228. package/src/utils/.gitkeep +0 -0
  229. package/src/utils/color.ts +277 -0
  230. package/src/utils/date.test.ts +522 -0
  231. package/src/utils/date.ts +380 -0
  232. package/src/utils/index.ts +23 -0
  233. package/src/utils/object.test.ts +80 -0
  234. package/src/utils/object.ts +25 -0
  235. package/src/utils/string.test.ts +64 -0
  236. package/src/utils/string.ts +32 -0
  237. package/src/utils/time.ts +156 -0
@@ -0,0 +1,4981 @@
1
+ import { AllowedComponentProps } from 'vue';
2
+ import { BubbleDataPoint } from 'chart.js';
3
+ import { Chart } from 'chart.js';
4
+ import { ChartData } from 'chart.js';
5
+ import { ChartOptions } from 'chart.js';
6
+ import { ChartType } from 'chart.js';
7
+ import { ChartTypeRegistry } from 'chart.js';
8
+ import { Component } from 'vue';
9
+ import { ComponentCustomProperties } from 'vue';
10
+ import { ComponentCustomProps } from 'vue';
11
+ import { ComponentInternalInstance } from 'vue';
12
+ import { ComponentOptionsBase } from 'vue';
13
+ import { ComponentOptionsMixin } from 'vue';
14
+ import { ComponentProvideOptions } from 'vue';
15
+ import { ComponentPublicInstance } from 'vue';
16
+ import { ComputedRef } from 'vue';
17
+ import { DebuggerEvent } from 'vue';
18
+ import { DefineComponent } from 'vue';
19
+ import { GlobalComponents } from 'vue';
20
+ import { GlobalDirectives } from 'vue';
21
+ import { InjectionKey } from 'vue';
22
+ import { InputHTMLAttributes } from 'vue';
23
+ import { nextTick } from 'vue';
24
+ import { OnCleanup } from '@vue/reactivity';
25
+ import { Point } from 'chart.js';
26
+ import { PublicProps } from 'vue';
27
+ import { Ref } from 'vue';
28
+ import { ShallowRef } from 'vue';
29
+ import { ShallowUnwrapRef } from 'vue';
30
+ import { Slot } from 'vue';
31
+ import { VNode } from 'vue';
32
+ import { VNodeProps } from 'vue';
33
+ import { WatchOptions } from 'vue';
34
+ import { WatchStopHandle } from 'vue';
35
+
36
+ declare const __VLS_component: DefineComponent<AccordionRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
37
+ "update:modelValue": (value: string | string[] | undefined) => any;
38
+ }, string, PublicProps, Readonly<AccordionRootProps> & Readonly<{
39
+ "onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
40
+ }>, {
41
+ collapsible: boolean;
42
+ multiple: boolean;
43
+ variant: AccordionVariant;
44
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
45
+
46
+ declare const __VLS_component_10: DefineComponent<BreadcrumbLinkProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BreadcrumbLinkProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
47
+
48
+ declare const __VLS_component_11: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLSpanElement>;
49
+
50
+ declare const __VLS_component_12: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLIElement>;
51
+
52
+ declare const __VLS_component_13: DefineComponent<BreadcrumbEllipsisProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BreadcrumbEllipsisProps> & Readonly<{}>, {
53
+ items: BreadcrumbEllipsisItem[];
54
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLIElement>;
55
+
56
+ declare const __VLS_component_14: DefineComponent<ButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
57
+ click: (event: MouseEvent) => any;
58
+ }, string, PublicProps, Readonly<ButtonProps> & Readonly<{
59
+ onClick?: ((event: MouseEvent) => any) | undefined;
60
+ }>, {
61
+ variant: "primary" | "secondary" | "destructive" | "ghost" | "outline";
62
+ type: "button" | "submit" | "reset";
63
+ size: "xs" | "sm" | "md" | "lg" | "xl";
64
+ disabled: boolean;
65
+ as: string | Component;
66
+ loading: boolean;
67
+ block: boolean;
68
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
69
+
70
+ declare const __VLS_component_15: DefineComponent<CalloutProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
71
+ close: () => any;
72
+ }, string, PublicProps, Readonly<CalloutProps> & Readonly<{
73
+ onClose?: (() => any) | undefined;
74
+ }>, {
75
+ variant: CalloutVariant;
76
+ accent: boolean;
77
+ dismissible: boolean;
78
+ hideIcon: boolean;
79
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
80
+
81
+ declare const __VLS_component_16: DefineComponent<CardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
82
+ click: (event: MouseEvent) => any;
83
+ }, string, PublicProps, Readonly<CardProps> & Readonly<{
84
+ onClick?: ((event: MouseEvent) => any) | undefined;
85
+ }>, {
86
+ variant: CardVariant;
87
+ disabled: boolean;
88
+ as: string | Component;
89
+ loading: boolean;
90
+ interactive: boolean;
91
+ horizontal: boolean;
92
+ padding: CardPadding;
93
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
94
+
95
+ declare const __VLS_component_17: DefineComponent<CardHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CardHeaderProps> & Readonly<{}>, {
96
+ align: "start" | "center";
97
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
98
+
99
+ declare const __VLS_component_18: DefineComponent<CardContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CardContentProps> & Readonly<{}>, {
100
+ flush: boolean;
101
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
102
+
103
+ declare const __VLS_component_19: DefineComponent<CardFooterProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CardFooterProps> & Readonly<{}>, {
104
+ align: "start" | "center" | "end" | "between";
105
+ borderless: boolean;
106
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
107
+
108
+ declare const __VLS_component_2: DefineComponent<AccordionItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {
109
+ disabled: boolean;
110
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
111
+
112
+ declare const __VLS_component_20: DefineComponent<BaseChartProps, {
113
+ chart: ShallowRef<Chart<keyof ChartTypeRegistry, (number | Point | [number, number] | BubbleDataPoint | null)[], unknown> | null, Chart<keyof ChartTypeRegistry, (number | Point | [number, number] | BubbleDataPoint | null)[], unknown> | null>;
114
+ toggleDataset: typeof toggleDataset;
115
+ legendItems: Ref< {
116
+ label: string;
117
+ color: string;
118
+ hidden: boolean;
119
+ datasetIndex: number;
120
+ }[], LegendItem[] | {
121
+ label: string;
122
+ color: string;
123
+ hidden: boolean;
124
+ datasetIndex: number;
125
+ }[]>;
126
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
127
+ legendClick: (item: LegendItem, index: number) => any;
128
+ pointClick: (data: PointClickData) => any;
129
+ }, string, PublicProps, Readonly<BaseChartProps> & Readonly<{
130
+ onLegendClick?: ((item: LegendItem, index: number) => any) | undefined;
131
+ onPointClick?: ((data: PointClickData) => any) | undefined;
132
+ }>, {
133
+ height: string | number;
134
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
135
+ containerRef: HTMLDivElement;
136
+ canvasRef: HTMLCanvasElement;
137
+ }, HTMLDivElement>;
138
+
139
+ declare const __VLS_component_21: DefineComponent<LineChartProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
140
+ pointClick: (data: PointClickData) => any;
141
+ }, string, PublicProps, Readonly<LineChartProps> & Readonly<{
142
+ onPointClick?: ((data: PointClickData) => any) | undefined;
143
+ }>, {
144
+ fill: boolean;
145
+ height: string | number;
146
+ pointRadius: number;
147
+ tension: number;
148
+ showPoints: boolean;
149
+ showGrid: boolean;
150
+ showXAxis: boolean;
151
+ showYAxis: boolean;
152
+ showLegend: boolean;
153
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
154
+
155
+ declare const __VLS_component_22: DefineComponent<BarChartProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
156
+ pointClick: (data: PointClickData) => any;
157
+ }, string, PublicProps, Readonly<BarChartProps> & Readonly<{
158
+ onPointClick?: ((data: PointClickData) => any) | undefined;
159
+ }>, {
160
+ height: string | number;
161
+ horizontal: boolean;
162
+ borderRadius: number;
163
+ stacked: boolean;
164
+ showGrid: boolean;
165
+ showXAxis: boolean;
166
+ showYAxis: boolean;
167
+ showLegend: boolean;
168
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
169
+
170
+ declare const __VLS_component_23: DefineComponent<DonutChartProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
171
+ segmentClick: (data: SegmentClickData) => any;
172
+ }, string, PublicProps, Readonly<DonutChartProps> & Readonly<{
173
+ onSegmentClick?: ((data: SegmentClickData) => any) | undefined;
174
+ }>, {
175
+ height: string | number;
176
+ cutout: number;
177
+ showLegend: boolean;
178
+ legendPosition: "top" | "bottom" | "left" | "right";
179
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
180
+
181
+ declare const __VLS_component_24: DefineComponent<DataTableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
182
+ "update:selectedIds": (value: (string | number)[]) => any;
183
+ "sort-change": (value: SortState) => any;
184
+ "row-click": (row: Record<string, unknown>, index: number) => any;
185
+ "update:page": (value: number) => any;
186
+ "update:pageSize": (value: number) => any;
187
+ "pagination-change": (value: {
188
+ page: number;
189
+ pageSize: number;
190
+ }) => any;
191
+ "update:search": (value: string) => any;
192
+ "update:filters": (value: Record<string, string>) => any;
193
+ "filter-change": (value: {
194
+ search: string;
195
+ filters: Record<string, string>;
196
+ }) => any;
197
+ "update:expandedIds": (value: (string | number)[]) => any;
198
+ "row-expand": (row: Record<string, unknown>, expanded: boolean) => any;
199
+ "column-resize": (columnKey: string, width: number) => any;
200
+ }, string, PublicProps, Readonly<DataTableProps> & Readonly<{
201
+ "onUpdate:selectedIds"?: ((value: (string | number)[]) => any) | undefined;
202
+ "onSort-change"?: ((value: SortState) => any) | undefined;
203
+ "onRow-click"?: ((row: Record<string, unknown>, index: number) => any) | undefined;
204
+ "onUpdate:page"?: ((value: number) => any) | undefined;
205
+ "onUpdate:pageSize"?: ((value: number) => any) | undefined;
206
+ "onPagination-change"?: ((value: {
207
+ page: number;
208
+ pageSize: number;
209
+ }) => any) | undefined;
210
+ "onUpdate:search"?: ((value: string) => any) | undefined;
211
+ "onUpdate:filters"?: ((value: Record<string, string>) => any) | undefined;
212
+ "onFilter-change"?: ((value: {
213
+ search: string;
214
+ filters: Record<string, string>;
215
+ }) => any) | undefined;
216
+ "onUpdate:expandedIds"?: ((value: (string | number)[]) => any) | undefined;
217
+ "onRow-expand"?: ((row: Record<string, unknown>, expanded: boolean) => any) | undefined;
218
+ "onColumn-resize"?: ((columnKey: string, width: number) => any) | undefined;
219
+ }>, {
220
+ search: string;
221
+ size: "sm" | "md" | "lg";
222
+ bordered: boolean;
223
+ page: number;
224
+ loading: boolean;
225
+ pageSize: number;
226
+ selectable: boolean;
227
+ selectedIds: (string | number)[];
228
+ rowKey: string;
229
+ skeletonRows: number;
230
+ striped: boolean;
231
+ hoverable: boolean;
232
+ emptyMessage: string;
233
+ stickyHeader: boolean;
234
+ pagination: boolean | PaginationConfig;
235
+ serverSide: boolean;
236
+ searchable: boolean;
237
+ searchPlaceholder: string;
238
+ filterable: boolean;
239
+ filters: Record<string, string>;
240
+ resizable: boolean;
241
+ expandable: boolean;
242
+ expandedIds: (string | number)[];
243
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
244
+ tableRef: HTMLDivElement;
245
+ }, HTMLDivElement>;
246
+
247
+ declare const __VLS_component_25: DefineComponent<DatePickerProps, {
248
+ open: typeof openCalendar;
249
+ close: typeof closeCalendar;
250
+ toggle: () => void;
251
+ applyPreset: typeof applyPreset;
252
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
253
+ "update:modelValue": (value: string | [string, string]) => any;
254
+ }, string, PublicProps, Readonly<DatePickerProps> & Readonly<{
255
+ "onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
256
+ }>, {
257
+ size: "xs" | "sm" | "md" | "lg" | "xl";
258
+ disabled: boolean;
259
+ required: boolean;
260
+ mode: "single" | "range";
261
+ placeholder: string;
262
+ block: boolean;
263
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
264
+ popoverRef: ({
265
+ $: ComponentInternalInstance;
266
+ $data: {};
267
+ $props: {
268
+ readonly placement?: PopoverPlacement | undefined;
269
+ readonly offset?: number | undefined;
270
+ readonly arrow?: boolean | undefined;
271
+ readonly disabled?: boolean | undefined;
272
+ readonly width?: "auto" | number | undefined;
273
+ readonly closeOnEscape?: boolean | undefined;
274
+ readonly closeOnClickOutside?: boolean | undefined;
275
+ readonly lockScroll?: boolean | undefined;
276
+ readonly trapFocus?: boolean | undefined;
277
+ readonly onClose?: (() => any) | undefined;
278
+ readonly onOpen?: (() => any) | undefined;
279
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
280
+ $attrs: {
281
+ [x: string]: unknown;
282
+ };
283
+ $refs: {
284
+ [x: string]: unknown;
285
+ } & {
286
+ triggerRef: HTMLDivElement;
287
+ popoverRef: HTMLDivElement;
288
+ };
289
+ $slots: Readonly<{
290
+ [name: string]: Slot<any> | undefined;
291
+ }>;
292
+ $root: ComponentPublicInstance | null;
293
+ $parent: ComponentPublicInstance | null;
294
+ $host: Element | null;
295
+ $emit: ((event: "close") => void) & ((event: "open") => void);
296
+ $el: HTMLDivElement;
297
+ $options: ComponentOptionsBase<Readonly<PopoverProps> & Readonly<{
298
+ onClose?: (() => any) | undefined;
299
+ onOpen?: (() => any) | undefined;
300
+ }>, {
301
+ open: () => void;
302
+ close: () => void;
303
+ toggle: () => void;
304
+ isOpen: Ref<boolean, boolean>;
305
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
306
+ close: () => any;
307
+ open: () => any;
308
+ }, string, {
309
+ disabled: boolean;
310
+ width: "auto" | number;
311
+ placement: PopoverPlacement;
312
+ offset: number;
313
+ arrow: boolean;
314
+ closeOnEscape: boolean;
315
+ closeOnClickOutside: boolean;
316
+ lockScroll: boolean;
317
+ trapFocus: boolean;
318
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
319
+ beforeCreate?: (() => void) | (() => void)[];
320
+ created?: (() => void) | (() => void)[];
321
+ beforeMount?: (() => void) | (() => void)[];
322
+ mounted?: (() => void) | (() => void)[];
323
+ beforeUpdate?: (() => void) | (() => void)[];
324
+ updated?: (() => void) | (() => void)[];
325
+ activated?: (() => void) | (() => void)[];
326
+ deactivated?: (() => void) | (() => void)[];
327
+ beforeDestroy?: (() => void) | (() => void)[];
328
+ beforeUnmount?: (() => void) | (() => void)[];
329
+ destroyed?: (() => void) | (() => void)[];
330
+ unmounted?: (() => void) | (() => void)[];
331
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
332
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
333
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
334
+ };
335
+ $forceUpdate: () => void;
336
+ $nextTick: typeof nextTick;
337
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
338
+ } & Readonly<{
339
+ disabled: boolean;
340
+ width: "auto" | number;
341
+ placement: PopoverPlacement;
342
+ offset: number;
343
+ arrow: boolean;
344
+ closeOnEscape: boolean;
345
+ closeOnClickOutside: boolean;
346
+ lockScroll: boolean;
347
+ trapFocus: boolean;
348
+ }> & Omit<Readonly<PopoverProps> & Readonly<{
349
+ onClose?: (() => any) | undefined;
350
+ onOpen?: (() => any) | undefined;
351
+ }>, "close" | "toggle" | "isOpen" | "open" | ("disabled" | "width" | "placement" | "offset" | "arrow" | "closeOnEscape" | "closeOnClickOutside" | "lockScroll" | "trapFocus")> & ShallowUnwrapRef< {
352
+ open: () => void;
353
+ close: () => void;
354
+ toggle: () => void;
355
+ isOpen: Ref<boolean, boolean>;
356
+ }> & {} & ComponentCustomProperties & {} & {
357
+ $slots: {
358
+ trigger?(_: {
359
+ open: boolean;
360
+ toggle: () => void;
361
+ close: () => void;
362
+ }): any;
363
+ default?(_: {
364
+ close: () => void;
365
+ }): any;
366
+ };
367
+ }) | null;
368
+ triggerRef: HTMLDivElement;
369
+ inputRef: HTMLInputElement;
370
+ calendarRef: HTMLDivElement;
371
+ }, HTMLDivElement>;
372
+
373
+ declare const __VLS_component_26: DefineComponent<DrawerProps, {
374
+ close: typeof close_2;
375
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
376
+ "update:modelValue": (value: boolean) => any;
377
+ close: () => any;
378
+ open: () => any;
379
+ }, string, PublicProps, Readonly<DrawerProps> & Readonly<{
380
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
381
+ onClose?: (() => any) | undefined;
382
+ onOpen?: (() => any) | undefined;
383
+ }>, {
384
+ modelValue: boolean;
385
+ variant: DrawerVariant;
386
+ size: DrawerSize;
387
+ placement: DrawerPlacement;
388
+ closeOnEscape: boolean;
389
+ maskClosable: boolean;
390
+ showClose: boolean;
391
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
392
+ drawerRef: HTMLDivElement;
393
+ }, any>;
394
+
395
+ declare const __VLS_component_27: DefineComponent<DropdownItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
396
+ click: (event: MouseEvent | KeyboardEvent) => any;
397
+ }, string, PublicProps, Readonly<DropdownItemProps> & Readonly<{
398
+ onClick?: ((event: MouseEvent | KeyboardEvent) => any) | undefined;
399
+ }>, {
400
+ disabled: boolean;
401
+ danger: boolean;
402
+ preventClose: boolean;
403
+ chevron: boolean;
404
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
405
+ itemRef: unknown;
406
+ }, any>;
407
+
408
+ declare const __VLS_component_28: DefineComponent<DropdownSubTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DropdownSubTriggerProps> & Readonly<{}>, {
409
+ disabled: boolean;
410
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
411
+ triggerRef: HTMLButtonElement;
412
+ }, HTMLButtonElement>;
413
+
414
+ declare const __VLS_component_29: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
415
+ menuRef: HTMLDivElement;
416
+ }, any>;
417
+
418
+ declare const __VLS_component_3: DefineComponent<AccordionTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AccordionTriggerProps> & Readonly<{}>, {
419
+ hideIndicator: boolean;
420
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLHeadingElement>;
421
+
422
+ declare const __VLS_component_30: DefineComponent<EmptyStateProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<EmptyStateProps> & Readonly<{}>, {
423
+ variant: EmptyStateVariant;
424
+ compact: boolean;
425
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
426
+
427
+ declare const __VLS_component_31: DefineComponent<ChoiceChipGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
428
+ "update:modelValue": (value: string | number | (string | number)[] | undefined) => any;
429
+ change: (value: string | number | (string | number)[] | undefined) => any;
430
+ }, string, PublicProps, Readonly<ChoiceChipGroupProps> & Readonly<{
431
+ "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | undefined) => any) | undefined;
432
+ onChange?: ((value: string | number | (string | number)[] | undefined) => any) | undefined;
433
+ }>, {
434
+ type: "single" | "multiple";
435
+ disabled: boolean;
436
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
437
+
438
+ declare const __VLS_component_32: DefineComponent<HeadingProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<HeadingProps> & Readonly<{}>, {
439
+ size: HeadingSize;
440
+ as: HeadingTag;
441
+ align: "left" | "center" | "right";
442
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
443
+
444
+ declare const __VLS_component_33: DefineComponent<InputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
445
+ "update:modelValue": (value: string | number) => any;
446
+ blur: (event: FocusEvent) => any;
447
+ focus: (event: FocusEvent) => any;
448
+ }, string, PublicProps, Readonly<InputProps> & Readonly<{
449
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
450
+ onBlur?: ((event: FocusEvent) => any) | undefined;
451
+ onFocus?: ((event: FocusEvent) => any) | undefined;
452
+ }>, {
453
+ type: "text" | "email" | "password" | "search" | "tel" | "url" | "number";
454
+ size: "xs" | "sm" | "md" | "lg" | "xl";
455
+ disabled: boolean;
456
+ required: boolean;
457
+ loading: boolean;
458
+ block: boolean;
459
+ readonly: boolean;
460
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
461
+
462
+ declare const __VLS_component_34: DefineComponent<ModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
463
+ "update:modelValue": (value: boolean) => any;
464
+ close: () => any;
465
+ }, string, PublicProps, Readonly<ModalProps> & Readonly<{
466
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
467
+ onClose?: (() => any) | undefined;
468
+ }>, {
469
+ modelValue: boolean;
470
+ size: ModalSize;
471
+ persistent: boolean;
472
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
473
+ dialogRef: HTMLDialogElement;
474
+ }, HTMLDialogElement>;
475
+
476
+ declare const __VLS_component_35: DefineComponent<PopoverProps, {
477
+ open: typeof open_2;
478
+ close: typeof close_3;
479
+ toggle: typeof toggle;
480
+ isOpen: Ref<boolean, boolean>;
481
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
482
+ close: () => any;
483
+ open: () => any;
484
+ }, string, PublicProps, Readonly<PopoverProps> & Readonly<{
485
+ onClose?: (() => any) | undefined;
486
+ onOpen?: (() => any) | undefined;
487
+ }>, {
488
+ disabled: boolean;
489
+ width: "auto" | number;
490
+ placement: PopoverPlacement;
491
+ offset: number;
492
+ arrow: boolean;
493
+ closeOnEscape: boolean;
494
+ closeOnClickOutside: boolean;
495
+ lockScroll: boolean;
496
+ trapFocus: boolean;
497
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
498
+ triggerRef: HTMLDivElement;
499
+ popoverRef: HTMLDivElement;
500
+ }, HTMLDivElement>;
501
+
502
+ declare const __VLS_component_36: DefineComponent<SidebarLayoutProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SidebarLayoutProps> & Readonly<{}>, {
503
+ sidebarPosition: "left" | "right";
504
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
505
+
506
+ declare const __VLS_component_37: DefineComponent<SidebarRootProps, {
507
+ toggle: typeof toggle_2;
508
+ collapsed: ComputedRef<boolean>;
509
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
510
+ "update:modelValue": (value: boolean) => any;
511
+ }, string, PublicProps, Readonly<SidebarRootProps> & Readonly<{
512
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
513
+ }>, {
514
+ modelValue: boolean;
515
+ expandedWidth: string;
516
+ collapsedWidth: string;
517
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
518
+
519
+ declare const __VLS_component_38: DefineComponent<SidebarItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SidebarItemProps> & Readonly<{}>, {
520
+ disabled: boolean;
521
+ as: string | Component;
522
+ active: boolean;
523
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
524
+
525
+ declare const __VLS_component_39: DefineComponent<SidebarGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SidebarGroupProps> & Readonly<{}>, {
526
+ showSeparator: boolean;
527
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
528
+
529
+ declare const __VLS_component_4: DefineComponent<AccordionContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AccordionContentProps> & Readonly<{}>, {
530
+ lazy: boolean;
531
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
532
+
533
+ declare const __VLS_component_40: DefineComponent<StepperRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
534
+ "update:modelValue": (value: number) => any;
535
+ }, string, PublicProps, Readonly<StepperRootProps> & Readonly<{
536
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
537
+ }>, {
538
+ modelValue: number;
539
+ linear: boolean;
540
+ orientation: StepperOrientation;
541
+ errorSteps: number[];
542
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
543
+
544
+ declare const __VLS_component_41: DefineComponent<StepperItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StepperItemProps> & Readonly<{}>, {
545
+ disabled: boolean;
546
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
547
+
548
+ declare const __VLS_component_42: DefineComponent<StepperTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StepperTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
549
+
550
+ declare const __VLS_component_43: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
551
+
552
+ declare const __VLS_component_44: DefineComponent<TabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
553
+ "update:modelValue": (value: string | number) => any;
554
+ }, string, PublicProps, Readonly<TabsProps> & Readonly<{
555
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
556
+ }>, {
557
+ variant: "line" | "pill";
558
+ block: boolean;
559
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
560
+ tabListRef: HTMLDivElement;
561
+ }, HTMLDivElement>;
562
+
563
+ declare const __VLS_component_45: DefineComponent<TextareaProps, {
564
+ focus: () => void | undefined;
565
+ blur: () => void | undefined;
566
+ select: () => void | undefined;
567
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
568
+ "update:modelValue": (value: string) => any;
569
+ blur: (event: FocusEvent) => any;
570
+ focus: (event: FocusEvent) => any;
571
+ }, string, PublicProps, Readonly<TextareaProps> & Readonly<{
572
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
573
+ onBlur?: ((event: FocusEvent) => any) | undefined;
574
+ onFocus?: ((event: FocusEvent) => any) | undefined;
575
+ }>, {
576
+ disabled: boolean;
577
+ required: boolean;
578
+ block: boolean;
579
+ readonly: boolean;
580
+ rows: number;
581
+ autosize: boolean;
582
+ showCount: boolean;
583
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
584
+ textareaRef: HTMLTextAreaElement;
585
+ }, HTMLDivElement>;
586
+
587
+ declare const __VLS_component_46: DefineComponent<TextProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TextProps> & Readonly<{}>, {
588
+ size: TextSize;
589
+ as: TextTag;
590
+ align: "left" | "center" | "right" | "justify";
591
+ weight: TextWeight;
592
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
593
+
594
+ declare const __VLS_component_47: DefineComponent<TimelineProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TimelineProps> & Readonly<{}>, {
595
+ align: TimelineAlign;
596
+ lineStyle: TimelineLineStyle;
597
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
598
+
599
+ declare const __VLS_component_48: DefineComponent<TimelineItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TimelineItemProps> & Readonly<{}>, {
600
+ dotColor: TimelineDotColor;
601
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
602
+
603
+ declare const __VLS_component_49: DefineComponent<ToggleButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
604
+ "update:modelValue": (value: boolean) => any;
605
+ change: (value: boolean) => any;
606
+ }, string, PublicProps, Readonly<ToggleButtonProps> & Readonly<{
607
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
608
+ onChange?: ((value: boolean) => any) | undefined;
609
+ }>, {
610
+ size: "sm" | "md" | "lg";
611
+ disabled: boolean;
612
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
613
+
614
+ declare const __VLS_component_5: DefineComponent<BadgeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BadgeProps> & Readonly<{}>, {
615
+ variant: BadgeVariant;
616
+ max: number;
617
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
618
+
619
+ declare const __VLS_component_50: DefineComponent<ToggleGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
620
+ "update:modelValue": (value: string | number | (string | number)[] | undefined) => any;
621
+ change: (value: string | number | (string | number)[] | undefined) => any;
622
+ }, string, PublicProps, Readonly<ToggleGroupProps> & Readonly<{
623
+ "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | undefined) => any) | undefined;
624
+ onChange?: ((value: string | number | (string | number)[] | undefined) => any) | undefined;
625
+ }>, {
626
+ type: "single" | "multiple";
627
+ size: "sm" | "md" | "lg";
628
+ disabled: boolean;
629
+ orientation: "horizontal" | "vertical";
630
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
631
+
632
+ declare const __VLS_component_51: DefineComponent<TooltipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProps> & Readonly<{}>, {
633
+ disabled: boolean;
634
+ delay: number;
635
+ placement: Placement;
636
+ offset: number;
637
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
638
+ triggerRef: HTMLSpanElement;
639
+ contentRef: HTMLDivElement;
640
+ }, any>;
641
+
642
+ declare const __VLS_component_52: DefineComponent<TreeViewProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
643
+ "update:modelValue": (value: string | string[] | undefined) => any;
644
+ "update:expandedIds": (value: string[]) => any;
645
+ }, string, PublicProps, Readonly<TreeViewProps> & Readonly<{
646
+ "onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
647
+ "onUpdate:expandedIds"?: ((value: string[]) => any) | undefined;
648
+ }>, {
649
+ expandedIds: string[];
650
+ multiSelect: boolean;
651
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
652
+
653
+ declare const __VLS_component_53: DefineComponent<TreeViewItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TreeViewItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
654
+
655
+ declare const __VLS_component_54: DefineComponent<ContainerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ContainerProps> & Readonly<{}>, {
656
+ as: string;
657
+ fluid: boolean;
658
+ centered: boolean;
659
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
660
+
661
+ declare const __VLS_component_55: DefineComponent<StackProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StackProps> & Readonly<{}>, {
662
+ as: string;
663
+ align: "start" | "center" | "end" | "stretch" | "baseline";
664
+ justify: "start" | "center" | "end" | "between" | "around" | "evenly";
665
+ inline: boolean;
666
+ wrap: boolean;
667
+ direction: "row" | "column" | "row-reverse" | "column-reverse";
668
+ gap: SpacingToken;
669
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
670
+
671
+ declare const __VLS_component_56: DefineComponent<GridProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<GridProps> & Readonly<{}>, {
672
+ as: string;
673
+ columns: ColumnCount | ResponsiveColumns;
674
+ gap: SpacingToken;
675
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
676
+
677
+ declare const __VLS_component_57: DefineComponent<GridItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<GridItemProps> & Readonly<{}>, {
678
+ span: SpanCount | ResponsiveSpan;
679
+ as: string;
680
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
681
+
682
+ declare const __VLS_component_6: DefineComponent<BadgeContainerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BadgeContainerProps> & Readonly<{}>, {
683
+ position: BadgePosition;
684
+ offsetX: string;
685
+ offsetY: string;
686
+ cutout: boolean;
687
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
688
+
689
+ declare const __VLS_component_7: DefineComponent<BreadcrumbRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BreadcrumbRootProps> & Readonly<{}>, {
690
+ separator: Component | string | (() => VNode);
691
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
692
+
693
+ declare const __VLS_component_8: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLOListElement>;
694
+
695
+ declare const __VLS_component_9: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLIElement>;
696
+
697
+ declare function __VLS_template(): {
698
+ attrs: Partial<{}>;
699
+ slots: {
700
+ default?(_: {}): any;
701
+ };
702
+ refs: {};
703
+ rootEl: HTMLDivElement;
704
+ };
705
+
706
+ declare function __VLS_template_10(): {
707
+ attrs: Partial<{}>;
708
+ slots: {
709
+ default?(_: {}): any;
710
+ };
711
+ refs: {};
712
+ rootEl: any;
713
+ };
714
+
715
+ declare function __VLS_template_11(): {
716
+ attrs: Partial<{}>;
717
+ slots: {
718
+ default?(_: {}): any;
719
+ };
720
+ refs: {};
721
+ rootEl: HTMLSpanElement;
722
+ };
723
+
724
+ declare function __VLS_template_12(): {
725
+ attrs: Partial<{}>;
726
+ slots: Readonly<{
727
+ default(): unknown;
728
+ }> & {
729
+ default(): unknown;
730
+ };
731
+ refs: {};
732
+ rootEl: HTMLLIElement;
733
+ };
734
+
735
+ declare function __VLS_template_13(): {
736
+ attrs: Partial<{}>;
737
+ slots: {
738
+ default?(_: {}): any;
739
+ };
740
+ refs: {};
741
+ rootEl: HTMLLIElement;
742
+ };
743
+
744
+ declare function __VLS_template_14(): {
745
+ attrs: Partial<{}>;
746
+ slots: {
747
+ default?(_: {}): any;
748
+ };
749
+ refs: {};
750
+ rootEl: any;
751
+ };
752
+
753
+ declare function __VLS_template_15(): {
754
+ attrs: Partial<{}>;
755
+ slots: Readonly<{
756
+ default?(): unknown;
757
+ title?(): unknown;
758
+ icon?(): unknown;
759
+ action?(): unknown;
760
+ }> & {
761
+ default?(): unknown;
762
+ title?(): unknown;
763
+ icon?(): unknown;
764
+ action?(): unknown;
765
+ };
766
+ refs: {};
767
+ rootEl: HTMLDivElement;
768
+ };
769
+
770
+ declare function __VLS_template_16(): {
771
+ attrs: Partial<{}>;
772
+ slots: {
773
+ default?(_: {}): any;
774
+ };
775
+ refs: {};
776
+ rootEl: any;
777
+ };
778
+
779
+ declare function __VLS_template_17(): {
780
+ attrs: Partial<{}>;
781
+ slots: {
782
+ title?(_: {}): any;
783
+ subtitle?(_: {}): any;
784
+ default?(_: {}): any;
785
+ actions?(_: {}): any;
786
+ };
787
+ refs: {};
788
+ rootEl: HTMLDivElement;
789
+ };
790
+
791
+ declare function __VLS_template_18(): {
792
+ attrs: Partial<{}>;
793
+ slots: {
794
+ default?(_: {}): any;
795
+ };
796
+ refs: {};
797
+ rootEl: HTMLDivElement;
798
+ };
799
+
800
+ declare function __VLS_template_19(): {
801
+ attrs: Partial<{}>;
802
+ slots: {
803
+ default?(_: {}): any;
804
+ };
805
+ refs: {};
806
+ rootEl: HTMLDivElement;
807
+ };
808
+
809
+ declare function __VLS_template_2(): {
810
+ attrs: Partial<{}>;
811
+ slots: {
812
+ default?(_: {}): any;
813
+ };
814
+ refs: {};
815
+ rootEl: HTMLDivElement;
816
+ };
817
+
818
+ declare function __VLS_template_20(): {
819
+ attrs: Partial<{}>;
820
+ slots: Readonly<{
821
+ legend?: (props: {
822
+ items: LegendItem[];
823
+ toggle: (index: number) => void;
824
+ }) => unknown;
825
+ tooltip?: (props: {
826
+ data: TooltipData | null;
827
+ }) => unknown;
828
+ fallback?: () => unknown;
829
+ }> & {
830
+ legend?: (props: {
831
+ items: LegendItem[];
832
+ toggle: (index: number) => void;
833
+ }) => unknown;
834
+ tooltip?: (props: {
835
+ data: TooltipData | null;
836
+ }) => unknown;
837
+ fallback?: () => unknown;
838
+ };
839
+ refs: {
840
+ containerRef: HTMLDivElement;
841
+ canvasRef: HTMLCanvasElement;
842
+ };
843
+ rootEl: HTMLDivElement;
844
+ };
845
+
846
+ declare function __VLS_template_21(): {
847
+ attrs: Partial<{}>;
848
+ slots: Readonly<{
849
+ legend?: (props: {
850
+ items: LegendItem[];
851
+ toggle: (index: number) => void;
852
+ }) => unknown;
853
+ tooltip?: (props: {
854
+ data: TooltipData | null;
855
+ }) => unknown;
856
+ }> & {
857
+ legend?: (props: {
858
+ items: LegendItem[];
859
+ toggle: (index: number) => void;
860
+ }) => unknown;
861
+ tooltip?: (props: {
862
+ data: TooltipData | null;
863
+ }) => unknown;
864
+ };
865
+ refs: {};
866
+ rootEl: HTMLDivElement;
867
+ };
868
+
869
+ declare function __VLS_template_22(): {
870
+ attrs: Partial<{}>;
871
+ slots: Readonly<{
872
+ legend?: (props: {
873
+ items: LegendItem[];
874
+ toggle: (index: number) => void;
875
+ }) => unknown;
876
+ tooltip?: (props: {
877
+ data: TooltipData | null;
878
+ }) => unknown;
879
+ }> & {
880
+ legend?: (props: {
881
+ items: LegendItem[];
882
+ toggle: (index: number) => void;
883
+ }) => unknown;
884
+ tooltip?: (props: {
885
+ data: TooltipData | null;
886
+ }) => unknown;
887
+ };
888
+ refs: {};
889
+ rootEl: HTMLDivElement;
890
+ };
891
+
892
+ declare function __VLS_template_23(): {
893
+ attrs: Partial<{}>;
894
+ slots: Readonly<{
895
+ legend?: (props: {
896
+ items: LegendItem[];
897
+ toggle: (index: number) => void;
898
+ }) => unknown;
899
+ tooltip?: (props: {
900
+ data: TooltipData | null;
901
+ }) => unknown;
902
+ center?: () => unknown;
903
+ }> & {
904
+ legend?: (props: {
905
+ items: LegendItem[];
906
+ toggle: (index: number) => void;
907
+ }) => unknown;
908
+ tooltip?: (props: {
909
+ data: TooltipData | null;
910
+ }) => unknown;
911
+ center?: () => unknown;
912
+ };
913
+ refs: {};
914
+ rootEl: HTMLDivElement;
915
+ };
916
+
917
+ declare function __VLS_template_24(): {
918
+ attrs: Partial<{}>;
919
+ slots: Partial<Record<`header-${string}`, (_: {
920
+ column: DataTableColumn;
921
+ }) => any>> & Partial<Record<`cell-${string}`, (_: {
922
+ value: unknown;
923
+ row: Record<string, unknown>;
924
+ column: DataTableColumn;
925
+ index: number;
926
+ }) => any>> & {
927
+ toolbar?(_: {}): any;
928
+ empty?(_: {}): any;
929
+ expanded?(_: {
930
+ row: Record<string, unknown>;
931
+ index: number;
932
+ }): any;
933
+ };
934
+ refs: {
935
+ tableRef: HTMLDivElement;
936
+ };
937
+ rootEl: HTMLDivElement;
938
+ };
939
+
940
+ declare function __VLS_template_25(): {
941
+ attrs: Partial<{}>;
942
+ slots: {
943
+ sidebar?(_: {
944
+ applyPreset: typeof applyPreset;
945
+ }): any;
946
+ sidebar?(_: {
947
+ applyPreset: typeof applyPreset;
948
+ }): any;
949
+ };
950
+ refs: {
951
+ popoverRef: ({
952
+ $: ComponentInternalInstance;
953
+ $data: {};
954
+ $props: {
955
+ readonly placement?: PopoverPlacement | undefined;
956
+ readonly offset?: number | undefined;
957
+ readonly arrow?: boolean | undefined;
958
+ readonly disabled?: boolean | undefined;
959
+ readonly width?: "auto" | number | undefined;
960
+ readonly closeOnEscape?: boolean | undefined;
961
+ readonly closeOnClickOutside?: boolean | undefined;
962
+ readonly lockScroll?: boolean | undefined;
963
+ readonly trapFocus?: boolean | undefined;
964
+ readonly onClose?: (() => any) | undefined;
965
+ readonly onOpen?: (() => any) | undefined;
966
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
967
+ $attrs: {
968
+ [x: string]: unknown;
969
+ };
970
+ $refs: {
971
+ [x: string]: unknown;
972
+ } & {
973
+ triggerRef: HTMLDivElement;
974
+ popoverRef: HTMLDivElement;
975
+ };
976
+ $slots: Readonly<{
977
+ [name: string]: Slot<any> | undefined;
978
+ }>;
979
+ $root: ComponentPublicInstance | null;
980
+ $parent: ComponentPublicInstance | null;
981
+ $host: Element | null;
982
+ $emit: ((event: "close") => void) & ((event: "open") => void);
983
+ $el: HTMLDivElement;
984
+ $options: ComponentOptionsBase<Readonly<PopoverProps> & Readonly<{
985
+ onClose?: (() => any) | undefined;
986
+ onOpen?: (() => any) | undefined;
987
+ }>, {
988
+ open: () => void;
989
+ close: () => void;
990
+ toggle: () => void;
991
+ isOpen: Ref<boolean, boolean>;
992
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
993
+ close: () => any;
994
+ open: () => any;
995
+ }, string, {
996
+ disabled: boolean;
997
+ width: "auto" | number;
998
+ placement: PopoverPlacement;
999
+ offset: number;
1000
+ arrow: boolean;
1001
+ closeOnEscape: boolean;
1002
+ closeOnClickOutside: boolean;
1003
+ lockScroll: boolean;
1004
+ trapFocus: boolean;
1005
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1006
+ beforeCreate?: (() => void) | (() => void)[];
1007
+ created?: (() => void) | (() => void)[];
1008
+ beforeMount?: (() => void) | (() => void)[];
1009
+ mounted?: (() => void) | (() => void)[];
1010
+ beforeUpdate?: (() => void) | (() => void)[];
1011
+ updated?: (() => void) | (() => void)[];
1012
+ activated?: (() => void) | (() => void)[];
1013
+ deactivated?: (() => void) | (() => void)[];
1014
+ beforeDestroy?: (() => void) | (() => void)[];
1015
+ beforeUnmount?: (() => void) | (() => void)[];
1016
+ destroyed?: (() => void) | (() => void)[];
1017
+ unmounted?: (() => void) | (() => void)[];
1018
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1019
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1020
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
1021
+ };
1022
+ $forceUpdate: () => void;
1023
+ $nextTick: typeof nextTick;
1024
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
1025
+ } & Readonly<{
1026
+ disabled: boolean;
1027
+ width: "auto" | number;
1028
+ placement: PopoverPlacement;
1029
+ offset: number;
1030
+ arrow: boolean;
1031
+ closeOnEscape: boolean;
1032
+ closeOnClickOutside: boolean;
1033
+ lockScroll: boolean;
1034
+ trapFocus: boolean;
1035
+ }> & Omit<Readonly<PopoverProps> & Readonly<{
1036
+ onClose?: (() => any) | undefined;
1037
+ onOpen?: (() => any) | undefined;
1038
+ }>, "close" | "toggle" | "isOpen" | "open" | ("disabled" | "width" | "placement" | "offset" | "arrow" | "closeOnEscape" | "closeOnClickOutside" | "lockScroll" | "trapFocus")> & ShallowUnwrapRef< {
1039
+ open: () => void;
1040
+ close: () => void;
1041
+ toggle: () => void;
1042
+ isOpen: Ref<boolean, boolean>;
1043
+ }> & {} & ComponentCustomProperties & {} & {
1044
+ $slots: {
1045
+ trigger?(_: {
1046
+ open: boolean;
1047
+ toggle: () => void;
1048
+ close: () => void;
1049
+ }): any;
1050
+ default?(_: {
1051
+ close: () => void;
1052
+ }): any;
1053
+ };
1054
+ }) | null;
1055
+ triggerRef: HTMLDivElement;
1056
+ inputRef: HTMLInputElement;
1057
+ calendarRef: HTMLDivElement;
1058
+ };
1059
+ rootEl: HTMLDivElement;
1060
+ };
1061
+
1062
+ declare function __VLS_template_26(): {
1063
+ attrs: Partial<{}>;
1064
+ slots: {
1065
+ header?(_: {}): any;
1066
+ default?(_: {}): any;
1067
+ footer?(_: {
1068
+ close: typeof close_2;
1069
+ }): any;
1070
+ };
1071
+ refs: {
1072
+ drawerRef: HTMLDivElement;
1073
+ };
1074
+ rootEl: any;
1075
+ };
1076
+
1077
+ declare function __VLS_template_27(): {
1078
+ attrs: Partial<{}>;
1079
+ slots: {
1080
+ default?(_: {}): any;
1081
+ };
1082
+ refs: {
1083
+ itemRef: unknown;
1084
+ };
1085
+ rootEl: any;
1086
+ };
1087
+
1088
+ declare function __VLS_template_28(): {
1089
+ attrs: Partial<{}>;
1090
+ slots: {
1091
+ default?(_: {}): any;
1092
+ };
1093
+ refs: {
1094
+ triggerRef: HTMLButtonElement;
1095
+ };
1096
+ rootEl: HTMLButtonElement;
1097
+ };
1098
+
1099
+ declare function __VLS_template_29(): {
1100
+ attrs: Partial<{}>;
1101
+ slots: {
1102
+ default?(_: {}): any;
1103
+ };
1104
+ refs: {
1105
+ menuRef: HTMLDivElement;
1106
+ };
1107
+ rootEl: any;
1108
+ };
1109
+
1110
+ declare function __VLS_template_3(): {
1111
+ attrs: Partial<{}>;
1112
+ slots: {
1113
+ default?(_: {}): any;
1114
+ icon?(_: {
1115
+ isOpen: boolean;
1116
+ }): any;
1117
+ };
1118
+ refs: {};
1119
+ rootEl: HTMLHeadingElement;
1120
+ };
1121
+
1122
+ declare function __VLS_template_30(): {
1123
+ attrs: Partial<{}>;
1124
+ slots: {
1125
+ default?(_: {}): any;
1126
+ };
1127
+ refs: {};
1128
+ rootEl: HTMLDivElement;
1129
+ };
1130
+
1131
+ declare function __VLS_template_31(): {
1132
+ attrs: Partial<{}>;
1133
+ slots: {
1134
+ default?(_: {}): any;
1135
+ };
1136
+ refs: {};
1137
+ rootEl: HTMLDivElement;
1138
+ };
1139
+
1140
+ declare function __VLS_template_32(): {
1141
+ attrs: Partial<{}>;
1142
+ slots: {
1143
+ default?(_: {}): any;
1144
+ };
1145
+ refs: {};
1146
+ rootEl: any;
1147
+ };
1148
+
1149
+ declare function __VLS_template_33(): {
1150
+ attrs: Partial<{}>;
1151
+ slots: {
1152
+ left?(_: {}): any;
1153
+ right?(_: {}): any;
1154
+ };
1155
+ refs: {};
1156
+ rootEl: HTMLDivElement;
1157
+ };
1158
+
1159
+ declare function __VLS_template_34(): {
1160
+ attrs: Partial<{}>;
1161
+ slots: {
1162
+ header?(_: {}): any;
1163
+ default?(_: {}): any;
1164
+ footer?(_: {}): any;
1165
+ };
1166
+ refs: {
1167
+ dialogRef: HTMLDialogElement;
1168
+ };
1169
+ rootEl: HTMLDialogElement;
1170
+ };
1171
+
1172
+ declare function __VLS_template_35(): {
1173
+ attrs: Partial<{}>;
1174
+ slots: {
1175
+ trigger?(_: {
1176
+ open: boolean;
1177
+ toggle: typeof toggle;
1178
+ close: typeof close_3;
1179
+ }): any;
1180
+ default?(_: {
1181
+ close: typeof close_3;
1182
+ }): any;
1183
+ };
1184
+ refs: {
1185
+ triggerRef: HTMLDivElement;
1186
+ popoverRef: HTMLDivElement;
1187
+ };
1188
+ rootEl: HTMLDivElement;
1189
+ };
1190
+
1191
+ declare function __VLS_template_36(): {
1192
+ attrs: Partial<{}>;
1193
+ slots: {
1194
+ sidebar?(_: {}): any;
1195
+ default?(_: {}): any;
1196
+ };
1197
+ refs: {};
1198
+ rootEl: HTMLDivElement;
1199
+ };
1200
+
1201
+ declare function __VLS_template_37(): {
1202
+ attrs: Partial<{}>;
1203
+ slots: {
1204
+ header?(_: {}): any;
1205
+ default?(_: {}): any;
1206
+ footer?(_: {}): any;
1207
+ };
1208
+ refs: {};
1209
+ rootEl: HTMLElement;
1210
+ };
1211
+
1212
+ declare function __VLS_template_38(): {
1213
+ attrs: Partial<{}>;
1214
+ slots: {
1215
+ badge?(_: {}): any;
1216
+ };
1217
+ refs: {};
1218
+ rootEl: any;
1219
+ };
1220
+
1221
+ declare function __VLS_template_39(): {
1222
+ attrs: Partial<{}>;
1223
+ slots: {
1224
+ default?(_: {}): any;
1225
+ };
1226
+ refs: {};
1227
+ rootEl: HTMLDivElement;
1228
+ };
1229
+
1230
+ declare function __VLS_template_4(): {
1231
+ attrs: Partial<{}>;
1232
+ slots: {
1233
+ default?(_: {}): any;
1234
+ default?(_: {}): any;
1235
+ };
1236
+ refs: {};
1237
+ rootEl: any;
1238
+ };
1239
+
1240
+ declare function __VLS_template_40(): {
1241
+ attrs: Partial<{}>;
1242
+ slots: {
1243
+ default?(_: {}): any;
1244
+ };
1245
+ refs: {};
1246
+ rootEl: HTMLDivElement;
1247
+ };
1248
+
1249
+ declare function __VLS_template_41(): {
1250
+ attrs: Partial<{}>;
1251
+ slots: {
1252
+ default?(_: {}): any;
1253
+ };
1254
+ refs: {};
1255
+ rootEl: HTMLDivElement;
1256
+ };
1257
+
1258
+ declare function __VLS_template_42(): {
1259
+ attrs: Partial<{}>;
1260
+ slots: {
1261
+ indicator?(_: {}): any;
1262
+ default?(_: {}): any;
1263
+ };
1264
+ refs: {};
1265
+ rootEl: HTMLButtonElement;
1266
+ };
1267
+
1268
+ declare function __VLS_template_43(): {
1269
+ attrs: Partial<{}>;
1270
+ slots: {
1271
+ default?(_: {}): any;
1272
+ };
1273
+ refs: {};
1274
+ rootEl: HTMLDivElement;
1275
+ };
1276
+
1277
+ declare function __VLS_template_44(): {
1278
+ attrs: Partial<{}>;
1279
+ slots: Partial<Record<NonNullable<string | number>, (_: {}) => any>>;
1280
+ refs: {
1281
+ tabListRef: HTMLDivElement;
1282
+ };
1283
+ rootEl: HTMLDivElement;
1284
+ };
1285
+
1286
+ declare function __VLS_template_45(): {
1287
+ attrs: Partial<{}>;
1288
+ slots: {
1289
+ left?(_: {}): any;
1290
+ };
1291
+ refs: {
1292
+ textareaRef: HTMLTextAreaElement;
1293
+ };
1294
+ rootEl: HTMLDivElement;
1295
+ };
1296
+
1297
+ declare function __VLS_template_46(): {
1298
+ attrs: Partial<{}>;
1299
+ slots: {
1300
+ default?(_: {}): any;
1301
+ };
1302
+ refs: {};
1303
+ rootEl: any;
1304
+ };
1305
+
1306
+ declare function __VLS_template_47(): {
1307
+ attrs: Partial<{}>;
1308
+ slots: {
1309
+ default?(_: {}): any;
1310
+ };
1311
+ refs: {};
1312
+ rootEl: HTMLDivElement;
1313
+ };
1314
+
1315
+ declare function __VLS_template_48(): {
1316
+ attrs: Partial<{}>;
1317
+ slots: {
1318
+ dot?(_: {}): any;
1319
+ default?(_: {}): any;
1320
+ opposite?(_: {}): any;
1321
+ };
1322
+ refs: {};
1323
+ rootEl: HTMLDivElement;
1324
+ };
1325
+
1326
+ declare function __VLS_template_49(): {
1327
+ attrs: Partial<{}>;
1328
+ slots: {
1329
+ default?(_: {}): any;
1330
+ };
1331
+ refs: {};
1332
+ rootEl: HTMLButtonElement;
1333
+ };
1334
+
1335
+ declare function __VLS_template_5(): {
1336
+ attrs: Partial<{}>;
1337
+ slots: {
1338
+ default?(_: {}): any;
1339
+ };
1340
+ refs: {};
1341
+ rootEl: HTMLSpanElement;
1342
+ };
1343
+
1344
+ declare function __VLS_template_50(): {
1345
+ attrs: Partial<{}>;
1346
+ slots: {
1347
+ default?(_: {}): any;
1348
+ };
1349
+ refs: {};
1350
+ rootEl: HTMLDivElement;
1351
+ };
1352
+
1353
+ declare function __VLS_template_51(): {
1354
+ attrs: Partial<{}>;
1355
+ slots: {
1356
+ default?(_: {}): any;
1357
+ };
1358
+ refs: {
1359
+ triggerRef: HTMLSpanElement;
1360
+ contentRef: HTMLDivElement;
1361
+ };
1362
+ rootEl: any;
1363
+ };
1364
+
1365
+ declare function __VLS_template_52(): {
1366
+ attrs: Partial<{}>;
1367
+ slots: {
1368
+ default?(_: {}): any;
1369
+ };
1370
+ refs: {};
1371
+ rootEl: HTMLDivElement;
1372
+ };
1373
+
1374
+ declare function __VLS_template_53(): {
1375
+ attrs: Partial<{}>;
1376
+ slots: {
1377
+ default?(_: {}): any;
1378
+ };
1379
+ refs: {};
1380
+ rootEl: HTMLDivElement;
1381
+ };
1382
+
1383
+ declare function __VLS_template_54(): {
1384
+ attrs: Partial<{}>;
1385
+ slots: {
1386
+ default?(_: {}): any;
1387
+ };
1388
+ refs: {};
1389
+ rootEl: any;
1390
+ };
1391
+
1392
+ declare function __VLS_template_55(): {
1393
+ attrs: Partial<{}>;
1394
+ slots: {
1395
+ default?(_: {}): any;
1396
+ };
1397
+ refs: {};
1398
+ rootEl: any;
1399
+ };
1400
+
1401
+ declare function __VLS_template_56(): {
1402
+ attrs: Partial<{}>;
1403
+ slots: {
1404
+ default?(_: {}): any;
1405
+ };
1406
+ refs: {};
1407
+ rootEl: any;
1408
+ };
1409
+
1410
+ declare function __VLS_template_57(): {
1411
+ attrs: Partial<{}>;
1412
+ slots: {
1413
+ default?(_: {}): any;
1414
+ };
1415
+ refs: {};
1416
+ rootEl: any;
1417
+ };
1418
+
1419
+ declare function __VLS_template_6(): {
1420
+ attrs: Partial<{}>;
1421
+ slots: {
1422
+ default?(_: {}): any;
1423
+ badge?(_: {}): any;
1424
+ };
1425
+ refs: {};
1426
+ rootEl: HTMLSpanElement;
1427
+ };
1428
+
1429
+ declare function __VLS_template_7(): {
1430
+ attrs: Partial<{}>;
1431
+ slots: Readonly<{
1432
+ default?(): unknown;
1433
+ separator?(): unknown;
1434
+ }> & {
1435
+ default?(): unknown;
1436
+ separator?(): unknown;
1437
+ };
1438
+ refs: {};
1439
+ rootEl: HTMLElement;
1440
+ };
1441
+
1442
+ declare function __VLS_template_8(): {
1443
+ attrs: Partial<{}>;
1444
+ slots: {
1445
+ default?(_: {}): any;
1446
+ };
1447
+ refs: {};
1448
+ rootEl: HTMLOListElement;
1449
+ };
1450
+
1451
+ declare function __VLS_template_9(): {
1452
+ attrs: Partial<{}>;
1453
+ slots: {
1454
+ default?(_: {}): any;
1455
+ };
1456
+ refs: {};
1457
+ rootEl: HTMLLIElement;
1458
+ };
1459
+
1460
+ declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
1461
+
1462
+ declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
1463
+
1464
+ declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
1465
+
1466
+ declare type __VLS_TemplateResult_12 = ReturnType<typeof __VLS_template_12>;
1467
+
1468
+ declare type __VLS_TemplateResult_13 = ReturnType<typeof __VLS_template_13>;
1469
+
1470
+ declare type __VLS_TemplateResult_14 = ReturnType<typeof __VLS_template_14>;
1471
+
1472
+ declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
1473
+
1474
+ declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
1475
+
1476
+ declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
1477
+
1478
+ declare type __VLS_TemplateResult_18 = ReturnType<typeof __VLS_template_18>;
1479
+
1480
+ declare type __VLS_TemplateResult_19 = ReturnType<typeof __VLS_template_19>;
1481
+
1482
+ declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
1483
+
1484
+ declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
1485
+
1486
+ declare type __VLS_TemplateResult_21 = ReturnType<typeof __VLS_template_21>;
1487
+
1488
+ declare type __VLS_TemplateResult_22 = ReturnType<typeof __VLS_template_22>;
1489
+
1490
+ declare type __VLS_TemplateResult_23 = ReturnType<typeof __VLS_template_23>;
1491
+
1492
+ declare type __VLS_TemplateResult_24 = ReturnType<typeof __VLS_template_24>;
1493
+
1494
+ declare type __VLS_TemplateResult_25 = ReturnType<typeof __VLS_template_25>;
1495
+
1496
+ declare type __VLS_TemplateResult_26 = ReturnType<typeof __VLS_template_26>;
1497
+
1498
+ declare type __VLS_TemplateResult_27 = ReturnType<typeof __VLS_template_27>;
1499
+
1500
+ declare type __VLS_TemplateResult_28 = ReturnType<typeof __VLS_template_28>;
1501
+
1502
+ declare type __VLS_TemplateResult_29 = ReturnType<typeof __VLS_template_29>;
1503
+
1504
+ declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
1505
+
1506
+ declare type __VLS_TemplateResult_30 = ReturnType<typeof __VLS_template_30>;
1507
+
1508
+ declare type __VLS_TemplateResult_31 = ReturnType<typeof __VLS_template_31>;
1509
+
1510
+ declare type __VLS_TemplateResult_32 = ReturnType<typeof __VLS_template_32>;
1511
+
1512
+ declare type __VLS_TemplateResult_33 = ReturnType<typeof __VLS_template_33>;
1513
+
1514
+ declare type __VLS_TemplateResult_34 = ReturnType<typeof __VLS_template_34>;
1515
+
1516
+ declare type __VLS_TemplateResult_35 = ReturnType<typeof __VLS_template_35>;
1517
+
1518
+ declare type __VLS_TemplateResult_36 = ReturnType<typeof __VLS_template_36>;
1519
+
1520
+ declare type __VLS_TemplateResult_37 = ReturnType<typeof __VLS_template_37>;
1521
+
1522
+ declare type __VLS_TemplateResult_38 = ReturnType<typeof __VLS_template_38>;
1523
+
1524
+ declare type __VLS_TemplateResult_39 = ReturnType<typeof __VLS_template_39>;
1525
+
1526
+ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
1527
+
1528
+ declare type __VLS_TemplateResult_40 = ReturnType<typeof __VLS_template_40>;
1529
+
1530
+ declare type __VLS_TemplateResult_41 = ReturnType<typeof __VLS_template_41>;
1531
+
1532
+ declare type __VLS_TemplateResult_42 = ReturnType<typeof __VLS_template_42>;
1533
+
1534
+ declare type __VLS_TemplateResult_43 = ReturnType<typeof __VLS_template_43>;
1535
+
1536
+ declare type __VLS_TemplateResult_44 = ReturnType<typeof __VLS_template_44>;
1537
+
1538
+ declare type __VLS_TemplateResult_45 = ReturnType<typeof __VLS_template_45>;
1539
+
1540
+ declare type __VLS_TemplateResult_46 = ReturnType<typeof __VLS_template_46>;
1541
+
1542
+ declare type __VLS_TemplateResult_47 = ReturnType<typeof __VLS_template_47>;
1543
+
1544
+ declare type __VLS_TemplateResult_48 = ReturnType<typeof __VLS_template_48>;
1545
+
1546
+ declare type __VLS_TemplateResult_49 = ReturnType<typeof __VLS_template_49>;
1547
+
1548
+ declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
1549
+
1550
+ declare type __VLS_TemplateResult_50 = ReturnType<typeof __VLS_template_50>;
1551
+
1552
+ declare type __VLS_TemplateResult_51 = ReturnType<typeof __VLS_template_51>;
1553
+
1554
+ declare type __VLS_TemplateResult_52 = ReturnType<typeof __VLS_template_52>;
1555
+
1556
+ declare type __VLS_TemplateResult_53 = ReturnType<typeof __VLS_template_53>;
1557
+
1558
+ declare type __VLS_TemplateResult_54 = ReturnType<typeof __VLS_template_54>;
1559
+
1560
+ declare type __VLS_TemplateResult_55 = ReturnType<typeof __VLS_template_55>;
1561
+
1562
+ declare type __VLS_TemplateResult_56 = ReturnType<typeof __VLS_template_56>;
1563
+
1564
+ declare type __VLS_TemplateResult_57 = ReturnType<typeof __VLS_template_57>;
1565
+
1566
+ declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
1567
+
1568
+ declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
1569
+
1570
+ declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
1571
+
1572
+ declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
1573
+
1574
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
1575
+ new (): {
1576
+ $slots: S;
1577
+ };
1578
+ };
1579
+
1580
+ declare type __VLS_WithTemplateSlots_10<T, S> = T & {
1581
+ new (): {
1582
+ $slots: S;
1583
+ };
1584
+ };
1585
+
1586
+ declare type __VLS_WithTemplateSlots_11<T, S> = T & {
1587
+ new (): {
1588
+ $slots: S;
1589
+ };
1590
+ };
1591
+
1592
+ declare type __VLS_WithTemplateSlots_12<T, S> = T & {
1593
+ new (): {
1594
+ $slots: S;
1595
+ };
1596
+ };
1597
+
1598
+ declare type __VLS_WithTemplateSlots_13<T, S> = T & {
1599
+ new (): {
1600
+ $slots: S;
1601
+ };
1602
+ };
1603
+
1604
+ declare type __VLS_WithTemplateSlots_14<T, S> = T & {
1605
+ new (): {
1606
+ $slots: S;
1607
+ };
1608
+ };
1609
+
1610
+ declare type __VLS_WithTemplateSlots_15<T, S> = T & {
1611
+ new (): {
1612
+ $slots: S;
1613
+ };
1614
+ };
1615
+
1616
+ declare type __VLS_WithTemplateSlots_16<T, S> = T & {
1617
+ new (): {
1618
+ $slots: S;
1619
+ };
1620
+ };
1621
+
1622
+ declare type __VLS_WithTemplateSlots_17<T, S> = T & {
1623
+ new (): {
1624
+ $slots: S;
1625
+ };
1626
+ };
1627
+
1628
+ declare type __VLS_WithTemplateSlots_18<T, S> = T & {
1629
+ new (): {
1630
+ $slots: S;
1631
+ };
1632
+ };
1633
+
1634
+ declare type __VLS_WithTemplateSlots_19<T, S> = T & {
1635
+ new (): {
1636
+ $slots: S;
1637
+ };
1638
+ };
1639
+
1640
+ declare type __VLS_WithTemplateSlots_2<T, S> = T & {
1641
+ new (): {
1642
+ $slots: S;
1643
+ };
1644
+ };
1645
+
1646
+ declare type __VLS_WithTemplateSlots_20<T, S> = T & {
1647
+ new (): {
1648
+ $slots: S;
1649
+ };
1650
+ };
1651
+
1652
+ declare type __VLS_WithTemplateSlots_21<T, S> = T & {
1653
+ new (): {
1654
+ $slots: S;
1655
+ };
1656
+ };
1657
+
1658
+ declare type __VLS_WithTemplateSlots_22<T, S> = T & {
1659
+ new (): {
1660
+ $slots: S;
1661
+ };
1662
+ };
1663
+
1664
+ declare type __VLS_WithTemplateSlots_23<T, S> = T & {
1665
+ new (): {
1666
+ $slots: S;
1667
+ };
1668
+ };
1669
+
1670
+ declare type __VLS_WithTemplateSlots_24<T, S> = T & {
1671
+ new (): {
1672
+ $slots: S;
1673
+ };
1674
+ };
1675
+
1676
+ declare type __VLS_WithTemplateSlots_25<T, S> = T & {
1677
+ new (): {
1678
+ $slots: S;
1679
+ };
1680
+ };
1681
+
1682
+ declare type __VLS_WithTemplateSlots_26<T, S> = T & {
1683
+ new (): {
1684
+ $slots: S;
1685
+ };
1686
+ };
1687
+
1688
+ declare type __VLS_WithTemplateSlots_27<T, S> = T & {
1689
+ new (): {
1690
+ $slots: S;
1691
+ };
1692
+ };
1693
+
1694
+ declare type __VLS_WithTemplateSlots_28<T, S> = T & {
1695
+ new (): {
1696
+ $slots: S;
1697
+ };
1698
+ };
1699
+
1700
+ declare type __VLS_WithTemplateSlots_29<T, S> = T & {
1701
+ new (): {
1702
+ $slots: S;
1703
+ };
1704
+ };
1705
+
1706
+ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
1707
+ new (): {
1708
+ $slots: S;
1709
+ };
1710
+ };
1711
+
1712
+ declare type __VLS_WithTemplateSlots_30<T, S> = T & {
1713
+ new (): {
1714
+ $slots: S;
1715
+ };
1716
+ };
1717
+
1718
+ declare type __VLS_WithTemplateSlots_31<T, S> = T & {
1719
+ new (): {
1720
+ $slots: S;
1721
+ };
1722
+ };
1723
+
1724
+ declare type __VLS_WithTemplateSlots_32<T, S> = T & {
1725
+ new (): {
1726
+ $slots: S;
1727
+ };
1728
+ };
1729
+
1730
+ declare type __VLS_WithTemplateSlots_33<T, S> = T & {
1731
+ new (): {
1732
+ $slots: S;
1733
+ };
1734
+ };
1735
+
1736
+ declare type __VLS_WithTemplateSlots_34<T, S> = T & {
1737
+ new (): {
1738
+ $slots: S;
1739
+ };
1740
+ };
1741
+
1742
+ declare type __VLS_WithTemplateSlots_35<T, S> = T & {
1743
+ new (): {
1744
+ $slots: S;
1745
+ };
1746
+ };
1747
+
1748
+ declare type __VLS_WithTemplateSlots_36<T, S> = T & {
1749
+ new (): {
1750
+ $slots: S;
1751
+ };
1752
+ };
1753
+
1754
+ declare type __VLS_WithTemplateSlots_37<T, S> = T & {
1755
+ new (): {
1756
+ $slots: S;
1757
+ };
1758
+ };
1759
+
1760
+ declare type __VLS_WithTemplateSlots_38<T, S> = T & {
1761
+ new (): {
1762
+ $slots: S;
1763
+ };
1764
+ };
1765
+
1766
+ declare type __VLS_WithTemplateSlots_39<T, S> = T & {
1767
+ new (): {
1768
+ $slots: S;
1769
+ };
1770
+ };
1771
+
1772
+ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
1773
+ new (): {
1774
+ $slots: S;
1775
+ };
1776
+ };
1777
+
1778
+ declare type __VLS_WithTemplateSlots_40<T, S> = T & {
1779
+ new (): {
1780
+ $slots: S;
1781
+ };
1782
+ };
1783
+
1784
+ declare type __VLS_WithTemplateSlots_41<T, S> = T & {
1785
+ new (): {
1786
+ $slots: S;
1787
+ };
1788
+ };
1789
+
1790
+ declare type __VLS_WithTemplateSlots_42<T, S> = T & {
1791
+ new (): {
1792
+ $slots: S;
1793
+ };
1794
+ };
1795
+
1796
+ declare type __VLS_WithTemplateSlots_43<T, S> = T & {
1797
+ new (): {
1798
+ $slots: S;
1799
+ };
1800
+ };
1801
+
1802
+ declare type __VLS_WithTemplateSlots_44<T, S> = T & {
1803
+ new (): {
1804
+ $slots: S;
1805
+ };
1806
+ };
1807
+
1808
+ declare type __VLS_WithTemplateSlots_45<T, S> = T & {
1809
+ new (): {
1810
+ $slots: S;
1811
+ };
1812
+ };
1813
+
1814
+ declare type __VLS_WithTemplateSlots_46<T, S> = T & {
1815
+ new (): {
1816
+ $slots: S;
1817
+ };
1818
+ };
1819
+
1820
+ declare type __VLS_WithTemplateSlots_47<T, S> = T & {
1821
+ new (): {
1822
+ $slots: S;
1823
+ };
1824
+ };
1825
+
1826
+ declare type __VLS_WithTemplateSlots_48<T, S> = T & {
1827
+ new (): {
1828
+ $slots: S;
1829
+ };
1830
+ };
1831
+
1832
+ declare type __VLS_WithTemplateSlots_49<T, S> = T & {
1833
+ new (): {
1834
+ $slots: S;
1835
+ };
1836
+ };
1837
+
1838
+ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
1839
+ new (): {
1840
+ $slots: S;
1841
+ };
1842
+ };
1843
+
1844
+ declare type __VLS_WithTemplateSlots_50<T, S> = T & {
1845
+ new (): {
1846
+ $slots: S;
1847
+ };
1848
+ };
1849
+
1850
+ declare type __VLS_WithTemplateSlots_51<T, S> = T & {
1851
+ new (): {
1852
+ $slots: S;
1853
+ };
1854
+ };
1855
+
1856
+ declare type __VLS_WithTemplateSlots_52<T, S> = T & {
1857
+ new (): {
1858
+ $slots: S;
1859
+ };
1860
+ };
1861
+
1862
+ declare type __VLS_WithTemplateSlots_53<T, S> = T & {
1863
+ new (): {
1864
+ $slots: S;
1865
+ };
1866
+ };
1867
+
1868
+ declare type __VLS_WithTemplateSlots_54<T, S> = T & {
1869
+ new (): {
1870
+ $slots: S;
1871
+ };
1872
+ };
1873
+
1874
+ declare type __VLS_WithTemplateSlots_55<T, S> = T & {
1875
+ new (): {
1876
+ $slots: S;
1877
+ };
1878
+ };
1879
+
1880
+ declare type __VLS_WithTemplateSlots_56<T, S> = T & {
1881
+ new (): {
1882
+ $slots: S;
1883
+ };
1884
+ };
1885
+
1886
+ declare type __VLS_WithTemplateSlots_57<T, S> = T & {
1887
+ new (): {
1888
+ $slots: S;
1889
+ };
1890
+ };
1891
+
1892
+ declare type __VLS_WithTemplateSlots_58<T, S> = T & {
1893
+ new (): {
1894
+ $slots: S;
1895
+ };
1896
+ };
1897
+
1898
+ declare type __VLS_WithTemplateSlots_59<T, S> = T & {
1899
+ new (): {
1900
+ $slots: S;
1901
+ };
1902
+ };
1903
+
1904
+ declare type __VLS_WithTemplateSlots_6<T, S> = T & {
1905
+ new (): {
1906
+ $slots: S;
1907
+ };
1908
+ };
1909
+
1910
+ declare type __VLS_WithTemplateSlots_60<T, S> = T & {
1911
+ new (): {
1912
+ $slots: S;
1913
+ };
1914
+ };
1915
+
1916
+ declare type __VLS_WithTemplateSlots_7<T, S> = T & {
1917
+ new (): {
1918
+ $slots: S;
1919
+ };
1920
+ };
1921
+
1922
+ declare type __VLS_WithTemplateSlots_8<T, S> = T & {
1923
+ new (): {
1924
+ $slots: S;
1925
+ };
1926
+ };
1927
+
1928
+ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
1929
+ new (): {
1930
+ $slots: S;
1931
+ };
1932
+ };
1933
+
1934
+ export declare const AccordionContent: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
1935
+
1936
+ declare interface AccordionContentProps {
1937
+ /** Lazy render - use v-if instead of v-show. Better performance but breaks Ctrl+F search. */
1938
+ lazy?: boolean;
1939
+ }
1940
+
1941
+ export declare const AccordionItem: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
1942
+
1943
+ export declare interface AccordionItemProps {
1944
+ /** Unique identifier for this item */
1945
+ value: string;
1946
+ /** Disable this item */
1947
+ disabled?: boolean;
1948
+ }
1949
+
1950
+ export declare const AccordionRoot: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1951
+
1952
+ export declare interface AccordionRootProps {
1953
+ /** Currently open item(s) - single value or array for multiple mode */
1954
+ modelValue?: string | string[];
1955
+ /** Allow all items to be collapsed */
1956
+ collapsible?: boolean;
1957
+ /** Allow multiple items open simultaneously */
1958
+ multiple?: boolean;
1959
+ /** Visual variant */
1960
+ variant?: AccordionVariant;
1961
+ }
1962
+
1963
+ export declare const AccordionTrigger: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
1964
+
1965
+ export declare interface AccordionTriggerProps {
1966
+ /** Hide the default chevron indicator */
1967
+ hideIndicator?: boolean;
1968
+ }
1969
+
1970
+ declare type AccordionVariant = 'contained' | 'split';
1971
+
1972
+ declare function applyPreset(startDate: Date, endDate: Date): void;
1973
+
1974
+ export declare const Avatar: DefineComponent<AvatarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AvatarProps> & Readonly<{}>, {
1975
+ variant: AvatarVariant;
1976
+ size: AvatarSize;
1977
+ shape: AvatarShape;
1978
+ bordered: boolean;
1979
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1980
+
1981
+ export declare interface AvatarProps {
1982
+ /** Image source URL */
1983
+ src?: string;
1984
+ /** User name - used for alt text AND initials fallback */
1985
+ name?: string;
1986
+ /** Override alt text (defaults to name) */
1987
+ alt?: string;
1988
+ /** Avatar size */
1989
+ size?: AvatarSize;
1990
+ /** Avatar shape */
1991
+ shape?: AvatarShape;
1992
+ /** Background variant when showing initials/icon */
1993
+ variant?: AvatarVariant;
1994
+ /** Add border for avatar groups (cutout effect) */
1995
+ bordered?: boolean;
1996
+ }
1997
+
1998
+ declare type AvatarShape = 'circle' | 'square';
1999
+
2000
+ declare type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
2001
+
2002
+ declare type AvatarVariant = 'neutral' | 'primary' | 'soft';
2003
+
2004
+ export declare const Badge: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
2005
+
2006
+ export declare const BadgeContainer: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
2007
+
2008
+ export declare interface BadgeContainerProps {
2009
+ /** Badge position relative to content */
2010
+ position?: BadgePosition;
2011
+ /** Horizontal offset adjustment (CSS value) */
2012
+ offsetX?: string;
2013
+ /** Vertical offset adjustment (CSS value) */
2014
+ offsetY?: string;
2015
+ /** Show cutout border matching background */
2016
+ cutout?: boolean;
2017
+ }
2018
+
2019
+ declare type BadgePosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
2020
+
2021
+ export declare interface BadgeProps {
2022
+ /** Color variant */
2023
+ variant?: BadgeVariant;
2024
+ /** Render as dot indicator instead of pill */
2025
+ dot?: boolean;
2026
+ /** Add pulse animation (dot mode only) */
2027
+ pulse?: boolean;
2028
+ /** Numeric value for count badges */
2029
+ value?: number;
2030
+ /** Max value before showing "+" (default: 99) */
2031
+ max?: number;
2032
+ /** Accessible label (required for numeric badges) */
2033
+ label?: string;
2034
+ }
2035
+
2036
+ declare type BadgeVariant = 'default' | 'success' | 'warning' | 'danger' | 'info';
2037
+
2038
+ export declare const BarChart: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
2039
+
2040
+ export declare interface BarChartProps {
2041
+ /** X-axis labels */
2042
+ labels: string[];
2043
+ /** Data series */
2044
+ series: BarChartSeries[];
2045
+ /** Chart height */
2046
+ height?: string | number;
2047
+ /** Horizontal bar orientation */
2048
+ horizontal?: boolean;
2049
+ /** Stack bars on top of each other */
2050
+ stacked?: boolean;
2051
+ /** Bar border radius */
2052
+ borderRadius?: number;
2053
+ /** Show grid lines */
2054
+ showGrid?: boolean;
2055
+ /** Show X axis */
2056
+ showXAxis?: boolean;
2057
+ /** Show Y axis */
2058
+ showYAxis?: boolean;
2059
+ /** Accessible label */
2060
+ ariaLabel?: string;
2061
+ /** Show built-in legend */
2062
+ showLegend?: boolean;
2063
+ }
2064
+
2065
+ export declare interface BarChartSeries {
2066
+ name: string;
2067
+ data: number[];
2068
+ }
2069
+
2070
+ export declare const BaseChart: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
2071
+
2072
+ export declare interface BaseChartProps {
2073
+ /** Chart type (line, bar, doughnut, pie, etc.) */
2074
+ type: ChartType;
2075
+ /** Chart.js data configuration */
2076
+ data: ChartData | Record<string, unknown>;
2077
+ /** Chart.js options configuration */
2078
+ options?: ChartOptions | Record<string, unknown>;
2079
+ /** Chart height */
2080
+ height?: string | number;
2081
+ /** Accessible label for screen readers */
2082
+ ariaLabel?: string;
2083
+ }
2084
+
2085
+ export declare interface BreadcrumbContext {
2086
+ separator: Component | string | (() => VNode);
2087
+ }
2088
+
2089
+ export declare const BreadcrumbEllipsis: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
2090
+
2091
+ export declare interface BreadcrumbEllipsisItem {
2092
+ /** Display label */
2093
+ label: string;
2094
+ /** URL for standard anchor */
2095
+ href?: string;
2096
+ /** Route location for vue-router (string or route object) */
2097
+ to?: string | Record<string, unknown>;
2098
+ }
2099
+
2100
+ export declare interface BreadcrumbEllipsisProps {
2101
+ /** Hidden breadcrumb items to show in dropdown */
2102
+ items?: BreadcrumbEllipsisItem[];
2103
+ }
2104
+
2105
+ export declare const BreadcrumbItem: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
2106
+
2107
+ export declare const BreadcrumbLink: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
2108
+
2109
+ export declare interface BreadcrumbLinkProps {
2110
+ /** URL for standard anchor */
2111
+ href?: string;
2112
+ /** Route location for vue-router (string or route object) */
2113
+ to?: string | Record<string, unknown>;
2114
+ /** Custom component to render as */
2115
+ as?: string | Component;
2116
+ }
2117
+
2118
+ export declare const BreadcrumbList: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
2119
+
2120
+ export declare const BreadcrumbPage: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
2121
+
2122
+ export declare const BreadcrumbRoot: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
2123
+
2124
+ export declare interface BreadcrumbRootProps {
2125
+ /** Custom separator component or string */
2126
+ separator?: Component | string | (() => VNode);
2127
+ }
2128
+
2129
+ export declare const BreadcrumbSeparator: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
2130
+
2131
+ export declare const Button: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
2132
+
2133
+ export declare interface ButtonProps {
2134
+ /** Visual style variant */
2135
+ variant?: 'primary' | 'secondary' | 'destructive' | 'ghost' | 'outline';
2136
+ /** Button size */
2137
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
2138
+ /** Render as different element or component (e.g., router-link) */
2139
+ as?: string | Component;
2140
+ /** Show loading spinner and disable interactions */
2141
+ loading?: boolean;
2142
+ /** Disable button */
2143
+ disabled?: boolean;
2144
+ /** Icon to show before text (any format supported by Icon component) */
2145
+ iconLeft?: IconInput;
2146
+ /** Icon to show after text (any format supported by Icon component) */
2147
+ iconRight?: IconInput;
2148
+ /** Make button full width */
2149
+ block?: boolean;
2150
+ /** Button type attribute */
2151
+ type?: 'button' | 'submit' | 'reset';
2152
+ }
2153
+
2154
+ /**
2155
+ * Calendar grid item representing a single day cell.
2156
+ */
2157
+ export declare interface CalendarDay {
2158
+ /** The date object for this cell */
2159
+ date: Date;
2160
+ /** Day of the month (1-31) */
2161
+ day: number;
2162
+ /** Whether this day belongs to the currently viewed month */
2163
+ currentMonth: boolean;
2164
+ }
2165
+
2166
+ export declare const Callout: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
2167
+
2168
+ export declare interface CalloutProps {
2169
+ /** Visual variant determining color and icon */
2170
+ variant?: CalloutVariant;
2171
+ /** Title text (alternative to #title slot) */
2172
+ title?: string;
2173
+ /** Show left accent border instead of full border */
2174
+ accent?: boolean;
2175
+ /** Show dismiss button */
2176
+ dismissible?: boolean;
2177
+ /** Hide the default icon */
2178
+ hideIcon?: boolean;
2179
+ }
2180
+
2181
+ export declare type CalloutVariant = 'info' | 'success' | 'warning' | 'error' | 'neutral';
2182
+
2183
+ export declare const Card: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
2184
+
2185
+ export declare const CardContent: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
2186
+
2187
+ export declare interface CardContentProps {
2188
+ /** Remove default padding */
2189
+ flush?: boolean;
2190
+ }
2191
+
2192
+ export declare const CardFooter: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
2193
+
2194
+ export declare interface CardFooterProps {
2195
+ /** Content alignment */
2196
+ align?: 'start' | 'center' | 'end' | 'between';
2197
+ /** Remove separator border */
2198
+ borderless?: boolean;
2199
+ }
2200
+
2201
+ export declare const CardHeader: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
2202
+
2203
+ export declare interface CardHeaderProps {
2204
+ /** Title text (alternative to slot) */
2205
+ title?: string;
2206
+ /** Subtitle text (alternative to slot) */
2207
+ subtitle?: string;
2208
+ /** Aligns header content */
2209
+ align?: 'start' | 'center';
2210
+ }
2211
+
2212
+ export declare const CardImage: DefineComponent<CardImageProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CardImageProps> & Readonly<{}>, {
2213
+ position: CardImagePosition;
2214
+ loading: "eager" | "lazy";
2215
+ aspectRatio: CardImageAspectRatio;
2216
+ fit: CardImageFit;
2217
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2218
+
2219
+ export declare type CardImageAspectRatio = '16:9' | '4:3' | '3:2' | '1:1' | 'auto';
2220
+
2221
+ export declare type CardImageFit = 'cover' | 'contain' | 'fill';
2222
+
2223
+ export declare type CardImagePosition = 'top' | 'bottom' | 'left' | 'right' | 'background';
2224
+
2225
+ export declare interface CardImageProps {
2226
+ /** Image source URL */
2227
+ src: string;
2228
+ /** Alt text for accessibility */
2229
+ alt: string;
2230
+ /** Aspect ratio constraint */
2231
+ aspectRatio?: CardImageAspectRatio;
2232
+ /** Image position within card */
2233
+ position?: CardImagePosition;
2234
+ /** Object-fit behavior */
2235
+ fit?: CardImageFit;
2236
+ /** Loading attribute for native lazy loading */
2237
+ loading?: 'eager' | 'lazy';
2238
+ }
2239
+
2240
+ export declare type CardPadding = 'none' | 'sm' | 'md' | 'lg';
2241
+
2242
+ export declare interface CardProps {
2243
+ /** Visual style variant */
2244
+ variant?: CardVariant;
2245
+ /** Render as different element (article, section, aside, etc.) */
2246
+ as?: string | Component;
2247
+ /** Makes the entire card clickable with overlay pattern */
2248
+ interactive?: boolean;
2249
+ /** Horizontal layout - image on side instead of top */
2250
+ horizontal?: boolean;
2251
+ /** Disabled state for interactive cards */
2252
+ disabled?: boolean;
2253
+ /** Loading state - shows skeleton overlay */
2254
+ loading?: boolean;
2255
+ /** Custom padding override */
2256
+ padding?: CardPadding;
2257
+ }
2258
+
2259
+ export declare type CardVariant = 'elevated' | 'outline' | 'ghost';
2260
+
2261
+ export declare interface ChartDataset {
2262
+ label?: string;
2263
+ data: number[];
2264
+ backgroundColor?: string | string[];
2265
+ borderColor?: string | string[];
2266
+ borderWidth?: number;
2267
+ fill?: boolean | string;
2268
+ tension?: number;
2269
+ }
2270
+
2271
+ export declare interface ChartTheme {
2272
+ colors: ChartThemeColors;
2273
+ fontFamily: string;
2274
+ palette: string[];
2275
+ }
2276
+
2277
+ export declare interface ChartThemeColors {
2278
+ primary: string;
2279
+ success: string;
2280
+ warning: string;
2281
+ error: string;
2282
+ info: string;
2283
+ text: string;
2284
+ textMuted: string;
2285
+ gridLines: string;
2286
+ tooltipBg: string;
2287
+ tooltipText: string;
2288
+ tooltipBorder: string;
2289
+ legendText: string;
2290
+ }
2291
+
2292
+ export declare const Checkbox: DefineComponent<CheckboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2293
+ "update:modelValue": (value: boolean) => any;
2294
+ change: (value: boolean) => any;
2295
+ }, string, PublicProps, Readonly<CheckboxProps> & Readonly<{
2296
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2297
+ onChange?: ((value: boolean) => any) | undefined;
2298
+ }>, {
2299
+ modelValue: boolean;
2300
+ size: "sm" | "md" | "lg";
2301
+ disabled: boolean;
2302
+ indeterminate: boolean;
2303
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
2304
+ inputRef: HTMLInputElement;
2305
+ }, HTMLLabelElement>;
2306
+
2307
+ export declare interface CheckboxProps {
2308
+ /** Checked state (v-model) */
2309
+ modelValue?: boolean;
2310
+ /** Indeterminate state (partial selection) */
2311
+ indeterminate?: boolean;
2312
+ /** Checkbox size */
2313
+ size?: 'sm' | 'md' | 'lg';
2314
+ /** Disabled state */
2315
+ disabled?: boolean;
2316
+ /** Visible label text */
2317
+ label?: string;
2318
+ /** Description text below label */
2319
+ description?: string;
2320
+ /** HTML name for form submission */
2321
+ name?: string;
2322
+ /** Value attribute for form submission */
2323
+ value?: string;
2324
+ /** ID for label association */
2325
+ id?: string;
2326
+ }
2327
+
2328
+ export declare const ChoiceChip: DefineComponent<ChoiceChipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2329
+ "update:modelValue": (value: boolean) => any;
2330
+ change: (value: boolean) => any;
2331
+ }, string, PublicProps, Readonly<ChoiceChipProps> & Readonly<{
2332
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2333
+ onChange?: ((value: boolean) => any) | undefined;
2334
+ }>, {
2335
+ disabled: boolean;
2336
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
2337
+
2338
+ export declare const ChoiceChipGroup: __VLS_WithTemplateSlots_33<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
2339
+
2340
+ export declare interface ChoiceChipGroupProps {
2341
+ /** Selected value(s) - single value for 'single' type, array for 'multiple' */
2342
+ modelValue?: string | number | (string | number)[];
2343
+ /** Selection type */
2344
+ type?: 'single' | 'multiple';
2345
+ /** Disabled state for all chips */
2346
+ disabled?: boolean;
2347
+ /** Accessible label for the group */
2348
+ label?: string;
2349
+ }
2350
+
2351
+ export declare interface ChoiceChipProps {
2352
+ /** Selected state for standalone usage (v-model) */
2353
+ modelValue?: boolean;
2354
+ /** Value for group usage */
2355
+ value?: string | number;
2356
+ /** Chip label text */
2357
+ label: string;
2358
+ /** Optional leading icon */
2359
+ icon?: IconInput;
2360
+ /** Disabled state */
2361
+ disabled?: boolean;
2362
+ }
2363
+
2364
+ /**
2365
+ * Clear all files
2366
+ */
2367
+ declare function clearAll(): void;
2368
+
2369
+ declare function close_2(): void;
2370
+
2371
+ declare function close_3(): void;
2372
+
2373
+ declare function closeCalendar(): void;
2374
+
2375
+ export declare const ColorArea: DefineComponent<ColorAreaProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2376
+ "update:saturation": (value: number) => any;
2377
+ "update:value": (value: number) => any;
2378
+ }, string, PublicProps, Readonly<ColorAreaProps> & Readonly<{
2379
+ "onUpdate:saturation"?: ((value: number) => any) | undefined;
2380
+ "onUpdate:value"?: ((value: number) => any) | undefined;
2381
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
2382
+ areaRef: HTMLDivElement;
2383
+ }, HTMLDivElement>;
2384
+
2385
+ export declare interface ColorAreaProps {
2386
+ /** Hue value (0-360) */
2387
+ hue: number;
2388
+ /** Saturation value (0-1) */
2389
+ saturation: number;
2390
+ /** Value/Brightness (0-1) */
2391
+ value: number;
2392
+ }
2393
+
2394
+ export declare type ColorFormat = 'hex' | 'rgb' | 'oklch';
2395
+
2396
+ export declare const ColorPicker: DefineComponent<ColorPickerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2397
+ "update:modelValue": (value: string) => any;
2398
+ }, string, PublicProps, Readonly<ColorPickerProps> & Readonly<{
2399
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2400
+ }>, {
2401
+ disabled: boolean;
2402
+ alpha: boolean;
2403
+ format: ColorFormat;
2404
+ swatchOnly: boolean;
2405
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2406
+
2407
+ export declare interface ColorPickerProps {
2408
+ /** Current color value */
2409
+ modelValue: string;
2410
+ /** Output format */
2411
+ format?: ColorFormat;
2412
+ /** Disable the picker */
2413
+ disabled?: boolean;
2414
+ /** Show only the swatch, hide text input */
2415
+ swatchOnly?: boolean;
2416
+ /** Show alpha channel slider */
2417
+ alpha?: boolean;
2418
+ }
2419
+
2420
+ export declare const ColorSlider: DefineComponent<ColorSliderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2421
+ "update:modelValue": (value: number) => any;
2422
+ }, string, PublicProps, Readonly<ColorSliderProps> & Readonly<{
2423
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2424
+ }>, {
2425
+ color: string;
2426
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
2427
+ trackRef: HTMLDivElement;
2428
+ }, HTMLDivElement>;
2429
+
2430
+ export declare interface ColorSliderProps {
2431
+ /** Current value (0-1 for alpha, 0-360 for hue) */
2432
+ modelValue: number;
2433
+ /** Slider type */
2434
+ type: 'hue' | 'alpha';
2435
+ /** Current color for alpha gradient (hex without alpha) */
2436
+ color?: string;
2437
+ }
2438
+
2439
+ export declare type ColumnAlign = 'left' | 'center' | 'right';
2440
+
2441
+ export declare type ColumnCount = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
2442
+
2443
+ export declare const Combobox: DefineComponent<ComboboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2444
+ "update:modelValue": (value: string | number | (string | number)[] | null) => any;
2445
+ create: (value: string) => any;
2446
+ }, string, PublicProps, Readonly<ComboboxProps> & Readonly<{
2447
+ "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
2448
+ onCreate?: ((value: string) => any) | undefined;
2449
+ }>, {
2450
+ modelValue: string | number | (string | number)[] | null;
2451
+ multiple: boolean;
2452
+ size: "sm" | "md" | "lg";
2453
+ disabled: boolean;
2454
+ required: boolean;
2455
+ placeholder: string;
2456
+ block: boolean;
2457
+ allowCreate: boolean;
2458
+ maxDisplayedChips: number;
2459
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
2460
+ containerRef: HTMLDivElement;
2461
+ inputRef: HTMLInputElement;
2462
+ listboxRef: HTMLUListElement;
2463
+ }, HTMLDivElement>;
2464
+
2465
+ export declare interface ComboboxOption {
2466
+ /** Display text shown to user */
2467
+ label: string;
2468
+ /** Value stored in v-model */
2469
+ value: string | number;
2470
+ /** Disable this option */
2471
+ disabled?: boolean;
2472
+ }
2473
+
2474
+ export declare interface ComboboxProps {
2475
+ /** Selected value(s) - single value or array for multiple */
2476
+ modelValue?: string | number | (string | number)[] | null;
2477
+ /** Available options */
2478
+ options: ComboboxOption[];
2479
+ /** Enable multi-select mode */
2480
+ multiple?: boolean;
2481
+ /** Label text above input */
2482
+ label?: string;
2483
+ /** Placeholder when empty */
2484
+ placeholder?: string;
2485
+ /** Helper text below input */
2486
+ hint?: string;
2487
+ /** Error message (also sets error state) */
2488
+ error?: string;
2489
+ /** Input size */
2490
+ size?: 'sm' | 'md' | 'lg';
2491
+ /** Disabled state */
2492
+ disabled?: boolean;
2493
+ /** Required field */
2494
+ required?: boolean;
2495
+ /** Full width mode */
2496
+ block?: boolean;
2497
+ /** Allow creating new options (tagging) */
2498
+ allowCreate?: boolean;
2499
+ /** Max chips to display before +N (multi-select only) */
2500
+ maxDisplayedChips?: number;
2501
+ /** HTML id attribute */
2502
+ id?: string;
2503
+ /** HTML name attribute (for forms) */
2504
+ name?: string;
2505
+ }
2506
+
2507
+ /**
2508
+ * Configure internal icons used by Spire UI components.
2509
+ * Call this before mounting your app to customize icons globally.
2510
+ *
2511
+ * @example
2512
+ * ```ts
2513
+ * import { configureIcons } from 'spire-ui'
2514
+ * import { ArrowUp, ArrowDown, X } from 'lucide-vue-next'
2515
+ *
2516
+ * configureIcons({
2517
+ * sortAsc: ArrowUp,
2518
+ * sortDesc: ArrowDown,
2519
+ * close: X
2520
+ * })
2521
+ * ```
2522
+ */
2523
+ export declare function configureIcons(userIcons: Partial<IconMap>): void;
2524
+
2525
+ export declare const Container: __VLS_WithTemplateSlots_57<typeof __VLS_component_54, __VLS_TemplateResult_54["slots"]>;
2526
+
2527
+ export declare interface ContainerProps {
2528
+ /** If true, width is 100%. If false, max-width snaps to breakpoints. */
2529
+ fluid?: boolean;
2530
+ /** Auto margins (mx-auto). Default: true */
2531
+ centered?: boolean;
2532
+ /** HTML tag to render */
2533
+ as?: string;
2534
+ }
2535
+
2536
+ export declare const DataTable: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
2537
+
2538
+ export declare interface DataTableColumn {
2539
+ /** Key path (supports dot notation: 'user.email') */
2540
+ key: string;
2541
+ /** Header label */
2542
+ label: string;
2543
+ /** Text alignment */
2544
+ align?: ColumnAlign;
2545
+ /** Fixed width (e.g., '80px') */
2546
+ width?: string;
2547
+ /** Minimum width for resizable columns */
2548
+ minWidth?: string;
2549
+ /** Enable sorting */
2550
+ sortable?: boolean;
2551
+ /** Enable filtering for this column */
2552
+ filterable?: boolean;
2553
+ /** Custom filter function */
2554
+ filterFn?: FilterFn;
2555
+ /** Enable resizing for this column */
2556
+ resizable?: boolean;
2557
+ }
2558
+
2559
+ export declare interface DataTableProps {
2560
+ /** Data array */
2561
+ data: Record<string, unknown>[];
2562
+ /** Column definitions */
2563
+ columns: DataTableColumn[];
2564
+ /** Enable row selection */
2565
+ selectable?: boolean;
2566
+ /** Selected row IDs (v-model:selectedIds) */
2567
+ selectedIds?: (string | number)[];
2568
+ /** Row identifier key (default: 'id') */
2569
+ rowKey?: string;
2570
+ /** Loading state */
2571
+ loading?: boolean;
2572
+ /** Skeleton rows count (default: 5) */
2573
+ skeletonRows?: number;
2574
+ /** Striped rows */
2575
+ striped?: boolean;
2576
+ /** Row hover effect */
2577
+ hoverable?: boolean;
2578
+ /** Size variant */
2579
+ size?: 'sm' | 'md' | 'lg';
2580
+ /** Empty state message */
2581
+ emptyMessage?: string;
2582
+ /** Show cell borders */
2583
+ bordered?: boolean;
2584
+ /** Sticky header */
2585
+ stickyHeader?: boolean;
2586
+ /** Enable pagination (boolean or config object) */
2587
+ pagination?: boolean | PaginationConfig;
2588
+ /** Current page for controlled pagination (v-model:page) */
2589
+ page?: number;
2590
+ /** Page size for controlled pagination (v-model:pageSize) */
2591
+ pageSize?: number;
2592
+ /** Total items count (required for server-side pagination) */
2593
+ total?: number;
2594
+ /** Server-side mode: disables client-side slicing, emits events for parent to handle */
2595
+ serverSide?: boolean;
2596
+ /** Enable global search */
2597
+ searchable?: boolean;
2598
+ /** Search query (v-model:search) */
2599
+ search?: string;
2600
+ /** Placeholder for search input */
2601
+ searchPlaceholder?: string;
2602
+ /** Enable column filters (shows filter inputs below headers) */
2603
+ filterable?: boolean;
2604
+ /** Current filter values (v-model:filters) */
2605
+ filters?: Record<string, string>;
2606
+ /** Enable column resizing */
2607
+ resizable?: boolean;
2608
+ /** Enable expandable rows */
2609
+ expandable?: boolean;
2610
+ /** Expanded row IDs (v-model:expandedIds) */
2611
+ expandedIds?: (string | number)[];
2612
+ }
2613
+
2614
+ export declare const DatePicker: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
2615
+
2616
+ export declare interface DatePickerProps {
2617
+ /** Selected date in ISO format (single mode) or [start, end] tuple (range mode) */
2618
+ modelValue?: string | [string, string];
2619
+ /** Selection mode */
2620
+ mode?: 'single' | 'range';
2621
+ /** Minimum selectable date in ISO format */
2622
+ min?: string;
2623
+ /** Maximum selectable date in ISO format */
2624
+ max?: string;
2625
+ /** Label text above the input */
2626
+ label?: string;
2627
+ /** Placeholder text when no date is selected */
2628
+ placeholder?: string;
2629
+ /** Helper text below input */
2630
+ hint?: string;
2631
+ /** Error message (also sets error state) */
2632
+ error?: string;
2633
+ /** Input size - matches Button/Input heights */
2634
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
2635
+ /** Disabled state */
2636
+ disabled?: boolean;
2637
+ /** Required field indicator */
2638
+ required?: boolean;
2639
+ /** HTML id attribute */
2640
+ id?: string;
2641
+ /** HTML name attribute */
2642
+ name?: string;
2643
+ /** Make input full width */
2644
+ block?: boolean;
2645
+ /** Locale for month/day names (defaults to browser locale) */
2646
+ locale?: string;
2647
+ /** Format function for displaying the selected date */
2648
+ formatDisplay?: (date: Date) => string;
2649
+ /** Format function for displaying range (range mode only) */
2650
+ formatRangeDisplay?: (start: Date, end: Date) => string;
2651
+ }
2652
+
2653
+ export declare type DatePickerViewMode = 'day' | 'month' | 'year';
2654
+
2655
+ export declare type Depth = 'flat' | 'subtle' | 'elevated' | 'dimensional';
2656
+
2657
+ export declare const DonutChart: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
2658
+
2659
+ export declare interface DonutChartProps {
2660
+ /** Chart segments */
2661
+ segments: DonutChartSegment[];
2662
+ /** Chart height */
2663
+ height?: string | number;
2664
+ /** Donut cutout percentage (0-100, 0 = pie chart) */
2665
+ cutout?: number;
2666
+ /** Accessible label */
2667
+ ariaLabel?: string;
2668
+ /** Show built-in legend */
2669
+ showLegend?: boolean;
2670
+ /** Legend position */
2671
+ legendPosition?: 'top' | 'bottom' | 'left' | 'right';
2672
+ /** Center label (for donut charts) */
2673
+ centerLabel?: string;
2674
+ /** Center value (for donut charts) */
2675
+ centerValue?: string;
2676
+ }
2677
+
2678
+ export declare interface DonutChartSegment {
2679
+ label: string;
2680
+ value: number;
2681
+ color?: string;
2682
+ }
2683
+
2684
+ export declare const Drawer: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
2685
+
2686
+ export declare type DrawerPlacement = 'right' | 'left' | 'bottom';
2687
+
2688
+ export declare interface DrawerProps {
2689
+ /** Controls visibility (v-model) */
2690
+ modelValue?: boolean;
2691
+ /** Drawer title */
2692
+ title?: string;
2693
+ /** Visual variant */
2694
+ variant?: DrawerVariant;
2695
+ /** Placement on desktop */
2696
+ placement?: DrawerPlacement;
2697
+ /** Width/height preset */
2698
+ size?: DrawerSize;
2699
+ /** Allow closing by clicking backdrop */
2700
+ maskClosable?: boolean;
2701
+ /** Allow closing with Escape key */
2702
+ closeOnEscape?: boolean;
2703
+ /** Show close button in header */
2704
+ showClose?: boolean;
2705
+ }
2706
+
2707
+ export declare type DrawerSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
2708
+
2709
+ export declare type DrawerVariant = 'default' | 'floating';
2710
+
2711
+ export declare const Dropdown: __VLS_WithTemplateSlots_27<DefineComponent<DropdownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2712
+ close: () => any;
2713
+ open: () => any;
2714
+ }, string, PublicProps, Readonly<DropdownProps> & Readonly<{
2715
+ onClose?: (() => any) | undefined;
2716
+ onOpen?: (() => any) | undefined;
2717
+ }>, {
2718
+ disabled: boolean;
2719
+ placement: DropdownPlacement;
2720
+ offset: number;
2721
+ menuWidth: "auto" | "trigger" | number;
2722
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
2723
+ triggerRef: HTMLDivElement;
2724
+ menuRef: HTMLDivElement;
2725
+ }, HTMLDivElement>, {
2726
+ trigger?(_: {
2727
+ open: boolean;
2728
+ toggle: () => void;
2729
+ }): any;
2730
+ default?(_: {}): any;
2731
+ }>;
2732
+
2733
+ export declare interface DropdownContext {
2734
+ close: () => void;
2735
+ closeAll: () => void;
2736
+ cancelClose: () => void;
2737
+ registerItem: (el: HTMLElement) => void;
2738
+ unregisterItem: (el: HTMLElement) => void;
2739
+ registerSubmenu: (submenu: SubmenuRegistration) => void;
2740
+ unregisterSubmenu: (id: string) => void;
2741
+ isSubmenu: boolean;
2742
+ depth: number;
2743
+ isMobile: Ref<boolean>;
2744
+ openSubmenuId: Ref<string | null>;
2745
+ setOpenSubmenu: (id: string | null) => void;
2746
+ safeTriangle: SafeTriangleState;
2747
+ menuStack: Ref<string[]>;
2748
+ pushMenu: (id: string, label: string) => void;
2749
+ popMenu: () => void;
2750
+ }
2751
+
2752
+ export declare const DropdownItem: __VLS_WithTemplateSlots_28<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
2753
+
2754
+ export declare interface DropdownItemProps {
2755
+ /** Renders as RouterLink when provided */
2756
+ to?: string | Record<string, unknown>;
2757
+ /** Renders as anchor when provided */
2758
+ href?: string;
2759
+ /** Disabled state */
2760
+ disabled?: boolean;
2761
+ /** Danger/destructive styling */
2762
+ danger?: boolean;
2763
+ /** Leading icon */
2764
+ icon?: Component;
2765
+ /** Keyboard shortcut hint */
2766
+ shortcut?: string;
2767
+ /** Prevent menu from closing on click */
2768
+ preventClose?: boolean;
2769
+ /** Show chevron indicator (for submenu triggers) */
2770
+ chevron?: boolean;
2771
+ }
2772
+
2773
+ export declare type DropdownPlacement = 'bottom-start' | 'bottom-end' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'left-start' | 'left-end';
2774
+
2775
+ export declare interface DropdownProps {
2776
+ /** Menu placement relative to trigger */
2777
+ placement?: DropdownPlacement;
2778
+ /** Offset from trigger (px) */
2779
+ offset?: number;
2780
+ /** Disable the dropdown */
2781
+ disabled?: boolean;
2782
+ /** Width of the menu ('auto', 'trigger', or px value) */
2783
+ menuWidth?: 'auto' | 'trigger' | number;
2784
+ }
2785
+
2786
+ export declare const DropdownSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
2787
+
2788
+ export declare const DropdownSub: __VLS_WithTemplateSlots_29<DefineComponent< {}, {
2789
+ isOpen: Ref<boolean, boolean>;
2790
+ triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
2791
+ contentRef: Ref<HTMLElement | null, HTMLElement | null>;
2792
+ open: () => void;
2793
+ close: () => void;
2794
+ scheduleClose: () => void;
2795
+ cancelClose: () => void;
2796
+ onContentKeydown: (e: KeyboardEvent) => void;
2797
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
2798
+ default?(_: {}): any;
2799
+ }>;
2800
+
2801
+ export declare const DropdownSubContent: __VLS_WithTemplateSlots_31<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
2802
+
2803
+ export declare interface DropdownSubContext {
2804
+ isOpen: {
2805
+ value: boolean;
2806
+ };
2807
+ triggerRef: {
2808
+ value: HTMLElement | null;
2809
+ };
2810
+ open: () => void;
2811
+ close: () => void;
2812
+ onTriggerKeydown: (e: KeyboardEvent) => void;
2813
+ scheduleClose: () => void;
2814
+ cancelClose: () => void;
2815
+ }
2816
+
2817
+ export declare const DropdownSubTrigger: __VLS_WithTemplateSlots_30<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
2818
+
2819
+ export declare interface DropdownSubTriggerProps {
2820
+ /** Disabled state */
2821
+ disabled?: boolean;
2822
+ /** Leading icon */
2823
+ icon?: Component;
2824
+ }
2825
+
2826
+ export declare const EmptyState: __VLS_WithTemplateSlots_32<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
2827
+
2828
+ export declare interface EmptyStateProps {
2829
+ /** Title text */
2830
+ title?: string;
2831
+ /** Description text */
2832
+ description?: string;
2833
+ /** Custom icon to display (overrides variant icon) */
2834
+ icon?: IconInput;
2835
+ /** Visual variant */
2836
+ variant?: EmptyStateVariant;
2837
+ /** Compact mode with reduced padding */
2838
+ compact?: boolean;
2839
+ }
2840
+
2841
+ export declare type EmptyStateVariant = 'default' | 'search' | 'error';
2842
+
2843
+ declare type EventTarget_2 = Window | Document | HTMLElement | null;
2844
+
2845
+ export declare const FileUpload: DefineComponent<FileUploadProps, {
2846
+ updateProgress: typeof updateProgress;
2847
+ markSuccess: typeof markSuccess;
2848
+ markError: typeof markError;
2849
+ clearAll: typeof clearAll;
2850
+ triggerInput: typeof triggerInput;
2851
+ replaceFile: typeof replaceFile;
2852
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2853
+ "update:modelValue": (files: UploadFile[]) => any;
2854
+ "files-added": (files: UploadFile[]) => any;
2855
+ "file-removed": (file: UploadFile) => any;
2856
+ "file-rejected": (file: File, reason: string) => any;
2857
+ "files-pasted": (files: UploadFile[]) => any;
2858
+ "file-replaced": (oldFile: UploadFile, newFile: UploadFile) => any;
2859
+ }, string, PublicProps, Readonly<FileUploadProps> & Readonly<{
2860
+ "onUpdate:modelValue"?: ((files: UploadFile[]) => any) | undefined;
2861
+ "onFiles-added"?: ((files: UploadFile[]) => any) | undefined;
2862
+ "onFile-removed"?: ((file: UploadFile) => any) | undefined;
2863
+ "onFile-rejected"?: ((file: File, reason: string) => any) | undefined;
2864
+ "onFiles-pasted"?: ((files: UploadFile[]) => any) | undefined;
2865
+ "onFile-replaced"?: ((oldFile: UploadFile, newFile: UploadFile) => any) | undefined;
2866
+ }>, {
2867
+ modelValue: UploadFile[];
2868
+ multiple: boolean;
2869
+ disabled: boolean;
2870
+ compact: boolean;
2871
+ showPreviews: boolean;
2872
+ allowPaste: boolean;
2873
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
2874
+ dropzoneRef: HTMLDivElement;
2875
+ inputRef: HTMLInputElement;
2876
+ }, HTMLDivElement>;
2877
+
2878
+ export declare interface FileUploadProps {
2879
+ /** Currently selected files (v-model) */
2880
+ modelValue?: UploadFile[];
2881
+ /** Accepted file types (MIME types or extensions) */
2882
+ accept?: string;
2883
+ /** Allow multiple file selection */
2884
+ multiple?: boolean;
2885
+ /** Maximum file size in bytes */
2886
+ maxSize?: number;
2887
+ /** Maximum number of files */
2888
+ maxFiles?: number;
2889
+ /** Disabled state */
2890
+ disabled?: boolean;
2891
+ /** Label text */
2892
+ label?: string;
2893
+ /** Hint text */
2894
+ hint?: string;
2895
+ /** Error message */
2896
+ error?: string;
2897
+ /** Show image previews */
2898
+ showPreviews?: boolean;
2899
+ /** Compact mode (smaller dropzone) */
2900
+ compact?: boolean;
2901
+ /** Enable paste-to-upload (Ctrl+V) */
2902
+ allowPaste?: boolean;
2903
+ }
2904
+
2905
+ export declare type FilterFn = (value: unknown, filterValue: string, row: Record<string, unknown>) => boolean;
2906
+
2907
+ export declare function formatColor(hsv: HSV, alpha: number, format: 'hex' | 'rgb' | 'oklch'): string;
2908
+
2909
+ /**
2910
+ * Format a Date object to ISO 8601 date string (YYYY-MM-DD).
2911
+ *
2912
+ * @param date - Date object to format
2913
+ * @returns ISO date string in YYYY-MM-DD format
2914
+ *
2915
+ * Time complexity: O(1)
2916
+ * Space complexity: O(1)
2917
+ */
2918
+ export declare function formatDate(date: Date): string;
2919
+
2920
+ export declare function formatOklch(oklch: OKLCH, alpha?: number): string;
2921
+
2922
+ export declare function formatRgb(rgb: RGB, alpha?: number): string;
2923
+
2924
+ /**
2925
+ * Formats hours and minutes into a time string.
2926
+ * @param hours - Hour value (0-23)
2927
+ * @param minutes - Minute value (0-59)
2928
+ * @param format - Output format ('12h' or '24h')
2929
+ */
2930
+ export declare function formatTime(hours: number, minutes: number, format?: TimeFormat): string;
2931
+
2932
+ /**
2933
+ * Generate a 42-item grid (6 rows × 7 columns) for a calendar month view.
2934
+ * The grid always starts on Sunday and includes days from previous/next months
2935
+ * to fill the complete 6-row layout.
2936
+ *
2937
+ * @param year - Full year (e.g., 2024)
2938
+ * @param month - Month (0-11, where 0 = January)
2939
+ * @returns Array of 42 CalendarDay objects
2940
+ *
2941
+ * Time complexity: O(1) - Fixed 42 iterations
2942
+ * Space complexity: O(1) - Fixed 42-element array
2943
+ */
2944
+ export declare function generateCalendarGrid(year: number, month: number): CalendarDay[];
2945
+
2946
+ /**
2947
+ * Generates an array of page numbers and ellipsis markers for pagination display.
2948
+ *
2949
+ * Time complexity: O(n) where n is siblingCount
2950
+ * Space complexity: O(n) for the result array
2951
+ *
2952
+ * @param currentPage - The currently active page (1-indexed)
2953
+ * @param totalPages - Total number of pages
2954
+ * @param siblingCount - Number of pages to show on each side of current page
2955
+ * @param showEdges - Whether to always show first and last page numbers
2956
+ * @returns Array of page numbers and 'ellipsis' markers
2957
+ */
2958
+ export declare function generatePageRange(currentPage: number, totalPages: number, siblingCount?: number, showEdges?: boolean): PageItem[];
2959
+
2960
+ /**
2961
+ * Generates an array of numbers within a range with optional step.
2962
+ * Used for generating hour (0-23 or 1-12) and minute (0-59) options.
2963
+ */
2964
+ export declare function generateRange(start: number, end: number, step?: number): number[];
2965
+
2966
+ /**
2967
+ * Generate a 20-year window centered around a given year for year grid view.
2968
+ *
2969
+ * @param centerYear - Year to center the window around
2970
+ * @returns Array of 20 years [start, start+1, ..., start+19]
2971
+ *
2972
+ * Time complexity: O(1) - Fixed 20 iterations
2973
+ * Space complexity: O(1) - Fixed 20-element array
2974
+ */
2975
+ export declare function generateYearGrid(centerYear: number): number[];
2976
+
2977
+ /**
2978
+ * Get the number of days in a given month, correctly handling leap years.
2979
+ *
2980
+ * @param year - Full year (e.g., 2024)
2981
+ * @param month - Month (0-11, where 0 = January)
2982
+ * @returns Number of days in the month (28-31)
2983
+ *
2984
+ * Time complexity: O(1)
2985
+ * Space complexity: O(1)
2986
+ */
2987
+ export declare function getDaysInMonth(year: number, month: number): number;
2988
+
2989
+ /**
2990
+ * Extract initials from a name string.
2991
+ *
2992
+ * @param name - Full name (e.g., "John Doe", "Madonna", "John von Doe")
2993
+ * @param limit - Maximum characters to return (default: 2)
2994
+ * @returns Uppercase initials (e.g., "JD", "M", "JD")
2995
+ *
2996
+ * @example
2997
+ * getInitials("John Doe") // "JD"
2998
+ * getInitials("Madonna") // "MA"
2999
+ * getInitials("John von Doe") // "JD" (first + last)
3000
+ * getInitials("") // ""
3001
+ */
3002
+ export declare function getInitials(name?: string, limit?: number): string;
3003
+
3004
+ /**
3005
+ * Get localized month name.
3006
+ *
3007
+ * @param month - Month (0-11)
3008
+ * @param locale - Locale string (defaults to browser locale)
3009
+ * @returns Localized month name
3010
+ *
3011
+ * Time complexity: O(1)
3012
+ * Space complexity: O(1)
3013
+ */
3014
+ export declare function getMonthName(month: number, locale?: string): string;
3015
+
3016
+ /**
3017
+ * Get all month names for a locale (short format for month grid).
3018
+ *
3019
+ * @param locale - Locale string (defaults to browser locale)
3020
+ * @returns Array of 12 short month names
3021
+ *
3022
+ * Time complexity: O(1) - Fixed 12 iterations
3023
+ * Space complexity: O(1) - Fixed 12-element array
3024
+ */
3025
+ export declare function getMonthNamesShort(locale?: string): string[];
3026
+
3027
+ /**
3028
+ * Access a nested property in an object using dot notation.
3029
+ *
3030
+ * @param obj - The object to access
3031
+ * @param path - Dot-notation path (e.g., 'user.email', 'address.city')
3032
+ * @returns The value at the path, or undefined if not found
3033
+ *
3034
+ * @example
3035
+ * getNestedValue({ user: { email: 'a@b.com' } }, 'user.email') // 'a@b.com'
3036
+ * getNestedValue({ name: 'John' }, 'name') // 'John'
3037
+ * getNestedValue({}, 'missing.path') // undefined
3038
+ */
3039
+ export declare function getNestedValue(obj: Record<string, unknown>, path: string): unknown;
3040
+
3041
+ /**
3042
+ * Get the start of a date range preset.
3043
+ *
3044
+ * @param preset - Preset name
3045
+ * @returns [start, end] date tuple
3046
+ */
3047
+ export declare function getPresetRange(preset: string): [Date, Date];
3048
+
3049
+ /**
3050
+ * Determine the CSS class for a date in range selection mode.
3051
+ * Handles the "flip" when user selects end date before start date.
3052
+ *
3053
+ * @param date - Date to classify
3054
+ * @param start - Selected start date (or first click)
3055
+ * @param end - Selected end date (or null if selecting)
3056
+ * @param hover - Currently hovered date (for preview during selection)
3057
+ * @returns Range class for styling
3058
+ *
3059
+ * Time complexity: O(1)
3060
+ * Space complexity: O(1)
3061
+ */
3062
+ export declare function getRangeClass(date: Date, start: Date | null, end: Date | null, hover: Date | null): RangeClass;
3063
+
3064
+ /**
3065
+ * Convenience function to apply stagger animation styles directly via CSS.
3066
+ * Returns a style object that can be applied to list items.
3067
+ *
3068
+ * @param index - Item index in the list
3069
+ * @param options - Animation configuration
3070
+ * @returns Style object with animation delay
3071
+ *
3072
+ * @example
3073
+ * ```vue
3074
+ * <template>
3075
+ * <ul>
3076
+ * <li
3077
+ * v-for="(item, index) in items"
3078
+ * :key="item.id"
3079
+ * :style="getStaggerStyle(index)"
3080
+ * class="stagger-item"
3081
+ * >
3082
+ * {{ item.name }}
3083
+ * </li>
3084
+ * </ul>
3085
+ * </template>
3086
+ *
3087
+ * <style>
3088
+ * .stagger-item {
3089
+ * animation: stagger-in var(--duration-normal) var(--ease-out) both;
3090
+ * animation-delay: var(--stagger-delay);
3091
+ * }
3092
+ * </style>
3093
+ * ```
3094
+ */
3095
+ export declare function getStaggerStyle(index: number, options?: {
3096
+ delay?: number;
3097
+ }): Record<string, string>;
3098
+
3099
+ /**
3100
+ * Get localized weekday abbreviations starting from Sunday.
3101
+ *
3102
+ * @param locale - Locale string (defaults to browser locale)
3103
+ * @returns Array of 7 weekday abbreviations
3104
+ *
3105
+ * Time complexity: O(1) - Fixed 7 iterations
3106
+ * Space complexity: O(1) - Fixed 7-element array
3107
+ */
3108
+ export declare function getWeekdayNames(locale?: string): string[];
3109
+
3110
+ export declare const Grid: __VLS_WithTemplateSlots_59<typeof __VLS_component_56, __VLS_TemplateResult_56["slots"]>;
3111
+
3112
+ export declare const GridItem: __VLS_WithTemplateSlots_60<typeof __VLS_component_57, __VLS_TemplateResult_57["slots"]>;
3113
+
3114
+ export declare interface GridItemProps {
3115
+ /** Number of columns to span (or responsive object) */
3116
+ span?: SpanCount | ResponsiveSpan;
3117
+ /** Grid column start */
3118
+ start?: number;
3119
+ /** Grid column end */
3120
+ end?: number;
3121
+ /** Grid row span */
3122
+ rowSpan?: number;
3123
+ /** HTML tag to render */
3124
+ as?: string;
3125
+ }
3126
+
3127
+ export declare interface GridProps {
3128
+ /** Number of columns (or responsive object) */
3129
+ columns?: ColumnCount | ResponsiveColumns;
3130
+ /** Grid gap using spacing tokens */
3131
+ gap?: SpacingToken;
3132
+ /** Column gap override */
3133
+ gapX?: SpacingToken;
3134
+ /** Row gap override */
3135
+ gapY?: SpacingToken;
3136
+ /** HTML tag to render */
3137
+ as?: string;
3138
+ }
3139
+
3140
+ export declare const Heading: __VLS_WithTemplateSlots_34<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
3141
+
3142
+ export declare interface HeadingProps {
3143
+ /** Semantic HTML tag */
3144
+ as?: HeadingTag;
3145
+ /** Visual hierarchy size */
3146
+ size?: HeadingSize;
3147
+ /** Text alignment */
3148
+ align?: 'left' | 'center' | 'right';
3149
+ /** Prevent wrapping with ellipsis */
3150
+ truncate?: boolean;
3151
+ }
3152
+
3153
+ declare type HeadingSize = '4xl' | '3xl' | '2xl' | 'xl' | 'lg' | 'md';
3154
+
3155
+ declare type HeadingTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div' | 'span';
3156
+
3157
+ export declare function hexToHsv(hex: string): HSV;
3158
+
3159
+ export declare function hexToRgb(hex: string): RGB;
3160
+
3161
+ export declare interface HSV {
3162
+ h: number;
3163
+ s: number;
3164
+ v: number;
3165
+ }
3166
+
3167
+ export declare interface HSVA extends HSV {
3168
+ a: number;
3169
+ }
3170
+
3171
+ export declare function hsvToHex(hsv: HSV): string;
3172
+
3173
+ export declare function hsvToOklch(hsv: HSV): OKLCH;
3174
+
3175
+ export declare function hsvToRgb(hsv: HSV): RGB;
3176
+
3177
+ declare type HugeIconData = [string, Record<string, unknown>][];
3178
+
3179
+ declare type HugeIconData_2 = [string, Record<string, unknown>][];
3180
+
3181
+ export declare const Icon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IconProps> & Readonly<{}>, {
3182
+ size: "xs" | "sm" | "md" | "lg" | "xl" | string;
3183
+ strokeWidth: number | string;
3184
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3185
+
3186
+ export declare type IconInput = Component | HugeIconData;
3187
+
3188
+ declare type IconInput_2 = Component | HugeIconData_2;
3189
+
3190
+ /**
3191
+ * Semantic icon keys used internally by Spire UI components.
3192
+ * Components request icons by function, not by name.
3193
+ */
3194
+ export declare interface IconMap {
3195
+ sortAsc: Component;
3196
+ sortDesc: Component;
3197
+ sortNeutral: Component;
3198
+ expand: Component;
3199
+ collapse: Component;
3200
+ close: Component;
3201
+ search: Component;
3202
+ check: Component;
3203
+ info: Component;
3204
+ success: Component;
3205
+ warning: Component;
3206
+ error: Component;
3207
+ emptyData: Component;
3208
+ emptySearch: Component;
3209
+ calendar: Component;
3210
+ chevronLeft: Component;
3211
+ chevronRight: Component;
3212
+ star: Component;
3213
+ starFilled: Component;
3214
+ }
3215
+
3216
+ export declare interface IconProps {
3217
+ /** The icon - Vue component OR HugeIcons data array */
3218
+ icon: IconInput;
3219
+ /** Predefined size or custom value */
3220
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | string;
3221
+ /** Stroke width (for stroke-based icons like Lucide) */
3222
+ strokeWidth?: number | string;
3223
+ /** Accessible label - required for standalone icons */
3224
+ label?: string;
3225
+ }
3226
+
3227
+ export declare const Input: __VLS_WithTemplateSlots_35<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
3228
+
3229
+ export declare interface InputProps {
3230
+ /** Input value (v-model) */
3231
+ modelValue?: string | number;
3232
+ /** Input type */
3233
+ type?: 'text' | 'email' | 'password' | 'search' | 'tel' | 'url' | 'number';
3234
+ /** Label text above the input */
3235
+ label?: string;
3236
+ /** Placeholder text */
3237
+ placeholder?: string;
3238
+ /** Helper text below input */
3239
+ hint?: string;
3240
+ /** Error message (also sets error state) */
3241
+ error?: string;
3242
+ /** Input size - matches Button heights */
3243
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
3244
+ /** Disabled state */
3245
+ disabled?: boolean;
3246
+ /** Read-only state */
3247
+ readonly?: boolean;
3248
+ /** Loading state - shows spinner */
3249
+ loading?: boolean;
3250
+ /** Required field */
3251
+ required?: boolean;
3252
+ /** Icon on the left side */
3253
+ iconLeft?: IconInput;
3254
+ /** Icon on the right side */
3255
+ iconRight?: IconInput;
3256
+ /** HTML id attribute (auto-generated if not provided) */
3257
+ id?: string;
3258
+ /** HTML name attribute */
3259
+ name?: string;
3260
+ /** Autocomplete attribute */
3261
+ autocomplete?: InputHTMLAttributes['autocomplete'];
3262
+ /** Make input full width */
3263
+ block?: boolean;
3264
+ }
3265
+
3266
+ /**
3267
+ * Check if a date is after another date (day-level comparison).
3268
+ *
3269
+ * @param date - Date to check
3270
+ * @param reference - Reference date
3271
+ * @returns True if date is after reference
3272
+ *
3273
+ * Time complexity: O(1)
3274
+ * Space complexity: O(1)
3275
+ */
3276
+ export declare function isDateAfter(date: Date, reference: Date): boolean;
3277
+
3278
+ /**
3279
+ * Check if a date is before another date (day-level comparison).
3280
+ *
3281
+ * @param date - Date to check
3282
+ * @param reference - Reference date
3283
+ * @returns True if date is before reference
3284
+ *
3285
+ * Time complexity: O(1)
3286
+ * Space complexity: O(1)
3287
+ */
3288
+ export declare function isDateBefore(date: Date, reference: Date): boolean;
3289
+
3290
+ /**
3291
+ * Check if a date falls strictly between two dates (exclusive).
3292
+ *
3293
+ * @param date - Date to check
3294
+ * @param start - Range start date
3295
+ * @param end - Range end date
3296
+ * @returns True if date is between start and end (exclusive)
3297
+ *
3298
+ * Time complexity: O(1)
3299
+ * Space complexity: O(1)
3300
+ */
3301
+ export declare function isDateBetween(date: Date, start: Date | null, end: Date | null): boolean;
3302
+
3303
+ /**
3304
+ * Check if a date falls within an optional min/max range.
3305
+ *
3306
+ * @param date - Date to check
3307
+ * @param min - Minimum allowed date (inclusive)
3308
+ * @param max - Maximum allowed date (inclusive)
3309
+ * @returns True if date is within range or no constraints exist
3310
+ *
3311
+ * Time complexity: O(1)
3312
+ * Space complexity: O(1)
3313
+ */
3314
+ export declare function isDateInRange(date: Date, min?: Date | null, max?: Date | null): boolean;
3315
+
3316
+ /**
3317
+ * Check if two dates represent the same calendar day (ignoring time).
3318
+ *
3319
+ * @param d1 - First date
3320
+ * @param d2 - Second date
3321
+ * @returns True if both dates are the same day
3322
+ *
3323
+ * Time complexity: O(1)
3324
+ * Space complexity: O(1)
3325
+ */
3326
+ export declare function isSameDate(d1: Date | null, d2: Date | null): boolean;
3327
+
3328
+ /**
3329
+ * Validates if a string is a valid time format (HH:mm)
3330
+ */
3331
+ export declare function isValidTimeString(value: string): boolean;
3332
+
3333
+ export declare interface LegendItem {
3334
+ label: string;
3335
+ color: string;
3336
+ hidden: boolean;
3337
+ datasetIndex: number;
3338
+ }
3339
+
3340
+ export declare const LineChart: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
3341
+
3342
+ export declare interface LineChartProps {
3343
+ /** X-axis labels */
3344
+ labels: string[];
3345
+ /** Data series */
3346
+ series: LineChartSeries[];
3347
+ /** Chart height */
3348
+ height?: string | number;
3349
+ /** Show area fill under lines */
3350
+ fill?: boolean;
3351
+ /** Line curve tension (0 = straight, 0.4 = smooth) */
3352
+ tension?: number;
3353
+ /** Show points on the line */
3354
+ showPoints?: boolean;
3355
+ /** Point radius */
3356
+ pointRadius?: number;
3357
+ /** Show grid lines */
3358
+ showGrid?: boolean;
3359
+ /** Show X axis */
3360
+ showXAxis?: boolean;
3361
+ /** Show Y axis */
3362
+ showYAxis?: boolean;
3363
+ /** Accessible label */
3364
+ ariaLabel?: string;
3365
+ /** Show built-in legend */
3366
+ showLegend?: boolean;
3367
+ }
3368
+
3369
+ export declare interface LineChartSeries {
3370
+ name: string;
3371
+ data: number[];
3372
+ }
3373
+
3374
+ /**
3375
+ * Mark file as failed
3376
+ */
3377
+ declare function markError(fileId: string, error: string): void;
3378
+
3379
+ /**
3380
+ * Mark file as successfully uploaded
3381
+ */
3382
+ declare function markSuccess(fileId: string): void;
3383
+
3384
+ declare type MaybeRef<T> = T | Ref<T>;
3385
+
3386
+ export declare const Modal: __VLS_WithTemplateSlots_36<typeof __VLS_component_34, __VLS_TemplateResult_34["slots"]>;
3387
+
3388
+ export declare interface ModalProps {
3389
+ /** Controls visibility (v-model) */
3390
+ modelValue?: boolean;
3391
+ /** Optional header title */
3392
+ title?: string;
3393
+ /** Modal size */
3394
+ size?: ModalSize;
3395
+ /** Prevents closing via backdrop click or Escape key */
3396
+ persistent?: boolean;
3397
+ }
3398
+
3399
+ export declare type ModalSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
3400
+
3401
+ export declare type Mood = 'warm' | 'cool' | 'vibrant' | 'muted' | 'earthy';
3402
+
3403
+ export declare type Motion = 'minimal' | 'smooth' | 'spring' | 'snappy';
3404
+
3405
+ /**
3406
+ * Normalize a range to ensure start <= end.
3407
+ *
3408
+ * @param start - First selected date
3409
+ * @param end - Second selected date
3410
+ * @returns Tuple [start, end] in chronological order
3411
+ *
3412
+ * Time complexity: O(1)
3413
+ * Space complexity: O(1)
3414
+ */
3415
+ export declare function normalizeRange(start: Date, end: Date): [Date, Date];
3416
+
3417
+ export declare interface OKLCH {
3418
+ l: number;
3419
+ c: number;
3420
+ h: number;
3421
+ }
3422
+
3423
+ export declare function oklchToHsv(oklch: OKLCH): HSV;
3424
+
3425
+ export declare function oklchToRgb(oklch: OKLCH): RGB;
3426
+
3427
+ declare function open_2(): void;
3428
+
3429
+ declare function openCalendar(): void;
3430
+
3431
+ export declare type PageItem = number | 'ellipsis';
3432
+
3433
+ export declare const Pagination: DefineComponent<PaginationProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3434
+ "update:modelValue": (value: number) => any;
3435
+ }, string, PublicProps, Readonly<PaginationProps> & Readonly<{
3436
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3437
+ }>, {
3438
+ size: "sm" | "md" | "lg";
3439
+ disabled: boolean;
3440
+ pageSize: number;
3441
+ siblingCount: number;
3442
+ showEdges: boolean;
3443
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
3444
+
3445
+ export declare interface PaginationConfig {
3446
+ /** Default page size */
3447
+ pageSize?: number;
3448
+ /** Available page size options */
3449
+ pageSizeOptions?: number[];
3450
+ /** Number of sibling pages to show */
3451
+ siblingCount?: number;
3452
+ /** Show first/last page numbers */
3453
+ showEdges?: boolean;
3454
+ }
3455
+
3456
+ export declare interface PaginationProps {
3457
+ /** Current active page (v-model) */
3458
+ modelValue: number;
3459
+ /** Total count of items */
3460
+ total: number;
3461
+ /** Items per page */
3462
+ pageSize?: number;
3463
+ /** Number of pages to show on each side of current page */
3464
+ siblingCount?: number;
3465
+ /** Whether to always show first/last page numbers */
3466
+ showEdges?: boolean;
3467
+ /** Size variant */
3468
+ size?: 'sm' | 'md' | 'lg';
3469
+ /** Disable all controls */
3470
+ disabled?: boolean;
3471
+ }
3472
+
3473
+ export declare function parseColorString(color: string): {
3474
+ hsv: HSV;
3475
+ alpha: number;
3476
+ format: 'hex' | 'rgb' | 'oklch';
3477
+ } | null;
3478
+
3479
+ /**
3480
+ * Parse an ISO 8601 date string (YYYY-MM-DD) to a Date object.
3481
+ * Returns null for invalid input.
3482
+ *
3483
+ * @param dateString - ISO date string in YYYY-MM-DD format
3484
+ * @returns Date object or null if invalid
3485
+ *
3486
+ * Time complexity: O(1)
3487
+ * Space complexity: O(1)
3488
+ */
3489
+ export declare function parseDate(dateString: string): Date | null;
3490
+
3491
+ /**
3492
+ * Time parsing and formatting utilities for TimePicker component
3493
+ */
3494
+ export declare interface ParsedTime {
3495
+ hours: number;
3496
+ minutes: number;
3497
+ }
3498
+
3499
+ /**
3500
+ * Parses fuzzy time input strings into structured time object.
3501
+ * Supports formats: "1p", "1:30pm", "13:00", "100pm", "1 30 am", etc.
3502
+ */
3503
+ export declare function parseTime(input: string): ParsedTime | null;
3504
+
3505
+ export declare type Placement = 'top' | 'bottom' | 'left' | 'right';
3506
+
3507
+ declare interface PointClickData {
3508
+ datasetIndex: number;
3509
+ index: number;
3510
+ label: string;
3511
+ value: number | string;
3512
+ datasetLabel: string;
3513
+ }
3514
+
3515
+ export declare const Popover: __VLS_WithTemplateSlots_37<typeof __VLS_component_35, __VLS_TemplateResult_35["slots"]>;
3516
+
3517
+ export declare type PopoverPlacement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end';
3518
+
3519
+ export declare interface PopoverProps {
3520
+ /** Popover placement relative to trigger */
3521
+ placement?: PopoverPlacement;
3522
+ /** Offset from trigger (px) */
3523
+ offset?: number;
3524
+ /** Show arrow pointing to trigger */
3525
+ arrow?: boolean;
3526
+ /** Disable the popover */
3527
+ disabled?: boolean;
3528
+ /** Width of the popover ('auto' or px value) */
3529
+ width?: 'auto' | number;
3530
+ /** Close on Escape key */
3531
+ closeOnEscape?: boolean;
3532
+ /** Close when clicking outside */
3533
+ closeOnClickOutside?: boolean;
3534
+ /** Lock body scroll when open */
3535
+ lockScroll?: boolean;
3536
+ /** Trap focus inside popover */
3537
+ trapFocus?: boolean;
3538
+ }
3539
+
3540
+ declare interface PositionResult {
3541
+ top: number;
3542
+ left: number;
3543
+ actualPlacement: Placement;
3544
+ }
3545
+
3546
+ export declare const Progress: DefineComponent<ProgressProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ProgressProps> & Readonly<{}>, {
3547
+ variant: ProgressVariant;
3548
+ size: ProgressSize;
3549
+ color: ProgressColor;
3550
+ value: number;
3551
+ indeterminate: boolean;
3552
+ striped: boolean;
3553
+ animated: boolean;
3554
+ showValue: boolean;
3555
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3556
+
3557
+ export declare type ProgressColor = 'primary' | 'success' | 'warning' | 'error';
3558
+
3559
+ export declare interface ProgressProps {
3560
+ /** Current progress value (0-100) */
3561
+ value?: number;
3562
+ /** Display variant */
3563
+ variant?: ProgressVariant;
3564
+ /** Size of the progress indicator */
3565
+ size?: ProgressSize;
3566
+ /** Color theme */
3567
+ color?: ProgressColor;
3568
+ /** Show indeterminate animation (unknown duration) */
3569
+ indeterminate?: boolean;
3570
+ /** Show diagonal stripes (linear only) */
3571
+ striped?: boolean;
3572
+ /** Animate stripes (linear only, requires striped) */
3573
+ animated?: boolean;
3574
+ /** Show percentage value label */
3575
+ showValue?: boolean;
3576
+ /** Accessible label describing the progress */
3577
+ label?: string;
3578
+ /** Stroke width for circular variant (default auto based on size) */
3579
+ strokeWidth?: number;
3580
+ }
3581
+
3582
+ export declare type ProgressSize = 'sm' | 'md' | 'lg';
3583
+
3584
+ export declare type ProgressVariant = 'linear' | 'circular';
3585
+
3586
+ export declare const Radio: DefineComponent<RadioProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3587
+ "update:modelValue": (value: string | number | boolean) => any;
3588
+ change: (value: string | number | boolean) => any;
3589
+ }, string, PublicProps, Readonly<RadioProps> & Readonly<{
3590
+ "onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
3591
+ onChange?: ((value: string | number | boolean) => any) | undefined;
3592
+ }>, {
3593
+ size: "sm" | "md" | "lg";
3594
+ disabled: boolean;
3595
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
3596
+
3597
+ export declare interface RadioProps {
3598
+ /** Selected value (v-model) - shared across radio group */
3599
+ modelValue?: string | number | boolean;
3600
+ /** Value of this radio option */
3601
+ value: string | number | boolean;
3602
+ /** Radio size */
3603
+ size?: 'sm' | 'md' | 'lg';
3604
+ /** Disabled state */
3605
+ disabled?: boolean;
3606
+ /** Visible label text */
3607
+ label?: string;
3608
+ /** Description text below label */
3609
+ description?: string;
3610
+ /** HTML name for radio group (required for native behavior) */
3611
+ name?: string;
3612
+ /** ID for label association */
3613
+ id?: string;
3614
+ }
3615
+
3616
+ /**
3617
+ * Computed range class for a date cell in range mode.
3618
+ */
3619
+ export declare type RangeClass = 'start' | 'end' | 'in-range' | null;
3620
+
3621
+ /**
3622
+ * Range selection state for two-click selection.
3623
+ */
3624
+ export declare type RangeState = 'idle' | 'selecting';
3625
+
3626
+ export declare const Rating: DefineComponent<RatingProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3627
+ "update:modelValue": (value: number) => any;
3628
+ hover: (value: number | null) => any;
3629
+ }, string, PublicProps, Readonly<RatingProps> & Readonly<{
3630
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3631
+ onHover?: ((value: number | null) => any) | undefined;
3632
+ }>, {
3633
+ label: string;
3634
+ size: "sm" | "md" | "lg";
3635
+ max: number;
3636
+ readonly: boolean;
3637
+ allowHalf: boolean;
3638
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3639
+
3640
+ export declare interface RatingProps {
3641
+ /** Current rating value (0 to max) */
3642
+ modelValue: number;
3643
+ /** Maximum rating value */
3644
+ max?: number;
3645
+ /** Read-only mode */
3646
+ readonly?: boolean;
3647
+ /** Enable half-star precision */
3648
+ allowHalf?: boolean;
3649
+ /** Size variant */
3650
+ size?: 'sm' | 'md' | 'lg';
3651
+ /** Accessible label */
3652
+ label?: string;
3653
+ }
3654
+
3655
+ declare function replaceFile(file: UploadFile): void;
3656
+
3657
+ /**
3658
+ * Reset icons to defaults. Useful for testing.
3659
+ */
3660
+ export declare function resetIcons(): void;
3661
+
3662
+ export declare interface ResponsiveColumns {
3663
+ default?: ColumnCount;
3664
+ sm?: ColumnCount;
3665
+ md?: ColumnCount;
3666
+ lg?: ColumnCount;
3667
+ xl?: ColumnCount;
3668
+ }
3669
+
3670
+ export declare interface ResponsiveSpan {
3671
+ default?: SpanCount;
3672
+ sm?: SpanCount;
3673
+ md?: SpanCount;
3674
+ lg?: SpanCount;
3675
+ xl?: SpanCount;
3676
+ }
3677
+
3678
+ export declare interface RGB {
3679
+ r: number;
3680
+ g: number;
3681
+ b: number;
3682
+ }
3683
+
3684
+ export declare interface RGBA extends RGB {
3685
+ a: number;
3686
+ }
3687
+
3688
+ export declare function rgbToHex(rgb: RGB): string;
3689
+
3690
+ export declare function rgbToHsv(rgb: RGB): HSV;
3691
+
3692
+ export declare function rgbToOklch(rgb: RGB): OKLCH;
3693
+
3694
+ declare interface SafeTriangleState {
3695
+ active: boolean;
3696
+ points: {
3697
+ x: number;
3698
+ y: number;
3699
+ }[];
3700
+ submenuId: string | null;
3701
+ }
3702
+
3703
+ declare interface SegmentClickData {
3704
+ segment: DonutChartSegment;
3705
+ index: number;
3706
+ percentage: number;
3707
+ }
3708
+
3709
+ export declare const SegmentedControl: DefineComponent<SegmentedControlProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3710
+ "update:modelValue": (value: string | number) => any;
3711
+ change: (value: string | number) => any;
3712
+ }, string, PublicProps, Readonly<SegmentedControlProps> & Readonly<{
3713
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
3714
+ onChange?: ((value: string | number) => any) | undefined;
3715
+ }>, {
3716
+ size: "sm" | "md" | "lg";
3717
+ disabled: boolean;
3718
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
3719
+ containerRef: HTMLDivElement;
3720
+ }, HTMLDivElement>;
3721
+
3722
+ export declare interface SegmentedControlProps {
3723
+ /** Array of options to display */
3724
+ options: SegmentedOption[];
3725
+ /** Selected value (v-model) */
3726
+ modelValue?: string | number;
3727
+ /** Control size */
3728
+ size?: 'sm' | 'md' | 'lg';
3729
+ /** Disabled state */
3730
+ disabled?: boolean;
3731
+ /** Accessible label for the group */
3732
+ label?: string;
3733
+ /** HTML name for form submission */
3734
+ name?: string;
3735
+ /** ID for the control */
3736
+ id?: string;
3737
+ }
3738
+
3739
+ export declare interface SegmentedOption {
3740
+ label: string;
3741
+ value: string | number;
3742
+ disabled?: boolean;
3743
+ }
3744
+
3745
+ export declare const Select: DefineComponent<SelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3746
+ "update:modelValue": (value: string | number | null) => any;
3747
+ change: (value: string | number | null) => any;
3748
+ }, string, PublicProps, Readonly<SelectProps> & Readonly<{
3749
+ "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
3750
+ onChange?: ((value: string | number | null) => any) | undefined;
3751
+ }>, {
3752
+ modelValue: string | number | null;
3753
+ size: "xs" | "sm" | "md" | "lg" | "xl";
3754
+ disabled: boolean;
3755
+ required: boolean;
3756
+ placeholder: string;
3757
+ block: boolean;
3758
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
3759
+ triggerRef: HTMLButtonElement;
3760
+ listboxRef: HTMLUListElement;
3761
+ }, HTMLDivElement>;
3762
+
3763
+ export declare interface SelectOption {
3764
+ /** Display text shown to user */
3765
+ label: string;
3766
+ /** Value stored in v-model */
3767
+ value: string | number;
3768
+ /** Disable this option */
3769
+ disabled?: boolean;
3770
+ }
3771
+
3772
+ export declare interface SelectProps {
3773
+ /** Selected value (v-model) */
3774
+ modelValue?: string | number | null;
3775
+ /** Available options */
3776
+ options: SelectOption[];
3777
+ /** Label text above select */
3778
+ label?: string;
3779
+ /** Placeholder when no selection */
3780
+ placeholder?: string;
3781
+ /** Helper text below select */
3782
+ hint?: string;
3783
+ /** Error message (also sets error state) */
3784
+ error?: string;
3785
+ /** Select size - matches Input heights */
3786
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
3787
+ /** Disabled state */
3788
+ disabled?: boolean;
3789
+ /** Required field */
3790
+ required?: boolean;
3791
+ /** Make select full width */
3792
+ block?: boolean;
3793
+ /** HTML id attribute */
3794
+ id?: string;
3795
+ /** HTML name attribute (for forms) */
3796
+ name?: string;
3797
+ }
3798
+
3799
+ export declare interface SidebarContext {
3800
+ collapsed: ComputedRef<boolean>;
3801
+ expandedWidth: Ref<string>;
3802
+ collapsedWidth: Ref<string>;
3803
+ }
3804
+
3805
+ export declare const SidebarGroup: __VLS_WithTemplateSlots_41<typeof __VLS_component_39, __VLS_TemplateResult_39["slots"]>;
3806
+
3807
+ export declare interface SidebarGroupContext {
3808
+ groupId: string;
3809
+ }
3810
+
3811
+ export declare const SidebarGroupKey: InjectionKey<SidebarGroupContext>;
3812
+
3813
+ export declare interface SidebarGroupProps {
3814
+ /** Group label displayed when expanded */
3815
+ label?: string;
3816
+ /** Show separator line when collapsed */
3817
+ showSeparator?: boolean;
3818
+ }
3819
+
3820
+ export declare const SidebarItem: __VLS_WithTemplateSlots_40<typeof __VLS_component_38, __VLS_TemplateResult_38["slots"]>;
3821
+
3822
+ export declare interface SidebarItemProps {
3823
+ /** Text label for the item */
3824
+ label: string;
3825
+ /** Icon component or HugeIcons data */
3826
+ icon?: IconInput_2;
3827
+ /** Whether this item is currently active */
3828
+ active?: boolean;
3829
+ /** Disable this item */
3830
+ disabled?: boolean;
3831
+ /** Render as a different element (button, a, RouterLink) */
3832
+ as?: string | Component;
3833
+ /** href for anchor elements */
3834
+ href?: string;
3835
+ /** Target for anchor elements */
3836
+ target?: string;
3837
+ /** Route object for router-link */
3838
+ to?: string | Record<string, unknown>;
3839
+ }
3840
+
3841
+ export declare const SidebarKey: InjectionKey<SidebarContext>;
3842
+
3843
+ export declare const SidebarLayout: __VLS_WithTemplateSlots_38<typeof __VLS_component_36, __VLS_TemplateResult_36["slots"]>;
3844
+
3845
+ export declare interface SidebarLayoutProps {
3846
+ /** Position of the sidebar */
3847
+ sidebarPosition?: 'left' | 'right';
3848
+ }
3849
+
3850
+ export declare const SidebarRoot: __VLS_WithTemplateSlots_39<typeof __VLS_component_37, __VLS_TemplateResult_37["slots"]>;
3851
+
3852
+ export declare interface SidebarRootProps {
3853
+ /** Whether the sidebar is collapsed */
3854
+ modelValue?: boolean;
3855
+ /** Width when expanded */
3856
+ expandedWidth?: string;
3857
+ /** Width when collapsed */
3858
+ collapsedWidth?: string;
3859
+ }
3860
+
3861
+ export declare const Skeleton: DefineComponent<SkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SkeletonProps> & Readonly<{}>, {
3862
+ variant: SkeletonVariant;
3863
+ animation: "shimmer" | "pulse" | "none";
3864
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
3865
+
3866
+ export declare interface SkeletonProps {
3867
+ /** Shape variant */
3868
+ variant?: SkeletonVariant;
3869
+ /** Width (px, %, or CSS value) */
3870
+ width?: string | number;
3871
+ /** Height (px or CSS value) */
3872
+ height?: string | number;
3873
+ /** Animation style */
3874
+ animation?: 'shimmer' | 'pulse' | 'none';
3875
+ }
3876
+
3877
+ export declare type SkeletonVariant = 'text' | 'circle' | 'rect';
3878
+
3879
+ export declare const Slider: DefineComponent<SliderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3880
+ "update:modelValue": (value: number | [number, number]) => any;
3881
+ change: (value: number | [number, number]) => any;
3882
+ }, string, PublicProps, Readonly<SliderProps> & Readonly<{
3883
+ "onUpdate:modelValue"?: ((value: number | [number, number]) => any) | undefined;
3884
+ onChange?: ((value: number | [number, number]) => any) | undefined;
3885
+ }>, {
3886
+ size: "sm" | "md" | "lg";
3887
+ disabled: boolean;
3888
+ max: number;
3889
+ step: number;
3890
+ min: number;
3891
+ showTooltip: boolean;
3892
+ showTicks: boolean;
3893
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
3894
+ trackRef: HTMLDivElement;
3895
+ }, HTMLDivElement>;
3896
+
3897
+ export declare interface SliderProps {
3898
+ /** Current value (number for single, [min, max] tuple for range) */
3899
+ modelValue: number | [number, number];
3900
+ /** Minimum value */
3901
+ min?: number;
3902
+ /** Maximum value */
3903
+ max?: number;
3904
+ /** Step increment */
3905
+ step?: number;
3906
+ /** Disabled state */
3907
+ disabled?: boolean;
3908
+ /** Show tooltip while dragging */
3909
+ showTooltip?: boolean;
3910
+ /** Show tick marks at each step */
3911
+ showTicks?: boolean;
3912
+ /** Size variant */
3913
+ size?: 'sm' | 'md' | 'lg';
3914
+ }
3915
+
3916
+ export declare type SortDirection = 'asc' | 'desc' | null;
3917
+
3918
+ export declare interface SortState {
3919
+ key: string | null;
3920
+ direction: SortDirection;
3921
+ }
3922
+
3923
+ export declare type SpacingToken = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 8 | 10 | 12;
3924
+
3925
+ export declare type SpanCount = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'full';
3926
+
3927
+ export declare const Spinner: DefineComponent<SpinnerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SpinnerProps> & Readonly<{}>, {
3928
+ label: string;
3929
+ size: "xs" | "sm" | "md" | "lg" | "xl" | string;
3930
+ speed: number;
3931
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3932
+
3933
+ export declare interface SpinnerProps {
3934
+ /** Predefined size or custom value */
3935
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | string;
3936
+ /** Animation speed in seconds */
3937
+ speed?: number;
3938
+ /** Accessible label for screen readers */
3939
+ label?: string;
3940
+ }
3941
+
3942
+ export declare interface SpireConfig {
3943
+ theme?: Theme;
3944
+ mood?: Mood;
3945
+ depth?: Depth;
3946
+ motion?: Motion;
3947
+ texture?: Texture;
3948
+ }
3949
+
3950
+ export declare const spireConfigKey: InjectionKey<ComputedRef<SpireConfig>>;
3951
+
3952
+ export declare const SpireProvider: __VLS_WithTemplateSlots_42<DefineComponent<SpireProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SpireProviderProps> & Readonly<{}>, {
3953
+ tag: string;
3954
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
3955
+ default?(_: {}): any;
3956
+ }>;
3957
+
3958
+ export declare interface SpireProviderProps {
3959
+ theme?: Theme;
3960
+ mood?: Mood;
3961
+ depth?: Depth;
3962
+ motion?: Motion;
3963
+ texture?: Texture;
3964
+ tag?: string;
3965
+ }
3966
+
3967
+ export declare const Stack: __VLS_WithTemplateSlots_58<typeof __VLS_component_55, __VLS_TemplateResult_55["slots"]>;
3968
+
3969
+ export declare interface StackProps {
3970
+ /** Flex direction */
3971
+ direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
3972
+ /** Gap using spacing tokens (maps to var(--space-X)) */
3973
+ gap?: SpacingToken;
3974
+ /** Align items */
3975
+ align?: 'start' | 'center' | 'end' | 'stretch' | 'baseline';
3976
+ /** Justify content */
3977
+ justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
3978
+ /** Enable flex wrap */
3979
+ wrap?: boolean;
3980
+ /** Use inline-flex instead of flex */
3981
+ inline?: boolean;
3982
+ /** HTML tag to render */
3983
+ as?: string;
3984
+ }
3985
+
3986
+ export declare const StepperContent: __VLS_WithTemplateSlots_46<typeof __VLS_component_43, __VLS_TemplateResult_43["slots"]>;
3987
+
3988
+ export declare interface StepperContext {
3989
+ orientation: Ref<StepperOrientation>;
3990
+ linear: Ref<boolean>;
3991
+ currentStep: Ref<number>;
3992
+ goToStep: (step: number) => void;
3993
+ getStepState: (index: number) => StepState;
3994
+ canNavigateTo: (index: number) => boolean;
3995
+ registerStep: (index: number) => void;
3996
+ stepCount: Ref<number>;
3997
+ }
3998
+
3999
+ export declare const StepperItem: __VLS_WithTemplateSlots_44<typeof __VLS_component_41, __VLS_TemplateResult_41["slots"]>;
4000
+
4001
+ export declare interface StepperItemContext {
4002
+ index: number;
4003
+ state: ComputedRef<StepState>;
4004
+ isDisabled: ComputedRef<boolean>;
4005
+ triggerId: string;
4006
+ contentId: string;
4007
+ goToStep: () => void;
4008
+ }
4009
+
4010
+ export declare const StepperItemKey: InjectionKey<StepperItemContext>;
4011
+
4012
+ export declare interface StepperItemProps {
4013
+ /** Step index (0-based) */
4014
+ index: number;
4015
+ /** Disable this step */
4016
+ disabled?: boolean;
4017
+ }
4018
+
4019
+ export declare const StepperKey: InjectionKey<StepperContext>;
4020
+
4021
+ export declare type StepperOrientation = 'horizontal' | 'vertical';
4022
+
4023
+ export declare const StepperRoot: __VLS_WithTemplateSlots_43<typeof __VLS_component_40, __VLS_TemplateResult_40["slots"]>;
4024
+
4025
+ export declare interface StepperRootProps {
4026
+ /** Current step index (0-based, v-model) */
4027
+ modelValue?: number;
4028
+ /** Layout direction */
4029
+ orientation?: StepperOrientation;
4030
+ /** Prevents clicking future steps */
4031
+ linear?: boolean;
4032
+ /** Mark specific steps as having errors */
4033
+ errorSteps?: number[];
4034
+ }
4035
+
4036
+ export declare const StepperSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
4037
+
4038
+ export declare const StepperTrigger: __VLS_WithTemplateSlots_45<typeof __VLS_component_42, __VLS_TemplateResult_42["slots"]>;
4039
+
4040
+ export declare interface StepperTriggerProps {
4041
+ /** Custom icon to display instead of step number */
4042
+ icon?: Component;
4043
+ }
4044
+
4045
+ export declare type StepState = 'completed' | 'current' | 'pending' | 'error';
4046
+
4047
+ declare interface SubmenuRegistration {
4048
+ id: string;
4049
+ triggerEl: HTMLElement;
4050
+ open: () => void;
4051
+ close: () => void;
4052
+ }
4053
+
4054
+ export declare const Switch: DefineComponent<SwitchProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4055
+ "update:modelValue": (value: boolean) => any;
4056
+ change: (value: boolean) => any;
4057
+ }, string, PublicProps, Readonly<SwitchProps> & Readonly<{
4058
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
4059
+ onChange?: ((value: boolean) => any) | undefined;
4060
+ }>, {
4061
+ modelValue: boolean;
4062
+ size: "sm" | "md" | "lg";
4063
+ disabled: boolean;
4064
+ loading: boolean;
4065
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
4066
+
4067
+ export declare interface SwitchProps {
4068
+ /** Checked state (v-model) */
4069
+ modelValue?: boolean;
4070
+ /** Switch size */
4071
+ size?: 'sm' | 'md' | 'lg';
4072
+ /** Disabled state */
4073
+ disabled?: boolean;
4074
+ /** Loading state - shows spinner in thumb */
4075
+ loading?: boolean;
4076
+ /** Accessible label (required for a11y if no visible label) */
4077
+ label?: string;
4078
+ /** HTML name for form submission */
4079
+ name?: string;
4080
+ /** ID for label association */
4081
+ id?: string;
4082
+ }
4083
+
4084
+ export declare interface TabItem {
4085
+ /** Display label */
4086
+ label: string;
4087
+ /** Unique value (used for v-model and slot name) */
4088
+ value: string | number;
4089
+ /** Disable this tab */
4090
+ disabled?: boolean;
4091
+ /** Optional icon */
4092
+ icon?: IconInput;
4093
+ }
4094
+
4095
+ export declare const Tabs: __VLS_WithTemplateSlots_47<typeof __VLS_component_44, __VLS_TemplateResult_44["slots"]>;
4096
+
4097
+ export declare interface TabsProps {
4098
+ /** Currently active tab value (v-model) */
4099
+ modelValue: string | number;
4100
+ /** Tab items configuration */
4101
+ items: TabItem[];
4102
+ /** Visual variant */
4103
+ variant?: 'line' | 'pill';
4104
+ /** Full width tabs */
4105
+ block?: boolean;
4106
+ }
4107
+
4108
+ declare const Text_2: __VLS_WithTemplateSlots_49<typeof __VLS_component_46, __VLS_TemplateResult_46["slots"]>;
4109
+ export { Text_2 as Text }
4110
+
4111
+ export declare const Textarea: __VLS_WithTemplateSlots_48<typeof __VLS_component_45, __VLS_TemplateResult_45["slots"]>;
4112
+
4113
+ export declare interface TextareaProps {
4114
+ /** Textarea value (v-model) */
4115
+ modelValue?: string;
4116
+ /** Label text above the textarea */
4117
+ label?: string;
4118
+ /** Placeholder text */
4119
+ placeholder?: string;
4120
+ /** Helper text below textarea */
4121
+ hint?: string;
4122
+ /** Error message (also sets error state) */
4123
+ error?: string;
4124
+ /** Number of visible rows */
4125
+ rows?: number;
4126
+ /** Disabled state */
4127
+ disabled?: boolean;
4128
+ /** Read-only state */
4129
+ readonly?: boolean;
4130
+ /** Required field */
4131
+ required?: boolean;
4132
+ /** Auto-grow as user types */
4133
+ autosize?: boolean;
4134
+ /** Maximum height in pixels (for autosize) */
4135
+ maxHeight?: number;
4136
+ /** Maximum character count */
4137
+ maxLength?: number;
4138
+ /** Show character counter */
4139
+ showCount?: boolean;
4140
+ /** Icon on the left side (top-aligned) */
4141
+ iconLeft?: IconInput;
4142
+ /** HTML id attribute (auto-generated if not provided) */
4143
+ id?: string;
4144
+ /** HTML name attribute */
4145
+ name?: string;
4146
+ /** Make textarea full width */
4147
+ block?: boolean;
4148
+ }
4149
+
4150
+ export declare interface TextProps {
4151
+ /** Semantic HTML tag */
4152
+ as?: TextTag;
4153
+ /** Font size */
4154
+ size?: TextSize;
4155
+ /** Font weight */
4156
+ weight?: TextWeight;
4157
+ /** Text alignment */
4158
+ align?: 'left' | 'center' | 'right' | 'justify';
4159
+ /** Use secondary (muted) color */
4160
+ muted?: boolean;
4161
+ /** Single-line truncation with ellipsis */
4162
+ truncate?: boolean;
4163
+ /** Multi-line clamping (number of lines) */
4164
+ clamp?: number;
4165
+ }
4166
+
4167
+ declare type TextSize = 'xs' | 'sm' | 'base' | 'md' | 'lg' | 'xl';
4168
+
4169
+ declare type TextTag = 'p' | 'span' | 'div' | 'label' | 'li';
4170
+
4171
+ export declare type Texture = 'none' | 'subtle' | 'medium';
4172
+
4173
+ declare type TextWeight = 'regular' | 'medium' | 'semibold' | 'bold';
4174
+
4175
+ export declare type Theme = 'light' | 'dark';
4176
+
4177
+ export declare type TimeFormat = '12h' | '24h';
4178
+
4179
+ export declare const Timeline: __VLS_WithTemplateSlots_50<typeof __VLS_component_47, __VLS_TemplateResult_47["slots"]>;
4180
+
4181
+ export declare type TimelineAlign = 'left' | 'right' | 'alternate';
4182
+
4183
+ export declare interface TimelineContext {
4184
+ align: Ref<TimelineAlign>;
4185
+ lineStyle: Ref<TimelineLineStyle>;
4186
+ registerItem: () => number;
4187
+ itemCount: Ref<number>;
4188
+ }
4189
+
4190
+ export declare type TimelineDotColor = 'primary' | 'success' | 'warning' | 'danger' | 'neutral';
4191
+
4192
+ export declare const TimelineItem: __VLS_WithTemplateSlots_51<typeof __VLS_component_48, __VLS_TemplateResult_48["slots"]>;
4193
+
4194
+ export declare interface TimelineItemProps {
4195
+ /** Dot color variant */
4196
+ dotColor?: TimelineDotColor;
4197
+ /** Custom icon in dot */
4198
+ dotIcon?: Component;
4199
+ }
4200
+
4201
+ export declare const TimelineKey: InjectionKey<TimelineContext>;
4202
+
4203
+ export declare type TimelineLineStyle = 'solid' | 'dashed' | 'dotted';
4204
+
4205
+ export declare interface TimelineProps {
4206
+ /** Content alignment relative to the spine */
4207
+ align?: TimelineAlign;
4208
+ /** Connector line style */
4209
+ lineStyle?: TimelineLineStyle;
4210
+ }
4211
+
4212
+ export declare const TimePicker: DefineComponent<TimePickerProps, {
4213
+ open: () => void | undefined;
4214
+ close: () => void | undefined;
4215
+ toggle: () => void | undefined;
4216
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4217
+ "update:modelValue": (value: string) => any;
4218
+ blur: (event: FocusEvent) => any;
4219
+ focus: (event: FocusEvent) => any;
4220
+ }, string, PublicProps, Readonly<TimePickerProps> & Readonly<{
4221
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
4222
+ onBlur?: ((event: FocusEvent) => any) | undefined;
4223
+ onFocus?: ((event: FocusEvent) => any) | undefined;
4224
+ }>, {
4225
+ size: "xs" | "sm" | "md" | "lg" | "xl";
4226
+ disabled: boolean;
4227
+ required: boolean;
4228
+ block: boolean;
4229
+ format: TimeFormat;
4230
+ minuteStep: number;
4231
+ closeOnSelect: boolean;
4232
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
4233
+ popoverRef: ({
4234
+ $: ComponentInternalInstance;
4235
+ $data: {};
4236
+ $props: {
4237
+ readonly placement?: PopoverPlacement | undefined;
4238
+ readonly offset?: number | undefined;
4239
+ readonly arrow?: boolean | undefined;
4240
+ readonly disabled?: boolean | undefined;
4241
+ readonly width?: "auto" | number | undefined;
4242
+ readonly closeOnEscape?: boolean | undefined;
4243
+ readonly closeOnClickOutside?: boolean | undefined;
4244
+ readonly lockScroll?: boolean | undefined;
4245
+ readonly trapFocus?: boolean | undefined;
4246
+ readonly onClose?: (() => any) | undefined;
4247
+ readonly onOpen?: (() => any) | undefined;
4248
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
4249
+ $attrs: {
4250
+ [x: string]: unknown;
4251
+ };
4252
+ $refs: {
4253
+ [x: string]: unknown;
4254
+ } & {
4255
+ triggerRef: HTMLDivElement;
4256
+ popoverRef: HTMLDivElement;
4257
+ };
4258
+ $slots: Readonly<{
4259
+ [name: string]: Slot<any> | undefined;
4260
+ }>;
4261
+ $root: ComponentPublicInstance | null;
4262
+ $parent: ComponentPublicInstance | null;
4263
+ $host: Element | null;
4264
+ $emit: ((event: "close") => void) & ((event: "open") => void);
4265
+ $el: HTMLDivElement;
4266
+ $options: ComponentOptionsBase<Readonly<PopoverProps> & Readonly<{
4267
+ onClose?: (() => any) | undefined;
4268
+ onOpen?: (() => any) | undefined;
4269
+ }>, {
4270
+ open: () => void;
4271
+ close: () => void;
4272
+ toggle: () => void;
4273
+ isOpen: Ref<boolean, boolean>;
4274
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4275
+ close: () => any;
4276
+ open: () => any;
4277
+ }, string, {
4278
+ disabled: boolean;
4279
+ width: "auto" | number;
4280
+ placement: PopoverPlacement;
4281
+ offset: number;
4282
+ arrow: boolean;
4283
+ closeOnEscape: boolean;
4284
+ closeOnClickOutside: boolean;
4285
+ lockScroll: boolean;
4286
+ trapFocus: boolean;
4287
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
4288
+ beforeCreate?: (() => void) | (() => void)[];
4289
+ created?: (() => void) | (() => void)[];
4290
+ beforeMount?: (() => void) | (() => void)[];
4291
+ mounted?: (() => void) | (() => void)[];
4292
+ beforeUpdate?: (() => void) | (() => void)[];
4293
+ updated?: (() => void) | (() => void)[];
4294
+ activated?: (() => void) | (() => void)[];
4295
+ deactivated?: (() => void) | (() => void)[];
4296
+ beforeDestroy?: (() => void) | (() => void)[];
4297
+ beforeUnmount?: (() => void) | (() => void)[];
4298
+ destroyed?: (() => void) | (() => void)[];
4299
+ unmounted?: (() => void) | (() => void)[];
4300
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
4301
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
4302
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
4303
+ };
4304
+ $forceUpdate: () => void;
4305
+ $nextTick: typeof nextTick;
4306
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
4307
+ } & Readonly<{
4308
+ disabled: boolean;
4309
+ width: "auto" | number;
4310
+ placement: PopoverPlacement;
4311
+ offset: number;
4312
+ arrow: boolean;
4313
+ closeOnEscape: boolean;
4314
+ closeOnClickOutside: boolean;
4315
+ lockScroll: boolean;
4316
+ trapFocus: boolean;
4317
+ }> & Omit<Readonly<PopoverProps> & Readonly<{
4318
+ onClose?: (() => any) | undefined;
4319
+ onOpen?: (() => any) | undefined;
4320
+ }>, "close" | "toggle" | "isOpen" | "open" | ("disabled" | "width" | "placement" | "offset" | "arrow" | "closeOnEscape" | "closeOnClickOutside" | "lockScroll" | "trapFocus")> & ShallowUnwrapRef< {
4321
+ open: () => void;
4322
+ close: () => void;
4323
+ toggle: () => void;
4324
+ isOpen: Ref<boolean, boolean>;
4325
+ }> & {} & ComponentCustomProperties & {} & {
4326
+ $slots: {
4327
+ trigger?(_: {
4328
+ open: boolean;
4329
+ toggle: () => void;
4330
+ close: () => void;
4331
+ }): any;
4332
+ default?(_: {
4333
+ close: () => void;
4334
+ }): any;
4335
+ };
4336
+ }) | null;
4337
+ hourColumnRef: HTMLDivElement;
4338
+ minuteColumnRef: HTMLDivElement;
4339
+ periodColumnRef: HTMLDivElement;
4340
+ }, HTMLDivElement>;
4341
+
4342
+ export declare interface TimePickerProps {
4343
+ /** Selected time in HH:mm format (24h) */
4344
+ modelValue?: string;
4345
+ /** Time display format */
4346
+ format?: TimeFormat;
4347
+ /** Minute step interval */
4348
+ minuteStep?: number;
4349
+ /** Label text above the input */
4350
+ label?: string;
4351
+ /** Placeholder text */
4352
+ placeholder?: string;
4353
+ /** Helper text below input */
4354
+ hint?: string;
4355
+ /** Error message (also sets error state) */
4356
+ error?: string;
4357
+ /** Input size */
4358
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4359
+ /** Disabled state */
4360
+ disabled?: boolean;
4361
+ /** Required field */
4362
+ required?: boolean;
4363
+ /** HTML id attribute */
4364
+ id?: string;
4365
+ /** HTML name attribute */
4366
+ name?: string;
4367
+ /** Make input full width */
4368
+ block?: boolean;
4369
+ /** Close popover when time is selected */
4370
+ closeOnSelect?: boolean;
4371
+ }
4372
+
4373
+ /**
4374
+ * Converts 24h hours to 12h format
4375
+ */
4376
+ export declare function to12Hour(hours: number): {
4377
+ hour: number;
4378
+ period: 'AM' | 'PM';
4379
+ };
4380
+
4381
+ /**
4382
+ * Converts 12h format to 24h hours
4383
+ */
4384
+ export declare function to24Hour(hour: number, period: 'AM' | 'PM'): number;
4385
+
4386
+ export declare interface Toast {
4387
+ /** Unique identifier */
4388
+ id: string;
4389
+ /** Toast title */
4390
+ title?: string;
4391
+ /** Toast message/description */
4392
+ message?: string;
4393
+ /** Visual variant */
4394
+ variant: ToastVariant;
4395
+ /** Auto-dismiss duration in ms */
4396
+ duration: number;
4397
+ /** Timestamp when created */
4398
+ createdAt: number;
4399
+ /** Single action button */
4400
+ action?: ToastAction;
4401
+ /** Click handler for toast body */
4402
+ onClick?: () => void;
4403
+ /** Avatar props for notification toasts */
4404
+ avatar?: {
4405
+ src?: string;
4406
+ name?: string;
4407
+ };
4408
+ }
4409
+
4410
+ export declare interface ToastAction {
4411
+ /** Action button label (keep short: Undo, Retry, View) */
4412
+ label: string;
4413
+ /** Callback when action is clicked */
4414
+ onClick: () => void;
4415
+ }
4416
+
4417
+ export declare const ToastItem: DefineComponent<ToastItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4418
+ dismiss: (id: string) => any;
4419
+ }, string, PublicProps, Readonly<ToastItemProps> & Readonly<{
4420
+ onDismiss?: ((id: string) => any) | undefined;
4421
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
4422
+
4423
+ export declare interface ToastItemProps {
4424
+ /** Toast data */
4425
+ toast: Toast;
4426
+ }
4427
+
4428
+ export declare interface ToastOptions {
4429
+ /** Toast title */
4430
+ title?: string;
4431
+ /** Toast message/description */
4432
+ message?: string;
4433
+ /** Visual variant */
4434
+ variant?: ToastVariant;
4435
+ /** Auto-dismiss duration in ms (0 = no auto-dismiss). Defaults to 8000ms if action provided, 5000ms otherwise */
4436
+ duration?: number;
4437
+ /** Single action button (Undo, Retry, View) */
4438
+ action?: ToastAction;
4439
+ /** Click handler for toast body (for navigation) */
4440
+ onClick?: () => void;
4441
+ /** Avatar component props for notification-style toasts (replaces icon) */
4442
+ avatar?: {
4443
+ src?: string;
4444
+ name?: string;
4445
+ };
4446
+ }
4447
+
4448
+ export declare const ToastProvider: DefineComponent<ToastProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ToastProviderProps> & Readonly<{}>, {
4449
+ position: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "top-center" | "bottom-center";
4450
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
4451
+
4452
+ export declare interface ToastProviderProps {
4453
+ /** Position of the toast container */
4454
+ position?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left' | 'top-center' | 'bottom-center';
4455
+ }
4456
+
4457
+ export declare type ToastVariant = 'success' | 'error' | 'warning' | 'info';
4458
+
4459
+ declare function toggle(): void;
4460
+
4461
+ declare function toggle_2(): void;
4462
+
4463
+ export declare const ToggleButton: __VLS_WithTemplateSlots_52<typeof __VLS_component_49, __VLS_TemplateResult_49["slots"]>;
4464
+
4465
+ export declare interface ToggleButtonProps {
4466
+ /** Pressed state for standalone usage (v-model) */
4467
+ modelValue?: boolean;
4468
+ /** Value for group usage */
4469
+ value?: string | number;
4470
+ /** Button size */
4471
+ size?: 'sm' | 'md' | 'lg';
4472
+ /** Disabled state */
4473
+ disabled?: boolean;
4474
+ /** Icon to display */
4475
+ icon?: IconInput;
4476
+ /** Accessible label (required when icon-only) */
4477
+ label?: string;
4478
+ }
4479
+
4480
+ declare function toggleDataset(index: number): void;
4481
+
4482
+ export declare const ToggleGroup: __VLS_WithTemplateSlots_53<typeof __VLS_component_50, __VLS_TemplateResult_50["slots"]>;
4483
+
4484
+ export declare interface ToggleGroupProps {
4485
+ /** Selected value(s) - single value for 'single' type, array for 'multiple' */
4486
+ modelValue?: string | number | (string | number)[];
4487
+ /** Selection type */
4488
+ type?: 'single' | 'multiple';
4489
+ /** Size for all buttons in group */
4490
+ size?: 'sm' | 'md' | 'lg';
4491
+ /** Disabled state for all buttons */
4492
+ disabled?: boolean;
4493
+ /** Accessible label for the group */
4494
+ label?: string;
4495
+ /** Orientation for keyboard navigation */
4496
+ orientation?: 'horizontal' | 'vertical';
4497
+ }
4498
+
4499
+ export declare const Tooltip: __VLS_WithTemplateSlots_54<typeof __VLS_component_51, __VLS_TemplateResult_51["slots"]>;
4500
+
4501
+ export declare interface TooltipData {
4502
+ title: string;
4503
+ items: Array<{
4504
+ label: string;
4505
+ value: string;
4506
+ color: string;
4507
+ }>;
4508
+ x: number;
4509
+ y: number;
4510
+ }
4511
+
4512
+ export declare interface TooltipProps {
4513
+ /** Tooltip text content */
4514
+ text: string;
4515
+ /** Preferred placement (may flip on collision) */
4516
+ placement?: Placement;
4517
+ /** Delay before showing (ms) - prevents flicker on rapid mouseover */
4518
+ delay?: number;
4519
+ /** Gap between trigger and tooltip */
4520
+ offset?: number;
4521
+ /** Disable the tooltip */
4522
+ disabled?: boolean;
4523
+ }
4524
+
4525
+ export declare interface TreeNode {
4526
+ id: string;
4527
+ label: string;
4528
+ icon?: Component;
4529
+ children?: TreeNode[];
4530
+ disabled?: boolean;
4531
+ isLeaf?: boolean;
4532
+ }
4533
+
4534
+ export declare const TreeView: __VLS_WithTemplateSlots_55<typeof __VLS_component_52, __VLS_TemplateResult_52["slots"]>;
4535
+
4536
+ export declare interface TreeViewContext {
4537
+ selectedIds: Ref<Set<string>>;
4538
+ expandedIds: Ref<Set<string>>;
4539
+ focusedId: Ref<string | null>;
4540
+ multiSelect: Ref<boolean>;
4541
+ selectNode: (id: string) => void;
4542
+ toggleExpand: (id: string) => void;
4543
+ setFocusedId: (id: string | null) => void;
4544
+ loadChildren: ((node: TreeNode) => Promise<TreeNode[]>) | null;
4545
+ loadingIds: Ref<Set<string>>;
4546
+ registerNode: (id: string, parentId: string | null, hasChildren: boolean) => void;
4547
+ getVisibleNodes: () => string[];
4548
+ getParentId: (id: string) => string | null;
4549
+ getChildIds: (id: string) => string[];
4550
+ hasChildren: (id: string) => boolean;
4551
+ }
4552
+
4553
+ export declare const TreeViewItem: __VLS_WithTemplateSlots_56<typeof __VLS_component_53, __VLS_TemplateResult_53["slots"]>;
4554
+
4555
+ export declare interface TreeViewItemContext {
4556
+ depth: number;
4557
+ parentId: string | null;
4558
+ }
4559
+
4560
+ export declare const TreeViewItemKey: InjectionKey<TreeViewItemContext>;
4561
+
4562
+ export declare interface TreeViewItemProps {
4563
+ /** Node data */
4564
+ node: TreeNode;
4565
+ }
4566
+
4567
+ export declare const TreeViewKey: InjectionKey<TreeViewContext>;
4568
+
4569
+ export declare interface TreeViewProps {
4570
+ /** Hierarchical data */
4571
+ data: TreeNode[];
4572
+ /** Selected node ID(s) - v-model */
4573
+ modelValue?: string | string[];
4574
+ /** Expanded node IDs - v-model:expandedIds */
4575
+ expandedIds?: string[];
4576
+ /** Enable multi-selection */
4577
+ multiSelect?: boolean;
4578
+ /** Lazy load callback */
4579
+ loadChildren?: (node: TreeNode) => Promise<TreeNode[]>;
4580
+ }
4581
+
4582
+ declare function triggerInput(): void;
4583
+
4584
+ /**
4585
+ * Update file progress (call from parent during upload)
4586
+ */
4587
+ declare function updateProgress(fileId: string, progress: number): void;
4588
+
4589
+ export declare interface UploadFile {
4590
+ /** Unique identifier */
4591
+ id: string;
4592
+ /** Original File object */
4593
+ file: File;
4594
+ /** File name */
4595
+ name: string;
4596
+ /** File size in bytes */
4597
+ size: number;
4598
+ /** MIME type */
4599
+ type: string;
4600
+ /** Preview URL (for images) */
4601
+ preview?: string;
4602
+ /** Upload progress (0-100) */
4603
+ progress: number;
4604
+ /** Upload status */
4605
+ status: 'pending' | 'uploading' | 'success' | 'error';
4606
+ /** Error message if status is error */
4607
+ error?: string;
4608
+ }
4609
+
4610
+ /**
4611
+ * Composable that extracts CSS variables and provides reactive chart theming.
4612
+ * Automatically updates when the theme changes (dark mode toggle).
4613
+ */
4614
+ export declare function useChartTheme(): {
4615
+ theme: Ref< {
4616
+ colors: {
4617
+ primary: string;
4618
+ success: string;
4619
+ warning: string;
4620
+ error: string;
4621
+ info: string;
4622
+ text: string;
4623
+ textMuted: string;
4624
+ gridLines: string;
4625
+ tooltipBg: string;
4626
+ tooltipText: string;
4627
+ tooltipBorder: string;
4628
+ legendText: string;
4629
+ };
4630
+ fontFamily: string;
4631
+ palette: string[];
4632
+ }, ChartTheme | {
4633
+ colors: {
4634
+ primary: string;
4635
+ success: string;
4636
+ warning: string;
4637
+ error: string;
4638
+ info: string;
4639
+ text: string;
4640
+ textMuted: string;
4641
+ gridLines: string;
4642
+ tooltipBg: string;
4643
+ tooltipText: string;
4644
+ tooltipBorder: string;
4645
+ legendText: string;
4646
+ };
4647
+ fontFamily: string;
4648
+ palette: string[];
4649
+ }>;
4650
+ themeVersion: Ref<number, number>;
4651
+ gridColor: ComputedRef<string>;
4652
+ textColor: ComputedRef<string>;
4653
+ mutedTextColor: ComputedRef<string>;
4654
+ getDefaultOptions: () => {
4655
+ responsive: boolean;
4656
+ maintainAspectRatio: boolean;
4657
+ plugins: {
4658
+ legend: {
4659
+ display: boolean;
4660
+ };
4661
+ tooltip: {
4662
+ enabled: boolean;
4663
+ };
4664
+ };
4665
+ scales: {
4666
+ x: {
4667
+ grid: {
4668
+ display: boolean;
4669
+ };
4670
+ border: {
4671
+ display: boolean;
4672
+ };
4673
+ ticks: {
4674
+ color: string;
4675
+ font: {
4676
+ family: string;
4677
+ size: number;
4678
+ };
4679
+ };
4680
+ };
4681
+ y: {
4682
+ grid: {
4683
+ color: string;
4684
+ };
4685
+ border: {
4686
+ display: boolean;
4687
+ };
4688
+ ticks: {
4689
+ color: string;
4690
+ font: {
4691
+ family: string;
4692
+ size: number;
4693
+ };
4694
+ };
4695
+ };
4696
+ };
4697
+ };
4698
+ getColor: (index: number) => string;
4699
+ getColorWithOpacity: (index: number, opacity: number) => string;
4700
+ updateTheme: () => void;
4701
+ };
4702
+
4703
+ /**
4704
+ * Detects clicks outside of a target element and executes a callback.
4705
+ * Essential for modals, dropdowns, and popovers.
4706
+ *
4707
+ * @param el - Ref to the element to watch
4708
+ * @param handler - Callback executed when click occurs outside
4709
+ *
4710
+ * Time Complexity: O(1) per event
4711
+ * Space Complexity: O(1)
4712
+ */
4713
+ export declare function useClickOutside(el: Ref<HTMLElement | null>, handler: () => void): void;
4714
+
4715
+ /**
4716
+ * Copy text to clipboard with success state tracking.
4717
+ * @param timeout Reset duration for copied state (ms)
4718
+ */
4719
+ export declare function useClipboard(timeout?: number): {
4720
+ copy: (text: string) => Promise<boolean>;
4721
+ copied: Ref<boolean, boolean>;
4722
+ };
4723
+
4724
+ /**
4725
+ * Attaches an event listener with automatic cleanup on unmount.
4726
+ * Prevents memory leaks from forgotten removeEventListener calls.
4727
+ */
4728
+ export declare function useEventListener<K extends keyof WindowEventMap>(target: MaybeRef<EventTarget_2>, event: K, callback: (e: WindowEventMap[K]) => void, options?: AddEventListenerOptions): void;
4729
+
4730
+ export declare function useEventListener(target: MaybeRef<EventTarget_2>, event: string, callback: (e: Event) => void, options?: AddEventListenerOptions): void;
4731
+
4732
+ /**
4733
+ * Traps focus within a container element when active.
4734
+ * Tab cycles through focusable elements, never escaping the container.
4735
+ * Critical for modal accessibility.
4736
+ */
4737
+ export declare function useFocusTrap(container: Ref<HTMLElement | null>, isActive: Ref<boolean>): void;
4738
+
4739
+ /**
4740
+ * Creates a radial gradient spotlight effect that follows the cursor on hover.
4741
+ * Handles deferred elements (tabs, v-if) by watching for target availability.
4742
+ *
4743
+ * @param target - Ref to the target element
4744
+ * @param options - Configuration options
4745
+ *
4746
+ * @example
4747
+ * ```vue
4748
+ * <script setup>
4749
+ * const cardRef = ref<HTMLElement | null>(null)
4750
+ * useHoverReveal(cardRef, { size: 200, opacity: 0.1 })
4751
+ * </script>
4752
+ *
4753
+ * <template>
4754
+ * <div ref="cardRef" data-hover-reveal>Hover over me</div>
4755
+ * </template>
4756
+ * ```
4757
+ */
4758
+ export declare function useHoverReveal(target: Ref<HTMLElement | null>, options?: UseHoverRevealOptions): void;
4759
+
4760
+ export declare interface UseHoverRevealOptions {
4761
+ size?: number;
4762
+ opacity?: number;
4763
+ }
4764
+
4765
+ /**
4766
+ * Generates a unique ID for accessibility attributes.
4767
+ * Links labels to inputs, aria-labelledby to modals, etc.
4768
+ * @param prefix Optional prefix (default: 'ui')
4769
+ */
4770
+ export declare function useId(prefix?: string): string;
4771
+
4772
+ /**
4773
+ * Creates a magnetic hover effect where the element subtly follows the cursor.
4774
+ * Handles deferred elements (tabs, v-if) by watching for target availability.
4775
+ *
4776
+ * @param target - Ref to the target element
4777
+ * @param options - Configuration options
4778
+ * @returns Reactive values for position and style
4779
+ *
4780
+ * @example
4781
+ * ```vue
4782
+ * <script setup>
4783
+ * const buttonRef = ref<HTMLElement | null>(null)
4784
+ * const { style } = useMagnetic(buttonRef, { strength: 0.3 })
4785
+ * </script>
4786
+ *
4787
+ * <template>
4788
+ * <button ref="buttonRef" :style="style">Magnetic Button</button>
4789
+ * </template>
4790
+ * ```
4791
+ */
4792
+ export declare function useMagnetic(target: Ref<HTMLElement | null>, options?: UseMagneticOptions): UseMagneticReturn;
4793
+
4794
+ export declare interface UseMagneticOptions {
4795
+ strength?: number;
4796
+ radius?: number;
4797
+ ease?: number;
4798
+ }
4799
+
4800
+ export declare interface UseMagneticReturn {
4801
+ x: Ref<number>;
4802
+ y: Ref<number>;
4803
+ isHovering: Ref<boolean>;
4804
+ style: Ref<Record<string, string>>;
4805
+ }
4806
+
4807
+ /**
4808
+ * Composable for positioning floating elements relative to a trigger.
4809
+ * Includes collision detection to flip placement when near viewport edges.
4810
+ */
4811
+ export declare function useRelativePosition(trigger: Ref<HTMLElement | null>, content: Ref<HTMLElement | null>, placement?: Ref<Placement> | Placement | (() => Placement), offset?: number): {
4812
+ coords: Ref<{
4813
+ top: number;
4814
+ left: number;
4815
+ actualPlacement: Placement;
4816
+ }, PositionResult | {
4817
+ top: number;
4818
+ left: number;
4819
+ actualPlacement: Placement;
4820
+ }>;
4821
+ updatePosition: () => void;
4822
+ getPlacement: () => Placement;
4823
+ };
4824
+
4825
+ /**
4826
+ * Creates a ripple effect on click for interactive elements.
4827
+ * Handles deferred elements (tabs, v-if) by watching for target availability.
4828
+ *
4829
+ * @param target - Ref to the target element
4830
+ * @param options - Configuration options
4831
+ *
4832
+ * @example
4833
+ * ```vue
4834
+ * <script setup>
4835
+ * const buttonRef = ref<HTMLElement | null>(null)
4836
+ * useRipple(buttonRef, { color: 'white', opacity: 0.3 })
4837
+ * </script>
4838
+ *
4839
+ * <template>
4840
+ * <button ref="buttonRef" data-ripple>Click me</button>
4841
+ * </template>
4842
+ * ```
4843
+ */
4844
+ export declare function useRipple(target: Ref<HTMLElement | null>, options?: UseRippleOptions): void;
4845
+
4846
+ export declare interface UseRippleOptions {
4847
+ color?: string;
4848
+ opacity?: number;
4849
+ duration?: number;
4850
+ disabled?: Ref<boolean> | boolean;
4851
+ }
4852
+
4853
+ /**
4854
+ * Locks body scroll when active, preventing background scrolling.
4855
+ * Compensates for scrollbar width to prevent layout shift.
4856
+ */
4857
+ export declare function useScrollLock(isLocked: Ref<boolean>): void;
4858
+
4859
+ /**
4860
+ * Creates sequential stagger animations for list items.
4861
+ * Handles deferred elements (tabs, v-if) by watching for container availability.
4862
+ *
4863
+ * @param container - Ref to the container element
4864
+ * @param itemSelector - CSS selector for items to animate
4865
+ * @param options - Animation configuration
4866
+ * @returns Controls for the stagger animation
4867
+ *
4868
+ * @example
4869
+ * ```vue
4870
+ * <script setup>
4871
+ * const listRef = ref<HTMLElement | null>(null)
4872
+ * const { animate } = useStagger(listRef, '.list-item', {
4873
+ * delay: 80,
4874
+ * from: { opacity: 0, transform: 'translateY(12px)' },
4875
+ * to: { opacity: 1, transform: 'translateY(0)' }
4876
+ * })
4877
+ *
4878
+ * // Trigger manually when ready
4879
+ * function onTabVisible() {
4880
+ * animate()
4881
+ * }
4882
+ * </script>
4883
+ *
4884
+ * <template>
4885
+ * <ul ref="listRef">
4886
+ * <li class="list-item" v-for="item in items" :key="item.id">{{ item.name }}</li>
4887
+ * </ul>
4888
+ * </template>
4889
+ * ```
4890
+ */
4891
+ export declare function useStagger(container: Ref<HTMLElement | null>, itemSelector: string, options?: UseStaggerOptions): UseStaggerReturn;
4892
+
4893
+ export declare interface UseStaggerOptions {
4894
+ delay?: number;
4895
+ duration?: number;
4896
+ easing?: string;
4897
+ from?: {
4898
+ opacity?: number;
4899
+ transform?: string;
4900
+ };
4901
+ to?: {
4902
+ opacity?: number;
4903
+ transform?: string;
4904
+ };
4905
+ animateOnVisible?: boolean;
4906
+ }
4907
+
4908
+ export declare interface UseStaggerReturn {
4909
+ isAnimating: Ref<boolean>;
4910
+ animate: () => Promise<void>;
4911
+ reset: () => void;
4912
+ }
4913
+
4914
+ /**
4915
+ * Composable for triggering toast notifications.
4916
+ * Can be used anywhere - components, stores, API interceptors.
4917
+ *
4918
+ * @example
4919
+ * ```ts
4920
+ * const toast = useToast()
4921
+ *
4922
+ * // Simple usage
4923
+ * toast.success('Saved!')
4924
+ * toast.error('Something went wrong')
4925
+ *
4926
+ * // With message
4927
+ * toast.success('Profile updated', { message: 'Your changes have been saved.' })
4928
+ *
4929
+ * // Custom duration (ms)
4930
+ * toast.info('Heads up', { duration: 10000 })
4931
+ *
4932
+ * // No auto-dismiss
4933
+ * toast.warning('Action required', { duration: 0 })
4934
+ *
4935
+ * // Manual dismiss
4936
+ * const id = toast.info('Processing...')
4937
+ * // later...
4938
+ * toast.dismiss(id)
4939
+ * ```
4940
+ */
4941
+ export declare function useToast(): {
4942
+ /**
4943
+ * Show a success toast
4944
+ * @param title - Toast title
4945
+ * @param options - Additional options (message, duration)
4946
+ * @returns Toast ID for manual dismissal
4947
+ */
4948
+ success: (title: string, options?: Omit<ToastOptions, "title" | "variant">) => string;
4949
+ /**
4950
+ * Show an error toast
4951
+ * @param title - Toast title
4952
+ * @param options - Additional options (message, duration)
4953
+ * @returns Toast ID for manual dismissal
4954
+ */
4955
+ error: (title: string, options?: Omit<ToastOptions, "title" | "variant">) => string;
4956
+ /**
4957
+ * Show a warning toast
4958
+ * @param title - Toast title
4959
+ * @param options - Additional options (message, duration)
4960
+ * @returns Toast ID for manual dismissal
4961
+ */
4962
+ warning: (title: string, options?: Omit<ToastOptions, "title" | "variant">) => string;
4963
+ /**
4964
+ * Show an info toast
4965
+ * @param title - Toast title
4966
+ * @param options - Additional options (message, duration)
4967
+ * @returns Toast ID for manual dismissal
4968
+ */
4969
+ info: (title: string, options?: Omit<ToastOptions, "title" | "variant">) => string;
4970
+ /**
4971
+ * Dismiss a specific toast
4972
+ * @param id - Toast ID returned from success/error/warning/info
4973
+ */
4974
+ dismiss: (id: string) => void;
4975
+ /**
4976
+ * Dismiss all toasts
4977
+ */
4978
+ clear: () => void;
4979
+ };
4980
+
4981
+ export { }