@vueland/ui 0.0.2 → 0.0.3

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 (131) hide show
  1. package/README.md +55 -45
  2. package/dist/components/CApp/CApp.js +2 -2
  3. package/dist/components/CAutocomplete/CAutocomplete.js +23 -6
  4. package/dist/components/CCheckbox/CCheckbox.js +1 -1
  5. package/dist/components/CDateInput/CDateInput.js +0 -1
  6. package/dist/components/CDatePicker/index4.js +1 -1
  7. package/dist/components/CDatePicker/index6.js +1 -1
  8. package/dist/components/CDialog/index.js +1 -1
  9. package/dist/components/CDialog/index2.js +1 -1
  10. package/dist/components/CInput/CInput.js +23 -14
  11. package/dist/components/CList/CList.js +36 -17
  12. package/dist/components/CList/CListItem.js +15 -10
  13. package/dist/components/CMenu/CMenu.js +29 -31
  14. package/dist/components/CSelect/CSelect.js +26 -6
  15. package/dist/components/CTextField/CTextField.js +1 -1
  16. package/dist/components/CTooltip/CTooltip.js +12 -8
  17. package/dist/components/CTooltip/index.js +2 -2
  18. package/dist/components/CTooltip/index2.js +5 -0
  19. package/dist/components/index.d.ts +174 -188
  20. package/dist/components/index.js +1 -1
  21. package/dist/composables/index.d.ts +124 -590
  22. package/dist/composables/index.js +11 -6
  23. package/dist/composables/use-activator.js +1 -13
  24. package/dist/composables/{use-app-scroll.js → use-application-scroll.js} +2 -2
  25. package/dist/composables/use-aria-activator.js +15 -0
  26. package/dist/composables/use-aria-dialog.js +16 -0
  27. package/dist/composables/use-aria-field.js +18 -0
  28. package/dist/composables/use-aria-listbox.js +14 -0
  29. package/dist/composables/use-aria-toggle.js +15 -0
  30. package/dist/composables/use-auto-position.js +51 -51
  31. package/dist/composables/use-breakpoints.js +8 -0
  32. package/dist/composables/use-delay-actions.js +9 -8
  33. package/dist/composables/use-display.js +4 -4
  34. package/dist/composables/use-presets.js +1 -3
  35. package/dist/constants/aria.js +32 -0
  36. package/dist/constants/index.d.ts +78 -37
  37. package/dist/constants/index.js +1 -0
  38. package/dist/css/lib.css +1 -0
  39. package/dist/css/utils/_grid.css +1 -0
  40. package/dist/css/utils/_grid.js +3 -0
  41. package/dist/css/utils/_radius.css +1 -1
  42. package/dist/css/utils/_typography.css +1 -1
  43. package/dist/library.js +5 -5
  44. package/dist/scss/lib.scss +26 -0
  45. package/dist/scss/styles.scss +1 -0
  46. package/dist/scss/utils/_grid.scss +173 -0
  47. package/dist/scss/utils/_radius.scss +4 -4
  48. package/dist/scss/utils/_typography.scss +13 -0
  49. package/dist/styles.css +1 -1
  50. package/dist/temp-types/src/components/CAutocomplete/CAutocomplete.vue.d.ts +1 -1
  51. package/dist/temp-types/src/components/CAutocomplete/CAutocomplete.vue.d.ts.map +1 -1
  52. package/dist/temp-types/src/components/CCheckbox/CCheckbox.vue.d.ts +1 -1
  53. package/dist/temp-types/src/components/CCheckbox/CheckboxElement.vue.d.ts +1 -1
  54. package/dist/temp-types/src/components/CDateInput/CDateInput.vue.d.ts +2 -2
  55. package/dist/temp-types/src/components/CDateInput/CDateInput.vue.d.ts.map +1 -1
  56. package/dist/temp-types/src/components/CGrid/CRow.d.ts +1 -1
  57. package/dist/temp-types/src/components/CInput/CInput.vue.d.ts +2 -2
  58. package/dist/temp-types/src/components/CInput/CInput.vue.d.ts.map +1 -1
  59. package/dist/temp-types/src/components/CInput/types.d.ts +2 -2
  60. package/dist/temp-types/src/components/CInput/types.d.ts.map +1 -1
  61. package/dist/temp-types/src/components/CList/CList.vue.d.ts +5 -1
  62. package/dist/temp-types/src/components/CList/CList.vue.d.ts.map +1 -1
  63. package/dist/temp-types/src/components/CList/CListItem.vue.d.ts.map +1 -1
  64. package/dist/temp-types/src/components/CList/types.d.ts +3 -1
  65. package/dist/temp-types/src/components/CList/types.d.ts.map +1 -1
  66. package/dist/temp-types/src/components/CMenu/CMenu.vue.d.ts +4 -4
  67. package/dist/temp-types/src/components/CMenu/CMenu.vue.d.ts.map +1 -1
  68. package/dist/temp-types/src/components/CMenu/types.d.ts +2 -2
  69. package/dist/temp-types/src/components/CMenu/types.d.ts.map +1 -1
  70. package/dist/temp-types/src/components/CRadio/CRadio.vue.d.ts +1 -1
  71. package/dist/temp-types/src/components/CSelect/CSelect.vue.d.ts +1 -1
  72. package/dist/temp-types/src/components/CSelect/CSelect.vue.d.ts.map +1 -1
  73. package/dist/temp-types/src/components/CSelectControl/CSelectControl.vue.d.ts +1 -1
  74. package/dist/temp-types/src/components/CTextField/CTextField.vue.d.ts +1 -1
  75. package/dist/temp-types/src/components/CTextField/CTextField.vue.d.ts.map +1 -1
  76. package/dist/temp-types/src/components/CTextField/types.d.ts +1 -1
  77. package/dist/temp-types/src/components/CTooltip/CTooltip.vue.d.ts +3 -1
  78. package/dist/temp-types/src/components/CTooltip/CTooltip.vue.d.ts.map +1 -1
  79. package/dist/temp-types/src/components/CTooltip/index.d.ts +7 -1
  80. package/dist/temp-types/src/components/CTooltip/index.d.ts.map +1 -1
  81. package/dist/temp-types/src/composables/index.d.ts +7 -2
  82. package/dist/temp-types/src/composables/index.d.ts.map +1 -1
  83. package/dist/temp-types/src/composables/use-activator.d.ts +0 -153
  84. package/dist/temp-types/src/composables/use-activator.d.ts.map +1 -1
  85. package/dist/temp-types/src/composables/{use-app-scroll.d.ts → use-application-scroll.d.ts} +2 -2
  86. package/dist/temp-types/src/composables/use-application-scroll.d.ts.map +1 -0
  87. package/dist/temp-types/src/composables/use-aria-activator.d.ts +8 -0
  88. package/dist/temp-types/src/composables/use-aria-activator.d.ts.map +1 -0
  89. package/dist/temp-types/src/composables/use-aria-dialog.d.ts +9 -0
  90. package/dist/temp-types/src/composables/use-aria-dialog.d.ts.map +1 -0
  91. package/dist/temp-types/src/composables/use-aria-field.d.ts +13 -0
  92. package/dist/temp-types/src/composables/use-aria-field.d.ts.map +1 -0
  93. package/dist/temp-types/src/composables/use-aria-listbox.d.ts +8 -0
  94. package/dist/temp-types/src/composables/use-aria-listbox.d.ts.map +1 -0
  95. package/dist/temp-types/src/composables/use-aria-toggle.d.ts +11 -0
  96. package/dist/temp-types/src/composables/use-aria-toggle.d.ts.map +1 -0
  97. package/dist/temp-types/src/composables/use-auto-position.d.ts +4 -284
  98. package/dist/temp-types/src/composables/use-auto-position.d.ts.map +1 -1
  99. package/dist/temp-types/src/composables/use-breakpoints.d.ts +1 -0
  100. package/dist/temp-types/src/composables/use-breakpoints.d.ts.map +1 -1
  101. package/dist/temp-types/src/composables/use-delay-actions.d.ts +0 -26
  102. package/dist/temp-types/src/composables/use-delay-actions.d.ts.map +1 -1
  103. package/dist/temp-types/src/composables/use-display.d.ts +22 -49
  104. package/dist/temp-types/src/composables/use-display.d.ts.map +1 -1
  105. package/dist/temp-types/src/composables/use-presets.d.ts +0 -14
  106. package/dist/temp-types/src/composables/use-presets.d.ts.map +1 -1
  107. package/dist/temp-types/src/constants/aria.d.ts +35 -0
  108. package/dist/temp-types/src/constants/aria.d.ts.map +1 -0
  109. package/dist/temp-types/src/constants/index.d.ts +1 -0
  110. package/dist/temp-types/src/constants/index.d.ts.map +1 -1
  111. package/dist/temp-types/src/constants/provide-keys.d.ts +3 -5
  112. package/dist/temp-types/src/constants/provide-keys.d.ts.map +1 -1
  113. package/dist/temp-types/src/utils/aria.d.ts +36 -0
  114. package/dist/temp-types/src/utils/aria.d.ts.map +1 -0
  115. package/dist/temp-types/src/utils/index.d.ts +1 -1
  116. package/dist/temp-types/src/utils/index.d.ts.map +1 -1
  117. package/dist/temp-types/tsconfig.build.tsbuildinfo +1 -1
  118. package/dist/utils/aria.js +95 -0
  119. package/dist/utils/index.d.ts +40 -38
  120. package/dist/utils/index.js +1 -1
  121. package/package.json +5 -5
  122. package/dist/composables/use-menu-presets.js +0 -17
  123. package/dist/css/themes/default-theme.css +0 -1
  124. package/dist/scss/themes/default-theme.scss +0 -25
  125. package/dist/temp-types/src/composables/use-app-scroll.d.ts.map +0 -1
  126. package/dist/temp-types/src/composables/use-menu-presets.d.ts +0 -7
  127. package/dist/temp-types/src/composables/use-menu-presets.d.ts.map +0 -1
  128. package/dist/temp-types/src/utils/props-factory.d.ts +0 -37
  129. package/dist/temp-types/src/utils/props-factory.d.ts.map +0 -1
  130. package/dist/utils/props-factory.js +0 -25
  131. /package/dist/css/{themes/default-theme.js → lib.js} +0 -0
