reka-ui 2.8.0 → 2.8.2

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 (80) hide show
  1. package/dist/Calendar/CalendarCellTrigger.cjs +4 -1
  2. package/dist/Calendar/CalendarCellTrigger.cjs.map +1 -1
  3. package/dist/Calendar/CalendarCellTrigger.js +4 -1
  4. package/dist/Calendar/CalendarCellTrigger.js.map +1 -1
  5. package/dist/Calendar/CalendarRoot.cjs +12 -7
  6. package/dist/Calendar/CalendarRoot.cjs.map +1 -1
  7. package/dist/Calendar/CalendarRoot.js +13 -8
  8. package/dist/Calendar/CalendarRoot.js.map +1 -1
  9. package/dist/Calendar/useCalendar.cjs +32 -2
  10. package/dist/Calendar/useCalendar.cjs.map +1 -1
  11. package/dist/Calendar/useCalendar.js +33 -3
  12. package/dist/Calendar/useCalendar.js.map +1 -1
  13. package/dist/Combobox/ComboboxContentImpl.cjs +2 -1
  14. package/dist/Combobox/ComboboxContentImpl.cjs.map +1 -1
  15. package/dist/Combobox/ComboboxContentImpl.js +2 -1
  16. package/dist/Combobox/ComboboxContentImpl.js.map +1 -1
  17. package/dist/DatePicker/DatePickerRoot.cjs +4 -3
  18. package/dist/DatePicker/DatePickerRoot.cjs.map +1 -1
  19. package/dist/DatePicker/DatePickerRoot.js +4 -3
  20. package/dist/DatePicker/DatePickerRoot.js.map +1 -1
  21. package/dist/DateRangePicker/DateRangePickerRoot.cjs +4 -3
  22. package/dist/DateRangePicker/DateRangePickerRoot.cjs.map +1 -1
  23. package/dist/DateRangePicker/DateRangePickerRoot.js +5 -4
  24. package/dist/DateRangePicker/DateRangePickerRoot.js.map +1 -1
  25. package/dist/RangeCalendar/RangeCalendarCellTrigger.cjs +8 -2
  26. package/dist/RangeCalendar/RangeCalendarCellTrigger.cjs.map +1 -1
  27. package/dist/RangeCalendar/RangeCalendarCellTrigger.js +8 -2
  28. package/dist/RangeCalendar/RangeCalendarCellTrigger.js.map +1 -1
  29. package/dist/RangeCalendar/RangeCalendarGrid.cjs +2 -1
  30. package/dist/RangeCalendar/RangeCalendarGrid.cjs.map +1 -1
  31. package/dist/RangeCalendar/RangeCalendarGrid.js +2 -1
  32. package/dist/RangeCalendar/RangeCalendarGrid.js.map +1 -1
  33. package/dist/RangeCalendar/RangeCalendarRoot.cjs +30 -16
  34. package/dist/RangeCalendar/RangeCalendarRoot.cjs.map +1 -1
  35. package/dist/RangeCalendar/RangeCalendarRoot.js +31 -17
  36. package/dist/RangeCalendar/RangeCalendarRoot.js.map +1 -1
  37. package/dist/RangeCalendar/useRangeCalendar.cjs +41 -8
  38. package/dist/RangeCalendar/useRangeCalendar.cjs.map +1 -1
  39. package/dist/RangeCalendar/useRangeCalendar.js +41 -8
  40. package/dist/RangeCalendar/useRangeCalendar.js.map +1 -1
  41. package/dist/constant.d.cts.map +1 -1
  42. package/dist/date/calendar.cjs +29 -9
  43. package/dist/date/calendar.cjs.map +1 -1
  44. package/dist/date/calendar.js +25 -11
  45. package/dist/date/calendar.js.map +1 -1
  46. package/dist/date/useDateField.cjs +1 -1
  47. package/dist/date/useDateField.cjs.map +1 -1
  48. package/dist/date/useDateField.js +1 -1
  49. package/dist/date/useDateField.js.map +1 -1
  50. package/dist/date.cjs +1 -0
  51. package/dist/date.d.cts +2 -2
  52. package/dist/date.d.ts +2 -2
  53. package/dist/date.js +2 -2
  54. package/dist/index.d.cts +841 -836
  55. package/dist/index.d.cts.map +1 -1
  56. package/dist/index.d.ts +804 -799
  57. package/dist/index.d.ts.map +1 -1
  58. package/dist/index2.d.cts +9 -2
  59. package/dist/index2.d.cts.map +1 -1
  60. package/dist/index2.d.ts +9 -2
  61. package/dist/index2.d.ts.map +1 -1
  62. package/dist/shared/useForwardExpose.cjs +1 -1
  63. package/dist/shared/useForwardExpose.cjs.map +1 -1
  64. package/dist/shared/useForwardExpose.js +1 -1
  65. package/dist/shared/useForwardExpose.js.map +1 -1
  66. package/package.json +16 -12
  67. package/src/Calendar/CalendarCellTrigger.vue +8 -1
  68. package/src/Calendar/CalendarRoot.vue +19 -7
  69. package/src/Calendar/useCalendar.ts +43 -3
  70. package/src/Combobox/ComboboxContentImpl.vue +1 -0
  71. package/src/DatePicker/DatePickerRoot.vue +4 -4
  72. package/src/DateRangePicker/DateRangePickerRoot.vue +5 -5
  73. package/src/RadioGroup/RadioGroupRoot.vue +1 -1
  74. package/src/RangeCalendar/RangeCalendarCellTrigger.vue +13 -3
  75. package/src/RangeCalendar/RangeCalendarGrid.vue +1 -0
  76. package/src/RangeCalendar/RangeCalendarRoot.vue +46 -30
  77. package/src/RangeCalendar/useRangeCalendar.ts +43 -15
  78. package/src/date/calendar.ts +42 -18
  79. package/src/shared/date/useDateField.ts +3 -1
  80. package/src/shared/useForwardExpose.ts +1 -1
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import { DateRange, DateStep, DateValue, Grid, HourCycle, Matcher, SegmentPart, SegmentValueObj, WeekDayFormat } from "./index2.js";
2
- import * as vue33 from "vue";
1
+ import { DateRange, DateStep, DateValue, Grid, HourCycle, Matcher, SegmentPart, SegmentValueObj, WeekDayFormat, WeekStartsOn } from "./index2.js";
2
+ import * as vue32 from "vue";
3
3
  import { CSSProperties, Component, ComponentPublicInstance, ComputedRef, DefineComponent, HTMLAttributes, ImgHTMLAttributes, MaybeRef, MaybeRefOrGetter, PropType, Ref, SlotsType, UnwrapNestedRefs, VNode, VNodeProps, VNodeRef } from "vue";
4
4
  import { EventHook, EventHookOn } from "@vueuse/core";
5
- import * as _internationalized_date1697 from "@internationalized/date";
5
+ import * as _internationalized_date538 from "@internationalized/date";
6
6
  import { CalendarDateTime, DateValue as DateValue$1, Time, ZonedDateTime } from "@internationalized/date";
7
7
  import { ReferenceElement, ReferenceElement as ReferenceElement$1 } from "@floating-ui/vue";
8
8
  import { VirtualItem, Virtualizer } from "@tanstack/vue-virtual";
@@ -71,7 +71,7 @@ interface FormFieldProps {
71
71
  }
72
72
  //#endregion
73
73
  //#region src/shared/useBodyScrollLock.d.ts
74
- declare function useBodyScrollLock(initialState?: boolean | undefined): vue33.WritableComputedRef<boolean, boolean>;
74
+ declare function useBodyScrollLock(initialState?: boolean | undefined): vue32.WritableComputedRef<boolean, boolean>;
75
75
  //# sourceMappingURL=useBodyScrollLock.d.ts.map
76
76
  //#endregion
77
77
  //#region src/shared/useDateFormatter.d.ts
