@quiteer/naive-extra 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 (171) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +86 -0
  3. package/dist/components/breadcrumb/index.d.ts +0 -0
  4. package/dist/components/breadcrumb/index.vue.d.ts +3 -0
  5. package/dist/components/breadcrumb/props.d.ts +0 -0
  6. package/dist/components/button/action/index.d.ts +3 -0
  7. package/dist/components/button/action/index.vue.d.ts +118 -0
  8. package/dist/components/button/action/props.d.ts +63 -0
  9. package/dist/components/button/action/utils.d.ts +8 -0
  10. package/dist/components/button/base/index.d.ts +3 -0
  11. package/dist/components/button/base/index.vue.d.ts +36 -0
  12. package/dist/components/button/base/props.d.ts +27 -0
  13. package/dist/components/button/index.d.ts +4 -0
  14. package/dist/components/button/types.d.ts +2 -0
  15. package/dist/components/form/helper.d.ts +11 -0
  16. package/dist/components/form/index.d.ts +3 -0
  17. package/dist/components/form/index.vue.d.ts +642 -0
  18. package/dist/components/form/props.d.ts +34 -0
  19. package/dist/components/icon/IconPicker.vue.d.ts +13 -0
  20. package/dist/components/icon/iconify.d.ts +25 -0
  21. package/dist/components/icon/index.d.ts +3 -0
  22. package/dist/components/icon/index.vue.d.ts +12 -0
  23. package/dist/components/layout/const.d.ts +22 -0
  24. package/dist/components/layout/context.d.ts +77 -0
  25. package/dist/components/layout/index.d.ts +5 -0
  26. package/dist/components/layout/index.vue.d.ts +80 -0
  27. package/dist/components/layout/layout-parts/AppBreadcrumb.vue.d.ts +3 -0
  28. package/dist/components/layout/layout-parts/AppFooter.vue.d.ts +18 -0
  29. package/dist/components/layout/layout-parts/AppHeader.vue.d.ts +18 -0
  30. package/dist/components/layout/layout-parts/AppLeftLogoInfo.vue.d.ts +3 -0
  31. package/dist/components/layout/layout-parts/AppMain.vue.d.ts +18 -0
  32. package/dist/components/layout/layout-parts/AppSidebar.vue.d.ts +4067 -0
  33. package/dist/components/layout/layout-parts/LayoutTransition.vue.d.ts +58 -0
  34. package/dist/components/layout/mode.d.ts +0 -0
  35. package/dist/components/layout/props.d.ts +35 -0
  36. package/dist/components/layout/types.d.ts +59 -0
  37. package/dist/components/layout/utils.d.ts +97 -0
  38. package/dist/components/provider/index.d.ts +3 -0
  39. package/dist/components/provider/index.vue.d.ts +19 -0
  40. package/dist/components/provider/props.d.ts +33 -0
  41. package/dist/components/search-bar/index.d.ts +3 -0
  42. package/dist/components/search-bar/index.vue.d.ts +1288 -0
  43. package/dist/components/search-bar/props.d.ts +15 -0
  44. package/dist/components/table/TableSetting.vue.d.ts +15 -0
  45. package/dist/components/table/index.d.ts +4 -0
  46. package/dist/components/table/index.vue.d.ts +17246 -0
  47. package/dist/components/table/props.d.ts +26 -0
  48. package/dist/components/table/useColumn.d.ts +15 -0
  49. package/dist/components/upload/enum.d.ts +18 -0
  50. package/dist/components/upload/index.d.ts +4 -0
  51. package/dist/components/upload/index.vue.d.ts +17 -0
  52. package/dist/components/upload/props.d.ts +7 -0
  53. package/dist/const/defaults.d.ts +7 -0
  54. package/dist/const/index.d.ts +2 -0
  55. package/dist/const/types.d.ts +134 -0
  56. package/dist/context/color.d.ts +13 -0
  57. package/dist/context/common.d.ts +117 -0
  58. package/dist/context/index.d.ts +41 -0
  59. package/dist/context/layout.d.ts +52 -0
  60. package/dist/context/loading-bar.d.ts +14 -0
  61. package/dist/context/locale.d.ts +143 -0
  62. package/dist/context/menu.d.ts +212 -0
  63. package/dist/context/message.d.ts +14 -0
  64. package/dist/context/notification.d.ts +14 -0
  65. package/dist/context/table.d.ts +917 -0
  66. package/dist/context/theme.d.ts +20 -0
  67. package/dist/hooks/index.d.ts +6 -0
  68. package/dist/hooks/useAdmin.d.ts +0 -0
  69. package/dist/hooks/useForm.d.ts +54 -0
  70. package/dist/hooks/useLayout.d.ts +116 -0
  71. package/dist/hooks/useProviderContext.d.ts +17 -0
  72. package/dist/hooks/useTable.d.ts +66 -0
  73. package/dist/hooks/useThemeOverrides.d.ts +8 -0
  74. package/dist/hooks/useUpload.d.ts +22 -0
  75. package/dist/index.css +36 -0
  76. package/dist/index.d.ts +29 -0
  77. package/dist/index.js +6771 -0
  78. package/dist/share/compact.d.ts +16 -0
  79. package/dist/share/index.d.ts +2 -0
  80. package/dist/share/menu.d.ts +0 -0
  81. package/dist/share/route.d.ts +0 -0
  82. package/dist/share/slot.d.ts +6 -0
  83. package/dist/utils/form.d.ts +0 -0
  84. package/dist/utils/index.d.ts +0 -0
  85. package/dist/utils/transformRoutes.d.ts +67 -0
  86. package/dist/utils/tree.d.ts +6 -0
  87. package/package.json +53 -0
  88. package/src/auto-imports.d.ts +73 -0
  89. package/src/components/breadcrumb/index.ts +0 -0
  90. package/src/components/breadcrumb/index.vue +0 -0
  91. package/src/components/breadcrumb/props.ts +0 -0
  92. package/src/components/button/action/index.ts +4 -0
  93. package/src/components/button/action/index.vue +313 -0
  94. package/src/components/button/action/props.ts +78 -0
  95. package/src/components/button/action/utils.ts +122 -0
  96. package/src/components/button/base/index.ts +4 -0
  97. package/src/components/button/base/index.vue +156 -0
  98. package/src/components/button/base/props.ts +29 -0
  99. package/src/components/button/index.ts +4 -0
  100. package/src/components/button/types.ts +2 -0
  101. package/src/components/form/helper.ts +73 -0
  102. package/src/components/form/index.ts +5 -0
  103. package/src/components/form/index.vue +243 -0
  104. package/src/components/form/props.ts +75 -0
  105. package/src/components/icon/IconPicker.vue +255 -0
  106. package/src/components/icon/iconify.ts +80 -0
  107. package/src/components/icon/index.ts +7 -0
  108. package/src/components/icon/index.vue +23 -0
  109. package/src/components/layout/const.ts +102 -0
  110. package/src/components/layout/context.ts +189 -0
  111. package/src/components/layout/index.ts +8 -0
  112. package/src/components/layout/index.vue +64 -0
  113. package/src/components/layout/layout-parts/AppBreadcrumb.vue +108 -0
  114. package/src/components/layout/layout-parts/AppFooter.vue +26 -0
  115. package/src/components/layout/layout-parts/AppHeader.vue +112 -0
  116. package/src/components/layout/layout-parts/AppLeftLogoInfo.vue +30 -0
  117. package/src/components/layout/layout-parts/AppMain.vue +34 -0
  118. package/src/components/layout/layout-parts/AppSidebar.vue +174 -0
  119. package/src/components/layout/layout-parts/LayoutTransition.vue +366 -0
  120. package/src/components/layout/mode.ts +0 -0
  121. package/src/components/layout/props.ts +36 -0
  122. package/src/components/layout/types.ts +79 -0
  123. package/src/components/layout/utils.ts +201 -0
  124. package/src/components/provider/index.ts +5 -0
  125. package/src/components/provider/index.vue +69 -0
  126. package/src/components/provider/props.ts +45 -0
  127. package/src/components/search-bar/index.ts +5 -0
  128. package/src/components/search-bar/index.vue +282 -0
  129. package/src/components/search-bar/props.ts +26 -0
  130. package/src/components/table/TableSetting.vue +253 -0
  131. package/src/components/table/index.ts +14 -0
  132. package/src/components/table/index.vue +179 -0
  133. package/src/components/table/props.ts +29 -0
  134. package/src/components/table/useColumn.ts +104 -0
  135. package/src/components/upload/enum.ts +21 -0
  136. package/src/components/upload/index.ts +9 -0
  137. package/src/components/upload/index.vue +267 -0
  138. package/src/components/upload/props.ts +8 -0
  139. package/src/components.d.ts +154 -0
  140. package/src/const/defaults.ts +94 -0
  141. package/src/const/index.ts +2 -0
  142. package/src/const/types.ts +139 -0
  143. package/src/context/color.ts +53 -0
  144. package/src/context/common.ts +27 -0
  145. package/src/context/index.ts +141 -0
  146. package/src/context/layout.ts +34 -0
  147. package/src/context/loading-bar.ts +26 -0
  148. package/src/context/locale.ts +22 -0
  149. package/src/context/menu.ts +26 -0
  150. package/src/context/message.ts +30 -0
  151. package/src/context/notification.ts +29 -0
  152. package/src/context/table.ts +32 -0
  153. package/src/context/theme.ts +35 -0
  154. package/src/hooks/index.ts +6 -0
  155. package/src/hooks/useAdmin.ts +0 -0
  156. package/src/hooks/useForm.ts +272 -0
  157. package/src/hooks/useLayout.ts +300 -0
  158. package/src/hooks/useProviderContext.ts +47 -0
  159. package/src/hooks/useTable.ts +241 -0
  160. package/src/hooks/useThemeOverrides.ts +18 -0
  161. package/src/hooks/useUpload.ts +82 -0
  162. package/src/index.ts +59 -0
  163. package/src/share/compact.ts +35 -0
  164. package/src/share/index.ts +2 -0
  165. package/src/share/menu.ts +0 -0
  166. package/src/share/route.ts +0 -0
  167. package/src/share/slot.ts +29 -0
  168. package/src/utils/form.ts +0 -0
  169. package/src/utils/index.ts +0 -0
  170. package/src/utils/transformRoutes.ts +163 -0
  171. package/src/utils/tree.ts +31 -0