@@ -11,11 +11,11 @@ type CAppSlots = {
11
11
  default(): VNode | VNode[];
12
12
  };
13
13
 
14
- type __VLS_Slots$c = CAppSlots;
15
- declare const __VLS_component$c: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
16
- declare const _default$m: __VLS_WithSlots$c<typeof __VLS_component$c, __VLS_Slots$c>;
14
+ type __VLS_Slots$b = CAppSlots;
15
+ declare const __VLS_component$b: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
16
+ declare const _default$l: __VLS_WithSlots$b<typeof __VLS_component$b, __VLS_Slots$b>;
17
17
 
18
- type __VLS_WithSlots$c<T, S> = T & {
18
+ type __VLS_WithSlots$b<T, S> = T & {
19
19
  new (): {
20
20
  $slots: S;
21
21
  };
@@ -54,16 +54,15 @@ interface DimensionsProps {
54
54
 
55
55
  type Maybe<T> = T | undefined;
56
56
 
57
+ type AlignSide = 'top' | 'bottom' | 'left' | 'right';
58
+ type AlignValue$1 = AlignSide | 'top-center' | 'top-left' | 'top-right' | 'bottom-center' | 'bottom-left' | 'bottom-right' | 'left-center' | 'right-center';
57
59
  interface AutoPositionProps {
58
60
  strategy?: 'reverse' | 'bounce';
59
61
  positionX?: number;
60
62
  positionY?: number;
61
63
  offsetX?: number | string;
62
64
  offsetY?: number | string;
63
- left?: boolean;
64
- right?: boolean;
65
- top?: boolean;
66
- bottom?: boolean;
65
+ align?: AlignValue$1;
67
66
  }
68
67
 
69
68
  type Primitive = string | number | boolean | bigint | symbol | null | undefined | Date;
@@ -96,17 +95,17 @@ type CBtnProps = PresetProps & {
96
95
  };
97
96
 
98
97
  declare var __VLS_1$5: {};
99
- type __VLS_Slots$b = {} & {
98
+ type __VLS_Slots$a = {} & {
100
99
  default?: (props: typeof __VLS_1$5) => any;
101
100
  };
102
- declare const __VLS_component$b: vue.DefineComponent<CBtnProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
101
+ declare const __VLS_component$a: vue.DefineComponent<CBtnProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
103
102
  click: (e: MouseEvent) => any;
104
103
  }, string, vue.PublicProps, Readonly<CBtnProps> & Readonly<{
105
104
  onClick?: ((e: MouseEvent) => any) | undefined;
106
105
  }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
107
- declare const _default$l: __VLS_WithSlots$b<typeof __VLS_component$b, __VLS_Slots$b>;
106
+ declare const _default$k: __VLS_WithSlots$a<typeof __VLS_component$a, __VLS_Slots$a>;
108
107
 
109
- type __VLS_WithSlots$b<T, S> = T & {
108
+ type __VLS_WithSlots$a<T, S> = T & {
110
109
  new (): {
111
110
  $slots: S;
112
111
  };
@@ -124,7 +123,7 @@ interface InputState {
124
123
  focused: boolean;
125
124
  isDirty: boolean;
126
125
  }
127
- type CInputKind = 'checkbox' | 'radio' | 'input' | 'area' | 'listbox';
126
+ type CInputRole = 'combobox' | 'checkbox' | 'radio' | 'listbox';
128
127
  type CInputProps<T = any> = ValidateProps & PresetProps & {
129
128
  id?: string;
130
129
  modelValue: T | T[] | undefined | null;
@@ -135,7 +134,7 @@ type CInputProps<T = any> = ValidateProps & PresetProps & {
135
134
  disabled?: boolean;
136
135
  focused?: boolean;
137
136
  readonly?: boolean;
138
- kind?: CInputKind;
137
+ role?: CInputRole;
139
138
  };
140
139
  type CInputEmits<T = any> = {
141
140
  (e: 'update:modelValue', value: T): void;
@@ -170,11 +169,11 @@ type CInputSlots = {
170
169
  field?(props: CInputFieldSlotProps): VNode;
171
170
  };
172
171
 
173
- declare const _default$k: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
172
+ declare const _default$j: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
174
173
  props: __VLS_PrettifyLocal$7<Pick<Partial<{}> & Omit<{
175
174
  readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
176
175
  readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
177
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (ValidateProps & PresetProps & {
176
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:focused"> & (ValidateProps & PresetProps & {
178
177
  id?: string;
179
178
  modelValue: T | T[] | null | undefined;
180
179
  label?: string;
@@ -184,7 +183,7 @@ declare const _default$k: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setu
184
183
  disabled?: boolean;
185
184
  focused?: boolean;
186
185
  readonly?: boolean;
187
- kind?: CInputKind;
186
+ role?: CInputRole;
188
187
  } & {
189
188
  focused?: boolean;
190
189
  }) & Partial<{}>> & vue.PublicProps;
@@ -222,103 +221,6 @@ type ValidateState = {
222
221
  validating: boolean;
223
222
  };
224
223
 
225
- type COverlayProps = {
226
- modelValue: boolean;
227
- to?: string;
228
- };
229
- type COverlaySlots = {
230
- default?(props: {
231
- zIndex: number;
232
- }): VNode;
233
- };
234
-
235
- type __VLS_Props$5 = COverlayProps;
236
- type __VLS_Slots$a = COverlaySlots;
237
- type __VLS_PublicProps$4 = __VLS_Props$5 & {
238
- modelValue?: boolean;
239
- };
240
- declare const __VLS_component$a: vue.DefineComponent<__VLS_PublicProps$4, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
241
- "update:modelValue": (value: boolean) => any;
242
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps$4> & Readonly<{
243
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
244
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
245
- declare const _default$j: __VLS_WithSlots$a<typeof __VLS_component$a, __VLS_Slots$a>;
246
-
247
- type __VLS_WithSlots$a<T, S> = T & {
248
- new (): {
249
- $slots: S;
250
- };
251
- };
252
- //# sourceMappingURL=COverlay.vue.d.ts.map
253
-
254
- type CMenuProps = ActivatorProps & DimensionsProps & AutoPositionProps & DelayProps & PresetProps & Partial<COverlayProps> & {
255
- closeOnClickOutside?: boolean;
256
- closeOnContentClick?: boolean;
257
- ssr?: boolean;
258
- transition?: string;
259
- };
260
- type CMenuSlots = {
261
- activator?(props: {
262
- on: ActivatorListeners;
263
- activator: Record<string, any>;
264
- }): VNode;
265
- default(): VNode;
266
- };
267
- type CMenuEvents = {
268
- (e: 'outside-click'): void;
269
- (e: 'click'): void;
270
- (e: 'open'): void;
271
- (e: 'close'): void;
272
- (e: 'update:modelValue', val: boolean): void;
273
- };
274
-
275
- type __VLS_Props$4 = CMenuProps;
276
- type __VLS_PublicProps$3 = __VLS_Props$4 & {
277
- modelValue?: boolean;
278
- };
279
- declare var __VLS_1$4: {
280
- on: vue.Raw<{
281
- focus?: (() => void) | undefined;
282
- click?: (() => void) | undefined;
283
- mouseleave?: (() => void) | undefined;
284
- mouseenter?: (() => void) | undefined;
285
- }>;
286
- activator: Record<string, any>;
287
- };
288
- declare var __VLS_11: {};
289
- type __VLS_Slots$9 = {} & {
290
- activator?: (props: typeof __VLS_1$4) => any;
291
- } & {
292
- default?: (props: typeof __VLS_11) => any;
293
- };
294
- declare const __VLS_component$9: vue.DefineComponent<__VLS_PublicProps$3, {
295
- open: () => void;
296
- close: () => void;
297
- toggle: () => void;
298
- }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
299
- "update:modelValue": (value: boolean) => any;
300
- } & {
301
- click: () => any;
302
- close: () => any;
303
- open: () => any;
304
- "update:modelValue": (val: boolean) => any;
305
- "outside-click": () => any;
306
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps$3> & Readonly<{
307
- onClick?: (() => any) | undefined;
308
- onClose?: (() => any) | undefined;
309
- onOpen?: (() => any) | undefined;
310
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
311
- "onOutside-click"?: (() => any) | undefined;
312
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
313
- declare const _default$i: __VLS_WithSlots$9<typeof __VLS_component$9, __VLS_Slots$9>;
314
-
315
- type __VLS_WithSlots$9<T, S> = T & {
316
- new (): {
317
- $slots: S;
318
- };
319
- };
320
- //# sourceMappingURL=CMenu.vue.d.ts.map
321
-
322
224
  type PresetProps = {
323
225
  preset?: string;
324
226
  };
@@ -348,11 +250,11 @@ type CAutocompleteSlots<T> = {
348
250
  };
349
251
  type CAutocompletePublicProps<T> = CInputProps<T> & CAutocompleteProps<T>;
350
252
 
351
- declare const _default$h: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
253
+ declare const _default$i: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
352
254
  props: __VLS_PrettifyLocal$6<Pick<Partial<{}> & Omit<{
353
255
  readonly "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
354
256
  readonly "onUpdate:search"?: ((val: string) => any) | undefined;
355
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (IterableItemsProps<T> & SelectableProps<T> & {
257
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:search"> & (IterableItemsProps<T> & SelectableProps<T> & {
356
258
  options?: {
357
259
  noItemsMessage?: string;
358
260
  menuPreset?: string;
@@ -396,10 +298,10 @@ interface CSelectControlSlots {
396
298
  }): VNode;
397
299
  }
398
300
 
399
- declare const _default$g: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
301
+ declare const _default$h: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
400
302
  props: __VLS_PrettifyLocal$5<Pick<Partial<{}> & Omit<{
401
303
  readonly "onUpdate:modelValue"?: ((value: boolean | T | T[]) => any) | undefined;
402
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (CSelectControlProps<any> & {
304
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (CSelectControlProps<any> & {
403
305
  modelValue?: T | T[] | boolean;
404
306
  }) & Partial<{}>> & vue.PublicProps;
405
307
  expose(exposed: vue.ShallowUnwrapRef<{
@@ -436,10 +338,10 @@ type CCheckboxEvents<T> = {
436
338
  };
437
339
  type CCheckboxPublicProps<T> = CCheckboxProps<T> & CSelectControlProps<T> & CInputProps<CCheckboxModel<T>>;
438
340
 
439
- declare const _default$f: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
341
+ declare const _default$g: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
440
342
  props: __VLS_PrettifyLocal$4<Pick<Partial<{}> & Omit<{
441
343
  readonly "onUpdate:modelValue"?: ((value: T | undefined) => any) | undefined;
442
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (CCheckboxProps<T> & {
344
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (CCheckboxProps<T> & {
443
345
  modelValue?: T;
444
346
  }) & Partial<{}>> & vue.PublicProps;
445
347
  expose(exposed: vue.ShallowUnwrapRef<{}>): void;
@@ -455,14 +357,14 @@ type __VLS_PrettifyLocal$4<T> = {
455
357
  } & {};
456
358
  //# sourceMappingURL=CCheckbox.vue.d.ts.map
457
359
 
458
- declare var __VLS_1$3: {};
459
- type __VLS_Slots$8 = {} & {
460
- default?: (props: typeof __VLS_1$3) => any;
360
+ declare var __VLS_1$4: {};
361
+ type __VLS_Slots$9 = {} & {
362
+ default?: (props: typeof __VLS_1$4) => any;
461
363
  };
462
- declare const __VLS_component$8: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
463
- declare const _default$e: __VLS_WithSlots$8<typeof __VLS_component$8, __VLS_Slots$8>;
364
+ declare const __VLS_component$9: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
365
+ declare const _default$f: __VLS_WithSlots$9<typeof __VLS_component$9, __VLS_Slots$9>;
464
366
 
465
- type __VLS_WithSlots$8<T, S> = T & {
367
+ type __VLS_WithSlots$9<T, S> = T & {
466
368
  new (): {
467
369
  $slots: S;
468
370
  };
@@ -517,7 +419,7 @@ type EnrichedYear = {
517
419
  onSelect: () => void;
518
420
  };
519
421
 
520
- type __VLS_Slots$7 = {
422
+ type __VLS_Slots$8 = {
521
423
  'before-header'?(props: DatePickerSlotApi): VNodeChild;
522
424
  header?(props: DatePickerSlotApi): VNodeChild;
523
425
  'before-body'?(props: DatePickerSlotApi): VNodeChild;
@@ -576,7 +478,7 @@ type CDatePickerProps = {
576
478
  minDate?: Date | string;
577
479
  maxDate?: Date | string;
578
480
  };
579
- declare const __VLS_component$7: vue.DefineComponent<CDatePickerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
481
+ declare const __VLS_component$8: vue.DefineComponent<CDatePickerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
580
482
  "update:modelValue": (value: Date | null) => any;
581
483
  selected: (value: Date | null) => any;
582
484
  }, string, vue.PublicProps, Readonly<CDatePickerProps> & Readonly<{
@@ -586,9 +488,9 @@ declare const __VLS_component$7: vue.DefineComponent<CDatePickerProps, {}, {}, {
586
488
  lang: string;
587
489
  format: string;
588
490
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
589
- declare const _default$d: __VLS_WithSlots$7<typeof __VLS_component$7, __VLS_Slots$7>;
491
+ declare const _default$e: __VLS_WithSlots$8<typeof __VLS_component$8, __VLS_Slots$8>;
590
492
 
591
- type __VLS_WithSlots$7<T, S> = T & {
493
+ type __VLS_WithSlots$8<T, S> = T & {
592
494
  new (): {
593
495
  $slots: S;
594
496
  };
@@ -602,8 +504,8 @@ type DateLocale = {
602
504
 
603
505
  declare function datePickerValueToString(value: Date | string | null | undefined, format: string, lang: string): string;
604
506
 
605
- type __VLS_Props$3 = CDateInputProps;
606
- type __VLS_Slots$6 = {
507
+ type __VLS_Props$5 = CDateInputProps;
508
+ type __VLS_Slots$7 = {
607
509
  prepend?(): any;
608
510
  append?(): any;
609
511
  date?(props: DatePickerDate & {
@@ -641,18 +543,46 @@ type CDateInputProps = ValidateProps & PresetProps & {
641
543
  minDate?: Date | string;
642
544
  maxDate?: Date | string;
643
545
  };
644
- type __VLS_PublicProps$2 = __VLS_Props$3 & {
546
+ type __VLS_PublicProps$4 = __VLS_Props$5 & {
645
547
  modelValue?: Date | null;
646
548
  };
647
- declare const __VLS_component$6: vue.DefineComponent<__VLS_PublicProps$2, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
648
- blur: () => any;
549
+ declare const __VLS_component$7: vue.DefineComponent<__VLS_PublicProps$4, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
649
550
  focus: () => any;
551
+ blur: () => any;
650
552
  "update:modelValue": (...args: unknown[]) => any;
651
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps$2> & Readonly<{
652
- onBlur?: (() => any) | undefined;
553
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps$4> & Readonly<{
653
554
  onFocus?: (() => any) | undefined;
555
+ onBlur?: (() => any) | undefined;
654
556
  "onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
655
557
  }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
558
+ declare const _default$d: __VLS_WithSlots$7<typeof __VLS_component$7, __VLS_Slots$7>;
559
+
560
+ type __VLS_WithSlots$7<T, S> = T & {
561
+ new (): {
562
+ $slots: S;
563
+ };
564
+ };
565
+
566
+ type COverlayProps = {
567
+ modelValue: boolean;
568
+ to?: string;
569
+ };
570
+ type COverlaySlots = {
571
+ default?(props: {
572
+ zIndex: number;
573
+ }): VNode;
574
+ };
575
+
576
+ type __VLS_Props$4 = COverlayProps;
577
+ type __VLS_Slots$6 = COverlaySlots;
578
+ type __VLS_PublicProps$3 = __VLS_Props$4 & {
579
+ modelValue?: boolean;
580
+ };
581
+ declare const __VLS_component$6: vue.DefineComponent<__VLS_PublicProps$3, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
582
+ "update:modelValue": (value: boolean) => any;
583
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps$3> & Readonly<{
584
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
585
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
656
586
  declare const _default$c: __VLS_WithSlots$6<typeof __VLS_component$6, __VLS_Slots$6>;
657
587
 
658
588
  type __VLS_WithSlots$6<T, S> = T & {
@@ -660,6 +590,7 @@ type __VLS_WithSlots$6<T, S> = T & {
660
590
  $slots: S;
661
591
  };
662
592
  };
593
+ //# sourceMappingURL=COverlay.vue.d.ts.map
663
594
 
664
595
  type CDialogProps = COverlayProps & {
665
596
  closeOnClickOutside?: boolean;
@@ -668,14 +599,14 @@ type CDialogSlots = {
668
599
  default(): VNode;
669
600
  };
670
601
 
671
- type __VLS_Props$2 = CDialogProps;
602
+ type __VLS_Props$3 = CDialogProps;
672
603
  type __VLS_Slots$5 = CDialogSlots;
673
- type __VLS_PublicProps$1 = __VLS_Props$2 & {
604
+ type __VLS_PublicProps$2 = __VLS_Props$3 & {
674
605
  modelValue?: boolean;
675
606
  };
676
- declare const __VLS_component$5: vue.DefineComponent<__VLS_PublicProps$1, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
607
+ declare const __VLS_component$5: vue.DefineComponent<__VLS_PublicProps$2, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
677
608
  "update:modelValue": (value: boolean) => any;
678
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps$1> & Readonly<{
609
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps$2> & Readonly<{
679
610
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
680
611
  }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
681
612
  declare const _default$b: __VLS_WithSlots$5<typeof __VLS_component$5, __VLS_Slots$5>;
@@ -711,17 +642,17 @@ type CFieldSlots = {
711
642
  clear?(): VNode;
712
643
  };
713
644
 
714
- type __VLS_Props$1 = CFieldProps;
715
- type __VLS_PublicProps = __VLS_Props$1 & {
645
+ type __VLS_Props$2 = CFieldProps;
646
+ type __VLS_PublicProps$1 = __VLS_Props$2 & {
716
647
  modelValue?: string | number | undefined | null;
717
648
  };
718
- declare var __VLS_1$2: {};
649
+ declare var __VLS_1$3: {};
719
650
  declare var __VLS_7: {};
720
651
  declare var __VLS_19: {};
721
652
  declare var __VLS_25: {};
722
653
  declare var __VLS_31: {};
723
654
  type __VLS_Slots$4 = {} & {
724
- prepend?: (props: typeof __VLS_1$2) => any;
655
+ prepend?: (props: typeof __VLS_1$3) => any;
725
656
  } & {
726
657
  before?: (props: typeof __VLS_7) => any;
727
658
  } & {
@@ -731,11 +662,11 @@ type __VLS_Slots$4 = {} & {
731
662
  } & {
732
663
  append?: (props: typeof __VLS_31) => any;
733
664
  };
734
- declare const __VLS_component$4: vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
665
+ declare const __VLS_component$4: vue.DefineComponent<__VLS_PublicProps$1, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
735
666
  "update:modelValue": (value: string | number | null | undefined) => any;
736
667
  } & {
737
668
  clear: () => any;
738
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
669
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps$1> & Readonly<{
739
670
  onClear?: (() => any) | undefined;
740
671
  "onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
741
672
  }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
@@ -862,8 +793,8 @@ declare const CRow: vue.DefineComponent<vue.ExtractPropTypes<{
862
793
  };
863
794
  noGutter: BooleanConstructor;
864
795
  }>> & Readonly<{}>, {
865
- noGutter: boolean;
866
796
  align: "start" | "center" | "end" | "baseline" | "stretch";
797
+ noGutter: boolean;
867
798
  alignContent: "start" | "center" | "end" | "space-between" | "space-around" | "stretch";
868
799
  justify: "start" | "center" | "end" | "space-between" | "space-around";
869
800
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
@@ -915,21 +846,27 @@ type ListItemControls = {
915
846
  };
916
847
  type ListAPI<T = any> = {
917
848
  role: ComputedRef<CListRole>;
918
- register(controls: ListItemControls): void;
849
+ listId: string;
850
+ register(controls: ListItemControls): number;
919
851
  unregister(controls: ListItemControls): void;
920
852
  select(value: T): void;
921
853
  unselect(value: T): void;
922
854
  isActive(value: T): boolean;
855
+ setDescendant(id: string | undefined): void;
923
856
  };
924
857
 
925
858
  declare const _default$6: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
926
859
  props: __VLS_PrettifyLocal$3<Pick<Partial<{}> & Omit<{
927
860
  readonly "onUpdate:modelValue"?: ((value: T | T[] | null) => any) | undefined;
928
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (CListProps<T> & {
861
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (CListProps<T> & {
929
862
  modelValue?: T | T[] | null;
930
863
  }) & Partial<{}>> & vue.PublicProps;
931
864
  expose(exposed: vue.ShallowUnwrapRef<{
932
865
  focus: () => Promise<void>;
866
+ listId: string;
867
+ activeDescendant: vue.ShallowRef<string | undefined, string | undefined>;
868
+ navigateDown: () => void;
869
+ navigateUp: () => void;
933
870
  }>): void;
934
871
  attrs: any;
935
872
  slots: CListSlots<T>;
@@ -967,10 +904,78 @@ declare const CListItemTitle: vue.FunctionalComponent<{}, {}, any, {}>;
967
904
 
968
905
  declare const CMain: vue.FunctionalComponent<{}, {}, any, {}>;
969
906
 
970
- declare const _default$4: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$1<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
907
+ type CMenuProps = ActivatorProps & DimensionsProps & AutoPositionProps & DelayProps & Partial<COverlayProps> & {
908
+ closeOnClickOutside?: boolean;
909
+ closeOnContentClick?: boolean;
910
+ ssr?: boolean;
911
+ transition?: string;
912
+ };
913
+ type CMenuSlots = {
914
+ activator?(props: {
915
+ on: ActivatorListeners;
916
+ activator: Record<string, any>;
917
+ }): VNode;
918
+ default(): VNode;
919
+ };
920
+ type CMenuEvents = {
921
+ (e: 'outside-click'): void;
922
+ (e: 'click'): void;
923
+ (e: 'open'): void;
924
+ (e: 'close'): void;
925
+ (e: 'update:modelValue', val: boolean): void;
926
+ };
927
+
928
+ type __VLS_Props$1 = CMenuProps;
929
+ type __VLS_PublicProps = __VLS_Props$1 & {
930
+ modelValue?: boolean;
931
+ };
932
+ declare var __VLS_1$2: {
933
+ on: vue.Raw<{
934
+ focus?: (() => void) | undefined;
935
+ click?: (() => void) | undefined;
936
+ mouseleave?: (() => void) | undefined;
937
+ mouseenter?: (() => void) | undefined;
938
+ }>;
939
+ activator: Record<string, any>;
940
+ };
941
+ declare var __VLS_11: {};
942
+ type __VLS_Slots$2 = {} & {
943
+ activator?: (props: typeof __VLS_1$2) => any;
944
+ } & {
945
+ default?: (props: typeof __VLS_11) => any;
946
+ };
947
+ declare const __VLS_component$2: vue.DefineComponent<__VLS_PublicProps, {
948
+ open: () => void;
949
+ close: () => void;
950
+ toggle: () => void;
951
+ }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
952
+ "update:modelValue": (value: boolean) => any;
953
+ } & {
954
+ open: () => any;
955
+ close: () => any;
956
+ click: () => any;
957
+ "update:modelValue": (val: boolean) => any;
958
+ "outside-click": () => any;
959
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
960
+ onOpen?: (() => any) | undefined;
961
+ onClose?: (() => any) | undefined;
962
+ onClick?: (() => any) | undefined;
963
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
964
+ "onOutside-click"?: (() => any) | undefined;
965
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
966
+ declare const _default$4: __VLS_WithSlots$2<typeof __VLS_component$2, __VLS_Slots$2>;
967
+
968
+ type __VLS_WithSlots$2<T, S> = T & {
969
+ new (): {
970
+ $slots: S;
971
+ };
972
+ };
973
+ //# sourceMappingURL=CMenu.vue.d.ts.map
974
+
975
+ declare const _default$3: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$1<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
971
976
  props: __VLS_PrettifyLocal$1<Pick<Partial<{}> & Omit<{
972
977
  readonly "onUpdate:modelValue"?: ((value: T | undefined) => any) | undefined;
973
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & ({
978
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
974
979
  label?: string;
975
980
  } & {
976
981
  modelValue?: T;
@@ -991,13 +996,13 @@ type __VLS_PrettifyLocal$1<T> = {
991
996
  //# sourceMappingURL=CRadio.vue.d.ts.map
992
997
 
993
998
  declare var __VLS_1$1: {};
994
- type __VLS_Slots$2 = {} & {
999
+ type __VLS_Slots$1 = {} & {
995
1000
  default?: (props: typeof __VLS_1$1) => any;
996
1001
  };
997
- declare const __VLS_component$2: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
998
- declare const _default$3: __VLS_WithSlots$2<typeof __VLS_component$2, __VLS_Slots$2>;
1002
+ declare const __VLS_component$1: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
1003
+ declare const _default$2: __VLS_WithSlots$1<typeof __VLS_component$1, __VLS_Slots$1>;
999
1004
 
1000
- type __VLS_WithSlots$2<T, S> = T & {
1005
+ type __VLS_WithSlots$1<T, S> = T & {
1001
1006
  new (): {
1002
1007
  $slots: S;
1003
1008
  };
@@ -1034,10 +1039,10 @@ type CSelectSlots<T> = {
1034
1039
  ['no-items-message'](): string;
1035
1040
  };
1036
1041
 
1037
- declare const _default$2: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1042
+ declare const _default$1: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1038
1043
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
1039
1044
  readonly "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
1040
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (SelectableProps<T> & IterableItemsProps<T> & {
1045
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (SelectableProps<T> & IterableItemsProps<T> & {
1041
1046
  options?: {
1042
1047
  extKey?: string;
1043
1048
  noItemsMessage?: string;
@@ -1058,7 +1063,7 @@ type __VLS_PrettifyLocal<T> = {
1058
1063
  } & {};
1059
1064
  //# sourceMappingURL=CSelect.vue.d.ts.map
1060
1065
 
1061
- type CTextFieldProps = Omit<CInputProps, 'modelValue' | 'kind'>;
1066
+ type CTextFieldProps = Omit<CInputProps, 'modelValue' | 'role'>;
1062
1067
  type CTextFieldSlots = {
1063
1068
  prepend(): VNode;
1064
1069
  append(): VNode;
@@ -1085,13 +1090,13 @@ type __VLS_Props = {
1085
1090
  fixed?: boolean;
1086
1091
  };
1087
1092
  declare var __VLS_1: {};
1088
- type __VLS_Slots$1 = {} & {
1093
+ type __VLS_Slots = {} & {
1089
1094
  default?: (props: typeof __VLS_1) => any;
1090
1095
  };
1091
- declare const __VLS_component$1: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1092
- declare const _default$1: __VLS_WithSlots$1<typeof __VLS_component$1, __VLS_Slots$1>;
1096
+ declare const __VLS_component: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1097
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
1093
1098
 
1094
- type __VLS_WithSlots$1<T, S> = T & {
1099
+ type __VLS_WithSlots<T, S> = T & {
1095
1100
  new (): {
1096
1101
  $slots: S;
1097
1102
  };
@@ -1101,30 +1106,11 @@ type __VLS_WithSlots$1<T, S> = T & {
1101
1106
  declare const CToolbarLogo: vue.FunctionalComponent<{}, {}, any, {}>;
1102
1107
  declare const CToolbarItems: vue.FunctionalComponent<{}, {}, any, {}>;
1103
1108
 
1104
- declare var __VLS_6: {
1105
- activator: Record<string, any>;
1106
- on: vue.Raw<{
1107
- focus?: (() => void) | undefined;
1108
- click?: (() => void) | undefined;
1109
- mouseleave?: (() => void) | undefined;
1110
- mouseenter?: (() => void) | undefined;
1111
- }>;
1112
- };
1113
- declare var __VLS_8: {};
1114
- type __VLS_Slots = {} & {
1115
- activator?: (props: typeof __VLS_6) => any;
1116
- } & {
1117
- default?: (props: typeof __VLS_8) => any;
1118
- };
1119
- declare const __VLS_component: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
1120
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
1121
-
1122
- type __VLS_WithSlots<T, S> = T & {
1123
- new (): {
1124
- $slots: S;
1125
- };
1109
+ type CTooltipComponent = new () => {
1110
+ $props: CMenuProps;
1111
+ $slots: CMenuSlots;
1126
1112
  };
1127
- //# sourceMappingURL=CTooltip.vue.d.ts.map
1113
+ declare const CTooltip: CTooltipComponent;
1128
1114
 
1129
- export { _default$m as CApp, _default$h as CAutocomplete, _default$l as CBtn, CCard, CCardBody, CCardFooter, CCardHeader, _default$f as CCheckbox, _default$e as CChip, CCol, _default$c as CDateInput, _default$d as CDatePicker, _default$b as CDialog, _default$a as CDialogsStack, _default$9 as CField, _default$8 as CForm, _default$7 as CIcon, _default$k as CInput, CLabel, _default$6 as CList, _default$5 as CListItem, CListItemIcon, CListItemTitle, CMain, _default$i as CMenu, _default$j as COverlay, _default$4 as CRadio, _default$3 as CRadioGroup, CRow, CScrim, _default$2 as CSelect, _default$g as CSelectControl, CSpacer, CTextField, _default$1 as CToolbar, CToolbarItems, CToolbarLogo, _default as CTooltip, datePickerValueToString };
1130
- export type { ApplicationApi, CAppSlots, CAutocompleteProps, CAutocompletePublicProps, CAutocompleteSlots, CBtnProps, CCheckboxEvents, CCheckboxModel, CCheckboxProps, CCheckboxPublicProps, CCheckboxSlots, CDateInputProps, CDatePickerProps, CDialogProps, CDialogSlots, CFieldProps, CFieldSlots, CFormEmits, CFormProps, CFormSlots, CInputDetailsSlotProps, CInputEmits, CInputFieldSlotProps, CInputKind, CInputProps, CInputSlots, CLabelProps, CListProps, CListRole, CListSlots, CMenuEvents, CMenuProps, CMenuSlots, COverlayProps, COverlaySlots, CScrimProps, CSelectControlProps, CSelectControlSlots, CSelectProps, CSelectSlots, CTextFieldProps, CTextFieldSlots, DateLocale, DatePickerDate, DatePickerEnrichedDate, DatePickerEnrichedMonth, DatePickerEnrichedYear, DatePickerSlotApi, DatePickerWeekDay, DisabledDates, FormAPI, InputState, ListAPI, ListItemControls, ResetFn, ValidatorFn };
1115
+ export { _default$l as CApp, _default$i as CAutocomplete, _default$k as CBtn, CCard, CCardBody, CCardFooter, CCardHeader, _default$g as CCheckbox, _default$f as CChip, CCol, _default$d as CDateInput, _default$e as CDatePicker, _default$b as CDialog, _default$a as CDialogsStack, _default$9 as CField, _default$8 as CForm, _default$7 as CIcon, _default$j as CInput, CLabel, _default$6 as CList, _default$5 as CListItem, CListItemIcon, CListItemTitle, CMain, _default$4 as CMenu, _default$c as COverlay, _default$3 as CRadio, _default$2 as CRadioGroup, CRow, CScrim, _default$1 as CSelect, _default$h as CSelectControl, CSpacer, CTextField, _default as CToolbar, CToolbarItems, CToolbarLogo, CTooltip, datePickerValueToString };
1116
+ export type { ApplicationApi, CAppSlots, CAutocompleteProps, CAutocompletePublicProps, CAutocompleteSlots, CBtnProps, CCheckboxEvents, CCheckboxModel, CCheckboxProps, CCheckboxPublicProps, CCheckboxSlots, CDateInputProps, CDatePickerProps, CDialogProps, CDialogSlots, CFieldProps, CFieldSlots, CFormEmits, CFormProps, CFormSlots, CInputDetailsSlotProps, CInputEmits, CInputFieldSlotProps, CInputProps, CInputRole, CInputSlots, CLabelProps, CListProps, CListRole, CListSlots, CMenuEvents, CMenuProps, CMenuSlots, COverlayProps, COverlaySlots, CScrimProps, CSelectControlProps, CSelectControlSlots, CSelectProps, CSelectSlots, CTextFieldProps, CTextFieldSlots, DateLocale, DatePickerDate, DatePickerEnrichedDate, DatePickerEnrichedMonth, DatePickerEnrichedYear, DatePickerSlotApi, DatePickerWeekDay, DisabledDates, FormAPI, InputState, ListAPI, ListItemControls, ResetFn, ValidatorFn };
@@ -6,6 +6,7 @@ export { CMain } from './CMain/index.js';
6
6
  export { CScrim } from './CScrim/index.js';
7
7
  export { CTextField } from './CTextField/index.js';
8
8
  export { CToolbarItems, CToolbarLogo } from './CToolbar/index.js';
9
+ export { CTooltip } from './CTooltip/index.js';
9
10
  export { default as CApp } from './CApp/CApp.js';
10
11
  export { default as CAutocomplete } from './CAutocomplete/CAutocomplete.js';
11
12
  export { default as CBtn } from './CBtn/CBtn.js';
@@ -26,7 +27,6 @@ export { default as CRadio } from './CRadio/CRadio.js';
26
27
  export { default as CSelect } from './CSelect/CSelect.js';
27
28
  export { default as CSelectControl } from './CSelectControl/CSelectControl.js';
28
29
  export { default as CToolbar } from './CToolbar/CToolbar.js';
29
- export { default as CTooltip } from './CTooltip/CTooltip.js';
30
30
  export { default as CChip } from './CChip/CChip.js';
31
31
  export { CCol } from './CGrid/CCol.js';
32
32
  export { CLabel } from './CLabel/CLabel.js';