@@ -112,7 +112,7 @@ declare function useDateFormatter(initialLocale: string, opts?: DateFormatterOpt
112
112
  * @param {Ref<Direction | undefined>} [dir] - An optional ref containing the direction (ltr or rtl).
113
113
  * @returns computed value that combines with the resolved direction.
114
114
  */
115
- declare function useDirection(dir?: Ref<Direction | undefined>): vue33.ComputedRef<Direction>;
115
+ declare function useDirection(dir?: Ref<Direction | undefined>): vue32.ComputedRef<Direction>;
116
116
  //# sourceMappingURL=useDirection.d.ts.map
117
117
  //#endregion
118
118
  //#region src/shared/useEmitAsProps.d.ts
@@ -155,8 +155,8 @@ declare function useFilter(options?: MaybeRef<Intl.CollatorOptions>): {
155
155
  //#region src/shared/useForwardExpose.d.ts
156
156
  declare function useForwardExpose<T extends ComponentPublicInstance>(): {
157
157
  forwardRef: (ref: Element | T | null) => void;
158
- currentRef: vue33.Ref<Element | T | null | undefined, Element | T | null | undefined>;
159
- currentElement: vue33.ComputedRef<HTMLElement>;
158
+ currentRef: vue32.Ref<Element | T | null | undefined, Element | T | null | undefined>;
159
+ currentElement: vue32.ComputedRef<HTMLElement>;
160
160
  };
161
161
  //# sourceMappingURL=useForwardExpose.d.ts.map
162
162
 
@@ -169,7 +169,7 @@ declare function useForwardExpose<T extends ComponentPublicInstance>(): {
169
169
  * component.
170
170
  * @returns computed value that combines the default props, preserved props, and assigned props.
171
171
  */
172
- declare function useForwardProps<T extends Record<string, any>>(props: MaybeRefOrGetter<T>): vue33.ComputedRef<T>;
172
+ declare function useForwardProps<T extends Record<string, any>>(props: MaybeRefOrGetter<T>): vue32.ComputedRef<T>;
173
173
  //# sourceMappingURL=useForwardProps.d.ts.map
174
174
 
175
175
  //#endregion
@@ -186,7 +186,7 @@ declare function useForwardProps<T extends Record<string, any>>(props: MaybeRefO
186
186
  * @returns a computed property that combines the parsed
187
187
  * props and emits as props.
188
188
  */
189
- declare function useForwardPropsEmits<T extends Record<string, any>, Name extends string>(props: MaybeRefOrGetter<T>, emit?: (name: Name, ...args: any[]) => void): vue33.ComputedRef<T & Record<string, any>>;
189
+ declare function useForwardPropsEmits<T extends Record<string, any>, Name extends string>(props: MaybeRefOrGetter<T>, emit?: (name: Name, ...args: any[]) => void): vue32.ComputedRef<T & Record<string, any>>;
190
190
  //# sourceMappingURL=useForwardPropsEmits.d.ts.map
191
191
  //#endregion
192
192
  //#region src/shared/useId.d.ts
@@ -207,7 +207,7 @@ declare function useId(deterministicId?: string | null | undefined, prefix?: str
207
207
  * @param {Ref<string | undefined>} [locale] - An optional ref containing the locale.
208
208
  * @returns A computed ref holding the resolved locale.
209
209
  */
210
- declare function useLocale(locale?: Ref<string | undefined>): vue33.ComputedRef<string>;
210
+ declare function useLocale(locale?: Ref<string | undefined>): vue32.ComputedRef<string>;
211
211
  //# sourceMappingURL=useLocale.d.ts.map
212
212
  //#endregion
213
213
  //#region src/shared/useSelectionBehavior.d.ts
@@ -283,7 +283,7 @@ interface PrimitiveProps {
283
283
  */
284
284
  as?: AsTag | Component;
285
285
  }
286
- declare const Primitive: vue33.DefineComponent<vue33.ExtractPropTypes<{
286
+ declare const Primitive: vue32.DefineComponent<vue32.ExtractPropTypes<{
287
287
  asChild: {
288
288
  type: BooleanConstructor;
289
289
  default: boolean;
@@ -292,9 +292,9 @@ declare const Primitive: vue33.DefineComponent<vue33.ExtractPropTypes<{
292
292
  type: PropType<AsTag | Component>;
293
293
  default: string;
294
294
  };
295
- }>, () => vue33.VNode<vue33.RendererNode, vue33.RendererElement, {
295
+ }>, () => vue32.VNode<vue32.RendererNode, vue32.RendererElement, {
296
296
  [key: string]: any;
297
- }>, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<vue33.ExtractPropTypes<{
297
+ }>, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<vue32.ExtractPropTypes<{
298
298
  asChild: {
299
299
  type: BooleanConstructor;
300
300
  default: boolean;
@@ -306,15 +306,15 @@ declare const Primitive: vue33.DefineComponent<vue33.ExtractPropTypes<{
306
306
  }>> & Readonly<{}>, {
307
307
  asChild: boolean;
308
308
  as: AsTag | Component;
309
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, true, {}, any>;
309
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, true, {}, any>;
310
310
  //# sourceMappingURL=Primitive.d.ts.map
311
311
  //#endregion
312
312
  //#region src/Primitive/Slot.d.ts
313
- declare const Slot: vue33.DefineComponent<{}, () => vue33.VNode<vue33.RendererNode, vue33.RendererElement, {
313
+ declare const Slot: vue32.DefineComponent<{}, () => vue32.VNode<vue32.RendererNode, vue32.RendererElement, {
314
314
  [key: string]: any;
315
- }> | vue33.VNode<vue33.RendererNode, vue33.RendererElement, {
315
+ }> | vue32.VNode<vue32.RendererNode, vue32.RendererElement, {
316
316
  [key: string]: any;
317
- }>[] | null, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, true, {}, any>;
317
+ }>[] | null, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, true, {}, any>;
318
318
  //# sourceMappingURL=Slot.d.ts.map
319
319
  //#endregion
320
320
  //#region src/Collapsible/CollapsibleContent.vue.d.ts
@@ -328,11 +328,11 @@ interface CollapsibleContentProps extends PrimitiveProps {
328
328
  type CollapsibleContentEmits = {
329
329
  contentFound: [void];
330
330
  };
331
- declare const _default$33: __VLS_WithSlots$289<vue33.DefineComponent<CollapsibleContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
331
+ declare const _default$33: __VLS_WithSlots$289<vue32.DefineComponent<CollapsibleContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
332
332
  contentFound: (args_0: void) => any;
333
- }, string, vue33.PublicProps, Readonly<CollapsibleContentProps> & Readonly<{
333
+ }, string, vue32.PublicProps, Readonly<CollapsibleContentProps> & Readonly<{
334
334
  onContentFound?: ((args_0?: void | undefined) => any) | undefined;
335
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
335
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
336
336
  default?: (props: {}) => any;
337
337
  }>;
338
338
  type __VLS_WithSlots$289<T, S> = T & {
@@ -365,17 +365,17 @@ interface CollapsibleRootContext {
365
365
  onOpenToggle: () => void;
366
366
  }
367
367
  declare const injectCollapsibleRootContext: <T extends CollapsibleRootContext | null | undefined = CollapsibleRootContext>(fallback?: T | undefined) => T extends null ? CollapsibleRootContext | null : CollapsibleRootContext, provideCollapsibleRootContext: (contextValue: CollapsibleRootContext) => CollapsibleRootContext;
368
- declare const _default$34: __VLS_WithSlots$288<vue33.DefineComponent<CollapsibleRootProps, {
368
+ declare const _default$34: __VLS_WithSlots$288<vue32.DefineComponent<CollapsibleRootProps, {
369
369
  open: Ref<boolean, boolean>;
370
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
370
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
371
371
  "update:open": (value: boolean) => any;
372
- }, string, vue33.PublicProps, Readonly<CollapsibleRootProps> & Readonly<{
372
+ }, string, vue32.PublicProps, Readonly<CollapsibleRootProps> & Readonly<{
373
373
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
374
374
  }>, {
375
- defaultOpen: boolean;
376
375
  open: boolean;
376
+ defaultOpen: boolean;
377
377
  unmountOnHide: boolean;
378
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
378
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
379
379
  default?: (props: {
380
380
  /** Current open state */
381
381
  open: boolean;
@@ -390,9 +390,9 @@ type __VLS_WithSlots$288<T, S> = T & {
390
390
  //#endregion
391
391
  //#region src/Collapsible/CollapsibleTrigger.vue.d.ts
392
392
  interface CollapsibleTriggerProps extends PrimitiveProps {}
393
- declare const _default$35: __VLS_WithSlots$287<vue33.DefineComponent<CollapsibleTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CollapsibleTriggerProps> & Readonly<{}>, {
394
- as: AsTag | vue33.Component;
395
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
393
+ declare const _default$35: __VLS_WithSlots$287<vue32.DefineComponent<CollapsibleTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CollapsibleTriggerProps> & Readonly<{}>, {
394
+ as: AsTag | vue32.Component;
395
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
396
396
  default?: (props: {}) => any;
397
397
  }>;
398
398
  type __VLS_WithSlots$287<T, S> = T & {
@@ -404,7 +404,7 @@ type __VLS_WithSlots$287<T, S> = T & {
404
404
  //#endregion
405
405
  //#region src/Accordion/AccordionContent.vue.d.ts
406
406
  interface AccordionContentProps extends CollapsibleContentProps {}
407
- declare const _default: __VLS_WithSlots$286<vue33.DefineComponent<AccordionContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
407
+ declare const _default: __VLS_WithSlots$286<vue32.DefineComponent<AccordionContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
408
408
  default?: (props: {}) => any;
409
409
  }>;
410
410
  type __VLS_WithSlots$286<T, S> = T & {
@@ -412,13 +412,12 @@ type __VLS_WithSlots$286<T, S> = T & {
412
412
  $slots: S;
413
413
  };
414
414
  };
415
- //# sourceMappingURL=AccordionContent.vue.d.ts.map
416
415
  //#endregion
417
416
  //#region src/Accordion/AccordionHeader.vue.d.ts
418
417
  interface AccordionHeaderProps extends PrimitiveProps {}
419
- declare const _default$1: __VLS_WithSlots$285<vue33.DefineComponent<AccordionHeaderProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AccordionHeaderProps> & Readonly<{}>, {
420
- as: AsTag | vue33.Component;
421
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
418
+ declare const _default$1: __VLS_WithSlots$285<vue32.DefineComponent<AccordionHeaderProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AccordionHeaderProps> & Readonly<{}>, {
419
+ as: AsTag | vue32.Component;
420
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
422
421
  default?: (props: {}) => any;
423
422
  }>;
424
423
  type __VLS_WithSlots$285<T, S> = T & {
@@ -457,12 +456,12 @@ interface AccordionItemContext {
457
456
  value: ComputedRef<string>;
458
457
  }
459
458
  declare const injectAccordionItemContext: <T extends AccordionItemContext | null | undefined = AccordionItemContext>(fallback?: T | undefined) => T extends null ? AccordionItemContext | null : AccordionItemContext, provideAccordionItemContext: (contextValue: AccordionItemContext) => AccordionItemContext;
460
- declare const _default$2: __VLS_WithSlots$284<vue33.DefineComponent<AccordionItemProps, {
459
+ declare const _default$2: __VLS_WithSlots$284<vue32.DefineComponent<AccordionItemProps, {
461
460
  open: ComputedRef<boolean>;
462
461
  dataDisabled: ComputedRef<"" | undefined>;
463
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {
462
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {
464
463
  unmountOnHide: boolean;
465
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
464
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
466
465
  default?: (props: {
467
466
  /** Current open state */
468
467
  open: boolean;
@@ -530,8 +529,8 @@ declare const injectAccordionRootContext: <T extends AccordionRootContext<Accord
530
529
  declare const _default$3: <T extends (string | string[]), ExplicitType extends SingleOrMultipleType>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$14<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
531
530
  props: __VLS_PrettifyLocal$14<Pick<Partial<{}> & Omit<{
532
531
  readonly "onUpdate:modelValue"?: ((value: (ExplicitType extends "single" ? string : string[]) | undefined) => any) | undefined;
533
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onUpdate:modelValue"> & AccordionRootProps<T> & Partial<{}>> & vue33.PublicProps;
534
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
532
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onUpdate:modelValue"> & AccordionRootProps<T> & Partial<{}>> & vue32.PublicProps;
533
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
535
534
  attrs: any;
536
535
  slots: {
537
536
  default?: (props: {
@@ -540,7 +539,7 @@ declare const _default$3: <T extends (string | string[]), ExplicitType extends S
540
539
  }) => any;
541
540
  };
542
541
  emit: (evt: "update:modelValue", value: (ExplicitType extends "single" ? string : string[]) | undefined) => void;
543
- }>) => vue33.VNode & {
542
+ }>) => vue32.VNode & {
544
543
  __ctx?: Awaited<typeof __VLS_setup>;
545
544
  };
546
545
  type __VLS_PrettifyLocal$14<T> = { [K in keyof T]: T[K] } & {};
@@ -548,7 +547,7 @@ type __VLS_PrettifyLocal$14<T> = { [K in keyof T]: T[K] } & {};
548
547
  //#endregion
549
548
  //#region src/Accordion/AccordionTrigger.vue.d.ts
550
549
  interface AccordionTriggerProps extends PrimitiveProps {}
551
- declare const _default$4: __VLS_WithSlots$283<vue33.DefineComponent<AccordionTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AccordionTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
550
+ declare const _default$4: __VLS_WithSlots$283<vue32.DefineComponent<AccordionTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AccordionTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
552
551
  default?: (props: {}) => any;
553
552
  }>;
554
553
  type __VLS_WithSlots$283<T, S> = T & {
@@ -560,9 +559,9 @@ type __VLS_WithSlots$283<T, S> = T & {
560
559
  //#endregion
561
560
  //#region src/Dialog/DialogClose.vue.d.ts
562
561
  interface DialogCloseProps extends PrimitiveProps {}
563
- declare const _default$113: __VLS_WithSlots$282<vue33.DefineComponent<DialogCloseProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
564
- as: AsTag | vue33.Component;
565
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
562
+ declare const _default$113: __VLS_WithSlots$282<vue32.DefineComponent<DialogCloseProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
563
+ as: AsTag | vue32.Component;
564
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
566
565
  default?: (props: {}) => any;
567
566
  }>;
568
567
  type __VLS_WithSlots$282<T, S> = T & {
@@ -649,21 +648,21 @@ interface DialogContentProps extends Omit<DialogContentImplProps, 'trapFocus'> {
649
648
  */
650
649
  forceMount?: boolean;
651
650
  }
652
- declare const _default$114: __VLS_WithSlots$281<vue33.DefineComponent<DialogContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
651
+ declare const _default$114: __VLS_WithSlots$281<vue32.DefineComponent<DialogContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
653
652
  escapeKeyDown: (event: KeyboardEvent) => any;
654
653
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
655
654
  focusOutside: (event: FocusOutsideEvent) => any;
656
655
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
657
656
  openAutoFocus: (event: Event) => any;
658
657
  closeAutoFocus: (event: Event) => any;
659
- }, string, vue33.PublicProps, Readonly<DialogContentProps> & Readonly<{
658
+ }, string, vue32.PublicProps, Readonly<DialogContentProps> & Readonly<{
660
659
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
661
660
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
662
661
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
663
662
  onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
664
663
  onOpenAutoFocus?: ((event: Event) => any) | undefined;
665
664
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
666
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
665
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
667
666
  default?: (props: {}) => any;
668
667
  } & {
669
668
  default?: (props: {}) => any;
@@ -677,9 +676,9 @@ type __VLS_WithSlots$281<T, S> = T & {
677
676
  //#endregion
678
677
  //#region src/Dialog/DialogDescription.vue.d.ts
679
678
  interface DialogDescriptionProps extends PrimitiveProps {}
680
- declare const _default$115: __VLS_WithSlots$280<vue33.DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
681
- as: AsTag | vue33.Component;
682
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
679
+ declare const _default$115: __VLS_WithSlots$280<vue32.DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
680
+ as: AsTag | vue32.Component;
681
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
683
682
  default?: (props: {}) => any;
684
683
  }>;
685
684
  type __VLS_WithSlots$280<T, S> = T & {
@@ -700,7 +699,7 @@ interface DialogOverlayProps extends DialogOverlayImplProps {
700
699
  */
701
700
  forceMount?: boolean;
702
701
  }
703
- declare const _default$116: __VLS_WithSlots$279<vue33.DefineComponent<DialogOverlayProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
702
+ declare const _default$116: __VLS_WithSlots$279<vue32.DefineComponent<DialogOverlayProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
704
703
  default?: (props: {}) => any;
705
704
  }>;
706
705
  type __VLS_WithSlots$279<T, S> = T & {
@@ -740,7 +739,7 @@ interface TeleportProps {
740
739
  //#endregion
741
740
  //#region src/Dialog/DialogPortal.vue.d.ts
742
741
  interface DialogPortalProps extends TeleportProps {}
743
- declare const _default$117: __VLS_WithSlots$278<vue33.DefineComponent<DialogPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DialogPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
742
+ declare const _default$117: __VLS_WithSlots$278<vue32.DefineComponent<DialogPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DialogPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
744
743
  default?: (props: {}) => any;
745
744
  }>;
746
745
  type __VLS_WithSlots$278<T, S> = T & {
@@ -779,15 +778,15 @@ interface DialogRootContext {
779
778
  descriptionId: string;
780
779
  }
781
780
  declare const injectDialogRootContext: <T extends DialogRootContext | null | undefined = DialogRootContext>(fallback?: T | undefined) => T extends null ? DialogRootContext | null : DialogRootContext, provideDialogRootContext: (contextValue: DialogRootContext) => DialogRootContext;
782
- declare const _default$118: __VLS_WithSlots$277<vue33.DefineComponent<DialogRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
781
+ declare const _default$118: __VLS_WithSlots$277<vue32.DefineComponent<DialogRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
783
782
  "update:open": (value: boolean) => any;
784
- }, string, vue33.PublicProps, Readonly<DialogRootProps> & Readonly<{
783
+ }, string, vue32.PublicProps, Readonly<DialogRootProps> & Readonly<{
785
784
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
786
785
  }>, {
787
- defaultOpen: boolean;
788
- open: boolean;
789
786
  modal: boolean;
790
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
787
+ open: boolean;
788
+ defaultOpen: boolean;
789
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
791
790
  default?: (props: {
792
791
  /** Current open state */
793
792
  open: boolean;
@@ -804,9 +803,9 @@ type __VLS_WithSlots$277<T, S> = T & {
804
803
  //#endregion
805
804
  //#region src/Dialog/DialogTitle.vue.d.ts
806
805
  interface DialogTitleProps extends PrimitiveProps {}
807
- declare const _default$119: __VLS_WithSlots$276<vue33.DefineComponent<DialogTitleProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
808
- as: AsTag | vue33.Component;
809
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
806
+ declare const _default$119: __VLS_WithSlots$276<vue32.DefineComponent<DialogTitleProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
807
+ as: AsTag | vue32.Component;
808
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
810
809
  default?: (props: {}) => any;
811
810
  }>;
812
811
  type __VLS_WithSlots$276<T, S> = T & {
@@ -818,9 +817,9 @@ type __VLS_WithSlots$276<T, S> = T & {
818
817
  //#endregion
819
818
  //#region src/Dialog/DialogTrigger.vue.d.ts
820
819
  interface DialogTriggerProps extends PrimitiveProps {}
821
- declare const _default$120: __VLS_WithSlots$275<vue33.DefineComponent<DialogTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {
822
- as: AsTag | vue33.Component;
823
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
820
+ declare const _default$120: __VLS_WithSlots$275<vue32.DefineComponent<DialogTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {
821
+ as: AsTag | vue32.Component;
822
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
824
823
  default?: (props: {}) => any;
825
824
  }>;
826
825
  type __VLS_WithSlots$275<T, S> = T & {
@@ -832,9 +831,9 @@ type __VLS_WithSlots$275<T, S> = T & {
832
831
  //#endregion
833
832
  //#region src/AlertDialog/AlertDialogAction.vue.d.ts
834
833
  interface AlertDialogActionProps extends DialogCloseProps {}
835
- declare const _default$5: __VLS_WithSlots$274<vue33.DefineComponent<AlertDialogActionProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AlertDialogActionProps> & Readonly<{}>, {
836
- as: AsTag | vue33.Component;
837
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
834
+ declare const _default$5: __VLS_WithSlots$274<vue32.DefineComponent<AlertDialogActionProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AlertDialogActionProps> & Readonly<{}>, {
835
+ as: AsTag | vue32.Component;
836
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
838
837
  default?: (props: {}) => any;
839
838
  }>;
840
839
  type __VLS_WithSlots$274<T, S> = T & {
@@ -846,9 +845,9 @@ type __VLS_WithSlots$274<T, S> = T & {
846
845
  //#endregion
847
846
  //#region src/AlertDialog/AlertDialogCancel.vue.d.ts
848
847
  interface AlertDialogCancelProps extends DialogCloseProps {}
849
- declare const _default$6: __VLS_WithSlots$273<vue33.DefineComponent<AlertDialogCancelProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AlertDialogCancelProps> & Readonly<{}>, {
850
- as: AsTag | vue33.Component;
851
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
848
+ declare const _default$6: __VLS_WithSlots$273<vue32.DefineComponent<AlertDialogCancelProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AlertDialogCancelProps> & Readonly<{}>, {
849
+ as: AsTag | vue32.Component;
850
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
852
851
  default?: (props: {}) => any;
853
852
  }>;
854
853
  type __VLS_WithSlots$273<T, S> = T & {
@@ -865,21 +864,21 @@ interface AlertDialogContentContext {
865
864
  declare const injectAlertDialogContentContext: <T extends AlertDialogContentContext | null | undefined = AlertDialogContentContext>(fallback?: T | undefined) => T extends null ? AlertDialogContentContext | null : AlertDialogContentContext, provideAlertDialogContentContext: (contextValue: AlertDialogContentContext) => AlertDialogContentContext;
866
865
  type AlertDialogContentEmits = DialogContentEmits;
867
866
  interface AlertDialogContentProps extends DialogContentProps {}
868
- declare const _default$7: __VLS_WithSlots$272<vue33.DefineComponent<AlertDialogContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
867
+ declare const _default$7: __VLS_WithSlots$272<vue32.DefineComponent<AlertDialogContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
869
868
  escapeKeyDown: (event: KeyboardEvent) => any;
870
869
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
871
870
  focusOutside: (event: FocusOutsideEvent) => any;
872
871
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
873
872
  openAutoFocus: (event: Event) => any;
874
873
  closeAutoFocus: (event: Event) => any;
875
- }, string, vue33.PublicProps, Readonly<AlertDialogContentProps> & Readonly<{
874
+ }, string, vue32.PublicProps, Readonly<AlertDialogContentProps> & Readonly<{
876
875
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
877
876
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
878
877
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
879
878
  onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
880
879
  onOpenAutoFocus?: ((event: Event) => any) | undefined;
881
880
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
882
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
881
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
883
882
  default?: (props: {}) => any;
884
883
  }>;
885
884
  type __VLS_WithSlots$272<T, S> = T & {
@@ -891,9 +890,9 @@ type __VLS_WithSlots$272<T, S> = T & {
891
890
  //#endregion
892
891
  //#region src/AlertDialog/AlertDialogDescription.vue.d.ts
893
892
  interface AlertDialogDescriptionProps extends DialogDescriptionProps {}
894
- declare const _default$8: __VLS_WithSlots$271<vue33.DefineComponent<AlertDialogDescriptionProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AlertDialogDescriptionProps> & Readonly<{}>, {
895
- as: AsTag | vue33.Component;
896
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
893
+ declare const _default$8: __VLS_WithSlots$271<vue32.DefineComponent<AlertDialogDescriptionProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AlertDialogDescriptionProps> & Readonly<{}>, {
894
+ as: AsTag | vue32.Component;
895
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
897
896
  default?: (props: {}) => any;
898
897
  }>;
899
898
  type __VLS_WithSlots$271<T, S> = T & {
@@ -905,7 +904,7 @@ type __VLS_WithSlots$271<T, S> = T & {
905
904
  //#endregion
906
905
  //#region src/AlertDialog/AlertDialogOverlay.vue.d.ts
907
906
  interface AlertDialogOverlayProps extends DialogOverlayProps {}
908
- declare const _default$9: __VLS_WithSlots$270<vue33.DefineComponent<AlertDialogOverlayProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AlertDialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
907
+ declare const _default$9: __VLS_WithSlots$270<vue32.DefineComponent<AlertDialogOverlayProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AlertDialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
909
908
  default?: (props: {}) => any;
910
909
  }>;
911
910
  type __VLS_WithSlots$270<T, S> = T & {
@@ -917,7 +916,7 @@ type __VLS_WithSlots$270<T, S> = T & {
917
916
  //#endregion
918
917
  //#region src/AlertDialog/AlertDialogPortal.vue.d.ts
919
918
  interface AlertDialogPortalProps extends TeleportProps {}
920
- declare const _default$10: __VLS_WithSlots$269<vue33.DefineComponent<AlertDialogPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AlertDialogPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
919
+ declare const _default$10: __VLS_WithSlots$269<vue32.DefineComponent<AlertDialogPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AlertDialogPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
921
920
  default?: (props: {}) => any;
922
921
  }>;
923
922
  type __VLS_WithSlots$269<T, S> = T & {
@@ -930,11 +929,11 @@ type __VLS_WithSlots$269<T, S> = T & {
930
929
  //#region src/AlertDialog/AlertDialogRoot.vue.d.ts
931
930
  type AlertDialogEmits = DialogRootEmits;
932
931
  interface AlertDialogProps extends Omit<DialogRootProps, 'modal'> {}
933
- declare const _default$11: __VLS_WithSlots$268<vue33.DefineComponent<AlertDialogProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
932
+ declare const _default$11: __VLS_WithSlots$268<vue32.DefineComponent<AlertDialogProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
934
933
  "update:open": (value: boolean) => any;
935
- }, string, vue33.PublicProps, Readonly<AlertDialogProps> & Readonly<{
934
+ }, string, vue32.PublicProps, Readonly<AlertDialogProps> & Readonly<{
936
935
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
937
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
936
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
938
937
  default?: (props: {
939
938
  open: boolean;
940
939
  close: () => void;
@@ -949,9 +948,9 @@ type __VLS_WithSlots$268<T, S> = T & {
949
948
  //#endregion
950
949
  //#region src/AlertDialog/AlertDialogTitle.vue.d.ts
951
950
  interface AlertDialogTitleProps extends DialogTitleProps {}
952
- declare const _default$12: __VLS_WithSlots$267<vue33.DefineComponent<AlertDialogTitleProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AlertDialogTitleProps> & Readonly<{}>, {
953
- as: AsTag | vue33.Component;
954
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
951
+ declare const _default$12: __VLS_WithSlots$267<vue32.DefineComponent<AlertDialogTitleProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AlertDialogTitleProps> & Readonly<{}>, {
952
+ as: AsTag | vue32.Component;
953
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
955
954
  default?: (props: {}) => any;
956
955
  }>;
957
956
  type __VLS_WithSlots$267<T, S> = T & {
@@ -963,9 +962,9 @@ type __VLS_WithSlots$267<T, S> = T & {
963
962
  //#endregion
964
963
  //#region src/AlertDialog/AlertDialogTrigger.vue.d.ts
965
964
  interface AlertDialogTriggerProps extends DialogTriggerProps {}
966
- declare const _default$13: __VLS_WithSlots$266<vue33.DefineComponent<AlertDialogTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AlertDialogTriggerProps> & Readonly<{}>, {
967
- as: AsTag | vue33.Component;
968
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
965
+ declare const _default$13: __VLS_WithSlots$266<vue32.DefineComponent<AlertDialogTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AlertDialogTriggerProps> & Readonly<{}>, {
966
+ as: AsTag | vue32.Component;
967
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
969
968
  default?: (props: {}) => any;
970
969
  }>;
971
970
  type __VLS_WithSlots$266<T, S> = T & {
@@ -983,9 +982,9 @@ interface AspectRatioProps extends PrimitiveProps {
983
982
  */
984
983
  ratio?: number;
985
984
  }
986
- declare const _default$14: __VLS_WithSlots$265<vue33.DefineComponent<AspectRatioProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AspectRatioProps> & Readonly<{}>, {
985
+ declare const _default$14: __VLS_WithSlots$265<vue32.DefineComponent<AspectRatioProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AspectRatioProps> & Readonly<{}>, {
987
986
  ratio: number;
988
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
987
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
989
988
  default?: (props: {
990
989
  /** Current aspect ratio (in %) */
991
990
  aspect: number;
@@ -1003,9 +1002,9 @@ interface AvatarFallbackProps extends PrimitiveProps {
1003
1002
  /** Useful for delaying rendering so it only appears for those with slower connections. */
1004
1003
  delayMs?: number;
1005
1004
  }
1006
- declare const _default$15: __VLS_WithSlots$264<vue33.DefineComponent<AvatarFallbackProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AvatarFallbackProps> & Readonly<{}>, {
1007
- as: AsTag | vue33.Component;
1008
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1005
+ declare const _default$15: __VLS_WithSlots$264<vue32.DefineComponent<AvatarFallbackProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AvatarFallbackProps> & Readonly<{}>, {
1006
+ as: AsTag | vue32.Component;
1007
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1009
1008
  default?: (props: {}) => any;
1010
1009
  }>;
1011
1010
  type __VLS_WithSlots$264<T, S> = T & {
@@ -1031,13 +1030,13 @@ interface AvatarImageProps extends PrimitiveProps {
1031
1030
  referrerPolicy?: ImgHTMLAttributes['referrerpolicy'];
1032
1031
  crossOrigin?: ImgHTMLAttributes['crossorigin'];
1033
1032
  }
1034
- declare const _default$16: __VLS_WithSlots$263<vue33.DefineComponent<AvatarImageProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
1033
+ declare const _default$16: __VLS_WithSlots$263<vue32.DefineComponent<AvatarImageProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
1035
1034
  loadingStatusChange: (value: ImageLoadingStatus) => any;
1036
- }, string, vue33.PublicProps, Readonly<AvatarImageProps> & Readonly<{
1035
+ }, string, vue32.PublicProps, Readonly<AvatarImageProps> & Readonly<{
1037
1036
  onLoadingStatusChange?: ((value: ImageLoadingStatus) => any) | undefined;
1038
1037
  }>, {
1039
- as: AsTag | vue33.Component;
1040
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1038
+ as: AsTag | vue32.Component;
1039
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1041
1040
  default?: (props: {}) => any;
1042
1041
  }>;
1043
1042
  type __VLS_WithSlots$263<T, S> = T & {
@@ -1053,9 +1052,9 @@ type AvatarRootContext = {
1053
1052
  imageLoadingStatus: Ref<ImageLoadingStatus>;
1054
1053
  };
1055
1054
  declare const injectAvatarRootContext: <T extends AvatarRootContext | null | undefined = AvatarRootContext>(fallback?: T | undefined) => T extends null ? AvatarRootContext | null : AvatarRootContext, provideAvatarRootContext: (contextValue: AvatarRootContext) => AvatarRootContext;
1056
- declare const _default$17: __VLS_WithSlots$262<vue33.DefineComponent<AvatarRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<AvatarRootProps> & Readonly<{}>, {
1057
- as: AsTag | vue33.Component;
1058
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1055
+ declare const _default$17: __VLS_WithSlots$262<vue32.DefineComponent<AvatarRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<AvatarRootProps> & Readonly<{}>, {
1056
+ as: AsTag | vue32.Component;
1057
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1059
1058
  default?: (props: {}) => any;
1060
1059
  }>;
1061
1060
  type __VLS_WithSlots$262<T, S> = T & {
@@ -1070,9 +1069,9 @@ interface CalendarCellProps extends PrimitiveProps {
1070
1069
  /** The date value for the cell */
1071
1070
  date: DateValue$1;
1072
1071
  }
1073
- declare const _default$18: __VLS_WithSlots$261<vue33.DefineComponent<CalendarCellProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarCellProps> & Readonly<{}>, {
1074
- as: AsTag | vue33.Component;
1075
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1072
+ declare const _default$18: __VLS_WithSlots$261<vue32.DefineComponent<CalendarCellProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarCellProps> & Readonly<{}>, {
1073
+ as: AsTag | vue32.Component;
1074
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1076
1075
  default?: (props: {}) => any;
1077
1076
  }>;
1078
1077
  type __VLS_WithSlots$261<T, S> = T & {
@@ -1107,9 +1106,9 @@ interface CalendarCellTriggerSlot {
1107
1106
  unavailable: boolean;
1108
1107
  }) => any;
1109
1108
  }
1110
- declare const _default$19: __VLS_WithSlots$260<vue33.DefineComponent<CalendarCellTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarCellTriggerProps> & Readonly<{}>, {
1111
- as: AsTag | vue33.Component;
1112
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, CalendarCellTriggerSlot>;
1109
+ declare const _default$19: __VLS_WithSlots$260<vue32.DefineComponent<CalendarCellTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarCellTriggerProps> & Readonly<{}>, {
1110
+ as: AsTag | vue32.Component;
1111
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, CalendarCellTriggerSlot>;
1113
1112
  type __VLS_WithSlots$260<T, S> = T & {
1114
1113
  new (): {
1115
1114
  $slots: S;
@@ -1119,9 +1118,9 @@ type __VLS_WithSlots$260<T, S> = T & {
1119
1118
  //#endregion
1120
1119
  //#region src/Calendar/CalendarGrid.vue.d.ts
1121
1120
  interface CalendarGridProps extends PrimitiveProps {}
1122
- declare const _default$20: __VLS_WithSlots$259<vue33.DefineComponent<CalendarGridProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarGridProps> & Readonly<{}>, {
1123
- as: AsTag | vue33.Component;
1124
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1121
+ declare const _default$20: __VLS_WithSlots$259<vue32.DefineComponent<CalendarGridProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarGridProps> & Readonly<{}>, {
1122
+ as: AsTag | vue32.Component;
1123
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1125
1124
  default?: (props: {}) => any;
1126
1125
  }>;
1127
1126
  type __VLS_WithSlots$259<T, S> = T & {
@@ -1133,9 +1132,9 @@ type __VLS_WithSlots$259<T, S> = T & {
1133
1132
  //#endregion
1134
1133
  //#region src/Calendar/CalendarGridBody.vue.d.ts
1135
1134
  interface CalendarGridBodyProps extends PrimitiveProps {}
1136
- declare const _default$21: __VLS_WithSlots$258<vue33.DefineComponent<CalendarGridBodyProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarGridBodyProps> & Readonly<{}>, {
1137
- as: AsTag | vue33.Component;
1138
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1135
+ declare const _default$21: __VLS_WithSlots$258<vue32.DefineComponent<CalendarGridBodyProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarGridBodyProps> & Readonly<{}>, {
1136
+ as: AsTag | vue32.Component;
1137
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1139
1138
  default?: (props: {}) => any;
1140
1139
  }>;
1141
1140
  type __VLS_WithSlots$258<T, S> = T & {
@@ -1147,9 +1146,9 @@ type __VLS_WithSlots$258<T, S> = T & {
1147
1146
  //#endregion
1148
1147
  //#region src/Calendar/CalendarGridHead.vue.d.ts
1149
1148
  interface CalendarGridHeadProps extends PrimitiveProps {}
1150
- declare const _default$22: __VLS_WithSlots$257<vue33.DefineComponent<CalendarGridHeadProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarGridHeadProps> & Readonly<{}>, {
1151
- as: AsTag | vue33.Component;
1152
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1149
+ declare const _default$22: __VLS_WithSlots$257<vue32.DefineComponent<CalendarGridHeadProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarGridHeadProps> & Readonly<{}>, {
1150
+ as: AsTag | vue32.Component;
1151
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1153
1152
  default?: (props: {}) => any;
1154
1153
  }>;
1155
1154
  type __VLS_WithSlots$257<T, S> = T & {
@@ -1161,9 +1160,9 @@ type __VLS_WithSlots$257<T, S> = T & {
1161
1160
  //#endregion
1162
1161
  //#region src/Calendar/CalendarGridRow.vue.d.ts
1163
1162
  interface CalendarGridRowProps extends PrimitiveProps {}
1164
- declare const _default$23: __VLS_WithSlots$256<vue33.DefineComponent<CalendarGridRowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarGridRowProps> & Readonly<{}>, {
1165
- as: AsTag | vue33.Component;
1166
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1163
+ declare const _default$23: __VLS_WithSlots$256<vue32.DefineComponent<CalendarGridRowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarGridRowProps> & Readonly<{}>, {
1164
+ as: AsTag | vue32.Component;
1165
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1167
1166
  default?: (props: {}) => any;
1168
1167
  }>;
1169
1168
  type __VLS_WithSlots$256<T, S> = T & {
@@ -1175,9 +1174,9 @@ type __VLS_WithSlots$256<T, S> = T & {
1175
1174
  //#endregion
1176
1175
  //#region src/Calendar/CalendarHeadCell.vue.d.ts
1177
1176
  interface CalendarHeadCellProps extends PrimitiveProps {}
1178
- declare const _default$24: __VLS_WithSlots$255<vue33.DefineComponent<CalendarHeadCellProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarHeadCellProps> & Readonly<{}>, {
1179
- as: AsTag | vue33.Component;
1180
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1177
+ declare const _default$24: __VLS_WithSlots$255<vue32.DefineComponent<CalendarHeadCellProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarHeadCellProps> & Readonly<{}>, {
1178
+ as: AsTag | vue32.Component;
1179
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1181
1180
  default?: (props: {}) => any;
1182
1181
  }>;
1183
1182
  type __VLS_WithSlots$255<T, S> = T & {
@@ -1189,9 +1188,9 @@ type __VLS_WithSlots$255<T, S> = T & {
1189
1188
  //#endregion
1190
1189
  //#region src/Calendar/CalendarHeader.vue.d.ts
1191
1190
  interface CalendarHeaderProps extends PrimitiveProps {}
1192
- declare const _default$25: __VLS_WithSlots$254<vue33.DefineComponent<CalendarHeaderProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarHeaderProps> & Readonly<{}>, {
1193
- as: AsTag | vue33.Component;
1194
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1191
+ declare const _default$25: __VLS_WithSlots$254<vue32.DefineComponent<CalendarHeaderProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarHeaderProps> & Readonly<{}>, {
1192
+ as: AsTag | vue32.Component;
1193
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1195
1194
  default?: (props: {}) => any;
1196
1195
  }>;
1197
1196
  type __VLS_WithSlots$254<T, S> = T & {
@@ -1203,9 +1202,9 @@ type __VLS_WithSlots$254<T, S> = T & {
1203
1202
  //#endregion
1204
1203
  //#region src/Calendar/CalendarHeading.vue.d.ts
1205
1204
  interface CalendarHeadingProps extends PrimitiveProps {}
1206
- declare const _default$26: __VLS_WithSlots$253<vue33.DefineComponent<CalendarHeadingProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarHeadingProps> & Readonly<{}>, {
1207
- as: AsTag | vue33.Component;
1208
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1205
+ declare const _default$26: __VLS_WithSlots$253<vue32.DefineComponent<CalendarHeadingProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarHeadingProps> & Readonly<{}>, {
1206
+ as: AsTag | vue32.Component;
1207
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1209
1208
  default?: (props: {
1210
1209
  /** Current month and year */
1211
1210
  headingValue: string;
@@ -1229,9 +1228,9 @@ interface CalendarNextSlot {
1229
1228
  disabled: boolean;
1230
1229
  }) => any;
1231
1230
  }
1232
- declare const _default$27: __VLS_WithSlots$252<vue33.DefineComponent<CalendarNextProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarNextProps> & Readonly<{}>, {
1233
- as: AsTag | vue33.Component;
1234
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, CalendarNextSlot>;
1231
+ declare const _default$27: __VLS_WithSlots$252<vue32.DefineComponent<CalendarNextProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarNextProps> & Readonly<{}>, {
1232
+ as: AsTag | vue32.Component;
1233
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, CalendarNextSlot>;
1235
1234
  type __VLS_WithSlots$252<T, S> = T & {
1236
1235
  new (): {
1237
1236
  $slots: S;
@@ -1250,9 +1249,9 @@ interface CalendarPrevSlot {
1250
1249
  disabled: boolean;
1251
1250
  }) => any;
1252
1251
  }
1253
- declare const _default$28: __VLS_WithSlots$251<vue33.DefineComponent<CalendarPrevProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CalendarPrevProps> & Readonly<{}>, {
1254
- as: AsTag | vue33.Component;
1255
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, CalendarPrevSlot>;
1252
+ declare const _default$28: __VLS_WithSlots$251<vue32.DefineComponent<CalendarPrevProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CalendarPrevProps> & Readonly<{}>, {
1253
+ as: AsTag | vue32.Component;
1254
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, CalendarPrevSlot>;
1256
1255
  type __VLS_WithSlots$251<T, S> = T & {
1257
1256
  new (): {
1258
1257
  $slots: S;
@@ -1269,7 +1268,7 @@ type CalendarRootContext = {
1269
1268
  preventDeselect: Ref<boolean>;
1270
1269
  grid: Ref<Grid<DateValue$1>[]>;
1271
1270
  weekDays: Ref<string[]>;
1272
- weekStartsOn: Ref<0 | 1 | 2 | 3 | 4 | 5 | 6>;
1271
+ weekStartsOn: Ref<WeekStartsOn>;
1273
1272
  weekdayFormat: Ref<WeekDayFormat>;
1274
1273
  fixedWeeks: Ref<boolean>;
1275
1274
  multiple: Ref<boolean>;
@@ -1296,6 +1295,10 @@ type CalendarRootContext = {
1296
1295
  disableDaysOutsideCurrentView: Ref<boolean>;
1297
1296
  minValue: Ref<DateValue$1 | undefined>;
1298
1297
  maxValue: Ref<DateValue$1 | undefined>;
1298
+ isPlaceholderFocusable: Ref<boolean>;
1299
+ firstFocusableDate: Ref<DateValue$1 | undefined>;
1300
+ hasSelectedDate: Ref<boolean>;
1301
+ isSelectedDateDisabled: Ref<boolean>;
1299
1302
  };
1300
1303
  interface CalendarRootProps extends PrimitiveProps {
1301
1304
  /** The default value for the calendar */
@@ -1309,7 +1312,7 @@ interface CalendarRootProps extends PrimitiveProps {
1309
1312
  /** Whether or not to prevent the user from deselecting a date without selecting another date first */
1310
1313
  preventDeselect?: boolean;
1311
1314
  /** The day of the week to start the calendar on */
1312
- weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
1315
+ weekStartsOn?: WeekStartsOn;
1313
1316
  /** The format to use for the weekday strings provided via the weekdays slot prop */
1314
1317
  weekdayFormat?: WeekDayFormat;
1315
1318
  /** The accessible label for the calendar */
@@ -1354,14 +1357,14 @@ type CalendarRootEmits = {
1354
1357
  'update:placeholder': [date: DateValue$1];
1355
1358
  };
1356
1359
  declare const injectCalendarRootContext: <T extends CalendarRootContext | null | undefined = CalendarRootContext>(fallback?: T | undefined) => T extends null ? CalendarRootContext | null : CalendarRootContext, provideCalendarRootContext: (contextValue: CalendarRootContext) => CalendarRootContext;
1357
- declare const _default$29: __VLS_WithSlots$250<vue33.DefineComponent<CalendarRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
1360
+ declare const _default$29: __VLS_WithSlots$250<vue32.DefineComponent<CalendarRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
1358
1361
  "update:modelValue": (date: DateValue$1 | undefined) => any;
1359
1362
  "update:placeholder": (date: DateValue$1) => any;
1360
- }, string, vue33.PublicProps, Readonly<CalendarRootProps> & Readonly<{
1363
+ }, string, vue32.PublicProps, Readonly<CalendarRootProps> & Readonly<{
1361
1364
  "onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
1362
1365
  "onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
1363
1366
  }>, {
1364
- as: AsTag | vue33.Component;
1367
+ as: AsTag | vue32.Component;
1365
1368
  placeholder: DateValue$1;
1366
1369
  disabled: boolean;
1367
1370
  defaultValue: DateValue$1;
@@ -1369,7 +1372,6 @@ declare const _default$29: __VLS_WithSlots$250<vue33.DefineComponent<CalendarRoo
1369
1372
  isDateUnavailable: Matcher;
1370
1373
  pagedNavigation: boolean;
1371
1374
  preventDeselect: boolean;
1372
- weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
1373
1375
  weekdayFormat: WeekDayFormat;
1374
1376
  fixedWeeks: boolean;
1375
1377
  numberOfMonths: number;
@@ -1377,7 +1379,7 @@ declare const _default$29: __VLS_WithSlots$250<vue33.DefineComponent<CalendarRoo
1377
1379
  isDateDisabled: Matcher;
1378
1380
  multiple: boolean;
1379
1381
  disableDaysOutsideCurrentView: boolean;
1380
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1382
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1381
1383
  default?: (props: {
1382
1384
  /** The current date of the placeholder */
1383
1385
  date: DateValue$1;
@@ -1386,7 +1388,7 @@ declare const _default$29: __VLS_WithSlots$250<vue33.DefineComponent<CalendarRoo
1386
1388
  /** The days of the week */
1387
1389
  weekDays: string[];
1388
1390
  /** The start of the week */
1389
- weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
1391
+ weekStartsOn: WeekStartsOn;
1390
1392
  /** The calendar locale */
1391
1393
  locale: string;
1392
1394
  /** Whether or not to always display 6 weeks in the calendar */
@@ -1439,22 +1441,22 @@ type RovingFocusGroupEmits = {
1439
1441
  'entryFocus': [event: Event];
1440
1442
  'update:currentTabStopId': [value: string | null | undefined];
1441
1443
  };
1442
- declare const _default$224: __VLS_WithSlots$249<vue33.DefineComponent<RovingFocusGroupProps, {
1444
+ declare const _default$224: __VLS_WithSlots$249<vue32.DefineComponent<RovingFocusGroupProps, {
1443
1445
  getItems: (includeDisabledItem?: boolean) => {
1444
1446
  ref: HTMLElement;
1445
1447
  value?: any;
1446
1448
  }[];
1447
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
1449
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
1448
1450
  entryFocus: (event: Event) => any;
1449
1451
  "update:currentTabStopId": (value: string | null | undefined) => any;
1450
- }, string, vue33.PublicProps, Readonly<RovingFocusGroupProps> & Readonly<{
1452
+ }, string, vue32.PublicProps, Readonly<RovingFocusGroupProps> & Readonly<{
1451
1453
  onEntryFocus?: ((event: Event) => any) | undefined;
1452
1454
  "onUpdate:currentTabStopId"?: ((value: string | null | undefined) => any) | undefined;
1453
1455
  }>, {
1454
1456
  orientation: Orientation$1;
1455
1457
  loop: boolean;
1456
1458
  preventScrollOnEntryFocus: boolean;
1457
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1459
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1458
1460
  default?: (props: {}) => any;
1459
1461
  }>;
1460
1462
  type __VLS_WithSlots$249<T, S> = T & {
@@ -1477,10 +1479,10 @@ interface RovingFocusItemProps extends PrimitiveProps {
1477
1479
  /** When `true`, shift + arrow key will allow focusing on next/previous item. */
1478
1480
  allowShiftKey?: boolean;
1479
1481
  }
1480
- declare const _default$225: __VLS_WithSlots$248<vue33.DefineComponent<RovingFocusItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RovingFocusItemProps> & Readonly<{}>, {
1481
- as: AsTag | vue33.Component;
1482
+ declare const _default$225: __VLS_WithSlots$248<vue32.DefineComponent<RovingFocusItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RovingFocusItemProps> & Readonly<{}>, {
1483
+ as: AsTag | vue32.Component;
1482
1484
  focusable: boolean;
1483
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1485
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1484
1486
  default?: (props: {}) => any;
1485
1487
  }>;
1486
1488
  type __VLS_WithSlots$248<T, S> = T & {
@@ -1514,14 +1516,14 @@ declare const injectCheckboxGroupRootContext: <T extends CheckboxGroupRootContex
1514
1516
  declare const _default$30: <T extends AcceptableValue = AcceptableValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$13<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1515
1517
  props: __VLS_PrettifyLocal$13<Pick<Partial<{}> & Omit<{
1516
1518
  readonly "onUpdate:modelValue"?: ((value: T[]) => any) | undefined;
1517
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onUpdate:modelValue"> & CheckboxGroupRootProps<T> & Partial<{}>> & vue33.PublicProps;
1518
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
1519
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onUpdate:modelValue"> & CheckboxGroupRootProps<T> & Partial<{}>> & vue32.PublicProps;
1520
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
1519
1521
  attrs: any;
1520
1522
  slots: {
1521
1523
  default?: (props: {}) => any;
1522
1524
  };
1523
1525
  emit: (evt: "update:modelValue", value: T[]) => void;
1524
- }>) => vue33.VNode & {
1526
+ }>) => vue32.VNode & {
1525
1527
  __ctx?: Awaited<typeof __VLS_setup>;
1526
1528
  };
1527
1529
  type __VLS_PrettifyLocal$13<T> = { [K in keyof T]: T[K] } & {};
@@ -1535,9 +1537,9 @@ interface CheckboxIndicatorProps extends PrimitiveProps {
1535
1537
  */
1536
1538
  forceMount?: boolean;
1537
1539
  }
1538
- declare const _default$31: __VLS_WithSlots$247<vue33.DefineComponent<CheckboxIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<CheckboxIndicatorProps> & Readonly<{}>, {
1539
- as: AsTag | vue33.Component;
1540
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1540
+ declare const _default$31: __VLS_WithSlots$247<vue32.DefineComponent<CheckboxIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<CheckboxIndicatorProps> & Readonly<{}>, {
1541
+ as: AsTag | vue32.Component;
1542
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1541
1543
  default?: (props: {}) => any;
1542
1544
  }>;
1543
1545
  type __VLS_WithSlots$247<T, S> = T & {
@@ -1575,15 +1577,15 @@ interface CheckboxRootContext {
1575
1577
  state: Ref<CheckedState>;
1576
1578
  }
1577
1579
  declare const injectCheckboxRootContext: <T extends CheckboxRootContext | null | undefined = CheckboxRootContext>(fallback?: T | undefined) => T extends null ? CheckboxRootContext | null : CheckboxRootContext, provideCheckboxRootContext: (contextValue: CheckboxRootContext) => CheckboxRootContext;
1578
- declare const _default$32: __VLS_WithSlots$246<vue33.DefineComponent<CheckboxRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
1580
+ declare const _default$32: __VLS_WithSlots$246<vue32.DefineComponent<CheckboxRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
1579
1581
  "update:modelValue": (value: boolean | "indeterminate") => any;
1580
- }, string, vue33.PublicProps, Readonly<CheckboxRootProps> & Readonly<{
1582
+ }, string, vue32.PublicProps, Readonly<CheckboxRootProps> & Readonly<{
1581
1583
  "onUpdate:modelValue"?: ((value: boolean | "indeterminate") => any) | undefined;
1582
1584
  }>, {
1583
- as: AsTag | vue33.Component;
1585
+ as: AsTag | vue32.Component;
1584
1586
  value: AcceptableValue;
1585
1587
  modelValue: boolean | "indeterminate" | null;
1586
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1588
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1587
1589
  default?: (props: {
1588
1590
  /** Current value */
1589
1591
  modelValue: CheckedState;
@@ -1769,7 +1771,7 @@ interface PopperContentProps extends PrimitiveProps {
1769
1771
  //#endregion
1770
1772
  //#region src/Combobox/ComboboxAnchor.vue.d.ts
1771
1773
  interface ComboboxAnchorProps extends PopperAnchorProps {}
1772
- declare const _default$36: __VLS_WithSlots$245<vue33.DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1774
+ declare const _default$36: __VLS_WithSlots$245<vue32.DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1773
1775
  default?: (props: {}) => any;
1774
1776
  }>;
1775
1777
  type __VLS_WithSlots$245<T, S> = T & {
@@ -1781,11 +1783,11 @@ type __VLS_WithSlots$245<T, S> = T & {
1781
1783
  //#endregion
1782
1784
  //#region src/Combobox/ComboboxArrow.vue.d.ts
1783
1785
  interface ComboboxArrowProps extends PopperArrowProps {}
1784
- declare const _default$37: __VLS_WithSlots$244<vue33.DefineComponent<ComboboxArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxArrowProps> & Readonly<{}>, {
1785
- as: AsTag | vue33.Component;
1786
+ declare const _default$37: __VLS_WithSlots$244<vue32.DefineComponent<ComboboxArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxArrowProps> & Readonly<{}>, {
1787
+ as: AsTag | vue32.Component;
1786
1788
  width: number;
1787
1789
  height: number;
1788
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1790
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1789
1791
  default?: (props: {}) => any;
1790
1792
  }>;
1791
1793
  type __VLS_WithSlots$244<T, S> = T & {
@@ -1797,9 +1799,9 @@ type __VLS_WithSlots$244<T, S> = T & {
1797
1799
  //#endregion
1798
1800
  //#region src/Combobox/ComboboxCancel.vue.d.ts
1799
1801
  interface ComboboxCancelProps extends PrimitiveProps {}
1800
- declare const _default$38: __VLS_WithSlots$243<vue33.DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {
1801
- as: AsTag | vue33.Component;
1802
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1802
+ declare const _default$38: __VLS_WithSlots$243<vue32.DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {
1803
+ as: AsTag | vue32.Component;
1804
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1803
1805
  default?: (props: {}) => any;
1804
1806
  }>;
1805
1807
  type __VLS_WithSlots$243<T, S> = T & {
@@ -1831,17 +1833,17 @@ interface ComboboxContentProps extends ComboboxContentImplProps {
1831
1833
  */
1832
1834
  forceMount?: boolean;
1833
1835
  }
1834
- declare const _default$39: __VLS_WithSlots$242<vue33.DefineComponent<ComboboxContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
1836
+ declare const _default$39: __VLS_WithSlots$242<vue32.DefineComponent<ComboboxContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
1835
1837
  escapeKeyDown: (event: KeyboardEvent) => any;
1836
1838
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
1837
1839
  focusOutside: (event: FocusOutsideEvent) => any;
1838
1840
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
1839
- }, string, vue33.PublicProps, Readonly<ComboboxContentProps> & Readonly<{
1841
+ }, string, vue32.PublicProps, Readonly<ComboboxContentProps> & Readonly<{
1840
1842
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
1841
1843
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
1842
1844
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
1843
1845
  onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
1844
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1846
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1845
1847
  default?: (props: {}) => any;
1846
1848
  }>;
1847
1849
  type __VLS_WithSlots$242<T, S> = T & {
@@ -1853,7 +1855,7 @@ type __VLS_WithSlots$242<T, S> = T & {
1853
1855
  //#endregion
1854
1856
  //#region src/Combobox/ComboboxEmpty.vue.d.ts
1855
1857
  interface ComboboxEmptyProps extends PrimitiveProps {}
1856
- declare const _default$40: __VLS_WithSlots$241<vue33.DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1858
+ declare const _default$40: __VLS_WithSlots$241<vue32.DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1857
1859
  default?: (props: {}) => any;
1858
1860
  }>;
1859
1861
  type __VLS_WithSlots$241<T, S> = T & {
@@ -1865,7 +1867,7 @@ type __VLS_WithSlots$241<T, S> = T & {
1865
1867
  //#endregion
1866
1868
  //#region src/Listbox/ListboxContent.vue.d.ts
1867
1869
  interface ListboxContentProps extends PrimitiveProps {}
1868
- declare const _default$151: __VLS_WithSlots$240<vue33.DefineComponent<ListboxContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ListboxContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1870
+ declare const _default$151: __VLS_WithSlots$240<vue32.DefineComponent<ListboxContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ListboxContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1869
1871
  default?: (props: {}) => any;
1870
1872
  }>;
1871
1873
  type __VLS_WithSlots$240<T, S> = T & {
@@ -1887,13 +1889,13 @@ interface ListboxFilterProps extends PrimitiveProps {
1887
1889
  type ListboxFilterEmits = {
1888
1890
  'update:modelValue': [string];
1889
1891
  };
1890
- declare const _default$152: __VLS_WithSlots$239<vue33.DefineComponent<ListboxFilterProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
1892
+ declare const _default$152: __VLS_WithSlots$239<vue32.DefineComponent<ListboxFilterProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
1891
1893
  "update:modelValue": (args_0: string) => any;
1892
- }, string, vue33.PublicProps, Readonly<ListboxFilterProps> & Readonly<{
1894
+ }, string, vue32.PublicProps, Readonly<ListboxFilterProps> & Readonly<{
1893
1895
  "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
1894
1896
  }>, {
1895
- as: AsTag | vue33.Component;
1896
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1897
+ as: AsTag | vue32.Component;
1898
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1897
1899
  default?: (props: {
1898
1900
  /** Current input values */
1899
1901
  modelValue: string | undefined;
@@ -1912,7 +1914,7 @@ interface ListboxGroupContext {
1912
1914
  id: string;
1913
1915
  }
1914
1916
  declare const injectListboxGroupContext: <T extends ListboxGroupContext | null | undefined = ListboxGroupContext>(fallback?: T | undefined) => T extends null ? ListboxGroupContext | null : ListboxGroupContext, provideListboxGroupContext: (contextValue: ListboxGroupContext) => ListboxGroupContext;
1915
- declare const _default$153: __VLS_WithSlots$238<vue33.DefineComponent<ListboxGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ListboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1917
+ declare const _default$153: __VLS_WithSlots$238<vue32.DefineComponent<ListboxGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ListboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1916
1918
  default?: (props: {}) => any;
1917
1919
  }>;
1918
1920
  type __VLS_WithSlots$238<T, S> = T & {
@@ -1926,9 +1928,9 @@ type __VLS_WithSlots$238<T, S> = T & {
1926
1928
  interface ListboxGroupLabelProps extends PrimitiveProps {
1927
1929
  for?: string;
1928
1930
  }
1929
- declare const _default$154: __VLS_WithSlots$237<vue33.DefineComponent<ListboxGroupLabelProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ListboxGroupLabelProps> & Readonly<{}>, {
1930
- as: AsTag | vue33.Component;
1931
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1931
+ declare const _default$154: __VLS_WithSlots$237<vue32.DefineComponent<ListboxGroupLabelProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ListboxGroupLabelProps> & Readonly<{}>, {
1932
+ as: AsTag | vue32.Component;
1933
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1932
1934
  default?: (props: {}) => any;
1933
1935
  }>;
1934
1936
  type __VLS_WithSlots$237<T, S> = T & {
@@ -1960,14 +1962,14 @@ declare const injectListboxItemContext: <T extends ListboxItemContext | null | u
1960
1962
  declare const _default$155: <T extends AcceptableValue = AcceptableValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$12<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1961
1963
  props: __VLS_PrettifyLocal$12<Pick<Partial<{}> & Omit<{
1962
1964
  readonly onSelect?: ((event: SelectEvent<T>) => any) | undefined;
1963
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onSelect"> & ListboxItemProps<T> & Partial<{}>> & vue33.PublicProps;
1964
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
1965
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onSelect"> & ListboxItemProps<T> & Partial<{}>> & vue32.PublicProps;
1966
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
1965
1967
  attrs: any;
1966
1968
  slots: {
1967
1969
  default?: (props: {}) => any;
1968
1970
  };
1969
1971
  emit: (evt: "select", event: SelectEvent<T>) => void;
1970
- }>) => vue33.VNode & {
1972
+ }>) => vue32.VNode & {
1971
1973
  __ctx?: Awaited<typeof __VLS_setup>;
1972
1974
  };
1973
1975
  type __VLS_PrettifyLocal$12<T> = { [K in keyof T]: T[K] } & {};
@@ -1975,9 +1977,9 @@ type __VLS_PrettifyLocal$12<T> = { [K in keyof T]: T[K] } & {};
1975
1977
  //#endregion
1976
1978
  //#region src/Listbox/ListboxItemIndicator.vue.d.ts
1977
1979
  interface ListboxItemIndicatorProps extends PrimitiveProps {}
1978
- declare const _default$156: __VLS_WithSlots$236<vue33.DefineComponent<ListboxItemIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ListboxItemIndicatorProps> & Readonly<{}>, {
1979
- as: AsTag | vue33.Component;
1980
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
1980
+ declare const _default$156: __VLS_WithSlots$236<vue32.DefineComponent<ListboxItemIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ListboxItemIndicatorProps> & Readonly<{}>, {
1981
+ as: AsTag | vue32.Component;
1982
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
1981
1983
  default?: (props: {}) => any;
1982
1984
  }>;
1983
1985
  type __VLS_WithSlots$236<T, S> = T & {
@@ -2061,8 +2063,8 @@ declare const _default$157: <T extends AcceptableValue = AcceptableValue>(__VLS_
2061
2063
  value: AcceptableValue;
2062
2064
  } | undefined) => any) | undefined;
2063
2065
  readonly onLeave?: ((event: Event) => any) | undefined;
2064
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onUpdate:modelValue" | "onEntryFocus" | "onHighlight" | "onLeave"> & ListboxRootProps<AcceptableValue> & Partial<{}>> & vue33.PublicProps;
2065
- expose(exposed: vue33.ShallowUnwrapRef<{
2066
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onUpdate:modelValue" | "onEntryFocus" | "onHighlight" | "onLeave"> & ListboxRootProps<AcceptableValue> & Partial<{}>> & vue32.PublicProps;
2067
+ expose(exposed: vue32.ShallowUnwrapRef<{
2066
2068
  highlightedElement: Ref<HTMLElement | null, HTMLElement | null>;
2067
2069
  highlightItem: (value: T) => void;
2068
2070
  highlightFirstItem: () => void;
@@ -2085,7 +2087,7 @@ declare const _default$157: <T extends AcceptableValue = AcceptableValue>(__VLS_
2085
2087
  ref: HTMLElement;
2086
2088
  value: AcceptableValue;
2087
2089
  } | undefined) => void) & ((evt: "leave", event: Event) => void);
2088
- }>) => vue33.VNode & {
2090
+ }>) => vue32.VNode & {
2089
2091
  __ctx?: Awaited<typeof __VLS_setup>;
2090
2092
  };
2091
2093
  type __VLS_PrettifyLocal$11<T> = { [K in keyof T]: T[K] } & {};
@@ -2103,8 +2105,8 @@ interface ListboxVirtualizerProps<T extends AcceptableValue = AcceptableValue> {
2103
2105
  textContent?: (option: T) => string;
2104
2106
  }
2105
2107
  declare const _default$158: <T extends AcceptableValue = AcceptableValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$10<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2106
- props: __VLS_PrettifyLocal$10<Pick<Partial<{}> & Omit<{} & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, never> & ListboxVirtualizerProps<T> & Partial<{}>> & vue33.PublicProps;
2107
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
2108
+ props: __VLS_PrettifyLocal$10<Pick<Partial<{}> & Omit<{} & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, never> & ListboxVirtualizerProps<T> & Partial<{}>> & vue32.PublicProps;
2109
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
2108
2110
  attrs: any;
2109
2111
  slots: {
2110
2112
  default?: (props: {
@@ -2114,7 +2116,7 @@ declare const _default$158: <T extends AcceptableValue = AcceptableValue>(__VLS_
2114
2116
  }) => any;
2115
2117
  };
2116
2118
  emit: {};
2117
- }>) => vue33.VNode & {
2119
+ }>) => vue32.VNode & {
2118
2120
  __ctx?: Awaited<typeof __VLS_setup>;
2119
2121
  };
2120
2122
  type __VLS_PrettifyLocal$10<T> = { [K in keyof T]: T[K] } & {};
@@ -2127,7 +2129,7 @@ type ComboboxGroupContext = {
2127
2129
  labelId: string;
2128
2130
  };
2129
2131
  declare const injectComboboxGroupContext: <T extends ComboboxGroupContext | null | undefined = ComboboxGroupContext>(fallback?: T | undefined) => T extends null ? ComboboxGroupContext | null : ComboboxGroupContext, provideComboboxGroupContext: (contextValue: ComboboxGroupContext) => ComboboxGroupContext;
2130
- declare const _default$41: __VLS_WithSlots$235<vue33.DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2132
+ declare const _default$41: __VLS_WithSlots$235<vue32.DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2131
2133
  default?: (props: {}) => any;
2132
2134
  }>;
2133
2135
  type __VLS_WithSlots$235<T, S> = T & {
@@ -2143,13 +2145,13 @@ interface ComboboxInputProps extends ListboxFilterProps {
2143
2145
  /** The display value of input for selected item. Does not work with `multiple`. */
2144
2146
  displayValue?: (val: any) => string;
2145
2147
  }
2146
- declare const _default$42: __VLS_WithSlots$234<vue33.DefineComponent<ComboboxInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2148
+ declare const _default$42: __VLS_WithSlots$234<vue32.DefineComponent<ComboboxInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2147
2149
  "update:modelValue": (args_0: string) => any;
2148
- }, string, vue33.PublicProps, Readonly<ComboboxInputProps> & Readonly<{
2150
+ }, string, vue32.PublicProps, Readonly<ComboboxInputProps> & Readonly<{
2149
2151
  "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
2150
2152
  }>, {
2151
- as: AsTag | vue33.Component;
2152
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2153
+ as: AsTag | vue32.Component;
2154
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2153
2155
  default?: (props: {}) => any;
2154
2156
  }>;
2155
2157
  type __VLS_WithSlots$234<T, S> = T & {
@@ -2172,14 +2174,14 @@ interface ComboboxItemProps<T = AcceptableValue> extends ListboxItemProps<T> {
2172
2174
  declare const _default$43: <T extends AcceptableValue = AcceptableValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$9<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2173
2175
  props: __VLS_PrettifyLocal$9<Pick<Partial<{}> & Omit<{
2174
2176
  readonly onSelect?: ((event: SelectEvent<T>) => any) | undefined;
2175
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onSelect"> & ComboboxItemProps<T> & Partial<{}>> & vue33.PublicProps;
2176
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
2177
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onSelect"> & ComboboxItemProps<T> & Partial<{}>> & vue32.PublicProps;
2178
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
2177
2179
  attrs: any;
2178
2180
  slots: {
2179
2181
  default?: (props: {}) => any;
2180
2182
  };
2181
2183
  emit: (evt: "select", event: SelectEvent<T>) => void;
2182
- }>) => vue33.VNode & {
2184
+ }>) => vue32.VNode & {
2183
2185
  __ctx?: Awaited<typeof __VLS_setup>;
2184
2186
  };
2185
2187
  type __VLS_PrettifyLocal$9<T> = { [K in keyof T]: T[K] } & {};
@@ -2187,9 +2189,9 @@ type __VLS_PrettifyLocal$9<T> = { [K in keyof T]: T[K] } & {};
2187
2189
  //#endregion
2188
2190
  //#region src/Combobox/ComboboxItemIndicator.vue.d.ts
2189
2191
  interface ComboboxItemIndicatorProps extends ListboxItemIndicatorProps {}
2190
- declare const _default$44: __VLS_WithSlots$233<vue33.DefineComponent<ComboboxItemIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxItemIndicatorProps> & Readonly<{}>, {
2191
- as: AsTag | vue33.Component;
2192
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2192
+ declare const _default$44: __VLS_WithSlots$233<vue32.DefineComponent<ComboboxItemIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxItemIndicatorProps> & Readonly<{}>, {
2193
+ as: AsTag | vue32.Component;
2194
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2193
2195
  default?: (props: {}) => any;
2194
2196
  }>;
2195
2197
  type __VLS_WithSlots$233<T, S> = T & {
@@ -2203,9 +2205,9 @@ type __VLS_WithSlots$233<T, S> = T & {
2203
2205
  interface ComboboxLabelProps extends PrimitiveProps {
2204
2206
  for?: string;
2205
2207
  }
2206
- declare const _default$45: __VLS_WithSlots$232<vue33.DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {
2207
- as: AsTag | vue33.Component;
2208
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2208
+ declare const _default$45: __VLS_WithSlots$232<vue32.DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {
2209
+ as: AsTag | vue32.Component;
2210
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2209
2211
  default?: (props: {}) => any;
2210
2212
  }>;
2211
2213
  type __VLS_WithSlots$232<T, S> = T & {
@@ -2217,7 +2219,7 @@ type __VLS_WithSlots$232<T, S> = T & {
2217
2219
  //#endregion
2218
2220
  //#region src/Combobox/ComboboxPortal.vue.d.ts
2219
2221
  interface ComboboxPortalProps extends TeleportProps {}
2220
- declare const _default$46: __VLS_WithSlots$231<vue33.DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2222
+ declare const _default$46: __VLS_WithSlots$231<vue32.DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2221
2223
  default?: (props: {}) => any;
2222
2224
  }>;
2223
2225
  type __VLS_WithSlots$231<T, S> = T & {
@@ -2312,8 +2314,8 @@ declare const _default$47: <T extends AcceptableValue = AcceptableValue>(__VLS_p
2312
2314
  ref: HTMLElement;
2313
2315
  value: T;
2314
2316
  } | undefined) => any) | undefined;
2315
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onUpdate:open" | "onUpdate:modelValue" | "onHighlight"> & ComboboxRootProps<T> & Partial<{}>> & vue33.PublicProps;
2316
- expose(exposed: vue33.ShallowUnwrapRef<{
2317
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onUpdate:open" | "onUpdate:modelValue" | "onHighlight"> & ComboboxRootProps<T> & Partial<{}>> & vue32.PublicProps;
2318
+ expose(exposed: vue32.ShallowUnwrapRef<{
2317
2319
  filtered: ComputedRef<{
2318
2320
  count: number;
2319
2321
  items: Map<string, number>;
@@ -2337,7 +2339,7 @@ declare const _default$47: <T extends AcceptableValue = AcceptableValue>(__VLS_p
2337
2339
  ref: HTMLElement;
2338
2340
  value: T;
2339
2341
  } | undefined) => void);
2340
- }>) => vue33.VNode & {
2342
+ }>) => vue32.VNode & {
2341
2343
  __ctx?: Awaited<typeof __VLS_setup>;
2342
2344
  };
2343
2345
  type __VLS_PrettifyLocal$8<T> = { [K in keyof T]: T[K] } & {};
@@ -2345,7 +2347,7 @@ type __VLS_PrettifyLocal$8<T> = { [K in keyof T]: T[K] } & {};
2345
2347
  //#endregion
2346
2348
  //#region src/Combobox/ComboboxSeparator.vue.d.ts
2347
2349
  interface ComboboxSeparatorProps extends PrimitiveProps {}
2348
- declare const _default$48: __VLS_WithSlots$230<vue33.DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2350
+ declare const _default$48: __VLS_WithSlots$230<vue32.DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2349
2351
  default?: (props: {}) => any;
2350
2352
  }>;
2351
2353
  type __VLS_WithSlots$230<T, S> = T & {
@@ -2360,9 +2362,9 @@ interface ComboboxTriggerProps extends PrimitiveProps {
2360
2362
  /** When `true`, prevents the user from interacting with item */
2361
2363
  disabled?: boolean;
2362
2364
  }
2363
- declare const _default$49: __VLS_WithSlots$229<vue33.DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {
2364
- as: AsTag | vue33.Component;
2365
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2365
+ declare const _default$49: __VLS_WithSlots$229<vue32.DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {
2366
+ as: AsTag | vue32.Component;
2367
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2366
2368
  default?: (props: {}) => any;
2367
2369
  }>;
2368
2370
  type __VLS_WithSlots$229<T, S> = T & {
@@ -2379,7 +2381,7 @@ interface ComboboxViewportProps extends PrimitiveProps {
2379
2381
  */
2380
2382
  nonce?: string;
2381
2383
  }
2382
- declare const _default$50: __VLS_WithSlots$228<vue33.DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2384
+ declare const _default$50: __VLS_WithSlots$228<vue32.DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2383
2385
  default?: (props: {}) => any;
2384
2386
  }>;
2385
2387
  type __VLS_WithSlots$228<T, S> = T & {
@@ -2392,8 +2394,8 @@ type __VLS_WithSlots$228<T, S> = T & {
2392
2394
  //#region src/Combobox/ComboboxVirtualizer.vue.d.ts
2393
2395
  interface ComboboxVirtualizerProps<T extends AcceptableValue = AcceptableValue> extends ListboxVirtualizerProps<T> {}
2394
2396
  declare const _default$51: <T extends AcceptableValue = AcceptableValue>(__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<{
2395
- props: __VLS_PrettifyLocal$7<Pick<Partial<{}> & Omit<{} & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, never> & ComboboxVirtualizerProps<T> & Partial<{}>> & vue33.PublicProps;
2396
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
2397
+ props: __VLS_PrettifyLocal$7<Pick<Partial<{}> & Omit<{} & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, never> & ComboboxVirtualizerProps<T> & Partial<{}>> & vue32.PublicProps;
2398
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
2397
2399
  attrs: any;
2398
2400
  slots: {
2399
2401
  default?: (props: {
@@ -2403,7 +2405,7 @@ declare const _default$51: <T extends AcceptableValue = AcceptableValue>(__VLS_p
2403
2405
  }) => any;
2404
2406
  };
2405
2407
  emit: {};
2406
- }>) => vue33.VNode & {
2408
+ }>) => vue32.VNode & {
2407
2409
  __ctx?: Awaited<typeof __VLS_setup>;
2408
2410
  };
2409
2411
  type __VLS_PrettifyLocal$7<T> = { [K in keyof T]: T[K] } & {};
@@ -2444,13 +2446,13 @@ interface ConfigProviderProps {
2444
2446
  */
2445
2447
  useId?: () => string;
2446
2448
  }
2447
- declare const _default$52: __VLS_WithSlots$227<vue33.DefineComponent<ConfigProviderProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ConfigProviderProps> & Readonly<{}>, {
2449
+ declare const _default$52: __VLS_WithSlots$227<vue32.DefineComponent<ConfigProviderProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ConfigProviderProps> & Readonly<{}>, {
2448
2450
  useId: () => string;
2449
2451
  dir: Direction;
2450
2452
  nonce: string;
2451
2453
  locale: string;
2452
2454
  scrollBody: boolean | ScrollBodyOption;
2453
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2455
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2454
2456
  default?: (props: {}) => any;
2455
2457
  }>;
2456
2458
  type __VLS_WithSlots$227<T, S> = T & {
@@ -2458,6 +2460,7 @@ type __VLS_WithSlots$227<T, S> = T & {
2458
2460
  $slots: S;
2459
2461
  };
2460
2462
  };
2463
+ //# sourceMappingURL=ConfigProvider.vue.d.ts.map
2461
2464
  //#endregion
2462
2465
  //#region src/Menu/MenuArrow.vue.d.ts
2463
2466
  interface MenuArrowProps extends PopperArrowProps {}
@@ -2524,16 +2527,16 @@ interface FocusScopeProps extends PrimitiveProps {
2524
2527
  */
2525
2528
  trapped?: boolean;
2526
2529
  }
2527
- declare const _default$144: __VLS_WithSlots$226<vue33.DefineComponent<FocusScopeProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2530
+ declare const _default$144: __VLS_WithSlots$226<vue32.DefineComponent<FocusScopeProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2528
2531
  mountAutoFocus: (event: Event) => any;
2529
2532
  unmountAutoFocus: (event: Event) => any;
2530
- }, string, vue33.PublicProps, Readonly<FocusScopeProps> & Readonly<{
2533
+ }, string, vue32.PublicProps, Readonly<FocusScopeProps> & Readonly<{
2531
2534
  onMountAutoFocus?: ((event: Event) => any) | undefined;
2532
2535
  onUnmountAutoFocus?: ((event: Event) => any) | undefined;
2533
2536
  }>, {
2534
2537
  loop: boolean;
2535
2538
  trapped: boolean;
2536
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2539
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2537
2540
  default?: (props: {}) => any;
2538
2541
  }>;
2539
2542
  type __VLS_WithSlots$226<T, S> = T & {
@@ -2673,11 +2676,11 @@ interface MenuSubTriggerProps extends MenuItemImplProps {}
2673
2676
  //#endregion
2674
2677
  //#region src/ContextMenu/ContextMenuArrow.vue.d.ts
2675
2678
  interface ContextMenuArrowProps extends MenuArrowProps {}
2676
- declare const _default$53: __VLS_WithSlots$225<vue33.DefineComponent<ContextMenuArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ContextMenuArrowProps> & Readonly<{}>, {
2677
- as: AsTag | vue33.Component;
2679
+ declare const _default$53: __VLS_WithSlots$225<vue32.DefineComponent<ContextMenuArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ContextMenuArrowProps> & Readonly<{}>, {
2680
+ as: AsTag | vue32.Component;
2678
2681
  width: number;
2679
2682
  height: number;
2680
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2683
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2681
2684
  default?: (props: {}) => any;
2682
2685
  }>;
2683
2686
  type __VLS_WithSlots$225<T, S> = T & {
@@ -2690,13 +2693,13 @@ type __VLS_WithSlots$225<T, S> = T & {
2690
2693
  //#region src/ContextMenu/ContextMenuCheckboxItem.vue.d.ts
2691
2694
  type ContextMenuCheckboxItemEmits = MenuCheckboxItemEmits;
2692
2695
  interface ContextMenuCheckboxItemProps extends MenuCheckboxItemProps {}
2693
- declare const _default$54: __VLS_WithSlots$224<vue33.DefineComponent<ContextMenuCheckboxItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2696
+ declare const _default$54: __VLS_WithSlots$224<vue32.DefineComponent<ContextMenuCheckboxItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2694
2697
  select: (event: Event) => any;
2695
2698
  "update:modelValue": (payload: boolean) => any;
2696
- }, string, vue33.PublicProps, Readonly<ContextMenuCheckboxItemProps> & Readonly<{
2699
+ }, string, vue32.PublicProps, Readonly<ContextMenuCheckboxItemProps> & Readonly<{
2697
2700
  onSelect?: ((event: Event) => any) | undefined;
2698
2701
  "onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
2699
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2702
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2700
2703
  default?: (props: {}) => any;
2701
2704
  }>;
2702
2705
  type __VLS_WithSlots$224<T, S> = T & {
@@ -2709,13 +2712,13 @@ type __VLS_WithSlots$224<T, S> = T & {
2709
2712
  //#region src/ContextMenu/ContextMenuContent.vue.d.ts
2710
2713
  type ContextMenuContentEmits = MenuContentEmits;
2711
2714
  interface ContextMenuContentProps extends Omit<MenuContentProps, 'side' | 'sideOffset' | 'align' | 'arrowPadding' | 'updatePositionStrategy'> {}
2712
- declare const _default$55: __VLS_WithSlots$223<vue33.DefineComponent<ContextMenuContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2715
+ declare const _default$55: __VLS_WithSlots$223<vue32.DefineComponent<ContextMenuContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2713
2716
  escapeKeyDown: (event: KeyboardEvent) => any;
2714
2717
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
2715
2718
  focusOutside: (event: FocusOutsideEvent) => any;
2716
2719
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
2717
2720
  closeAutoFocus: (event: Event) => any;
2718
- }, string, vue33.PublicProps, Readonly<ContextMenuContentProps> & Readonly<{
2721
+ }, string, vue32.PublicProps, Readonly<ContextMenuContentProps> & Readonly<{
2719
2722
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
2720
2723
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
2721
2724
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
@@ -2728,7 +2731,7 @@ declare const _default$55: __VLS_WithSlots$223<vue33.DefineComponent<ContextMenu
2728
2731
  collisionPadding: number | Partial<Record<Side, number>>;
2729
2732
  sticky: "partial" | "always";
2730
2733
  hideWhenDetached: boolean;
2731
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2734
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2732
2735
  default?: (props: {}) => any;
2733
2736
  }>;
2734
2737
  type __VLS_WithSlots$223<T, S> = T & {
@@ -2740,7 +2743,7 @@ type __VLS_WithSlots$223<T, S> = T & {
2740
2743
  //#endregion
2741
2744
  //#region src/ContextMenu/ContextMenuGroup.vue.d.ts
2742
2745
  interface ContextMenuGroupProps extends MenuGroupProps {}
2743
- declare const _default$56: __VLS_WithSlots$222<vue33.DefineComponent<ContextMenuGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ContextMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2746
+ declare const _default$56: __VLS_WithSlots$222<vue32.DefineComponent<ContextMenuGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ContextMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2744
2747
  default?: (props: {}) => any;
2745
2748
  }>;
2746
2749
  type __VLS_WithSlots$222<T, S> = T & {
@@ -2753,11 +2756,11 @@ type __VLS_WithSlots$222<T, S> = T & {
2753
2756
  //#region src/ContextMenu/ContextMenuItem.vue.d.ts
2754
2757
  type ContextMenuItemEmits = MenuItemEmits;
2755
2758
  interface ContextMenuItemProps extends MenuItemProps {}
2756
- declare const _default$57: __VLS_WithSlots$221<vue33.DefineComponent<MenuItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2759
+ declare const _default$57: __VLS_WithSlots$221<vue32.DefineComponent<MenuItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2757
2760
  select: (event: Event) => any;
2758
- }, string, vue33.PublicProps, Readonly<MenuItemProps> & Readonly<{
2761
+ }, string, vue32.PublicProps, Readonly<MenuItemProps> & Readonly<{
2759
2762
  onSelect?: ((event: Event) => any) | undefined;
2760
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2763
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2761
2764
  default?: (props: {}) => any;
2762
2765
  }>;
2763
2766
  type __VLS_WithSlots$221<T, S> = T & {
@@ -2769,7 +2772,7 @@ type __VLS_WithSlots$221<T, S> = T & {
2769
2772
  //#endregion
2770
2773
  //#region src/ContextMenu/ContextMenuItemIndicator.vue.d.ts
2771
2774
  interface ContextMenuItemIndicatorProps extends MenuItemIndicatorProps {}
2772
- declare const _default$58: __VLS_WithSlots$220<vue33.DefineComponent<ContextMenuItemIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ContextMenuItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2775
+ declare const _default$58: __VLS_WithSlots$220<vue32.DefineComponent<ContextMenuItemIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ContextMenuItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2773
2776
  default?: (props: {}) => any;
2774
2777
  }>;
2775
2778
  type __VLS_WithSlots$220<T, S> = T & {
@@ -2781,7 +2784,7 @@ type __VLS_WithSlots$220<T, S> = T & {
2781
2784
  //#endregion
2782
2785
  //#region src/ContextMenu/ContextMenuLabel.vue.d.ts
2783
2786
  interface ContextMenuLabelProps extends MenuLabelProps {}
2784
- declare const _default$59: __VLS_WithSlots$219<vue33.DefineComponent<ContextMenuLabelProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ContextMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2787
+ declare const _default$59: __VLS_WithSlots$219<vue32.DefineComponent<ContextMenuLabelProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ContextMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2785
2788
  default?: (props: {}) => any;
2786
2789
  }>;
2787
2790
  type __VLS_WithSlots$219<T, S> = T & {
@@ -2797,7 +2800,7 @@ declare var __VLS_6: {};
2797
2800
  type __VLS_Slots = {} & {
2798
2801
  default?: (props: typeof __VLS_6) => any;
2799
2802
  };
2800
- declare const __VLS_component: vue33.DefineComponent<ContextMenuPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ContextMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>;
2803
+ declare const __VLS_component: vue32.DefineComponent<ContextMenuPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ContextMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>;
2801
2804
  declare const _default$60: __VLS_WithSlots$218<typeof __VLS_component, __VLS_Slots>;
2802
2805
  type __VLS_WithSlots$218<T, S> = T & {
2803
2806
  new (): {
@@ -2809,11 +2812,11 @@ type __VLS_WithSlots$218<T, S> = T & {
2809
2812
  //#region src/ContextMenu/ContextMenuRadioGroup.vue.d.ts
2810
2813
  type ContextMenuRadioGroupEmits = MenuRadioGroupEmits;
2811
2814
  interface ContextMenuRadioGroupProps extends MenuRadioGroupProps {}
2812
- declare const _default$61: __VLS_WithSlots$217<vue33.DefineComponent<ContextMenuRadioGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2815
+ declare const _default$61: __VLS_WithSlots$217<vue32.DefineComponent<ContextMenuRadioGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2813
2816
  "update:modelValue": (payload: AcceptableValue) => any;
2814
- }, string, vue33.PublicProps, Readonly<ContextMenuRadioGroupProps> & Readonly<{
2817
+ }, string, vue32.PublicProps, Readonly<ContextMenuRadioGroupProps> & Readonly<{
2815
2818
  "onUpdate:modelValue"?: ((payload: AcceptableValue) => any) | undefined;
2816
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2819
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2817
2820
  default?: (props: {}) => any;
2818
2821
  }>;
2819
2822
  type __VLS_WithSlots$217<T, S> = T & {
@@ -2826,11 +2829,11 @@ type __VLS_WithSlots$217<T, S> = T & {
2826
2829
  //#region src/ContextMenu/ContextMenuRadioItem.vue.d.ts
2827
2830
  type ContextMenuRadioItemEmits = MenuItemEmits;
2828
2831
  interface ContextMenuRadioItemProps extends MenuRadioItemProps {}
2829
- declare const _default$62: __VLS_WithSlots$216<vue33.DefineComponent<ContextMenuRadioItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2832
+ declare const _default$62: __VLS_WithSlots$216<vue32.DefineComponent<ContextMenuRadioItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2830
2833
  select: (event: Event) => any;
2831
- }, string, vue33.PublicProps, Readonly<ContextMenuRadioItemProps> & Readonly<{
2834
+ }, string, vue32.PublicProps, Readonly<ContextMenuRadioItemProps> & Readonly<{
2832
2835
  onSelect?: ((event: Event) => any) | undefined;
2833
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2836
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2834
2837
  default?: (props: {}) => any;
2835
2838
  }>;
2836
2839
  type __VLS_WithSlots$216<T, S> = T & {
@@ -2859,14 +2862,14 @@ interface ContextMenuRootProps extends Omit<MenuProps, 'open'> {
2859
2862
  }
2860
2863
  type ContextMenuRootEmits = MenuEmits;
2861
2864
  declare const injectContextMenuRootContext: <T extends ContextMenuRootContext | null | undefined = ContextMenuRootContext>(fallback?: T | undefined) => T extends null ? ContextMenuRootContext | null : ContextMenuRootContext, provideContextMenuRootContext: (contextValue: ContextMenuRootContext) => ContextMenuRootContext;
2862
- declare const _default$63: __VLS_WithSlots$215<vue33.DefineComponent<ContextMenuRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2865
+ declare const _default$63: __VLS_WithSlots$215<vue32.DefineComponent<ContextMenuRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2863
2866
  "update:open": (payload: boolean) => any;
2864
- }, string, vue33.PublicProps, Readonly<ContextMenuRootProps> & Readonly<{
2867
+ }, string, vue32.PublicProps, Readonly<ContextMenuRootProps> & Readonly<{
2865
2868
  "onUpdate:open"?: ((payload: boolean) => any) | undefined;
2866
2869
  }>, {
2867
2870
  modal: boolean;
2868
2871
  pressOpenDelay: number;
2869
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2872
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2870
2873
  default?: (props: {}) => any;
2871
2874
  }>;
2872
2875
  type __VLS_WithSlots$215<T, S> = T & {
@@ -2878,7 +2881,7 @@ type __VLS_WithSlots$215<T, S> = T & {
2878
2881
  //#endregion
2879
2882
  //#region src/ContextMenu/ContextMenuSeparator.vue.d.ts
2880
2883
  interface ContextMenuSeparatorProps extends MenuSeparatorProps {}
2881
- declare const _default$64: __VLS_WithSlots$214<vue33.DefineComponent<ContextMenuSeparatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ContextMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2884
+ declare const _default$64: __VLS_WithSlots$214<vue32.DefineComponent<ContextMenuSeparatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ContextMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2882
2885
  default?: (props: {}) => any;
2883
2886
  }>;
2884
2887
  type __VLS_WithSlots$214<T, S> = T & {
@@ -2894,13 +2897,13 @@ interface ContextMenuSubProps extends MenuSubProps {
2894
2897
  /** The open state of the submenu when it is initially rendered. Use when you do not need to control its open state. */
2895
2898
  defaultOpen?: boolean;
2896
2899
  }
2897
- declare const _default$65: __VLS_WithSlots$213<vue33.DefineComponent<ContextMenuSubProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2900
+ declare const _default$65: __VLS_WithSlots$213<vue32.DefineComponent<ContextMenuSubProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2898
2901
  "update:open": (payload: boolean) => any;
2899
- }, string, vue33.PublicProps, Readonly<ContextMenuSubProps> & Readonly<{
2902
+ }, string, vue32.PublicProps, Readonly<ContextMenuSubProps> & Readonly<{
2900
2903
  "onUpdate:open"?: ((payload: boolean) => any) | undefined;
2901
2904
  }>, {
2902
2905
  open: boolean;
2903
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2906
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2904
2907
  default?: (props: {
2905
2908
  /** Current open state */
2906
2909
  open: boolean;
@@ -2916,7 +2919,7 @@ type __VLS_WithSlots$213<T, S> = T & {
2916
2919
  //#region src/ContextMenu/ContextMenuSubContent.vue.d.ts
2917
2920
  type ContextMenuSubContentEmits = MenuSubContentEmits;
2918
2921
  interface ContextMenuSubContentProps extends MenuSubContentProps {}
2919
- declare const _default$66: __VLS_WithSlots$212<vue33.DefineComponent<ContextMenuSubContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
2922
+ declare const _default$66: __VLS_WithSlots$212<vue32.DefineComponent<ContextMenuSubContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
2920
2923
  escapeKeyDown: (event: KeyboardEvent) => any;
2921
2924
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
2922
2925
  focusOutside: (event: FocusOutsideEvent) => any;
@@ -2924,7 +2927,7 @@ declare const _default$66: __VLS_WithSlots$212<vue33.DefineComponent<ContextMenu
2924
2927
  openAutoFocus: (event: Event) => any;
2925
2928
  closeAutoFocus: (event: Event) => any;
2926
2929
  entryFocus: (event: Event) => any;
2927
- }, string, vue33.PublicProps, Readonly<ContextMenuSubContentProps> & Readonly<{
2930
+ }, string, vue32.PublicProps, Readonly<ContextMenuSubContentProps> & Readonly<{
2928
2931
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
2929
2932
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
2930
2933
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
@@ -2932,7 +2935,7 @@ declare const _default$66: __VLS_WithSlots$212<vue33.DefineComponent<ContextMenu
2932
2935
  onOpenAutoFocus?: ((event: Event) => any) | undefined;
2933
2936
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
2934
2937
  onEntryFocus?: ((event: Event) => any) | undefined;
2935
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2938
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2936
2939
  default?: (props: {}) => any;
2937
2940
  }>;
2938
2941
  type __VLS_WithSlots$212<T, S> = T & {
@@ -2944,7 +2947,7 @@ type __VLS_WithSlots$212<T, S> = T & {
2944
2947
  //#endregion
2945
2948
  //#region src/ContextMenu/ContextMenuSubTrigger.vue.d.ts
2946
2949
  interface ContextMenuSubTriggerProps extends MenuSubTriggerProps {}
2947
- declare const _default$67: __VLS_WithSlots$211<vue33.DefineComponent<ContextMenuSubTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ContextMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2950
+ declare const _default$67: __VLS_WithSlots$211<vue32.DefineComponent<ContextMenuSubTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ContextMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2948
2951
  default?: (props: {}) => any;
2949
2952
  }>;
2950
2953
  type __VLS_WithSlots$211<T, S> = T & {
@@ -2963,10 +2966,10 @@ interface ContextMenuTriggerProps extends PrimitiveProps {
2963
2966
  */
2964
2967
  disabled?: boolean;
2965
2968
  }
2966
- declare const _default$68: __VLS_WithSlots$210<vue33.DefineComponent<ContextMenuTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ContextMenuTriggerProps> & Readonly<{}>, {
2967
- as: AsTag | vue33.Component;
2969
+ declare const _default$68: __VLS_WithSlots$210<vue32.DefineComponent<ContextMenuTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ContextMenuTriggerProps> & Readonly<{}>, {
2970
+ as: AsTag | vue32.Component;
2968
2971
  disabled: boolean;
2969
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2972
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2970
2973
  default?: (props: {}) => any;
2971
2974
  }>;
2972
2975
  type __VLS_WithSlots$210<T, S> = T & {
@@ -2981,7 +2984,7 @@ interface DateFieldInputProps extends PrimitiveProps {
2981
2984
  /** The part of the date to render */
2982
2985
  part: SegmentPart;
2983
2986
  }
2984
- declare const _default$69: __VLS_WithSlots$209<vue33.DefineComponent<DateFieldInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
2987
+ declare const _default$69: __VLS_WithSlots$209<vue32.DefineComponent<DateFieldInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
2985
2988
  default?: (props: {}) => any;
2986
2989
  }>;
2987
2990
  type __VLS_WithSlots$209<T, S> = T & {
@@ -3053,13 +3056,13 @@ type DateFieldRootEmits = {
3053
3056
  'update:placeholder': [date: DateValue$1];
3054
3057
  };
3055
3058
  declare const injectDateFieldRootContext: <T extends DateFieldRootContext | null | undefined = DateFieldRootContext>(fallback?: T | undefined) => T extends null ? DateFieldRootContext | null : DateFieldRootContext, provideDateFieldRootContext: (contextValue: DateFieldRootContext) => DateFieldRootContext;
3056
- declare const _default$70: __VLS_WithSlots$208<vue33.DefineComponent<DateFieldRootProps, {
3059
+ declare const _default$70: __VLS_WithSlots$208<vue32.DefineComponent<DateFieldRootProps, {
3057
3060
  /** Helper to set the focused element inside the DateField */
3058
3061
  setFocusedElement: (el: HTMLElement) => void;
3059
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
3062
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
3060
3063
  "update:modelValue": (date: DateValue$1 | undefined) => any;
3061
3064
  "update:placeholder": (date: DateValue$1) => any;
3062
- }, string, vue33.PublicProps, Readonly<DateFieldRootProps> & Readonly<{
3065
+ }, string, vue32.PublicProps, Readonly<DateFieldRootProps> & Readonly<{
3063
3066
  "onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
3064
3067
  "onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
3065
3068
  }>, {
@@ -3068,7 +3071,7 @@ declare const _default$70: __VLS_WithSlots$208<vue33.DefineComponent<DateFieldRo
3068
3071
  defaultValue: DateValue$1;
3069
3072
  readonly: boolean;
3070
3073
  isDateUnavailable: Matcher;
3071
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3074
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3072
3075
  default?: (props: {
3073
3076
  /** The current date of the field */
3074
3077
  modelValue: DateValue$1 | undefined;
@@ -3090,7 +3093,7 @@ type __VLS_WithSlots$208<T, S> = T & {
3090
3093
  //#endregion
3091
3094
  //#region src/DatePicker/DatePickerAnchor.vue.d.ts
3092
3095
  interface DatePickerAnchorProps extends PopoverAnchorProps {}
3093
- declare const _default$71: __VLS_WithSlots$207<vue33.DefineComponent<DatePickerAnchorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3096
+ declare const _default$71: __VLS_WithSlots$207<vue32.DefineComponent<DatePickerAnchorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3094
3097
  default?: (props: {}) => any;
3095
3098
  }>;
3096
3099
  type __VLS_WithSlots$207<T, S> = T & {
@@ -3102,7 +3105,7 @@ type __VLS_WithSlots$207<T, S> = T & {
3102
3105
  //#endregion
3103
3106
  //#region src/DatePicker/DatePickerArrow.vue.d.ts
3104
3107
  interface DatePickerArrowProps extends PopoverArrowProps {}
3105
- declare const _default$72: __VLS_WithSlots$206<vue33.DefineComponent<DatePickerArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3108
+ declare const _default$72: __VLS_WithSlots$206<vue32.DefineComponent<DatePickerArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3106
3109
  default?: (props: {}) => any;
3107
3110
  }>;
3108
3111
  type __VLS_WithSlots$206<T, S> = T & {
@@ -3113,12 +3116,12 @@ type __VLS_WithSlots$206<T, S> = T & {
3113
3116
  //# sourceMappingURL=DatePickerArrow.vue.d.ts.map
3114
3117
  //#endregion
3115
3118
  //#region src/DatePicker/DatePickerCalendar.vue.d.ts
3116
- declare const _default$73: __VLS_WithSlots$205<vue33.DefineComponent<{}, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, true, {}, any>, {
3119
+ declare const _default$73: __VLS_WithSlots$205<vue32.DefineComponent<{}, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, true, {}, any>, {
3117
3120
  default?: (props: {
3118
3121
  date: DateValue$1;
3119
3122
  grid: Grid<DateValue$1>[];
3120
3123
  weekDays: string[];
3121
- weekStartsOn: 0 | 5 | 1 | 3 | 2 | 4 | 6;
3124
+ weekStartsOn: WeekStartsOn;
3122
3125
  locale: string;
3123
3126
  fixedWeeks: boolean;
3124
3127
  }) => any;
@@ -3132,7 +3135,7 @@ type __VLS_WithSlots$205<T, S> = T & {
3132
3135
  //#endregion
3133
3136
  //#region src/DatePicker/DatePickerCell.vue.d.ts
3134
3137
  interface DatePickerCellProps extends CalendarCellProps {}
3135
- declare const _default$74: __VLS_WithSlots$204<vue33.DefineComponent<DatePickerCellProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3138
+ declare const _default$74: __VLS_WithSlots$204<vue32.DefineComponent<DatePickerCellProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3136
3139
  default?: (props: {}) => any;
3137
3140
  }>;
3138
3141
  type __VLS_WithSlots$204<T, S> = T & {
@@ -3144,7 +3147,7 @@ type __VLS_WithSlots$204<T, S> = T & {
3144
3147
  //#endregion
3145
3148
  //#region src/DatePicker/DatePickerCellTrigger.vue.d.ts
3146
3149
  interface DatePickerCellTriggerProps extends CalendarCellTriggerProps {}
3147
- declare const _default$75: __VLS_WithSlots$203<vue33.DefineComponent<DatePickerCellTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerCellTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, CalendarCellTriggerSlot>;
3150
+ declare const _default$75: __VLS_WithSlots$203<vue32.DefineComponent<DatePickerCellTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerCellTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, CalendarCellTriggerSlot>;
3148
3151
  type __VLS_WithSlots$203<T, S> = T & {
3149
3152
  new (): {
3150
3153
  $slots: S;
@@ -3154,7 +3157,7 @@ type __VLS_WithSlots$203<T, S> = T & {
3154
3157
  //#endregion
3155
3158
  //#region src/DatePicker/DatePickerClose.vue.d.ts
3156
3159
  interface DatePickerCloseProps extends PopoverCloseProps {}
3157
- declare const _default$76: __VLS_WithSlots$202<vue33.DefineComponent<DatePickerCloseProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3160
+ declare const _default$76: __VLS_WithSlots$202<vue32.DefineComponent<DatePickerCloseProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3158
3161
  default?: (props: {}) => any;
3159
3162
  }>;
3160
3163
  type __VLS_WithSlots$202<T, S> = T & {
@@ -3172,21 +3175,21 @@ interface DatePickerContentProps extends PopoverContentProps {
3172
3175
  portal?: PopoverPortalProps;
3173
3176
  }
3174
3177
  interface DatePickerContentEmits extends PopoverContentEmits {}
3175
- declare const _default$77: __VLS_WithSlots$201<vue33.DefineComponent<DatePickerContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
3178
+ declare const _default$77: __VLS_WithSlots$201<vue32.DefineComponent<DatePickerContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
3176
3179
  escapeKeyDown: (event: KeyboardEvent) => any;
3177
3180
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
3178
3181
  focusOutside: (event: FocusOutsideEvent) => any;
3179
3182
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
3180
3183
  openAutoFocus: (event: Event) => any;
3181
3184
  closeAutoFocus: (event: Event) => any;
3182
- }, string, vue33.PublicProps, Readonly<DatePickerContentProps> & Readonly<{
3185
+ }, string, vue32.PublicProps, Readonly<DatePickerContentProps> & Readonly<{
3183
3186
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
3184
3187
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
3185
3188
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
3186
3189
  onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
3187
3190
  onOpenAutoFocus?: ((event: Event) => any) | undefined;
3188
3191
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
3189
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3192
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3190
3193
  default?: (props: {}) => any;
3191
3194
  }>;
3192
3195
  type __VLS_WithSlots$201<T, S> = T & {
@@ -3197,7 +3200,7 @@ type __VLS_WithSlots$201<T, S> = T & {
3197
3200
  //# sourceMappingURL=DatePickerContent.vue.d.ts.map
3198
3201
  //#endregion
3199
3202
  //#region src/DatePicker/DatePickerField.vue.d.ts
3200
- declare const _default$78: __VLS_WithSlots$200<vue33.DefineComponent<{}, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, true, {}, any>, {
3203
+ declare const _default$78: __VLS_WithSlots$200<vue32.DefineComponent<{}, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, true, {}, any>, {
3201
3204
  default?: (props: {
3202
3205
  segments: {
3203
3206
  part: SegmentPart;
@@ -3215,7 +3218,7 @@ type __VLS_WithSlots$200<T, S> = T & {
3215
3218
  //#endregion
3216
3219
  //#region src/DatePicker/DatePickerGrid.vue.d.ts
3217
3220
  interface DatePickerGridProps extends CalendarGridProps {}
3218
- declare const _default$79: __VLS_WithSlots$199<vue33.DefineComponent<DatePickerGridProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerGridProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3221
+ declare const _default$79: __VLS_WithSlots$199<vue32.DefineComponent<DatePickerGridProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerGridProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3219
3222
  default?: (props: {}) => any;
3220
3223
  }>;
3221
3224
  type __VLS_WithSlots$199<T, S> = T & {
@@ -3227,7 +3230,7 @@ type __VLS_WithSlots$199<T, S> = T & {
3227
3230
  //#endregion
3228
3231
  //#region src/DatePicker/DatePickerGridBody.vue.d.ts
3229
3232
  interface DatePickerGridBodyProps extends CalendarGridBodyProps {}
3230
- declare const _default$80: __VLS_WithSlots$198<vue33.DefineComponent<DatePickerGridBodyProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerGridBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3233
+ declare const _default$80: __VLS_WithSlots$198<vue32.DefineComponent<DatePickerGridBodyProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerGridBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3231
3234
  default?: (props: {}) => any;
3232
3235
  }>;
3233
3236
  type __VLS_WithSlots$198<T, S> = T & {
@@ -3239,7 +3242,7 @@ type __VLS_WithSlots$198<T, S> = T & {
3239
3242
  //#endregion
3240
3243
  //#region src/DatePicker/DatePickerGridHead.vue.d.ts
3241
3244
  interface DatePickerGridHeadProps extends CalendarGridHeadProps {}
3242
- declare const _default$81: __VLS_WithSlots$197<vue33.DefineComponent<DatePickerGridHeadProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerGridHeadProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3245
+ declare const _default$81: __VLS_WithSlots$197<vue32.DefineComponent<DatePickerGridHeadProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerGridHeadProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3243
3246
  default?: (props: {}) => any;
3244
3247
  }>;
3245
3248
  type __VLS_WithSlots$197<T, S> = T & {
@@ -3251,7 +3254,7 @@ type __VLS_WithSlots$197<T, S> = T & {
3251
3254
  //#endregion
3252
3255
  //#region src/DatePicker/DatePickerGridRow.vue.d.ts
3253
3256
  interface DatePickerGridRowProps extends CalendarGridRowProps {}
3254
- declare const _default$82: __VLS_WithSlots$196<vue33.DefineComponent<DatePickerGridRowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerGridRowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3257
+ declare const _default$82: __VLS_WithSlots$196<vue32.DefineComponent<DatePickerGridRowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerGridRowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3255
3258
  default?: (props: {}) => any;
3256
3259
  }>;
3257
3260
  type __VLS_WithSlots$196<T, S> = T & {
@@ -3263,7 +3266,7 @@ type __VLS_WithSlots$196<T, S> = T & {
3263
3266
  //#endregion
3264
3267
  //#region src/DatePicker/DatePickerHeadCell.vue.d.ts
3265
3268
  interface DatePickerHeadCellProps extends CalendarHeadCellProps {}
3266
- declare const _default$83: __VLS_WithSlots$195<vue33.DefineComponent<DatePickerHeadCellProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerHeadCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3269
+ declare const _default$83: __VLS_WithSlots$195<vue32.DefineComponent<DatePickerHeadCellProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerHeadCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3267
3270
  default?: (props: {}) => any;
3268
3271
  }>;
3269
3272
  type __VLS_WithSlots$195<T, S> = T & {
@@ -3275,7 +3278,7 @@ type __VLS_WithSlots$195<T, S> = T & {
3275
3278
  //#endregion
3276
3279
  //#region src/DatePicker/DatePickerHeader.vue.d.ts
3277
3280
  interface DatePickerHeaderProps extends CalendarHeaderProps {}
3278
- declare const _default$84: __VLS_WithSlots$194<vue33.DefineComponent<DatePickerHeaderProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3281
+ declare const _default$84: __VLS_WithSlots$194<vue32.DefineComponent<DatePickerHeaderProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3279
3282
  default?: (props: {}) => any;
3280
3283
  }>;
3281
3284
  type __VLS_WithSlots$194<T, S> = T & {
@@ -3287,7 +3290,7 @@ type __VLS_WithSlots$194<T, S> = T & {
3287
3290
  //#endregion
3288
3291
  //#region src/DatePicker/DatePickerHeading.vue.d.ts
3289
3292
  interface DatePickerHeadingProps extends CalendarHeadingProps {}
3290
- declare const _default$85: __VLS_WithSlots$193<vue33.DefineComponent<DatePickerHeadingProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerHeadingProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3293
+ declare const _default$85: __VLS_WithSlots$193<vue32.DefineComponent<DatePickerHeadingProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerHeadingProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3291
3294
  default?: (props: {
3292
3295
  /** Current month and year */
3293
3296
  headingValue: string;
@@ -3302,7 +3305,7 @@ type __VLS_WithSlots$193<T, S> = T & {
3302
3305
  //#endregion
3303
3306
  //#region src/DatePicker/DatePickerInput.vue.d.ts
3304
3307
  interface DatePickerInputProps extends DateFieldInputProps {}
3305
- declare const _default$86: __VLS_WithSlots$192<vue33.DefineComponent<DatePickerInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3308
+ declare const _default$86: __VLS_WithSlots$192<vue32.DefineComponent<DatePickerInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3306
3309
  default?: (props: {}) => any;
3307
3310
  }>;
3308
3311
  type __VLS_WithSlots$192<T, S> = T & {
@@ -3314,7 +3317,7 @@ type __VLS_WithSlots$192<T, S> = T & {
3314
3317
  //#endregion
3315
3318
  //#region src/DatePicker/DatePickerNext.vue.d.ts
3316
3319
  interface DatePickerNextProps extends CalendarNextProps {}
3317
- declare const _default$87: __VLS_WithSlots$191<vue33.DefineComponent<DatePickerNextProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, CalendarNextSlot>;
3320
+ declare const _default$87: __VLS_WithSlots$191<vue32.DefineComponent<DatePickerNextProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, CalendarNextSlot>;
3318
3321
  type __VLS_WithSlots$191<T, S> = T & {
3319
3322
  new (): {
3320
3323
  $slots: S;
@@ -3324,7 +3327,7 @@ type __VLS_WithSlots$191<T, S> = T & {
3324
3327
  //#endregion
3325
3328
  //#region src/DatePicker/DatePickerPrev.vue.d.ts
3326
3329
  interface DatePickerPrevProps extends CalendarPrevProps {}
3327
- declare const _default$88: __VLS_WithSlots$190<vue33.DefineComponent<DatePickerPrevProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, CalendarPrevSlot>;
3330
+ declare const _default$88: __VLS_WithSlots$190<vue32.DefineComponent<DatePickerPrevProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, CalendarPrevSlot>;
3328
3331
  type __VLS_WithSlots$190<T, S> = T & {
3329
3332
  new (): {
3330
3333
  $slots: S;
@@ -3348,7 +3351,7 @@ type DatePickerRootContext = {
3348
3351
  placeholder: Ref<DateValue$1>;
3349
3352
  pagedNavigation: Ref<boolean>;
3350
3353
  preventDeselect: Ref<boolean>;
3351
- weekStartsOn: Ref<0 | 1 | 2 | 3 | 4 | 5 | 6>;
3354
+ weekStartsOn: Ref<WeekStartsOn>;
3352
3355
  weekdayFormat: Ref<WeekDayFormat>;
3353
3356
  fixedWeeks: Ref<boolean>;
3354
3357
  numberOfMonths: Ref<number>;
@@ -3376,32 +3379,31 @@ type DatePickerRootEmits = PopoverRootEmits & {
3376
3379
  'update:placeholder': [date: DateValue$1];
3377
3380
  };
3378
3381
  declare const injectDatePickerRootContext: <T extends DatePickerRootContext | null | undefined = DatePickerRootContext>(fallback?: T | undefined) => T extends null ? DatePickerRootContext | null : DatePickerRootContext, provideDatePickerRootContext: (contextValue: DatePickerRootContext) => DatePickerRootContext;
3379
- declare const _default$89: __VLS_WithSlots$189<vue33.DefineComponent<DatePickerRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
3382
+ declare const _default$89: __VLS_WithSlots$189<vue32.DefineComponent<DatePickerRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
3380
3383
  "update:open": (value: boolean) => any;
3381
3384
  "update:modelValue": (date: DateValue$1 | undefined) => any;
3382
3385
  "update:placeholder": (date: DateValue$1) => any;
3383
- }, string, vue33.PublicProps, Readonly<DatePickerRootProps> & Readonly<{
3386
+ }, string, vue32.PublicProps, Readonly<DatePickerRootProps> & Readonly<{
3384
3387
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
3385
3388
  "onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
3386
3389
  "onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
3387
3390
  }>, {
3388
3391
  placeholder: DateValue$1;
3389
- defaultOpen: boolean;
3390
- open: boolean;
3391
3392
  disabled: boolean;
3392
3393
  modal: boolean;
3394
+ open: boolean;
3395
+ defaultOpen: boolean;
3393
3396
  defaultValue: DateValue$1;
3394
3397
  readonly: boolean;
3395
3398
  isDateUnavailable: Matcher;
3396
3399
  pagedNavigation: boolean;
3397
3400
  preventDeselect: boolean;
3398
- weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
3399
3401
  weekdayFormat: WeekDayFormat;
3400
3402
  fixedWeeks: boolean;
3401
3403
  numberOfMonths: number;
3402
3404
  isDateDisabled: Matcher;
3403
3405
  closeOnSelect: boolean;
3404
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3406
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3405
3407
  default?: (props: {}) => any;
3406
3408
  }>;
3407
3409
  type __VLS_WithSlots$189<T, S> = T & {
@@ -3413,7 +3415,7 @@ type __VLS_WithSlots$189<T, S> = T & {
3413
3415
  //#endregion
3414
3416
  //#region src/DatePicker/DatePickerTrigger.vue.d.ts
3415
3417
  interface DatePickerTriggerProps extends PopoverTriggerProps {}
3416
- declare const _default$90: __VLS_WithSlots$188<vue33.DefineComponent<DatePickerTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DatePickerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3418
+ declare const _default$90: __VLS_WithSlots$188<vue32.DefineComponent<DatePickerTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DatePickerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3417
3419
  default?: (props: {}) => any;
3418
3420
  }>;
3419
3421
  type __VLS_WithSlots$188<T, S> = T & {
@@ -3493,12 +3495,12 @@ type DateRangeFieldRootEmits = {
3493
3495
  'update:placeholder': [date: DateValue$1];
3494
3496
  };
3495
3497
  declare const injectDateRangeFieldRootContext: <T extends DateRangeFieldRootContext | null | undefined = DateRangeFieldRootContext>(fallback?: T | undefined) => T extends null ? DateRangeFieldRootContext | null : DateRangeFieldRootContext, provideDateRangeFieldRootContext: (contextValue: DateRangeFieldRootContext) => DateRangeFieldRootContext;
3496
- declare const _default$92: __VLS_WithSlots$187<vue33.DefineComponent<DateRangeFieldRootProps, {
3498
+ declare const _default$92: __VLS_WithSlots$187<vue32.DefineComponent<DateRangeFieldRootProps, {
3497
3499
  setFocusedElement: (el: HTMLElement) => void;
3498
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
3500
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
3499
3501
  "update:modelValue": (args_0: DateRange) => any;
3500
3502
  "update:placeholder": (date: DateValue$1) => any;
3501
- }, string, vue33.PublicProps, Readonly<DateRangeFieldRootProps> & Readonly<{
3503
+ }, string, vue32.PublicProps, Readonly<DateRangeFieldRootProps> & Readonly<{
3502
3504
  "onUpdate:modelValue"?: ((args_0: DateRange) => any) | undefined;
3503
3505
  "onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
3504
3506
  }>, {
@@ -3507,7 +3509,7 @@ declare const _default$92: __VLS_WithSlots$187<vue33.DefineComponent<DateRangeFi
3507
3509
  defaultValue: DateRange;
3508
3510
  readonly: boolean;
3509
3511
  isDateUnavailable: Matcher;
3510
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3512
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3511
3513
  default?: (props: {
3512
3514
  modelValue: DateRange | null;
3513
3515
  segments: {
@@ -3537,7 +3539,7 @@ interface DateRangeFieldInputProps extends PrimitiveProps {
3537
3539
  /** The type of field to render (start or end) */
3538
3540
  type: DateRangeType;
3539
3541
  }
3540
- declare const _default$91: __VLS_WithSlots$186<vue33.DefineComponent<DateRangeFieldInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangeFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3542
+ declare const _default$91: __VLS_WithSlots$186<vue32.DefineComponent<DateRangeFieldInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangeFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3541
3543
  default?: (props: {}) => any;
3542
3544
  }>;
3543
3545
  type __VLS_WithSlots$186<T, S> = T & {
@@ -3549,7 +3551,7 @@ type __VLS_WithSlots$186<T, S> = T & {
3549
3551
  //#endregion
3550
3552
  //#region src/DateRangePicker/DateRangePickerAnchor.vue.d.ts
3551
3553
  interface DateRangePickerAnchorProps extends PopoverAnchorProps {}
3552
- declare const _default$93: __VLS_WithSlots$185<vue33.DefineComponent<DateRangePickerAnchorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3554
+ declare const _default$93: __VLS_WithSlots$185<vue32.DefineComponent<DateRangePickerAnchorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3553
3555
  default?: (props: {}) => any;
3554
3556
  }>;
3555
3557
  type __VLS_WithSlots$185<T, S> = T & {
@@ -3561,7 +3563,7 @@ type __VLS_WithSlots$185<T, S> = T & {
3561
3563
  //#endregion
3562
3564
  //#region src/DateRangePicker/DateRangePickerArrow.vue.d.ts
3563
3565
  interface DateRangePickerArrowProps extends PopoverArrowProps {}
3564
- declare const _default$94: __VLS_WithSlots$184<vue33.DefineComponent<DateRangePickerArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3566
+ declare const _default$94: __VLS_WithSlots$184<vue32.DefineComponent<DateRangePickerArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3565
3567
  default?: (props: {}) => any;
3566
3568
  }>;
3567
3569
  type __VLS_WithSlots$184<T, S> = T & {
@@ -3572,12 +3574,12 @@ type __VLS_WithSlots$184<T, S> = T & {
3572
3574
  //# sourceMappingURL=DateRangePickerArrow.vue.d.ts.map
3573
3575
  //#endregion
3574
3576
  //#region src/DateRangePicker/DateRangePickerCalendar.vue.d.ts
3575
- declare const _default$95: __VLS_WithSlots$183<vue33.DefineComponent<{}, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, true, {}, any>, {
3577
+ declare const _default$95: __VLS_WithSlots$183<vue32.DefineComponent<{}, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, true, {}, any>, {
3576
3578
  default?: (props: {
3577
- date: _internationalized_date1697.DateValue;
3578
- grid: Grid<_internationalized_date1697.DateValue>[];
3579
+ date: _internationalized_date538.DateValue;
3580
+ grid: Grid<_internationalized_date538.DateValue>[];
3579
3581
  weekDays: string[];
3580
- weekStartsOn: 0 | 5 | 1 | 3 | 2 | 4 | 6;
3582
+ weekStartsOn: WeekStartsOn;
3581
3583
  locale: string;
3582
3584
  fixedWeeks: boolean;
3583
3585
  }) => any;
@@ -3591,7 +3593,7 @@ type __VLS_WithSlots$183<T, S> = T & {
3591
3593
  //#endregion
3592
3594
  //#region src/DateRangePicker/DateRangePickerCell.vue.d.ts
3593
3595
  interface DateRangePickerCellProps extends RangeCalendarCellProps {}
3594
- declare const _default$96: __VLS_WithSlots$182<vue33.DefineComponent<DateRangePickerCellProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3596
+ declare const _default$96: __VLS_WithSlots$182<vue32.DefineComponent<DateRangePickerCellProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3595
3597
  default?: (props: {}) => any;
3596
3598
  }>;
3597
3599
  type __VLS_WithSlots$182<T, S> = T & {
@@ -3634,9 +3636,9 @@ interface RangeCalendarCellTriggerSlot {
3634
3636
  selectionEnd: boolean;
3635
3637
  }) => any;
3636
3638
  }
3637
- declare const _default$213: __VLS_WithSlots$181<vue33.DefineComponent<RangeCalendarCellTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarCellTriggerProps> & Readonly<{}>, {
3638
- as: AsTag | vue33.Component;
3639
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, RangeCalendarCellTriggerSlot>;
3639
+ declare const _default$213: __VLS_WithSlots$181<vue32.DefineComponent<RangeCalendarCellTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarCellTriggerProps> & Readonly<{}>, {
3640
+ as: AsTag | vue32.Component;
3641
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, RangeCalendarCellTriggerSlot>;
3640
3642
  type __VLS_WithSlots$181<T, S> = T & {
3641
3643
  new (): {
3642
3644
  $slots: S;
@@ -3646,7 +3648,7 @@ type __VLS_WithSlots$181<T, S> = T & {
3646
3648
  //#endregion
3647
3649
  //#region src/DateRangePicker/DateRangePickerCellTrigger.vue.d.ts
3648
3650
  interface DateRangePickerCellTriggerProps extends RangeCalendarCellTriggerProps {}
3649
- declare const _default$97: __VLS_WithSlots$180<vue33.DefineComponent<DateRangePickerCellTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerCellTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, RangeCalendarCellTriggerSlot>;
3651
+ declare const _default$97: __VLS_WithSlots$180<vue32.DefineComponent<DateRangePickerCellTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerCellTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, RangeCalendarCellTriggerSlot>;
3650
3652
  type __VLS_WithSlots$180<T, S> = T & {
3651
3653
  new (): {
3652
3654
  $slots: S;
@@ -3656,7 +3658,7 @@ type __VLS_WithSlots$180<T, S> = T & {
3656
3658
  //#endregion
3657
3659
  //#region src/DateRangePicker/DateRangePickerClose.vue.d.ts
3658
3660
  interface DateRangePickerCloseProps extends PopoverCloseProps {}
3659
- declare const _default$98: __VLS_WithSlots$179<vue33.DefineComponent<DateRangePickerCloseProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3661
+ declare const _default$98: __VLS_WithSlots$179<vue32.DefineComponent<DateRangePickerCloseProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3660
3662
  default?: (props: {}) => any;
3661
3663
  }>;
3662
3664
  type __VLS_WithSlots$179<T, S> = T & {
@@ -3674,21 +3676,21 @@ interface DateRangePickerContentProps extends PopoverContentProps {
3674
3676
  portal?: PopoverPortalProps;
3675
3677
  }
3676
3678
  interface DateRangePickerContentEmits extends PopoverContentEmits {}
3677
- declare const _default$99: __VLS_WithSlots$178<vue33.DefineComponent<DateRangePickerContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
3679
+ declare const _default$99: __VLS_WithSlots$178<vue32.DefineComponent<DateRangePickerContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
3678
3680
  escapeKeyDown: (event: KeyboardEvent) => any;
3679
3681
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
3680
3682
  focusOutside: (event: FocusOutsideEvent) => any;
3681
3683
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
3682
3684
  openAutoFocus: (event: Event) => any;
3683
3685
  closeAutoFocus: (event: Event) => any;
3684
- }, string, vue33.PublicProps, Readonly<DateRangePickerContentProps> & Readonly<{
3686
+ }, string, vue32.PublicProps, Readonly<DateRangePickerContentProps> & Readonly<{
3685
3687
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
3686
3688
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
3687
3689
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
3688
3690
  onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
3689
3691
  onOpenAutoFocus?: ((event: Event) => any) | undefined;
3690
3692
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
3691
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3693
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3692
3694
  default?: (props: {}) => any;
3693
3695
  }>;
3694
3696
  type __VLS_WithSlots$178<T, S> = T & {
@@ -3699,7 +3701,7 @@ type __VLS_WithSlots$178<T, S> = T & {
3699
3701
  //# sourceMappingURL=DateRangePickerContent.vue.d.ts.map
3700
3702
  //#endregion
3701
3703
  //#region src/DateRangePicker/DateRangePickerField.vue.d.ts
3702
- declare const _default$100: __VLS_WithSlots$177<vue33.DefineComponent<{}, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, true, {}, any>, {
3704
+ declare const _default$100: __VLS_WithSlots$177<vue32.DefineComponent<{}, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, true, {}, any>, {
3703
3705
  default?: (props: {
3704
3706
  segments: {
3705
3707
  start: {
@@ -3723,7 +3725,7 @@ type __VLS_WithSlots$177<T, S> = T & {
3723
3725
  //#endregion
3724
3726
  //#region src/DateRangePicker/DateRangePickerGrid.vue.d.ts
3725
3727
  interface DateRangePickerGridProps extends RangeCalendarGridProps {}
3726
- declare const _default$101: __VLS_WithSlots$176<vue33.DefineComponent<DateRangePickerGridProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerGridProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3728
+ declare const _default$101: __VLS_WithSlots$176<vue32.DefineComponent<DateRangePickerGridProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerGridProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3727
3729
  default?: (props: {}) => any;
3728
3730
  }>;
3729
3731
  type __VLS_WithSlots$176<T, S> = T & {
@@ -3735,7 +3737,7 @@ type __VLS_WithSlots$176<T, S> = T & {
3735
3737
  //#endregion
3736
3738
  //#region src/DateRangePicker/DateRangePickerGridBody.vue.d.ts
3737
3739
  interface DateRangePickerGridBodyProps extends RangeCalendarGridBodyProps {}
3738
- declare const _default$102: __VLS_WithSlots$175<vue33.DefineComponent<DateRangePickerGridBodyProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerGridBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3740
+ declare const _default$102: __VLS_WithSlots$175<vue32.DefineComponent<DateRangePickerGridBodyProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerGridBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3739
3741
  default?: (props: {}) => any;
3740
3742
  }>;
3741
3743
  type __VLS_WithSlots$175<T, S> = T & {
@@ -3747,7 +3749,7 @@ type __VLS_WithSlots$175<T, S> = T & {
3747
3749
  //#endregion
3748
3750
  //#region src/DateRangePicker/DateRangePickerGridHead.vue.d.ts
3749
3751
  interface DateRangePickerGridHeadProps extends RangeCalendarGridHeadProps {}
3750
- declare const _default$103: __VLS_WithSlots$174<vue33.DefineComponent<DateRangePickerGridHeadProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerGridHeadProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3752
+ declare const _default$103: __VLS_WithSlots$174<vue32.DefineComponent<DateRangePickerGridHeadProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerGridHeadProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3751
3753
  default?: (props: {}) => any;
3752
3754
  }>;
3753
3755
  type __VLS_WithSlots$174<T, S> = T & {
@@ -3759,7 +3761,7 @@ type __VLS_WithSlots$174<T, S> = T & {
3759
3761
  //#endregion
3760
3762
  //#region src/DateRangePicker/DateRangePickerGridRow.vue.d.ts
3761
3763
  interface DateRangePickerGridRowProps extends RangeCalendarGridRowProps {}
3762
- declare const _default$104: __VLS_WithSlots$173<vue33.DefineComponent<DateRangePickerGridRowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerGridRowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3764
+ declare const _default$104: __VLS_WithSlots$173<vue32.DefineComponent<DateRangePickerGridRowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerGridRowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3763
3765
  default?: (props: {}) => any;
3764
3766
  }>;
3765
3767
  type __VLS_WithSlots$173<T, S> = T & {
@@ -3771,7 +3773,7 @@ type __VLS_WithSlots$173<T, S> = T & {
3771
3773
  //#endregion
3772
3774
  //#region src/DateRangePicker/DateRangePickerHeadCell.vue.d.ts
3773
3775
  interface DateRangePickerHeadCellProps extends RangeCalendarHeadCellProps {}
3774
- declare const _default$105: __VLS_WithSlots$172<vue33.DefineComponent<DateRangePickerHeadCellProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerHeadCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3776
+ declare const _default$105: __VLS_WithSlots$172<vue32.DefineComponent<DateRangePickerHeadCellProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerHeadCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3775
3777
  default?: (props: {}) => any;
3776
3778
  }>;
3777
3779
  type __VLS_WithSlots$172<T, S> = T & {
@@ -3783,7 +3785,7 @@ type __VLS_WithSlots$172<T, S> = T & {
3783
3785
  //#endregion
3784
3786
  //#region src/DateRangePicker/DateRangePickerHeader.vue.d.ts
3785
3787
  interface DateRangePickerHeaderProps extends RangeCalendarHeaderProps {}
3786
- declare const _default$106: __VLS_WithSlots$171<vue33.DefineComponent<DateRangePickerHeaderProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3788
+ declare const _default$106: __VLS_WithSlots$171<vue32.DefineComponent<DateRangePickerHeaderProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3787
3789
  default?: (props: {}) => any;
3788
3790
  }>;
3789
3791
  type __VLS_WithSlots$171<T, S> = T & {
@@ -3795,7 +3797,7 @@ type __VLS_WithSlots$171<T, S> = T & {
3795
3797
  //#endregion
3796
3798
  //#region src/DateRangePicker/DateRangePickerHeading.vue.d.ts
3797
3799
  interface DateRangePickerHeadingProps extends RangeCalendarHeadingProps {}
3798
- declare const _default$107: __VLS_WithSlots$170<vue33.DefineComponent<DateRangePickerHeadingProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerHeadingProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3800
+ declare const _default$107: __VLS_WithSlots$170<vue32.DefineComponent<DateRangePickerHeadingProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerHeadingProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3799
3801
  default?: (props: {
3800
3802
  /** Current month and year */
3801
3803
  headingValue: string;
@@ -3810,7 +3812,7 @@ type __VLS_WithSlots$170<T, S> = T & {
3810
3812
  //#endregion
3811
3813
  //#region src/DateRangePicker/DateRangePickerInput.vue.d.ts
3812
3814
  interface DateRangePickerInputProps extends DateRangeFieldInputProps {}
3813
- declare const _default$108: __VLS_WithSlots$169<vue33.DefineComponent<DateRangePickerInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3815
+ declare const _default$108: __VLS_WithSlots$169<vue32.DefineComponent<DateRangePickerInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3814
3816
  default?: (props: {}) => any;
3815
3817
  }>;
3816
3818
  type __VLS_WithSlots$169<T, S> = T & {
@@ -3831,9 +3833,9 @@ interface RangeCalendarNextSlot {
3831
3833
  disabled: boolean;
3832
3834
  }) => any;
3833
3835
  }
3834
- declare const _default$221: __VLS_WithSlots$168<vue33.DefineComponent<RangeCalendarNextProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarNextProps> & Readonly<{}>, {
3835
- as: AsTag | vue33.Component;
3836
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, RangeCalendarNextSlot>;
3836
+ declare const _default$221: __VLS_WithSlots$168<vue32.DefineComponent<RangeCalendarNextProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarNextProps> & Readonly<{}>, {
3837
+ as: AsTag | vue32.Component;
3838
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, RangeCalendarNextSlot>;
3837
3839
  type __VLS_WithSlots$168<T, S> = T & {
3838
3840
  new (): {
3839
3841
  $slots: S;
@@ -3843,7 +3845,7 @@ type __VLS_WithSlots$168<T, S> = T & {
3843
3845
  //#endregion
3844
3846
  //#region src/DateRangePicker/DateRangePickerNext.vue.d.ts
3845
3847
  interface DateRangePickerNextProps extends RangeCalendarNextProps {}
3846
- declare const _default$109: __VLS_WithSlots$167<vue33.DefineComponent<DateRangePickerNextProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, RangeCalendarNextSlot>;
3848
+ declare const _default$109: __VLS_WithSlots$167<vue32.DefineComponent<DateRangePickerNextProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, RangeCalendarNextSlot>;
3847
3849
  type __VLS_WithSlots$167<T, S> = T & {
3848
3850
  new (): {
3849
3851
  $slots: S;
@@ -3862,9 +3864,9 @@ interface RangeCalendarPrevSlot {
3862
3864
  disabled: boolean;
3863
3865
  }) => any;
3864
3866
  }
3865
- declare const _default$222: __VLS_WithSlots$166<vue33.DefineComponent<RangeCalendarPrevProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarPrevProps> & Readonly<{}>, {
3866
- as: AsTag | vue33.Component;
3867
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, RangeCalendarPrevSlot>;
3867
+ declare const _default$222: __VLS_WithSlots$166<vue32.DefineComponent<RangeCalendarPrevProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarPrevProps> & Readonly<{}>, {
3868
+ as: AsTag | vue32.Component;
3869
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, RangeCalendarPrevSlot>;
3868
3870
  type __VLS_WithSlots$166<T, S> = T & {
3869
3871
  new (): {
3870
3872
  $slots: S;
@@ -3874,7 +3876,7 @@ type __VLS_WithSlots$166<T, S> = T & {
3874
3876
  //#endregion
3875
3877
  //#region src/DateRangePicker/DateRangePickerPrev.vue.d.ts
3876
3878
  interface DateRangePickerPrevProps extends RangeCalendarPrevProps {}
3877
- declare const _default$110: __VLS_WithSlots$165<vue33.DefineComponent<DateRangePickerPrevProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, RangeCalendarPrevSlot>;
3879
+ declare const _default$110: __VLS_WithSlots$165<vue32.DefineComponent<DateRangePickerPrevProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, RangeCalendarPrevSlot>;
3878
3880
  type __VLS_WithSlots$165<T, S> = T & {
3879
3881
  new (): {
3880
3882
  $slots: S;
@@ -3901,7 +3903,7 @@ type DateRangePickerRootContext = {
3901
3903
  placeholder: Ref<DateValue$1>;
3902
3904
  pagedNavigation: Ref<boolean>;
3903
3905
  preventDeselect: Ref<boolean>;
3904
- weekStartsOn: Ref<0 | 1 | 2 | 3 | 4 | 5 | 6>;
3906
+ weekStartsOn: Ref<WeekStartsOn>;
3905
3907
  weekdayFormat: Ref<WeekDayFormat>;
3906
3908
  fixedWeeks: Ref<boolean>;
3907
3909
  numberOfMonths: Ref<number>;
@@ -3936,28 +3938,27 @@ type DateRangePickerRootEmits = PopoverRootEmits & {
3936
3938
  'update:startValue': [date: DateValue$1 | undefined];
3937
3939
  };
3938
3940
  declare const injectDateRangePickerRootContext: <T extends DateRangePickerRootContext | null | undefined = DateRangePickerRootContext>(fallback?: T | undefined) => T extends null ? DateRangePickerRootContext | null : DateRangePickerRootContext, provideDateRangePickerRootContext: (contextValue: DateRangePickerRootContext) => DateRangePickerRootContext;
3939
- declare const _default$111: __VLS_WithSlots$164<vue33.DefineComponent<DateRangePickerRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
3941
+ declare const _default$111: __VLS_WithSlots$164<vue32.DefineComponent<DateRangePickerRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
3940
3942
  "update:open": (value: boolean) => any;
3941
3943
  "update:modelValue": (date: DateRange) => any;
3942
3944
  "update:placeholder": (date: DateValue$1) => any;
3943
3945
  "update:startValue": (date: DateValue$1 | undefined) => any;
3944
- }, string, vue33.PublicProps, Readonly<DateRangePickerRootProps> & Readonly<{
3946
+ }, string, vue32.PublicProps, Readonly<DateRangePickerRootProps> & Readonly<{
3945
3947
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
3946
3948
  "onUpdate:modelValue"?: ((date: DateRange) => any) | undefined;
3947
3949
  "onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
3948
3950
  "onUpdate:startValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
3949
3951
  }>, {
3950
3952
  placeholder: DateValue$1;
3951
- defaultOpen: boolean;
3952
- open: boolean;
3953
3953
  disabled: boolean;
3954
3954
  modal: boolean;
3955
+ open: boolean;
3956
+ defaultOpen: boolean;
3955
3957
  defaultValue: DateRange;
3956
3958
  readonly: boolean;
3957
3959
  isDateUnavailable: Matcher;
3958
3960
  pagedNavigation: boolean;
3959
3961
  preventDeselect: boolean;
3960
- weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
3961
3962
  weekdayFormat: WeekDayFormat;
3962
3963
  fixedWeeks: boolean;
3963
3964
  numberOfMonths: number;
@@ -3966,7 +3967,7 @@ declare const _default$111: __VLS_WithSlots$164<vue33.DefineComponent<DateRangeP
3966
3967
  maximumDays: number;
3967
3968
  isDateHighlightable: Matcher;
3968
3969
  closeOnSelect: boolean;
3969
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3970
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3970
3971
  default?: (props: {
3971
3972
  modelValue: DateRange;
3972
3973
  open: boolean;
@@ -3981,7 +3982,7 @@ type __VLS_WithSlots$164<T, S> = T & {
3981
3982
  //#endregion
3982
3983
  //#region src/DateRangePicker/DateRangePickerTrigger.vue.d.ts
3983
3984
  interface DateRangePickerTriggerProps extends PopoverTriggerProps {}
3984
- declare const _default$112: __VLS_WithSlots$163<vue33.DefineComponent<DateRangePickerTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DateRangePickerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
3985
+ declare const _default$112: __VLS_WithSlots$163<vue32.DefineComponent<DateRangePickerTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DateRangePickerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
3985
3986
  default?: (props: {}) => any;
3986
3987
  }>;
3987
3988
  type __VLS_WithSlots$163<T, S> = T & {
@@ -3993,11 +3994,11 @@ type __VLS_WithSlots$163<T, S> = T & {
3993
3994
  //#endregion
3994
3995
  //#region src/DropdownMenu/DropdownMenuArrow.vue.d.ts
3995
3996
  interface DropdownMenuArrowProps extends MenuArrowProps {}
3996
- declare const _default$121: __VLS_WithSlots$162<vue33.DefineComponent<DropdownMenuArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DropdownMenuArrowProps> & Readonly<{}>, {
3997
- as: AsTag | vue33.Component;
3997
+ declare const _default$121: __VLS_WithSlots$162<vue32.DefineComponent<DropdownMenuArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DropdownMenuArrowProps> & Readonly<{}>, {
3998
+ as: AsTag | vue32.Component;
3998
3999
  width: number;
3999
4000
  height: number;
4000
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4001
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4001
4002
  default?: (props: {}) => any;
4002
4003
  }>;
4003
4004
  type __VLS_WithSlots$162<T, S> = T & {
@@ -4010,13 +4011,13 @@ type __VLS_WithSlots$162<T, S> = T & {
4010
4011
  //#region src/DropdownMenu/DropdownMenuCheckboxItem.vue.d.ts
4011
4012
  type DropdownMenuCheckboxItemEmits = MenuCheckboxItemEmits;
4012
4013
  interface DropdownMenuCheckboxItemProps extends MenuCheckboxItemProps {}
4013
- declare const _default$122: __VLS_WithSlots$161<vue33.DefineComponent<DropdownMenuCheckboxItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4014
+ declare const _default$122: __VLS_WithSlots$161<vue32.DefineComponent<DropdownMenuCheckboxItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4014
4015
  select: (event: Event) => any;
4015
4016
  "update:modelValue": (payload: boolean) => any;
4016
- }, string, vue33.PublicProps, Readonly<DropdownMenuCheckboxItemProps> & Readonly<{
4017
+ }, string, vue32.PublicProps, Readonly<DropdownMenuCheckboxItemProps> & Readonly<{
4017
4018
  onSelect?: ((event: Event) => any) | undefined;
4018
4019
  "onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
4019
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4020
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4020
4021
  default?: (props: {}) => any;
4021
4022
  }>;
4022
4023
  type __VLS_WithSlots$161<T, S> = T & {
@@ -4029,19 +4030,19 @@ type __VLS_WithSlots$161<T, S> = T & {
4029
4030
  //#region src/DropdownMenu/DropdownMenuContent.vue.d.ts
4030
4031
  type DropdownMenuContentEmits = MenuContentEmits;
4031
4032
  interface DropdownMenuContentProps extends MenuContentProps {}
4032
- declare const _default$123: __VLS_WithSlots$160<vue33.DefineComponent<DropdownMenuContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4033
+ declare const _default$123: __VLS_WithSlots$160<vue32.DefineComponent<DropdownMenuContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4033
4034
  escapeKeyDown: (event: KeyboardEvent) => any;
4034
4035
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
4035
4036
  focusOutside: (event: FocusOutsideEvent) => any;
4036
4037
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
4037
4038
  closeAutoFocus: (event: Event) => any;
4038
- }, string, vue33.PublicProps, Readonly<DropdownMenuContentProps> & Readonly<{
4039
+ }, string, vue32.PublicProps, Readonly<DropdownMenuContentProps> & Readonly<{
4039
4040
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4040
4041
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
4041
4042
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
4042
4043
  onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
4043
4044
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
4044
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4045
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4045
4046
  default?: (props: {}) => any;
4046
4047
  }>;
4047
4048
  type __VLS_WithSlots$160<T, S> = T & {
@@ -4053,7 +4054,7 @@ type __VLS_WithSlots$160<T, S> = T & {
4053
4054
  //#endregion
4054
4055
  //#region src/DropdownMenu/DropdownMenuGroup.vue.d.ts
4055
4056
  interface DropdownMenuGroupProps extends MenuGroupProps {}
4056
- declare const _default$124: __VLS_WithSlots$159<vue33.DefineComponent<DropdownMenuGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DropdownMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4057
+ declare const _default$124: __VLS_WithSlots$159<vue32.DefineComponent<DropdownMenuGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DropdownMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4057
4058
  default?: (props: {}) => any;
4058
4059
  }>;
4059
4060
  type __VLS_WithSlots$159<T, S> = T & {
@@ -4066,11 +4067,11 @@ type __VLS_WithSlots$159<T, S> = T & {
4066
4067
  //#region src/DropdownMenu/DropdownMenuItem.vue.d.ts
4067
4068
  type DropdownMenuItemEmits = MenuItemEmits;
4068
4069
  interface DropdownMenuItemProps extends MenuItemProps {}
4069
- declare const _default$125: __VLS_WithSlots$158<vue33.DefineComponent<DropdownMenuItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4070
+ declare const _default$125: __VLS_WithSlots$158<vue32.DefineComponent<DropdownMenuItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4070
4071
  select: (event: Event) => any;
4071
- }, string, vue33.PublicProps, Readonly<DropdownMenuItemProps> & Readonly<{
4072
+ }, string, vue32.PublicProps, Readonly<DropdownMenuItemProps> & Readonly<{
4072
4073
  onSelect?: ((event: Event) => any) | undefined;
4073
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4074
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4074
4075
  default?: (props: {}) => any;
4075
4076
  }>;
4076
4077
  type __VLS_WithSlots$158<T, S> = T & {
@@ -4082,7 +4083,7 @@ type __VLS_WithSlots$158<T, S> = T & {
4082
4083
  //#endregion
4083
4084
  //#region src/DropdownMenu/DropdownMenuItemIndicator.vue.d.ts
4084
4085
  interface DropdownMenuItemIndicatorProps extends MenuItemIndicatorProps {}
4085
- declare const _default$126: __VLS_WithSlots$157<vue33.DefineComponent<DropdownMenuItemIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DropdownMenuItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4086
+ declare const _default$126: __VLS_WithSlots$157<vue32.DefineComponent<DropdownMenuItemIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DropdownMenuItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4086
4087
  default?: (props: {}) => any;
4087
4088
  }>;
4088
4089
  type __VLS_WithSlots$157<T, S> = T & {
@@ -4094,7 +4095,7 @@ type __VLS_WithSlots$157<T, S> = T & {
4094
4095
  //#endregion
4095
4096
  //#region src/DropdownMenu/DropdownMenuLabel.vue.d.ts
4096
4097
  interface DropdownMenuLabelProps extends MenuLabelProps {}
4097
- declare const _default$127: __VLS_WithSlots$156<vue33.DefineComponent<DropdownMenuLabelProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DropdownMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4098
+ declare const _default$127: __VLS_WithSlots$156<vue32.DefineComponent<DropdownMenuLabelProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DropdownMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4098
4099
  default?: (props: {}) => any;
4099
4100
  }>;
4100
4101
  type __VLS_WithSlots$156<T, S> = T & {
@@ -4106,7 +4107,7 @@ type __VLS_WithSlots$156<T, S> = T & {
4106
4107
  //#endregion
4107
4108
  //#region src/DropdownMenu/DropdownMenuPortal.vue.d.ts
4108
4109
  interface DropdownMenuPortalProps extends MenuPortalProps {}
4109
- declare const _default$128: __VLS_WithSlots$155<vue33.DefineComponent<DropdownMenuPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DropdownMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4110
+ declare const _default$128: __VLS_WithSlots$155<vue32.DefineComponent<DropdownMenuPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DropdownMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4110
4111
  default?: (props: {}) => any;
4111
4112
  }>;
4112
4113
  type __VLS_WithSlots$155<T, S> = T & {
@@ -4119,11 +4120,11 @@ type __VLS_WithSlots$155<T, S> = T & {
4119
4120
  //#region src/DropdownMenu/DropdownMenuRadioGroup.vue.d.ts
4120
4121
  type DropdownMenuRadioGroupEmits = MenuRadioGroupEmits;
4121
4122
  interface DropdownMenuRadioGroupProps extends MenuRadioGroupProps {}
4122
- declare const _default$129: __VLS_WithSlots$154<vue33.DefineComponent<MenuRadioGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4123
+ declare const _default$129: __VLS_WithSlots$154<vue32.DefineComponent<MenuRadioGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4123
4124
  "update:modelValue": (payload: AcceptableValue) => any;
4124
- }, string, vue33.PublicProps, Readonly<MenuRadioGroupProps> & Readonly<{
4125
+ }, string, vue32.PublicProps, Readonly<MenuRadioGroupProps> & Readonly<{
4125
4126
  "onUpdate:modelValue"?: ((payload: AcceptableValue) => any) | undefined;
4126
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4127
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4127
4128
  default?: (props: {}) => any;
4128
4129
  }>;
4129
4130
  type __VLS_WithSlots$154<T, S> = T & {
@@ -4136,11 +4137,11 @@ type __VLS_WithSlots$154<T, S> = T & {
4136
4137
  //#region src/DropdownMenu/DropdownMenuRadioItem.vue.d.ts
4137
4138
  type DropdownMenuRadioItemEmits = MenuRadioItemEmits;
4138
4139
  interface DropdownMenuRadioItemProps extends MenuRadioItemProps {}
4139
- declare const _default$130: __VLS_WithSlots$153<vue33.DefineComponent<DropdownMenuRadioItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4140
+ declare const _default$130: __VLS_WithSlots$153<vue32.DefineComponent<DropdownMenuRadioItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4140
4141
  select: (event: Event) => any;
4141
- }, string, vue33.PublicProps, Readonly<DropdownMenuRadioItemProps> & Readonly<{
4142
+ }, string, vue32.PublicProps, Readonly<DropdownMenuRadioItemProps> & Readonly<{
4142
4143
  onSelect?: ((event: Event) => any) | undefined;
4143
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4144
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4144
4145
  default?: (props: {}) => any;
4145
4146
  }>;
4146
4147
  type __VLS_WithSlots$153<T, S> = T & {
@@ -4167,14 +4168,14 @@ interface DropdownMenuRootContext {
4167
4168
  dir: Ref<Direction>;
4168
4169
  }
4169
4170
  declare const injectDropdownMenuRootContext: <T extends DropdownMenuRootContext | null | undefined = DropdownMenuRootContext>(fallback?: T | undefined) => T extends null ? DropdownMenuRootContext | null : DropdownMenuRootContext, provideDropdownMenuRootContext: (contextValue: DropdownMenuRootContext) => DropdownMenuRootContext;
4170
- declare const _default$131: __VLS_WithSlots$152<vue33.DefineComponent<DropdownMenuRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4171
+ declare const _default$131: __VLS_WithSlots$152<vue32.DefineComponent<DropdownMenuRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4171
4172
  "update:open": (payload: boolean) => any;
4172
- }, string, vue33.PublicProps, Readonly<DropdownMenuRootProps> & Readonly<{
4173
+ }, string, vue32.PublicProps, Readonly<DropdownMenuRootProps> & Readonly<{
4173
4174
  "onUpdate:open"?: ((payload: boolean) => any) | undefined;
4174
4175
  }>, {
4175
- open: boolean;
4176
4176
  modal: boolean;
4177
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4177
+ open: boolean;
4178
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4178
4179
  default?: (props: {
4179
4180
  /** Current open state */
4180
4181
  open: boolean;
@@ -4189,7 +4190,7 @@ type __VLS_WithSlots$152<T, S> = T & {
4189
4190
  //#endregion
4190
4191
  //#region src/DropdownMenu/DropdownMenuSeparator.vue.d.ts
4191
4192
  interface DropdownMenuSeparatorProps extends MenuSeparatorProps {}
4192
- declare const _default$132: __VLS_WithSlots$151<vue33.DefineComponent<DropdownMenuSeparatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DropdownMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4193
+ declare const _default$132: __VLS_WithSlots$151<vue32.DefineComponent<DropdownMenuSeparatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DropdownMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4193
4194
  default?: (props: {}) => any;
4194
4195
  }>;
4195
4196
  type __VLS_WithSlots$151<T, S> = T & {
@@ -4205,13 +4206,13 @@ interface DropdownMenuSubProps extends MenuSubProps {
4205
4206
  /** The open state of the dropdown menu when it is initially rendered. Use when you do not need to control its open state. */
4206
4207
  defaultOpen?: boolean;
4207
4208
  }
4208
- declare const _default$133: __VLS_WithSlots$150<vue33.DefineComponent<DropdownMenuSubProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4209
+ declare const _default$133: __VLS_WithSlots$150<vue32.DefineComponent<DropdownMenuSubProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4209
4210
  "update:open": (payload: boolean) => any;
4210
- }, string, vue33.PublicProps, Readonly<DropdownMenuSubProps> & Readonly<{
4211
+ }, string, vue32.PublicProps, Readonly<DropdownMenuSubProps> & Readonly<{
4211
4212
  "onUpdate:open"?: ((payload: boolean) => any) | undefined;
4212
4213
  }>, {
4213
4214
  open: boolean;
4214
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4215
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4215
4216
  default?: (props: {
4216
4217
  /** Current open state */
4217
4218
  open: boolean;
@@ -4227,7 +4228,7 @@ type __VLS_WithSlots$150<T, S> = T & {
4227
4228
  //#region src/DropdownMenu/DropdownMenuSubContent.vue.d.ts
4228
4229
  type DropdownMenuSubContentEmits = MenuSubContentEmits;
4229
4230
  interface DropdownMenuSubContentProps extends MenuSubContentProps {}
4230
- declare const _default$134: __VLS_WithSlots$149<vue33.DefineComponent<DropdownMenuSubContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4231
+ declare const _default$134: __VLS_WithSlots$149<vue32.DefineComponent<DropdownMenuSubContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4231
4232
  escapeKeyDown: (event: KeyboardEvent) => any;
4232
4233
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
4233
4234
  focusOutside: (event: FocusOutsideEvent) => any;
@@ -4235,7 +4236,7 @@ declare const _default$134: __VLS_WithSlots$149<vue33.DefineComponent<DropdownMe
4235
4236
  openAutoFocus: (event: Event) => any;
4236
4237
  closeAutoFocus: (event: Event) => any;
4237
4238
  entryFocus: (event: Event) => any;
4238
- }, string, vue33.PublicProps, Readonly<DropdownMenuSubContentProps> & Readonly<{
4239
+ }, string, vue32.PublicProps, Readonly<DropdownMenuSubContentProps> & Readonly<{
4239
4240
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4240
4241
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
4241
4242
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
@@ -4243,7 +4244,7 @@ declare const _default$134: __VLS_WithSlots$149<vue33.DefineComponent<DropdownMe
4243
4244
  onOpenAutoFocus?: ((event: Event) => any) | undefined;
4244
4245
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
4245
4246
  onEntryFocus?: ((event: Event) => any) | undefined;
4246
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4247
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4247
4248
  default?: (props: {}) => any;
4248
4249
  }>;
4249
4250
  type __VLS_WithSlots$149<T, S> = T & {
@@ -4255,7 +4256,7 @@ type __VLS_WithSlots$149<T, S> = T & {
4255
4256
  //#endregion
4256
4257
  //#region src/DropdownMenu/DropdownMenuSubTrigger.vue.d.ts
4257
4258
  interface DropdownMenuSubTriggerProps extends MenuSubTriggerProps {}
4258
- declare const _default$135: __VLS_WithSlots$148<vue33.DefineComponent<DropdownMenuSubTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DropdownMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4259
+ declare const _default$135: __VLS_WithSlots$148<vue32.DefineComponent<DropdownMenuSubTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DropdownMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4259
4260
  default?: (props: {}) => any;
4260
4261
  }>;
4261
4262
  type __VLS_WithSlots$148<T, S> = T & {
@@ -4270,9 +4271,9 @@ interface DropdownMenuTriggerProps extends PrimitiveProps {
4270
4271
  /** When `true`, prevents the user from interacting with item */
4271
4272
  disabled?: boolean;
4272
4273
  }
4273
- declare const _default$136: __VLS_WithSlots$147<vue33.DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {
4274
- as: AsTag | vue33.Component;
4275
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4274
+ declare const _default$136: __VLS_WithSlots$147<vue32.DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {
4275
+ as: AsTag | vue32.Component;
4276
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4276
4277
  default?: (props: {}) => any;
4277
4278
  }>;
4278
4279
  type __VLS_WithSlots$147<T, S> = T & {
@@ -4284,9 +4285,9 @@ type __VLS_WithSlots$147<T, S> = T & {
4284
4285
  //#endregion
4285
4286
  //#region src/Editable/EditableArea.vue.d.ts
4286
4287
  interface EditableAreaProps extends PrimitiveProps {}
4287
- declare const _default$137: __VLS_WithSlots$146<vue33.DefineComponent<EditableAreaProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<EditableAreaProps> & Readonly<{}>, {
4288
- as: AsTag | vue33.Component;
4289
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4288
+ declare const _default$137: __VLS_WithSlots$146<vue32.DefineComponent<EditableAreaProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<EditableAreaProps> & Readonly<{}>, {
4289
+ as: AsTag | vue32.Component;
4290
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4290
4291
  default?: (props: {}) => any;
4291
4292
  }>;
4292
4293
  type __VLS_WithSlots$146<T, S> = T & {
@@ -4298,9 +4299,9 @@ type __VLS_WithSlots$146<T, S> = T & {
4298
4299
  //#endregion
4299
4300
  //#region src/Editable/EditableCancelTrigger.vue.d.ts
4300
4301
  interface EditableCancelTriggerProps extends PrimitiveProps {}
4301
- declare const _default$138: __VLS_WithSlots$145<vue33.DefineComponent<EditableCancelTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<EditableCancelTriggerProps> & Readonly<{}>, {
4302
- as: AsTag | vue33.Component;
4303
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4302
+ declare const _default$138: __VLS_WithSlots$145<vue32.DefineComponent<EditableCancelTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<EditableCancelTriggerProps> & Readonly<{}>, {
4303
+ as: AsTag | vue32.Component;
4304
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4304
4305
  default?: (props: {}) => any;
4305
4306
  }>;
4306
4307
  type __VLS_WithSlots$145<T, S> = T & {
@@ -4312,9 +4313,9 @@ type __VLS_WithSlots$145<T, S> = T & {
4312
4313
  //#endregion
4313
4314
  //#region src/Editable/EditableEditTrigger.vue.d.ts
4314
4315
  interface EditableEditTriggerProps extends PrimitiveProps {}
4315
- declare const _default$139: __VLS_WithSlots$144<vue33.DefineComponent<EditableEditTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<EditableEditTriggerProps> & Readonly<{}>, {
4316
- as: AsTag | vue33.Component;
4317
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4316
+ declare const _default$139: __VLS_WithSlots$144<vue32.DefineComponent<EditableEditTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<EditableEditTriggerProps> & Readonly<{}>, {
4317
+ as: AsTag | vue32.Component;
4318
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4318
4319
  default?: (props: {}) => any;
4319
4320
  }>;
4320
4321
  type __VLS_WithSlots$144<T, S> = T & {
@@ -4326,9 +4327,9 @@ type __VLS_WithSlots$144<T, S> = T & {
4326
4327
  //#endregion
4327
4328
  //#region src/Editable/EditableInput.vue.d.ts
4328
4329
  interface EditableInputProps extends PrimitiveProps {}
4329
- declare const _default$140: __VLS_WithSlots$143<vue33.DefineComponent<EditableInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<EditableInputProps> & Readonly<{}>, {
4330
- as: AsTag | vue33.Component;
4331
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4330
+ declare const _default$140: __VLS_WithSlots$143<vue32.DefineComponent<EditableInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<EditableInputProps> & Readonly<{}>, {
4331
+ as: AsTag | vue32.Component;
4332
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4332
4333
  default?: (props: {}) => any;
4333
4334
  }>;
4334
4335
  type __VLS_WithSlots$143<T, S> = T & {
@@ -4340,9 +4341,9 @@ type __VLS_WithSlots$143<T, S> = T & {
4340
4341
  //#endregion
4341
4342
  //#region src/Editable/EditablePreview.vue.d.ts
4342
4343
  interface EditablePreviewProps extends PrimitiveProps {}
4343
- declare const _default$141: __VLS_WithSlots$142<vue33.DefineComponent<EditablePreviewProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<EditablePreviewProps> & Readonly<{}>, {
4344
- as: AsTag | vue33.Component;
4345
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4344
+ declare const _default$141: __VLS_WithSlots$142<vue32.DefineComponent<EditablePreviewProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<EditablePreviewProps> & Readonly<{}>, {
4345
+ as: AsTag | vue32.Component;
4346
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4346
4347
  default?: (props: {}) => any;
4347
4348
  }>;
4348
4349
  type __VLS_WithSlots$142<T, S> = T & {
@@ -4419,24 +4420,24 @@ type EditableRootEmits = {
4419
4420
  'update:state': [state: 'edit' | 'submit' | 'cancel'];
4420
4421
  };
4421
4422
  declare const injectEditableRootContext: <T extends EditableRootContext | null | undefined = EditableRootContext>(fallback?: T | undefined) => T extends null ? EditableRootContext | null : EditableRootContext, provideEditableRootContext: (contextValue: EditableRootContext) => EditableRootContext;
4422
- declare const _default$142: __VLS_WithSlots$141<vue33.DefineComponent<EditableRootProps, {
4423
+ declare const _default$142: __VLS_WithSlots$141<vue32.DefineComponent<EditableRootProps, {
4423
4424
  /** Function to submit the value of the editable */
4424
4425
  submit: () => void;
4425
4426
  /** Function to cancel the value of the editable */
4426
4427
  cancel: () => void;
4427
4428
  /** Function to set the editable in edit mode */
4428
4429
  edit: () => void;
4429
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4430
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4430
4431
  submit: (value: string | null | undefined) => any;
4431
4432
  "update:modelValue": (value: string) => any;
4432
4433
  "update:state": (state: "cancel" | "submit" | "edit") => any;
4433
- }, string, vue33.PublicProps, Readonly<EditableRootProps> & Readonly<{
4434
+ }, string, vue32.PublicProps, Readonly<EditableRootProps> & Readonly<{
4434
4435
  onSubmit?: ((value: string | null | undefined) => any) | undefined;
4435
4436
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
4436
4437
  "onUpdate:state"?: ((state: "cancel" | "submit" | "edit") => any) | undefined;
4437
4438
  }>, {
4438
- as: AsTag | vue33.Component;
4439
4439
  required: boolean;
4440
+ as: AsTag | vue32.Component;
4440
4441
  placeholder: string | {
4441
4442
  edit: string;
4442
4443
  preview: string;
@@ -4446,7 +4447,7 @@ declare const _default$142: __VLS_WithSlots$141<vue33.DefineComponent<EditableRo
4446
4447
  selectOnFocus: boolean;
4447
4448
  submitMode: SubmitMode;
4448
4449
  autoResize: boolean;
4449
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4450
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4450
4451
  default?: (props: {
4451
4452
  /** Whether the editable field is in edit mode */
4452
4453
  isEditing: boolean;
@@ -4471,9 +4472,9 @@ type __VLS_WithSlots$141<T, S> = T & {
4471
4472
  //#endregion
4472
4473
  //#region src/Editable/EditableSubmitTrigger.vue.d.ts
4473
4474
  interface EditableSubmitTriggerProps extends PrimitiveProps {}
4474
- declare const _default$143: __VLS_WithSlots$140<vue33.DefineComponent<EditableSubmitTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<EditableSubmitTriggerProps> & Readonly<{}>, {
4475
- as: AsTag | vue33.Component;
4476
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4475
+ declare const _default$143: __VLS_WithSlots$140<vue32.DefineComponent<EditableSubmitTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<EditableSubmitTriggerProps> & Readonly<{}>, {
4476
+ as: AsTag | vue32.Component;
4477
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4477
4478
  default?: (props: {}) => any;
4478
4479
  }>;
4479
4480
  type __VLS_WithSlots$140<T, S> = T & {
@@ -4485,11 +4486,11 @@ type __VLS_WithSlots$140<T, S> = T & {
4485
4486
  //#endregion
4486
4487
  //#region src/HoverCard/HoverCardArrow.vue.d.ts
4487
4488
  interface HoverCardArrowProps extends PopperArrowProps {}
4488
- declare const _default$145: __VLS_WithSlots$139<vue33.DefineComponent<HoverCardArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<HoverCardArrowProps> & Readonly<{}>, {
4489
- as: AsTag | vue33.Component;
4489
+ declare const _default$145: __VLS_WithSlots$139<vue32.DefineComponent<HoverCardArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<HoverCardArrowProps> & Readonly<{}>, {
4490
+ as: AsTag | vue32.Component;
4490
4491
  width: number;
4491
4492
  height: number;
4492
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4493
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4493
4494
  default?: (props: {}) => any;
4494
4495
  }>;
4495
4496
  type __VLS_WithSlots$139<T, S> = T & {
@@ -4510,17 +4511,17 @@ interface HoverCardContentProps extends HoverCardContentImplProps {
4510
4511
  */
4511
4512
  forceMount?: boolean;
4512
4513
  }
4513
- declare const _default$146: __VLS_WithSlots$138<vue33.DefineComponent<HoverCardContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4514
+ declare const _default$146: __VLS_WithSlots$138<vue32.DefineComponent<HoverCardContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4514
4515
  escapeKeyDown: (event: KeyboardEvent) => any;
4515
4516
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
4516
4517
  focusOutside: (event: FocusOutsideEvent) => any;
4517
4518
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
4518
- }, string, vue33.PublicProps, Readonly<HoverCardContentProps> & Readonly<{
4519
+ }, string, vue32.PublicProps, Readonly<HoverCardContentProps> & Readonly<{
4519
4520
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4520
4521
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
4521
4522
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
4522
4523
  onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
4523
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4524
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4524
4525
  default?: (props: {}) => any;
4525
4526
  }>;
4526
4527
  type __VLS_WithSlots$138<T, S> = T & {
@@ -4532,7 +4533,7 @@ type __VLS_WithSlots$138<T, S> = T & {
4532
4533
  //#endregion
4533
4534
  //#region src/HoverCard/HoverCardPortal.vue.d.ts
4534
4535
  interface HoverCardPortalProps extends TeleportProps {}
4535
- declare const _default$147: __VLS_WithSlots$137<vue33.DefineComponent<HoverCardPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<HoverCardPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4536
+ declare const _default$147: __VLS_WithSlots$137<vue32.DefineComponent<HoverCardPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<HoverCardPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4536
4537
  default?: (props: {}) => any;
4537
4538
  }>;
4538
4539
  type __VLS_WithSlots$137<T, S> = T & {
@@ -4569,16 +4570,16 @@ interface HoverCardRootContext {
4569
4570
  triggerElement: Ref<HTMLElement | undefined>;
4570
4571
  }
4571
4572
  declare const injectHoverCardRootContext: <T extends HoverCardRootContext | null | undefined = HoverCardRootContext>(fallback?: T | undefined) => T extends null ? HoverCardRootContext | null : HoverCardRootContext, provideHoverCardRootContext: (contextValue: HoverCardRootContext) => HoverCardRootContext;
4572
- declare const _default$148: __VLS_WithSlots$136<vue33.DefineComponent<HoverCardRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4573
+ declare const _default$148: __VLS_WithSlots$136<vue32.DefineComponent<HoverCardRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4573
4574
  "update:open": (value: boolean) => any;
4574
- }, string, vue33.PublicProps, Readonly<HoverCardRootProps> & Readonly<{
4575
+ }, string, vue32.PublicProps, Readonly<HoverCardRootProps> & Readonly<{
4575
4576
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
4576
4577
  }>, {
4577
- defaultOpen: boolean;
4578
4578
  open: boolean;
4579
+ defaultOpen: boolean;
4579
4580
  openDelay: number;
4580
4581
  closeDelay: number;
4581
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4582
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4582
4583
  default?: (props: {
4583
4584
  /** Current open state */
4584
4585
  open: boolean;
@@ -4593,9 +4594,9 @@ type __VLS_WithSlots$136<T, S> = T & {
4593
4594
  //#endregion
4594
4595
  //#region src/HoverCard/HoverCardTrigger.vue.d.ts
4595
4596
  interface HoverCardTriggerProps extends PopperAnchorProps {}
4596
- declare const _default$149: __VLS_WithSlots$135<vue33.DefineComponent<HoverCardTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<HoverCardTriggerProps> & Readonly<{}>, {
4597
- as: AsTag | vue33.Component;
4598
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4597
+ declare const _default$149: __VLS_WithSlots$135<vue32.DefineComponent<HoverCardTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<HoverCardTriggerProps> & Readonly<{}>, {
4598
+ as: AsTag | vue32.Component;
4599
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4599
4600
  default?: (props: {}) => any;
4600
4601
  }>;
4601
4602
  type __VLS_WithSlots$135<T, S> = T & {
@@ -4610,9 +4611,9 @@ interface LabelProps extends PrimitiveProps {
4610
4611
  /** The id of the element the label is associated with. */
4611
4612
  for?: string;
4612
4613
  }
4613
- declare const _default$150: __VLS_WithSlots$134<vue33.DefineComponent<LabelProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<LabelProps> & Readonly<{}>, {
4614
- as: AsTag | vue33.Component;
4615
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4614
+ declare const _default$150: __VLS_WithSlots$134<vue32.DefineComponent<LabelProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<LabelProps> & Readonly<{}>, {
4615
+ as: AsTag | vue32.Component;
4616
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4616
4617
  default?: (props: {}) => any;
4617
4618
  }>;
4618
4619
  type __VLS_WithSlots$134<T, S> = T & {
@@ -4624,11 +4625,11 @@ type __VLS_WithSlots$134<T, S> = T & {
4624
4625
  //#endregion
4625
4626
  //#region src/Menubar/MenubarArrow.vue.d.ts
4626
4627
  interface MenubarArrowProps extends MenuArrowProps {}
4627
- declare const _default$159: __VLS_WithSlots$133<vue33.DefineComponent<MenubarArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<MenubarArrowProps> & Readonly<{}>, {
4628
- as: AsTag | vue33.Component;
4628
+ declare const _default$159: __VLS_WithSlots$133<vue32.DefineComponent<MenubarArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<MenubarArrowProps> & Readonly<{}>, {
4629
+ as: AsTag | vue32.Component;
4629
4630
  width: number;
4630
4631
  height: number;
4631
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4632
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4632
4633
  default?: (props: {}) => any;
4633
4634
  }>;
4634
4635
  type __VLS_WithSlots$133<T, S> = T & {
@@ -4641,13 +4642,13 @@ type __VLS_WithSlots$133<T, S> = T & {
4641
4642
  //#region src/Menubar/MenubarCheckboxItem.vue.d.ts
4642
4643
  type MenubarCheckboxItemEmits = MenuCheckboxItemEmits;
4643
4644
  interface MenubarCheckboxItemProps extends MenuCheckboxItemProps {}
4644
- declare const _default$160: __VLS_WithSlots$132<vue33.DefineComponent<MenubarCheckboxItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4645
+ declare const _default$160: __VLS_WithSlots$132<vue32.DefineComponent<MenubarCheckboxItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4645
4646
  select: (event: Event) => any;
4646
4647
  "update:modelValue": (payload: boolean) => any;
4647
- }, string, vue33.PublicProps, Readonly<MenubarCheckboxItemProps> & Readonly<{
4648
+ }, string, vue32.PublicProps, Readonly<MenubarCheckboxItemProps> & Readonly<{
4648
4649
  onSelect?: ((event: Event) => any) | undefined;
4649
4650
  "onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
4650
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4651
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4651
4652
  default?: (props: {}) => any;
4652
4653
  }>;
4653
4654
  type __VLS_WithSlots$132<T, S> = T & {
@@ -4659,13 +4660,13 @@ type __VLS_WithSlots$132<T, S> = T & {
4659
4660
  //#endregion
4660
4661
  //#region src/Menubar/MenubarContent.vue.d.ts
4661
4662
  interface MenubarContentProps extends MenuContentProps {}
4662
- declare const _default$161: __VLS_WithSlots$131<vue33.DefineComponent<MenubarContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4663
+ declare const _default$161: __VLS_WithSlots$131<vue32.DefineComponent<MenubarContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4663
4664
  escapeKeyDown: (event: KeyboardEvent) => any;
4664
4665
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
4665
4666
  focusOutside: (event: FocusOutsideEvent) => any;
4666
4667
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
4667
4668
  closeAutoFocus: (event: Event) => any;
4668
- }, string, vue33.PublicProps, Readonly<MenubarContentProps> & Readonly<{
4669
+ }, string, vue32.PublicProps, Readonly<MenubarContentProps> & Readonly<{
4669
4670
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4670
4671
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
4671
4672
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
@@ -4673,7 +4674,7 @@ declare const _default$161: __VLS_WithSlots$131<vue33.DefineComponent<MenubarCon
4673
4674
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
4674
4675
  }>, {
4675
4676
  align: Align;
4676
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4677
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4677
4678
  default?: (props: {}) => any;
4678
4679
  }>;
4679
4680
  type __VLS_WithSlots$131<T, S> = T & {
@@ -4685,7 +4686,7 @@ type __VLS_WithSlots$131<T, S> = T & {
4685
4686
  //#endregion
4686
4687
  //#region src/Menubar/MenubarGroup.vue.d.ts
4687
4688
  interface MenubarGroupProps extends MenuGroupProps {}
4688
- declare const _default$162: __VLS_WithSlots$130<vue33.DefineComponent<MenubarGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<MenubarGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4689
+ declare const _default$162: __VLS_WithSlots$130<vue32.DefineComponent<MenubarGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<MenubarGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4689
4690
  default?: (props: {}) => any;
4690
4691
  }>;
4691
4692
  type __VLS_WithSlots$130<T, S> = T & {
@@ -4698,11 +4699,11 @@ type __VLS_WithSlots$130<T, S> = T & {
4698
4699
  //#region src/Menubar/MenubarItem.vue.d.ts
4699
4700
  type MenubarItemEmits = MenuItemEmits;
4700
4701
  interface MenubarItemProps extends MenuItemProps {}
4701
- declare const _default$163: __VLS_WithSlots$129<vue33.DefineComponent<MenubarItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4702
+ declare const _default$163: __VLS_WithSlots$129<vue32.DefineComponent<MenubarItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4702
4703
  select: (event: Event) => any;
4703
- }, string, vue33.PublicProps, Readonly<MenubarItemProps> & Readonly<{
4704
+ }, string, vue32.PublicProps, Readonly<MenubarItemProps> & Readonly<{
4704
4705
  onSelect?: ((event: Event) => any) | undefined;
4705
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4706
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4706
4707
  default?: (props: {}) => any;
4707
4708
  }>;
4708
4709
  type __VLS_WithSlots$129<T, S> = T & {
@@ -4714,7 +4715,7 @@ type __VLS_WithSlots$129<T, S> = T & {
4714
4715
  //#endregion
4715
4716
  //#region src/Menubar/MenubarItemIndicator.vue.d.ts
4716
4717
  interface MenubarItemIndicatorProps extends MenuItemIndicatorProps {}
4717
- declare const _default$164: __VLS_WithSlots$128<vue33.DefineComponent<MenubarItemIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<MenubarItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4718
+ declare const _default$164: __VLS_WithSlots$128<vue32.DefineComponent<MenubarItemIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<MenubarItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4718
4719
  default?: (props: {}) => any;
4719
4720
  }>;
4720
4721
  type __VLS_WithSlots$128<T, S> = T & {
@@ -4726,7 +4727,7 @@ type __VLS_WithSlots$128<T, S> = T & {
4726
4727
  //#endregion
4727
4728
  //#region src/Menubar/MenubarLabel.vue.d.ts
4728
4729
  interface MenubarLabelProps extends MenuLabelProps {}
4729
- declare const _default$165: __VLS_WithSlots$127<vue33.DefineComponent<MenubarLabelProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<MenubarLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4730
+ declare const _default$165: __VLS_WithSlots$127<vue32.DefineComponent<MenubarLabelProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<MenubarLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4730
4731
  default?: (props: {}) => any;
4731
4732
  }>;
4732
4733
  type __VLS_WithSlots$127<T, S> = T & {
@@ -4753,7 +4754,7 @@ type MenubarMenuContext = {
4753
4754
  wasKeyboardTriggerOpenRef: Ref<boolean>;
4754
4755
  };
4755
4756
  declare const injectMenubarMenuContext: <T extends MenubarMenuContext | null | undefined = MenubarMenuContext>(fallback?: T | undefined) => T extends null ? MenubarMenuContext | null : MenubarMenuContext, provideMenubarMenuContext: (contextValue: MenubarMenuContext) => MenubarMenuContext;
4756
- declare const _default$166: __VLS_WithSlots$126<vue33.DefineComponent<MenubarMenuProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<MenubarMenuProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4757
+ declare const _default$166: __VLS_WithSlots$126<vue32.DefineComponent<MenubarMenuProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<MenubarMenuProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4757
4758
  default?: (props: {}) => any;
4758
4759
  }>;
4759
4760
  type __VLS_WithSlots$126<T, S> = T & {
@@ -4765,7 +4766,7 @@ type __VLS_WithSlots$126<T, S> = T & {
4765
4766
  //#endregion
4766
4767
  //#region src/Menubar/MenubarPortal.vue.d.ts
4767
4768
  interface MenubarPortalProps extends MenuPortalProps {}
4768
- declare const _default$167: __VLS_WithSlots$125<vue33.DefineComponent<MenubarPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<MenubarPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4769
+ declare const _default$167: __VLS_WithSlots$125<vue32.DefineComponent<MenubarPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<MenubarPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4769
4770
  default?: (props: {}) => any;
4770
4771
  }>;
4771
4772
  type __VLS_WithSlots$125<T, S> = T & {
@@ -4778,11 +4779,11 @@ type __VLS_WithSlots$125<T, S> = T & {
4778
4779
  //#region src/Menubar/MenubarRadioGroup.vue.d.ts
4779
4780
  type MenubarRadioGroupEmits = MenuRadioGroupEmits;
4780
4781
  interface MenubarRadioGroupProps extends MenuRadioGroupProps {}
4781
- declare const _default$168: __VLS_WithSlots$124<vue33.DefineComponent<MenubarRadioGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4782
+ declare const _default$168: __VLS_WithSlots$124<vue32.DefineComponent<MenubarRadioGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4782
4783
  "update:modelValue": (payload: AcceptableValue) => any;
4783
- }, string, vue33.PublicProps, Readonly<MenubarRadioGroupProps> & Readonly<{
4784
+ }, string, vue32.PublicProps, Readonly<MenubarRadioGroupProps> & Readonly<{
4784
4785
  "onUpdate:modelValue"?: ((payload: AcceptableValue) => any) | undefined;
4785
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4786
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4786
4787
  default?: (props: {}) => any;
4787
4788
  }>;
4788
4789
  type __VLS_WithSlots$124<T, S> = T & {
@@ -4795,11 +4796,11 @@ type __VLS_WithSlots$124<T, S> = T & {
4795
4796
  //#region src/Menubar/MenubarRadioItem.vue.d.ts
4796
4797
  type MenubarRadioItemEmits = MenuRadioItemEmits;
4797
4798
  interface MenubarRadioItemProps extends MenuRadioItemProps {}
4798
- declare const _default$169: __VLS_WithSlots$123<vue33.DefineComponent<MenuRadioItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4799
+ declare const _default$169: __VLS_WithSlots$123<vue32.DefineComponent<MenuRadioItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4799
4800
  select: (event: Event) => any;
4800
- }, string, vue33.PublicProps, Readonly<MenuRadioItemProps> & Readonly<{
4801
+ }, string, vue32.PublicProps, Readonly<MenuRadioItemProps> & Readonly<{
4801
4802
  onSelect?: ((event: Event) => any) | undefined;
4802
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4803
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4803
4804
  default?: (props: {}) => any;
4804
4805
  }>;
4805
4806
  type __VLS_WithSlots$123<T, S> = T & {
@@ -4837,13 +4838,13 @@ interface MenubarRootContext {
4837
4838
  onMenuToggle: (value: string) => void;
4838
4839
  }
4839
4840
  declare const injectMenubarRootContext: <T extends MenubarRootContext | null | undefined = MenubarRootContext>(fallback?: T | undefined) => T extends null ? MenubarRootContext | null : MenubarRootContext, provideMenubarRootContext: (contextValue: MenubarRootContext) => MenubarRootContext;
4840
- declare const _default$170: __VLS_WithSlots$122<vue33.DefineComponent<MenubarRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4841
+ declare const _default$170: __VLS_WithSlots$122<vue32.DefineComponent<MenubarRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4841
4842
  "update:modelValue": (value: boolean) => any;
4842
- }, string, vue33.PublicProps, Readonly<MenubarRootProps> & Readonly<{
4843
+ }, string, vue32.PublicProps, Readonly<MenubarRootProps> & Readonly<{
4843
4844
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
4844
4845
  }>, {
4845
4846
  loop: boolean;
4846
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4847
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4847
4848
  default?: (props: {
4848
4849
  /** Current input values */
4849
4850
  modelValue: string;
@@ -4858,7 +4859,7 @@ type __VLS_WithSlots$122<T, S> = T & {
4858
4859
  //#endregion
4859
4860
  //#region src/Menubar/MenubarSeparator.vue.d.ts
4860
4861
  interface MenubarSeparatorProps extends MenuSeparatorProps {}
4861
- declare const _default$171: __VLS_WithSlots$121<vue33.DefineComponent<MenubarSeparatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<MenubarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4862
+ declare const _default$171: __VLS_WithSlots$121<vue32.DefineComponent<MenubarSeparatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<MenubarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4862
4863
  default?: (props: {}) => any;
4863
4864
  }>;
4864
4865
  type __VLS_WithSlots$121<T, S> = T & {
@@ -4874,13 +4875,13 @@ interface MenubarSubProps extends MenuSubProps {
4874
4875
  /** The open state of the submenu when it is initially rendered. Use when you do not need to control its open state. */
4875
4876
  defaultOpen?: boolean;
4876
4877
  }
4877
- declare const _default$172: __VLS_WithSlots$120<vue33.DefineComponent<MenubarSubProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4878
+ declare const _default$172: __VLS_WithSlots$120<vue32.DefineComponent<MenubarSubProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4878
4879
  "update:open": (payload: boolean) => any;
4879
- }, string, vue33.PublicProps, Readonly<MenubarSubProps> & Readonly<{
4880
+ }, string, vue32.PublicProps, Readonly<MenubarSubProps> & Readonly<{
4880
4881
  "onUpdate:open"?: ((payload: boolean) => any) | undefined;
4881
4882
  }>, {
4882
4883
  open: boolean;
4883
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4884
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4884
4885
  default?: (props: {
4885
4886
  /** Current open state */
4886
4887
  open: boolean;
@@ -4896,7 +4897,7 @@ type __VLS_WithSlots$120<T, S> = T & {
4896
4897
  //#region src/Menubar/MenubarSubContent.vue.d.ts
4897
4898
  type MenubarSubContentEmits = MenuSubContentEmits;
4898
4899
  interface MenubarSubContentProps extends MenuSubContentProps {}
4899
- declare const _default$173: __VLS_WithSlots$119<vue33.DefineComponent<MenubarSubContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4900
+ declare const _default$173: __VLS_WithSlots$119<vue32.DefineComponent<MenubarSubContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4900
4901
  escapeKeyDown: (event: KeyboardEvent) => any;
4901
4902
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
4902
4903
  focusOutside: (event: FocusOutsideEvent) => any;
@@ -4904,7 +4905,7 @@ declare const _default$173: __VLS_WithSlots$119<vue33.DefineComponent<MenubarSub
4904
4905
  openAutoFocus: (event: Event) => any;
4905
4906
  closeAutoFocus: (event: Event) => any;
4906
4907
  entryFocus: (event: Event) => any;
4907
- }, string, vue33.PublicProps, Readonly<MenubarSubContentProps> & Readonly<{
4908
+ }, string, vue32.PublicProps, Readonly<MenubarSubContentProps> & Readonly<{
4908
4909
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4909
4910
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
4910
4911
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
@@ -4912,7 +4913,7 @@ declare const _default$173: __VLS_WithSlots$119<vue33.DefineComponent<MenubarSub
4912
4913
  onOpenAutoFocus?: ((event: Event) => any) | undefined;
4913
4914
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
4914
4915
  onEntryFocus?: ((event: Event) => any) | undefined;
4915
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4916
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4916
4917
  default?: (props: {}) => any;
4917
4918
  }>;
4918
4919
  type __VLS_WithSlots$119<T, S> = T & {
@@ -4924,7 +4925,7 @@ type __VLS_WithSlots$119<T, S> = T & {
4924
4925
  //#endregion
4925
4926
  //#region src/Menubar/MenubarSubTrigger.vue.d.ts
4926
4927
  interface MenubarSubTriggerProps extends MenuSubTriggerProps {}
4927
- declare const _default$174: __VLS_WithSlots$118<vue33.DefineComponent<MenubarSubTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<MenubarSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4928
+ declare const _default$174: __VLS_WithSlots$118<vue32.DefineComponent<MenubarSubTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<MenubarSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4928
4929
  default?: (props: {}) => any;
4929
4930
  }>;
4930
4931
  type __VLS_WithSlots$118<T, S> = T & {
@@ -4939,9 +4940,9 @@ interface MenubarTriggerProps extends PrimitiveProps {
4939
4940
  /** When `true`, prevents the user from interacting with item */
4940
4941
  disabled?: boolean;
4941
4942
  }
4942
- declare const _default$175: __VLS_WithSlots$117<vue33.DefineComponent<MenubarTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<MenubarTriggerProps> & Readonly<{}>, {
4943
- as: AsTag | vue33.Component;
4944
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4943
+ declare const _default$175: __VLS_WithSlots$117<vue32.DefineComponent<MenubarTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<MenubarTriggerProps> & Readonly<{}>, {
4944
+ as: AsTag | vue32.Component;
4945
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4945
4946
  default?: (props: {}) => any;
4946
4947
  }>;
4947
4948
  type __VLS_WithSlots$117<T, S> = T & {
@@ -4964,17 +4965,17 @@ interface NavigationMenuContentProps extends NavigationMenuContentImplProps {
4964
4965
  */
4965
4966
  forceMount?: boolean;
4966
4967
  }
4967
- declare const _default$176: __VLS_WithSlots$116<vue33.DefineComponent<NavigationMenuContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
4968
+ declare const _default$176: __VLS_WithSlots$116<vue32.DefineComponent<NavigationMenuContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
4968
4969
  escapeKeyDown: (event: KeyboardEvent) => any;
4969
4970
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
4970
4971
  focusOutside: (event: FocusOutsideEvent) => any;
4971
4972
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
4972
- }, string, vue33.PublicProps, Readonly<NavigationMenuContentProps> & Readonly<{
4973
+ }, string, vue32.PublicProps, Readonly<NavigationMenuContentProps> & Readonly<{
4973
4974
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4974
4975
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
4975
4976
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
4976
4977
  onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
4977
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4978
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4978
4979
  default?: (props: {}) => any;
4979
4980
  }>;
4980
4981
  type __VLS_WithSlots$116<T, S> = T & {
@@ -4992,7 +4993,7 @@ interface NavigationMenuIndicatorProps extends PrimitiveProps {
4992
4993
  */
4993
4994
  forceMount?: boolean;
4994
4995
  }
4995
- declare const _default$177: __VLS_WithSlots$115<vue33.DefineComponent<NavigationMenuIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<NavigationMenuIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
4996
+ declare const _default$177: __VLS_WithSlots$115<vue32.DefineComponent<NavigationMenuIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<NavigationMenuIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
4996
4997
  default?: (props: {}) => any;
4997
4998
  }>;
4998
4999
  type __VLS_WithSlots$115<T, S> = T & {
@@ -5023,9 +5024,9 @@ type NavigationMenuItemContext = {
5023
5024
  onRootContentClose: () => void;
5024
5025
  };
5025
5026
  declare const injectNavigationMenuItemContext: <T extends NavigationMenuItemContext | null | undefined = NavigationMenuItemContext>(fallback?: T | undefined) => T extends null ? NavigationMenuItemContext | null : NavigationMenuItemContext, provideNavigationMenuItemContext: (contextValue: NavigationMenuItemContext) => NavigationMenuItemContext;
5026
- declare const _default$178: __VLS_WithSlots$114<vue33.DefineComponent<NavigationMenuItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<NavigationMenuItemProps> & Readonly<{}>, {
5027
- as: AsTag | vue33.Component;
5028
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5027
+ declare const _default$178: __VLS_WithSlots$114<vue32.DefineComponent<NavigationMenuItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<NavigationMenuItemProps> & Readonly<{}>, {
5028
+ as: AsTag | vue32.Component;
5029
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5029
5030
  default?: (props: {}) => any;
5030
5031
  }>;
5031
5032
  type __VLS_WithSlots$114<T, S> = T & {
@@ -5050,17 +5051,17 @@ interface NavigationMenuLinkProps extends PrimitiveProps {
5050
5051
  /** Used to identify the link as the currently active page. */
5051
5052
  active?: boolean;
5052
5053
  }
5053
- declare const _default$179: __VLS_WithSlots$113<vue33.DefineComponent<NavigationMenuLinkProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
5054
+ declare const _default$179: __VLS_WithSlots$113<vue32.DefineComponent<NavigationMenuLinkProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
5054
5055
  select: (payload: CustomEvent<{
5055
5056
  originalEvent: Event;
5056
5057
  }>) => any;
5057
- }, string, vue33.PublicProps, Readonly<NavigationMenuLinkProps> & Readonly<{
5058
+ }, string, vue32.PublicProps, Readonly<NavigationMenuLinkProps> & Readonly<{
5058
5059
  onSelect?: ((payload: CustomEvent<{
5059
5060
  originalEvent: Event;
5060
5061
  }>) => any) | undefined;
5061
5062
  }>, {
5062
- as: AsTag | vue33.Component;
5063
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5063
+ as: AsTag | vue32.Component;
5064
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5064
5065
  default?: (props: {}) => any;
5065
5066
  }>;
5066
5067
  type __VLS_WithSlots$113<T, S> = T & {
@@ -5072,9 +5073,9 @@ type __VLS_WithSlots$113<T, S> = T & {
5072
5073
  //#endregion
5073
5074
  //#region src/NavigationMenu/NavigationMenuList.vue.d.ts
5074
5075
  interface NavigationMenuListProps extends PrimitiveProps {}
5075
- declare const _default$180: __VLS_WithSlots$112<vue33.DefineComponent<NavigationMenuListProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<NavigationMenuListProps> & Readonly<{}>, {
5076
- as: AsTag | vue33.Component;
5077
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5076
+ declare const _default$180: __VLS_WithSlots$112<vue32.DefineComponent<NavigationMenuListProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<NavigationMenuListProps> & Readonly<{}>, {
5077
+ as: AsTag | vue32.Component;
5078
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5078
5079
  default?: (props: {}) => any;
5079
5080
  }>;
5080
5081
  type __VLS_WithSlots$112<T, S> = T & {
@@ -5166,20 +5167,20 @@ interface NavigationMenuContext {
5166
5167
  onItemDismiss: () => void;
5167
5168
  }
5168
5169
  declare const injectNavigationMenuContext: <T extends NavigationMenuContext | null | undefined = NavigationMenuContext>(fallback?: T | undefined) => T extends null ? NavigationMenuContext | null : NavigationMenuContext, provideNavigationMenuContext: (contextValue: NavigationMenuContext) => NavigationMenuContext;
5169
- declare const _default$181: __VLS_WithSlots$111<vue33.DefineComponent<NavigationMenuRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
5170
+ declare const _default$181: __VLS_WithSlots$111<vue32.DefineComponent<NavigationMenuRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
5170
5171
  "update:modelValue": (value: string) => any;
5171
- }, string, vue33.PublicProps, Readonly<NavigationMenuRootProps> & Readonly<{
5172
+ }, string, vue32.PublicProps, Readonly<NavigationMenuRootProps> & Readonly<{
5172
5173
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
5173
5174
  }>, {
5174
- as: AsTag | vue33.Component;
5175
- unmountOnHide: boolean;
5175
+ as: AsTag | vue32.Component;
5176
5176
  modelValue: string;
5177
+ unmountOnHide: boolean;
5177
5178
  orientation: Orientation;
5178
5179
  delayDuration: number;
5179
5180
  skipDelayDuration: number;
5180
5181
  disableClickTrigger: boolean;
5181
5182
  disableHoverTrigger: boolean;
5182
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5183
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5183
5184
  default?: (props: {
5184
5185
  /** Current input values */
5185
5186
  modelValue: string;
@@ -5209,13 +5210,13 @@ interface NavigationMenuSubProps extends PrimitiveProps {
5209
5210
  /** The orientation of the menu. */
5210
5211
  orientation?: Orientation;
5211
5212
  }
5212
- declare const _default$182: __VLS_WithSlots$110<vue33.DefineComponent<NavigationMenuSubProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
5213
+ declare const _default$182: __VLS_WithSlots$110<vue32.DefineComponent<NavigationMenuSubProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
5213
5214
  "update:modelValue": (value: string) => any;
5214
- }, string, vue33.PublicProps, Readonly<NavigationMenuSubProps> & Readonly<{
5215
+ }, string, vue32.PublicProps, Readonly<NavigationMenuSubProps> & Readonly<{
5215
5216
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
5216
5217
  }>, {
5217
5218
  orientation: Orientation;
5218
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5219
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5219
5220
  default?: (props: {
5220
5221
  /** Current input values */
5221
5222
  modelValue: string;
@@ -5233,9 +5234,9 @@ interface NavigationMenuTriggerProps extends PrimitiveProps {
5233
5234
  /** When `true`, prevents the user from interacting with item */
5234
5235
  disabled?: boolean;
5235
5236
  }
5236
- declare const _default$183: __VLS_WithSlots$109<vue33.DefineComponent<NavigationMenuTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<NavigationMenuTriggerProps> & Readonly<{}>, {
5237
- as: AsTag | vue33.Component;
5238
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5237
+ declare const _default$183: __VLS_WithSlots$109<vue32.DefineComponent<NavigationMenuTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<NavigationMenuTriggerProps> & Readonly<{}>, {
5238
+ as: AsTag | vue32.Component;
5239
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5239
5240
  default?: (props: {}) => any;
5240
5241
  }>;
5241
5242
  type __VLS_WithSlots$109<T, S> = T & {
@@ -5258,9 +5259,9 @@ interface NavigationMenuViewportProps extends PrimitiveProps {
5258
5259
  */
5259
5260
  align?: 'start' | 'center' | 'end';
5260
5261
  }
5261
- declare const _default$184: __VLS_WithSlots$108<vue33.DefineComponent<NavigationMenuViewportProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<NavigationMenuViewportProps> & Readonly<{}>, {
5262
+ declare const _default$184: __VLS_WithSlots$108<vue32.DefineComponent<NavigationMenuViewportProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<NavigationMenuViewportProps> & Readonly<{}>, {
5262
5263
  align: "start" | "center" | "end";
5263
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5264
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5264
5265
  default?: (props: {}) => any;
5265
5266
  }>;
5266
5267
  type __VLS_WithSlots$108<T, S> = T & {
@@ -5274,9 +5275,9 @@ type __VLS_WithSlots$108<T, S> = T & {
5274
5275
  interface NumberFieldDecrementProps extends PrimitiveProps {
5275
5276
  disabled?: boolean;
5276
5277
  }
5277
- declare const _default$185: __VLS_WithSlots$107<vue33.DefineComponent<NumberFieldDecrementProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<NumberFieldDecrementProps> & Readonly<{}>, {
5278
- as: AsTag | vue33.Component;
5279
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5278
+ declare const _default$185: __VLS_WithSlots$107<vue32.DefineComponent<NumberFieldDecrementProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<NumberFieldDecrementProps> & Readonly<{}>, {
5279
+ as: AsTag | vue32.Component;
5280
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5280
5281
  default?: (props: {}) => any;
5281
5282
  }>;
5282
5283
  type __VLS_WithSlots$107<T, S> = T & {
@@ -5290,9 +5291,9 @@ type __VLS_WithSlots$107<T, S> = T & {
5290
5291
  interface NumberFieldIncrementProps extends PrimitiveProps {
5291
5292
  disabled?: boolean;
5292
5293
  }
5293
- declare const _default$186: __VLS_WithSlots$106<vue33.DefineComponent<NumberFieldIncrementProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<NumberFieldIncrementProps> & Readonly<{}>, {
5294
- as: AsTag | vue33.Component;
5295
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5294
+ declare const _default$186: __VLS_WithSlots$106<vue32.DefineComponent<NumberFieldIncrementProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<NumberFieldIncrementProps> & Readonly<{}>, {
5295
+ as: AsTag | vue32.Component;
5296
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5296
5297
  default?: (props: {}) => any;
5297
5298
  }>;
5298
5299
  type __VLS_WithSlots$106<T, S> = T & {
@@ -5304,9 +5305,9 @@ type __VLS_WithSlots$106<T, S> = T & {
5304
5305
  //#endregion
5305
5306
  //#region src/NumberField/NumberFieldInput.vue.d.ts
5306
5307
  interface NumberFieldInputProps extends PrimitiveProps {}
5307
- declare const _default$187: __VLS_WithSlots$105<vue33.DefineComponent<NumberFieldInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<NumberFieldInputProps> & Readonly<{}>, {
5308
- as: AsTag | vue33.Component;
5309
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5308
+ declare const _default$187: __VLS_WithSlots$105<vue32.DefineComponent<NumberFieldInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<NumberFieldInputProps> & Readonly<{}>, {
5309
+ as: AsTag | vue32.Component;
5310
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5310
5311
  default?: (props: {}) => any;
5311
5312
  }>;
5312
5313
  type __VLS_WithSlots$105<T, S> = T & {
@@ -5370,17 +5371,17 @@ interface NumberFieldRootContext {
5370
5371
  id: Ref<string | undefined>;
5371
5372
  }
5372
5373
  declare const injectNumberFieldRootContext: <T extends NumberFieldRootContext | null | undefined = NumberFieldRootContext>(fallback?: T | undefined) => T extends null ? NumberFieldRootContext | null : NumberFieldRootContext, provideNumberFieldRootContext: (contextValue: NumberFieldRootContext) => NumberFieldRootContext;
5373
- declare const _default$188: __VLS_WithSlots$104<vue33.DefineComponent<NumberFieldRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
5374
+ declare const _default$188: __VLS_WithSlots$104<vue32.DefineComponent<NumberFieldRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
5374
5375
  "update:modelValue": (val: number) => any;
5375
- }, string, vue33.PublicProps, Readonly<NumberFieldRootProps> & Readonly<{
5376
+ }, string, vue32.PublicProps, Readonly<NumberFieldRootProps> & Readonly<{
5376
5377
  "onUpdate:modelValue"?: ((val: number) => any) | undefined;
5377
5378
  }>, {
5378
- as: AsTag | vue33.Component;
5379
+ as: AsTag | vue32.Component;
5379
5380
  defaultValue: number;
5380
5381
  step: number;
5381
5382
  stepSnapping: boolean;
5382
5383
  focusOnChange: boolean;
5383
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5384
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5384
5385
  default?: (props: {
5385
5386
  modelValue: number | undefined;
5386
5387
  textValue: string;
@@ -5395,7 +5396,7 @@ type __VLS_WithSlots$104<T, S> = T & {
5395
5396
  //#endregion
5396
5397
  //#region src/Pagination/PaginationEllipsis.vue.d.ts
5397
5398
  interface PaginationEllipsisProps extends PrimitiveProps {}
5398
- declare const _default$189: __VLS_WithSlots$103<vue33.DefineComponent<PaginationEllipsisProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5399
+ declare const _default$189: __VLS_WithSlots$103<vue32.DefineComponent<PaginationEllipsisProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5399
5400
  default?: (props: {}) => any;
5400
5401
  }>;
5401
5402
  type __VLS_WithSlots$103<T, S> = T & {
@@ -5407,9 +5408,9 @@ type __VLS_WithSlots$103<T, S> = T & {
5407
5408
  //#endregion
5408
5409
  //#region src/Pagination/PaginationFirst.vue.d.ts
5409
5410
  interface PaginationFirstProps extends PrimitiveProps {}
5410
- declare const _default$190: __VLS_WithSlots$102<vue33.DefineComponent<PaginationFirstProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PaginationFirstProps> & Readonly<{}>, {
5411
- as: AsTag | vue33.Component;
5412
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5411
+ declare const _default$190: __VLS_WithSlots$102<vue32.DefineComponent<PaginationFirstProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PaginationFirstProps> & Readonly<{}>, {
5412
+ as: AsTag | vue32.Component;
5413
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5413
5414
  default?: (props: {}) => any;
5414
5415
  }>;
5415
5416
  type __VLS_WithSlots$102<T, S> = T & {
@@ -5421,9 +5422,9 @@ type __VLS_WithSlots$102<T, S> = T & {
5421
5422
  //#endregion
5422
5423
  //#region src/Pagination/PaginationLast.vue.d.ts
5423
5424
  interface PaginationLastProps extends PrimitiveProps {}
5424
- declare const _default$191: __VLS_WithSlots$101<vue33.DefineComponent<PaginationLastProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PaginationLastProps> & Readonly<{}>, {
5425
- as: AsTag | vue33.Component;
5426
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5425
+ declare const _default$191: __VLS_WithSlots$101<vue32.DefineComponent<PaginationLastProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PaginationLastProps> & Readonly<{}>, {
5426
+ as: AsTag | vue32.Component;
5427
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5427
5428
  default?: (props: {}) => any;
5428
5429
  }>;
5429
5430
  type __VLS_WithSlots$101<T, S> = T & {
@@ -5435,7 +5436,7 @@ type __VLS_WithSlots$101<T, S> = T & {
5435
5436
  //#endregion
5436
5437
  //#region src/Pagination/PaginationList.vue.d.ts
5437
5438
  interface PaginationListProps extends PrimitiveProps {}
5438
- declare const _default$192: __VLS_WithSlots$100<vue33.DefineComponent<PaginationListProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PaginationListProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5439
+ declare const _default$192: __VLS_WithSlots$100<vue32.DefineComponent<PaginationListProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PaginationListProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5439
5440
  default?: (props: {
5440
5441
  /** Pages item */
5441
5442
  items: ({
@@ -5458,9 +5459,9 @@ interface PaginationListItemProps extends PrimitiveProps {
5458
5459
  /** Value for the page */
5459
5460
  value: number;
5460
5461
  }
5461
- declare const _default$193: __VLS_WithSlots$99<vue33.DefineComponent<PaginationListItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PaginationListItemProps> & Readonly<{}>, {
5462
- as: AsTag | vue33.Component;
5463
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5462
+ declare const _default$193: __VLS_WithSlots$99<vue32.DefineComponent<PaginationListItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PaginationListItemProps> & Readonly<{}>, {
5463
+ as: AsTag | vue32.Component;
5464
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5464
5465
  default?: (props: {}) => any;
5465
5466
  }>;
5466
5467
  type __VLS_WithSlots$99<T, S> = T & {
@@ -5472,9 +5473,9 @@ type __VLS_WithSlots$99<T, S> = T & {
5472
5473
  //#endregion
5473
5474
  //#region src/Pagination/PaginationNext.vue.d.ts
5474
5475
  interface PaginationNextProps extends PrimitiveProps {}
5475
- declare const _default$194: __VLS_WithSlots$98<vue33.DefineComponent<PaginationNextProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PaginationNextProps> & Readonly<{}>, {
5476
- as: AsTag | vue33.Component;
5477
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5476
+ declare const _default$194: __VLS_WithSlots$98<vue32.DefineComponent<PaginationNextProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PaginationNextProps> & Readonly<{}>, {
5477
+ as: AsTag | vue32.Component;
5478
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5478
5479
  default?: (props: {}) => any;
5479
5480
  }>;
5480
5481
  type __VLS_WithSlots$98<T, S> = T & {
@@ -5486,9 +5487,9 @@ type __VLS_WithSlots$98<T, S> = T & {
5486
5487
  //#endregion
5487
5488
  //#region src/Pagination/PaginationPrev.vue.d.ts
5488
5489
  interface PaginationPrevProps extends PrimitiveProps {}
5489
- declare const _default$195: __VLS_WithSlots$97<vue33.DefineComponent<PaginationPrevProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PaginationPrevProps> & Readonly<{}>, {
5490
- as: AsTag | vue33.Component;
5491
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5490
+ declare const _default$195: __VLS_WithSlots$97<vue32.DefineComponent<PaginationPrevProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PaginationPrevProps> & Readonly<{}>, {
5491
+ as: AsTag | vue32.Component;
5492
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5492
5493
  default?: (props: {}) => any;
5493
5494
  }>;
5494
5495
  type __VLS_WithSlots$97<T, S> = T & {
@@ -5532,17 +5533,17 @@ type PaginationRootEmits = {
5532
5533
  'update:page': [value: number];
5533
5534
  };
5534
5535
  declare const injectPaginationRootContext: <T extends PaginationRootContext | null | undefined = PaginationRootContext>(fallback?: T | undefined) => T extends null ? PaginationRootContext | null : PaginationRootContext, providePaginationRootContext: (contextValue: PaginationRootContext) => PaginationRootContext;
5535
- declare const _default$196: __VLS_WithSlots$96<vue33.DefineComponent<PaginationRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
5536
+ declare const _default$196: __VLS_WithSlots$96<vue32.DefineComponent<PaginationRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
5536
5537
  "update:page": (value: number) => any;
5537
- }, string, vue33.PublicProps, Readonly<PaginationRootProps> & Readonly<{
5538
+ }, string, vue32.PublicProps, Readonly<PaginationRootProps> & Readonly<{
5538
5539
  "onUpdate:page"?: ((value: number) => any) | undefined;
5539
5540
  }>, {
5540
- as: AsTag | vue33.Component;
5541
+ as: AsTag | vue32.Component;
5541
5542
  defaultPage: number;
5542
5543
  total: number;
5543
5544
  siblingCount: number;
5544
5545
  showEdges: boolean;
5545
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5546
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5546
5547
  default?: (props: {
5547
5548
  /** Current page state */
5548
5549
  page: number;
@@ -5564,9 +5565,9 @@ interface PinInputInputProps extends PrimitiveProps {
5564
5565
  /** When `true`, prevents the user from interacting with the pin input */
5565
5566
  disabled?: boolean;
5566
5567
  }
5567
- declare const _default$197: __VLS_WithSlots$95<vue33.DefineComponent<PinInputInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PinInputInputProps> & Readonly<{}>, {
5568
- as: AsTag | vue33.Component;
5569
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5568
+ declare const _default$197: __VLS_WithSlots$95<vue32.DefineComponent<PinInputInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PinInputInputProps> & Readonly<{}>, {
5569
+ as: AsTag | vue32.Component;
5570
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5570
5571
  default?: (props: {}) => any;
5571
5572
  }>;
5572
5573
  type __VLS_WithSlots$95<T, S> = T & {
@@ -5623,8 +5624,8 @@ declare const _default$198: <Type extends PinInputType>(__VLS_props: NonNullable
5623
5624
  props: __VLS_PrettifyLocal$6<Pick<Partial<{}> & Omit<{
5624
5625
  readonly "onUpdate:modelValue"?: ((value: PinInputValue<Type>) => any) | undefined;
5625
5626
  readonly onComplete?: ((value: PinInputValue<Type>) => any) | undefined;
5626
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onUpdate:modelValue" | "onComplete"> & PinInputRootProps<Type> & Partial<{}>> & vue33.PublicProps;
5627
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
5627
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onUpdate:modelValue" | "onComplete"> & PinInputRootProps<Type> & Partial<{}>> & vue32.PublicProps;
5628
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
5628
5629
  attrs: any;
5629
5630
  slots: {
5630
5631
  default?: (props: {
@@ -5633,7 +5634,7 @@ declare const _default$198: <Type extends PinInputType>(__VLS_props: NonNullable
5633
5634
  }) => any;
5634
5635
  };
5635
5636
  emit: ((evt: "update:modelValue", value: PinInputValue<Type>) => void) & ((evt: "complete", value: PinInputValue<Type>) => void);
5636
- }>) => vue33.VNode & {
5637
+ }>) => vue32.VNode & {
5637
5638
  __ctx?: Awaited<typeof __VLS_setup>;
5638
5639
  };
5639
5640
  type __VLS_PrettifyLocal$6<T> = { [K in keyof T]: T[K] } & {};
@@ -5641,7 +5642,7 @@ type __VLS_PrettifyLocal$6<T> = { [K in keyof T]: T[K] } & {};
5641
5642
  //#endregion
5642
5643
  //#region src/Popover/PopoverAnchor.vue.d.ts
5643
5644
  interface PopoverAnchorProps extends PopperAnchorProps {}
5644
- declare const _default$199: __VLS_WithSlots$94<vue33.DefineComponent<PopoverAnchorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5645
+ declare const _default$199: __VLS_WithSlots$94<vue32.DefineComponent<PopoverAnchorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5645
5646
  default?: (props: {}) => any;
5646
5647
  }>;
5647
5648
  type __VLS_WithSlots$94<T, S> = T & {
@@ -5653,11 +5654,11 @@ type __VLS_WithSlots$94<T, S> = T & {
5653
5654
  //#endregion
5654
5655
  //#region src/Popover/PopoverArrow.vue.d.ts
5655
5656
  interface PopoverArrowProps extends PopperArrowProps {}
5656
- declare const _default$200: __VLS_WithSlots$93<vue33.DefineComponent<PopoverArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PopoverArrowProps> & Readonly<{}>, {
5657
- as: AsTag | vue33.Component;
5657
+ declare const _default$200: __VLS_WithSlots$93<vue32.DefineComponent<PopoverArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PopoverArrowProps> & Readonly<{}>, {
5658
+ as: AsTag | vue32.Component;
5658
5659
  width: number;
5659
5660
  height: number;
5660
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5661
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5661
5662
  default?: (props: {}) => any;
5662
5663
  }>;
5663
5664
  type __VLS_WithSlots$93<T, S> = T & {
@@ -5669,9 +5670,9 @@ type __VLS_WithSlots$93<T, S> = T & {
5669
5670
  //#endregion
5670
5671
  //#region src/Popover/PopoverClose.vue.d.ts
5671
5672
  interface PopoverCloseProps extends PrimitiveProps {}
5672
- declare const _default$201: __VLS_WithSlots$92<vue33.DefineComponent<PopoverCloseProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PopoverCloseProps> & Readonly<{}>, {
5673
- as: AsTag | vue33.Component;
5674
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5673
+ declare const _default$201: __VLS_WithSlots$92<vue32.DefineComponent<PopoverCloseProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PopoverCloseProps> & Readonly<{}>, {
5674
+ as: AsTag | vue32.Component;
5675
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5675
5676
  default?: (props: {}) => any;
5676
5677
  }>;
5677
5678
  type __VLS_WithSlots$92<T, S> = T & {
@@ -5705,21 +5706,21 @@ interface PopoverContentProps extends PopoverContentImplProps {
5705
5706
  */
5706
5707
  forceMount?: boolean;
5707
5708
  }
5708
- declare const _default$202: __VLS_WithSlots$91<vue33.DefineComponent<PopoverContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
5709
+ declare const _default$202: __VLS_WithSlots$91<vue32.DefineComponent<PopoverContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
5709
5710
  escapeKeyDown: (event: KeyboardEvent) => any;
5710
5711
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
5711
5712
  focusOutside: (event: FocusOutsideEvent) => any;
5712
5713
  interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
5713
5714
  openAutoFocus: (event: Event) => any;
5714
5715
  closeAutoFocus: (event: Event) => any;
5715
- }, string, vue33.PublicProps, Readonly<PopoverContentProps> & Readonly<{
5716
+ }, string, vue32.PublicProps, Readonly<PopoverContentProps> & Readonly<{
5716
5717
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
5717
5718
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
5718
5719
  onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
5719
5720
  onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
5720
5721
  onOpenAutoFocus?: ((event: Event) => any) | undefined;
5721
5722
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
5722
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5723
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5723
5724
  default?: (props: {}) => any;
5724
5725
  } & {
5725
5726
  default?: (props: {}) => any;
@@ -5733,7 +5734,7 @@ type __VLS_WithSlots$91<T, S> = T & {
5733
5734
  //#endregion
5734
5735
  //#region src/Popover/PopoverPortal.vue.d.ts
5735
5736
  interface PopoverPortalProps extends TeleportProps {}
5736
- declare const _default$203: __VLS_WithSlots$90<vue33.DefineComponent<PopoverPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PopoverPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5737
+ declare const _default$203: __VLS_WithSlots$90<vue32.DefineComponent<PopoverPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PopoverPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5737
5738
  default?: (props: {}) => any;
5738
5739
  }>;
5739
5740
  type __VLS_WithSlots$90<T, S> = T & {
@@ -5777,15 +5778,15 @@ interface PopoverRootContext {
5777
5778
  hasCustomAnchor: Ref<boolean>;
5778
5779
  }
5779
5780
  declare const injectPopoverRootContext: <T extends PopoverRootContext | null | undefined = PopoverRootContext>(fallback?: T | undefined) => T extends null ? PopoverRootContext | null : PopoverRootContext, providePopoverRootContext: (contextValue: PopoverRootContext) => PopoverRootContext;
5780
- declare const _default$204: __VLS_WithSlots$89<vue33.DefineComponent<PopoverRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
5781
+ declare const _default$204: __VLS_WithSlots$89<vue32.DefineComponent<PopoverRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
5781
5782
  "update:open": (value: boolean) => any;
5782
- }, string, vue33.PublicProps, Readonly<PopoverRootProps> & Readonly<{
5783
+ }, string, vue32.PublicProps, Readonly<PopoverRootProps> & Readonly<{
5783
5784
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
5784
5785
  }>, {
5785
- defaultOpen: boolean;
5786
- open: boolean;
5787
5786
  modal: boolean;
5788
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5787
+ open: boolean;
5788
+ defaultOpen: boolean;
5789
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5789
5790
  default?: (props: {
5790
5791
  /** Current open state */
5791
5792
  open: boolean;
@@ -5802,9 +5803,9 @@ type __VLS_WithSlots$89<T, S> = T & {
5802
5803
  //#endregion
5803
5804
  //#region src/Popover/PopoverTrigger.vue.d.ts
5804
5805
  interface PopoverTriggerProps extends PrimitiveProps {}
5805
- declare const _default$205: __VLS_WithSlots$88<vue33.DefineComponent<PopoverTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<PopoverTriggerProps> & Readonly<{}>, {
5806
- as: AsTag | vue33.Component;
5807
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5806
+ declare const _default$205: __VLS_WithSlots$88<vue32.DefineComponent<PopoverTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<PopoverTriggerProps> & Readonly<{}>, {
5807
+ as: AsTag | vue32.Component;
5808
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5808
5809
  default?: (props: {}) => any;
5809
5810
  }>;
5810
5811
  type __VLS_WithSlots$88<T, S> = T & {
@@ -5831,7 +5832,7 @@ interface PresenceProps {
5831
5832
  */
5832
5833
  forceMount?: boolean;
5833
5834
  }
5834
- declare const _default$206: vue33.DefineComponent<vue33.ExtractPropTypes<{
5835
+ declare const _default$206: vue32.DefineComponent<vue32.ExtractPropTypes<{
5835
5836
  present: {
5836
5837
  type: BooleanConstructor;
5837
5838
  required: true;
@@ -5839,9 +5840,9 @@ declare const _default$206: vue33.DefineComponent<vue33.ExtractPropTypes<{
5839
5840
  forceMount: {
5840
5841
  type: BooleanConstructor;
5841
5842
  };
5842
- }>, () => VNode<vue33.RendererNode, vue33.RendererElement, {
5843
+ }>, () => VNode<vue32.RendererNode, vue32.RendererElement, {
5843
5844
  [key: string]: any;
5844
- }> | null, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<vue33.ExtractPropTypes<{
5845
+ }> | null, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<vue32.ExtractPropTypes<{
5845
5846
  present: {
5846
5847
  type: BooleanConstructor;
5847
5848
  required: true;
@@ -5855,11 +5856,11 @@ declare const _default$206: vue33.DefineComponent<vue33.ExtractPropTypes<{
5855
5856
  default: (opts: {
5856
5857
  present: boolean;
5857
5858
  }) => any;
5858
- }>, {}, {}, string, vue33.ComponentProvideOptions, true, {}, any>;
5859
+ }>, {}, {}, string, vue32.ComponentProvideOptions, true, {}, any>;
5859
5860
  //#endregion
5860
5861
  //#region src/Progress/ProgressIndicator.vue.d.ts
5861
5862
  interface ProgressIndicatorProps extends PrimitiveProps {}
5862
- declare const _default$207: __VLS_WithSlots$87<vue33.DefineComponent<ProgressIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ProgressIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5863
+ declare const _default$207: __VLS_WithSlots$87<vue32.DefineComponent<ProgressIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ProgressIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5863
5864
  default?: (props: {}) => any;
5864
5865
  }>;
5865
5866
  type __VLS_WithSlots$87<T, S> = T & {
@@ -5899,16 +5900,16 @@ interface ProgressRootContext {
5899
5900
  }
5900
5901
  declare const injectProgressRootContext: <T extends ProgressRootContext | null | undefined = ProgressRootContext>(fallback?: T | undefined) => T extends null ? ProgressRootContext | null : ProgressRootContext, provideProgressRootContext: (contextValue: ProgressRootContext) => ProgressRootContext;
5901
5902
  type ProgressState = 'indeterminate' | 'loading' | 'complete';
5902
- declare const _default$208: __VLS_WithSlots$86<vue33.DefineComponent<ProgressRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
5903
+ declare const _default$208: __VLS_WithSlots$86<vue32.DefineComponent<ProgressRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
5903
5904
  "update:modelValue": (value: string[] | undefined) => any;
5904
5905
  "update:max": (value: number) => any;
5905
- }, string, vue33.PublicProps, Readonly<ProgressRootProps> & Readonly<{
5906
+ }, string, vue32.PublicProps, Readonly<ProgressRootProps> & Readonly<{
5906
5907
  "onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
5907
5908
  "onUpdate:max"?: ((value: number) => any) | undefined;
5908
5909
  }>, {
5909
5910
  max: number;
5910
5911
  getValueLabel: (value: number | null | undefined, max: number) => string | undefined;
5911
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5912
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5912
5913
  default?: (props: {
5913
5914
  /** Current input values */
5914
5915
  modelValue: number | null | undefined;
@@ -5929,9 +5930,9 @@ interface RadioGroupIndicatorProps extends PrimitiveProps {
5929
5930
  */
5930
5931
  forceMount?: boolean;
5931
5932
  }
5932
- declare const _default$209: __VLS_WithSlots$85<vue33.DefineComponent<RadioGroupIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RadioGroupIndicatorProps> & Readonly<{}>, {
5933
- as: AsTag | vue33.Component;
5934
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5933
+ declare const _default$209: __VLS_WithSlots$85<vue32.DefineComponent<RadioGroupIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RadioGroupIndicatorProps> & Readonly<{}>, {
5934
+ as: AsTag | vue32.Component;
5935
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5935
5936
  default?: (props: {}) => any;
5936
5937
  }>;
5937
5938
  type __VLS_WithSlots$85<T, S> = T & {
@@ -5967,14 +5968,14 @@ interface RadioGroupItemContext {
5967
5968
  checked: ComputedRef<boolean>;
5968
5969
  }
5969
5970
  declare const injectRadioGroupItemContext: <T extends RadioGroupItemContext | null | undefined = RadioGroupItemContext>(fallback?: T | undefined) => T extends null ? RadioGroupItemContext | null : RadioGroupItemContext, provideRadiogroupItemContext: (contextValue: RadioGroupItemContext) => RadioGroupItemContext;
5970
- declare const _default$210: __VLS_WithSlots$84<vue33.DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
5971
+ declare const _default$210: __VLS_WithSlots$84<vue32.DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
5971
5972
  select: (event: SelectEvent$1) => any;
5972
- }, string, vue33.PublicProps, Readonly<RadioGroupItemProps> & Readonly<{
5973
+ }, string, vue32.PublicProps, Readonly<RadioGroupItemProps> & Readonly<{
5973
5974
  onSelect?: ((event: SelectEvent$1) => any) | undefined;
5974
5975
  }>, {
5975
- as: AsTag | vue33.Component;
5976
+ as: AsTag | vue32.Component;
5976
5977
  disabled: boolean;
5977
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
5978
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
5978
5979
  default?: (props: {
5979
5980
  /** Current checked state */
5980
5981
  checked: boolean;
@@ -6012,7 +6013,7 @@ interface RadioGroupRootProps extends PrimitiveProps, FormFieldProps {
6012
6013
  }
6013
6014
  type RadioGroupRootEmits = {
6014
6015
  /** Event handler called when the radio group value changes */
6015
- 'update:modelValue': [payload: string];
6016
+ 'update:modelValue': [payload: AcceptableValue];
6016
6017
  };
6017
6018
  interface RadioGroupRootContext {
6018
6019
  modelValue?: Readonly<Ref<AcceptableValue | undefined>>;
@@ -6024,16 +6025,16 @@ interface RadioGroupRootContext {
6024
6025
  required: Ref<boolean>;
6025
6026
  }
6026
6027
  declare const injectRadioGroupRootContext: <T extends RadioGroupRootContext | null | undefined = RadioGroupRootContext>(fallback?: T | undefined) => T extends null ? RadioGroupRootContext | null : RadioGroupRootContext, provideRadioGroupRootContext: (contextValue: RadioGroupRootContext) => RadioGroupRootContext;
6027
- declare const _default$211: __VLS_WithSlots$83<vue33.DefineComponent<RadioGroupRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
6028
- "update:modelValue": (payload: string) => any;
6029
- }, string, vue33.PublicProps, Readonly<RadioGroupRootProps> & Readonly<{
6030
- "onUpdate:modelValue"?: ((payload: string) => any) | undefined;
6028
+ declare const _default$211: __VLS_WithSlots$83<vue32.DefineComponent<RadioGroupRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
6029
+ "update:modelValue": (payload: AcceptableValue) => any;
6030
+ }, string, vue32.PublicProps, Readonly<RadioGroupRootProps> & Readonly<{
6031
+ "onUpdate:modelValue"?: ((payload: AcceptableValue) => any) | undefined;
6031
6032
  }>, {
6032
6033
  required: boolean;
6033
6034
  disabled: boolean;
6034
6035
  orientation: DataOrientation;
6035
6036
  loop: boolean;
6036
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6037
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6037
6038
  default?: (props: {
6038
6039
  /** Current input values */
6039
6040
  modelValue: AcceptableValue | undefined;
@@ -6050,9 +6051,9 @@ type __VLS_WithSlots$83<T, S> = T & {
6050
6051
  interface RangeCalendarCellProps extends PrimitiveProps {
6051
6052
  date: DateValue$1;
6052
6053
  }
6053
- declare const _default$212: __VLS_WithSlots$82<vue33.DefineComponent<RangeCalendarCellProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarCellProps> & Readonly<{}>, {
6054
- as: AsTag | vue33.Component;
6055
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6054
+ declare const _default$212: __VLS_WithSlots$82<vue32.DefineComponent<RangeCalendarCellProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarCellProps> & Readonly<{}>, {
6055
+ as: AsTag | vue32.Component;
6056
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6056
6057
  default?: (props: {}) => any;
6057
6058
  }>;
6058
6059
  type __VLS_WithSlots$82<T, S> = T & {
@@ -6064,9 +6065,9 @@ type __VLS_WithSlots$82<T, S> = T & {
6064
6065
  //#endregion
6065
6066
  //#region src/RangeCalendar/RangeCalendarGrid.vue.d.ts
6066
6067
  interface RangeCalendarGridProps extends PrimitiveProps {}
6067
- declare const _default$214: __VLS_WithSlots$81<vue33.DefineComponent<RangeCalendarGridProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarGridProps> & Readonly<{}>, {
6068
- as: AsTag | vue33.Component;
6069
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6068
+ declare const _default$214: __VLS_WithSlots$81<vue32.DefineComponent<RangeCalendarGridProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarGridProps> & Readonly<{}>, {
6069
+ as: AsTag | vue32.Component;
6070
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6070
6071
  default?: (props: {}) => any;
6071
6072
  }>;
6072
6073
  type __VLS_WithSlots$81<T, S> = T & {
@@ -6078,9 +6079,9 @@ type __VLS_WithSlots$81<T, S> = T & {
6078
6079
  //#endregion
6079
6080
  //#region src/RangeCalendar/RangeCalendarGridBody.vue.d.ts
6080
6081
  interface RangeCalendarGridBodyProps extends PrimitiveProps {}
6081
- declare const _default$215: __VLS_WithSlots$80<vue33.DefineComponent<RangeCalendarGridBodyProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarGridBodyProps> & Readonly<{}>, {
6082
- as: AsTag | vue33.Component;
6083
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6082
+ declare const _default$215: __VLS_WithSlots$80<vue32.DefineComponent<RangeCalendarGridBodyProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarGridBodyProps> & Readonly<{}>, {
6083
+ as: AsTag | vue32.Component;
6084
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6084
6085
  default?: (props: {}) => any;
6085
6086
  }>;
6086
6087
  type __VLS_WithSlots$80<T, S> = T & {
@@ -6092,9 +6093,9 @@ type __VLS_WithSlots$80<T, S> = T & {
6092
6093
  //#endregion
6093
6094
  //#region src/RangeCalendar/RangeCalendarGridHead.vue.d.ts
6094
6095
  interface RangeCalendarGridHeadProps extends PrimitiveProps {}
6095
- declare const _default$216: __VLS_WithSlots$79<vue33.DefineComponent<RangeCalendarGridHeadProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarGridHeadProps> & Readonly<{}>, {
6096
- as: AsTag | vue33.Component;
6097
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6096
+ declare const _default$216: __VLS_WithSlots$79<vue32.DefineComponent<RangeCalendarGridHeadProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarGridHeadProps> & Readonly<{}>, {
6097
+ as: AsTag | vue32.Component;
6098
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6098
6099
  default?: (props: {}) => any;
6099
6100
  }>;
6100
6101
  type __VLS_WithSlots$79<T, S> = T & {
@@ -6106,9 +6107,9 @@ type __VLS_WithSlots$79<T, S> = T & {
6106
6107
  //#endregion
6107
6108
  //#region src/RangeCalendar/RangeCalendarGridRow.vue.d.ts
6108
6109
  interface RangeCalendarGridRowProps extends PrimitiveProps {}
6109
- declare const _default$217: __VLS_WithSlots$78<vue33.DefineComponent<RangeCalendarGridRowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarGridRowProps> & Readonly<{}>, {
6110
- as: AsTag | vue33.Component;
6111
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6110
+ declare const _default$217: __VLS_WithSlots$78<vue32.DefineComponent<RangeCalendarGridRowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarGridRowProps> & Readonly<{}>, {
6111
+ as: AsTag | vue32.Component;
6112
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6112
6113
  default?: (props: {}) => any;
6113
6114
  }>;
6114
6115
  type __VLS_WithSlots$78<T, S> = T & {
@@ -6120,9 +6121,9 @@ type __VLS_WithSlots$78<T, S> = T & {
6120
6121
  //#endregion
6121
6122
  //#region src/RangeCalendar/RangeCalendarHeadCell.vue.d.ts
6122
6123
  interface RangeCalendarHeadCellProps extends PrimitiveProps {}
6123
- declare const _default$218: __VLS_WithSlots$77<vue33.DefineComponent<RangeCalendarHeadCellProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarHeadCellProps> & Readonly<{}>, {
6124
- as: AsTag | vue33.Component;
6125
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6124
+ declare const _default$218: __VLS_WithSlots$77<vue32.DefineComponent<RangeCalendarHeadCellProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarHeadCellProps> & Readonly<{}>, {
6125
+ as: AsTag | vue32.Component;
6126
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6126
6127
  default?: (props: {}) => any;
6127
6128
  }>;
6128
6129
  type __VLS_WithSlots$77<T, S> = T & {
@@ -6134,9 +6135,9 @@ type __VLS_WithSlots$77<T, S> = T & {
6134
6135
  //#endregion
6135
6136
  //#region src/RangeCalendar/RangeCalendarHeader.vue.d.ts
6136
6137
  interface RangeCalendarHeaderProps extends PrimitiveProps {}
6137
- declare const _default$219: __VLS_WithSlots$76<vue33.DefineComponent<RangeCalendarHeaderProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarHeaderProps> & Readonly<{}>, {
6138
- as: AsTag | vue33.Component;
6139
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6138
+ declare const _default$219: __VLS_WithSlots$76<vue32.DefineComponent<RangeCalendarHeaderProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarHeaderProps> & Readonly<{}>, {
6139
+ as: AsTag | vue32.Component;
6140
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6140
6141
  default?: (props: {}) => any;
6141
6142
  }>;
6142
6143
  type __VLS_WithSlots$76<T, S> = T & {
@@ -6148,9 +6149,9 @@ type __VLS_WithSlots$76<T, S> = T & {
6148
6149
  //#endregion
6149
6150
  //#region src/RangeCalendar/RangeCalendarHeading.vue.d.ts
6150
6151
  interface RangeCalendarHeadingProps extends PrimitiveProps {}
6151
- declare const _default$220: __VLS_WithSlots$75<vue33.DefineComponent<RangeCalendarHeadingProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<RangeCalendarHeadingProps> & Readonly<{}>, {
6152
- as: AsTag | vue33.Component;
6153
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6152
+ declare const _default$220: __VLS_WithSlots$75<vue32.DefineComponent<RangeCalendarHeadingProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<RangeCalendarHeadingProps> & Readonly<{}>, {
6153
+ as: AsTag | vue32.Component;
6154
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6154
6155
  default?: (props: {
6155
6156
  /** Current month and year */
6156
6157
  headingValue: string;
@@ -6174,7 +6175,7 @@ type RangeCalendarRootContext = {
6174
6175
  preventDeselect: Ref<boolean>;
6175
6176
  grid: Ref<Grid<DateValue$1>[]>;
6176
6177
  weekDays: Ref<string[]>;
6177
- weekStartsOn: Ref<0 | 1 | 2 | 3 | 4 | 5 | 6>;
6178
+ weekStartsOn: Ref<WeekStartsOn>;
6178
6179
  weekdayFormat: Ref<WeekDayFormat>;
6179
6180
  fixedWeeks: Ref<boolean>;
6180
6181
  numberOfMonths: Ref<number>;
@@ -6213,6 +6214,11 @@ type RangeCalendarRootContext = {
6213
6214
  maximumDays: Ref<number | undefined>;
6214
6215
  minValue: Ref<DateValue$1 | undefined>;
6215
6216
  maxValue: Ref<DateValue$1 | undefined>;
6217
+ isPlaceholderFocusable: Ref<boolean>;
6218
+ firstFocusableDate: Ref<DateValue$1 | undefined>;
6219
+ hasSelectedDate: Ref<boolean>;
6220
+ isSelectedDisabled: Ref<boolean>;
6221
+ selectedFocusableDate: Ref<DateValue$1 | undefined>;
6216
6222
  };
6217
6223
  interface RangeCalendarRootProps extends PrimitiveProps {
6218
6224
  /** The default placeholder date */
@@ -6232,7 +6238,7 @@ interface RangeCalendarRootProps extends PrimitiveProps {
6232
6238
  /** The maximum number of days that can be selected in a range */
6233
6239
  maximumDays?: number;
6234
6240
  /** The day of the week to start the calendar on */
6235
- weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
6241
+ weekStartsOn?: WeekStartsOn;
6236
6242
  /** The format to use for the weekday strings provided via the weekdays slot prop */
6237
6243
  weekdayFormat?: WeekDayFormat;
6238
6244
  /** The accessible label for the calendar */
@@ -6281,18 +6287,18 @@ type RangeCalendarRootEmits = {
6281
6287
  'update:startValue': [date: DateValue$1 | undefined];
6282
6288
  };
6283
6289
  declare const injectRangeCalendarRootContext: <T extends RangeCalendarRootContext | null | undefined = RangeCalendarRootContext>(fallback?: T | undefined) => T extends null ? RangeCalendarRootContext | null : RangeCalendarRootContext, provideRangeCalendarRootContext: (contextValue: RangeCalendarRootContext) => RangeCalendarRootContext;
6284
- declare const _default$223: __VLS_WithSlots$74<vue33.DefineComponent<RangeCalendarRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
6290
+ declare const _default$223: __VLS_WithSlots$74<vue32.DefineComponent<RangeCalendarRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
6285
6291
  "update:modelValue": (date: DateRange) => any;
6286
6292
  "update:placeholder": (date: DateValue$1) => any;
6287
6293
  "update:validModelValue": (date: DateRange) => any;
6288
6294
  "update:startValue": (date: DateValue$1 | undefined) => any;
6289
- }, string, vue33.PublicProps, Readonly<RangeCalendarRootProps> & Readonly<{
6295
+ }, string, vue32.PublicProps, Readonly<RangeCalendarRootProps> & Readonly<{
6290
6296
  "onUpdate:modelValue"?: ((date: DateRange) => any) | undefined;
6291
6297
  "onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
6292
6298
  "onUpdate:validModelValue"?: ((date: DateRange) => any) | undefined;
6293
6299
  "onUpdate:startValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
6294
6300
  }>, {
6295
- as: AsTag | vue33.Component;
6301
+ as: AsTag | vue32.Component;
6296
6302
  placeholder: DateValue$1;
6297
6303
  disabled: boolean;
6298
6304
  defaultValue: DateRange;
@@ -6300,7 +6306,6 @@ declare const _default$223: __VLS_WithSlots$74<vue33.DefineComponent<RangeCalend
6300
6306
  isDateUnavailable: Matcher;
6301
6307
  pagedNavigation: boolean;
6302
6308
  preventDeselect: boolean;
6303
- weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
6304
6309
  weekdayFormat: WeekDayFormat;
6305
6310
  fixedWeeks: boolean;
6306
6311
  numberOfMonths: number;
@@ -6310,7 +6315,7 @@ declare const _default$223: __VLS_WithSlots$74<vue33.DefineComponent<RangeCalend
6310
6315
  allowNonContiguousRanges: boolean;
6311
6316
  maximumDays: number;
6312
6317
  isDateHighlightable: Matcher;
6313
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6318
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6314
6319
  default?: (props: {
6315
6320
  /** The current date of the placeholder */
6316
6321
  date: DateValue$1;
@@ -6319,7 +6324,7 @@ declare const _default$223: __VLS_WithSlots$74<vue33.DefineComponent<RangeCalend
6319
6324
  /** The days of the week */
6320
6325
  weekDays: string[];
6321
6326
  /** The start of the week */
6322
- weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
6327
+ weekStartsOn: WeekStartsOn;
6323
6328
  /** The calendar locale */
6324
6329
  locale: string;
6325
6330
  /** Whether or not to always display 6 weeks in the calendar */
@@ -6337,7 +6342,7 @@ type __VLS_WithSlots$74<T, S> = T & {
6337
6342
  //#endregion
6338
6343
  //#region src/ScrollArea/ScrollAreaCorner.vue.d.ts
6339
6344
  interface ScrollAreaCornerProps extends PrimitiveProps {}
6340
- declare const _default$226: __VLS_WithSlots$73<vue33.DefineComponent<ScrollAreaCornerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ScrollAreaCornerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6345
+ declare const _default$226: __VLS_WithSlots$73<vue32.DefineComponent<ScrollAreaCornerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ScrollAreaCornerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6341
6346
  default?: (props: {}) => any;
6342
6347
  }>;
6343
6348
  type __VLS_WithSlots$73<T, S> = T & {
@@ -6390,17 +6395,17 @@ interface ScrollAreaRootProps extends PrimitiveProps {
6390
6395
  /** If type is set to either `scroll` or `hover`, this prop determines the length of time, in milliseconds, <br> before the scrollbars are hidden after the user stops interacting with scrollbars. */
6391
6396
  scrollHideDelay?: number;
6392
6397
  }
6393
- declare const _default$227: __VLS_WithSlots$72<vue33.DefineComponent<ScrollAreaRootProps, {
6398
+ declare const _default$227: __VLS_WithSlots$72<vue32.DefineComponent<ScrollAreaRootProps, {
6394
6399
  /** Viewport element within ScrollArea */
6395
6400
  viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
6396
6401
  /** Scroll viewport to top */
6397
6402
  scrollTop: () => void;
6398
6403
  /** Scroll viewport to top-left */
6399
6404
  scrollTopLeft: () => void;
6400
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ScrollAreaRootProps> & Readonly<{}>, {
6405
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ScrollAreaRootProps> & Readonly<{}>, {
6401
6406
  type: ScrollType;
6402
6407
  scrollHideDelay: number;
6403
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6408
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6404
6409
  default?: (props: {}) => any;
6405
6410
  }>;
6406
6411
  type __VLS_WithSlots$72<T, S> = T & {
@@ -6428,10 +6433,10 @@ interface ScrollAreaScrollbarContext {
6428
6433
  asChild: Ref<boolean>;
6429
6434
  }
6430
6435
  declare const injectScrollAreaScrollbarContext: <T extends ScrollAreaScrollbarContext | null | undefined = ScrollAreaScrollbarContext>(fallback?: T | undefined) => T extends null ? ScrollAreaScrollbarContext | null : ScrollAreaScrollbarContext, provideScrollAreaScrollbarContext: (contextValue: ScrollAreaScrollbarContext) => ScrollAreaScrollbarContext;
6431
- declare const _default$228: __VLS_WithSlots$71<vue33.DefineComponent<ScrollAreaScrollbarProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ScrollAreaScrollbarProps> & Readonly<{}>, {
6432
- as: AsTag | vue33.Component;
6436
+ declare const _default$228: __VLS_WithSlots$71<vue32.DefineComponent<ScrollAreaScrollbarProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ScrollAreaScrollbarProps> & Readonly<{}>, {
6437
+ as: AsTag | vue32.Component;
6433
6438
  orientation: "vertical" | "horizontal";
6434
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6439
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6435
6440
  default?: (props: {}) => any;
6436
6441
  } & {
6437
6442
  default?: (props: {}) => any;
@@ -6456,7 +6461,7 @@ interface ScrollAreaScrollbarAutoProps {
6456
6461
  //#endregion
6457
6462
  //#region src/ScrollArea/ScrollAreaScrollbarGlimpse.vue.d.ts
6458
6463
  interface ScrollAreaScrollbarGlimpseProps extends ScrollAreaScrollbarAutoProps {}
6459
- declare const _default$229: __VLS_WithSlots$70<vue33.DefineComponent<ScrollAreaScrollbarGlimpseProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ScrollAreaScrollbarGlimpseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6464
+ declare const _default$229: __VLS_WithSlots$70<vue32.DefineComponent<ScrollAreaScrollbarGlimpseProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ScrollAreaScrollbarGlimpseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6460
6465
  default?: (props: {}) => any;
6461
6466
  }>;
6462
6467
  type __VLS_WithSlots$70<T, S> = T & {
@@ -6468,7 +6473,7 @@ type __VLS_WithSlots$70<T, S> = T & {
6468
6473
  //#endregion
6469
6474
  //#region src/ScrollArea/ScrollAreaThumb.vue.d.ts
6470
6475
  interface ScrollAreaThumbProps extends PrimitiveProps {}
6471
- declare const _default$230: __VLS_WithSlots$69<vue33.DefineComponent<ScrollAreaThumbProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ScrollAreaThumbProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6476
+ declare const _default$230: __VLS_WithSlots$69<vue32.DefineComponent<ScrollAreaThumbProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ScrollAreaThumbProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6472
6477
  default?: (props: {}) => any;
6473
6478
  }>;
6474
6479
  type __VLS_WithSlots$69<T, S> = T & {
@@ -6485,9 +6490,9 @@ interface ScrollAreaViewportProps extends PrimitiveProps {
6485
6490
  */
6486
6491
  nonce?: string;
6487
6492
  }
6488
- declare const _default$231: __VLS_WithSlots$68<vue33.DefineComponent<ScrollAreaViewportProps, {
6489
- viewportElement: vue33.Ref<HTMLElement | undefined, HTMLElement | undefined>;
6490
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ScrollAreaViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6493
+ declare const _default$231: __VLS_WithSlots$68<vue32.DefineComponent<ScrollAreaViewportProps, {
6494
+ viewportElement: vue32.Ref<HTMLElement | undefined, HTMLElement | undefined>;
6495
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ScrollAreaViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6491
6496
  default?: (props: {}) => any;
6492
6497
  }>;
6493
6498
  type __VLS_WithSlots$68<T, S> = T & {
@@ -6499,11 +6504,11 @@ type __VLS_WithSlots$68<T, S> = T & {
6499
6504
  //#endregion
6500
6505
  //#region src/Select/SelectArrow.vue.d.ts
6501
6506
  interface SelectArrowProps extends PopperArrowProps {}
6502
- declare const _default$232: __VLS_WithSlots$67<vue33.DefineComponent<SelectArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectArrowProps> & Readonly<{}>, {
6503
- as: AsTag | vue33.Component;
6507
+ declare const _default$232: __VLS_WithSlots$67<vue32.DefineComponent<SelectArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectArrowProps> & Readonly<{}>, {
6508
+ as: AsTag | vue32.Component;
6504
6509
  width: number;
6505
6510
  height: number;
6506
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6511
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6507
6512
  default?: (props: {}) => any;
6508
6513
  }>;
6509
6514
  type __VLS_WithSlots$67<T, S> = T & {
@@ -6553,15 +6558,15 @@ interface SelectContentProps extends SelectContentImplProps {
6553
6558
  */
6554
6559
  forceMount?: boolean;
6555
6560
  }
6556
- declare const _default$233: __VLS_WithSlots$66<vue33.DefineComponent<SelectContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
6561
+ declare const _default$233: __VLS_WithSlots$66<vue32.DefineComponent<SelectContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
6557
6562
  escapeKeyDown: (event: KeyboardEvent) => any;
6558
6563
  pointerDownOutside: (event: PointerDownOutsideEvent) => any;
6559
6564
  closeAutoFocus: (event: Event) => any;
6560
- }, string, vue33.PublicProps, Readonly<SelectContentProps> & Readonly<{
6565
+ }, string, vue32.PublicProps, Readonly<SelectContentProps> & Readonly<{
6561
6566
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
6562
6567
  onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
6563
6568
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
6564
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6569
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6565
6570
  default?: (props: {}) => any;
6566
6571
  } & {
6567
6572
  default?: (props: {}) => any;
@@ -6579,7 +6584,7 @@ interface SelectGroupContext {
6579
6584
  id: string;
6580
6585
  }
6581
6586
  declare const injectSelectGroupContext: <T extends SelectGroupContext | null | undefined = SelectGroupContext>(fallback?: T | undefined) => T extends null ? SelectGroupContext | null : SelectGroupContext, provideSelectGroupContext: (contextValue: SelectGroupContext) => SelectGroupContext;
6582
- declare const _default$234: __VLS_WithSlots$65<vue33.DefineComponent<SelectGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6587
+ declare const _default$234: __VLS_WithSlots$65<vue32.DefineComponent<SelectGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6583
6588
  default?: (props: {}) => any;
6584
6589
  }>;
6585
6590
  type __VLS_WithSlots$65<T, S> = T & {
@@ -6591,9 +6596,9 @@ type __VLS_WithSlots$65<T, S> = T & {
6591
6596
  //#endregion
6592
6597
  //#region src/Select/SelectIcon.vue.d.ts
6593
6598
  interface SelectIconProps extends PrimitiveProps {}
6594
- declare const _default$235: __VLS_WithSlots$64<vue33.DefineComponent<SelectIconProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectIconProps> & Readonly<{}>, {
6595
- as: AsTag | vue33.Component;
6596
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6599
+ declare const _default$235: __VLS_WithSlots$64<vue32.DefineComponent<SelectIconProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectIconProps> & Readonly<{}>, {
6600
+ as: AsTag | vue32.Component;
6601
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6597
6602
  default?: (props: {}) => any;
6598
6603
  }>;
6599
6604
  type __VLS_WithSlots$64<T, S> = T & {
@@ -6633,14 +6638,14 @@ interface SelectItemProps<T = AcceptableValue> extends PrimitiveProps {
6633
6638
  declare const _default$236: <T extends AcceptableValue = AcceptableValue>(__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<{
6634
6639
  props: __VLS_PrettifyLocal$5<Pick<Partial<{}> & Omit<{
6635
6640
  readonly onSelect?: ((event: SelectEvent$2<T>) => any) | undefined;
6636
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onSelect"> & SelectItemProps<AcceptableValue> & Partial<{}>> & vue33.PublicProps;
6637
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
6641
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onSelect"> & SelectItemProps<AcceptableValue> & Partial<{}>> & vue32.PublicProps;
6642
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
6638
6643
  attrs: any;
6639
6644
  slots: {
6640
6645
  default?: (props: {}) => any;
6641
6646
  };
6642
6647
  emit: (evt: "select", event: SelectEvent$2<T>) => void;
6643
- }>) => vue33.VNode & {
6648
+ }>) => vue32.VNode & {
6644
6649
  __ctx?: Awaited<typeof __VLS_setup>;
6645
6650
  };
6646
6651
  type __VLS_PrettifyLocal$5<T> = { [K in keyof T]: T[K] } & {};
@@ -6648,9 +6653,9 @@ type __VLS_PrettifyLocal$5<T> = { [K in keyof T]: T[K] } & {};
6648
6653
  //#endregion
6649
6654
  //#region src/Select/SelectItemIndicator.vue.d.ts
6650
6655
  interface SelectItemIndicatorProps extends PrimitiveProps {}
6651
- declare const _default$237: __VLS_WithSlots$63<vue33.DefineComponent<SelectItemIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectItemIndicatorProps> & Readonly<{}>, {
6652
- as: AsTag | vue33.Component;
6653
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6656
+ declare const _default$237: __VLS_WithSlots$63<vue32.DefineComponent<SelectItemIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectItemIndicatorProps> & Readonly<{}>, {
6657
+ as: AsTag | vue32.Component;
6658
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6654
6659
  default?: (props: {}) => any;
6655
6660
  }>;
6656
6661
  type __VLS_WithSlots$63<T, S> = T & {
@@ -6662,9 +6667,9 @@ type __VLS_WithSlots$63<T, S> = T & {
6662
6667
  //#endregion
6663
6668
  //#region src/Select/SelectItemText.vue.d.ts
6664
6669
  interface SelectItemTextProps extends PrimitiveProps {}
6665
- declare const _default$238: __VLS_WithSlots$62<vue33.DefineComponent<SelectItemTextProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectItemTextProps> & Readonly<{}>, {
6666
- as: AsTag | vue33.Component;
6667
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6670
+ declare const _default$238: __VLS_WithSlots$62<vue32.DefineComponent<SelectItemTextProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectItemTextProps> & Readonly<{}>, {
6671
+ as: AsTag | vue32.Component;
6672
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6668
6673
  default?: (props: {}) => any;
6669
6674
  }>;
6670
6675
  type __VLS_WithSlots$62<T, S> = T & {
@@ -6678,9 +6683,9 @@ type __VLS_WithSlots$62<T, S> = T & {
6678
6683
  interface SelectLabelProps extends PrimitiveProps {
6679
6684
  for?: string;
6680
6685
  }
6681
- declare const _default$239: __VLS_WithSlots$61<vue33.DefineComponent<SelectLabelProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectLabelProps> & Readonly<{}>, {
6682
- as: AsTag | vue33.Component;
6683
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6686
+ declare const _default$239: __VLS_WithSlots$61<vue32.DefineComponent<SelectLabelProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectLabelProps> & Readonly<{}>, {
6687
+ as: AsTag | vue32.Component;
6688
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6684
6689
  default?: (props: {}) => any;
6685
6690
  }>;
6686
6691
  type __VLS_WithSlots$61<T, S> = T & {
@@ -6692,7 +6697,7 @@ type __VLS_WithSlots$61<T, S> = T & {
6692
6697
  //#endregion
6693
6698
  //#region src/Select/SelectPortal.vue.d.ts
6694
6699
  interface SelectPortalProps extends TeleportProps {}
6695
- declare const _default$240: __VLS_WithSlots$60<vue33.DefineComponent<SelectPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6700
+ declare const _default$240: __VLS_WithSlots$60<vue32.DefineComponent<SelectPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6696
6701
  default?: (props: {}) => any;
6697
6702
  }>;
6698
6703
  type __VLS_WithSlots$60<T, S> = T & {
@@ -6763,8 +6768,8 @@ declare const _default$241: <T extends AcceptableValue = AcceptableValue>(__VLS_
6763
6768
  props: __VLS_PrettifyLocal$4<Pick<Partial<{}> & Omit<{
6764
6769
  readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
6765
6770
  readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
6766
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onUpdate:open" | "onUpdate:modelValue"> & SelectRootProps<T> & Partial<{}>> & vue33.PublicProps;
6767
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
6771
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onUpdate:open" | "onUpdate:modelValue"> & SelectRootProps<T> & Partial<{}>> & vue32.PublicProps;
6772
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
6768
6773
  attrs: any;
6769
6774
  slots: {
6770
6775
  default?: (props: {
@@ -6775,7 +6780,7 @@ declare const _default$241: <T extends AcceptableValue = AcceptableValue>(__VLS_
6775
6780
  }) => any;
6776
6781
  };
6777
6782
  emit: ((evt: "update:open", value: boolean) => void) & ((evt: "update:modelValue", value: T) => void);
6778
- }>) => vue33.VNode & {
6783
+ }>) => vue32.VNode & {
6779
6784
  __ctx?: Awaited<typeof __VLS_setup>;
6780
6785
  };
6781
6786
  type __VLS_PrettifyLocal$4<T> = { [K in keyof T]: T[K] } & {};
@@ -6783,7 +6788,7 @@ type __VLS_PrettifyLocal$4<T> = { [K in keyof T]: T[K] } & {};
6783
6788
  //#endregion
6784
6789
  //#region src/Select/SelectScrollDownButton.vue.d.ts
6785
6790
  interface SelectScrollDownButtonProps extends PrimitiveProps {}
6786
- declare const _default$242: __VLS_WithSlots$59<vue33.DefineComponent<SelectScrollDownButtonProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectScrollDownButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6791
+ declare const _default$242: __VLS_WithSlots$59<vue32.DefineComponent<SelectScrollDownButtonProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectScrollDownButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6787
6792
  default?: (props: {}) => any;
6788
6793
  }>;
6789
6794
  type __VLS_WithSlots$59<T, S> = T & {
@@ -6795,7 +6800,7 @@ type __VLS_WithSlots$59<T, S> = T & {
6795
6800
  //#endregion
6796
6801
  //#region src/Select/SelectScrollUpButton.vue.d.ts
6797
6802
  interface SelectScrollUpButtonProps extends PrimitiveProps {}
6798
- declare const _default$243: __VLS_WithSlots$58<vue33.DefineComponent<SelectScrollUpButtonProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectScrollUpButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6803
+ declare const _default$243: __VLS_WithSlots$58<vue32.DefineComponent<SelectScrollUpButtonProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectScrollUpButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6799
6804
  default?: (props: {}) => any;
6800
6805
  }>;
6801
6806
  type __VLS_WithSlots$58<T, S> = T & {
@@ -6807,7 +6812,7 @@ type __VLS_WithSlots$58<T, S> = T & {
6807
6812
  //#endregion
6808
6813
  //#region src/Select/SelectSeparator.vue.d.ts
6809
6814
  interface SelectSeparatorProps extends PrimitiveProps {}
6810
- declare const _default$244: __VLS_WithSlots$57<vue33.DefineComponent<SelectSeparatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6815
+ declare const _default$244: __VLS_WithSlots$57<vue32.DefineComponent<SelectSeparatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6811
6816
  default?: (props: {}) => any;
6812
6817
  }>;
6813
6818
  type __VLS_WithSlots$57<T, S> = T & {
@@ -6821,9 +6826,9 @@ type __VLS_WithSlots$57<T, S> = T & {
6821
6826
  interface SelectTriggerProps extends PopperAnchorProps {
6822
6827
  disabled?: boolean;
6823
6828
  }
6824
- declare const _default$245: __VLS_WithSlots$56<vue33.DefineComponent<SelectTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectTriggerProps> & Readonly<{}>, {
6825
- as: AsTag | vue33.Component;
6826
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6829
+ declare const _default$245: __VLS_WithSlots$56<vue32.DefineComponent<SelectTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectTriggerProps> & Readonly<{}>, {
6830
+ as: AsTag | vue32.Component;
6831
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6827
6832
  default?: (props: {}) => any;
6828
6833
  }>;
6829
6834
  type __VLS_WithSlots$56<T, S> = T & {
@@ -6838,10 +6843,10 @@ interface SelectValueProps extends PrimitiveProps {
6838
6843
  /** The content that will be rendered inside the `SelectValue` when no `value` or `defaultValue` is set. */
6839
6844
  placeholder?: string;
6840
6845
  }
6841
- declare const _default$246: __VLS_WithSlots$55<vue33.DefineComponent<SelectValueProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectValueProps> & Readonly<{}>, {
6842
- as: AsTag | vue33.Component;
6846
+ declare const _default$246: __VLS_WithSlots$55<vue32.DefineComponent<SelectValueProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectValueProps> & Readonly<{}>, {
6847
+ as: AsTag | vue32.Component;
6843
6848
  placeholder: string;
6844
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6849
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6845
6850
  default?: (props: {
6846
6851
  selectedLabel: string[];
6847
6852
  modelValue: AcceptableValue | AcceptableValue[] | undefined;
@@ -6861,7 +6866,7 @@ interface SelectViewportProps extends PrimitiveProps {
6861
6866
  */
6862
6867
  nonce?: string;
6863
6868
  }
6864
- declare const _default$247: __VLS_WithSlots$54<vue33.DefineComponent<SelectViewportProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SelectViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6869
+ declare const _default$247: __VLS_WithSlots$54<vue32.DefineComponent<SelectViewportProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SelectViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6865
6870
  default?: (props: {}) => any;
6866
6871
  }>;
6867
6872
  type __VLS_WithSlots$54<T, S> = T & {
@@ -6888,9 +6893,9 @@ interface BaseSeparatorProps extends PrimitiveProps {
6888
6893
  //#endregion
6889
6894
  //#region src/Separator/Separator.vue.d.ts
6890
6895
  interface SeparatorProps extends BaseSeparatorProps {}
6891
- declare const _default$248: __VLS_WithSlots$53<vue33.DefineComponent<SeparatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SeparatorProps> & Readonly<{}>, {
6896
+ declare const _default$248: __VLS_WithSlots$53<vue32.DefineComponent<SeparatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SeparatorProps> & Readonly<{}>, {
6892
6897
  orientation: DataOrientation;
6893
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6898
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6894
6899
  default?: (props: {}) => any;
6895
6900
  }>;
6896
6901
  type __VLS_WithSlots$53<T, S> = T & {
@@ -6902,9 +6907,9 @@ type __VLS_WithSlots$53<T, S> = T & {
6902
6907
  //#endregion
6903
6908
  //#region src/Slider/SliderRange.vue.d.ts
6904
6909
  interface SliderRangeProps extends PrimitiveProps {}
6905
- declare const _default$249: __VLS_WithSlots$52<vue33.DefineComponent<SliderRangeProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SliderRangeProps> & Readonly<{}>, {
6906
- as: AsTag | vue33.Component;
6907
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6910
+ declare const _default$249: __VLS_WithSlots$52<vue32.DefineComponent<SliderRangeProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SliderRangeProps> & Readonly<{}>, {
6911
+ as: AsTag | vue32.Component;
6912
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6908
6913
  default?: (props: {}) => any;
6909
6914
  }>;
6910
6915
  type __VLS_WithSlots$52<T, S> = T & {
@@ -6969,24 +6974,24 @@ interface SliderRootContext {
6969
6974
  thumbAlignment: Ref<ThumbAlignment>;
6970
6975
  }
6971
6976
  declare const injectSliderRootContext: <T extends SliderRootContext | null | undefined = SliderRootContext>(fallback?: T | undefined) => T extends null ? SliderRootContext | null : SliderRootContext, provideSliderRootContext: (contextValue: SliderRootContext) => SliderRootContext;
6972
- declare const _default$250: __VLS_WithSlots$51<vue33.DefineComponent<SliderRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
6977
+ declare const _default$250: __VLS_WithSlots$51<vue32.DefineComponent<SliderRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
6973
6978
  "update:modelValue": (payload: number[] | undefined) => any;
6974
6979
  valueCommit: (payload: number[]) => any;
6975
- }, string, vue33.PublicProps, Readonly<SliderRootProps> & Readonly<{
6980
+ }, string, vue32.PublicProps, Readonly<SliderRootProps> & Readonly<{
6976
6981
  "onUpdate:modelValue"?: ((payload: number[] | undefined) => any) | undefined;
6977
6982
  onValueCommit?: ((payload: number[]) => any) | undefined;
6978
6983
  }>, {
6979
- as: AsTag | vue33.Component;
6984
+ as: AsTag | vue32.Component;
6980
6985
  disabled: boolean;
6981
6986
  defaultValue: number[];
6987
+ step: number;
6982
6988
  orientation: DataOrientation;
6983
- max: number;
6984
6989
  min: number;
6985
- step: number;
6990
+ max: number;
6986
6991
  inverted: boolean;
6987
6992
  minStepsBetweenThumbs: number;
6988
6993
  thumbAlignment: ThumbAlignment;
6989
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
6994
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
6990
6995
  default?: (props: {
6991
6996
  /** Current slider values */
6992
6997
  modelValue: number[] | null;
@@ -7001,9 +7006,9 @@ type __VLS_WithSlots$51<T, S> = T & {
7001
7006
  //#endregion
7002
7007
  //#region src/Slider/SliderThumb.vue.d.ts
7003
7008
  interface SliderThumbProps extends PrimitiveProps {}
7004
- declare const _default$251: __VLS_WithSlots$50<vue33.DefineComponent<SliderThumbProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SliderThumbProps> & Readonly<{}>, {
7005
- as: AsTag | vue33.Component;
7006
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7009
+ declare const _default$251: __VLS_WithSlots$50<vue32.DefineComponent<SliderThumbProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SliderThumbProps> & Readonly<{}>, {
7010
+ as: AsTag | vue32.Component;
7011
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7007
7012
  default?: (props: {}) => any;
7008
7013
  }>;
7009
7014
  type __VLS_WithSlots$50<T, S> = T & {
@@ -7015,9 +7020,9 @@ type __VLS_WithSlots$50<T, S> = T & {
7015
7020
  //#endregion
7016
7021
  //#region src/Slider/SliderTrack.vue.d.ts
7017
7022
  interface SliderTrackProps extends PrimitiveProps {}
7018
- declare const _default$252: __VLS_WithSlots$49<vue33.DefineComponent<SliderTrackProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SliderTrackProps> & Readonly<{}>, {
7019
- as: AsTag | vue33.Component;
7020
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7023
+ declare const _default$252: __VLS_WithSlots$49<vue32.DefineComponent<SliderTrackProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SliderTrackProps> & Readonly<{}>, {
7024
+ as: AsTag | vue32.Component;
7025
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7021
7026
  default?: (props: {}) => any;
7022
7027
  }>;
7023
7028
  type __VLS_WithSlots$49<T, S> = T & {
@@ -7075,7 +7080,7 @@ type PanelData = {
7075
7080
  idIsFromProps: boolean;
7076
7081
  order: number | undefined;
7077
7082
  };
7078
- declare const _default$254: __VLS_WithSlots$48<vue33.DefineComponent<SplitterPanelProps, {
7083
+ declare const _default$254: __VLS_WithSlots$48<vue32.DefineComponent<SplitterPanelProps, {
7079
7084
  /** If panel is `collapsible`, collapse it fully. */
7080
7085
  collapse: () => void;
7081
7086
  /** If panel is currently collapsed, expand it to its most recent size. */
@@ -7085,18 +7090,18 @@ declare const _default$254: __VLS_WithSlots$48<vue33.DefineComponent<SplitterPan
7085
7090
  /** Resize panel to the specified percentage (1 - 100). */
7086
7091
  resize: (size: number) => void;
7087
7092
  /** Returns `true` if the panel is currently collapsed */
7088
- isCollapsed: vue33.ComputedRef<boolean>;
7093
+ isCollapsed: vue32.ComputedRef<boolean>;
7089
7094
  /** Returns `true` if the panel is currently not collapsed */
7090
- isExpanded: vue33.ComputedRef<boolean>;
7091
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
7095
+ isExpanded: vue32.ComputedRef<boolean>;
7096
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
7092
7097
  resize: (size: number, prevSize: number | undefined) => any;
7093
7098
  collapse: () => any;
7094
7099
  expand: () => any;
7095
- }, string, vue33.PublicProps, Readonly<SplitterPanelProps> & Readonly<{
7100
+ }, string, vue32.PublicProps, Readonly<SplitterPanelProps> & Readonly<{
7096
7101
  onResize?: ((size: number, prevSize: number | undefined) => any) | undefined;
7097
7102
  onCollapse?: (() => any) | undefined;
7098
7103
  onExpand?: (() => any) | undefined;
7099
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7104
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7100
7105
  default?: (props: {
7101
7106
  /** Is the panel collapsed */
7102
7107
  isCollapsed: boolean;
@@ -7170,15 +7175,15 @@ type PanelGroupContext = {
7170
7175
  getPanelStyle: (panelData: PanelData, defaultSize: number | undefined) => CSSProperties;
7171
7176
  };
7172
7177
  declare const injectPanelGroupContext: <T extends PanelGroupContext | null | undefined = PanelGroupContext>(fallback?: T | undefined) => T extends null ? PanelGroupContext | null : PanelGroupContext, providePanelGroupContext: (contextValue: PanelGroupContext) => PanelGroupContext;
7173
- declare const _default$253: __VLS_WithSlots$47<vue33.DefineComponent<SplitterGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
7178
+ declare const _default$253: __VLS_WithSlots$47<vue32.DefineComponent<SplitterGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
7174
7179
  layout: (val: number[]) => any;
7175
- }, string, vue33.PublicProps, Readonly<SplitterGroupProps> & Readonly<{
7180
+ }, string, vue32.PublicProps, Readonly<SplitterGroupProps> & Readonly<{
7176
7181
  onLayout?: ((val: number[]) => any) | undefined;
7177
7182
  }>, {
7178
7183
  autoSaveId: string | null;
7179
7184
  keyboardResizeBy: number | null;
7180
7185
  storage: PanelGroupStorage;
7181
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7186
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7182
7187
  default?: (props: {
7183
7188
  /** Current size of layout */
7184
7189
  layout: number[];
@@ -7216,13 +7221,13 @@ type SplitterResizeHandleEmits = {
7216
7221
  /** Event handler called when dragging the handler. */
7217
7222
  dragging: [isDragging: boolean];
7218
7223
  };
7219
- declare const _default$255: __VLS_WithSlots$46<vue33.DefineComponent<SplitterResizeHandleProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
7224
+ declare const _default$255: __VLS_WithSlots$46<vue32.DefineComponent<SplitterResizeHandleProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
7220
7225
  dragging: (isDragging: boolean) => any;
7221
- }, string, vue33.PublicProps, Readonly<SplitterResizeHandleProps> & Readonly<{
7226
+ }, string, vue32.PublicProps, Readonly<SplitterResizeHandleProps> & Readonly<{
7222
7227
  onDragging?: ((isDragging: boolean) => any) | undefined;
7223
7228
  }>, {
7224
7229
  tabindex: number;
7225
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7230
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7226
7231
  default?: (props: {}) => any;
7227
7232
  }>;
7228
7233
  type __VLS_WithSlots$46<T, S> = T & {
@@ -7234,9 +7239,9 @@ type __VLS_WithSlots$46<T, S> = T & {
7234
7239
  //#endregion
7235
7240
  //#region src/Stepper/StepperDescription.vue.d.ts
7236
7241
  interface StepperDescriptionProps extends PrimitiveProps {}
7237
- declare const _default$256: __VLS_WithSlots$45<vue33.DefineComponent<StepperDescriptionProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<StepperDescriptionProps> & Readonly<{}>, {
7238
- as: AsTag | vue33.Component;
7239
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7242
+ declare const _default$256: __VLS_WithSlots$45<vue32.DefineComponent<StepperDescriptionProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<StepperDescriptionProps> & Readonly<{}>, {
7243
+ as: AsTag | vue32.Component;
7244
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7240
7245
  default?: (props: {}) => any;
7241
7246
  }>;
7242
7247
  type __VLS_WithSlots$45<T, S> = T & {
@@ -7248,7 +7253,7 @@ type __VLS_WithSlots$45<T, S> = T & {
7248
7253
  //#endregion
7249
7254
  //#region src/Stepper/StepperIndicator.vue.d.ts
7250
7255
  interface StepperIndicatorProps extends PrimitiveProps {}
7251
- declare const _default$257: __VLS_WithSlots$44<vue33.DefineComponent<StepperIndicatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<StepperIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7256
+ declare const _default$257: __VLS_WithSlots$44<vue32.DefineComponent<StepperIndicatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<StepperIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7252
7257
  default?: (props: {
7253
7258
  /** Current step */
7254
7259
  step: number;
@@ -7280,10 +7285,10 @@ interface StepperItemProps extends PrimitiveProps {
7280
7285
  /** Shows whether the step is completed. */
7281
7286
  completed?: boolean;
7282
7287
  }
7283
- declare const _default$258: __VLS_WithSlots$43<vue33.DefineComponent<StepperItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<StepperItemProps> & Readonly<{}>, {
7288
+ declare const _default$258: __VLS_WithSlots$43<vue32.DefineComponent<StepperItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<StepperItemProps> & Readonly<{}>, {
7284
7289
  disabled: boolean;
7285
7290
  completed: boolean;
7286
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7291
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7287
7292
  default?: (props: {
7288
7293
  /** The current state of the stepper item */
7289
7294
  state: StepperState;
@@ -7330,27 +7335,27 @@ type StepperRootEmits = {
7330
7335
  'update:modelValue': [payload: number | undefined];
7331
7336
  };
7332
7337
  declare const injectStepperRootContext: <T extends StepperRootContext | null | undefined = StepperRootContext>(fallback?: T | undefined) => T extends null ? StepperRootContext | null : StepperRootContext, provideStepperRootContext: (contextValue: StepperRootContext) => StepperRootContext;
7333
- declare const _default$259: __VLS_WithSlots$42<vue33.DefineComponent<StepperRootProps, {
7338
+ declare const _default$259: __VLS_WithSlots$42<vue32.DefineComponent<StepperRootProps, {
7334
7339
  goToStep: (step: number) => void;
7335
7340
  nextStep: () => void;
7336
7341
  prevStep: () => void;
7337
- modelValue: vue33.WritableComputedRef<number | undefined, number | undefined>;
7338
- totalSteps: vue33.ComputedRef<number>;
7339
- isNextDisabled: vue33.ComputedRef<boolean>;
7340
- isPrevDisabled: vue33.ComputedRef<boolean>;
7341
- isFirstStep: vue33.ComputedRef<boolean>;
7342
- isLastStep: vue33.ComputedRef<boolean>;
7342
+ modelValue: vue32.WritableComputedRef<number | undefined, number | undefined>;
7343
+ totalSteps: vue32.ComputedRef<number>;
7344
+ isNextDisabled: vue32.ComputedRef<boolean>;
7345
+ isPrevDisabled: vue32.ComputedRef<boolean>;
7346
+ isFirstStep: vue32.ComputedRef<boolean>;
7347
+ isLastStep: vue32.ComputedRef<boolean>;
7343
7348
  hasNext: () => boolean;
7344
7349
  hasPrev: () => boolean;
7345
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
7350
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
7346
7351
  "update:modelValue": (payload: number | undefined) => any;
7347
- }, string, vue33.PublicProps, Readonly<StepperRootProps> & Readonly<{
7352
+ }, string, vue32.PublicProps, Readonly<StepperRootProps> & Readonly<{
7348
7353
  "onUpdate:modelValue"?: ((payload: number | undefined) => any) | undefined;
7349
7354
  }>, {
7350
7355
  defaultValue: number;
7351
7356
  orientation: DataOrientation;
7352
7357
  linear: boolean;
7353
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7358
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7354
7359
  default?: (props: {
7355
7360
  /** Current step */
7356
7361
  modelValue: number | undefined;
@@ -7385,7 +7390,7 @@ type __VLS_WithSlots$42<T, S> = T & {
7385
7390
  //#endregion
7386
7391
  //#region src/Stepper/StepperSeparator.vue.d.ts
7387
7392
  interface StepperSeparatorProps extends SeparatorProps {}
7388
- declare const _default$260: __VLS_WithSlots$41<vue33.DefineComponent<StepperSeparatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<StepperSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7393
+ declare const _default$260: __VLS_WithSlots$41<vue32.DefineComponent<StepperSeparatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<StepperSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7389
7394
  default?: (props: {}) => any;
7390
7395
  }>;
7391
7396
  type __VLS_WithSlots$41<T, S> = T & {
@@ -7397,9 +7402,9 @@ type __VLS_WithSlots$41<T, S> = T & {
7397
7402
  //#endregion
7398
7403
  //#region src/Stepper/StepperTitle.vue.d.ts
7399
7404
  interface StepperTitleProps extends PrimitiveProps {}
7400
- declare const _default$261: __VLS_WithSlots$40<vue33.DefineComponent<StepperTitleProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<StepperTitleProps> & Readonly<{}>, {
7401
- as: AsTag | vue33.Component;
7402
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7405
+ declare const _default$261: __VLS_WithSlots$40<vue32.DefineComponent<StepperTitleProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<StepperTitleProps> & Readonly<{}>, {
7406
+ as: AsTag | vue32.Component;
7407
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7403
7408
  default?: (props: {}) => any;
7404
7409
  }>;
7405
7410
  type __VLS_WithSlots$40<T, S> = T & {
@@ -7411,9 +7416,9 @@ type __VLS_WithSlots$40<T, S> = T & {
7411
7416
  //#endregion
7412
7417
  //#region src/Stepper/StepperTrigger.vue.d.ts
7413
7418
  interface StepperTriggerProps extends PrimitiveProps {}
7414
- declare const _default$262: __VLS_WithSlots$39<vue33.DefineComponent<StepperTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<StepperTriggerProps> & Readonly<{}>, {
7415
- as: AsTag | vue33.Component;
7416
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7419
+ declare const _default$262: __VLS_WithSlots$39<vue32.DefineComponent<StepperTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<StepperTriggerProps> & Readonly<{}>, {
7420
+ as: AsTag | vue32.Component;
7421
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7417
7422
  default?: (props: {}) => any;
7418
7423
  }>;
7419
7424
  type __VLS_WithSlots$39<T, S> = T & {
@@ -7445,15 +7450,15 @@ interface SwitchRootContext {
7445
7450
  disabled: Ref<boolean>;
7446
7451
  }
7447
7452
  declare const injectSwitchRootContext: <T extends SwitchRootContext | null | undefined = SwitchRootContext>(fallback?: T | undefined) => T extends null ? SwitchRootContext | null : SwitchRootContext, provideSwitchRootContext: (contextValue: SwitchRootContext) => SwitchRootContext;
7448
- declare const _default$263: __VLS_WithSlots$38<vue33.DefineComponent<SwitchRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
7453
+ declare const _default$263: __VLS_WithSlots$38<vue32.DefineComponent<SwitchRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
7449
7454
  "update:modelValue": (payload: boolean) => any;
7450
- }, string, vue33.PublicProps, Readonly<SwitchRootProps> & Readonly<{
7455
+ }, string, vue32.PublicProps, Readonly<SwitchRootProps> & Readonly<{
7451
7456
  "onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
7452
7457
  }>, {
7453
- as: AsTag | vue33.Component;
7458
+ as: AsTag | vue32.Component;
7454
7459
  value: string;
7455
7460
  modelValue: boolean | null;
7456
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7461
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7457
7462
  default?: (props: {
7458
7463
  /** Current value */
7459
7464
  modelValue: boolean;
@@ -7468,9 +7473,9 @@ type __VLS_WithSlots$38<T, S> = T & {
7468
7473
  //#endregion
7469
7474
  //#region src/Switch/SwitchThumb.vue.d.ts
7470
7475
  interface SwitchThumbProps extends PrimitiveProps {}
7471
- declare const _default$264: __VLS_WithSlots$37<vue33.DefineComponent<SwitchThumbProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<SwitchThumbProps> & Readonly<{}>, {
7472
- as: AsTag | vue33.Component;
7473
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7476
+ declare const _default$264: __VLS_WithSlots$37<vue32.DefineComponent<SwitchThumbProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<SwitchThumbProps> & Readonly<{}>, {
7477
+ as: AsTag | vue32.Component;
7478
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7474
7479
  default?: (props: {}) => any;
7475
7480
  }>;
7476
7481
  type __VLS_WithSlots$37<T, S> = T & {
@@ -7490,7 +7495,7 @@ interface TabsContentProps extends PrimitiveProps {
7490
7495
  */
7491
7496
  forceMount?: boolean;
7492
7497
  }
7493
- declare const _default$265: __VLS_WithSlots$36<vue33.DefineComponent<TabsContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7498
+ declare const _default$265: __VLS_WithSlots$36<vue32.DefineComponent<TabsContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7494
7499
  default?: (props: {}) => any;
7495
7500
  }>;
7496
7501
  type __VLS_WithSlots$36<T, S> = T & {
@@ -7502,9 +7507,9 @@ type __VLS_WithSlots$36<T, S> = T & {
7502
7507
  //#endregion
7503
7508
  //#region src/Tabs/TabsIndicator.vue.d.ts
7504
7509
  interface TabsIndicatorProps extends PrimitiveProps {}
7505
- declare const _default$266: __VLS_WithSlots$35<vue33.DefineComponent<TabsIndicatorProps, {
7510
+ declare const _default$266: __VLS_WithSlots$35<vue32.DefineComponent<TabsIndicatorProps, {
7506
7511
  updateIndicatorStyle: () => void;
7507
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TabsIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7512
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TabsIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7508
7513
  default?: (props: {}) => any;
7509
7514
  }>;
7510
7515
  type __VLS_WithSlots$35<T, S> = T & {
@@ -7519,9 +7524,9 @@ interface TabsListProps extends PrimitiveProps {
7519
7524
  /** When `true`, keyboard navigation will loop from last tab to first, and vice versa. */
7520
7525
  loop?: boolean;
7521
7526
  }
7522
- declare const _default$267: __VLS_WithSlots$34<vue33.DefineComponent<TabsListProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TabsListProps> & Readonly<{}>, {
7527
+ declare const _default$267: __VLS_WithSlots$34<vue32.DefineComponent<TabsListProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TabsListProps> & Readonly<{}>, {
7523
7528
  loop: boolean;
7524
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7529
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7525
7530
  default?: (props: {}) => any;
7526
7531
  }>;
7527
7532
  type __VLS_WithSlots$34<T, S> = T & {
@@ -7582,8 +7587,8 @@ declare const injectTabsRootContext: <T extends TabsRootContext | null | undefin
7582
7587
  declare const _default$268: <T extends StringOrNumber = StringOrNumber>(__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<{
7583
7588
  props: __VLS_PrettifyLocal$3<Pick<Partial<{}> & Omit<{
7584
7589
  readonly "onUpdate:modelValue"?: ((payload: T) => any) | undefined;
7585
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onUpdate:modelValue"> & TabsRootProps<T> & Partial<{}>> & vue33.PublicProps;
7586
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
7590
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onUpdate:modelValue"> & TabsRootProps<T> & Partial<{}>> & vue32.PublicProps;
7591
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
7587
7592
  attrs: any;
7588
7593
  slots: {
7589
7594
  default?: (props: {
@@ -7592,7 +7597,7 @@ declare const _default$268: <T extends StringOrNumber = StringOrNumber>(__VLS_pr
7592
7597
  }) => any;
7593
7598
  };
7594
7599
  emit: (evt: "update:modelValue", payload: T) => void;
7595
- }>) => vue33.VNode & {
7600
+ }>) => vue32.VNode & {
7596
7601
  __ctx?: Awaited<typeof __VLS_setup>;
7597
7602
  };
7598
7603
  type __VLS_PrettifyLocal$3<T> = { [K in keyof T]: T[K] } & {};
@@ -7605,10 +7610,10 @@ interface TabsTriggerProps extends PrimitiveProps {
7605
7610
  /** When `true`, prevents the user from interacting with the tab. */
7606
7611
  disabled?: boolean;
7607
7612
  }
7608
- declare const _default$269: __VLS_WithSlots$33<vue33.DefineComponent<TabsTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TabsTriggerProps> & Readonly<{}>, {
7609
- as: AsTag | vue33.Component;
7613
+ declare const _default$269: __VLS_WithSlots$33<vue32.DefineComponent<TabsTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TabsTriggerProps> & Readonly<{}>, {
7614
+ as: AsTag | vue32.Component;
7610
7615
  disabled: boolean;
7611
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7616
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7612
7617
  default?: (props: {}) => any;
7613
7618
  }>;
7614
7619
  type __VLS_WithSlots$33<T, S> = T & {
@@ -7620,9 +7625,9 @@ type __VLS_WithSlots$33<T, S> = T & {
7620
7625
  //#endregion
7621
7626
  //#region src/TagsInput/TagsInputClear.vue.d.ts
7622
7627
  interface TagsInputClearProps extends PrimitiveProps {}
7623
- declare const _default$270: __VLS_WithSlots$32<vue33.DefineComponent<TagsInputClearProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TagsInputClearProps> & Readonly<{}>, {
7624
- as: AsTag | vue33.Component;
7625
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7628
+ declare const _default$270: __VLS_WithSlots$32<vue32.DefineComponent<TagsInputClearProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TagsInputClearProps> & Readonly<{}>, {
7629
+ as: AsTag | vue32.Component;
7630
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7626
7631
  default?: (props: {}) => any;
7627
7632
  }>;
7628
7633
  type __VLS_WithSlots$32<T, S> = T & {
@@ -7641,9 +7646,9 @@ interface TagsInputInputProps extends PrimitiveProps {
7641
7646
  /** Maximum number of character allowed. */
7642
7647
  maxLength?: number;
7643
7648
  }
7644
- declare const _default$271: __VLS_WithSlots$31<vue33.DefineComponent<TagsInputInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TagsInputInputProps> & Readonly<{}>, {
7645
- as: AsTag | vue33.Component;
7646
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7649
+ declare const _default$271: __VLS_WithSlots$31<vue32.DefineComponent<TagsInputInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TagsInputInputProps> & Readonly<{}>, {
7650
+ as: AsTag | vue32.Component;
7651
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7647
7652
  default?: (props: {}) => any;
7648
7653
  }>;
7649
7654
  type __VLS_WithSlots$31<T, S> = T & {
@@ -7716,8 +7721,8 @@ declare const _default$275: <T extends AcceptableInputValue = string>(__VLS_prop
7716
7721
  readonly "onUpdate:modelValue"?: ((payload: T[]) => any) | undefined;
7717
7722
  readonly onAddTag?: ((payload: T) => any) | undefined;
7718
7723
  readonly onRemoveTag?: ((payload: T) => any) | undefined;
7719
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onInvalid" | "onUpdate:modelValue" | "onAddTag" | "onRemoveTag"> & TagsInputRootProps<T> & Partial<{}>> & vue33.PublicProps;
7720
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
7724
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onInvalid" | "onUpdate:modelValue" | "onAddTag" | "onRemoveTag"> & TagsInputRootProps<T> & Partial<{}>> & vue32.PublicProps;
7725
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
7721
7726
  attrs: any;
7722
7727
  slots: {
7723
7728
  default?: (props: {
@@ -7726,7 +7731,7 @@ declare const _default$275: <T extends AcceptableInputValue = string>(__VLS_prop
7726
7731
  }) => any;
7727
7732
  };
7728
7733
  emit: ((evt: "invalid", payload: T) => void) & ((evt: "update:modelValue", payload: T[]) => void) & ((evt: "addTag", payload: T) => void) & ((evt: "removeTag", payload: T) => void);
7729
- }>) => vue33.VNode & {
7734
+ }>) => vue32.VNode & {
7730
7735
  __ctx?: Awaited<typeof __VLS_setup>;
7731
7736
  };
7732
7737
  type __VLS_PrettifyLocal$2<T> = { [K in keyof T]: T[K] } & {};
@@ -7747,7 +7752,7 @@ interface TagsInputItemContext {
7747
7752
  textId: string;
7748
7753
  }
7749
7754
  declare const injectTagsInputItemContext: <T extends TagsInputItemContext | null | undefined = TagsInputItemContext>(fallback?: T | undefined) => T extends null ? TagsInputItemContext | null : TagsInputItemContext, provideTagsInputItemContext: (contextValue: TagsInputItemContext) => TagsInputItemContext;
7750
- declare const _default$272: __VLS_WithSlots$30<vue33.DefineComponent<TagsInputItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TagsInputItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7755
+ declare const _default$272: __VLS_WithSlots$30<vue32.DefineComponent<TagsInputItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TagsInputItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7751
7756
  default?: (props: {}) => any;
7752
7757
  }>;
7753
7758
  type __VLS_WithSlots$30<T, S> = T & {
@@ -7759,9 +7764,9 @@ type __VLS_WithSlots$30<T, S> = T & {
7759
7764
  //#endregion
7760
7765
  //#region src/TagsInput/TagsInputItemDelete.vue.d.ts
7761
7766
  interface TagsInputItemDeleteProps extends PrimitiveProps {}
7762
- declare const _default$273: __VLS_WithSlots$29<vue33.DefineComponent<TagsInputItemDeleteProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TagsInputItemDeleteProps> & Readonly<{}>, {
7763
- as: AsTag | vue33.Component;
7764
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7767
+ declare const _default$273: __VLS_WithSlots$29<vue32.DefineComponent<TagsInputItemDeleteProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TagsInputItemDeleteProps> & Readonly<{}>, {
7768
+ as: AsTag | vue32.Component;
7769
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7765
7770
  default?: (props: {}) => any;
7766
7771
  }>;
7767
7772
  type __VLS_WithSlots$29<T, S> = T & {
@@ -7773,9 +7778,9 @@ type __VLS_WithSlots$29<T, S> = T & {
7773
7778
  //#endregion
7774
7779
  //#region src/TagsInput/TagsInputItemText.vue.d.ts
7775
7780
  interface TagsInputItemTextProps extends PrimitiveProps {}
7776
- declare const _default$274: __VLS_WithSlots$28<vue33.DefineComponent<TagsInputItemTextProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TagsInputItemTextProps> & Readonly<{}>, {
7777
- as: AsTag | vue33.Component;
7778
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7781
+ declare const _default$274: __VLS_WithSlots$28<vue32.DefineComponent<TagsInputItemTextProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TagsInputItemTextProps> & Readonly<{}>, {
7782
+ as: AsTag | vue32.Component;
7783
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7779
7784
  default?: (props: {}) => any;
7780
7785
  }>;
7781
7786
  type __VLS_WithSlots$28<T, S> = T & {
@@ -7790,7 +7795,7 @@ interface TimeFieldInputProps extends PrimitiveProps {
7790
7795
  /** The part of the date to render */
7791
7796
  part: SegmentPart;
7792
7797
  }
7793
- declare const _default$276: __VLS_WithSlots$27<vue33.DefineComponent<TimeFieldInputProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TimeFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7798
+ declare const _default$276: __VLS_WithSlots$27<vue32.DefineComponent<TimeFieldInputProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TimeFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7794
7799
  default?: (props: {}) => any;
7795
7800
  }>;
7796
7801
  type __VLS_WithSlots$27<T, S> = T & {
@@ -7862,22 +7867,22 @@ type TimeFieldRootEmits = {
7862
7867
  'update:placeholder': [date: TimeValue];
7863
7868
  };
7864
7869
  declare const injectTimeFieldRootContext: <T extends TimeFieldRootContext | null | undefined = TimeFieldRootContext>(fallback?: T | undefined) => T extends null ? TimeFieldRootContext | null : TimeFieldRootContext, provideTimeFieldRootContext: (contextValue: TimeFieldRootContext) => TimeFieldRootContext;
7865
- declare const _default$277: __VLS_WithSlots$26<vue33.DefineComponent<TimeFieldRootProps, {
7870
+ declare const _default$277: __VLS_WithSlots$26<vue32.DefineComponent<TimeFieldRootProps, {
7866
7871
  /** Helper to set the focused element inside the DateField */
7867
7872
  setFocusedElement: (el: HTMLElement) => void;
7868
- }, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
7873
+ }, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
7869
7874
  "update:modelValue": (date: TimeValue | undefined) => any;
7870
7875
  "update:placeholder": (date: TimeValue) => any;
7871
- }, string, vue33.PublicProps, Readonly<TimeFieldRootProps> & Readonly<{
7876
+ }, string, vue32.PublicProps, Readonly<TimeFieldRootProps> & Readonly<{
7872
7877
  "onUpdate:modelValue"?: ((date: TimeValue | undefined) => any) | undefined;
7873
7878
  "onUpdate:placeholder"?: ((date: TimeValue) => any) | undefined;
7874
7879
  }>, {
7875
7880
  placeholder: TimeValue;
7876
7881
  disabled: boolean;
7877
7882
  defaultValue: TimeValue;
7878
- stepSnapping: boolean;
7879
7883
  readonly: boolean;
7880
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7884
+ stepSnapping: boolean;
7885
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7881
7886
  default?: (props: {
7882
7887
  /** The current time of the field */
7883
7888
  modelValue: TimeValue | undefined;
@@ -7899,9 +7904,9 @@ type __VLS_WithSlots$26<T, S> = T & {
7899
7904
  //#endregion
7900
7905
  //#region src/Toast/ToastClose.vue.d.ts
7901
7906
  interface ToastCloseProps extends PrimitiveProps {}
7902
- declare const _default$279: __VLS_WithSlots$25<vue33.DefineComponent<ToastCloseProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToastCloseProps> & Readonly<{}>, {
7903
- as: AsTag | vue33.Component;
7904
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7907
+ declare const _default$279: __VLS_WithSlots$25<vue32.DefineComponent<ToastCloseProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToastCloseProps> & Readonly<{}>, {
7908
+ as: AsTag | vue32.Component;
7909
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7905
7910
  default?: (props: {}) => any;
7906
7911
  }>;
7907
7912
  type __VLS_WithSlots$25<T, S> = T & {
@@ -7921,7 +7926,7 @@ interface ToastActionProps extends ToastCloseProps {
7921
7926
  */
7922
7927
  altText: string;
7923
7928
  }
7924
- declare const _default$278: __VLS_WithSlots$24<vue33.DefineComponent<ToastActionProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToastActionProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7929
+ declare const _default$278: __VLS_WithSlots$24<vue32.DefineComponent<ToastActionProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToastActionProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7925
7930
  default?: (props: {}) => any;
7926
7931
  }>;
7927
7932
  type __VLS_WithSlots$24<T, S> = T & {
@@ -7933,7 +7938,7 @@ type __VLS_WithSlots$24<T, S> = T & {
7933
7938
  //#endregion
7934
7939
  //#region src/Toast/ToastDescription.vue.d.ts
7935
7940
  interface ToastDescriptionProps extends PrimitiveProps {}
7936
- declare const _default$280: __VLS_WithSlots$23<vue33.DefineComponent<ToastDescriptionProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToastDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7941
+ declare const _default$280: __VLS_WithSlots$23<vue32.DefineComponent<ToastDescriptionProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToastDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7937
7942
  default?: (props: {}) => any;
7938
7943
  }>;
7939
7944
  type __VLS_WithSlots$23<T, S> = T & {
@@ -7945,7 +7950,7 @@ type __VLS_WithSlots$23<T, S> = T & {
7945
7950
  //#endregion
7946
7951
  //#region src/Toast/ToastPortal.vue.d.ts
7947
7952
  interface ToastPortalProps extends TeleportProps {}
7948
- declare const _default$281: __VLS_WithSlots$22<vue33.DefineComponent<ToastPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToastPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
7953
+ declare const _default$281: __VLS_WithSlots$22<vue32.DefineComponent<ToastPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToastPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
7949
7954
  default?: (props: {}) => any;
7950
7955
  }>;
7951
7956
  type __VLS_WithSlots$22<T, S> = T & {
@@ -8011,12 +8016,12 @@ interface ToastProviderProps {
8011
8016
  swipeThreshold?: number;
8012
8017
  }
8013
8018
  declare const injectToastProviderContext: <T extends ToastProviderContext | null | undefined = ToastProviderContext>(fallback?: T | undefined) => T extends null ? ToastProviderContext | null : ToastProviderContext, provideToastProviderContext: (contextValue: ToastProviderContext) => ToastProviderContext;
8014
- declare const _default$282: __VLS_WithSlots$21<vue33.DefineComponent<ToastProviderProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToastProviderProps> & Readonly<{}>, {
8019
+ declare const _default$282: __VLS_WithSlots$21<vue32.DefineComponent<ToastProviderProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToastProviderProps> & Readonly<{}>, {
8015
8020
  label: string;
8016
8021
  duration: number;
8017
8022
  swipeDirection: SwipeDirection;
8018
8023
  swipeThreshold: number;
8019
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8024
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8020
8025
  default?: (props: {}) => any;
8021
8026
  }>;
8022
8027
  type __VLS_WithSlots$21<T, S> = T & {
@@ -8076,19 +8081,19 @@ interface ToastRootProps extends ToastRootImplProps {
8076
8081
  */
8077
8082
  forceMount?: boolean;
8078
8083
  }
8079
- declare const _default$283: __VLS_WithSlots$20<vue33.DefineComponent<ToastRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
8084
+ declare const _default$283: __VLS_WithSlots$20<vue32.DefineComponent<ToastRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
8080
8085
  pause: () => any;
8081
- "update:open": (value: boolean) => any;
8082
8086
  escapeKeyDown: (event: KeyboardEvent) => any;
8087
+ "update:open": (value: boolean) => any;
8083
8088
  resume: () => any;
8084
8089
  swipeStart: (event: SwipeEvent) => any;
8085
8090
  swipeMove: (event: SwipeEvent) => any;
8086
8091
  swipeCancel: (event: SwipeEvent) => any;
8087
8092
  swipeEnd: (event: SwipeEvent) => any;
8088
- }, string, vue33.PublicProps, Readonly<ToastRootProps> & Readonly<{
8093
+ }, string, vue32.PublicProps, Readonly<ToastRootProps> & Readonly<{
8089
8094
  onPause?: (() => any) | undefined;
8090
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
8091
8095
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
8096
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
8092
8097
  onResume?: (() => any) | undefined;
8093
8098
  onSwipeStart?: ((event: SwipeEvent) => any) | undefined;
8094
8099
  onSwipeMove?: ((event: SwipeEvent) => any) | undefined;
@@ -8096,10 +8101,10 @@ declare const _default$283: __VLS_WithSlots$20<vue33.DefineComponent<ToastRootPr
8096
8101
  onSwipeEnd?: ((event: SwipeEvent) => any) | undefined;
8097
8102
  }>, {
8098
8103
  type: "foreground" | "background";
8099
- as: AsTag | vue33.Component;
8100
- defaultOpen: boolean;
8104
+ as: AsTag | vue32.Component;
8101
8105
  open: boolean;
8102
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8106
+ defaultOpen: boolean;
8107
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8103
8108
  default?: (props: {
8104
8109
  /** Current open state */
8105
8110
  open: boolean;
@@ -8118,7 +8123,7 @@ type __VLS_WithSlots$20<T, S> = T & {
8118
8123
  //#endregion
8119
8124
  //#region src/Toast/ToastTitle.vue.d.ts
8120
8125
  interface ToastTitleProps extends PrimitiveProps {}
8121
- declare const _default$284: __VLS_WithSlots$19<vue33.DefineComponent<ToastTitleProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToastTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8126
+ declare const _default$284: __VLS_WithSlots$19<vue32.DefineComponent<ToastTitleProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToastTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8122
8127
  default?: (props: {}) => any;
8123
8128
  }>;
8124
8129
  type __VLS_WithSlots$19<T, S> = T & {
@@ -8143,11 +8148,11 @@ interface ToastViewportProps extends PrimitiveProps {
8143
8148
  */
8144
8149
  label?: string | ((hotkey: string) => string);
8145
8150
  }
8146
- declare const _default$285: __VLS_WithSlots$18<vue33.DefineComponent<ToastViewportProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToastViewportProps> & Readonly<{}>, {
8151
+ declare const _default$285: __VLS_WithSlots$18<vue32.DefineComponent<ToastViewportProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToastViewportProps> & Readonly<{}>, {
8147
8152
  label: string | ((hotkey: string) => string);
8148
- as: AsTag | vue33.Component;
8153
+ as: AsTag | vue32.Component;
8149
8154
  hotkey: string[];
8150
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8155
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8151
8156
  default?: (props: {}) => any;
8152
8157
  }>;
8153
8158
  type __VLS_WithSlots$18<T, S> = T & {
@@ -8177,15 +8182,15 @@ interface ToggleProps extends PrimitiveProps, FormFieldProps {
8177
8182
  */
8178
8183
  disabled?: boolean;
8179
8184
  }
8180
- declare const _default$286: __VLS_WithSlots$17<vue33.DefineComponent<ToggleProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
8185
+ declare const _default$286: __VLS_WithSlots$17<vue32.DefineComponent<ToggleProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
8181
8186
  "update:modelValue": (value: boolean) => any;
8182
- }, string, vue33.PublicProps, Readonly<ToggleProps> & Readonly<{
8187
+ }, string, vue32.PublicProps, Readonly<ToggleProps> & Readonly<{
8183
8188
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
8184
8189
  }>, {
8185
- as: AsTag | vue33.Component;
8190
+ as: AsTag | vue32.Component;
8186
8191
  disabled: boolean;
8187
8192
  modelValue: boolean | null;
8188
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8193
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8189
8194
  default?: (props: {
8190
8195
  /** Current value */
8191
8196
  modelValue: boolean;
@@ -8211,9 +8216,9 @@ interface ToggleGroupItemProps extends Omit<ToggleProps, 'name' | 'required' | '
8211
8216
  */
8212
8217
  value: AcceptableValue;
8213
8218
  }
8214
- declare const _default$287: __VLS_WithSlots$16<vue33.DefineComponent<ToggleGroupItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToggleGroupItemProps> & Readonly<{}>, {
8215
- as: AsTag | vue33.Component;
8216
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8219
+ declare const _default$287: __VLS_WithSlots$16<vue32.DefineComponent<ToggleGroupItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToggleGroupItemProps> & Readonly<{}>, {
8220
+ as: AsTag | vue32.Component;
8221
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8217
8222
  default?: (props: {
8218
8223
  modelValue: boolean;
8219
8224
  state: DataState;
@@ -8256,15 +8261,15 @@ interface ToggleGroupRootContext {
8256
8261
  disabled?: Ref<boolean>;
8257
8262
  }
8258
8263
  declare const injectToggleGroupRootContext: <T extends ToggleGroupRootContext | null | undefined = ToggleGroupRootContext>(fallback?: T | undefined) => T extends null ? ToggleGroupRootContext | null : ToggleGroupRootContext, provideToggleGroupRootContext: (contextValue: ToggleGroupRootContext) => ToggleGroupRootContext;
8259
- declare const _default$288: __VLS_WithSlots$15<vue33.DefineComponent<ToggleGroupRootProps<AcceptableValue | AcceptableValue[]>, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
8264
+ declare const _default$288: __VLS_WithSlots$15<vue32.DefineComponent<ToggleGroupRootProps<AcceptableValue | AcceptableValue[]>, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
8260
8265
  "update:modelValue": (payload: AcceptableValue | AcceptableValue[]) => any;
8261
- }, string, vue33.PublicProps, Readonly<ToggleGroupRootProps<AcceptableValue | AcceptableValue[]>> & Readonly<{
8266
+ }, string, vue32.PublicProps, Readonly<ToggleGroupRootProps<AcceptableValue | AcceptableValue[]>> & Readonly<{
8262
8267
  "onUpdate:modelValue"?: ((payload: AcceptableValue | AcceptableValue[]) => any) | undefined;
8263
8268
  }>, {
8264
8269
  disabled: boolean;
8265
8270
  loop: boolean;
8266
8271
  rovingFocus: boolean;
8267
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8272
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8268
8273
  default?: (props: {
8269
8274
  /** Current toggle values */
8270
8275
  modelValue: AcceptableValue | AcceptableValue[] | undefined;
@@ -8281,9 +8286,9 @@ type __VLS_WithSlots$15<T, S> = T & {
8281
8286
  interface ToolbarButtonProps extends PrimitiveProps {
8282
8287
  disabled?: boolean;
8283
8288
  }
8284
- declare const _default$289: __VLS_WithSlots$14<vue33.DefineComponent<ToolbarButtonProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToolbarButtonProps> & Readonly<{}>, {
8285
- as: AsTag | vue33.Component;
8286
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8289
+ declare const _default$289: __VLS_WithSlots$14<vue32.DefineComponent<ToolbarButtonProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToolbarButtonProps> & Readonly<{}>, {
8290
+ as: AsTag | vue32.Component;
8291
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8287
8292
  default?: (props: {}) => any;
8288
8293
  }>;
8289
8294
  type __VLS_WithSlots$14<T, S> = T & {
@@ -8295,9 +8300,9 @@ type __VLS_WithSlots$14<T, S> = T & {
8295
8300
  //#endregion
8296
8301
  //#region src/Toolbar/ToolbarLink.vue.d.ts
8297
8302
  interface ToolbarLinkProps extends PrimitiveProps {}
8298
- declare const _default$290: __VLS_WithSlots$13<vue33.DefineComponent<ToolbarLinkProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToolbarLinkProps> & Readonly<{}>, {
8299
- as: AsTag | vue33.Component;
8300
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8303
+ declare const _default$290: __VLS_WithSlots$13<vue32.DefineComponent<ToolbarLinkProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToolbarLinkProps> & Readonly<{}>, {
8304
+ as: AsTag | vue32.Component;
8305
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8301
8306
  default?: (props: {}) => any;
8302
8307
  }>;
8303
8308
  type __VLS_WithSlots$13<T, S> = T & {
@@ -8321,9 +8326,9 @@ interface ToolbarRootContext {
8321
8326
  dir: Ref<Direction>;
8322
8327
  }
8323
8328
  declare const injectToolbarRootContext: <T extends ToolbarRootContext | null | undefined = ToolbarRootContext>(fallback?: T | undefined) => T extends null ? ToolbarRootContext | null : ToolbarRootContext, provideToolbarRootContext: (contextValue: ToolbarRootContext) => ToolbarRootContext;
8324
- declare const _default$291: __VLS_WithSlots$12<vue33.DefineComponent<ToolbarRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToolbarRootProps> & Readonly<{}>, {
8329
+ declare const _default$291: __VLS_WithSlots$12<vue32.DefineComponent<ToolbarRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToolbarRootProps> & Readonly<{}>, {
8325
8330
  orientation: DataOrientation;
8326
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8331
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8327
8332
  default?: (props: {}) => any;
8328
8333
  }>;
8329
8334
  type __VLS_WithSlots$12<T, S> = T & {
@@ -8335,7 +8340,7 @@ type __VLS_WithSlots$12<T, S> = T & {
8335
8340
  //#endregion
8336
8341
  //#region src/Toolbar/ToolbarSeparator.vue.d.ts
8337
8342
  interface ToolbarSeparatorProps extends PrimitiveProps {}
8338
- declare const _default$292: __VLS_WithSlots$11<vue33.DefineComponent<ToolbarSeparatorProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToolbarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8343
+ declare const _default$292: __VLS_WithSlots$11<vue32.DefineComponent<ToolbarSeparatorProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToolbarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8339
8344
  default?: (props: {}) => any;
8340
8345
  }>;
8341
8346
  type __VLS_WithSlots$11<T, S> = T & {
@@ -8348,11 +8353,11 @@ type __VLS_WithSlots$11<T, S> = T & {
8348
8353
  //#region src/Toolbar/ToolbarToggleGroup.vue.d.ts
8349
8354
  type ToolbarToggleGroupEmits = ToggleGroupRootEmits;
8350
8355
  interface ToolbarToggleGroupProps extends ToggleGroupRootProps {}
8351
- declare const _default$293: __VLS_WithSlots$10<vue33.DefineComponent<ToolbarToggleGroupProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
8356
+ declare const _default$293: __VLS_WithSlots$10<vue32.DefineComponent<ToolbarToggleGroupProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
8352
8357
  "update:modelValue": (payload: AcceptableValue | AcceptableValue[]) => any;
8353
- }, string, vue33.PublicProps, Readonly<ToolbarToggleGroupProps> & Readonly<{
8358
+ }, string, vue32.PublicProps, Readonly<ToolbarToggleGroupProps> & Readonly<{
8354
8359
  "onUpdate:modelValue"?: ((payload: AcceptableValue | AcceptableValue[]) => any) | undefined;
8355
- }>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8360
+ }>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8356
8361
  default?: (props: {}) => any;
8357
8362
  }>;
8358
8363
  type __VLS_WithSlots$10<T, S> = T & {
@@ -8364,7 +8369,7 @@ type __VLS_WithSlots$10<T, S> = T & {
8364
8369
  //#endregion
8365
8370
  //#region src/Toolbar/ToolbarToggleItem.vue.d.ts
8366
8371
  interface ToolbarToggleItemProps extends ToggleGroupItemProps {}
8367
- declare const _default$294: __VLS_WithSlots$9<vue33.DefineComponent<ToolbarToggleItemProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ToolbarToggleItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8372
+ declare const _default$294: __VLS_WithSlots$9<vue32.DefineComponent<ToolbarToggleItemProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ToolbarToggleItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8368
8373
  default?: (props: {}) => any;
8369
8374
  }>;
8370
8375
  type __VLS_WithSlots$9<T, S> = T & {
@@ -8389,11 +8394,11 @@ interface TooltipArrowProps extends PrimitiveProps {
8389
8394
  */
8390
8395
  height?: number;
8391
8396
  }
8392
- declare const _default$295: __VLS_WithSlots$8<vue33.DefineComponent<TooltipArrowProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TooltipArrowProps> & Readonly<{}>, {
8393
- as: AsTag | vue33.Component;
8397
+ declare const _default$295: __VLS_WithSlots$8<vue32.DefineComponent<TooltipArrowProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TooltipArrowProps> & Readonly<{}>, {
8398
+ as: AsTag | vue32.Component;
8394
8399
  width: number;
8395
8400
  height: number;
8396
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8401
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8397
8402
  default?: (props: {}) => any;
8398
8403
  }>;
8399
8404
  type __VLS_WithSlots$8<T, S> = T & {
@@ -8431,15 +8436,15 @@ interface TooltipContentProps extends TooltipContentImplProps {
8431
8436
  */
8432
8437
  forceMount?: boolean;
8433
8438
  }
8434
- declare const _default$296: __VLS_WithSlots$7<vue33.DefineComponent<TooltipContentProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
8439
+ declare const _default$296: __VLS_WithSlots$7<vue32.DefineComponent<TooltipContentProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
8435
8440
  escapeKeyDown: (event: KeyboardEvent) => any;
8436
8441
  pointerDownOutside: (event: Event) => any;
8437
- }, string, vue33.PublicProps, Readonly<TooltipContentProps> & Readonly<{
8442
+ }, string, vue32.PublicProps, Readonly<TooltipContentProps> & Readonly<{
8438
8443
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
8439
8444
  onPointerDownOutside?: ((event: Event) => any) | undefined;
8440
8445
  }>, {
8441
8446
  side: Side;
8442
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8447
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8443
8448
  default?: (props: {}) => any;
8444
8449
  }>;
8445
8450
  type __VLS_WithSlots$7<T, S> = T & {
@@ -8451,7 +8456,7 @@ type __VLS_WithSlots$7<T, S> = T & {
8451
8456
  //#endregion
8452
8457
  //#region src/Tooltip/TooltipPortal.vue.d.ts
8453
8458
  interface TooltipPortalProps extends TeleportProps {}
8454
- declare const _default$297: __VLS_WithSlots$6<vue33.DefineComponent<TooltipPortalProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TooltipPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8459
+ declare const _default$297: __VLS_WithSlots$6<vue32.DefineComponent<TooltipPortalProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TooltipPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8455
8460
  default?: (props: {}) => any;
8456
8461
  }>;
8457
8462
  type __VLS_WithSlots$6<T, S> = T & {
@@ -8509,12 +8514,12 @@ interface TooltipProviderProps {
8509
8514
  */
8510
8515
  ignoreNonKeyboardFocus?: boolean;
8511
8516
  }
8512
- declare const _default$298: __VLS_WithSlots$5<vue33.DefineComponent<TooltipProviderProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {
8517
+ declare const _default$298: __VLS_WithSlots$5<vue32.DefineComponent<TooltipProviderProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {
8513
8518
  delayDuration: number;
8514
8519
  skipDelayDuration: number;
8515
8520
  disableHoverableContent: boolean;
8516
8521
  ignoreNonKeyboardFocus: boolean;
8517
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8522
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8518
8523
  default?: (props: {}) => any;
8519
8524
  }>;
8520
8525
  type __VLS_WithSlots$5<T, S> = T & {
@@ -8587,19 +8592,19 @@ interface TooltipContext {
8587
8592
  ignoreNonKeyboardFocus: Ref<boolean>;
8588
8593
  }
8589
8594
  declare const injectTooltipRootContext: <T extends TooltipContext | null | undefined = TooltipContext>(fallback?: T | undefined) => T extends null ? TooltipContext | null : TooltipContext, provideTooltipRootContext: (contextValue: TooltipContext) => TooltipContext;
8590
- declare const _default$299: __VLS_WithSlots$4<vue33.DefineComponent<TooltipRootProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {
8595
+ declare const _default$299: __VLS_WithSlots$4<vue32.DefineComponent<TooltipRootProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {
8591
8596
  "update:open": (value: boolean) => any;
8592
- }, string, vue33.PublicProps, Readonly<TooltipRootProps> & Readonly<{
8597
+ }, string, vue32.PublicProps, Readonly<TooltipRootProps> & Readonly<{
8593
8598
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
8594
8599
  }>, {
8595
- defaultOpen: boolean;
8596
- open: boolean;
8597
8600
  disabled: boolean;
8601
+ open: boolean;
8602
+ defaultOpen: boolean;
8598
8603
  delayDuration: number;
8599
8604
  disableHoverableContent: boolean;
8600
8605
  disableClosingTrigger: boolean;
8601
8606
  ignoreNonKeyboardFocus: boolean;
8602
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8607
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8603
8608
  default?: (props: {
8604
8609
  /** Current open state */
8605
8610
  open: boolean;
@@ -8614,9 +8619,9 @@ type __VLS_WithSlots$4<T, S> = T & {
8614
8619
  //#endregion
8615
8620
  //#region src/Tooltip/TooltipTrigger.vue.d.ts
8616
8621
  interface TooltipTriggerProps extends PopperAnchorProps {}
8617
- declare const _default$300: __VLS_WithSlots$3<vue33.DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {
8618
- as: AsTag | vue33.Component;
8619
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8622
+ declare const _default$300: __VLS_WithSlots$3<vue32.DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {
8623
+ as: AsTag | vue32.Component;
8624
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8620
8625
  default?: (props: {}) => any;
8621
8626
  }>;
8622
8627
  type __VLS_WithSlots$3<T, S> = T & {
@@ -8655,11 +8660,11 @@ declare const _default$301: <T extends Record<string, any>>(__VLS_props: NonNull
8655
8660
  props: __VLS_PrettifyLocal$1<Pick<Partial<{}> & Omit<{
8656
8661
  readonly onSelect?: ((event: SelectEvent$3<T>) => any) | undefined;
8657
8662
  readonly onToggle?: ((event: ToggleEvent<T>) => any) | undefined;
8658
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onToggle" | "onSelect"> & TreeItemProps<T> & Partial<{}>> & vue33.PublicProps;
8659
- expose(exposed: vue33.ShallowUnwrapRef<{
8660
- isExpanded: vue33.ComputedRef<boolean>;
8661
- isSelected: vue33.ComputedRef<boolean>;
8662
- isIndeterminate: vue33.ComputedRef<boolean | undefined>;
8663
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onToggle" | "onSelect"> & TreeItemProps<T> & Partial<{}>> & vue32.PublicProps;
8664
+ expose(exposed: vue32.ShallowUnwrapRef<{
8665
+ isExpanded: vue32.ComputedRef<boolean>;
8666
+ isSelected: vue32.ComputedRef<boolean>;
8667
+ isIndeterminate: vue32.ComputedRef<boolean | undefined>;
8663
8668
  handleToggle: () => void;
8664
8669
  handleSelect: () => void;
8665
8670
  }>): void;
@@ -8674,7 +8679,7 @@ declare const _default$301: <T extends Record<string, any>>(__VLS_props: NonNull
8674
8679
  }) => any;
8675
8680
  };
8676
8681
  emit: ((evt: "select", event: SelectEvent$3<T>) => void) & ((evt: "toggle", event: ToggleEvent<T>) => void);
8677
- }>) => vue33.VNode & {
8682
+ }>) => vue32.VNode & {
8678
8683
  __ctx?: Awaited<typeof __VLS_setup>;
8679
8684
  };
8680
8685
  type __VLS_PrettifyLocal$1<T> = { [K in keyof T]: T[K] } & {};
@@ -8750,8 +8755,8 @@ declare const _default$302: <T extends Record<string, any>, U extends Record<str
8750
8755
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
8751
8756
  readonly "onUpdate:modelValue"?: ((val: M extends true ? U[] : U) => any) | undefined;
8752
8757
  readonly "onUpdate:expanded"?: ((val: string[]) => any) | undefined;
8753
- } & vue33.VNodeProps & vue33.AllowedComponentProps & vue33.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:expanded"> & TreeRootProps<T, U, M> & Partial<{}>> & vue33.PublicProps;
8754
- expose(exposed: vue33.ShallowUnwrapRef<{}>): void;
8758
+ } & vue32.VNodeProps & vue32.AllowedComponentProps & vue32.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:expanded"> & TreeRootProps<T, U, M> & Partial<{}>> & vue32.PublicProps;
8759
+ expose(exposed: vue32.ShallowUnwrapRef<{}>): void;
8755
8760
  attrs: any;
8756
8761
  slots: {
8757
8762
  default?: (props: {
@@ -8761,7 +8766,7 @@ declare const _default$302: <T extends Record<string, any>, U extends Record<str
8761
8766
  }) => any;
8762
8767
  };
8763
8768
  emit: ((evt: "update:modelValue", val: M extends true ? U[] : U) => void) & ((evt: "update:expanded", val: string[]) => void);
8764
- }>) => vue33.VNode & {
8769
+ }>) => vue32.VNode & {
8765
8770
  __ctx?: Awaited<typeof __VLS_setup>;
8766
8771
  };
8767
8772
  type __VLS_PrettifyLocal<T> = { [K in keyof T]: T[K] } & {};
@@ -8776,7 +8781,7 @@ interface TreeVirtualizerProps {
8776
8781
  /** Text content for each item to achieve type-ahead feature */
8777
8782
  textContent?: (item: Record<string, any>) => string;
8778
8783
  }
8779
- declare const _default$303: __VLS_WithSlots$2<vue33.DefineComponent<TreeVirtualizerProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<TreeVirtualizerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8784
+ declare const _default$303: __VLS_WithSlots$2<vue32.DefineComponent<TreeVirtualizerProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<TreeVirtualizerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8780
8785
  default?: (props: {
8781
8786
  item: FlattenedItem<Record<string, any>>;
8782
8787
  virtualizer: Virtualizer<Element | Window, Element>;
@@ -8797,7 +8802,7 @@ interface ViewportProps extends PrimitiveProps {
8797
8802
  */
8798
8803
  nonce?: string;
8799
8804
  }
8800
- declare const _default$304: __VLS_WithSlots$1<vue33.DefineComponent<ViewportProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<ViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8805
+ declare const _default$304: __VLS_WithSlots$1<vue32.DefineComponent<ViewportProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<ViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8801
8806
  default?: (props: {}) => any;
8802
8807
  }>;
8803
8808
  type __VLS_WithSlots$1<T, S> = T & {
@@ -8811,10 +8816,10 @@ type __VLS_WithSlots$1<T, S> = T & {
8811
8816
  interface VisuallyHiddenProps extends PrimitiveProps {
8812
8817
  feature?: 'focusable' | 'fully-hidden';
8813
8818
  }
8814
- declare const _default$305: __VLS_WithSlots<vue33.DefineComponent<VisuallyHiddenProps, {}, {}, {}, {}, vue33.ComponentOptionsMixin, vue33.ComponentOptionsMixin, {}, string, vue33.PublicProps, Readonly<VisuallyHiddenProps> & Readonly<{}>, {
8815
- as: AsTag | vue33.Component;
8819
+ declare const _default$305: __VLS_WithSlots<vue32.DefineComponent<VisuallyHiddenProps, {}, {}, {}, {}, vue32.ComponentOptionsMixin, vue32.ComponentOptionsMixin, {}, string, vue32.PublicProps, Readonly<VisuallyHiddenProps> & Readonly<{}>, {
8820
+ as: AsTag | vue32.Component;
8816
8821
  feature: "focusable" | "fully-hidden";
8817
- }, {}, {}, {}, string, vue33.ComponentProvideOptions, false, {}, any>, {
8822
+ }, {}, {}, {}, string, vue32.ComponentProvideOptions, false, {}, any>, {
8818
8823
  default?: (props: {}) => any;
8819
8824
  }>;
8820
8825
  type __VLS_WithSlots<T, S> = T & {