@@ -0,0 +1,4067 @@
1
+ import { MenuOption, MenuGroupOption, DropdownProps, MenuNodeProps, ThemeCommonVars } from 'naive-ui';
2
+ import { CreateComponentPublicInstanceWithMixins, VNodeChild, Ref, ComputedRef, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DefineComponent } from 'vue';
3
+ import { MenuMixedOption, OnUpdateKeys, OnUpdateValue, MenuIgnoredOption, Key } from 'naive-ui/es/menu/src/interface';
4
+ import { Key, TreeNode } from 'treemate';
5
+ import { MaybeArray } from 'naive-ui/es/_utils';
6
+ import { FollowerPlacement, VOverflowInst } from 'vueuc';
7
+ import { Theme } from 'naive-ui/es/_mixins';
8
+ import { ExtractThemeOverrides } from 'naive-ui/es/_mixins/use-theme';
9
+ declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
11
+ slots: {
12
+ default?(_: {}): any;
13
+ };
14
+ refs: {
15
+ menuInstRef: CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
16
+ readonly options: {
17
+ readonly type: PropType< MenuMixedOption[]>;
18
+ readonly default: () => never[];
19
+ };
20
+ readonly collapsed: {
21
+ readonly type: PropType<boolean | undefined>;
22
+ readonly default: undefined;
23
+ };
24
+ readonly collapsedWidth: {
25
+ readonly type: NumberConstructor;
26
+ readonly default: 48;
27
+ };
28
+ readonly iconSize: {
29
+ readonly type: NumberConstructor;
30
+ readonly default: 20;
31
+ };
32
+ readonly collapsedIconSize: {
33
+ readonly type: NumberConstructor;
34
+ readonly default: 24;
35
+ };
36
+ readonly rootIndent: NumberConstructor;
37
+ readonly indent: {
38
+ readonly type: NumberConstructor;
39
+ readonly default: 32;
40
+ };
41
+ readonly labelField: {
42
+ readonly type: StringConstructor;
43
+ readonly default: "label";
44
+ };
45
+ readonly keyField: {
46
+ readonly type: StringConstructor;
47
+ readonly default: "key";
48
+ };
49
+ readonly childrenField: {
50
+ readonly type: StringConstructor;
51
+ readonly default: "children";
52
+ };
53
+ readonly disabledField: {
54
+ readonly type: StringConstructor;
55
+ readonly default: "disabled";
56
+ };
57
+ readonly defaultExpandAll: BooleanConstructor;
58
+ readonly defaultExpandedKeys: PropType< Key[]>;
59
+ readonly expandedKeys: PropType< Key[]>;
60
+ readonly value: PropType< Key | null>;
61
+ readonly defaultValue: {
62
+ readonly type: PropType< Key | null>;
63
+ readonly default: null;
64
+ };
65
+ readonly mode: {
66
+ readonly type: PropType<"vertical" | "horizontal">;
67
+ readonly default: "vertical";
68
+ };
69
+ readonly watchProps: {
70
+ readonly type: PropType<Array<"defaultExpandedKeys" | "defaultValue">>;
71
+ readonly default: undefined;
72
+ };
73
+ readonly disabled: BooleanConstructor;
74
+ readonly show: {
75
+ readonly type: BooleanConstructor;
76
+ readonly default: true;
77
+ };
78
+ readonly inverted: BooleanConstructor;
79
+ readonly 'onUpdate:expandedKeys': PropType< MaybeArray<OnUpdateKeys>>;
80
+ readonly onUpdateExpandedKeys: PropType< MaybeArray<OnUpdateKeys>>;
81
+ readonly onUpdateValue: PropType< MaybeArray<OnUpdateValue>>;
82
+ readonly 'onUpdate:value': PropType< MaybeArray<OnUpdateValue>>;
83
+ readonly expandIcon: PropType<(option: MenuOption) => VNodeChild>;
84
+ readonly renderIcon: PropType<(option: MenuOption) => VNodeChild>;
85
+ readonly renderLabel: PropType<(option: MenuOption | MenuGroupOption) => VNodeChild>;
86
+ readonly renderExtra: PropType<(option: MenuOption | MenuGroupOption) => VNodeChild>;
87
+ readonly dropdownProps: PropType< DropdownProps>;
88
+ readonly accordion: BooleanConstructor;
89
+ readonly nodeProps: PropType< MenuNodeProps>;
90
+ readonly dropdownPlacement: {
91
+ readonly type: PropType< FollowerPlacement>;
92
+ readonly default: "bottom";
93
+ };
94
+ readonly responsive: BooleanConstructor;
95
+ readonly items: PropType<Array<MenuOption | MenuGroupOption>>;
96
+ readonly onOpenNamesChange: PropType< MaybeArray<OnUpdateKeys>>;
97
+ readonly onSelect: PropType< MaybeArray<OnUpdateValue>>;
98
+ readonly onExpandedNamesChange: PropType< MaybeArray<OnUpdateKeys>>;
99
+ readonly expandedNames: PropType< Key[]>;
100
+ readonly defaultExpandedNames: PropType< Key[]>;
101
+ readonly theme: PropType< Theme<"Menu", {
102
+ itemColorHoverInverted: string;
103
+ itemColorActiveInverted: string;
104
+ itemColorActiveHoverInverted: string;
105
+ itemColorActiveCollapsedInverted: string;
106
+ itemTextColorInverted: string;
107
+ itemTextColorHoverInverted: string;
108
+ itemTextColorChildActiveInverted: string;
109
+ itemTextColorChildActiveHoverInverted: string;
110
+ itemTextColorActiveInverted: string;
111
+ itemTextColorActiveHoverInverted: string;
112
+ itemTextColorHorizontalInverted: string;
113
+ itemTextColorHoverHorizontalInverted: string;
114
+ itemTextColorChildActiveHorizontalInverted: string;
115
+ itemTextColorChildActiveHoverHorizontalInverted: string;
116
+ itemTextColorActiveHorizontalInverted: string;
117
+ itemTextColorActiveHoverHorizontalInverted: string;
118
+ itemIconColorInverted: string;
119
+ itemIconColorHoverInverted: string;
120
+ itemIconColorActiveInverted: string;
121
+ itemIconColorActiveHoverInverted: string;
122
+ itemIconColorChildActiveInverted: string;
123
+ itemIconColorChildActiveHoverInverted: string;
124
+ itemIconColorCollapsedInverted: string;
125
+ itemIconColorHorizontalInverted: string;
126
+ itemIconColorHoverHorizontalInverted: string;
127
+ itemIconColorActiveHorizontalInverted: string;
128
+ itemIconColorActiveHoverHorizontalInverted: string;
129
+ itemIconColorChildActiveHorizontalInverted: string;
130
+ itemIconColorChildActiveHoverHorizontalInverted: string;
131
+ arrowColorInverted: string;
132
+ arrowColorHoverInverted: string;
133
+ arrowColorActiveInverted: string;
134
+ arrowColorActiveHoverInverted: string;
135
+ arrowColorChildActiveInverted: string;
136
+ arrowColorChildActiveHoverInverted: string;
137
+ groupTextColorInverted: string;
138
+ borderRadius: string;
139
+ color: string;
140
+ groupTextColor: string;
141
+ itemColorHover: string;
142
+ itemColorActive: string;
143
+ itemColorActiveHover: string;
144
+ itemColorActiveCollapsed: string;
145
+ itemTextColor: string;
146
+ itemTextColorHover: string;
147
+ itemTextColorActive: string;
148
+ itemTextColorActiveHover: string;
149
+ itemTextColorChildActive: string;
150
+ itemTextColorChildActiveHover: string;
151
+ itemTextColorHorizontal: string;
152
+ itemTextColorHoverHorizontal: string;
153
+ itemTextColorActiveHorizontal: string;
154
+ itemTextColorActiveHoverHorizontal: string;
155
+ itemTextColorChildActiveHorizontal: string;
156
+ itemTextColorChildActiveHoverHorizontal: string;
157
+ itemIconColor: string;
158
+ itemIconColorHover: string;
159
+ itemIconColorActive: string;
160
+ itemIconColorActiveHover: string;
161
+ itemIconColorChildActive: string;
162
+ itemIconColorChildActiveHover: string;
163
+ itemIconColorCollapsed: string;
164
+ itemIconColorHorizontal: string;
165
+ itemIconColorHoverHorizontal: string;
166
+ itemIconColorActiveHorizontal: string;
167
+ itemIconColorActiveHoverHorizontal: string;
168
+ itemIconColorChildActiveHorizontal: string;
169
+ itemIconColorChildActiveHoverHorizontal: string;
170
+ itemHeight: string;
171
+ arrowColor: string;
172
+ arrowColorHover: string;
173
+ arrowColorActive: string;
174
+ arrowColorActiveHover: string;
175
+ arrowColorChildActive: string;
176
+ arrowColorChildActiveHover: string;
177
+ colorInverted: string;
178
+ borderColorHorizontal: string;
179
+ fontSize: string;
180
+ dividerColor: string;
181
+ }, {
182
+ Tooltip: Theme<"Tooltip", {
183
+ borderRadius: string;
184
+ boxShadow: string;
185
+ color: string;
186
+ textColor: string;
187
+ padding: string;
188
+ }, {
189
+ Popover: Theme<"Popover", {
190
+ fontSize: string;
191
+ borderRadius: string;
192
+ color: string;
193
+ dividerColor: string;
194
+ textColor: string;
195
+ boxShadow: string;
196
+ space: string;
197
+ spaceArrow: string;
198
+ arrowOffset: string;
199
+ arrowOffsetVertical: string;
200
+ arrowHeight: string;
201
+ padding: string;
202
+ }, {
203
+ Scrollbar: Theme<"Scrollbar", {
204
+ height: string;
205
+ width: string;
206
+ borderRadius: string;
207
+ color: string;
208
+ colorHover: string;
209
+ railInsetHorizontalBottom: string;
210
+ railInsetHorizontalTop: string;
211
+ railInsetVerticalRight: string;
212
+ railInsetVerticalLeft: string;
213
+ railColor: string;
214
+ }, any>;
215
+ }>;
216
+ }>;
217
+ Dropdown: Theme<"Dropdown", {
218
+ optionHeightSmall: string;
219
+ optionHeightMedium: string;
220
+ optionHeightLarge: string;
221
+ optionHeightHuge: string;
222
+ borderRadius: string;
223
+ fontSizeSmall: string;
224
+ fontSizeMedium: string;
225
+ fontSizeLarge: string;
226
+ fontSizeHuge: string;
227
+ optionTextColor: string;
228
+ optionTextColorHover: string;
229
+ optionTextColorActive: string;
230
+ optionTextColorChildActive: string;
231
+ color: string;
232
+ dividerColor: string;
233
+ suffixColor: string;
234
+ prefixColor: string;
235
+ optionColorHover: string;
236
+ optionColorActive: string;
237
+ groupHeaderTextColor: string;
238
+ optionTextColorInverted: string;
239
+ optionTextColorHoverInverted: string;
240
+ optionTextColorActiveInverted: string;
241
+ optionTextColorChildActiveInverted: string;
242
+ colorInverted: string;
243
+ dividerColorInverted: string;
244
+ suffixColorInverted: string;
245
+ prefixColorInverted: string;
246
+ optionColorHoverInverted: string;
247
+ optionColorActiveInverted: string;
248
+ groupHeaderTextColorInverted: string;
249
+ optionOpacityDisabled: string;
250
+ padding: string;
251
+ optionIconSizeSmall: string;
252
+ optionIconSizeMedium: string;
253
+ optionIconSizeLarge: string;
254
+ optionIconSizeHuge: string;
255
+ optionSuffixWidthSmall: string;
256
+ optionSuffixWidthMedium: string;
257
+ optionSuffixWidthLarge: string;
258
+ optionSuffixWidthHuge: string;
259
+ optionIconSuffixWidthSmall: string;
260
+ optionIconSuffixWidthMedium: string;
261
+ optionIconSuffixWidthLarge: string;
262
+ optionIconSuffixWidthHuge: string;
263
+ optionPrefixWidthSmall: string;
264
+ optionPrefixWidthMedium: string;
265
+ optionPrefixWidthLarge: string;
266
+ optionPrefixWidthHuge: string;
267
+ optionIconPrefixWidthSmall: string;
268
+ optionIconPrefixWidthMedium: string;
269
+ optionIconPrefixWidthLarge: string;
270
+ optionIconPrefixWidthHuge: string;
271
+ }, {
272
+ Popover: Theme<"Popover", {
273
+ fontSize: string;
274
+ borderRadius: string;
275
+ color: string;
276
+ dividerColor: string;
277
+ textColor: string;
278
+ boxShadow: string;
279
+ space: string;
280
+ spaceArrow: string;
281
+ arrowOffset: string;
282
+ arrowOffsetVertical: string;
283
+ arrowHeight: string;
284
+ padding: string;
285
+ }, {
286
+ Scrollbar: Theme<"Scrollbar", {
287
+ height: string;
288
+ width: string;
289
+ borderRadius: string;
290
+ color: string;
291
+ colorHover: string;
292
+ railInsetHorizontalBottom: string;
293
+ railInsetHorizontalTop: string;
294
+ railInsetVerticalRight: string;
295
+ railInsetVerticalLeft: string;
296
+ railColor: string;
297
+ }, any>;
298
+ }>;
299
+ }>;
300
+ }>>;
301
+ readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Menu", {
302
+ itemColorHoverInverted: string;
303
+ itemColorActiveInverted: string;
304
+ itemColorActiveHoverInverted: string;
305
+ itemColorActiveCollapsedInverted: string;
306
+ itemTextColorInverted: string;
307
+ itemTextColorHoverInverted: string;
308
+ itemTextColorChildActiveInverted: string;
309
+ itemTextColorChildActiveHoverInverted: string;
310
+ itemTextColorActiveInverted: string;
311
+ itemTextColorActiveHoverInverted: string;
312
+ itemTextColorHorizontalInverted: string;
313
+ itemTextColorHoverHorizontalInverted: string;
314
+ itemTextColorChildActiveHorizontalInverted: string;
315
+ itemTextColorChildActiveHoverHorizontalInverted: string;
316
+ itemTextColorActiveHorizontalInverted: string;
317
+ itemTextColorActiveHoverHorizontalInverted: string;
318
+ itemIconColorInverted: string;
319
+ itemIconColorHoverInverted: string;
320
+ itemIconColorActiveInverted: string;
321
+ itemIconColorActiveHoverInverted: string;
322
+ itemIconColorChildActiveInverted: string;
323
+ itemIconColorChildActiveHoverInverted: string;
324
+ itemIconColorCollapsedInverted: string;
325
+ itemIconColorHorizontalInverted: string;
326
+ itemIconColorHoverHorizontalInverted: string;
327
+ itemIconColorActiveHorizontalInverted: string;
328
+ itemIconColorActiveHoverHorizontalInverted: string;
329
+ itemIconColorChildActiveHorizontalInverted: string;
330
+ itemIconColorChildActiveHoverHorizontalInverted: string;
331
+ arrowColorInverted: string;
332
+ arrowColorHoverInverted: string;
333
+ arrowColorActiveInverted: string;
334
+ arrowColorActiveHoverInverted: string;
335
+ arrowColorChildActiveInverted: string;
336
+ arrowColorChildActiveHoverInverted: string;
337
+ groupTextColorInverted: string;
338
+ borderRadius: string;
339
+ color: string;
340
+ groupTextColor: string;
341
+ itemColorHover: string;
342
+ itemColorActive: string;
343
+ itemColorActiveHover: string;
344
+ itemColorActiveCollapsed: string;
345
+ itemTextColor: string;
346
+ itemTextColorHover: string;
347
+ itemTextColorActive: string;
348
+ itemTextColorActiveHover: string;
349
+ itemTextColorChildActive: string;
350
+ itemTextColorChildActiveHover: string;
351
+ itemTextColorHorizontal: string;
352
+ itemTextColorHoverHorizontal: string;
353
+ itemTextColorActiveHorizontal: string;
354
+ itemTextColorActiveHoverHorizontal: string;
355
+ itemTextColorChildActiveHorizontal: string;
356
+ itemTextColorChildActiveHoverHorizontal: string;
357
+ itemIconColor: string;
358
+ itemIconColorHover: string;
359
+ itemIconColorActive: string;
360
+ itemIconColorActiveHover: string;
361
+ itemIconColorChildActive: string;
362
+ itemIconColorChildActiveHover: string;
363
+ itemIconColorCollapsed: string;
364
+ itemIconColorHorizontal: string;
365
+ itemIconColorHoverHorizontal: string;
366
+ itemIconColorActiveHorizontal: string;
367
+ itemIconColorActiveHoverHorizontal: string;
368
+ itemIconColorChildActiveHorizontal: string;
369
+ itemIconColorChildActiveHoverHorizontal: string;
370
+ itemHeight: string;
371
+ arrowColor: string;
372
+ arrowColorHover: string;
373
+ arrowColorActive: string;
374
+ arrowColorActiveHover: string;
375
+ arrowColorChildActive: string;
376
+ arrowColorChildActiveHover: string;
377
+ colorInverted: string;
378
+ borderColorHorizontal: string;
379
+ fontSize: string;
380
+ dividerColor: string;
381
+ }, {
382
+ Tooltip: Theme<"Tooltip", {
383
+ borderRadius: string;
384
+ boxShadow: string;
385
+ color: string;
386
+ textColor: string;
387
+ padding: string;
388
+ }, {
389
+ Popover: Theme<"Popover", {
390
+ fontSize: string;
391
+ borderRadius: string;
392
+ color: string;
393
+ dividerColor: string;
394
+ textColor: string;
395
+ boxShadow: string;
396
+ space: string;
397
+ spaceArrow: string;
398
+ arrowOffset: string;
399
+ arrowOffsetVertical: string;
400
+ arrowHeight: string;
401
+ padding: string;
402
+ }, {
403
+ Scrollbar: Theme<"Scrollbar", {
404
+ height: string;
405
+ width: string;
406
+ borderRadius: string;
407
+ color: string;
408
+ colorHover: string;
409
+ railInsetHorizontalBottom: string;
410
+ railInsetHorizontalTop: string;
411
+ railInsetVerticalRight: string;
412
+ railInsetVerticalLeft: string;
413
+ railColor: string;
414
+ }, any>;
415
+ }>;
416
+ }>;
417
+ Dropdown: Theme<"Dropdown", {
418
+ optionHeightSmall: string;
419
+ optionHeightMedium: string;
420
+ optionHeightLarge: string;
421
+ optionHeightHuge: string;
422
+ borderRadius: string;
423
+ fontSizeSmall: string;
424
+ fontSizeMedium: string;
425
+ fontSizeLarge: string;
426
+ fontSizeHuge: string;
427
+ optionTextColor: string;
428
+ optionTextColorHover: string;
429
+ optionTextColorActive: string;
430
+ optionTextColorChildActive: string;
431
+ color: string;
432
+ dividerColor: string;
433
+ suffixColor: string;
434
+ prefixColor: string;
435
+ optionColorHover: string;
436
+ optionColorActive: string;
437
+ groupHeaderTextColor: string;
438
+ optionTextColorInverted: string;
439
+ optionTextColorHoverInverted: string;
440
+ optionTextColorActiveInverted: string;
441
+ optionTextColorChildActiveInverted: string;
442
+ colorInverted: string;
443
+ dividerColorInverted: string;
444
+ suffixColorInverted: string;
445
+ prefixColorInverted: string;
446
+ optionColorHoverInverted: string;
447
+ optionColorActiveInverted: string;
448
+ groupHeaderTextColorInverted: string;
449
+ optionOpacityDisabled: string;
450
+ padding: string;
451
+ optionIconSizeSmall: string;
452
+ optionIconSizeMedium: string;
453
+ optionIconSizeLarge: string;
454
+ optionIconSizeHuge: string;
455
+ optionSuffixWidthSmall: string;
456
+ optionSuffixWidthMedium: string;
457
+ optionSuffixWidthLarge: string;
458
+ optionSuffixWidthHuge: string;
459
+ optionIconSuffixWidthSmall: string;
460
+ optionIconSuffixWidthMedium: string;
461
+ optionIconSuffixWidthLarge: string;
462
+ optionIconSuffixWidthHuge: string;
463
+ optionPrefixWidthSmall: string;
464
+ optionPrefixWidthMedium: string;
465
+ optionPrefixWidthLarge: string;
466
+ optionPrefixWidthHuge: string;
467
+ optionIconPrefixWidthSmall: string;
468
+ optionIconPrefixWidthMedium: string;
469
+ optionIconPrefixWidthLarge: string;
470
+ optionIconPrefixWidthHuge: string;
471
+ }, {
472
+ Popover: Theme<"Popover", {
473
+ fontSize: string;
474
+ borderRadius: string;
475
+ color: string;
476
+ dividerColor: string;
477
+ textColor: string;
478
+ boxShadow: string;
479
+ space: string;
480
+ spaceArrow: string;
481
+ arrowOffset: string;
482
+ arrowOffsetVertical: string;
483
+ arrowHeight: string;
484
+ padding: string;
485
+ }, {
486
+ Scrollbar: Theme<"Scrollbar", {
487
+ height: string;
488
+ width: string;
489
+ borderRadius: string;
490
+ color: string;
491
+ colorHover: string;
492
+ railInsetHorizontalBottom: string;
493
+ railInsetHorizontalTop: string;
494
+ railInsetVerticalRight: string;
495
+ railInsetVerticalLeft: string;
496
+ railColor: string;
497
+ }, any>;
498
+ }>;
499
+ }>;
500
+ }>>>;
501
+ readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Menu", {
502
+ itemColorHoverInverted: string;
503
+ itemColorActiveInverted: string;
504
+ itemColorActiveHoverInverted: string;
505
+ itemColorActiveCollapsedInverted: string;
506
+ itemTextColorInverted: string;
507
+ itemTextColorHoverInverted: string;
508
+ itemTextColorChildActiveInverted: string;
509
+ itemTextColorChildActiveHoverInverted: string;
510
+ itemTextColorActiveInverted: string;
511
+ itemTextColorActiveHoverInverted: string;
512
+ itemTextColorHorizontalInverted: string;
513
+ itemTextColorHoverHorizontalInverted: string;
514
+ itemTextColorChildActiveHorizontalInverted: string;
515
+ itemTextColorChildActiveHoverHorizontalInverted: string;
516
+ itemTextColorActiveHorizontalInverted: string;
517
+ itemTextColorActiveHoverHorizontalInverted: string;
518
+ itemIconColorInverted: string;
519
+ itemIconColorHoverInverted: string;
520
+ itemIconColorActiveInverted: string;
521
+ itemIconColorActiveHoverInverted: string;
522
+ itemIconColorChildActiveInverted: string;
523
+ itemIconColorChildActiveHoverInverted: string;
524
+ itemIconColorCollapsedInverted: string;
525
+ itemIconColorHorizontalInverted: string;
526
+ itemIconColorHoverHorizontalInverted: string;
527
+ itemIconColorActiveHorizontalInverted: string;
528
+ itemIconColorActiveHoverHorizontalInverted: string;
529
+ itemIconColorChildActiveHorizontalInverted: string;
530
+ itemIconColorChildActiveHoverHorizontalInverted: string;
531
+ arrowColorInverted: string;
532
+ arrowColorHoverInverted: string;
533
+ arrowColorActiveInverted: string;
534
+ arrowColorActiveHoverInverted: string;
535
+ arrowColorChildActiveInverted: string;
536
+ arrowColorChildActiveHoverInverted: string;
537
+ groupTextColorInverted: string;
538
+ borderRadius: string;
539
+ color: string;
540
+ groupTextColor: string;
541
+ itemColorHover: string;
542
+ itemColorActive: string;
543
+ itemColorActiveHover: string;
544
+ itemColorActiveCollapsed: string;
545
+ itemTextColor: string;
546
+ itemTextColorHover: string;
547
+ itemTextColorActive: string;
548
+ itemTextColorActiveHover: string;
549
+ itemTextColorChildActive: string;
550
+ itemTextColorChildActiveHover: string;
551
+ itemTextColorHorizontal: string;
552
+ itemTextColorHoverHorizontal: string;
553
+ itemTextColorActiveHorizontal: string;
554
+ itemTextColorActiveHoverHorizontal: string;
555
+ itemTextColorChildActiveHorizontal: string;
556
+ itemTextColorChildActiveHoverHorizontal: string;
557
+ itemIconColor: string;
558
+ itemIconColorHover: string;
559
+ itemIconColorActive: string;
560
+ itemIconColorActiveHover: string;
561
+ itemIconColorChildActive: string;
562
+ itemIconColorChildActiveHover: string;
563
+ itemIconColorCollapsed: string;
564
+ itemIconColorHorizontal: string;
565
+ itemIconColorHoverHorizontal: string;
566
+ itemIconColorActiveHorizontal: string;
567
+ itemIconColorActiveHoverHorizontal: string;
568
+ itemIconColorChildActiveHorizontal: string;
569
+ itemIconColorChildActiveHoverHorizontal: string;
570
+ itemHeight: string;
571
+ arrowColor: string;
572
+ arrowColorHover: string;
573
+ arrowColorActive: string;
574
+ arrowColorActiveHover: string;
575
+ arrowColorChildActive: string;
576
+ arrowColorChildActiveHover: string;
577
+ colorInverted: string;
578
+ borderColorHorizontal: string;
579
+ fontSize: string;
580
+ dividerColor: string;
581
+ }, {
582
+ Tooltip: Theme<"Tooltip", {
583
+ borderRadius: string;
584
+ boxShadow: string;
585
+ color: string;
586
+ textColor: string;
587
+ padding: string;
588
+ }, {
589
+ Popover: Theme<"Popover", {
590
+ fontSize: string;
591
+ borderRadius: string;
592
+ color: string;
593
+ dividerColor: string;
594
+ textColor: string;
595
+ boxShadow: string;
596
+ space: string;
597
+ spaceArrow: string;
598
+ arrowOffset: string;
599
+ arrowOffsetVertical: string;
600
+ arrowHeight: string;
601
+ padding: string;
602
+ }, {
603
+ Scrollbar: Theme<"Scrollbar", {
604
+ height: string;
605
+ width: string;
606
+ borderRadius: string;
607
+ color: string;
608
+ colorHover: string;
609
+ railInsetHorizontalBottom: string;
610
+ railInsetHorizontalTop: string;
611
+ railInsetVerticalRight: string;
612
+ railInsetVerticalLeft: string;
613
+ railColor: string;
614
+ }, any>;
615
+ }>;
616
+ }>;
617
+ Dropdown: Theme<"Dropdown", {
618
+ optionHeightSmall: string;
619
+ optionHeightMedium: string;
620
+ optionHeightLarge: string;
621
+ optionHeightHuge: string;
622
+ borderRadius: string;
623
+ fontSizeSmall: string;
624
+ fontSizeMedium: string;
625
+ fontSizeLarge: string;
626
+ fontSizeHuge: string;
627
+ optionTextColor: string;
628
+ optionTextColorHover: string;
629
+ optionTextColorActive: string;
630
+ optionTextColorChildActive: string;
631
+ color: string;
632
+ dividerColor: string;
633
+ suffixColor: string;
634
+ prefixColor: string;
635
+ optionColorHover: string;
636
+ optionColorActive: string;
637
+ groupHeaderTextColor: string;
638
+ optionTextColorInverted: string;
639
+ optionTextColorHoverInverted: string;
640
+ optionTextColorActiveInverted: string;
641
+ optionTextColorChildActiveInverted: string;
642
+ colorInverted: string;
643
+ dividerColorInverted: string;
644
+ suffixColorInverted: string;
645
+ prefixColorInverted: string;
646
+ optionColorHoverInverted: string;
647
+ optionColorActiveInverted: string;
648
+ groupHeaderTextColorInverted: string;
649
+ optionOpacityDisabled: string;
650
+ padding: string;
651
+ optionIconSizeSmall: string;
652
+ optionIconSizeMedium: string;
653
+ optionIconSizeLarge: string;
654
+ optionIconSizeHuge: string;
655
+ optionSuffixWidthSmall: string;
656
+ optionSuffixWidthMedium: string;
657
+ optionSuffixWidthLarge: string;
658
+ optionSuffixWidthHuge: string;
659
+ optionIconSuffixWidthSmall: string;
660
+ optionIconSuffixWidthMedium: string;
661
+ optionIconSuffixWidthLarge: string;
662
+ optionIconSuffixWidthHuge: string;
663
+ optionPrefixWidthSmall: string;
664
+ optionPrefixWidthMedium: string;
665
+ optionPrefixWidthLarge: string;
666
+ optionPrefixWidthHuge: string;
667
+ optionIconPrefixWidthSmall: string;
668
+ optionIconPrefixWidthMedium: string;
669
+ optionIconPrefixWidthLarge: string;
670
+ optionIconPrefixWidthHuge: string;
671
+ }, {
672
+ Popover: Theme<"Popover", {
673
+ fontSize: string;
674
+ borderRadius: string;
675
+ color: string;
676
+ dividerColor: string;
677
+ textColor: string;
678
+ boxShadow: string;
679
+ space: string;
680
+ spaceArrow: string;
681
+ arrowOffset: string;
682
+ arrowOffsetVertical: string;
683
+ arrowHeight: string;
684
+ padding: string;
685
+ }, {
686
+ Scrollbar: Theme<"Scrollbar", {
687
+ height: string;
688
+ width: string;
689
+ borderRadius: string;
690
+ color: string;
691
+ colorHover: string;
692
+ railInsetHorizontalBottom: string;
693
+ railInsetHorizontalTop: string;
694
+ railInsetVerticalRight: string;
695
+ railInsetVerticalLeft: string;
696
+ railColor: string;
697
+ }, any>;
698
+ }>;
699
+ }>;
700
+ }>>>;
701
+ }>> & Readonly<{}>, {
702
+ mergedClsPrefix: Ref<string, string>;
703
+ controlledExpandedKeys: ComputedRef< Key[] | undefined>;
704
+ uncontrolledExpanededKeys: Ref< Key[], Key[]>;
705
+ mergedExpandedKeys: ComputedRef< Key[]>;
706
+ uncontrolledValue: Ref< Key | null, Key | null>;
707
+ mergedValue: ComputedRef< Key | null>;
708
+ activePath: ComputedRef< Key[]>;
709
+ tmNodes: ComputedRef< TreeNode<MenuOption, MenuGroupOption, MenuIgnoredOption>[]>;
710
+ mergedTheme: ComputedRef<{
711
+ common: ThemeCommonVars;
712
+ self: {
713
+ itemColorHoverInverted: string;
714
+ itemColorActiveInverted: string;
715
+ itemColorActiveHoverInverted: string;
716
+ itemColorActiveCollapsedInverted: string;
717
+ itemTextColorInverted: string;
718
+ itemTextColorHoverInverted: string;
719
+ itemTextColorChildActiveInverted: string;
720
+ itemTextColorChildActiveHoverInverted: string;
721
+ itemTextColorActiveInverted: string;
722
+ itemTextColorActiveHoverInverted: string;
723
+ itemTextColorHorizontalInverted: string;
724
+ itemTextColorHoverHorizontalInverted: string;
725
+ itemTextColorChildActiveHorizontalInverted: string;
726
+ itemTextColorChildActiveHoverHorizontalInverted: string;
727
+ itemTextColorActiveHorizontalInverted: string;
728
+ itemTextColorActiveHoverHorizontalInverted: string;
729
+ itemIconColorInverted: string;
730
+ itemIconColorHoverInverted: string;
731
+ itemIconColorActiveInverted: string;
732
+ itemIconColorActiveHoverInverted: string;
733
+ itemIconColorChildActiveInverted: string;
734
+ itemIconColorChildActiveHoverInverted: string;
735
+ itemIconColorCollapsedInverted: string;
736
+ itemIconColorHorizontalInverted: string;
737
+ itemIconColorHoverHorizontalInverted: string;
738
+ itemIconColorActiveHorizontalInverted: string;
739
+ itemIconColorActiveHoverHorizontalInverted: string;
740
+ itemIconColorChildActiveHorizontalInverted: string;
741
+ itemIconColorChildActiveHoverHorizontalInverted: string;
742
+ arrowColorInverted: string;
743
+ arrowColorHoverInverted: string;
744
+ arrowColorActiveInverted: string;
745
+ arrowColorActiveHoverInverted: string;
746
+ arrowColorChildActiveInverted: string;
747
+ arrowColorChildActiveHoverInverted: string;
748
+ groupTextColorInverted: string;
749
+ borderRadius: string;
750
+ color: string;
751
+ groupTextColor: string;
752
+ itemColorHover: string;
753
+ itemColorActive: string;
754
+ itemColorActiveHover: string;
755
+ itemColorActiveCollapsed: string;
756
+ itemTextColor: string;
757
+ itemTextColorHover: string;
758
+ itemTextColorActive: string;
759
+ itemTextColorActiveHover: string;
760
+ itemTextColorChildActive: string;
761
+ itemTextColorChildActiveHover: string;
762
+ itemTextColorHorizontal: string;
763
+ itemTextColorHoverHorizontal: string;
764
+ itemTextColorActiveHorizontal: string;
765
+ itemTextColorActiveHoverHorizontal: string;
766
+ itemTextColorChildActiveHorizontal: string;
767
+ itemTextColorChildActiveHoverHorizontal: string;
768
+ itemIconColor: string;
769
+ itemIconColorHover: string;
770
+ itemIconColorActive: string;
771
+ itemIconColorActiveHover: string;
772
+ itemIconColorChildActive: string;
773
+ itemIconColorChildActiveHover: string;
774
+ itemIconColorCollapsed: string;
775
+ itemIconColorHorizontal: string;
776
+ itemIconColorHoverHorizontal: string;
777
+ itemIconColorActiveHorizontal: string;
778
+ itemIconColorActiveHoverHorizontal: string;
779
+ itemIconColorChildActiveHorizontal: string;
780
+ itemIconColorChildActiveHoverHorizontal: string;
781
+ itemHeight: string;
782
+ arrowColor: string;
783
+ arrowColorHover: string;
784
+ arrowColorActive: string;
785
+ arrowColorActiveHover: string;
786
+ arrowColorChildActive: string;
787
+ arrowColorChildActiveHover: string;
788
+ colorInverted: string;
789
+ borderColorHorizontal: string;
790
+ fontSize: string;
791
+ dividerColor: string;
792
+ };
793
+ peers: {
794
+ Tooltip: Theme<"Tooltip", {
795
+ borderRadius: string;
796
+ boxShadow: string;
797
+ color: string;
798
+ textColor: string;
799
+ padding: string;
800
+ }, {
801
+ Popover: Theme<"Popover", {
802
+ fontSize: string;
803
+ borderRadius: string;
804
+ color: string;
805
+ dividerColor: string;
806
+ textColor: string;
807
+ boxShadow: string;
808
+ space: string;
809
+ spaceArrow: string;
810
+ arrowOffset: string;
811
+ arrowOffsetVertical: string;
812
+ arrowHeight: string;
813
+ padding: string;
814
+ }, {
815
+ Scrollbar: Theme<"Scrollbar", {
816
+ height: string;
817
+ width: string;
818
+ borderRadius: string;
819
+ color: string;
820
+ colorHover: string;
821
+ railInsetHorizontalBottom: string;
822
+ railInsetHorizontalTop: string;
823
+ railInsetVerticalRight: string;
824
+ railInsetVerticalLeft: string;
825
+ railColor: string;
826
+ }, any>;
827
+ }>;
828
+ }>;
829
+ Dropdown: Theme<"Dropdown", {
830
+ optionHeightSmall: string;
831
+ optionHeightMedium: string;
832
+ optionHeightLarge: string;
833
+ optionHeightHuge: string;
834
+ borderRadius: string;
835
+ fontSizeSmall: string;
836
+ fontSizeMedium: string;
837
+ fontSizeLarge: string;
838
+ fontSizeHuge: string;
839
+ optionTextColor: string;
840
+ optionTextColorHover: string;
841
+ optionTextColorActive: string;
842
+ optionTextColorChildActive: string;
843
+ color: string;
844
+ dividerColor: string;
845
+ suffixColor: string;
846
+ prefixColor: string;
847
+ optionColorHover: string;
848
+ optionColorActive: string;
849
+ groupHeaderTextColor: string;
850
+ optionTextColorInverted: string;
851
+ optionTextColorHoverInverted: string;
852
+ optionTextColorActiveInverted: string;
853
+ optionTextColorChildActiveInverted: string;
854
+ colorInverted: string;
855
+ dividerColorInverted: string;
856
+ suffixColorInverted: string;
857
+ prefixColorInverted: string;
858
+ optionColorHoverInverted: string;
859
+ optionColorActiveInverted: string;
860
+ groupHeaderTextColorInverted: string;
861
+ optionOpacityDisabled: string;
862
+ padding: string;
863
+ optionIconSizeSmall: string;
864
+ optionIconSizeMedium: string;
865
+ optionIconSizeLarge: string;
866
+ optionIconSizeHuge: string;
867
+ optionSuffixWidthSmall: string;
868
+ optionSuffixWidthMedium: string;
869
+ optionSuffixWidthLarge: string;
870
+ optionSuffixWidthHuge: string;
871
+ optionIconSuffixWidthSmall: string;
872
+ optionIconSuffixWidthMedium: string;
873
+ optionIconSuffixWidthLarge: string;
874
+ optionIconSuffixWidthHuge: string;
875
+ optionPrefixWidthSmall: string;
876
+ optionPrefixWidthMedium: string;
877
+ optionPrefixWidthLarge: string;
878
+ optionPrefixWidthHuge: string;
879
+ optionIconPrefixWidthSmall: string;
880
+ optionIconPrefixWidthMedium: string;
881
+ optionIconPrefixWidthLarge: string;
882
+ optionIconPrefixWidthHuge: string;
883
+ }, {
884
+ Popover: Theme<"Popover", {
885
+ fontSize: string;
886
+ borderRadius: string;
887
+ color: string;
888
+ dividerColor: string;
889
+ textColor: string;
890
+ boxShadow: string;
891
+ space: string;
892
+ spaceArrow: string;
893
+ arrowOffset: string;
894
+ arrowOffsetVertical: string;
895
+ arrowHeight: string;
896
+ padding: string;
897
+ }, {
898
+ Scrollbar: Theme<"Scrollbar", {
899
+ height: string;
900
+ width: string;
901
+ borderRadius: string;
902
+ color: string;
903
+ colorHover: string;
904
+ railInsetHorizontalBottom: string;
905
+ railInsetHorizontalTop: string;
906
+ railInsetVerticalRight: string;
907
+ railInsetVerticalLeft: string;
908
+ railColor: string;
909
+ }, any>;
910
+ }>;
911
+ }>;
912
+ };
913
+ peerOverrides: {
914
+ Tooltip?: {
915
+ peers?: {
916
+ Popover?: ExtractThemeOverrides<Theme<"Popover", {
917
+ fontSize: string;
918
+ borderRadius: string;
919
+ color: string;
920
+ dividerColor: string;
921
+ textColor: string;
922
+ boxShadow: string;
923
+ space: string;
924
+ spaceArrow: string;
925
+ arrowOffset: string;
926
+ arrowOffsetVertical: string;
927
+ arrowHeight: string;
928
+ padding: string;
929
+ }, {
930
+ Scrollbar: Theme<"Scrollbar", {
931
+ height: string;
932
+ width: string;
933
+ borderRadius: string;
934
+ color: string;
935
+ colorHover: string;
936
+ railInsetHorizontalBottom: string;
937
+ railInsetHorizontalTop: string;
938
+ railInsetVerticalRight: string;
939
+ railInsetVerticalLeft: string;
940
+ railColor: string;
941
+ }, any>;
942
+ }>> | undefined;
943
+ } | undefined;
944
+ } | undefined;
945
+ Dropdown?: {
946
+ peers?: {
947
+ Popover?: ExtractThemeOverrides<Theme<"Popover", {
948
+ fontSize: string;
949
+ borderRadius: string;
950
+ color: string;
951
+ dividerColor: string;
952
+ textColor: string;
953
+ boxShadow: string;
954
+ space: string;
955
+ spaceArrow: string;
956
+ arrowOffset: string;
957
+ arrowOffsetVertical: string;
958
+ arrowHeight: string;
959
+ padding: string;
960
+ }, {
961
+ Scrollbar: Theme<"Scrollbar", {
962
+ height: string;
963
+ width: string;
964
+ borderRadius: string;
965
+ color: string;
966
+ colorHover: string;
967
+ railInsetHorizontalBottom: string;
968
+ railInsetHorizontalTop: string;
969
+ railInsetVerticalRight: string;
970
+ railInsetVerticalLeft: string;
971
+ railColor: string;
972
+ }, any>;
973
+ }>> | undefined;
974
+ } | undefined;
975
+ } | undefined;
976
+ };
977
+ }>;
978
+ mergedCollapsed: ComputedRef<boolean>;
979
+ cssVars: ComputedRef<any> | undefined;
980
+ themeClass: Ref<string, string> | undefined;
981
+ overflowRef: Ref<{
982
+ sync: (options: {
983
+ showAllItemsBeforeCalculate: boolean;
984
+ }) => void;
985
+ } | null, VOverflowInst | {
986
+ sync: (options: {
987
+ showAllItemsBeforeCalculate: boolean;
988
+ }) => void;
989
+ } | null>;
990
+ counterRef: Ref<HTMLElement | null, HTMLElement | null>;
991
+ updateCounter: () => void;
992
+ onResize: () => void;
993
+ onUpdateOverflow: (overflow: boolean) => void;
994
+ onUpdateCount: (count: number) => void;
995
+ renderCounter: () => VNodeChild;
996
+ getCounter: () => HTMLElement | null;
997
+ onRender: (() => void) | undefined;
998
+ showOption: (key?: Key) => void;
999
+ deriveResponsiveState: () => void;
1000
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
1001
+ readonly options: MenuMixedOption[];
1002
+ readonly mode: "horizontal" | "vertical";
1003
+ readonly disabled: boolean;
1004
+ readonly show: boolean;
1005
+ readonly iconSize: number;
1006
+ readonly defaultValue: Key | null;
1007
+ readonly responsive: boolean;
1008
+ readonly disabledField: string;
1009
+ readonly labelField: string;
1010
+ readonly childrenField: string;
1011
+ readonly accordion: boolean;
1012
+ readonly collapsed: boolean | undefined;
1013
+ readonly defaultExpandAll: boolean;
1014
+ readonly indent: number;
1015
+ readonly inverted: boolean;
1016
+ readonly keyField: string;
1017
+ readonly collapsedWidth: number;
1018
+ readonly collapsedIconSize: number;
1019
+ readonly watchProps: ("defaultValue" | "defaultExpandedKeys")[];
1020
+ readonly dropdownPlacement: FollowerPlacement;
1021
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1022
+ P: {};
1023
+ B: {};
1024
+ D: {};
1025
+ C: {};
1026
+ M: {};
1027
+ Defaults: {};
1028
+ }, Readonly<globalThis.ExtractPropTypes<{
1029
+ readonly options: {
1030
+ readonly type: PropType< MenuMixedOption[]>;
1031
+ readonly default: () => never[];
1032
+ };
1033
+ readonly collapsed: {
1034
+ readonly type: PropType<boolean | undefined>;
1035
+ readonly default: undefined;
1036
+ };
1037
+ readonly collapsedWidth: {
1038
+ readonly type: NumberConstructor;
1039
+ readonly default: 48;
1040
+ };
1041
+ readonly iconSize: {
1042
+ readonly type: NumberConstructor;
1043
+ readonly default: 20;
1044
+ };
1045
+ readonly collapsedIconSize: {
1046
+ readonly type: NumberConstructor;
1047
+ readonly default: 24;
1048
+ };
1049
+ readonly rootIndent: NumberConstructor;
1050
+ readonly indent: {
1051
+ readonly type: NumberConstructor;
1052
+ readonly default: 32;
1053
+ };
1054
+ readonly labelField: {
1055
+ readonly type: StringConstructor;
1056
+ readonly default: "label";
1057
+ };
1058
+ readonly keyField: {
1059
+ readonly type: StringConstructor;
1060
+ readonly default: "key";
1061
+ };
1062
+ readonly childrenField: {
1063
+ readonly type: StringConstructor;
1064
+ readonly default: "children";
1065
+ };
1066
+ readonly disabledField: {
1067
+ readonly type: StringConstructor;
1068
+ readonly default: "disabled";
1069
+ };
1070
+ readonly defaultExpandAll: BooleanConstructor;
1071
+ readonly defaultExpandedKeys: PropType< Key[]>;
1072
+ readonly expandedKeys: PropType< Key[]>;
1073
+ readonly value: PropType< Key | null>;
1074
+ readonly defaultValue: {
1075
+ readonly type: PropType< Key | null>;
1076
+ readonly default: null;
1077
+ };
1078
+ readonly mode: {
1079
+ readonly type: PropType<"vertical" | "horizontal">;
1080
+ readonly default: "vertical";
1081
+ };
1082
+ readonly watchProps: {
1083
+ readonly type: PropType<Array<"defaultExpandedKeys" | "defaultValue">>;
1084
+ readonly default: undefined;
1085
+ };
1086
+ readonly disabled: BooleanConstructor;
1087
+ readonly show: {
1088
+ readonly type: BooleanConstructor;
1089
+ readonly default: true;
1090
+ };
1091
+ readonly inverted: BooleanConstructor;
1092
+ readonly 'onUpdate:expandedKeys': PropType< MaybeArray<OnUpdateKeys>>;
1093
+ readonly onUpdateExpandedKeys: PropType< MaybeArray<OnUpdateKeys>>;
1094
+ readonly onUpdateValue: PropType< MaybeArray<OnUpdateValue>>;
1095
+ readonly 'onUpdate:value': PropType< MaybeArray<OnUpdateValue>>;
1096
+ readonly expandIcon: PropType<(option: MenuOption) => VNodeChild>;
1097
+ readonly renderIcon: PropType<(option: MenuOption) => VNodeChild>;
1098
+ readonly renderLabel: PropType<(option: MenuOption | MenuGroupOption) => VNodeChild>;
1099
+ readonly renderExtra: PropType<(option: MenuOption | MenuGroupOption) => VNodeChild>;
1100
+ readonly dropdownProps: PropType< DropdownProps>;
1101
+ readonly accordion: BooleanConstructor;
1102
+ readonly nodeProps: PropType< MenuNodeProps>;
1103
+ readonly dropdownPlacement: {
1104
+ readonly type: PropType< FollowerPlacement>;
1105
+ readonly default: "bottom";
1106
+ };
1107
+ readonly responsive: BooleanConstructor;
1108
+ readonly items: PropType<Array<MenuOption | MenuGroupOption>>;
1109
+ readonly onOpenNamesChange: PropType< MaybeArray<OnUpdateKeys>>;
1110
+ readonly onSelect: PropType< MaybeArray<OnUpdateValue>>;
1111
+ readonly onExpandedNamesChange: PropType< MaybeArray<OnUpdateKeys>>;
1112
+ readonly expandedNames: PropType< Key[]>;
1113
+ readonly defaultExpandedNames: PropType< Key[]>;
1114
+ readonly theme: PropType< Theme<"Menu", {
1115
+ itemColorHoverInverted: string;
1116
+ itemColorActiveInverted: string;
1117
+ itemColorActiveHoverInverted: string;
1118
+ itemColorActiveCollapsedInverted: string;
1119
+ itemTextColorInverted: string;
1120
+ itemTextColorHoverInverted: string;
1121
+ itemTextColorChildActiveInverted: string;
1122
+ itemTextColorChildActiveHoverInverted: string;
1123
+ itemTextColorActiveInverted: string;
1124
+ itemTextColorActiveHoverInverted: string;
1125
+ itemTextColorHorizontalInverted: string;
1126
+ itemTextColorHoverHorizontalInverted: string;
1127
+ itemTextColorChildActiveHorizontalInverted: string;
1128
+ itemTextColorChildActiveHoverHorizontalInverted: string;
1129
+ itemTextColorActiveHorizontalInverted: string;
1130
+ itemTextColorActiveHoverHorizontalInverted: string;
1131
+ itemIconColorInverted: string;
1132
+ itemIconColorHoverInverted: string;
1133
+ itemIconColorActiveInverted: string;
1134
+ itemIconColorActiveHoverInverted: string;
1135
+ itemIconColorChildActiveInverted: string;
1136
+ itemIconColorChildActiveHoverInverted: string;
1137
+ itemIconColorCollapsedInverted: string;
1138
+ itemIconColorHorizontalInverted: string;
1139
+ itemIconColorHoverHorizontalInverted: string;
1140
+ itemIconColorActiveHorizontalInverted: string;
1141
+ itemIconColorActiveHoverHorizontalInverted: string;
1142
+ itemIconColorChildActiveHorizontalInverted: string;
1143
+ itemIconColorChildActiveHoverHorizontalInverted: string;
1144
+ arrowColorInverted: string;
1145
+ arrowColorHoverInverted: string;
1146
+ arrowColorActiveInverted: string;
1147
+ arrowColorActiveHoverInverted: string;
1148
+ arrowColorChildActiveInverted: string;
1149
+ arrowColorChildActiveHoverInverted: string;
1150
+ groupTextColorInverted: string;
1151
+ borderRadius: string;
1152
+ color: string;
1153
+ groupTextColor: string;
1154
+ itemColorHover: string;
1155
+ itemColorActive: string;
1156
+ itemColorActiveHover: string;
1157
+ itemColorActiveCollapsed: string;
1158
+ itemTextColor: string;
1159
+ itemTextColorHover: string;
1160
+ itemTextColorActive: string;
1161
+ itemTextColorActiveHover: string;
1162
+ itemTextColorChildActive: string;
1163
+ itemTextColorChildActiveHover: string;
1164
+ itemTextColorHorizontal: string;
1165
+ itemTextColorHoverHorizontal: string;
1166
+ itemTextColorActiveHorizontal: string;
1167
+ itemTextColorActiveHoverHorizontal: string;
1168
+ itemTextColorChildActiveHorizontal: string;
1169
+ itemTextColorChildActiveHoverHorizontal: string;
1170
+ itemIconColor: string;
1171
+ itemIconColorHover: string;
1172
+ itemIconColorActive: string;
1173
+ itemIconColorActiveHover: string;
1174
+ itemIconColorChildActive: string;
1175
+ itemIconColorChildActiveHover: string;
1176
+ itemIconColorCollapsed: string;
1177
+ itemIconColorHorizontal: string;
1178
+ itemIconColorHoverHorizontal: string;
1179
+ itemIconColorActiveHorizontal: string;
1180
+ itemIconColorActiveHoverHorizontal: string;
1181
+ itemIconColorChildActiveHorizontal: string;
1182
+ itemIconColorChildActiveHoverHorizontal: string;
1183
+ itemHeight: string;
1184
+ arrowColor: string;
1185
+ arrowColorHover: string;
1186
+ arrowColorActive: string;
1187
+ arrowColorActiveHover: string;
1188
+ arrowColorChildActive: string;
1189
+ arrowColorChildActiveHover: string;
1190
+ colorInverted: string;
1191
+ borderColorHorizontal: string;
1192
+ fontSize: string;
1193
+ dividerColor: string;
1194
+ }, {
1195
+ Tooltip: Theme<"Tooltip", {
1196
+ borderRadius: string;
1197
+ boxShadow: string;
1198
+ color: string;
1199
+ textColor: string;
1200
+ padding: string;
1201
+ }, {
1202
+ Popover: Theme<"Popover", {
1203
+ fontSize: string;
1204
+ borderRadius: string;
1205
+ color: string;
1206
+ dividerColor: string;
1207
+ textColor: string;
1208
+ boxShadow: string;
1209
+ space: string;
1210
+ spaceArrow: string;
1211
+ arrowOffset: string;
1212
+ arrowOffsetVertical: string;
1213
+ arrowHeight: string;
1214
+ padding: string;
1215
+ }, {
1216
+ Scrollbar: Theme<"Scrollbar", {
1217
+ height: string;
1218
+ width: string;
1219
+ borderRadius: string;
1220
+ color: string;
1221
+ colorHover: string;
1222
+ railInsetHorizontalBottom: string;
1223
+ railInsetHorizontalTop: string;
1224
+ railInsetVerticalRight: string;
1225
+ railInsetVerticalLeft: string;
1226
+ railColor: string;
1227
+ }, any>;
1228
+ }>;
1229
+ }>;
1230
+ Dropdown: Theme<"Dropdown", {
1231
+ optionHeightSmall: string;
1232
+ optionHeightMedium: string;
1233
+ optionHeightLarge: string;
1234
+ optionHeightHuge: string;
1235
+ borderRadius: string;
1236
+ fontSizeSmall: string;
1237
+ fontSizeMedium: string;
1238
+ fontSizeLarge: string;
1239
+ fontSizeHuge: string;
1240
+ optionTextColor: string;
1241
+ optionTextColorHover: string;
1242
+ optionTextColorActive: string;
1243
+ optionTextColorChildActive: string;
1244
+ color: string;
1245
+ dividerColor: string;
1246
+ suffixColor: string;
1247
+ prefixColor: string;
1248
+ optionColorHover: string;
1249
+ optionColorActive: string;
1250
+ groupHeaderTextColor: string;
1251
+ optionTextColorInverted: string;
1252
+ optionTextColorHoverInverted: string;
1253
+ optionTextColorActiveInverted: string;
1254
+ optionTextColorChildActiveInverted: string;
1255
+ colorInverted: string;
1256
+ dividerColorInverted: string;
1257
+ suffixColorInverted: string;
1258
+ prefixColorInverted: string;
1259
+ optionColorHoverInverted: string;
1260
+ optionColorActiveInverted: string;
1261
+ groupHeaderTextColorInverted: string;
1262
+ optionOpacityDisabled: string;
1263
+ padding: string;
1264
+ optionIconSizeSmall: string;
1265
+ optionIconSizeMedium: string;
1266
+ optionIconSizeLarge: string;
1267
+ optionIconSizeHuge: string;
1268
+ optionSuffixWidthSmall: string;
1269
+ optionSuffixWidthMedium: string;
1270
+ optionSuffixWidthLarge: string;
1271
+ optionSuffixWidthHuge: string;
1272
+ optionIconSuffixWidthSmall: string;
1273
+ optionIconSuffixWidthMedium: string;
1274
+ optionIconSuffixWidthLarge: string;
1275
+ optionIconSuffixWidthHuge: string;
1276
+ optionPrefixWidthSmall: string;
1277
+ optionPrefixWidthMedium: string;
1278
+ optionPrefixWidthLarge: string;
1279
+ optionPrefixWidthHuge: string;
1280
+ optionIconPrefixWidthSmall: string;
1281
+ optionIconPrefixWidthMedium: string;
1282
+ optionIconPrefixWidthLarge: string;
1283
+ optionIconPrefixWidthHuge: string;
1284
+ }, {
1285
+ Popover: Theme<"Popover", {
1286
+ fontSize: string;
1287
+ borderRadius: string;
1288
+ color: string;
1289
+ dividerColor: string;
1290
+ textColor: string;
1291
+ boxShadow: string;
1292
+ space: string;
1293
+ spaceArrow: string;
1294
+ arrowOffset: string;
1295
+ arrowOffsetVertical: string;
1296
+ arrowHeight: string;
1297
+ padding: string;
1298
+ }, {
1299
+ Scrollbar: Theme<"Scrollbar", {
1300
+ height: string;
1301
+ width: string;
1302
+ borderRadius: string;
1303
+ color: string;
1304
+ colorHover: string;
1305
+ railInsetHorizontalBottom: string;
1306
+ railInsetHorizontalTop: string;
1307
+ railInsetVerticalRight: string;
1308
+ railInsetVerticalLeft: string;
1309
+ railColor: string;
1310
+ }, any>;
1311
+ }>;
1312
+ }>;
1313
+ }>>;
1314
+ readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Menu", {
1315
+ itemColorHoverInverted: string;
1316
+ itemColorActiveInverted: string;
1317
+ itemColorActiveHoverInverted: string;
1318
+ itemColorActiveCollapsedInverted: string;
1319
+ itemTextColorInverted: string;
1320
+ itemTextColorHoverInverted: string;
1321
+ itemTextColorChildActiveInverted: string;
1322
+ itemTextColorChildActiveHoverInverted: string;
1323
+ itemTextColorActiveInverted: string;
1324
+ itemTextColorActiveHoverInverted: string;
1325
+ itemTextColorHorizontalInverted: string;
1326
+ itemTextColorHoverHorizontalInverted: string;
1327
+ itemTextColorChildActiveHorizontalInverted: string;
1328
+ itemTextColorChildActiveHoverHorizontalInverted: string;
1329
+ itemTextColorActiveHorizontalInverted: string;
1330
+ itemTextColorActiveHoverHorizontalInverted: string;
1331
+ itemIconColorInverted: string;
1332
+ itemIconColorHoverInverted: string;
1333
+ itemIconColorActiveInverted: string;
1334
+ itemIconColorActiveHoverInverted: string;
1335
+ itemIconColorChildActiveInverted: string;
1336
+ itemIconColorChildActiveHoverInverted: string;
1337
+ itemIconColorCollapsedInverted: string;
1338
+ itemIconColorHorizontalInverted: string;
1339
+ itemIconColorHoverHorizontalInverted: string;
1340
+ itemIconColorActiveHorizontalInverted: string;
1341
+ itemIconColorActiveHoverHorizontalInverted: string;
1342
+ itemIconColorChildActiveHorizontalInverted: string;
1343
+ itemIconColorChildActiveHoverHorizontalInverted: string;
1344
+ arrowColorInverted: string;
1345
+ arrowColorHoverInverted: string;
1346
+ arrowColorActiveInverted: string;
1347
+ arrowColorActiveHoverInverted: string;
1348
+ arrowColorChildActiveInverted: string;
1349
+ arrowColorChildActiveHoverInverted: string;
1350
+ groupTextColorInverted: string;
1351
+ borderRadius: string;
1352
+ color: string;
1353
+ groupTextColor: string;
1354
+ itemColorHover: string;
1355
+ itemColorActive: string;
1356
+ itemColorActiveHover: string;
1357
+ itemColorActiveCollapsed: string;
1358
+ itemTextColor: string;
1359
+ itemTextColorHover: string;
1360
+ itemTextColorActive: string;
1361
+ itemTextColorActiveHover: string;
1362
+ itemTextColorChildActive: string;
1363
+ itemTextColorChildActiveHover: string;
1364
+ itemTextColorHorizontal: string;
1365
+ itemTextColorHoverHorizontal: string;
1366
+ itemTextColorActiveHorizontal: string;
1367
+ itemTextColorActiveHoverHorizontal: string;
1368
+ itemTextColorChildActiveHorizontal: string;
1369
+ itemTextColorChildActiveHoverHorizontal: string;
1370
+ itemIconColor: string;
1371
+ itemIconColorHover: string;
1372
+ itemIconColorActive: string;
1373
+ itemIconColorActiveHover: string;
1374
+ itemIconColorChildActive: string;
1375
+ itemIconColorChildActiveHover: string;
1376
+ itemIconColorCollapsed: string;
1377
+ itemIconColorHorizontal: string;
1378
+ itemIconColorHoverHorizontal: string;
1379
+ itemIconColorActiveHorizontal: string;
1380
+ itemIconColorActiveHoverHorizontal: string;
1381
+ itemIconColorChildActiveHorizontal: string;
1382
+ itemIconColorChildActiveHoverHorizontal: string;
1383
+ itemHeight: string;
1384
+ arrowColor: string;
1385
+ arrowColorHover: string;
1386
+ arrowColorActive: string;
1387
+ arrowColorActiveHover: string;
1388
+ arrowColorChildActive: string;
1389
+ arrowColorChildActiveHover: string;
1390
+ colorInverted: string;
1391
+ borderColorHorizontal: string;
1392
+ fontSize: string;
1393
+ dividerColor: string;
1394
+ }, {
1395
+ Tooltip: Theme<"Tooltip", {
1396
+ borderRadius: string;
1397
+ boxShadow: string;
1398
+ color: string;
1399
+ textColor: string;
1400
+ padding: string;
1401
+ }, {
1402
+ Popover: Theme<"Popover", {
1403
+ fontSize: string;
1404
+ borderRadius: string;
1405
+ color: string;
1406
+ dividerColor: string;
1407
+ textColor: string;
1408
+ boxShadow: string;
1409
+ space: string;
1410
+ spaceArrow: string;
1411
+ arrowOffset: string;
1412
+ arrowOffsetVertical: string;
1413
+ arrowHeight: string;
1414
+ padding: string;
1415
+ }, {
1416
+ Scrollbar: Theme<"Scrollbar", {
1417
+ height: string;
1418
+ width: string;
1419
+ borderRadius: string;
1420
+ color: string;
1421
+ colorHover: string;
1422
+ railInsetHorizontalBottom: string;
1423
+ railInsetHorizontalTop: string;
1424
+ railInsetVerticalRight: string;
1425
+ railInsetVerticalLeft: string;
1426
+ railColor: string;
1427
+ }, any>;
1428
+ }>;
1429
+ }>;
1430
+ Dropdown: Theme<"Dropdown", {
1431
+ optionHeightSmall: string;
1432
+ optionHeightMedium: string;
1433
+ optionHeightLarge: string;
1434
+ optionHeightHuge: string;
1435
+ borderRadius: string;
1436
+ fontSizeSmall: string;
1437
+ fontSizeMedium: string;
1438
+ fontSizeLarge: string;
1439
+ fontSizeHuge: string;
1440
+ optionTextColor: string;
1441
+ optionTextColorHover: string;
1442
+ optionTextColorActive: string;
1443
+ optionTextColorChildActive: string;
1444
+ color: string;
1445
+ dividerColor: string;
1446
+ suffixColor: string;
1447
+ prefixColor: string;
1448
+ optionColorHover: string;
1449
+ optionColorActive: string;
1450
+ groupHeaderTextColor: string;
1451
+ optionTextColorInverted: string;
1452
+ optionTextColorHoverInverted: string;
1453
+ optionTextColorActiveInverted: string;
1454
+ optionTextColorChildActiveInverted: string;
1455
+ colorInverted: string;
1456
+ dividerColorInverted: string;
1457
+ suffixColorInverted: string;
1458
+ prefixColorInverted: string;
1459
+ optionColorHoverInverted: string;
1460
+ optionColorActiveInverted: string;
1461
+ groupHeaderTextColorInverted: string;
1462
+ optionOpacityDisabled: string;
1463
+ padding: string;
1464
+ optionIconSizeSmall: string;
1465
+ optionIconSizeMedium: string;
1466
+ optionIconSizeLarge: string;
1467
+ optionIconSizeHuge: string;
1468
+ optionSuffixWidthSmall: string;
1469
+ optionSuffixWidthMedium: string;
1470
+ optionSuffixWidthLarge: string;
1471
+ optionSuffixWidthHuge: string;
1472
+ optionIconSuffixWidthSmall: string;
1473
+ optionIconSuffixWidthMedium: string;
1474
+ optionIconSuffixWidthLarge: string;
1475
+ optionIconSuffixWidthHuge: string;
1476
+ optionPrefixWidthSmall: string;
1477
+ optionPrefixWidthMedium: string;
1478
+ optionPrefixWidthLarge: string;
1479
+ optionPrefixWidthHuge: string;
1480
+ optionIconPrefixWidthSmall: string;
1481
+ optionIconPrefixWidthMedium: string;
1482
+ optionIconPrefixWidthLarge: string;
1483
+ optionIconPrefixWidthHuge: string;
1484
+ }, {
1485
+ Popover: Theme<"Popover", {
1486
+ fontSize: string;
1487
+ borderRadius: string;
1488
+ color: string;
1489
+ dividerColor: string;
1490
+ textColor: string;
1491
+ boxShadow: string;
1492
+ space: string;
1493
+ spaceArrow: string;
1494
+ arrowOffset: string;
1495
+ arrowOffsetVertical: string;
1496
+ arrowHeight: string;
1497
+ padding: string;
1498
+ }, {
1499
+ Scrollbar: Theme<"Scrollbar", {
1500
+ height: string;
1501
+ width: string;
1502
+ borderRadius: string;
1503
+ color: string;
1504
+ colorHover: string;
1505
+ railInsetHorizontalBottom: string;
1506
+ railInsetHorizontalTop: string;
1507
+ railInsetVerticalRight: string;
1508
+ railInsetVerticalLeft: string;
1509
+ railColor: string;
1510
+ }, any>;
1511
+ }>;
1512
+ }>;
1513
+ }>>>;
1514
+ readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Menu", {
1515
+ itemColorHoverInverted: string;
1516
+ itemColorActiveInverted: string;
1517
+ itemColorActiveHoverInverted: string;
1518
+ itemColorActiveCollapsedInverted: string;
1519
+ itemTextColorInverted: string;
1520
+ itemTextColorHoverInverted: string;
1521
+ itemTextColorChildActiveInverted: string;
1522
+ itemTextColorChildActiveHoverInverted: string;
1523
+ itemTextColorActiveInverted: string;
1524
+ itemTextColorActiveHoverInverted: string;
1525
+ itemTextColorHorizontalInverted: string;
1526
+ itemTextColorHoverHorizontalInverted: string;
1527
+ itemTextColorChildActiveHorizontalInverted: string;
1528
+ itemTextColorChildActiveHoverHorizontalInverted: string;
1529
+ itemTextColorActiveHorizontalInverted: string;
1530
+ itemTextColorActiveHoverHorizontalInverted: string;
1531
+ itemIconColorInverted: string;
1532
+ itemIconColorHoverInverted: string;
1533
+ itemIconColorActiveInverted: string;
1534
+ itemIconColorActiveHoverInverted: string;
1535
+ itemIconColorChildActiveInverted: string;
1536
+ itemIconColorChildActiveHoverInverted: string;
1537
+ itemIconColorCollapsedInverted: string;
1538
+ itemIconColorHorizontalInverted: string;
1539
+ itemIconColorHoverHorizontalInverted: string;
1540
+ itemIconColorActiveHorizontalInverted: string;
1541
+ itemIconColorActiveHoverHorizontalInverted: string;
1542
+ itemIconColorChildActiveHorizontalInverted: string;
1543
+ itemIconColorChildActiveHoverHorizontalInverted: string;
1544
+ arrowColorInverted: string;
1545
+ arrowColorHoverInverted: string;
1546
+ arrowColorActiveInverted: string;
1547
+ arrowColorActiveHoverInverted: string;
1548
+ arrowColorChildActiveInverted: string;
1549
+ arrowColorChildActiveHoverInverted: string;
1550
+ groupTextColorInverted: string;
1551
+ borderRadius: string;
1552
+ color: string;
1553
+ groupTextColor: string;
1554
+ itemColorHover: string;
1555
+ itemColorActive: string;
1556
+ itemColorActiveHover: string;
1557
+ itemColorActiveCollapsed: string;
1558
+ itemTextColor: string;
1559
+ itemTextColorHover: string;
1560
+ itemTextColorActive: string;
1561
+ itemTextColorActiveHover: string;
1562
+ itemTextColorChildActive: string;
1563
+ itemTextColorChildActiveHover: string;
1564
+ itemTextColorHorizontal: string;
1565
+ itemTextColorHoverHorizontal: string;
1566
+ itemTextColorActiveHorizontal: string;
1567
+ itemTextColorActiveHoverHorizontal: string;
1568
+ itemTextColorChildActiveHorizontal: string;
1569
+ itemTextColorChildActiveHoverHorizontal: string;
1570
+ itemIconColor: string;
1571
+ itemIconColorHover: string;
1572
+ itemIconColorActive: string;
1573
+ itemIconColorActiveHover: string;
1574
+ itemIconColorChildActive: string;
1575
+ itemIconColorChildActiveHover: string;
1576
+ itemIconColorCollapsed: string;
1577
+ itemIconColorHorizontal: string;
1578
+ itemIconColorHoverHorizontal: string;
1579
+ itemIconColorActiveHorizontal: string;
1580
+ itemIconColorActiveHoverHorizontal: string;
1581
+ itemIconColorChildActiveHorizontal: string;
1582
+ itemIconColorChildActiveHoverHorizontal: string;
1583
+ itemHeight: string;
1584
+ arrowColor: string;
1585
+ arrowColorHover: string;
1586
+ arrowColorActive: string;
1587
+ arrowColorActiveHover: string;
1588
+ arrowColorChildActive: string;
1589
+ arrowColorChildActiveHover: string;
1590
+ colorInverted: string;
1591
+ borderColorHorizontal: string;
1592
+ fontSize: string;
1593
+ dividerColor: string;
1594
+ }, {
1595
+ Tooltip: Theme<"Tooltip", {
1596
+ borderRadius: string;
1597
+ boxShadow: string;
1598
+ color: string;
1599
+ textColor: string;
1600
+ padding: string;
1601
+ }, {
1602
+ Popover: Theme<"Popover", {
1603
+ fontSize: string;
1604
+ borderRadius: string;
1605
+ color: string;
1606
+ dividerColor: string;
1607
+ textColor: string;
1608
+ boxShadow: string;
1609
+ space: string;
1610
+ spaceArrow: string;
1611
+ arrowOffset: string;
1612
+ arrowOffsetVertical: string;
1613
+ arrowHeight: string;
1614
+ padding: string;
1615
+ }, {
1616
+ Scrollbar: Theme<"Scrollbar", {
1617
+ height: string;
1618
+ width: string;
1619
+ borderRadius: string;
1620
+ color: string;
1621
+ colorHover: string;
1622
+ railInsetHorizontalBottom: string;
1623
+ railInsetHorizontalTop: string;
1624
+ railInsetVerticalRight: string;
1625
+ railInsetVerticalLeft: string;
1626
+ railColor: string;
1627
+ }, any>;
1628
+ }>;
1629
+ }>;
1630
+ Dropdown: Theme<"Dropdown", {
1631
+ optionHeightSmall: string;
1632
+ optionHeightMedium: string;
1633
+ optionHeightLarge: string;
1634
+ optionHeightHuge: string;
1635
+ borderRadius: string;
1636
+ fontSizeSmall: string;
1637
+ fontSizeMedium: string;
1638
+ fontSizeLarge: string;
1639
+ fontSizeHuge: string;
1640
+ optionTextColor: string;
1641
+ optionTextColorHover: string;
1642
+ optionTextColorActive: string;
1643
+ optionTextColorChildActive: string;
1644
+ color: string;
1645
+ dividerColor: string;
1646
+ suffixColor: string;
1647
+ prefixColor: string;
1648
+ optionColorHover: string;
1649
+ optionColorActive: string;
1650
+ groupHeaderTextColor: string;
1651
+ optionTextColorInverted: string;
1652
+ optionTextColorHoverInverted: string;
1653
+ optionTextColorActiveInverted: string;
1654
+ optionTextColorChildActiveInverted: string;
1655
+ colorInverted: string;
1656
+ dividerColorInverted: string;
1657
+ suffixColorInverted: string;
1658
+ prefixColorInverted: string;
1659
+ optionColorHoverInverted: string;
1660
+ optionColorActiveInverted: string;
1661
+ groupHeaderTextColorInverted: string;
1662
+ optionOpacityDisabled: string;
1663
+ padding: string;
1664
+ optionIconSizeSmall: string;
1665
+ optionIconSizeMedium: string;
1666
+ optionIconSizeLarge: string;
1667
+ optionIconSizeHuge: string;
1668
+ optionSuffixWidthSmall: string;
1669
+ optionSuffixWidthMedium: string;
1670
+ optionSuffixWidthLarge: string;
1671
+ optionSuffixWidthHuge: string;
1672
+ optionIconSuffixWidthSmall: string;
1673
+ optionIconSuffixWidthMedium: string;
1674
+ optionIconSuffixWidthLarge: string;
1675
+ optionIconSuffixWidthHuge: string;
1676
+ optionPrefixWidthSmall: string;
1677
+ optionPrefixWidthMedium: string;
1678
+ optionPrefixWidthLarge: string;
1679
+ optionPrefixWidthHuge: string;
1680
+ optionIconPrefixWidthSmall: string;
1681
+ optionIconPrefixWidthMedium: string;
1682
+ optionIconPrefixWidthLarge: string;
1683
+ optionIconPrefixWidthHuge: string;
1684
+ }, {
1685
+ Popover: Theme<"Popover", {
1686
+ fontSize: string;
1687
+ borderRadius: string;
1688
+ color: string;
1689
+ dividerColor: string;
1690
+ textColor: string;
1691
+ boxShadow: string;
1692
+ space: string;
1693
+ spaceArrow: string;
1694
+ arrowOffset: string;
1695
+ arrowOffsetVertical: string;
1696
+ arrowHeight: string;
1697
+ padding: string;
1698
+ }, {
1699
+ Scrollbar: Theme<"Scrollbar", {
1700
+ height: string;
1701
+ width: string;
1702
+ borderRadius: string;
1703
+ color: string;
1704
+ colorHover: string;
1705
+ railInsetHorizontalBottom: string;
1706
+ railInsetHorizontalTop: string;
1707
+ railInsetVerticalRight: string;
1708
+ railInsetVerticalLeft: string;
1709
+ railColor: string;
1710
+ }, any>;
1711
+ }>;
1712
+ }>;
1713
+ }>>>;
1714
+ }>> & Readonly<{}>, {
1715
+ mergedClsPrefix: Ref<string, string>;
1716
+ controlledExpandedKeys: ComputedRef< Key[] | undefined>;
1717
+ uncontrolledExpanededKeys: Ref< Key[], Key[]>;
1718
+ mergedExpandedKeys: ComputedRef< Key[]>;
1719
+ uncontrolledValue: Ref< Key | null, Key | null>;
1720
+ mergedValue: ComputedRef< Key | null>;
1721
+ activePath: ComputedRef< Key[]>;
1722
+ tmNodes: ComputedRef< TreeNode<MenuOption, MenuGroupOption, MenuIgnoredOption>[]>;
1723
+ mergedTheme: ComputedRef<{
1724
+ common: ThemeCommonVars;
1725
+ self: {
1726
+ itemColorHoverInverted: string;
1727
+ itemColorActiveInverted: string;
1728
+ itemColorActiveHoverInverted: string;
1729
+ itemColorActiveCollapsedInverted: string;
1730
+ itemTextColorInverted: string;
1731
+ itemTextColorHoverInverted: string;
1732
+ itemTextColorChildActiveInverted: string;
1733
+ itemTextColorChildActiveHoverInverted: string;
1734
+ itemTextColorActiveInverted: string;
1735
+ itemTextColorActiveHoverInverted: string;
1736
+ itemTextColorHorizontalInverted: string;
1737
+ itemTextColorHoverHorizontalInverted: string;
1738
+ itemTextColorChildActiveHorizontalInverted: string;
1739
+ itemTextColorChildActiveHoverHorizontalInverted: string;
1740
+ itemTextColorActiveHorizontalInverted: string;
1741
+ itemTextColorActiveHoverHorizontalInverted: string;
1742
+ itemIconColorInverted: string;
1743
+ itemIconColorHoverInverted: string;
1744
+ itemIconColorActiveInverted: string;
1745
+ itemIconColorActiveHoverInverted: string;
1746
+ itemIconColorChildActiveInverted: string;
1747
+ itemIconColorChildActiveHoverInverted: string;
1748
+ itemIconColorCollapsedInverted: string;
1749
+ itemIconColorHorizontalInverted: string;
1750
+ itemIconColorHoverHorizontalInverted: string;
1751
+ itemIconColorActiveHorizontalInverted: string;
1752
+ itemIconColorActiveHoverHorizontalInverted: string;
1753
+ itemIconColorChildActiveHorizontalInverted: string;
1754
+ itemIconColorChildActiveHoverHorizontalInverted: string;
1755
+ arrowColorInverted: string;
1756
+ arrowColorHoverInverted: string;
1757
+ arrowColorActiveInverted: string;
1758
+ arrowColorActiveHoverInverted: string;
1759
+ arrowColorChildActiveInverted: string;
1760
+ arrowColorChildActiveHoverInverted: string;
1761
+ groupTextColorInverted: string;
1762
+ borderRadius: string;
1763
+ color: string;
1764
+ groupTextColor: string;
1765
+ itemColorHover: string;
1766
+ itemColorActive: string;
1767
+ itemColorActiveHover: string;
1768
+ itemColorActiveCollapsed: string;
1769
+ itemTextColor: string;
1770
+ itemTextColorHover: string;
1771
+ itemTextColorActive: string;
1772
+ itemTextColorActiveHover: string;
1773
+ itemTextColorChildActive: string;
1774
+ itemTextColorChildActiveHover: string;
1775
+ itemTextColorHorizontal: string;
1776
+ itemTextColorHoverHorizontal: string;
1777
+ itemTextColorActiveHorizontal: string;
1778
+ itemTextColorActiveHoverHorizontal: string;
1779
+ itemTextColorChildActiveHorizontal: string;
1780
+ itemTextColorChildActiveHoverHorizontal: string;
1781
+ itemIconColor: string;
1782
+ itemIconColorHover: string;
1783
+ itemIconColorActive: string;
1784
+ itemIconColorActiveHover: string;
1785
+ itemIconColorChildActive: string;
1786
+ itemIconColorChildActiveHover: string;
1787
+ itemIconColorCollapsed: string;
1788
+ itemIconColorHorizontal: string;
1789
+ itemIconColorHoverHorizontal: string;
1790
+ itemIconColorActiveHorizontal: string;
1791
+ itemIconColorActiveHoverHorizontal: string;
1792
+ itemIconColorChildActiveHorizontal: string;
1793
+ itemIconColorChildActiveHoverHorizontal: string;
1794
+ itemHeight: string;
1795
+ arrowColor: string;
1796
+ arrowColorHover: string;
1797
+ arrowColorActive: string;
1798
+ arrowColorActiveHover: string;
1799
+ arrowColorChildActive: string;
1800
+ arrowColorChildActiveHover: string;
1801
+ colorInverted: string;
1802
+ borderColorHorizontal: string;
1803
+ fontSize: string;
1804
+ dividerColor: string;
1805
+ };
1806
+ peers: {
1807
+ Tooltip: Theme<"Tooltip", {
1808
+ borderRadius: string;
1809
+ boxShadow: string;
1810
+ color: string;
1811
+ textColor: string;
1812
+ padding: string;
1813
+ }, {
1814
+ Popover: Theme<"Popover", {
1815
+ fontSize: string;
1816
+ borderRadius: string;
1817
+ color: string;
1818
+ dividerColor: string;
1819
+ textColor: string;
1820
+ boxShadow: string;
1821
+ space: string;
1822
+ spaceArrow: string;
1823
+ arrowOffset: string;
1824
+ arrowOffsetVertical: string;
1825
+ arrowHeight: string;
1826
+ padding: string;
1827
+ }, {
1828
+ Scrollbar: Theme<"Scrollbar", {
1829
+ height: string;
1830
+ width: string;
1831
+ borderRadius: string;
1832
+ color: string;
1833
+ colorHover: string;
1834
+ railInsetHorizontalBottom: string;
1835
+ railInsetHorizontalTop: string;
1836
+ railInsetVerticalRight: string;
1837
+ railInsetVerticalLeft: string;
1838
+ railColor: string;
1839
+ }, any>;
1840
+ }>;
1841
+ }>;
1842
+ Dropdown: Theme<"Dropdown", {
1843
+ optionHeightSmall: string;
1844
+ optionHeightMedium: string;
1845
+ optionHeightLarge: string;
1846
+ optionHeightHuge: string;
1847
+ borderRadius: string;
1848
+ fontSizeSmall: string;
1849
+ fontSizeMedium: string;
1850
+ fontSizeLarge: string;
1851
+ fontSizeHuge: string;
1852
+ optionTextColor: string;
1853
+ optionTextColorHover: string;
1854
+ optionTextColorActive: string;
1855
+ optionTextColorChildActive: string;
1856
+ color: string;
1857
+ dividerColor: string;
1858
+ suffixColor: string;
1859
+ prefixColor: string;
1860
+ optionColorHover: string;
1861
+ optionColorActive: string;
1862
+ groupHeaderTextColor: string;
1863
+ optionTextColorInverted: string;
1864
+ optionTextColorHoverInverted: string;
1865
+ optionTextColorActiveInverted: string;
1866
+ optionTextColorChildActiveInverted: string;
1867
+ colorInverted: string;
1868
+ dividerColorInverted: string;
1869
+ suffixColorInverted: string;
1870
+ prefixColorInverted: string;
1871
+ optionColorHoverInverted: string;
1872
+ optionColorActiveInverted: string;
1873
+ groupHeaderTextColorInverted: string;
1874
+ optionOpacityDisabled: string;
1875
+ padding: string;
1876
+ optionIconSizeSmall: string;
1877
+ optionIconSizeMedium: string;
1878
+ optionIconSizeLarge: string;
1879
+ optionIconSizeHuge: string;
1880
+ optionSuffixWidthSmall: string;
1881
+ optionSuffixWidthMedium: string;
1882
+ optionSuffixWidthLarge: string;
1883
+ optionSuffixWidthHuge: string;
1884
+ optionIconSuffixWidthSmall: string;
1885
+ optionIconSuffixWidthMedium: string;
1886
+ optionIconSuffixWidthLarge: string;
1887
+ optionIconSuffixWidthHuge: string;
1888
+ optionPrefixWidthSmall: string;
1889
+ optionPrefixWidthMedium: string;
1890
+ optionPrefixWidthLarge: string;
1891
+ optionPrefixWidthHuge: string;
1892
+ optionIconPrefixWidthSmall: string;
1893
+ optionIconPrefixWidthMedium: string;
1894
+ optionIconPrefixWidthLarge: string;
1895
+ optionIconPrefixWidthHuge: string;
1896
+ }, {
1897
+ Popover: Theme<"Popover", {
1898
+ fontSize: string;
1899
+ borderRadius: string;
1900
+ color: string;
1901
+ dividerColor: string;
1902
+ textColor: string;
1903
+ boxShadow: string;
1904
+ space: string;
1905
+ spaceArrow: string;
1906
+ arrowOffset: string;
1907
+ arrowOffsetVertical: string;
1908
+ arrowHeight: string;
1909
+ padding: string;
1910
+ }, {
1911
+ Scrollbar: Theme<"Scrollbar", {
1912
+ height: string;
1913
+ width: string;
1914
+ borderRadius: string;
1915
+ color: string;
1916
+ colorHover: string;
1917
+ railInsetHorizontalBottom: string;
1918
+ railInsetHorizontalTop: string;
1919
+ railInsetVerticalRight: string;
1920
+ railInsetVerticalLeft: string;
1921
+ railColor: string;
1922
+ }, any>;
1923
+ }>;
1924
+ }>;
1925
+ };
1926
+ peerOverrides: {
1927
+ Tooltip?: {
1928
+ peers?: {
1929
+ Popover?: ExtractThemeOverrides<Theme<"Popover", {
1930
+ fontSize: string;
1931
+ borderRadius: string;
1932
+ color: string;
1933
+ dividerColor: string;
1934
+ textColor: string;
1935
+ boxShadow: string;
1936
+ space: string;
1937
+ spaceArrow: string;
1938
+ arrowOffset: string;
1939
+ arrowOffsetVertical: string;
1940
+ arrowHeight: string;
1941
+ padding: string;
1942
+ }, {
1943
+ Scrollbar: Theme<"Scrollbar", {
1944
+ height: string;
1945
+ width: string;
1946
+ borderRadius: string;
1947
+ color: string;
1948
+ colorHover: string;
1949
+ railInsetHorizontalBottom: string;
1950
+ railInsetHorizontalTop: string;
1951
+ railInsetVerticalRight: string;
1952
+ railInsetVerticalLeft: string;
1953
+ railColor: string;
1954
+ }, any>;
1955
+ }>> | undefined;
1956
+ } | undefined;
1957
+ } | undefined;
1958
+ Dropdown?: {
1959
+ peers?: {
1960
+ Popover?: ExtractThemeOverrides<Theme<"Popover", {
1961
+ fontSize: string;
1962
+ borderRadius: string;
1963
+ color: string;
1964
+ dividerColor: string;
1965
+ textColor: string;
1966
+ boxShadow: string;
1967
+ space: string;
1968
+ spaceArrow: string;
1969
+ arrowOffset: string;
1970
+ arrowOffsetVertical: string;
1971
+ arrowHeight: string;
1972
+ padding: string;
1973
+ }, {
1974
+ Scrollbar: Theme<"Scrollbar", {
1975
+ height: string;
1976
+ width: string;
1977
+ borderRadius: string;
1978
+ color: string;
1979
+ colorHover: string;
1980
+ railInsetHorizontalBottom: string;
1981
+ railInsetHorizontalTop: string;
1982
+ railInsetVerticalRight: string;
1983
+ railInsetVerticalLeft: string;
1984
+ railColor: string;
1985
+ }, any>;
1986
+ }>> | undefined;
1987
+ } | undefined;
1988
+ } | undefined;
1989
+ };
1990
+ }>;
1991
+ mergedCollapsed: ComputedRef<boolean>;
1992
+ cssVars: ComputedRef<any> | undefined;
1993
+ themeClass: Ref<string, string> | undefined;
1994
+ overflowRef: Ref<{
1995
+ sync: (options: {
1996
+ showAllItemsBeforeCalculate: boolean;
1997
+ }) => void;
1998
+ } | null, VOverflowInst | {
1999
+ sync: (options: {
2000
+ showAllItemsBeforeCalculate: boolean;
2001
+ }) => void;
2002
+ } | null>;
2003
+ counterRef: Ref<HTMLElement | null, HTMLElement | null>;
2004
+ updateCounter: () => void;
2005
+ onResize: () => void;
2006
+ onUpdateOverflow: (overflow: boolean) => void;
2007
+ onUpdateCount: (count: number) => void;
2008
+ renderCounter: () => VNodeChild;
2009
+ getCounter: () => HTMLElement | null;
2010
+ onRender: (() => void) | undefined;
2011
+ showOption: (key?: Key) => void;
2012
+ deriveResponsiveState: () => void;
2013
+ }, {}, {}, {}, {
2014
+ readonly options: MenuMixedOption[];
2015
+ readonly mode: "horizontal" | "vertical";
2016
+ readonly disabled: boolean;
2017
+ readonly show: boolean;
2018
+ readonly iconSize: number;
2019
+ readonly defaultValue: Key | null;
2020
+ readonly responsive: boolean;
2021
+ readonly disabledField: string;
2022
+ readonly labelField: string;
2023
+ readonly childrenField: string;
2024
+ readonly accordion: boolean;
2025
+ readonly collapsed: boolean | undefined;
2026
+ readonly defaultExpandAll: boolean;
2027
+ readonly indent: number;
2028
+ readonly inverted: boolean;
2029
+ readonly keyField: string;
2030
+ readonly collapsedWidth: number;
2031
+ readonly collapsedIconSize: number;
2032
+ readonly watchProps: ("defaultValue" | "defaultExpandedKeys")[];
2033
+ readonly dropdownPlacement: FollowerPlacement;
2034
+ }> | null;
2035
+ };
2036
+ rootEl: any;
2037
+ };
2038
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
2039
+ declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
2040
+ menuInstRef: CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
2041
+ readonly options: {
2042
+ readonly type: PropType< MenuMixedOption[]>;
2043
+ readonly default: () => never[];
2044
+ };
2045
+ readonly collapsed: {
2046
+ readonly type: PropType<boolean | undefined>;
2047
+ readonly default: undefined;
2048
+ };
2049
+ readonly collapsedWidth: {
2050
+ readonly type: NumberConstructor;
2051
+ readonly default: 48;
2052
+ };
2053
+ readonly iconSize: {
2054
+ readonly type: NumberConstructor;
2055
+ readonly default: 20;
2056
+ };
2057
+ readonly collapsedIconSize: {
2058
+ readonly type: NumberConstructor;
2059
+ readonly default: 24;
2060
+ };
2061
+ readonly rootIndent: NumberConstructor;
2062
+ readonly indent: {
2063
+ readonly type: NumberConstructor;
2064
+ readonly default: 32;
2065
+ };
2066
+ readonly labelField: {
2067
+ readonly type: StringConstructor;
2068
+ readonly default: "label";
2069
+ };
2070
+ readonly keyField: {
2071
+ readonly type: StringConstructor;
2072
+ readonly default: "key";
2073
+ };
2074
+ readonly childrenField: {
2075
+ readonly type: StringConstructor;
2076
+ readonly default: "children";
2077
+ };
2078
+ readonly disabledField: {
2079
+ readonly type: StringConstructor;
2080
+ readonly default: "disabled";
2081
+ };
2082
+ readonly defaultExpandAll: BooleanConstructor;
2083
+ readonly defaultExpandedKeys: PropType< Key[]>;
2084
+ readonly expandedKeys: PropType< Key[]>;
2085
+ readonly value: PropType< Key | null>;
2086
+ readonly defaultValue: {
2087
+ readonly type: PropType< Key | null>;
2088
+ readonly default: null;
2089
+ };
2090
+ readonly mode: {
2091
+ readonly type: PropType<"vertical" | "horizontal">;
2092
+ readonly default: "vertical";
2093
+ };
2094
+ readonly watchProps: {
2095
+ readonly type: PropType<Array<"defaultExpandedKeys" | "defaultValue">>;
2096
+ readonly default: undefined;
2097
+ };
2098
+ readonly disabled: BooleanConstructor;
2099
+ readonly show: {
2100
+ readonly type: BooleanConstructor;
2101
+ readonly default: true;
2102
+ };
2103
+ readonly inverted: BooleanConstructor;
2104
+ readonly 'onUpdate:expandedKeys': PropType< MaybeArray<OnUpdateKeys>>;
2105
+ readonly onUpdateExpandedKeys: PropType< MaybeArray<OnUpdateKeys>>;
2106
+ readonly onUpdateValue: PropType< MaybeArray<OnUpdateValue>>;
2107
+ readonly 'onUpdate:value': PropType< MaybeArray<OnUpdateValue>>;
2108
+ readonly expandIcon: PropType<(option: MenuOption) => VNodeChild>;
2109
+ readonly renderIcon: PropType<(option: MenuOption) => VNodeChild>;
2110
+ readonly renderLabel: PropType<(option: MenuOption | MenuGroupOption) => VNodeChild>;
2111
+ readonly renderExtra: PropType<(option: MenuOption | MenuGroupOption) => VNodeChild>;
2112
+ readonly dropdownProps: PropType< DropdownProps>;
2113
+ readonly accordion: BooleanConstructor;
2114
+ readonly nodeProps: PropType< MenuNodeProps>;
2115
+ readonly dropdownPlacement: {
2116
+ readonly type: PropType< FollowerPlacement>;
2117
+ readonly default: "bottom";
2118
+ };
2119
+ readonly responsive: BooleanConstructor;
2120
+ readonly items: PropType<Array<MenuOption | MenuGroupOption>>;
2121
+ readonly onOpenNamesChange: PropType< MaybeArray<OnUpdateKeys>>;
2122
+ readonly onSelect: PropType< MaybeArray<OnUpdateValue>>;
2123
+ readonly onExpandedNamesChange: PropType< MaybeArray<OnUpdateKeys>>;
2124
+ readonly expandedNames: PropType< Key[]>;
2125
+ readonly defaultExpandedNames: PropType< Key[]>;
2126
+ readonly theme: PropType< Theme<"Menu", {
2127
+ itemColorHoverInverted: string;
2128
+ itemColorActiveInverted: string;
2129
+ itemColorActiveHoverInverted: string;
2130
+ itemColorActiveCollapsedInverted: string;
2131
+ itemTextColorInverted: string;
2132
+ itemTextColorHoverInverted: string;
2133
+ itemTextColorChildActiveInverted: string;
2134
+ itemTextColorChildActiveHoverInverted: string;
2135
+ itemTextColorActiveInverted: string;
2136
+ itemTextColorActiveHoverInverted: string;
2137
+ itemTextColorHorizontalInverted: string;
2138
+ itemTextColorHoverHorizontalInverted: string;
2139
+ itemTextColorChildActiveHorizontalInverted: string;
2140
+ itemTextColorChildActiveHoverHorizontalInverted: string;
2141
+ itemTextColorActiveHorizontalInverted: string;
2142
+ itemTextColorActiveHoverHorizontalInverted: string;
2143
+ itemIconColorInverted: string;
2144
+ itemIconColorHoverInverted: string;
2145
+ itemIconColorActiveInverted: string;
2146
+ itemIconColorActiveHoverInverted: string;
2147
+ itemIconColorChildActiveInverted: string;
2148
+ itemIconColorChildActiveHoverInverted: string;
2149
+ itemIconColorCollapsedInverted: string;
2150
+ itemIconColorHorizontalInverted: string;
2151
+ itemIconColorHoverHorizontalInverted: string;
2152
+ itemIconColorActiveHorizontalInverted: string;
2153
+ itemIconColorActiveHoverHorizontalInverted: string;
2154
+ itemIconColorChildActiveHorizontalInverted: string;
2155
+ itemIconColorChildActiveHoverHorizontalInverted: string;
2156
+ arrowColorInverted: string;
2157
+ arrowColorHoverInverted: string;
2158
+ arrowColorActiveInverted: string;
2159
+ arrowColorActiveHoverInverted: string;
2160
+ arrowColorChildActiveInverted: string;
2161
+ arrowColorChildActiveHoverInverted: string;
2162
+ groupTextColorInverted: string;
2163
+ borderRadius: string;
2164
+ color: string;
2165
+ groupTextColor: string;
2166
+ itemColorHover: string;
2167
+ itemColorActive: string;
2168
+ itemColorActiveHover: string;
2169
+ itemColorActiveCollapsed: string;
2170
+ itemTextColor: string;
2171
+ itemTextColorHover: string;
2172
+ itemTextColorActive: string;
2173
+ itemTextColorActiveHover: string;
2174
+ itemTextColorChildActive: string;
2175
+ itemTextColorChildActiveHover: string;
2176
+ itemTextColorHorizontal: string;
2177
+ itemTextColorHoverHorizontal: string;
2178
+ itemTextColorActiveHorizontal: string;
2179
+ itemTextColorActiveHoverHorizontal: string;
2180
+ itemTextColorChildActiveHorizontal: string;
2181
+ itemTextColorChildActiveHoverHorizontal: string;
2182
+ itemIconColor: string;
2183
+ itemIconColorHover: string;
2184
+ itemIconColorActive: string;
2185
+ itemIconColorActiveHover: string;
2186
+ itemIconColorChildActive: string;
2187
+ itemIconColorChildActiveHover: string;
2188
+ itemIconColorCollapsed: string;
2189
+ itemIconColorHorizontal: string;
2190
+ itemIconColorHoverHorizontal: string;
2191
+ itemIconColorActiveHorizontal: string;
2192
+ itemIconColorActiveHoverHorizontal: string;
2193
+ itemIconColorChildActiveHorizontal: string;
2194
+ itemIconColorChildActiveHoverHorizontal: string;
2195
+ itemHeight: string;
2196
+ arrowColor: string;
2197
+ arrowColorHover: string;
2198
+ arrowColorActive: string;
2199
+ arrowColorActiveHover: string;
2200
+ arrowColorChildActive: string;
2201
+ arrowColorChildActiveHover: string;
2202
+ colorInverted: string;
2203
+ borderColorHorizontal: string;
2204
+ fontSize: string;
2205
+ dividerColor: string;
2206
+ }, {
2207
+ Tooltip: Theme<"Tooltip", {
2208
+ borderRadius: string;
2209
+ boxShadow: string;
2210
+ color: string;
2211
+ textColor: string;
2212
+ padding: string;
2213
+ }, {
2214
+ Popover: Theme<"Popover", {
2215
+ fontSize: string;
2216
+ borderRadius: string;
2217
+ color: string;
2218
+ dividerColor: string;
2219
+ textColor: string;
2220
+ boxShadow: string;
2221
+ space: string;
2222
+ spaceArrow: string;
2223
+ arrowOffset: string;
2224
+ arrowOffsetVertical: string;
2225
+ arrowHeight: string;
2226
+ padding: string;
2227
+ }, {
2228
+ Scrollbar: Theme<"Scrollbar", {
2229
+ height: string;
2230
+ width: string;
2231
+ borderRadius: string;
2232
+ color: string;
2233
+ colorHover: string;
2234
+ railInsetHorizontalBottom: string;
2235
+ railInsetHorizontalTop: string;
2236
+ railInsetVerticalRight: string;
2237
+ railInsetVerticalLeft: string;
2238
+ railColor: string;
2239
+ }, any>;
2240
+ }>;
2241
+ }>;
2242
+ Dropdown: Theme<"Dropdown", {
2243
+ optionHeightSmall: string;
2244
+ optionHeightMedium: string;
2245
+ optionHeightLarge: string;
2246
+ optionHeightHuge: string;
2247
+ borderRadius: string;
2248
+ fontSizeSmall: string;
2249
+ fontSizeMedium: string;
2250
+ fontSizeLarge: string;
2251
+ fontSizeHuge: string;
2252
+ optionTextColor: string;
2253
+ optionTextColorHover: string;
2254
+ optionTextColorActive: string;
2255
+ optionTextColorChildActive: string;
2256
+ color: string;
2257
+ dividerColor: string;
2258
+ suffixColor: string;
2259
+ prefixColor: string;
2260
+ optionColorHover: string;
2261
+ optionColorActive: string;
2262
+ groupHeaderTextColor: string;
2263
+ optionTextColorInverted: string;
2264
+ optionTextColorHoverInverted: string;
2265
+ optionTextColorActiveInverted: string;
2266
+ optionTextColorChildActiveInverted: string;
2267
+ colorInverted: string;
2268
+ dividerColorInverted: string;
2269
+ suffixColorInverted: string;
2270
+ prefixColorInverted: string;
2271
+ optionColorHoverInverted: string;
2272
+ optionColorActiveInverted: string;
2273
+ groupHeaderTextColorInverted: string;
2274
+ optionOpacityDisabled: string;
2275
+ padding: string;
2276
+ optionIconSizeSmall: string;
2277
+ optionIconSizeMedium: string;
2278
+ optionIconSizeLarge: string;
2279
+ optionIconSizeHuge: string;
2280
+ optionSuffixWidthSmall: string;
2281
+ optionSuffixWidthMedium: string;
2282
+ optionSuffixWidthLarge: string;
2283
+ optionSuffixWidthHuge: string;
2284
+ optionIconSuffixWidthSmall: string;
2285
+ optionIconSuffixWidthMedium: string;
2286
+ optionIconSuffixWidthLarge: string;
2287
+ optionIconSuffixWidthHuge: string;
2288
+ optionPrefixWidthSmall: string;
2289
+ optionPrefixWidthMedium: string;
2290
+ optionPrefixWidthLarge: string;
2291
+ optionPrefixWidthHuge: string;
2292
+ optionIconPrefixWidthSmall: string;
2293
+ optionIconPrefixWidthMedium: string;
2294
+ optionIconPrefixWidthLarge: string;
2295
+ optionIconPrefixWidthHuge: string;
2296
+ }, {
2297
+ Popover: Theme<"Popover", {
2298
+ fontSize: string;
2299
+ borderRadius: string;
2300
+ color: string;
2301
+ dividerColor: string;
2302
+ textColor: string;
2303
+ boxShadow: string;
2304
+ space: string;
2305
+ spaceArrow: string;
2306
+ arrowOffset: string;
2307
+ arrowOffsetVertical: string;
2308
+ arrowHeight: string;
2309
+ padding: string;
2310
+ }, {
2311
+ Scrollbar: Theme<"Scrollbar", {
2312
+ height: string;
2313
+ width: string;
2314
+ borderRadius: string;
2315
+ color: string;
2316
+ colorHover: string;
2317
+ railInsetHorizontalBottom: string;
2318
+ railInsetHorizontalTop: string;
2319
+ railInsetVerticalRight: string;
2320
+ railInsetVerticalLeft: string;
2321
+ railColor: string;
2322
+ }, any>;
2323
+ }>;
2324
+ }>;
2325
+ }>>;
2326
+ readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Menu", {
2327
+ itemColorHoverInverted: string;
2328
+ itemColorActiveInverted: string;
2329
+ itemColorActiveHoverInverted: string;
2330
+ itemColorActiveCollapsedInverted: string;
2331
+ itemTextColorInverted: string;
2332
+ itemTextColorHoverInverted: string;
2333
+ itemTextColorChildActiveInverted: string;
2334
+ itemTextColorChildActiveHoverInverted: string;
2335
+ itemTextColorActiveInverted: string;
2336
+ itemTextColorActiveHoverInverted: string;
2337
+ itemTextColorHorizontalInverted: string;
2338
+ itemTextColorHoverHorizontalInverted: string;
2339
+ itemTextColorChildActiveHorizontalInverted: string;
2340
+ itemTextColorChildActiveHoverHorizontalInverted: string;
2341
+ itemTextColorActiveHorizontalInverted: string;
2342
+ itemTextColorActiveHoverHorizontalInverted: string;
2343
+ itemIconColorInverted: string;
2344
+ itemIconColorHoverInverted: string;
2345
+ itemIconColorActiveInverted: string;
2346
+ itemIconColorActiveHoverInverted: string;
2347
+ itemIconColorChildActiveInverted: string;
2348
+ itemIconColorChildActiveHoverInverted: string;
2349
+ itemIconColorCollapsedInverted: string;
2350
+ itemIconColorHorizontalInverted: string;
2351
+ itemIconColorHoverHorizontalInverted: string;
2352
+ itemIconColorActiveHorizontalInverted: string;
2353
+ itemIconColorActiveHoverHorizontalInverted: string;
2354
+ itemIconColorChildActiveHorizontalInverted: string;
2355
+ itemIconColorChildActiveHoverHorizontalInverted: string;
2356
+ arrowColorInverted: string;
2357
+ arrowColorHoverInverted: string;
2358
+ arrowColorActiveInverted: string;
2359
+ arrowColorActiveHoverInverted: string;
2360
+ arrowColorChildActiveInverted: string;
2361
+ arrowColorChildActiveHoverInverted: string;
2362
+ groupTextColorInverted: string;
2363
+ borderRadius: string;
2364
+ color: string;
2365
+ groupTextColor: string;
2366
+ itemColorHover: string;
2367
+ itemColorActive: string;
2368
+ itemColorActiveHover: string;
2369
+ itemColorActiveCollapsed: string;
2370
+ itemTextColor: string;
2371
+ itemTextColorHover: string;
2372
+ itemTextColorActive: string;
2373
+ itemTextColorActiveHover: string;
2374
+ itemTextColorChildActive: string;
2375
+ itemTextColorChildActiveHover: string;
2376
+ itemTextColorHorizontal: string;
2377
+ itemTextColorHoverHorizontal: string;
2378
+ itemTextColorActiveHorizontal: string;
2379
+ itemTextColorActiveHoverHorizontal: string;
2380
+ itemTextColorChildActiveHorizontal: string;
2381
+ itemTextColorChildActiveHoverHorizontal: string;
2382
+ itemIconColor: string;
2383
+ itemIconColorHover: string;
2384
+ itemIconColorActive: string;
2385
+ itemIconColorActiveHover: string;
2386
+ itemIconColorChildActive: string;
2387
+ itemIconColorChildActiveHover: string;
2388
+ itemIconColorCollapsed: string;
2389
+ itemIconColorHorizontal: string;
2390
+ itemIconColorHoverHorizontal: string;
2391
+ itemIconColorActiveHorizontal: string;
2392
+ itemIconColorActiveHoverHorizontal: string;
2393
+ itemIconColorChildActiveHorizontal: string;
2394
+ itemIconColorChildActiveHoverHorizontal: string;
2395
+ itemHeight: string;
2396
+ arrowColor: string;
2397
+ arrowColorHover: string;
2398
+ arrowColorActive: string;
2399
+ arrowColorActiveHover: string;
2400
+ arrowColorChildActive: string;
2401
+ arrowColorChildActiveHover: string;
2402
+ colorInverted: string;
2403
+ borderColorHorizontal: string;
2404
+ fontSize: string;
2405
+ dividerColor: string;
2406
+ }, {
2407
+ Tooltip: Theme<"Tooltip", {
2408
+ borderRadius: string;
2409
+ boxShadow: string;
2410
+ color: string;
2411
+ textColor: string;
2412
+ padding: string;
2413
+ }, {
2414
+ Popover: Theme<"Popover", {
2415
+ fontSize: string;
2416
+ borderRadius: string;
2417
+ color: string;
2418
+ dividerColor: string;
2419
+ textColor: string;
2420
+ boxShadow: string;
2421
+ space: string;
2422
+ spaceArrow: string;
2423
+ arrowOffset: string;
2424
+ arrowOffsetVertical: string;
2425
+ arrowHeight: string;
2426
+ padding: string;
2427
+ }, {
2428
+ Scrollbar: Theme<"Scrollbar", {
2429
+ height: string;
2430
+ width: string;
2431
+ borderRadius: string;
2432
+ color: string;
2433
+ colorHover: string;
2434
+ railInsetHorizontalBottom: string;
2435
+ railInsetHorizontalTop: string;
2436
+ railInsetVerticalRight: string;
2437
+ railInsetVerticalLeft: string;
2438
+ railColor: string;
2439
+ }, any>;
2440
+ }>;
2441
+ }>;
2442
+ Dropdown: Theme<"Dropdown", {
2443
+ optionHeightSmall: string;
2444
+ optionHeightMedium: string;
2445
+ optionHeightLarge: string;
2446
+ optionHeightHuge: string;
2447
+ borderRadius: string;
2448
+ fontSizeSmall: string;
2449
+ fontSizeMedium: string;
2450
+ fontSizeLarge: string;
2451
+ fontSizeHuge: string;
2452
+ optionTextColor: string;
2453
+ optionTextColorHover: string;
2454
+ optionTextColorActive: string;
2455
+ optionTextColorChildActive: string;
2456
+ color: string;
2457
+ dividerColor: string;
2458
+ suffixColor: string;
2459
+ prefixColor: string;
2460
+ optionColorHover: string;
2461
+ optionColorActive: string;
2462
+ groupHeaderTextColor: string;
2463
+ optionTextColorInverted: string;
2464
+ optionTextColorHoverInverted: string;
2465
+ optionTextColorActiveInverted: string;
2466
+ optionTextColorChildActiveInverted: string;
2467
+ colorInverted: string;
2468
+ dividerColorInverted: string;
2469
+ suffixColorInverted: string;
2470
+ prefixColorInverted: string;
2471
+ optionColorHoverInverted: string;
2472
+ optionColorActiveInverted: string;
2473
+ groupHeaderTextColorInverted: string;
2474
+ optionOpacityDisabled: string;
2475
+ padding: string;
2476
+ optionIconSizeSmall: string;
2477
+ optionIconSizeMedium: string;
2478
+ optionIconSizeLarge: string;
2479
+ optionIconSizeHuge: string;
2480
+ optionSuffixWidthSmall: string;
2481
+ optionSuffixWidthMedium: string;
2482
+ optionSuffixWidthLarge: string;
2483
+ optionSuffixWidthHuge: string;
2484
+ optionIconSuffixWidthSmall: string;
2485
+ optionIconSuffixWidthMedium: string;
2486
+ optionIconSuffixWidthLarge: string;
2487
+ optionIconSuffixWidthHuge: string;
2488
+ optionPrefixWidthSmall: string;
2489
+ optionPrefixWidthMedium: string;
2490
+ optionPrefixWidthLarge: string;
2491
+ optionPrefixWidthHuge: string;
2492
+ optionIconPrefixWidthSmall: string;
2493
+ optionIconPrefixWidthMedium: string;
2494
+ optionIconPrefixWidthLarge: string;
2495
+ optionIconPrefixWidthHuge: string;
2496
+ }, {
2497
+ Popover: Theme<"Popover", {
2498
+ fontSize: string;
2499
+ borderRadius: string;
2500
+ color: string;
2501
+ dividerColor: string;
2502
+ textColor: string;
2503
+ boxShadow: string;
2504
+ space: string;
2505
+ spaceArrow: string;
2506
+ arrowOffset: string;
2507
+ arrowOffsetVertical: string;
2508
+ arrowHeight: string;
2509
+ padding: string;
2510
+ }, {
2511
+ Scrollbar: Theme<"Scrollbar", {
2512
+ height: string;
2513
+ width: string;
2514
+ borderRadius: string;
2515
+ color: string;
2516
+ colorHover: string;
2517
+ railInsetHorizontalBottom: string;
2518
+ railInsetHorizontalTop: string;
2519
+ railInsetVerticalRight: string;
2520
+ railInsetVerticalLeft: string;
2521
+ railColor: string;
2522
+ }, any>;
2523
+ }>;
2524
+ }>;
2525
+ }>>>;
2526
+ readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Menu", {
2527
+ itemColorHoverInverted: string;
2528
+ itemColorActiveInverted: string;
2529
+ itemColorActiveHoverInverted: string;
2530
+ itemColorActiveCollapsedInverted: string;
2531
+ itemTextColorInverted: string;
2532
+ itemTextColorHoverInverted: string;
2533
+ itemTextColorChildActiveInverted: string;
2534
+ itemTextColorChildActiveHoverInverted: string;
2535
+ itemTextColorActiveInverted: string;
2536
+ itemTextColorActiveHoverInverted: string;
2537
+ itemTextColorHorizontalInverted: string;
2538
+ itemTextColorHoverHorizontalInverted: string;
2539
+ itemTextColorChildActiveHorizontalInverted: string;
2540
+ itemTextColorChildActiveHoverHorizontalInverted: string;
2541
+ itemTextColorActiveHorizontalInverted: string;
2542
+ itemTextColorActiveHoverHorizontalInverted: string;
2543
+ itemIconColorInverted: string;
2544
+ itemIconColorHoverInverted: string;
2545
+ itemIconColorActiveInverted: string;
2546
+ itemIconColorActiveHoverInverted: string;
2547
+ itemIconColorChildActiveInverted: string;
2548
+ itemIconColorChildActiveHoverInverted: string;
2549
+ itemIconColorCollapsedInverted: string;
2550
+ itemIconColorHorizontalInverted: string;
2551
+ itemIconColorHoverHorizontalInverted: string;
2552
+ itemIconColorActiveHorizontalInverted: string;
2553
+ itemIconColorActiveHoverHorizontalInverted: string;
2554
+ itemIconColorChildActiveHorizontalInverted: string;
2555
+ itemIconColorChildActiveHoverHorizontalInverted: string;
2556
+ arrowColorInverted: string;
2557
+ arrowColorHoverInverted: string;
2558
+ arrowColorActiveInverted: string;
2559
+ arrowColorActiveHoverInverted: string;
2560
+ arrowColorChildActiveInverted: string;
2561
+ arrowColorChildActiveHoverInverted: string;
2562
+ groupTextColorInverted: string;
2563
+ borderRadius: string;
2564
+ color: string;
2565
+ groupTextColor: string;
2566
+ itemColorHover: string;
2567
+ itemColorActive: string;
2568
+ itemColorActiveHover: string;
2569
+ itemColorActiveCollapsed: string;
2570
+ itemTextColor: string;
2571
+ itemTextColorHover: string;
2572
+ itemTextColorActive: string;
2573
+ itemTextColorActiveHover: string;
2574
+ itemTextColorChildActive: string;
2575
+ itemTextColorChildActiveHover: string;
2576
+ itemTextColorHorizontal: string;
2577
+ itemTextColorHoverHorizontal: string;
2578
+ itemTextColorActiveHorizontal: string;
2579
+ itemTextColorActiveHoverHorizontal: string;
2580
+ itemTextColorChildActiveHorizontal: string;
2581
+ itemTextColorChildActiveHoverHorizontal: string;
2582
+ itemIconColor: string;
2583
+ itemIconColorHover: string;
2584
+ itemIconColorActive: string;
2585
+ itemIconColorActiveHover: string;
2586
+ itemIconColorChildActive: string;
2587
+ itemIconColorChildActiveHover: string;
2588
+ itemIconColorCollapsed: string;
2589
+ itemIconColorHorizontal: string;
2590
+ itemIconColorHoverHorizontal: string;
2591
+ itemIconColorActiveHorizontal: string;
2592
+ itemIconColorActiveHoverHorizontal: string;
2593
+ itemIconColorChildActiveHorizontal: string;
2594
+ itemIconColorChildActiveHoverHorizontal: string;
2595
+ itemHeight: string;
2596
+ arrowColor: string;
2597
+ arrowColorHover: string;
2598
+ arrowColorActive: string;
2599
+ arrowColorActiveHover: string;
2600
+ arrowColorChildActive: string;
2601
+ arrowColorChildActiveHover: string;
2602
+ colorInverted: string;
2603
+ borderColorHorizontal: string;
2604
+ fontSize: string;
2605
+ dividerColor: string;
2606
+ }, {
2607
+ Tooltip: Theme<"Tooltip", {
2608
+ borderRadius: string;
2609
+ boxShadow: string;
2610
+ color: string;
2611
+ textColor: string;
2612
+ padding: string;
2613
+ }, {
2614
+ Popover: Theme<"Popover", {
2615
+ fontSize: string;
2616
+ borderRadius: string;
2617
+ color: string;
2618
+ dividerColor: string;
2619
+ textColor: string;
2620
+ boxShadow: string;
2621
+ space: string;
2622
+ spaceArrow: string;
2623
+ arrowOffset: string;
2624
+ arrowOffsetVertical: string;
2625
+ arrowHeight: string;
2626
+ padding: string;
2627
+ }, {
2628
+ Scrollbar: Theme<"Scrollbar", {
2629
+ height: string;
2630
+ width: string;
2631
+ borderRadius: string;
2632
+ color: string;
2633
+ colorHover: string;
2634
+ railInsetHorizontalBottom: string;
2635
+ railInsetHorizontalTop: string;
2636
+ railInsetVerticalRight: string;
2637
+ railInsetVerticalLeft: string;
2638
+ railColor: string;
2639
+ }, any>;
2640
+ }>;
2641
+ }>;
2642
+ Dropdown: Theme<"Dropdown", {
2643
+ optionHeightSmall: string;
2644
+ optionHeightMedium: string;
2645
+ optionHeightLarge: string;
2646
+ optionHeightHuge: string;
2647
+ borderRadius: string;
2648
+ fontSizeSmall: string;
2649
+ fontSizeMedium: string;
2650
+ fontSizeLarge: string;
2651
+ fontSizeHuge: string;
2652
+ optionTextColor: string;
2653
+ optionTextColorHover: string;
2654
+ optionTextColorActive: string;
2655
+ optionTextColorChildActive: string;
2656
+ color: string;
2657
+ dividerColor: string;
2658
+ suffixColor: string;
2659
+ prefixColor: string;
2660
+ optionColorHover: string;
2661
+ optionColorActive: string;
2662
+ groupHeaderTextColor: string;
2663
+ optionTextColorInverted: string;
2664
+ optionTextColorHoverInverted: string;
2665
+ optionTextColorActiveInverted: string;
2666
+ optionTextColorChildActiveInverted: string;
2667
+ colorInverted: string;
2668
+ dividerColorInverted: string;
2669
+ suffixColorInverted: string;
2670
+ prefixColorInverted: string;
2671
+ optionColorHoverInverted: string;
2672
+ optionColorActiveInverted: string;
2673
+ groupHeaderTextColorInverted: string;
2674
+ optionOpacityDisabled: string;
2675
+ padding: string;
2676
+ optionIconSizeSmall: string;
2677
+ optionIconSizeMedium: string;
2678
+ optionIconSizeLarge: string;
2679
+ optionIconSizeHuge: string;
2680
+ optionSuffixWidthSmall: string;
2681
+ optionSuffixWidthMedium: string;
2682
+ optionSuffixWidthLarge: string;
2683
+ optionSuffixWidthHuge: string;
2684
+ optionIconSuffixWidthSmall: string;
2685
+ optionIconSuffixWidthMedium: string;
2686
+ optionIconSuffixWidthLarge: string;
2687
+ optionIconSuffixWidthHuge: string;
2688
+ optionPrefixWidthSmall: string;
2689
+ optionPrefixWidthMedium: string;
2690
+ optionPrefixWidthLarge: string;
2691
+ optionPrefixWidthHuge: string;
2692
+ optionIconPrefixWidthSmall: string;
2693
+ optionIconPrefixWidthMedium: string;
2694
+ optionIconPrefixWidthLarge: string;
2695
+ optionIconPrefixWidthHuge: string;
2696
+ }, {
2697
+ Popover: Theme<"Popover", {
2698
+ fontSize: string;
2699
+ borderRadius: string;
2700
+ color: string;
2701
+ dividerColor: string;
2702
+ textColor: string;
2703
+ boxShadow: string;
2704
+ space: string;
2705
+ spaceArrow: string;
2706
+ arrowOffset: string;
2707
+ arrowOffsetVertical: string;
2708
+ arrowHeight: string;
2709
+ padding: string;
2710
+ }, {
2711
+ Scrollbar: Theme<"Scrollbar", {
2712
+ height: string;
2713
+ width: string;
2714
+ borderRadius: string;
2715
+ color: string;
2716
+ colorHover: string;
2717
+ railInsetHorizontalBottom: string;
2718
+ railInsetHorizontalTop: string;
2719
+ railInsetVerticalRight: string;
2720
+ railInsetVerticalLeft: string;
2721
+ railColor: string;
2722
+ }, any>;
2723
+ }>;
2724
+ }>;
2725
+ }>>>;
2726
+ }>> & Readonly<{}>, {
2727
+ mergedClsPrefix: Ref<string, string>;
2728
+ controlledExpandedKeys: ComputedRef< Key[] | undefined>;
2729
+ uncontrolledExpanededKeys: Ref< Key[], Key[]>;
2730
+ mergedExpandedKeys: ComputedRef< Key[]>;
2731
+ uncontrolledValue: Ref< Key | null, Key | null>;
2732
+ mergedValue: ComputedRef< Key | null>;
2733
+ activePath: ComputedRef< Key[]>;
2734
+ tmNodes: ComputedRef< TreeNode<MenuOption, MenuGroupOption, MenuIgnoredOption>[]>;
2735
+ mergedTheme: ComputedRef<{
2736
+ common: ThemeCommonVars;
2737
+ self: {
2738
+ itemColorHoverInverted: string;
2739
+ itemColorActiveInverted: string;
2740
+ itemColorActiveHoverInverted: string;
2741
+ itemColorActiveCollapsedInverted: string;
2742
+ itemTextColorInverted: string;
2743
+ itemTextColorHoverInverted: string;
2744
+ itemTextColorChildActiveInverted: string;
2745
+ itemTextColorChildActiveHoverInverted: string;
2746
+ itemTextColorActiveInverted: string;
2747
+ itemTextColorActiveHoverInverted: string;
2748
+ itemTextColorHorizontalInverted: string;
2749
+ itemTextColorHoverHorizontalInverted: string;
2750
+ itemTextColorChildActiveHorizontalInverted: string;
2751
+ itemTextColorChildActiveHoverHorizontalInverted: string;
2752
+ itemTextColorActiveHorizontalInverted: string;
2753
+ itemTextColorActiveHoverHorizontalInverted: string;
2754
+ itemIconColorInverted: string;
2755
+ itemIconColorHoverInverted: string;
2756
+ itemIconColorActiveInverted: string;
2757
+ itemIconColorActiveHoverInverted: string;
2758
+ itemIconColorChildActiveInverted: string;
2759
+ itemIconColorChildActiveHoverInverted: string;
2760
+ itemIconColorCollapsedInverted: string;
2761
+ itemIconColorHorizontalInverted: string;
2762
+ itemIconColorHoverHorizontalInverted: string;
2763
+ itemIconColorActiveHorizontalInverted: string;
2764
+ itemIconColorActiveHoverHorizontalInverted: string;
2765
+ itemIconColorChildActiveHorizontalInverted: string;
2766
+ itemIconColorChildActiveHoverHorizontalInverted: string;
2767
+ arrowColorInverted: string;
2768
+ arrowColorHoverInverted: string;
2769
+ arrowColorActiveInverted: string;
2770
+ arrowColorActiveHoverInverted: string;
2771
+ arrowColorChildActiveInverted: string;
2772
+ arrowColorChildActiveHoverInverted: string;
2773
+ groupTextColorInverted: string;
2774
+ borderRadius: string;
2775
+ color: string;
2776
+ groupTextColor: string;
2777
+ itemColorHover: string;
2778
+ itemColorActive: string;
2779
+ itemColorActiveHover: string;
2780
+ itemColorActiveCollapsed: string;
2781
+ itemTextColor: string;
2782
+ itemTextColorHover: string;
2783
+ itemTextColorActive: string;
2784
+ itemTextColorActiveHover: string;
2785
+ itemTextColorChildActive: string;
2786
+ itemTextColorChildActiveHover: string;
2787
+ itemTextColorHorizontal: string;
2788
+ itemTextColorHoverHorizontal: string;
2789
+ itemTextColorActiveHorizontal: string;
2790
+ itemTextColorActiveHoverHorizontal: string;
2791
+ itemTextColorChildActiveHorizontal: string;
2792
+ itemTextColorChildActiveHoverHorizontal: string;
2793
+ itemIconColor: string;
2794
+ itemIconColorHover: string;
2795
+ itemIconColorActive: string;
2796
+ itemIconColorActiveHover: string;
2797
+ itemIconColorChildActive: string;
2798
+ itemIconColorChildActiveHover: string;
2799
+ itemIconColorCollapsed: string;
2800
+ itemIconColorHorizontal: string;
2801
+ itemIconColorHoverHorizontal: string;
2802
+ itemIconColorActiveHorizontal: string;
2803
+ itemIconColorActiveHoverHorizontal: string;
2804
+ itemIconColorChildActiveHorizontal: string;
2805
+ itemIconColorChildActiveHoverHorizontal: string;
2806
+ itemHeight: string;
2807
+ arrowColor: string;
2808
+ arrowColorHover: string;
2809
+ arrowColorActive: string;
2810
+ arrowColorActiveHover: string;
2811
+ arrowColorChildActive: string;
2812
+ arrowColorChildActiveHover: string;
2813
+ colorInverted: string;
2814
+ borderColorHorizontal: string;
2815
+ fontSize: string;
2816
+ dividerColor: string;
2817
+ };
2818
+ peers: {
2819
+ Tooltip: Theme<"Tooltip", {
2820
+ borderRadius: string;
2821
+ boxShadow: string;
2822
+ color: string;
2823
+ textColor: string;
2824
+ padding: string;
2825
+ }, {
2826
+ Popover: Theme<"Popover", {
2827
+ fontSize: string;
2828
+ borderRadius: string;
2829
+ color: string;
2830
+ dividerColor: string;
2831
+ textColor: string;
2832
+ boxShadow: string;
2833
+ space: string;
2834
+ spaceArrow: string;
2835
+ arrowOffset: string;
2836
+ arrowOffsetVertical: string;
2837
+ arrowHeight: string;
2838
+ padding: string;
2839
+ }, {
2840
+ Scrollbar: Theme<"Scrollbar", {
2841
+ height: string;
2842
+ width: string;
2843
+ borderRadius: string;
2844
+ color: string;
2845
+ colorHover: string;
2846
+ railInsetHorizontalBottom: string;
2847
+ railInsetHorizontalTop: string;
2848
+ railInsetVerticalRight: string;
2849
+ railInsetVerticalLeft: string;
2850
+ railColor: string;
2851
+ }, any>;
2852
+ }>;
2853
+ }>;
2854
+ Dropdown: Theme<"Dropdown", {
2855
+ optionHeightSmall: string;
2856
+ optionHeightMedium: string;
2857
+ optionHeightLarge: string;
2858
+ optionHeightHuge: string;
2859
+ borderRadius: string;
2860
+ fontSizeSmall: string;
2861
+ fontSizeMedium: string;
2862
+ fontSizeLarge: string;
2863
+ fontSizeHuge: string;
2864
+ optionTextColor: string;
2865
+ optionTextColorHover: string;
2866
+ optionTextColorActive: string;
2867
+ optionTextColorChildActive: string;
2868
+ color: string;
2869
+ dividerColor: string;
2870
+ suffixColor: string;
2871
+ prefixColor: string;
2872
+ optionColorHover: string;
2873
+ optionColorActive: string;
2874
+ groupHeaderTextColor: string;
2875
+ optionTextColorInverted: string;
2876
+ optionTextColorHoverInverted: string;
2877
+ optionTextColorActiveInverted: string;
2878
+ optionTextColorChildActiveInverted: string;
2879
+ colorInverted: string;
2880
+ dividerColorInverted: string;
2881
+ suffixColorInverted: string;
2882
+ prefixColorInverted: string;
2883
+ optionColorHoverInverted: string;
2884
+ optionColorActiveInverted: string;
2885
+ groupHeaderTextColorInverted: string;
2886
+ optionOpacityDisabled: string;
2887
+ padding: string;
2888
+ optionIconSizeSmall: string;
2889
+ optionIconSizeMedium: string;
2890
+ optionIconSizeLarge: string;
2891
+ optionIconSizeHuge: string;
2892
+ optionSuffixWidthSmall: string;
2893
+ optionSuffixWidthMedium: string;
2894
+ optionSuffixWidthLarge: string;
2895
+ optionSuffixWidthHuge: string;
2896
+ optionIconSuffixWidthSmall: string;
2897
+ optionIconSuffixWidthMedium: string;
2898
+ optionIconSuffixWidthLarge: string;
2899
+ optionIconSuffixWidthHuge: string;
2900
+ optionPrefixWidthSmall: string;
2901
+ optionPrefixWidthMedium: string;
2902
+ optionPrefixWidthLarge: string;
2903
+ optionPrefixWidthHuge: string;
2904
+ optionIconPrefixWidthSmall: string;
2905
+ optionIconPrefixWidthMedium: string;
2906
+ optionIconPrefixWidthLarge: string;
2907
+ optionIconPrefixWidthHuge: string;
2908
+ }, {
2909
+ Popover: Theme<"Popover", {
2910
+ fontSize: string;
2911
+ borderRadius: string;
2912
+ color: string;
2913
+ dividerColor: string;
2914
+ textColor: string;
2915
+ boxShadow: string;
2916
+ space: string;
2917
+ spaceArrow: string;
2918
+ arrowOffset: string;
2919
+ arrowOffsetVertical: string;
2920
+ arrowHeight: string;
2921
+ padding: string;
2922
+ }, {
2923
+ Scrollbar: Theme<"Scrollbar", {
2924
+ height: string;
2925
+ width: string;
2926
+ borderRadius: string;
2927
+ color: string;
2928
+ colorHover: string;
2929
+ railInsetHorizontalBottom: string;
2930
+ railInsetHorizontalTop: string;
2931
+ railInsetVerticalRight: string;
2932
+ railInsetVerticalLeft: string;
2933
+ railColor: string;
2934
+ }, any>;
2935
+ }>;
2936
+ }>;
2937
+ };
2938
+ peerOverrides: {
2939
+ Tooltip?: {
2940
+ peers?: {
2941
+ Popover?: ExtractThemeOverrides<Theme<"Popover", {
2942
+ fontSize: string;
2943
+ borderRadius: string;
2944
+ color: string;
2945
+ dividerColor: string;
2946
+ textColor: string;
2947
+ boxShadow: string;
2948
+ space: string;
2949
+ spaceArrow: string;
2950
+ arrowOffset: string;
2951
+ arrowOffsetVertical: string;
2952
+ arrowHeight: string;
2953
+ padding: string;
2954
+ }, {
2955
+ Scrollbar: Theme<"Scrollbar", {
2956
+ height: string;
2957
+ width: string;
2958
+ borderRadius: string;
2959
+ color: string;
2960
+ colorHover: string;
2961
+ railInsetHorizontalBottom: string;
2962
+ railInsetHorizontalTop: string;
2963
+ railInsetVerticalRight: string;
2964
+ railInsetVerticalLeft: string;
2965
+ railColor: string;
2966
+ }, any>;
2967
+ }>> | undefined;
2968
+ } | undefined;
2969
+ } | undefined;
2970
+ Dropdown?: {
2971
+ peers?: {
2972
+ Popover?: ExtractThemeOverrides<Theme<"Popover", {
2973
+ fontSize: string;
2974
+ borderRadius: string;
2975
+ color: string;
2976
+ dividerColor: string;
2977
+ textColor: string;
2978
+ boxShadow: string;
2979
+ space: string;
2980
+ spaceArrow: string;
2981
+ arrowOffset: string;
2982
+ arrowOffsetVertical: string;
2983
+ arrowHeight: string;
2984
+ padding: string;
2985
+ }, {
2986
+ Scrollbar: Theme<"Scrollbar", {
2987
+ height: string;
2988
+ width: string;
2989
+ borderRadius: string;
2990
+ color: string;
2991
+ colorHover: string;
2992
+ railInsetHorizontalBottom: string;
2993
+ railInsetHorizontalTop: string;
2994
+ railInsetVerticalRight: string;
2995
+ railInsetVerticalLeft: string;
2996
+ railColor: string;
2997
+ }, any>;
2998
+ }>> | undefined;
2999
+ } | undefined;
3000
+ } | undefined;
3001
+ };
3002
+ }>;
3003
+ mergedCollapsed: ComputedRef<boolean>;
3004
+ cssVars: ComputedRef<any> | undefined;
3005
+ themeClass: Ref<string, string> | undefined;
3006
+ overflowRef: Ref<{
3007
+ sync: (options: {
3008
+ showAllItemsBeforeCalculate: boolean;
3009
+ }) => void;
3010
+ } | null, VOverflowInst | {
3011
+ sync: (options: {
3012
+ showAllItemsBeforeCalculate: boolean;
3013
+ }) => void;
3014
+ } | null>;
3015
+ counterRef: Ref<HTMLElement | null, HTMLElement | null>;
3016
+ updateCounter: () => void;
3017
+ onResize: () => void;
3018
+ onUpdateOverflow: (overflow: boolean) => void;
3019
+ onUpdateCount: (count: number) => void;
3020
+ renderCounter: () => VNodeChild;
3021
+ getCounter: () => HTMLElement | null;
3022
+ onRender: (() => void) | undefined;
3023
+ showOption: (key?: Key) => void;
3024
+ deriveResponsiveState: () => void;
3025
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
3026
+ readonly options: MenuMixedOption[];
3027
+ readonly mode: "horizontal" | "vertical";
3028
+ readonly disabled: boolean;
3029
+ readonly show: boolean;
3030
+ readonly iconSize: number;
3031
+ readonly defaultValue: Key | null;
3032
+ readonly responsive: boolean;
3033
+ readonly disabledField: string;
3034
+ readonly labelField: string;
3035
+ readonly childrenField: string;
3036
+ readonly accordion: boolean;
3037
+ readonly collapsed: boolean | undefined;
3038
+ readonly defaultExpandAll: boolean;
3039
+ readonly indent: number;
3040
+ readonly inverted: boolean;
3041
+ readonly keyField: string;
3042
+ readonly collapsedWidth: number;
3043
+ readonly collapsedIconSize: number;
3044
+ readonly watchProps: ("defaultValue" | "defaultExpandedKeys")[];
3045
+ readonly dropdownPlacement: FollowerPlacement;
3046
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
3047
+ P: {};
3048
+ B: {};
3049
+ D: {};
3050
+ C: {};
3051
+ M: {};
3052
+ Defaults: {};
3053
+ }, Readonly<globalThis.ExtractPropTypes<{
3054
+ readonly options: {
3055
+ readonly type: PropType< MenuMixedOption[]>;
3056
+ readonly default: () => never[];
3057
+ };
3058
+ readonly collapsed: {
3059
+ readonly type: PropType<boolean | undefined>;
3060
+ readonly default: undefined;
3061
+ };
3062
+ readonly collapsedWidth: {
3063
+ readonly type: NumberConstructor;
3064
+ readonly default: 48;
3065
+ };
3066
+ readonly iconSize: {
3067
+ readonly type: NumberConstructor;
3068
+ readonly default: 20;
3069
+ };
3070
+ readonly collapsedIconSize: {
3071
+ readonly type: NumberConstructor;
3072
+ readonly default: 24;
3073
+ };
3074
+ readonly rootIndent: NumberConstructor;
3075
+ readonly indent: {
3076
+ readonly type: NumberConstructor;
3077
+ readonly default: 32;
3078
+ };
3079
+ readonly labelField: {
3080
+ readonly type: StringConstructor;
3081
+ readonly default: "label";
3082
+ };
3083
+ readonly keyField: {
3084
+ readonly type: StringConstructor;
3085
+ readonly default: "key";
3086
+ };
3087
+ readonly childrenField: {
3088
+ readonly type: StringConstructor;
3089
+ readonly default: "children";
3090
+ };
3091
+ readonly disabledField: {
3092
+ readonly type: StringConstructor;
3093
+ readonly default: "disabled";
3094
+ };
3095
+ readonly defaultExpandAll: BooleanConstructor;
3096
+ readonly defaultExpandedKeys: PropType< Key[]>;
3097
+ readonly expandedKeys: PropType< Key[]>;
3098
+ readonly value: PropType< Key | null>;
3099
+ readonly defaultValue: {
3100
+ readonly type: PropType< Key | null>;
3101
+ readonly default: null;
3102
+ };
3103
+ readonly mode: {
3104
+ readonly type: PropType<"vertical" | "horizontal">;
3105
+ readonly default: "vertical";
3106
+ };
3107
+ readonly watchProps: {
3108
+ readonly type: PropType<Array<"defaultExpandedKeys" | "defaultValue">>;
3109
+ readonly default: undefined;
3110
+ };
3111
+ readonly disabled: BooleanConstructor;
3112
+ readonly show: {
3113
+ readonly type: BooleanConstructor;
3114
+ readonly default: true;
3115
+ };
3116
+ readonly inverted: BooleanConstructor;
3117
+ readonly 'onUpdate:expandedKeys': PropType< MaybeArray<OnUpdateKeys>>;
3118
+ readonly onUpdateExpandedKeys: PropType< MaybeArray<OnUpdateKeys>>;
3119
+ readonly onUpdateValue: PropType< MaybeArray<OnUpdateValue>>;
3120
+ readonly 'onUpdate:value': PropType< MaybeArray<OnUpdateValue>>;
3121
+ readonly expandIcon: PropType<(option: MenuOption) => VNodeChild>;
3122
+ readonly renderIcon: PropType<(option: MenuOption) => VNodeChild>;
3123
+ readonly renderLabel: PropType<(option: MenuOption | MenuGroupOption) => VNodeChild>;
3124
+ readonly renderExtra: PropType<(option: MenuOption | MenuGroupOption) => VNodeChild>;
3125
+ readonly dropdownProps: PropType< DropdownProps>;
3126
+ readonly accordion: BooleanConstructor;
3127
+ readonly nodeProps: PropType< MenuNodeProps>;
3128
+ readonly dropdownPlacement: {
3129
+ readonly type: PropType< FollowerPlacement>;
3130
+ readonly default: "bottom";
3131
+ };
3132
+ readonly responsive: BooleanConstructor;
3133
+ readonly items: PropType<Array<MenuOption | MenuGroupOption>>;
3134
+ readonly onOpenNamesChange: PropType< MaybeArray<OnUpdateKeys>>;
3135
+ readonly onSelect: PropType< MaybeArray<OnUpdateValue>>;
3136
+ readonly onExpandedNamesChange: PropType< MaybeArray<OnUpdateKeys>>;
3137
+ readonly expandedNames: PropType< Key[]>;
3138
+ readonly defaultExpandedNames: PropType< Key[]>;
3139
+ readonly theme: PropType< Theme<"Menu", {
3140
+ itemColorHoverInverted: string;
3141
+ itemColorActiveInverted: string;
3142
+ itemColorActiveHoverInverted: string;
3143
+ itemColorActiveCollapsedInverted: string;
3144
+ itemTextColorInverted: string;
3145
+ itemTextColorHoverInverted: string;
3146
+ itemTextColorChildActiveInverted: string;
3147
+ itemTextColorChildActiveHoverInverted: string;
3148
+ itemTextColorActiveInverted: string;
3149
+ itemTextColorActiveHoverInverted: string;
3150
+ itemTextColorHorizontalInverted: string;
3151
+ itemTextColorHoverHorizontalInverted: string;
3152
+ itemTextColorChildActiveHorizontalInverted: string;
3153
+ itemTextColorChildActiveHoverHorizontalInverted: string;
3154
+ itemTextColorActiveHorizontalInverted: string;
3155
+ itemTextColorActiveHoverHorizontalInverted: string;
3156
+ itemIconColorInverted: string;
3157
+ itemIconColorHoverInverted: string;
3158
+ itemIconColorActiveInverted: string;
3159
+ itemIconColorActiveHoverInverted: string;
3160
+ itemIconColorChildActiveInverted: string;
3161
+ itemIconColorChildActiveHoverInverted: string;
3162
+ itemIconColorCollapsedInverted: string;
3163
+ itemIconColorHorizontalInverted: string;
3164
+ itemIconColorHoverHorizontalInverted: string;
3165
+ itemIconColorActiveHorizontalInverted: string;
3166
+ itemIconColorActiveHoverHorizontalInverted: string;
3167
+ itemIconColorChildActiveHorizontalInverted: string;
3168
+ itemIconColorChildActiveHoverHorizontalInverted: string;
3169
+ arrowColorInverted: string;
3170
+ arrowColorHoverInverted: string;
3171
+ arrowColorActiveInverted: string;
3172
+ arrowColorActiveHoverInverted: string;
3173
+ arrowColorChildActiveInverted: string;
3174
+ arrowColorChildActiveHoverInverted: string;
3175
+ groupTextColorInverted: string;
3176
+ borderRadius: string;
3177
+ color: string;
3178
+ groupTextColor: string;
3179
+ itemColorHover: string;
3180
+ itemColorActive: string;
3181
+ itemColorActiveHover: string;
3182
+ itemColorActiveCollapsed: string;
3183
+ itemTextColor: string;
3184
+ itemTextColorHover: string;
3185
+ itemTextColorActive: string;
3186
+ itemTextColorActiveHover: string;
3187
+ itemTextColorChildActive: string;
3188
+ itemTextColorChildActiveHover: string;
3189
+ itemTextColorHorizontal: string;
3190
+ itemTextColorHoverHorizontal: string;
3191
+ itemTextColorActiveHorizontal: string;
3192
+ itemTextColorActiveHoverHorizontal: string;
3193
+ itemTextColorChildActiveHorizontal: string;
3194
+ itemTextColorChildActiveHoverHorizontal: string;
3195
+ itemIconColor: string;
3196
+ itemIconColorHover: string;
3197
+ itemIconColorActive: string;
3198
+ itemIconColorActiveHover: string;
3199
+ itemIconColorChildActive: string;
3200
+ itemIconColorChildActiveHover: string;
3201
+ itemIconColorCollapsed: string;
3202
+ itemIconColorHorizontal: string;
3203
+ itemIconColorHoverHorizontal: string;
3204
+ itemIconColorActiveHorizontal: string;
3205
+ itemIconColorActiveHoverHorizontal: string;
3206
+ itemIconColorChildActiveHorizontal: string;
3207
+ itemIconColorChildActiveHoverHorizontal: string;
3208
+ itemHeight: string;
3209
+ arrowColor: string;
3210
+ arrowColorHover: string;
3211
+ arrowColorActive: string;
3212
+ arrowColorActiveHover: string;
3213
+ arrowColorChildActive: string;
3214
+ arrowColorChildActiveHover: string;
3215
+ colorInverted: string;
3216
+ borderColorHorizontal: string;
3217
+ fontSize: string;
3218
+ dividerColor: string;
3219
+ }, {
3220
+ Tooltip: Theme<"Tooltip", {
3221
+ borderRadius: string;
3222
+ boxShadow: string;
3223
+ color: string;
3224
+ textColor: string;
3225
+ padding: string;
3226
+ }, {
3227
+ Popover: Theme<"Popover", {
3228
+ fontSize: string;
3229
+ borderRadius: string;
3230
+ color: string;
3231
+ dividerColor: string;
3232
+ textColor: string;
3233
+ boxShadow: string;
3234
+ space: string;
3235
+ spaceArrow: string;
3236
+ arrowOffset: string;
3237
+ arrowOffsetVertical: string;
3238
+ arrowHeight: string;
3239
+ padding: string;
3240
+ }, {
3241
+ Scrollbar: Theme<"Scrollbar", {
3242
+ height: string;
3243
+ width: string;
3244
+ borderRadius: string;
3245
+ color: string;
3246
+ colorHover: string;
3247
+ railInsetHorizontalBottom: string;
3248
+ railInsetHorizontalTop: string;
3249
+ railInsetVerticalRight: string;
3250
+ railInsetVerticalLeft: string;
3251
+ railColor: string;
3252
+ }, any>;
3253
+ }>;
3254
+ }>;
3255
+ Dropdown: Theme<"Dropdown", {
3256
+ optionHeightSmall: string;
3257
+ optionHeightMedium: string;
3258
+ optionHeightLarge: string;
3259
+ optionHeightHuge: string;
3260
+ borderRadius: string;
3261
+ fontSizeSmall: string;
3262
+ fontSizeMedium: string;
3263
+ fontSizeLarge: string;
3264
+ fontSizeHuge: string;
3265
+ optionTextColor: string;
3266
+ optionTextColorHover: string;
3267
+ optionTextColorActive: string;
3268
+ optionTextColorChildActive: string;
3269
+ color: string;
3270
+ dividerColor: string;
3271
+ suffixColor: string;
3272
+ prefixColor: string;
3273
+ optionColorHover: string;
3274
+ optionColorActive: string;
3275
+ groupHeaderTextColor: string;
3276
+ optionTextColorInverted: string;
3277
+ optionTextColorHoverInverted: string;
3278
+ optionTextColorActiveInverted: string;
3279
+ optionTextColorChildActiveInverted: string;
3280
+ colorInverted: string;
3281
+ dividerColorInverted: string;
3282
+ suffixColorInverted: string;
3283
+ prefixColorInverted: string;
3284
+ optionColorHoverInverted: string;
3285
+ optionColorActiveInverted: string;
3286
+ groupHeaderTextColorInverted: string;
3287
+ optionOpacityDisabled: string;
3288
+ padding: string;
3289
+ optionIconSizeSmall: string;
3290
+ optionIconSizeMedium: string;
3291
+ optionIconSizeLarge: string;
3292
+ optionIconSizeHuge: string;
3293
+ optionSuffixWidthSmall: string;
3294
+ optionSuffixWidthMedium: string;
3295
+ optionSuffixWidthLarge: string;
3296
+ optionSuffixWidthHuge: string;
3297
+ optionIconSuffixWidthSmall: string;
3298
+ optionIconSuffixWidthMedium: string;
3299
+ optionIconSuffixWidthLarge: string;
3300
+ optionIconSuffixWidthHuge: string;
3301
+ optionPrefixWidthSmall: string;
3302
+ optionPrefixWidthMedium: string;
3303
+ optionPrefixWidthLarge: string;
3304
+ optionPrefixWidthHuge: string;
3305
+ optionIconPrefixWidthSmall: string;
3306
+ optionIconPrefixWidthMedium: string;
3307
+ optionIconPrefixWidthLarge: string;
3308
+ optionIconPrefixWidthHuge: string;
3309
+ }, {
3310
+ Popover: Theme<"Popover", {
3311
+ fontSize: string;
3312
+ borderRadius: string;
3313
+ color: string;
3314
+ dividerColor: string;
3315
+ textColor: string;
3316
+ boxShadow: string;
3317
+ space: string;
3318
+ spaceArrow: string;
3319
+ arrowOffset: string;
3320
+ arrowOffsetVertical: string;
3321
+ arrowHeight: string;
3322
+ padding: string;
3323
+ }, {
3324
+ Scrollbar: Theme<"Scrollbar", {
3325
+ height: string;
3326
+ width: string;
3327
+ borderRadius: string;
3328
+ color: string;
3329
+ colorHover: string;
3330
+ railInsetHorizontalBottom: string;
3331
+ railInsetHorizontalTop: string;
3332
+ railInsetVerticalRight: string;
3333
+ railInsetVerticalLeft: string;
3334
+ railColor: string;
3335
+ }, any>;
3336
+ }>;
3337
+ }>;
3338
+ }>>;
3339
+ readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Menu", {
3340
+ itemColorHoverInverted: string;
3341
+ itemColorActiveInverted: string;
3342
+ itemColorActiveHoverInverted: string;
3343
+ itemColorActiveCollapsedInverted: string;
3344
+ itemTextColorInverted: string;
3345
+ itemTextColorHoverInverted: string;
3346
+ itemTextColorChildActiveInverted: string;
3347
+ itemTextColorChildActiveHoverInverted: string;
3348
+ itemTextColorActiveInverted: string;
3349
+ itemTextColorActiveHoverInverted: string;
3350
+ itemTextColorHorizontalInverted: string;
3351
+ itemTextColorHoverHorizontalInverted: string;
3352
+ itemTextColorChildActiveHorizontalInverted: string;
3353
+ itemTextColorChildActiveHoverHorizontalInverted: string;
3354
+ itemTextColorActiveHorizontalInverted: string;
3355
+ itemTextColorActiveHoverHorizontalInverted: string;
3356
+ itemIconColorInverted: string;
3357
+ itemIconColorHoverInverted: string;
3358
+ itemIconColorActiveInverted: string;
3359
+ itemIconColorActiveHoverInverted: string;
3360
+ itemIconColorChildActiveInverted: string;
3361
+ itemIconColorChildActiveHoverInverted: string;
3362
+ itemIconColorCollapsedInverted: string;
3363
+ itemIconColorHorizontalInverted: string;
3364
+ itemIconColorHoverHorizontalInverted: string;
3365
+ itemIconColorActiveHorizontalInverted: string;
3366
+ itemIconColorActiveHoverHorizontalInverted: string;
3367
+ itemIconColorChildActiveHorizontalInverted: string;
3368
+ itemIconColorChildActiveHoverHorizontalInverted: string;
3369
+ arrowColorInverted: string;
3370
+ arrowColorHoverInverted: string;
3371
+ arrowColorActiveInverted: string;
3372
+ arrowColorActiveHoverInverted: string;
3373
+ arrowColorChildActiveInverted: string;
3374
+ arrowColorChildActiveHoverInverted: string;
3375
+ groupTextColorInverted: string;
3376
+ borderRadius: string;
3377
+ color: string;
3378
+ groupTextColor: string;
3379
+ itemColorHover: string;
3380
+ itemColorActive: string;
3381
+ itemColorActiveHover: string;
3382
+ itemColorActiveCollapsed: string;
3383
+ itemTextColor: string;
3384
+ itemTextColorHover: string;
3385
+ itemTextColorActive: string;
3386
+ itemTextColorActiveHover: string;
3387
+ itemTextColorChildActive: string;
3388
+ itemTextColorChildActiveHover: string;
3389
+ itemTextColorHorizontal: string;
3390
+ itemTextColorHoverHorizontal: string;
3391
+ itemTextColorActiveHorizontal: string;
3392
+ itemTextColorActiveHoverHorizontal: string;
3393
+ itemTextColorChildActiveHorizontal: string;
3394
+ itemTextColorChildActiveHoverHorizontal: string;
3395
+ itemIconColor: string;
3396
+ itemIconColorHover: string;
3397
+ itemIconColorActive: string;
3398
+ itemIconColorActiveHover: string;
3399
+ itemIconColorChildActive: string;
3400
+ itemIconColorChildActiveHover: string;
3401
+ itemIconColorCollapsed: string;
3402
+ itemIconColorHorizontal: string;
3403
+ itemIconColorHoverHorizontal: string;
3404
+ itemIconColorActiveHorizontal: string;
3405
+ itemIconColorActiveHoverHorizontal: string;
3406
+ itemIconColorChildActiveHorizontal: string;
3407
+ itemIconColorChildActiveHoverHorizontal: string;
3408
+ itemHeight: string;
3409
+ arrowColor: string;
3410
+ arrowColorHover: string;
3411
+ arrowColorActive: string;
3412
+ arrowColorActiveHover: string;
3413
+ arrowColorChildActive: string;
3414
+ arrowColorChildActiveHover: string;
3415
+ colorInverted: string;
3416
+ borderColorHorizontal: string;
3417
+ fontSize: string;
3418
+ dividerColor: string;
3419
+ }, {
3420
+ Tooltip: Theme<"Tooltip", {
3421
+ borderRadius: string;
3422
+ boxShadow: string;
3423
+ color: string;
3424
+ textColor: string;
3425
+ padding: string;
3426
+ }, {
3427
+ Popover: Theme<"Popover", {
3428
+ fontSize: string;
3429
+ borderRadius: string;
3430
+ color: string;
3431
+ dividerColor: string;
3432
+ textColor: string;
3433
+ boxShadow: string;
3434
+ space: string;
3435
+ spaceArrow: string;
3436
+ arrowOffset: string;
3437
+ arrowOffsetVertical: string;
3438
+ arrowHeight: string;
3439
+ padding: string;
3440
+ }, {
3441
+ Scrollbar: Theme<"Scrollbar", {
3442
+ height: string;
3443
+ width: string;
3444
+ borderRadius: string;
3445
+ color: string;
3446
+ colorHover: string;
3447
+ railInsetHorizontalBottom: string;
3448
+ railInsetHorizontalTop: string;
3449
+ railInsetVerticalRight: string;
3450
+ railInsetVerticalLeft: string;
3451
+ railColor: string;
3452
+ }, any>;
3453
+ }>;
3454
+ }>;
3455
+ Dropdown: Theme<"Dropdown", {
3456
+ optionHeightSmall: string;
3457
+ optionHeightMedium: string;
3458
+ optionHeightLarge: string;
3459
+ optionHeightHuge: string;
3460
+ borderRadius: string;
3461
+ fontSizeSmall: string;
3462
+ fontSizeMedium: string;
3463
+ fontSizeLarge: string;
3464
+ fontSizeHuge: string;
3465
+ optionTextColor: string;
3466
+ optionTextColorHover: string;
3467
+ optionTextColorActive: string;
3468
+ optionTextColorChildActive: string;
3469
+ color: string;
3470
+ dividerColor: string;
3471
+ suffixColor: string;
3472
+ prefixColor: string;
3473
+ optionColorHover: string;
3474
+ optionColorActive: string;
3475
+ groupHeaderTextColor: string;
3476
+ optionTextColorInverted: string;
3477
+ optionTextColorHoverInverted: string;
3478
+ optionTextColorActiveInverted: string;
3479
+ optionTextColorChildActiveInverted: string;
3480
+ colorInverted: string;
3481
+ dividerColorInverted: string;
3482
+ suffixColorInverted: string;
3483
+ prefixColorInverted: string;
3484
+ optionColorHoverInverted: string;
3485
+ optionColorActiveInverted: string;
3486
+ groupHeaderTextColorInverted: string;
3487
+ optionOpacityDisabled: string;
3488
+ padding: string;
3489
+ optionIconSizeSmall: string;
3490
+ optionIconSizeMedium: string;
3491
+ optionIconSizeLarge: string;
3492
+ optionIconSizeHuge: string;
3493
+ optionSuffixWidthSmall: string;
3494
+ optionSuffixWidthMedium: string;
3495
+ optionSuffixWidthLarge: string;
3496
+ optionSuffixWidthHuge: string;
3497
+ optionIconSuffixWidthSmall: string;
3498
+ optionIconSuffixWidthMedium: string;
3499
+ optionIconSuffixWidthLarge: string;
3500
+ optionIconSuffixWidthHuge: string;
3501
+ optionPrefixWidthSmall: string;
3502
+ optionPrefixWidthMedium: string;
3503
+ optionPrefixWidthLarge: string;
3504
+ optionPrefixWidthHuge: string;
3505
+ optionIconPrefixWidthSmall: string;
3506
+ optionIconPrefixWidthMedium: string;
3507
+ optionIconPrefixWidthLarge: string;
3508
+ optionIconPrefixWidthHuge: string;
3509
+ }, {
3510
+ Popover: Theme<"Popover", {
3511
+ fontSize: string;
3512
+ borderRadius: string;
3513
+ color: string;
3514
+ dividerColor: string;
3515
+ textColor: string;
3516
+ boxShadow: string;
3517
+ space: string;
3518
+ spaceArrow: string;
3519
+ arrowOffset: string;
3520
+ arrowOffsetVertical: string;
3521
+ arrowHeight: string;
3522
+ padding: string;
3523
+ }, {
3524
+ Scrollbar: Theme<"Scrollbar", {
3525
+ height: string;
3526
+ width: string;
3527
+ borderRadius: string;
3528
+ color: string;
3529
+ colorHover: string;
3530
+ railInsetHorizontalBottom: string;
3531
+ railInsetHorizontalTop: string;
3532
+ railInsetVerticalRight: string;
3533
+ railInsetVerticalLeft: string;
3534
+ railColor: string;
3535
+ }, any>;
3536
+ }>;
3537
+ }>;
3538
+ }>>>;
3539
+ readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Menu", {
3540
+ itemColorHoverInverted: string;
3541
+ itemColorActiveInverted: string;
3542
+ itemColorActiveHoverInverted: string;
3543
+ itemColorActiveCollapsedInverted: string;
3544
+ itemTextColorInverted: string;
3545
+ itemTextColorHoverInverted: string;
3546
+ itemTextColorChildActiveInverted: string;
3547
+ itemTextColorChildActiveHoverInverted: string;
3548
+ itemTextColorActiveInverted: string;
3549
+ itemTextColorActiveHoverInverted: string;
3550
+ itemTextColorHorizontalInverted: string;
3551
+ itemTextColorHoverHorizontalInverted: string;
3552
+ itemTextColorChildActiveHorizontalInverted: string;
3553
+ itemTextColorChildActiveHoverHorizontalInverted: string;
3554
+ itemTextColorActiveHorizontalInverted: string;
3555
+ itemTextColorActiveHoverHorizontalInverted: string;
3556
+ itemIconColorInverted: string;
3557
+ itemIconColorHoverInverted: string;
3558
+ itemIconColorActiveInverted: string;
3559
+ itemIconColorActiveHoverInverted: string;
3560
+ itemIconColorChildActiveInverted: string;
3561
+ itemIconColorChildActiveHoverInverted: string;
3562
+ itemIconColorCollapsedInverted: string;
3563
+ itemIconColorHorizontalInverted: string;
3564
+ itemIconColorHoverHorizontalInverted: string;
3565
+ itemIconColorActiveHorizontalInverted: string;
3566
+ itemIconColorActiveHoverHorizontalInverted: string;
3567
+ itemIconColorChildActiveHorizontalInverted: string;
3568
+ itemIconColorChildActiveHoverHorizontalInverted: string;
3569
+ arrowColorInverted: string;
3570
+ arrowColorHoverInverted: string;
3571
+ arrowColorActiveInverted: string;
3572
+ arrowColorActiveHoverInverted: string;
3573
+ arrowColorChildActiveInverted: string;
3574
+ arrowColorChildActiveHoverInverted: string;
3575
+ groupTextColorInverted: string;
3576
+ borderRadius: string;
3577
+ color: string;
3578
+ groupTextColor: string;
3579
+ itemColorHover: string;
3580
+ itemColorActive: string;
3581
+ itemColorActiveHover: string;
3582
+ itemColorActiveCollapsed: string;
3583
+ itemTextColor: string;
3584
+ itemTextColorHover: string;
3585
+ itemTextColorActive: string;
3586
+ itemTextColorActiveHover: string;
3587
+ itemTextColorChildActive: string;
3588
+ itemTextColorChildActiveHover: string;
3589
+ itemTextColorHorizontal: string;
3590
+ itemTextColorHoverHorizontal: string;
3591
+ itemTextColorActiveHorizontal: string;
3592
+ itemTextColorActiveHoverHorizontal: string;
3593
+ itemTextColorChildActiveHorizontal: string;
3594
+ itemTextColorChildActiveHoverHorizontal: string;
3595
+ itemIconColor: string;
3596
+ itemIconColorHover: string;
3597
+ itemIconColorActive: string;
3598
+ itemIconColorActiveHover: string;
3599
+ itemIconColorChildActive: string;
3600
+ itemIconColorChildActiveHover: string;
3601
+ itemIconColorCollapsed: string;
3602
+ itemIconColorHorizontal: string;
3603
+ itemIconColorHoverHorizontal: string;
3604
+ itemIconColorActiveHorizontal: string;
3605
+ itemIconColorActiveHoverHorizontal: string;
3606
+ itemIconColorChildActiveHorizontal: string;
3607
+ itemIconColorChildActiveHoverHorizontal: string;
3608
+ itemHeight: string;
3609
+ arrowColor: string;
3610
+ arrowColorHover: string;
3611
+ arrowColorActive: string;
3612
+ arrowColorActiveHover: string;
3613
+ arrowColorChildActive: string;
3614
+ arrowColorChildActiveHover: string;
3615
+ colorInverted: string;
3616
+ borderColorHorizontal: string;
3617
+ fontSize: string;
3618
+ dividerColor: string;
3619
+ }, {
3620
+ Tooltip: Theme<"Tooltip", {
3621
+ borderRadius: string;
3622
+ boxShadow: string;
3623
+ color: string;
3624
+ textColor: string;
3625
+ padding: string;
3626
+ }, {
3627
+ Popover: Theme<"Popover", {
3628
+ fontSize: string;
3629
+ borderRadius: string;
3630
+ color: string;
3631
+ dividerColor: string;
3632
+ textColor: string;
3633
+ boxShadow: string;
3634
+ space: string;
3635
+ spaceArrow: string;
3636
+ arrowOffset: string;
3637
+ arrowOffsetVertical: string;
3638
+ arrowHeight: string;
3639
+ padding: string;
3640
+ }, {
3641
+ Scrollbar: Theme<"Scrollbar", {
3642
+ height: string;
3643
+ width: string;
3644
+ borderRadius: string;
3645
+ color: string;
3646
+ colorHover: string;
3647
+ railInsetHorizontalBottom: string;
3648
+ railInsetHorizontalTop: string;
3649
+ railInsetVerticalRight: string;
3650
+ railInsetVerticalLeft: string;
3651
+ railColor: string;
3652
+ }, any>;
3653
+ }>;
3654
+ }>;
3655
+ Dropdown: Theme<"Dropdown", {
3656
+ optionHeightSmall: string;
3657
+ optionHeightMedium: string;
3658
+ optionHeightLarge: string;
3659
+ optionHeightHuge: string;
3660
+ borderRadius: string;
3661
+ fontSizeSmall: string;
3662
+ fontSizeMedium: string;
3663
+ fontSizeLarge: string;
3664
+ fontSizeHuge: string;
3665
+ optionTextColor: string;
3666
+ optionTextColorHover: string;
3667
+ optionTextColorActive: string;
3668
+ optionTextColorChildActive: string;
3669
+ color: string;
3670
+ dividerColor: string;
3671
+ suffixColor: string;
3672
+ prefixColor: string;
3673
+ optionColorHover: string;
3674
+ optionColorActive: string;
3675
+ groupHeaderTextColor: string;
3676
+ optionTextColorInverted: string;
3677
+ optionTextColorHoverInverted: string;
3678
+ optionTextColorActiveInverted: string;
3679
+ optionTextColorChildActiveInverted: string;
3680
+ colorInverted: string;
3681
+ dividerColorInverted: string;
3682
+ suffixColorInverted: string;
3683
+ prefixColorInverted: string;
3684
+ optionColorHoverInverted: string;
3685
+ optionColorActiveInverted: string;
3686
+ groupHeaderTextColorInverted: string;
3687
+ optionOpacityDisabled: string;
3688
+ padding: string;
3689
+ optionIconSizeSmall: string;
3690
+ optionIconSizeMedium: string;
3691
+ optionIconSizeLarge: string;
3692
+ optionIconSizeHuge: string;
3693
+ optionSuffixWidthSmall: string;
3694
+ optionSuffixWidthMedium: string;
3695
+ optionSuffixWidthLarge: string;
3696
+ optionSuffixWidthHuge: string;
3697
+ optionIconSuffixWidthSmall: string;
3698
+ optionIconSuffixWidthMedium: string;
3699
+ optionIconSuffixWidthLarge: string;
3700
+ optionIconSuffixWidthHuge: string;
3701
+ optionPrefixWidthSmall: string;
3702
+ optionPrefixWidthMedium: string;
3703
+ optionPrefixWidthLarge: string;
3704
+ optionPrefixWidthHuge: string;
3705
+ optionIconPrefixWidthSmall: string;
3706
+ optionIconPrefixWidthMedium: string;
3707
+ optionIconPrefixWidthLarge: string;
3708
+ optionIconPrefixWidthHuge: string;
3709
+ }, {
3710
+ Popover: Theme<"Popover", {
3711
+ fontSize: string;
3712
+ borderRadius: string;
3713
+ color: string;
3714
+ dividerColor: string;
3715
+ textColor: string;
3716
+ boxShadow: string;
3717
+ space: string;
3718
+ spaceArrow: string;
3719
+ arrowOffset: string;
3720
+ arrowOffsetVertical: string;
3721
+ arrowHeight: string;
3722
+ padding: string;
3723
+ }, {
3724
+ Scrollbar: Theme<"Scrollbar", {
3725
+ height: string;
3726
+ width: string;
3727
+ borderRadius: string;
3728
+ color: string;
3729
+ colorHover: string;
3730
+ railInsetHorizontalBottom: string;
3731
+ railInsetHorizontalTop: string;
3732
+ railInsetVerticalRight: string;
3733
+ railInsetVerticalLeft: string;
3734
+ railColor: string;
3735
+ }, any>;
3736
+ }>;
3737
+ }>;
3738
+ }>>>;
3739
+ }>> & Readonly<{}>, {
3740
+ mergedClsPrefix: Ref<string, string>;
3741
+ controlledExpandedKeys: ComputedRef< Key[] | undefined>;
3742
+ uncontrolledExpanededKeys: Ref< Key[], Key[]>;
3743
+ mergedExpandedKeys: ComputedRef< Key[]>;
3744
+ uncontrolledValue: Ref< Key | null, Key | null>;
3745
+ mergedValue: ComputedRef< Key | null>;
3746
+ activePath: ComputedRef< Key[]>;
3747
+ tmNodes: ComputedRef< TreeNode<MenuOption, MenuGroupOption, MenuIgnoredOption>[]>;
3748
+ mergedTheme: ComputedRef<{
3749
+ common: ThemeCommonVars;
3750
+ self: {
3751
+ itemColorHoverInverted: string;
3752
+ itemColorActiveInverted: string;
3753
+ itemColorActiveHoverInverted: string;
3754
+ itemColorActiveCollapsedInverted: string;
3755
+ itemTextColorInverted: string;
3756
+ itemTextColorHoverInverted: string;
3757
+ itemTextColorChildActiveInverted: string;
3758
+ itemTextColorChildActiveHoverInverted: string;
3759
+ itemTextColorActiveInverted: string;
3760
+ itemTextColorActiveHoverInverted: string;
3761
+ itemTextColorHorizontalInverted: string;
3762
+ itemTextColorHoverHorizontalInverted: string;
3763
+ itemTextColorChildActiveHorizontalInverted: string;
3764
+ itemTextColorChildActiveHoverHorizontalInverted: string;
3765
+ itemTextColorActiveHorizontalInverted: string;
3766
+ itemTextColorActiveHoverHorizontalInverted: string;
3767
+ itemIconColorInverted: string;
3768
+ itemIconColorHoverInverted: string;
3769
+ itemIconColorActiveInverted: string;
3770
+ itemIconColorActiveHoverInverted: string;
3771
+ itemIconColorChildActiveInverted: string;
3772
+ itemIconColorChildActiveHoverInverted: string;
3773
+ itemIconColorCollapsedInverted: string;
3774
+ itemIconColorHorizontalInverted: string;
3775
+ itemIconColorHoverHorizontalInverted: string;
3776
+ itemIconColorActiveHorizontalInverted: string;
3777
+ itemIconColorActiveHoverHorizontalInverted: string;
3778
+ itemIconColorChildActiveHorizontalInverted: string;
3779
+ itemIconColorChildActiveHoverHorizontalInverted: string;
3780
+ arrowColorInverted: string;
3781
+ arrowColorHoverInverted: string;
3782
+ arrowColorActiveInverted: string;
3783
+ arrowColorActiveHoverInverted: string;
3784
+ arrowColorChildActiveInverted: string;
3785
+ arrowColorChildActiveHoverInverted: string;
3786
+ groupTextColorInverted: string;
3787
+ borderRadius: string;
3788
+ color: string;
3789
+ groupTextColor: string;
3790
+ itemColorHover: string;
3791
+ itemColorActive: string;
3792
+ itemColorActiveHover: string;
3793
+ itemColorActiveCollapsed: string;
3794
+ itemTextColor: string;
3795
+ itemTextColorHover: string;
3796
+ itemTextColorActive: string;
3797
+ itemTextColorActiveHover: string;
3798
+ itemTextColorChildActive: string;
3799
+ itemTextColorChildActiveHover: string;
3800
+ itemTextColorHorizontal: string;
3801
+ itemTextColorHoverHorizontal: string;
3802
+ itemTextColorActiveHorizontal: string;
3803
+ itemTextColorActiveHoverHorizontal: string;
3804
+ itemTextColorChildActiveHorizontal: string;
3805
+ itemTextColorChildActiveHoverHorizontal: string;
3806
+ itemIconColor: string;
3807
+ itemIconColorHover: string;
3808
+ itemIconColorActive: string;
3809
+ itemIconColorActiveHover: string;
3810
+ itemIconColorChildActive: string;
3811
+ itemIconColorChildActiveHover: string;
3812
+ itemIconColorCollapsed: string;
3813
+ itemIconColorHorizontal: string;
3814
+ itemIconColorHoverHorizontal: string;
3815
+ itemIconColorActiveHorizontal: string;
3816
+ itemIconColorActiveHoverHorizontal: string;
3817
+ itemIconColorChildActiveHorizontal: string;
3818
+ itemIconColorChildActiveHoverHorizontal: string;
3819
+ itemHeight: string;
3820
+ arrowColor: string;
3821
+ arrowColorHover: string;
3822
+ arrowColorActive: string;
3823
+ arrowColorActiveHover: string;
3824
+ arrowColorChildActive: string;
3825
+ arrowColorChildActiveHover: string;
3826
+ colorInverted: string;
3827
+ borderColorHorizontal: string;
3828
+ fontSize: string;
3829
+ dividerColor: string;
3830
+ };
3831
+ peers: {
3832
+ Tooltip: Theme<"Tooltip", {
3833
+ borderRadius: string;
3834
+ boxShadow: string;
3835
+ color: string;
3836
+ textColor: string;
3837
+ padding: string;
3838
+ }, {
3839
+ Popover: Theme<"Popover", {
3840
+ fontSize: string;
3841
+ borderRadius: string;
3842
+ color: string;
3843
+ dividerColor: string;
3844
+ textColor: string;
3845
+ boxShadow: string;
3846
+ space: string;
3847
+ spaceArrow: string;
3848
+ arrowOffset: string;
3849
+ arrowOffsetVertical: string;
3850
+ arrowHeight: string;
3851
+ padding: string;
3852
+ }, {
3853
+ Scrollbar: Theme<"Scrollbar", {
3854
+ height: string;
3855
+ width: string;
3856
+ borderRadius: string;
3857
+ color: string;
3858
+ colorHover: string;
3859
+ railInsetHorizontalBottom: string;
3860
+ railInsetHorizontalTop: string;
3861
+ railInsetVerticalRight: string;
3862
+ railInsetVerticalLeft: string;
3863
+ railColor: string;
3864
+ }, any>;
3865
+ }>;
3866
+ }>;
3867
+ Dropdown: Theme<"Dropdown", {
3868
+ optionHeightSmall: string;
3869
+ optionHeightMedium: string;
3870
+ optionHeightLarge: string;
3871
+ optionHeightHuge: string;
3872
+ borderRadius: string;
3873
+ fontSizeSmall: string;
3874
+ fontSizeMedium: string;
3875
+ fontSizeLarge: string;
3876
+ fontSizeHuge: string;
3877
+ optionTextColor: string;
3878
+ optionTextColorHover: string;
3879
+ optionTextColorActive: string;
3880
+ optionTextColorChildActive: string;
3881
+ color: string;
3882
+ dividerColor: string;
3883
+ suffixColor: string;
3884
+ prefixColor: string;
3885
+ optionColorHover: string;
3886
+ optionColorActive: string;
3887
+ groupHeaderTextColor: string;
3888
+ optionTextColorInverted: string;
3889
+ optionTextColorHoverInverted: string;
3890
+ optionTextColorActiveInverted: string;
3891
+ optionTextColorChildActiveInverted: string;
3892
+ colorInverted: string;
3893
+ dividerColorInverted: string;
3894
+ suffixColorInverted: string;
3895
+ prefixColorInverted: string;
3896
+ optionColorHoverInverted: string;
3897
+ optionColorActiveInverted: string;
3898
+ groupHeaderTextColorInverted: string;
3899
+ optionOpacityDisabled: string;
3900
+ padding: string;
3901
+ optionIconSizeSmall: string;
3902
+ optionIconSizeMedium: string;
3903
+ optionIconSizeLarge: string;
3904
+ optionIconSizeHuge: string;
3905
+ optionSuffixWidthSmall: string;
3906
+ optionSuffixWidthMedium: string;
3907
+ optionSuffixWidthLarge: string;
3908
+ optionSuffixWidthHuge: string;
3909
+ optionIconSuffixWidthSmall: string;
3910
+ optionIconSuffixWidthMedium: string;
3911
+ optionIconSuffixWidthLarge: string;
3912
+ optionIconSuffixWidthHuge: string;
3913
+ optionPrefixWidthSmall: string;
3914
+ optionPrefixWidthMedium: string;
3915
+ optionPrefixWidthLarge: string;
3916
+ optionPrefixWidthHuge: string;
3917
+ optionIconPrefixWidthSmall: string;
3918
+ optionIconPrefixWidthMedium: string;
3919
+ optionIconPrefixWidthLarge: string;
3920
+ optionIconPrefixWidthHuge: string;
3921
+ }, {
3922
+ Popover: Theme<"Popover", {
3923
+ fontSize: string;
3924
+ borderRadius: string;
3925
+ color: string;
3926
+ dividerColor: string;
3927
+ textColor: string;
3928
+ boxShadow: string;
3929
+ space: string;
3930
+ spaceArrow: string;
3931
+ arrowOffset: string;
3932
+ arrowOffsetVertical: string;
3933
+ arrowHeight: string;
3934
+ padding: string;
3935
+ }, {
3936
+ Scrollbar: Theme<"Scrollbar", {
3937
+ height: string;
3938
+ width: string;
3939
+ borderRadius: string;
3940
+ color: string;
3941
+ colorHover: string;
3942
+ railInsetHorizontalBottom: string;
3943
+ railInsetHorizontalTop: string;
3944
+ railInsetVerticalRight: string;
3945
+ railInsetVerticalLeft: string;
3946
+ railColor: string;
3947
+ }, any>;
3948
+ }>;
3949
+ }>;
3950
+ };
3951
+ peerOverrides: {
3952
+ Tooltip?: {
3953
+ peers?: {
3954
+ Popover?: ExtractThemeOverrides<Theme<"Popover", {
3955
+ fontSize: string;
3956
+ borderRadius: string;
3957
+ color: string;
3958
+ dividerColor: string;
3959
+ textColor: string;
3960
+ boxShadow: string;
3961
+ space: string;
3962
+ spaceArrow: string;
3963
+ arrowOffset: string;
3964
+ arrowOffsetVertical: string;
3965
+ arrowHeight: string;
3966
+ padding: string;
3967
+ }, {
3968
+ Scrollbar: Theme<"Scrollbar", {
3969
+ height: string;
3970
+ width: string;
3971
+ borderRadius: string;
3972
+ color: string;
3973
+ colorHover: string;
3974
+ railInsetHorizontalBottom: string;
3975
+ railInsetHorizontalTop: string;
3976
+ railInsetVerticalRight: string;
3977
+ railInsetVerticalLeft: string;
3978
+ railColor: string;
3979
+ }, any>;
3980
+ }>> | undefined;
3981
+ } | undefined;
3982
+ } | undefined;
3983
+ Dropdown?: {
3984
+ peers?: {
3985
+ Popover?: ExtractThemeOverrides<Theme<"Popover", {
3986
+ fontSize: string;
3987
+ borderRadius: string;
3988
+ color: string;
3989
+ dividerColor: string;
3990
+ textColor: string;
3991
+ boxShadow: string;
3992
+ space: string;
3993
+ spaceArrow: string;
3994
+ arrowOffset: string;
3995
+ arrowOffsetVertical: string;
3996
+ arrowHeight: string;
3997
+ padding: string;
3998
+ }, {
3999
+ Scrollbar: Theme<"Scrollbar", {
4000
+ height: string;
4001
+ width: string;
4002
+ borderRadius: string;
4003
+ color: string;
4004
+ colorHover: string;
4005
+ railInsetHorizontalBottom: string;
4006
+ railInsetHorizontalTop: string;
4007
+ railInsetVerticalRight: string;
4008
+ railInsetVerticalLeft: string;
4009
+ railColor: string;
4010
+ }, any>;
4011
+ }>> | undefined;
4012
+ } | undefined;
4013
+ } | undefined;
4014
+ };
4015
+ }>;
4016
+ mergedCollapsed: ComputedRef<boolean>;
4017
+ cssVars: ComputedRef<any> | undefined;
4018
+ themeClass: Ref<string, string> | undefined;
4019
+ overflowRef: Ref<{
4020
+ sync: (options: {
4021
+ showAllItemsBeforeCalculate: boolean;
4022
+ }) => void;
4023
+ } | null, VOverflowInst | {
4024
+ sync: (options: {
4025
+ showAllItemsBeforeCalculate: boolean;
4026
+ }) => void;
4027
+ } | null>;
4028
+ counterRef: Ref<HTMLElement | null, HTMLElement | null>;
4029
+ updateCounter: () => void;
4030
+ onResize: () => void;
4031
+ onUpdateOverflow: (overflow: boolean) => void;
4032
+ onUpdateCount: (count: number) => void;
4033
+ renderCounter: () => VNodeChild;
4034
+ getCounter: () => HTMLElement | null;
4035
+ onRender: (() => void) | undefined;
4036
+ showOption: (key?: Key) => void;
4037
+ deriveResponsiveState: () => void;
4038
+ }, {}, {}, {}, {
4039
+ readonly options: MenuMixedOption[];
4040
+ readonly mode: "horizontal" | "vertical";
4041
+ readonly disabled: boolean;
4042
+ readonly show: boolean;
4043
+ readonly iconSize: number;
4044
+ readonly defaultValue: Key | null;
4045
+ readonly responsive: boolean;
4046
+ readonly disabledField: string;
4047
+ readonly labelField: string;
4048
+ readonly childrenField: string;
4049
+ readonly accordion: boolean;
4050
+ readonly collapsed: boolean | undefined;
4051
+ readonly defaultExpandAll: boolean;
4052
+ readonly indent: number;
4053
+ readonly inverted: boolean;
4054
+ readonly keyField: string;
4055
+ readonly collapsedWidth: number;
4056
+ readonly collapsedIconSize: number;
4057
+ readonly watchProps: ("defaultValue" | "defaultExpandedKeys")[];
4058
+ readonly dropdownPlacement: FollowerPlacement;
4059
+ }> | null;
4060
+ }, any>;
4061
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
4062
+ export default _default;
4063
+ type __VLS_WithTemplateSlots<T, S> = T & {
4064
+ new (): {
4065
+ $slots: S;
4066
+ };
4067
+ };