reka-ui 2.4.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Calendar/CalendarRoot.cjs +1 -11
- package/dist/Calendar/CalendarRoot.cjs.map +1 -1
- package/dist/Calendar/CalendarRoot.js +3 -13
- package/dist/Calendar/CalendarRoot.js.map +1 -1
- package/dist/RangeCalendar/RangeCalendarRoot.cjs +1 -13
- package/dist/RangeCalendar/RangeCalendarRoot.cjs.map +1 -1
- package/dist/RangeCalendar/RangeCalendarRoot.js +2 -14
- package/dist/RangeCalendar/RangeCalendarRoot.js.map +1 -1
- package/dist/composables/useWindowSplitterPanelGroupBehavior.cjs +1 -3
- package/dist/composables/useWindowSplitterPanelGroupBehavior.cjs.map +1 -1
- package/dist/composables/useWindowSplitterPanelGroupBehavior.js +1 -3
- package/dist/composables/useWindowSplitterPanelGroupBehavior.js.map +1 -1
- package/dist/index.d.cts +805 -807
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +819 -821
- package/dist/index.d.ts.map +1 -1
- package/dist/index2.d.ts.map +1 -1
- package/dist/shared/useHideOthers.cjs +0 -1
- package/dist/shared/useHideOthers.cjs.map +1 -1
- package/dist/shared/useHideOthers.js +0 -1
- package/dist/shared/useHideOthers.js.map +1 -1
- package/dist/shared/useId.cjs +2 -2
- package/dist/shared/useId.cjs.map +1 -1
- package/dist/shared/useId.js +2 -2
- package/dist/shared/useId.js.map +1 -1
- package/package.json +5 -5
- package/src/Calendar/CalendarRoot.vue +3 -20
- package/src/RangeCalendar/RangeCalendarRoot.vue +2 -21
- package/src/shared/useId.ts +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { DateRange, DateStep, DateValue, Grid, HourCycle, Matcher, SegmentPart, SegmentValueObj, WeekDayFormat } from "./index2.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as vue69 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
|
|
5
|
+
import * as _internationalized_date936 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):
|
|
74
|
+
declare function useBodyScrollLock(initialState?: boolean | undefined): vue69.WritableComputedRef<boolean, boolean>;
|
|
75
75
|
//# sourceMappingURL=useBodyScrollLock.d.ts.map
|
|
76
76
|
//#endregion
|
|
77
77
|
//#region src/shared/useDateFormatter.d.ts
|
|
@@ -146,8 +146,8 @@ declare function useFilter(options?: MaybeRef<Intl.CollatorOptions>): {
|
|
|
146
146
|
//#region src/shared/useForwardExpose.d.ts
|
|
147
147
|
declare function useForwardExpose<T extends ComponentPublicInstance>(): {
|
|
148
148
|
forwardRef: (ref: Element | T | null) => void;
|
|
149
|
-
currentRef:
|
|
150
|
-
currentElement:
|
|
149
|
+
currentRef: vue69.Ref<Element | T | null | undefined, Element | T | null | undefined>;
|
|
150
|
+
currentElement: vue69.ComputedRef<HTMLElement>;
|
|
151
151
|
};
|
|
152
152
|
//# sourceMappingURL=useForwardExpose.d.ts.map
|
|
153
153
|
|
|
@@ -160,7 +160,7 @@ declare function useForwardExpose<T extends ComponentPublicInstance>(): {
|
|
|
160
160
|
* component.
|
|
161
161
|
* @returns computed value that combines the default props, preserved props, and assigned props.
|
|
162
162
|
*/
|
|
163
|
-
declare function useForwardProps<T extends Record<string, any>>(props: MaybeRefOrGetter<T>):
|
|
163
|
+
declare function useForwardProps<T extends Record<string, any>>(props: MaybeRefOrGetter<T>): vue69.ComputedRef<T>;
|
|
164
164
|
//# sourceMappingURL=useForwardProps.d.ts.map
|
|
165
165
|
|
|
166
166
|
//#endregion
|
|
@@ -177,7 +177,7 @@ declare function useForwardProps<T extends Record<string, any>>(props: MaybeRefO
|
|
|
177
177
|
* @returns a computed property that combines the parsed
|
|
178
178
|
* props and emits as props.
|
|
179
179
|
*/
|
|
180
|
-
declare function useForwardPropsEmits<T extends Record<string, any>, Name extends string>(props: MaybeRefOrGetter<T>, emit?: (name: Name, ...args: any[]) => void):
|
|
180
|
+
declare function useForwardPropsEmits<T extends Record<string, any>, Name extends string>(props: MaybeRefOrGetter<T>, emit?: (name: Name, ...args: any[]) => void): vue69.ComputedRef<T & Record<string, any>>;
|
|
181
181
|
//# sourceMappingURL=useForwardPropsEmits.d.ts.map
|
|
182
182
|
//#endregion
|
|
183
183
|
//#region src/shared/useId.d.ts
|
|
@@ -265,7 +265,7 @@ interface PrimitiveProps {
|
|
|
265
265
|
*/
|
|
266
266
|
as?: AsTag | Component;
|
|
267
267
|
}
|
|
268
|
-
declare const Primitive:
|
|
268
|
+
declare const Primitive: vue69.DefineComponent<vue69.ExtractPropTypes<{
|
|
269
269
|
asChild: {
|
|
270
270
|
type: BooleanConstructor;
|
|
271
271
|
default: boolean;
|
|
@@ -274,9 +274,9 @@ declare const Primitive: vue157.DefineComponent<vue157.ExtractPropTypes<{
|
|
|
274
274
|
type: PropType<AsTag | Component>;
|
|
275
275
|
default: string;
|
|
276
276
|
};
|
|
277
|
-
}>, () =>
|
|
277
|
+
}>, () => vue69.VNode<vue69.RendererNode, vue69.RendererElement, {
|
|
278
278
|
[key: string]: any;
|
|
279
|
-
}>, {}, {}, {},
|
|
279
|
+
}>, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<vue69.ExtractPropTypes<{
|
|
280
280
|
asChild: {
|
|
281
281
|
type: BooleanConstructor;
|
|
282
282
|
default: boolean;
|
|
@@ -288,15 +288,15 @@ declare const Primitive: vue157.DefineComponent<vue157.ExtractPropTypes<{
|
|
|
288
288
|
}>> & Readonly<{}>, {
|
|
289
289
|
asChild: boolean;
|
|
290
290
|
as: AsTag | Component;
|
|
291
|
-
}, {}, {}, {}, string,
|
|
291
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, true, {}, any>;
|
|
292
292
|
//# sourceMappingURL=Primitive.d.ts.map
|
|
293
293
|
//#endregion
|
|
294
294
|
//#region src/Primitive/Slot.d.ts
|
|
295
|
-
declare const Slot:
|
|
295
|
+
declare const Slot: vue69.DefineComponent<{}, () => vue69.VNode<vue69.RendererNode, vue69.RendererElement, {
|
|
296
296
|
[key: string]: any;
|
|
297
|
-
}> |
|
|
297
|
+
}> | vue69.VNode<vue69.RendererNode, vue69.RendererElement, {
|
|
298
298
|
[key: string]: any;
|
|
299
|
-
}>[] | null, {}, {}, {},
|
|
299
|
+
}>[] | null, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, true, {}, any>;
|
|
300
300
|
//# sourceMappingURL=Slot.d.ts.map
|
|
301
301
|
//#endregion
|
|
302
302
|
//#region src/Collapsible/CollapsibleContent.vue.d.ts
|
|
@@ -310,11 +310,11 @@ interface CollapsibleContentProps extends PrimitiveProps {
|
|
|
310
310
|
type CollapsibleContentEmits = {
|
|
311
311
|
contentFound: [void];
|
|
312
312
|
};
|
|
313
|
-
declare const _default$33: __VLS_WithSlots$288<
|
|
313
|
+
declare const _default$33: __VLS_WithSlots$288<vue69.DefineComponent<CollapsibleContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
314
314
|
contentFound: (args_0: void) => any;
|
|
315
|
-
}, string,
|
|
315
|
+
}, string, vue69.PublicProps, Readonly<CollapsibleContentProps> & Readonly<{
|
|
316
316
|
onContentFound?: ((args_0?: void | undefined) => any) | undefined;
|
|
317
|
-
}>, {}, {}, {}, {}, string,
|
|
317
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
318
318
|
default?: (props: {}) => any;
|
|
319
319
|
}>;
|
|
320
320
|
type __VLS_WithSlots$288<T, S> = T & {
|
|
@@ -347,17 +347,17 @@ interface CollapsibleRootContext {
|
|
|
347
347
|
onOpenToggle: () => void;
|
|
348
348
|
}
|
|
349
349
|
declare const injectCollapsibleRootContext: <T extends CollapsibleRootContext | null | undefined = CollapsibleRootContext>(fallback?: T | undefined) => T extends null ? CollapsibleRootContext | null : CollapsibleRootContext, provideCollapsibleRootContext: (contextValue: CollapsibleRootContext) => CollapsibleRootContext;
|
|
350
|
-
declare const _default$34: __VLS_WithSlots$287<
|
|
350
|
+
declare const _default$34: __VLS_WithSlots$287<vue69.DefineComponent<CollapsibleRootProps, {
|
|
351
351
|
open: Ref<boolean, boolean>;
|
|
352
|
-
}, {}, {}, {},
|
|
352
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
353
353
|
"update:open": (value: boolean) => any;
|
|
354
|
-
}, string,
|
|
354
|
+
}, string, vue69.PublicProps, Readonly<CollapsibleRootProps> & Readonly<{
|
|
355
355
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
356
356
|
}>, {
|
|
357
|
-
open: boolean;
|
|
358
357
|
defaultOpen: boolean;
|
|
358
|
+
open: boolean;
|
|
359
359
|
unmountOnHide: boolean;
|
|
360
|
-
}, {}, {}, {}, string,
|
|
360
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
361
361
|
default?: (props: {
|
|
362
362
|
/** Current open state */
|
|
363
363
|
open: boolean;
|
|
@@ -372,9 +372,9 @@ type __VLS_WithSlots$287<T, S> = T & {
|
|
|
372
372
|
//#endregion
|
|
373
373
|
//#region src/Collapsible/CollapsibleTrigger.vue.d.ts
|
|
374
374
|
interface CollapsibleTriggerProps extends PrimitiveProps {}
|
|
375
|
-
declare const _default$35: __VLS_WithSlots$286<
|
|
376
|
-
as: AsTag |
|
|
377
|
-
}, {}, {}, {}, string,
|
|
375
|
+
declare const _default$35: __VLS_WithSlots$286<vue69.DefineComponent<CollapsibleTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CollapsibleTriggerProps> & Readonly<{}>, {
|
|
376
|
+
as: AsTag | vue69.Component;
|
|
377
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
378
378
|
default?: (props: {}) => any;
|
|
379
379
|
}>;
|
|
380
380
|
type __VLS_WithSlots$286<T, S> = T & {
|
|
@@ -386,7 +386,7 @@ type __VLS_WithSlots$286<T, S> = T & {
|
|
|
386
386
|
//#endregion
|
|
387
387
|
//#region src/Accordion/AccordionContent.vue.d.ts
|
|
388
388
|
interface AccordionContentProps extends CollapsibleContentProps {}
|
|
389
|
-
declare const _default: __VLS_WithSlots$285<
|
|
389
|
+
declare const _default: __VLS_WithSlots$285<vue69.DefineComponent<AccordionContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
390
390
|
default?: (props: {}) => any;
|
|
391
391
|
}>;
|
|
392
392
|
type __VLS_WithSlots$285<T, S> = T & {
|
|
@@ -394,12 +394,13 @@ type __VLS_WithSlots$285<T, S> = T & {
|
|
|
394
394
|
$slots: S;
|
|
395
395
|
};
|
|
396
396
|
};
|
|
397
|
+
//# sourceMappingURL=AccordionContent.vue.d.ts.map
|
|
397
398
|
//#endregion
|
|
398
399
|
//#region src/Accordion/AccordionHeader.vue.d.ts
|
|
399
400
|
interface AccordionHeaderProps extends PrimitiveProps {}
|
|
400
|
-
declare const _default$1: __VLS_WithSlots$284<
|
|
401
|
-
as: AsTag |
|
|
402
|
-
}, {}, {}, {}, string,
|
|
401
|
+
declare const _default$1: __VLS_WithSlots$284<vue69.DefineComponent<AccordionHeaderProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AccordionHeaderProps> & Readonly<{}>, {
|
|
402
|
+
as: AsTag | vue69.Component;
|
|
403
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
403
404
|
default?: (props: {}) => any;
|
|
404
405
|
}>;
|
|
405
406
|
type __VLS_WithSlots$284<T, S> = T & {
|
|
@@ -438,10 +439,10 @@ interface AccordionItemContext {
|
|
|
438
439
|
value: ComputedRef<string>;
|
|
439
440
|
}
|
|
440
441
|
declare const injectAccordionItemContext: <T extends AccordionItemContext | null | undefined = AccordionItemContext>(fallback?: T | undefined) => T extends null ? AccordionItemContext | null : AccordionItemContext, provideAccordionItemContext: (contextValue: AccordionItemContext) => AccordionItemContext;
|
|
441
|
-
declare const _default$2: __VLS_WithSlots$283<
|
|
442
|
+
declare const _default$2: __VLS_WithSlots$283<vue69.DefineComponent<AccordionItemProps, {
|
|
442
443
|
open: ComputedRef<boolean>;
|
|
443
444
|
dataDisabled: ComputedRef<"" | undefined>;
|
|
444
|
-
}, {}, {}, {},
|
|
445
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
445
446
|
default?: (props: {
|
|
446
447
|
/** Current open state */
|
|
447
448
|
open: boolean;
|
|
@@ -509,8 +510,8 @@ declare const injectAccordionRootContext: <T extends AccordionRootContext<Accord
|
|
|
509
510
|
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<{
|
|
510
511
|
props: __VLS_PrettifyLocal$14<Pick<Partial<{}> & Omit<{
|
|
511
512
|
readonly "onUpdate:modelValue"?: ((value: (ExplicitType extends "single" ? string : string[]) | undefined) => any) | undefined;
|
|
512
|
-
} &
|
|
513
|
-
expose(exposed:
|
|
513
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onUpdate:modelValue"> & AccordionRootProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
514
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
514
515
|
attrs: any;
|
|
515
516
|
slots: {
|
|
516
517
|
default?: (props: {
|
|
@@ -519,7 +520,7 @@ declare const _default$3: <T extends (string | string[]), ExplicitType extends S
|
|
|
519
520
|
}) => any;
|
|
520
521
|
};
|
|
521
522
|
emit: (evt: "update:modelValue", value: (ExplicitType extends "single" ? string : string[]) | undefined) => void;
|
|
522
|
-
}>) =>
|
|
523
|
+
}>) => vue69.VNode & {
|
|
523
524
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
524
525
|
};
|
|
525
526
|
type __VLS_PrettifyLocal$14<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -527,7 +528,7 @@ type __VLS_PrettifyLocal$14<T> = { [K in keyof T]: T[K] } & {};
|
|
|
527
528
|
//#endregion
|
|
528
529
|
//#region src/Accordion/AccordionTrigger.vue.d.ts
|
|
529
530
|
interface AccordionTriggerProps extends PrimitiveProps {}
|
|
530
|
-
declare const _default$4: __VLS_WithSlots$282<
|
|
531
|
+
declare const _default$4: __VLS_WithSlots$282<vue69.DefineComponent<AccordionTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AccordionTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
531
532
|
default?: (props: {}) => any;
|
|
532
533
|
}>;
|
|
533
534
|
type __VLS_WithSlots$282<T, S> = T & {
|
|
@@ -539,9 +540,9 @@ type __VLS_WithSlots$282<T, S> = T & {
|
|
|
539
540
|
//#endregion
|
|
540
541
|
//#region src/Dialog/DialogClose.vue.d.ts
|
|
541
542
|
interface DialogCloseProps extends PrimitiveProps {}
|
|
542
|
-
declare const _default$113: __VLS_WithSlots$281<
|
|
543
|
-
as: AsTag |
|
|
544
|
-
}, {}, {}, {}, string,
|
|
543
|
+
declare const _default$113: __VLS_WithSlots$281<vue69.DefineComponent<DialogCloseProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
|
|
544
|
+
as: AsTag | vue69.Component;
|
|
545
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
545
546
|
default?: (props: {}) => any;
|
|
546
547
|
}>;
|
|
547
548
|
type __VLS_WithSlots$281<T, S> = T & {
|
|
@@ -628,21 +629,21 @@ interface DialogContentProps extends Omit<DialogContentImplProps, 'trapFocus'> {
|
|
|
628
629
|
*/
|
|
629
630
|
forceMount?: boolean;
|
|
630
631
|
}
|
|
631
|
-
declare const _default$114: __VLS_WithSlots$280<
|
|
632
|
+
declare const _default$114: __VLS_WithSlots$280<vue69.DefineComponent<DialogContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
633
|
+
openAutoFocus: (event: Event) => any;
|
|
632
634
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
633
635
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
634
636
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
635
637
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
636
|
-
openAutoFocus: (event: Event) => any;
|
|
637
638
|
closeAutoFocus: (event: Event) => any;
|
|
638
|
-
}, string,
|
|
639
|
+
}, string, vue69.PublicProps, Readonly<DialogContentProps> & Readonly<{
|
|
640
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
639
641
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
640
642
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
641
643
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
642
644
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
643
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
644
645
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
645
|
-
}>, {}, {}, {}, {}, string,
|
|
646
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
646
647
|
default?: (props: {}) => any;
|
|
647
648
|
} & {
|
|
648
649
|
default?: (props: {}) => any;
|
|
@@ -656,9 +657,9 @@ type __VLS_WithSlots$280<T, S> = T & {
|
|
|
656
657
|
//#endregion
|
|
657
658
|
//#region src/Dialog/DialogDescription.vue.d.ts
|
|
658
659
|
interface DialogDescriptionProps extends PrimitiveProps {}
|
|
659
|
-
declare const _default$115: __VLS_WithSlots$279<
|
|
660
|
-
as: AsTag |
|
|
661
|
-
}, {}, {}, {}, string,
|
|
660
|
+
declare const _default$115: __VLS_WithSlots$279<vue69.DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
|
|
661
|
+
as: AsTag | vue69.Component;
|
|
662
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
662
663
|
default?: (props: {}) => any;
|
|
663
664
|
}>;
|
|
664
665
|
type __VLS_WithSlots$279<T, S> = T & {
|
|
@@ -679,7 +680,7 @@ interface DialogOverlayProps extends DialogOverlayImplProps {
|
|
|
679
680
|
*/
|
|
680
681
|
forceMount?: boolean;
|
|
681
682
|
}
|
|
682
|
-
declare const _default$116: __VLS_WithSlots$278<
|
|
683
|
+
declare const _default$116: __VLS_WithSlots$278<vue69.DefineComponent<DialogOverlayProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
683
684
|
default?: (props: {}) => any;
|
|
684
685
|
}>;
|
|
685
686
|
type __VLS_WithSlots$278<T, S> = T & {
|
|
@@ -719,7 +720,7 @@ interface TeleportProps {
|
|
|
719
720
|
//#endregion
|
|
720
721
|
//#region src/Dialog/DialogPortal.vue.d.ts
|
|
721
722
|
interface DialogPortalProps extends TeleportProps {}
|
|
722
|
-
declare const _default$117: __VLS_WithSlots$277<
|
|
723
|
+
declare const _default$117: __VLS_WithSlots$277<vue69.DefineComponent<DialogPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DialogPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
723
724
|
default?: (props: {}) => any;
|
|
724
725
|
}>;
|
|
725
726
|
type __VLS_WithSlots$277<T, S> = T & {
|
|
@@ -758,15 +759,15 @@ interface DialogRootContext {
|
|
|
758
759
|
descriptionId: string;
|
|
759
760
|
}
|
|
760
761
|
declare const injectDialogRootContext: <T extends DialogRootContext | null | undefined = DialogRootContext>(fallback?: T | undefined) => T extends null ? DialogRootContext | null : DialogRootContext, provideDialogRootContext: (contextValue: DialogRootContext) => DialogRootContext;
|
|
761
|
-
declare const _default$118: __VLS_WithSlots$276<
|
|
762
|
+
declare const _default$118: __VLS_WithSlots$276<vue69.DefineComponent<DialogRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
762
763
|
"update:open": (value: boolean) => any;
|
|
763
|
-
}, string,
|
|
764
|
+
}, string, vue69.PublicProps, Readonly<DialogRootProps> & Readonly<{
|
|
764
765
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
765
766
|
}>, {
|
|
766
|
-
modal: boolean;
|
|
767
|
-
open: boolean;
|
|
768
767
|
defaultOpen: boolean;
|
|
769
|
-
|
|
768
|
+
open: boolean;
|
|
769
|
+
modal: boolean;
|
|
770
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
770
771
|
default?: (props: {
|
|
771
772
|
/** Current open state */
|
|
772
773
|
open: boolean;
|
|
@@ -783,9 +784,9 @@ type __VLS_WithSlots$276<T, S> = T & {
|
|
|
783
784
|
//#endregion
|
|
784
785
|
//#region src/Dialog/DialogTitle.vue.d.ts
|
|
785
786
|
interface DialogTitleProps extends PrimitiveProps {}
|
|
786
|
-
declare const _default$119: __VLS_WithSlots$275<
|
|
787
|
-
as: AsTag |
|
|
788
|
-
}, {}, {}, {}, string,
|
|
787
|
+
declare const _default$119: __VLS_WithSlots$275<vue69.DefineComponent<DialogTitleProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
|
|
788
|
+
as: AsTag | vue69.Component;
|
|
789
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
789
790
|
default?: (props: {}) => any;
|
|
790
791
|
}>;
|
|
791
792
|
type __VLS_WithSlots$275<T, S> = T & {
|
|
@@ -797,9 +798,9 @@ type __VLS_WithSlots$275<T, S> = T & {
|
|
|
797
798
|
//#endregion
|
|
798
799
|
//#region src/Dialog/DialogTrigger.vue.d.ts
|
|
799
800
|
interface DialogTriggerProps extends PrimitiveProps {}
|
|
800
|
-
declare const _default$120: __VLS_WithSlots$274<
|
|
801
|
-
as: AsTag |
|
|
802
|
-
}, {}, {}, {}, string,
|
|
801
|
+
declare const _default$120: __VLS_WithSlots$274<vue69.DefineComponent<DialogTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {
|
|
802
|
+
as: AsTag | vue69.Component;
|
|
803
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
803
804
|
default?: (props: {}) => any;
|
|
804
805
|
}>;
|
|
805
806
|
type __VLS_WithSlots$274<T, S> = T & {
|
|
@@ -811,9 +812,9 @@ type __VLS_WithSlots$274<T, S> = T & {
|
|
|
811
812
|
//#endregion
|
|
812
813
|
//#region src/AlertDialog/AlertDialogAction.vue.d.ts
|
|
813
814
|
interface AlertDialogActionProps extends DialogCloseProps {}
|
|
814
|
-
declare const _default$5: __VLS_WithSlots$273<
|
|
815
|
-
as: AsTag |
|
|
816
|
-
}, {}, {}, {}, string,
|
|
815
|
+
declare const _default$5: __VLS_WithSlots$273<vue69.DefineComponent<AlertDialogActionProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AlertDialogActionProps> & Readonly<{}>, {
|
|
816
|
+
as: AsTag | vue69.Component;
|
|
817
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
817
818
|
default?: (props: {}) => any;
|
|
818
819
|
}>;
|
|
819
820
|
type __VLS_WithSlots$273<T, S> = T & {
|
|
@@ -825,9 +826,9 @@ type __VLS_WithSlots$273<T, S> = T & {
|
|
|
825
826
|
//#endregion
|
|
826
827
|
//#region src/AlertDialog/AlertDialogCancel.vue.d.ts
|
|
827
828
|
interface AlertDialogCancelProps extends DialogCloseProps {}
|
|
828
|
-
declare const _default$6: __VLS_WithSlots$272<
|
|
829
|
-
as: AsTag |
|
|
830
|
-
}, {}, {}, {}, string,
|
|
829
|
+
declare const _default$6: __VLS_WithSlots$272<vue69.DefineComponent<AlertDialogCancelProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AlertDialogCancelProps> & Readonly<{}>, {
|
|
830
|
+
as: AsTag | vue69.Component;
|
|
831
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
831
832
|
default?: (props: {}) => any;
|
|
832
833
|
}>;
|
|
833
834
|
type __VLS_WithSlots$272<T, S> = T & {
|
|
@@ -844,21 +845,21 @@ interface AlertDialogContentContext {
|
|
|
844
845
|
declare const injectAlertDialogContentContext: <T extends AlertDialogContentContext | null | undefined = AlertDialogContentContext>(fallback?: T | undefined) => T extends null ? AlertDialogContentContext | null : AlertDialogContentContext, provideAlertDialogContentContext: (contextValue: AlertDialogContentContext) => AlertDialogContentContext;
|
|
845
846
|
type AlertDialogContentEmits = DialogContentEmits;
|
|
846
847
|
interface AlertDialogContentProps extends DialogContentProps {}
|
|
847
|
-
declare const _default$7: __VLS_WithSlots$271<
|
|
848
|
+
declare const _default$7: __VLS_WithSlots$271<vue69.DefineComponent<AlertDialogContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
849
|
+
openAutoFocus: (event: Event) => any;
|
|
848
850
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
849
851
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
850
852
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
851
853
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
852
|
-
openAutoFocus: (event: Event) => any;
|
|
853
854
|
closeAutoFocus: (event: Event) => any;
|
|
854
|
-
}, string,
|
|
855
|
+
}, string, vue69.PublicProps, Readonly<AlertDialogContentProps> & Readonly<{
|
|
856
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
855
857
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
856
858
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
857
859
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
858
860
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
859
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
860
861
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
861
|
-
}>, {}, {}, {}, {}, string,
|
|
862
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
862
863
|
default?: (props: {}) => any;
|
|
863
864
|
}>;
|
|
864
865
|
type __VLS_WithSlots$271<T, S> = T & {
|
|
@@ -870,9 +871,9 @@ type __VLS_WithSlots$271<T, S> = T & {
|
|
|
870
871
|
//#endregion
|
|
871
872
|
//#region src/AlertDialog/AlertDialogDescription.vue.d.ts
|
|
872
873
|
interface AlertDialogDescriptionProps extends DialogDescriptionProps {}
|
|
873
|
-
declare const _default$8: __VLS_WithSlots$270<
|
|
874
|
-
as: AsTag |
|
|
875
|
-
}, {}, {}, {}, string,
|
|
874
|
+
declare const _default$8: __VLS_WithSlots$270<vue69.DefineComponent<AlertDialogDescriptionProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AlertDialogDescriptionProps> & Readonly<{}>, {
|
|
875
|
+
as: AsTag | vue69.Component;
|
|
876
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
876
877
|
default?: (props: {}) => any;
|
|
877
878
|
}>;
|
|
878
879
|
type __VLS_WithSlots$270<T, S> = T & {
|
|
@@ -884,7 +885,7 @@ type __VLS_WithSlots$270<T, S> = T & {
|
|
|
884
885
|
//#endregion
|
|
885
886
|
//#region src/AlertDialog/AlertDialogOverlay.vue.d.ts
|
|
886
887
|
interface AlertDialogOverlayProps extends DialogOverlayProps {}
|
|
887
|
-
declare const _default$9: __VLS_WithSlots$269<
|
|
888
|
+
declare const _default$9: __VLS_WithSlots$269<vue69.DefineComponent<AlertDialogOverlayProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AlertDialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
888
889
|
default?: (props: {}) => any;
|
|
889
890
|
}>;
|
|
890
891
|
type __VLS_WithSlots$269<T, S> = T & {
|
|
@@ -896,7 +897,7 @@ type __VLS_WithSlots$269<T, S> = T & {
|
|
|
896
897
|
//#endregion
|
|
897
898
|
//#region src/AlertDialog/AlertDialogPortal.vue.d.ts
|
|
898
899
|
interface AlertDialogPortalProps extends TeleportProps {}
|
|
899
|
-
declare const _default$10: __VLS_WithSlots$268<
|
|
900
|
+
declare const _default$10: __VLS_WithSlots$268<vue69.DefineComponent<AlertDialogPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AlertDialogPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
900
901
|
default?: (props: {}) => any;
|
|
901
902
|
}>;
|
|
902
903
|
type __VLS_WithSlots$268<T, S> = T & {
|
|
@@ -909,11 +910,11 @@ type __VLS_WithSlots$268<T, S> = T & {
|
|
|
909
910
|
//#region src/AlertDialog/AlertDialogRoot.vue.d.ts
|
|
910
911
|
type AlertDialogEmits = DialogRootEmits;
|
|
911
912
|
interface AlertDialogProps extends Omit<DialogRootProps, 'modal'> {}
|
|
912
|
-
declare const _default$11: __VLS_WithSlots$267<
|
|
913
|
+
declare const _default$11: __VLS_WithSlots$267<vue69.DefineComponent<AlertDialogProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
913
914
|
"update:open": (value: boolean) => any;
|
|
914
|
-
}, string,
|
|
915
|
+
}, string, vue69.PublicProps, Readonly<AlertDialogProps> & Readonly<{
|
|
915
916
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
916
|
-
}>, {}, {}, {}, {}, string,
|
|
917
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
917
918
|
default?: (props: {
|
|
918
919
|
open: boolean;
|
|
919
920
|
close: () => void;
|
|
@@ -928,9 +929,9 @@ type __VLS_WithSlots$267<T, S> = T & {
|
|
|
928
929
|
//#endregion
|
|
929
930
|
//#region src/AlertDialog/AlertDialogTitle.vue.d.ts
|
|
930
931
|
interface AlertDialogTitleProps extends DialogTitleProps {}
|
|
931
|
-
declare const _default$12: __VLS_WithSlots$266<
|
|
932
|
-
as: AsTag |
|
|
933
|
-
}, {}, {}, {}, string,
|
|
932
|
+
declare const _default$12: __VLS_WithSlots$266<vue69.DefineComponent<AlertDialogTitleProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AlertDialogTitleProps> & Readonly<{}>, {
|
|
933
|
+
as: AsTag | vue69.Component;
|
|
934
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
934
935
|
default?: (props: {}) => any;
|
|
935
936
|
}>;
|
|
936
937
|
type __VLS_WithSlots$266<T, S> = T & {
|
|
@@ -942,9 +943,9 @@ type __VLS_WithSlots$266<T, S> = T & {
|
|
|
942
943
|
//#endregion
|
|
943
944
|
//#region src/AlertDialog/AlertDialogTrigger.vue.d.ts
|
|
944
945
|
interface AlertDialogTriggerProps extends DialogTriggerProps {}
|
|
945
|
-
declare const _default$13: __VLS_WithSlots$265<
|
|
946
|
-
as: AsTag |
|
|
947
|
-
}, {}, {}, {}, string,
|
|
946
|
+
declare const _default$13: __VLS_WithSlots$265<vue69.DefineComponent<AlertDialogTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AlertDialogTriggerProps> & Readonly<{}>, {
|
|
947
|
+
as: AsTag | vue69.Component;
|
|
948
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
948
949
|
default?: (props: {}) => any;
|
|
949
950
|
}>;
|
|
950
951
|
type __VLS_WithSlots$265<T, S> = T & {
|
|
@@ -962,9 +963,9 @@ interface AspectRatioProps extends PrimitiveProps {
|
|
|
962
963
|
*/
|
|
963
964
|
ratio?: number;
|
|
964
965
|
}
|
|
965
|
-
declare const _default$14: __VLS_WithSlots$264<
|
|
966
|
+
declare const _default$14: __VLS_WithSlots$264<vue69.DefineComponent<AspectRatioProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AspectRatioProps> & Readonly<{}>, {
|
|
966
967
|
ratio: number;
|
|
967
|
-
}, {}, {}, {}, string,
|
|
968
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
968
969
|
default?: (props: {
|
|
969
970
|
/** Current aspect ratio (in %) */
|
|
970
971
|
aspect: number;
|
|
@@ -982,9 +983,9 @@ interface AvatarFallbackProps extends PrimitiveProps {
|
|
|
982
983
|
/** Useful for delaying rendering so it only appears for those with slower connections. */
|
|
983
984
|
delayMs?: number;
|
|
984
985
|
}
|
|
985
|
-
declare const _default$15: __VLS_WithSlots$263<
|
|
986
|
-
as: AsTag |
|
|
987
|
-
}, {}, {}, {}, string,
|
|
986
|
+
declare const _default$15: __VLS_WithSlots$263<vue69.DefineComponent<AvatarFallbackProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AvatarFallbackProps> & Readonly<{}>, {
|
|
987
|
+
as: AsTag | vue69.Component;
|
|
988
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
988
989
|
default?: (props: {}) => any;
|
|
989
990
|
}>;
|
|
990
991
|
type __VLS_WithSlots$263<T, S> = T & {
|
|
@@ -1010,13 +1011,13 @@ interface AvatarImageProps extends PrimitiveProps {
|
|
|
1010
1011
|
referrerPolicy?: ImgHTMLAttributes['referrerpolicy'];
|
|
1011
1012
|
crossOrigin?: ImgHTMLAttributes['crossorigin'];
|
|
1012
1013
|
}
|
|
1013
|
-
declare const _default$16: __VLS_WithSlots$262<
|
|
1014
|
+
declare const _default$16: __VLS_WithSlots$262<vue69.DefineComponent<AvatarImageProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
1014
1015
|
loadingStatusChange: (value: ImageLoadingStatus) => any;
|
|
1015
|
-
}, string,
|
|
1016
|
+
}, string, vue69.PublicProps, Readonly<AvatarImageProps> & Readonly<{
|
|
1016
1017
|
onLoadingStatusChange?: ((value: ImageLoadingStatus) => any) | undefined;
|
|
1017
1018
|
}>, {
|
|
1018
|
-
as: AsTag |
|
|
1019
|
-
}, {}, {}, {}, string,
|
|
1019
|
+
as: AsTag | vue69.Component;
|
|
1020
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1020
1021
|
default?: (props: {}) => any;
|
|
1021
1022
|
}>;
|
|
1022
1023
|
type __VLS_WithSlots$262<T, S> = T & {
|
|
@@ -1032,9 +1033,9 @@ type AvatarRootContext = {
|
|
|
1032
1033
|
imageLoadingStatus: Ref<ImageLoadingStatus>;
|
|
1033
1034
|
};
|
|
1034
1035
|
declare const injectAvatarRootContext: <T extends AvatarRootContext | null | undefined = AvatarRootContext>(fallback?: T | undefined) => T extends null ? AvatarRootContext | null : AvatarRootContext, provideAvatarRootContext: (contextValue: AvatarRootContext) => AvatarRootContext;
|
|
1035
|
-
declare const _default$17: __VLS_WithSlots$261<
|
|
1036
|
-
as: AsTag |
|
|
1037
|
-
}, {}, {}, {}, string,
|
|
1036
|
+
declare const _default$17: __VLS_WithSlots$261<vue69.DefineComponent<AvatarRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<AvatarRootProps> & Readonly<{}>, {
|
|
1037
|
+
as: AsTag | vue69.Component;
|
|
1038
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1038
1039
|
default?: (props: {}) => any;
|
|
1039
1040
|
}>;
|
|
1040
1041
|
type __VLS_WithSlots$261<T, S> = T & {
|
|
@@ -1049,9 +1050,9 @@ interface CalendarCellProps extends PrimitiveProps {
|
|
|
1049
1050
|
/** The date value for the cell */
|
|
1050
1051
|
date: DateValue$1;
|
|
1051
1052
|
}
|
|
1052
|
-
declare const _default$18: __VLS_WithSlots$260<
|
|
1053
|
-
as: AsTag |
|
|
1054
|
-
}, {}, {}, {}, string,
|
|
1053
|
+
declare const _default$18: __VLS_WithSlots$260<vue69.DefineComponent<CalendarCellProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarCellProps> & Readonly<{}>, {
|
|
1054
|
+
as: AsTag | vue69.Component;
|
|
1055
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1055
1056
|
default?: (props: {}) => any;
|
|
1056
1057
|
}>;
|
|
1057
1058
|
type __VLS_WithSlots$260<T, S> = T & {
|
|
@@ -1086,9 +1087,9 @@ interface CalendarCellTriggerSlot {
|
|
|
1086
1087
|
unavailable: boolean;
|
|
1087
1088
|
}) => any;
|
|
1088
1089
|
}
|
|
1089
|
-
declare const _default$19: __VLS_WithSlots$259<
|
|
1090
|
-
as: AsTag |
|
|
1091
|
-
}, {}, {}, {}, string,
|
|
1090
|
+
declare const _default$19: __VLS_WithSlots$259<vue69.DefineComponent<CalendarCellTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarCellTriggerProps> & Readonly<{}>, {
|
|
1091
|
+
as: AsTag | vue69.Component;
|
|
1092
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, CalendarCellTriggerSlot>;
|
|
1092
1093
|
type __VLS_WithSlots$259<T, S> = T & {
|
|
1093
1094
|
new (): {
|
|
1094
1095
|
$slots: S;
|
|
@@ -1098,9 +1099,9 @@ type __VLS_WithSlots$259<T, S> = T & {
|
|
|
1098
1099
|
//#endregion
|
|
1099
1100
|
//#region src/Calendar/CalendarGrid.vue.d.ts
|
|
1100
1101
|
interface CalendarGridProps extends PrimitiveProps {}
|
|
1101
|
-
declare const _default$20: __VLS_WithSlots$258<
|
|
1102
|
-
as: AsTag |
|
|
1103
|
-
}, {}, {}, {}, string,
|
|
1102
|
+
declare const _default$20: __VLS_WithSlots$258<vue69.DefineComponent<CalendarGridProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarGridProps> & Readonly<{}>, {
|
|
1103
|
+
as: AsTag | vue69.Component;
|
|
1104
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1104
1105
|
default?: (props: {}) => any;
|
|
1105
1106
|
}>;
|
|
1106
1107
|
type __VLS_WithSlots$258<T, S> = T & {
|
|
@@ -1112,9 +1113,9 @@ type __VLS_WithSlots$258<T, S> = T & {
|
|
|
1112
1113
|
//#endregion
|
|
1113
1114
|
//#region src/Calendar/CalendarGridBody.vue.d.ts
|
|
1114
1115
|
interface CalendarGridBodyProps extends PrimitiveProps {}
|
|
1115
|
-
declare const _default$21: __VLS_WithSlots$257<
|
|
1116
|
-
as: AsTag |
|
|
1117
|
-
}, {}, {}, {}, string,
|
|
1116
|
+
declare const _default$21: __VLS_WithSlots$257<vue69.DefineComponent<CalendarGridBodyProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarGridBodyProps> & Readonly<{}>, {
|
|
1117
|
+
as: AsTag | vue69.Component;
|
|
1118
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1118
1119
|
default?: (props: {}) => any;
|
|
1119
1120
|
}>;
|
|
1120
1121
|
type __VLS_WithSlots$257<T, S> = T & {
|
|
@@ -1126,9 +1127,9 @@ type __VLS_WithSlots$257<T, S> = T & {
|
|
|
1126
1127
|
//#endregion
|
|
1127
1128
|
//#region src/Calendar/CalendarGridHead.vue.d.ts
|
|
1128
1129
|
interface CalendarGridHeadProps extends PrimitiveProps {}
|
|
1129
|
-
declare const _default$22: __VLS_WithSlots$256<
|
|
1130
|
-
as: AsTag |
|
|
1131
|
-
}, {}, {}, {}, string,
|
|
1130
|
+
declare const _default$22: __VLS_WithSlots$256<vue69.DefineComponent<CalendarGridHeadProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarGridHeadProps> & Readonly<{}>, {
|
|
1131
|
+
as: AsTag | vue69.Component;
|
|
1132
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1132
1133
|
default?: (props: {}) => any;
|
|
1133
1134
|
}>;
|
|
1134
1135
|
type __VLS_WithSlots$256<T, S> = T & {
|
|
@@ -1140,9 +1141,9 @@ type __VLS_WithSlots$256<T, S> = T & {
|
|
|
1140
1141
|
//#endregion
|
|
1141
1142
|
//#region src/Calendar/CalendarGridRow.vue.d.ts
|
|
1142
1143
|
interface CalendarGridRowProps extends PrimitiveProps {}
|
|
1143
|
-
declare const _default$23: __VLS_WithSlots$255<
|
|
1144
|
-
as: AsTag |
|
|
1145
|
-
}, {}, {}, {}, string,
|
|
1144
|
+
declare const _default$23: __VLS_WithSlots$255<vue69.DefineComponent<CalendarGridRowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarGridRowProps> & Readonly<{}>, {
|
|
1145
|
+
as: AsTag | vue69.Component;
|
|
1146
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1146
1147
|
default?: (props: {}) => any;
|
|
1147
1148
|
}>;
|
|
1148
1149
|
type __VLS_WithSlots$255<T, S> = T & {
|
|
@@ -1154,9 +1155,9 @@ type __VLS_WithSlots$255<T, S> = T & {
|
|
|
1154
1155
|
//#endregion
|
|
1155
1156
|
//#region src/Calendar/CalendarHeadCell.vue.d.ts
|
|
1156
1157
|
interface CalendarHeadCellProps extends PrimitiveProps {}
|
|
1157
|
-
declare const _default$24: __VLS_WithSlots$254<
|
|
1158
|
-
as: AsTag |
|
|
1159
|
-
}, {}, {}, {}, string,
|
|
1158
|
+
declare const _default$24: __VLS_WithSlots$254<vue69.DefineComponent<CalendarHeadCellProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarHeadCellProps> & Readonly<{}>, {
|
|
1159
|
+
as: AsTag | vue69.Component;
|
|
1160
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1160
1161
|
default?: (props: {}) => any;
|
|
1161
1162
|
}>;
|
|
1162
1163
|
type __VLS_WithSlots$254<T, S> = T & {
|
|
@@ -1168,9 +1169,9 @@ type __VLS_WithSlots$254<T, S> = T & {
|
|
|
1168
1169
|
//#endregion
|
|
1169
1170
|
//#region src/Calendar/CalendarHeader.vue.d.ts
|
|
1170
1171
|
interface CalendarHeaderProps extends PrimitiveProps {}
|
|
1171
|
-
declare const _default$25: __VLS_WithSlots$253<
|
|
1172
|
-
as: AsTag |
|
|
1173
|
-
}, {}, {}, {}, string,
|
|
1172
|
+
declare const _default$25: __VLS_WithSlots$253<vue69.DefineComponent<CalendarHeaderProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarHeaderProps> & Readonly<{}>, {
|
|
1173
|
+
as: AsTag | vue69.Component;
|
|
1174
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1174
1175
|
default?: (props: {}) => any;
|
|
1175
1176
|
}>;
|
|
1176
1177
|
type __VLS_WithSlots$253<T, S> = T & {
|
|
@@ -1182,9 +1183,9 @@ type __VLS_WithSlots$253<T, S> = T & {
|
|
|
1182
1183
|
//#endregion
|
|
1183
1184
|
//#region src/Calendar/CalendarHeading.vue.d.ts
|
|
1184
1185
|
interface CalendarHeadingProps extends PrimitiveProps {}
|
|
1185
|
-
declare const _default$26: __VLS_WithSlots$252<
|
|
1186
|
-
as: AsTag |
|
|
1187
|
-
}, {}, {}, {}, string,
|
|
1186
|
+
declare const _default$26: __VLS_WithSlots$252<vue69.DefineComponent<CalendarHeadingProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarHeadingProps> & Readonly<{}>, {
|
|
1187
|
+
as: AsTag | vue69.Component;
|
|
1188
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1188
1189
|
default?: (props: {
|
|
1189
1190
|
/** Current month and year */
|
|
1190
1191
|
headingValue: string;
|
|
@@ -1208,9 +1209,9 @@ interface CalendarNextSlot {
|
|
|
1208
1209
|
disabled: boolean;
|
|
1209
1210
|
}) => any;
|
|
1210
1211
|
}
|
|
1211
|
-
declare const _default$27: __VLS_WithSlots$251<
|
|
1212
|
-
as: AsTag |
|
|
1213
|
-
}, {}, {}, {}, string,
|
|
1212
|
+
declare const _default$27: __VLS_WithSlots$251<vue69.DefineComponent<CalendarNextProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarNextProps> & Readonly<{}>, {
|
|
1213
|
+
as: AsTag | vue69.Component;
|
|
1214
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, CalendarNextSlot>;
|
|
1214
1215
|
type __VLS_WithSlots$251<T, S> = T & {
|
|
1215
1216
|
new (): {
|
|
1216
1217
|
$slots: S;
|
|
@@ -1229,9 +1230,9 @@ interface CalendarPrevSlot {
|
|
|
1229
1230
|
disabled: boolean;
|
|
1230
1231
|
}) => any;
|
|
1231
1232
|
}
|
|
1232
|
-
declare const _default$28: __VLS_WithSlots$250<
|
|
1233
|
-
as: AsTag |
|
|
1234
|
-
}, {}, {}, {}, string,
|
|
1233
|
+
declare const _default$28: __VLS_WithSlots$250<vue69.DefineComponent<CalendarPrevProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CalendarPrevProps> & Readonly<{}>, {
|
|
1234
|
+
as: AsTag | vue69.Component;
|
|
1235
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, CalendarPrevSlot>;
|
|
1235
1236
|
type __VLS_WithSlots$250<T, S> = T & {
|
|
1236
1237
|
new (): {
|
|
1237
1238
|
$slots: S;
|
|
@@ -1273,7 +1274,6 @@ type CalendarRootContext = {
|
|
|
1273
1274
|
formatter: Formatter;
|
|
1274
1275
|
dir: Ref<Direction>;
|
|
1275
1276
|
disableDaysOutsideCurrentView: Ref<boolean>;
|
|
1276
|
-
startingWeekNumber: ComputedRef<number[]>;
|
|
1277
1277
|
};
|
|
1278
1278
|
interface CalendarRootProps extends PrimitiveProps {
|
|
1279
1279
|
/** The default value for the calendar */
|
|
@@ -1332,30 +1332,30 @@ type CalendarRootEmits = {
|
|
|
1332
1332
|
'update:placeholder': [date: DateValue$1];
|
|
1333
1333
|
};
|
|
1334
1334
|
declare const injectCalendarRootContext: <T extends CalendarRootContext | null | undefined = CalendarRootContext>(fallback?: T | undefined) => T extends null ? CalendarRootContext | null : CalendarRootContext, provideCalendarRootContext: (contextValue: CalendarRootContext) => CalendarRootContext;
|
|
1335
|
-
declare const _default$29: __VLS_WithSlots$249<
|
|
1335
|
+
declare const _default$29: __VLS_WithSlots$249<vue69.DefineComponent<CalendarRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
1336
1336
|
"update:modelValue": (date: DateValue$1 | undefined) => any;
|
|
1337
1337
|
"update:placeholder": (date: DateValue$1) => any;
|
|
1338
|
-
}, string,
|
|
1338
|
+
}, string, vue69.PublicProps, Readonly<CalendarRootProps> & Readonly<{
|
|
1339
1339
|
"onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
1340
1340
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
1341
1341
|
}>, {
|
|
1342
|
-
as: AsTag |
|
|
1342
|
+
as: AsTag | vue69.Component;
|
|
1343
1343
|
disabled: boolean;
|
|
1344
1344
|
defaultValue: DateValue$1;
|
|
1345
1345
|
placeholder: DateValue$1;
|
|
1346
|
-
readonly: boolean;
|
|
1347
|
-
isDateUnavailable: Matcher;
|
|
1348
1346
|
pagedNavigation: boolean;
|
|
1349
1347
|
preventDeselect: boolean;
|
|
1350
1348
|
weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
1351
1349
|
weekdayFormat: WeekDayFormat;
|
|
1352
1350
|
fixedWeeks: boolean;
|
|
1353
1351
|
numberOfMonths: number;
|
|
1352
|
+
readonly: boolean;
|
|
1354
1353
|
initialFocus: boolean;
|
|
1355
1354
|
isDateDisabled: Matcher;
|
|
1355
|
+
isDateUnavailable: Matcher;
|
|
1356
1356
|
multiple: boolean;
|
|
1357
1357
|
disableDaysOutsideCurrentView: boolean;
|
|
1358
|
-
}, {}, {}, {}, string,
|
|
1358
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1359
1359
|
default?: (props: {
|
|
1360
1360
|
/** The current date of the placeholder */
|
|
1361
1361
|
date: DateValue$1;
|
|
@@ -1417,22 +1417,22 @@ type RovingFocusGroupEmits = {
|
|
|
1417
1417
|
'entryFocus': [event: Event];
|
|
1418
1418
|
'update:currentTabStopId': [value: string | null | undefined];
|
|
1419
1419
|
};
|
|
1420
|
-
declare const _default$224: __VLS_WithSlots$248<
|
|
1420
|
+
declare const _default$224: __VLS_WithSlots$248<vue69.DefineComponent<RovingFocusGroupProps, {
|
|
1421
1421
|
getItems: (includeDisabledItem?: boolean) => {
|
|
1422
1422
|
ref: HTMLElement;
|
|
1423
1423
|
value?: any;
|
|
1424
1424
|
}[];
|
|
1425
|
-
}, {}, {}, {},
|
|
1425
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
1426
1426
|
"update:currentTabStopId": (value: string | null | undefined) => any;
|
|
1427
1427
|
entryFocus: (event: Event) => any;
|
|
1428
|
-
}, string,
|
|
1428
|
+
}, string, vue69.PublicProps, Readonly<RovingFocusGroupProps> & Readonly<{
|
|
1429
1429
|
"onUpdate:currentTabStopId"?: ((value: string | null | undefined) => any) | undefined;
|
|
1430
1430
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
1431
1431
|
}>, {
|
|
1432
1432
|
orientation: Orientation$1;
|
|
1433
1433
|
loop: boolean;
|
|
1434
1434
|
preventScrollOnEntryFocus: boolean;
|
|
1435
|
-
}, {}, {}, {}, string,
|
|
1435
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1436
1436
|
default?: (props: {}) => any;
|
|
1437
1437
|
}>;
|
|
1438
1438
|
type __VLS_WithSlots$248<T, S> = T & {
|
|
@@ -1455,10 +1455,10 @@ interface RovingFocusItemProps extends PrimitiveProps {
|
|
|
1455
1455
|
/** When `true`, shift + arrow key will allow focusing on next/previous item. */
|
|
1456
1456
|
allowShiftKey?: boolean;
|
|
1457
1457
|
}
|
|
1458
|
-
declare const _default$225: __VLS_WithSlots$247<
|
|
1459
|
-
as: AsTag |
|
|
1458
|
+
declare const _default$225: __VLS_WithSlots$247<vue69.DefineComponent<RovingFocusItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RovingFocusItemProps> & Readonly<{}>, {
|
|
1459
|
+
as: AsTag | vue69.Component;
|
|
1460
1460
|
focusable: boolean;
|
|
1461
|
-
}, {}, {}, {}, string,
|
|
1461
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1462
1462
|
default?: (props: {}) => any;
|
|
1463
1463
|
}>;
|
|
1464
1464
|
type __VLS_WithSlots$247<T, S> = T & {
|
|
@@ -1492,14 +1492,14 @@ declare const injectCheckboxGroupRootContext: <T extends CheckboxGroupRootContex
|
|
|
1492
1492
|
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<{
|
|
1493
1493
|
props: __VLS_PrettifyLocal$13<Pick<Partial<{}> & Omit<{
|
|
1494
1494
|
readonly "onUpdate:modelValue"?: ((value: T[]) => any) | undefined;
|
|
1495
|
-
} &
|
|
1496
|
-
expose(exposed:
|
|
1495
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onUpdate:modelValue"> & CheckboxGroupRootProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
1496
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
1497
1497
|
attrs: any;
|
|
1498
1498
|
slots: {
|
|
1499
1499
|
default?: (props: {}) => any;
|
|
1500
1500
|
};
|
|
1501
1501
|
emit: (evt: "update:modelValue", value: T[]) => void;
|
|
1502
|
-
}>) =>
|
|
1502
|
+
}>) => vue69.VNode & {
|
|
1503
1503
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1504
1504
|
};
|
|
1505
1505
|
type __VLS_PrettifyLocal$13<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -1513,9 +1513,9 @@ interface CheckboxIndicatorProps extends PrimitiveProps {
|
|
|
1513
1513
|
*/
|
|
1514
1514
|
forceMount?: boolean;
|
|
1515
1515
|
}
|
|
1516
|
-
declare const _default$31: __VLS_WithSlots$246<
|
|
1517
|
-
as: AsTag |
|
|
1518
|
-
}, {}, {}, {}, string,
|
|
1516
|
+
declare const _default$31: __VLS_WithSlots$246<vue69.DefineComponent<CheckboxIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<CheckboxIndicatorProps> & Readonly<{}>, {
|
|
1517
|
+
as: AsTag | vue69.Component;
|
|
1518
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1519
1519
|
default?: (props: {}) => any;
|
|
1520
1520
|
}>;
|
|
1521
1521
|
type __VLS_WithSlots$246<T, S> = T & {
|
|
@@ -1553,15 +1553,15 @@ interface CheckboxRootContext {
|
|
|
1553
1553
|
state: Ref<CheckedState>;
|
|
1554
1554
|
}
|
|
1555
1555
|
declare const injectCheckboxRootContext: <T extends CheckboxRootContext | null | undefined = CheckboxRootContext>(fallback?: T | undefined) => T extends null ? CheckboxRootContext | null : CheckboxRootContext, provideCheckboxRootContext: (contextValue: CheckboxRootContext) => CheckboxRootContext;
|
|
1556
|
-
declare const _default$32: __VLS_WithSlots$245<
|
|
1556
|
+
declare const _default$32: __VLS_WithSlots$245<vue69.DefineComponent<CheckboxRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
1557
1557
|
"update:modelValue": (value: boolean | "indeterminate") => any;
|
|
1558
|
-
}, string,
|
|
1558
|
+
}, string, vue69.PublicProps, Readonly<CheckboxRootProps> & Readonly<{
|
|
1559
1559
|
"onUpdate:modelValue"?: ((value: boolean | "indeterminate") => any) | undefined;
|
|
1560
1560
|
}>, {
|
|
1561
|
-
as: AsTag |
|
|
1561
|
+
as: AsTag | vue69.Component;
|
|
1562
1562
|
value: AcceptableValue;
|
|
1563
1563
|
modelValue: boolean | "indeterminate" | null;
|
|
1564
|
-
}, {}, {}, {}, string,
|
|
1564
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1565
1565
|
default?: (props: {
|
|
1566
1566
|
/** Current value */
|
|
1567
1567
|
modelValue: CheckedState;
|
|
@@ -1740,7 +1740,7 @@ interface PopperContentProps extends PrimitiveProps {
|
|
|
1740
1740
|
//#endregion
|
|
1741
1741
|
//#region src/Combobox/ComboboxAnchor.vue.d.ts
|
|
1742
1742
|
interface ComboboxAnchorProps extends PopperAnchorProps {}
|
|
1743
|
-
declare const _default$36: __VLS_WithSlots$244<
|
|
1743
|
+
declare const _default$36: __VLS_WithSlots$244<vue69.DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1744
1744
|
default?: (props: {}) => any;
|
|
1745
1745
|
}>;
|
|
1746
1746
|
type __VLS_WithSlots$244<T, S> = T & {
|
|
@@ -1752,11 +1752,11 @@ type __VLS_WithSlots$244<T, S> = T & {
|
|
|
1752
1752
|
//#endregion
|
|
1753
1753
|
//#region src/Combobox/ComboboxArrow.vue.d.ts
|
|
1754
1754
|
interface ComboboxArrowProps extends PopperArrowProps {}
|
|
1755
|
-
declare const _default$37: __VLS_WithSlots$243<
|
|
1756
|
-
as: AsTag |
|
|
1755
|
+
declare const _default$37: __VLS_WithSlots$243<vue69.DefineComponent<ComboboxArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxArrowProps> & Readonly<{}>, {
|
|
1756
|
+
as: AsTag | vue69.Component;
|
|
1757
1757
|
width: number;
|
|
1758
1758
|
height: number;
|
|
1759
|
-
}, {}, {}, {}, string,
|
|
1759
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1760
1760
|
default?: (props: {}) => any;
|
|
1761
1761
|
}>;
|
|
1762
1762
|
type __VLS_WithSlots$243<T, S> = T & {
|
|
@@ -1768,9 +1768,9 @@ type __VLS_WithSlots$243<T, S> = T & {
|
|
|
1768
1768
|
//#endregion
|
|
1769
1769
|
//#region src/Combobox/ComboboxCancel.vue.d.ts
|
|
1770
1770
|
interface ComboboxCancelProps extends PrimitiveProps {}
|
|
1771
|
-
declare const _default$38: __VLS_WithSlots$242<
|
|
1772
|
-
as: AsTag |
|
|
1773
|
-
}, {}, {}, {}, string,
|
|
1771
|
+
declare const _default$38: __VLS_WithSlots$242<vue69.DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {
|
|
1772
|
+
as: AsTag | vue69.Component;
|
|
1773
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1774
1774
|
default?: (props: {}) => any;
|
|
1775
1775
|
}>;
|
|
1776
1776
|
type __VLS_WithSlots$242<T, S> = T & {
|
|
@@ -1802,17 +1802,17 @@ interface ComboboxContentProps extends ComboboxContentImplProps {
|
|
|
1802
1802
|
*/
|
|
1803
1803
|
forceMount?: boolean;
|
|
1804
1804
|
}
|
|
1805
|
-
declare const _default$39: __VLS_WithSlots$241<
|
|
1805
|
+
declare const _default$39: __VLS_WithSlots$241<vue69.DefineComponent<ComboboxContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
1806
1806
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
1807
1807
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
1808
1808
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
1809
1809
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
1810
|
-
}, string,
|
|
1810
|
+
}, string, vue69.PublicProps, Readonly<ComboboxContentProps> & Readonly<{
|
|
1811
1811
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
1812
1812
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
1813
1813
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
1814
1814
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
1815
|
-
}>, {}, {}, {}, {}, string,
|
|
1815
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1816
1816
|
default?: (props: {}) => any;
|
|
1817
1817
|
}>;
|
|
1818
1818
|
type __VLS_WithSlots$241<T, S> = T & {
|
|
@@ -1824,7 +1824,7 @@ type __VLS_WithSlots$241<T, S> = T & {
|
|
|
1824
1824
|
//#endregion
|
|
1825
1825
|
//#region src/Combobox/ComboboxEmpty.vue.d.ts
|
|
1826
1826
|
interface ComboboxEmptyProps extends PrimitiveProps {}
|
|
1827
|
-
declare const _default$40: __VLS_WithSlots$240<
|
|
1827
|
+
declare const _default$40: __VLS_WithSlots$240<vue69.DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1828
1828
|
default?: (props: {}) => any;
|
|
1829
1829
|
}>;
|
|
1830
1830
|
type __VLS_WithSlots$240<T, S> = T & {
|
|
@@ -1836,7 +1836,7 @@ type __VLS_WithSlots$240<T, S> = T & {
|
|
|
1836
1836
|
//#endregion
|
|
1837
1837
|
//#region src/Listbox/ListboxContent.vue.d.ts
|
|
1838
1838
|
interface ListboxContentProps extends PrimitiveProps {}
|
|
1839
|
-
declare const _default$151: __VLS_WithSlots$239<
|
|
1839
|
+
declare const _default$151: __VLS_WithSlots$239<vue69.DefineComponent<ListboxContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ListboxContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1840
1840
|
default?: (props: {}) => any;
|
|
1841
1841
|
}>;
|
|
1842
1842
|
type __VLS_WithSlots$239<T, S> = T & {
|
|
@@ -1858,13 +1858,13 @@ interface ListboxFilterProps extends PrimitiveProps {
|
|
|
1858
1858
|
type ListboxFilterEmits = {
|
|
1859
1859
|
'update:modelValue': [string];
|
|
1860
1860
|
};
|
|
1861
|
-
declare const _default$152: __VLS_WithSlots$238<
|
|
1861
|
+
declare const _default$152: __VLS_WithSlots$238<vue69.DefineComponent<ListboxFilterProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
1862
1862
|
"update:modelValue": (args_0: string) => any;
|
|
1863
|
-
}, string,
|
|
1863
|
+
}, string, vue69.PublicProps, Readonly<ListboxFilterProps> & Readonly<{
|
|
1864
1864
|
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
1865
1865
|
}>, {
|
|
1866
|
-
as: AsTag |
|
|
1867
|
-
}, {}, {}, {}, string,
|
|
1866
|
+
as: AsTag | vue69.Component;
|
|
1867
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1868
1868
|
default?: (props: {
|
|
1869
1869
|
/** Current input values */
|
|
1870
1870
|
modelValue: string | undefined;
|
|
@@ -1883,7 +1883,7 @@ interface ListboxGroupContext {
|
|
|
1883
1883
|
id: string;
|
|
1884
1884
|
}
|
|
1885
1885
|
declare const injectListboxGroupContext: <T extends ListboxGroupContext | null | undefined = ListboxGroupContext>(fallback?: T | undefined) => T extends null ? ListboxGroupContext | null : ListboxGroupContext, provideListboxGroupContext: (contextValue: ListboxGroupContext) => ListboxGroupContext;
|
|
1886
|
-
declare const _default$153: __VLS_WithSlots$237<
|
|
1886
|
+
declare const _default$153: __VLS_WithSlots$237<vue69.DefineComponent<ListboxGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ListboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1887
1887
|
default?: (props: {}) => any;
|
|
1888
1888
|
}>;
|
|
1889
1889
|
type __VLS_WithSlots$237<T, S> = T & {
|
|
@@ -1897,9 +1897,9 @@ type __VLS_WithSlots$237<T, S> = T & {
|
|
|
1897
1897
|
interface ListboxGroupLabelProps extends PrimitiveProps {
|
|
1898
1898
|
for?: string;
|
|
1899
1899
|
}
|
|
1900
|
-
declare const _default$154: __VLS_WithSlots$236<
|
|
1901
|
-
as: AsTag |
|
|
1902
|
-
}, {}, {}, {}, string,
|
|
1900
|
+
declare const _default$154: __VLS_WithSlots$236<vue69.DefineComponent<ListboxGroupLabelProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ListboxGroupLabelProps> & Readonly<{}>, {
|
|
1901
|
+
as: AsTag | vue69.Component;
|
|
1902
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1903
1903
|
default?: (props: {}) => any;
|
|
1904
1904
|
}>;
|
|
1905
1905
|
type __VLS_WithSlots$236<T, S> = T & {
|
|
@@ -1931,14 +1931,14 @@ declare const injectListboxItemContext: <T extends ListboxItemContext | null | u
|
|
|
1931
1931
|
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<{
|
|
1932
1932
|
props: __VLS_PrettifyLocal$12<Pick<Partial<{}> & Omit<{
|
|
1933
1933
|
readonly onSelect?: ((event: SelectEvent<T>) => any) | undefined;
|
|
1934
|
-
} &
|
|
1935
|
-
expose(exposed:
|
|
1934
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onSelect"> & ListboxItemProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
1935
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
1936
1936
|
attrs: any;
|
|
1937
1937
|
slots: {
|
|
1938
1938
|
default?: (props: {}) => any;
|
|
1939
1939
|
};
|
|
1940
1940
|
emit: (evt: "select", event: SelectEvent<T>) => void;
|
|
1941
|
-
}>) =>
|
|
1941
|
+
}>) => vue69.VNode & {
|
|
1942
1942
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1943
1943
|
};
|
|
1944
1944
|
type __VLS_PrettifyLocal$12<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -1946,9 +1946,9 @@ type __VLS_PrettifyLocal$12<T> = { [K in keyof T]: T[K] } & {};
|
|
|
1946
1946
|
//#endregion
|
|
1947
1947
|
//#region src/Listbox/ListboxItemIndicator.vue.d.ts
|
|
1948
1948
|
interface ListboxItemIndicatorProps extends PrimitiveProps {}
|
|
1949
|
-
declare const _default$156: __VLS_WithSlots$235<
|
|
1950
|
-
as: AsTag |
|
|
1951
|
-
}, {}, {}, {}, string,
|
|
1949
|
+
declare const _default$156: __VLS_WithSlots$235<vue69.DefineComponent<ListboxItemIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ListboxItemIndicatorProps> & Readonly<{}>, {
|
|
1950
|
+
as: AsTag | vue69.Component;
|
|
1951
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
1952
1952
|
default?: (props: {}) => any;
|
|
1953
1953
|
}>;
|
|
1954
1954
|
type __VLS_WithSlots$235<T, S> = T & {
|
|
@@ -2032,8 +2032,8 @@ declare const _default$157: <T extends AcceptableValue = AcceptableValue>(__VLS_
|
|
|
2032
2032
|
value: AcceptableValue;
|
|
2033
2033
|
} | undefined) => any) | undefined;
|
|
2034
2034
|
readonly onLeave?: ((event: Event) => any) | undefined;
|
|
2035
|
-
} &
|
|
2036
|
-
expose(exposed:
|
|
2035
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onUpdate:modelValue" | "onEntryFocus" | "onHighlight" | "onLeave"> & ListboxRootProps<AcceptableValue> & Partial<{}>> & vue69.PublicProps;
|
|
2036
|
+
expose(exposed: vue69.ShallowUnwrapRef<{
|
|
2037
2037
|
highlightedElement: Ref<HTMLElement | null, HTMLElement | null>;
|
|
2038
2038
|
highlightItem: (value: T) => void;
|
|
2039
2039
|
highlightFirstItem: () => void;
|
|
@@ -2056,7 +2056,7 @@ declare const _default$157: <T extends AcceptableValue = AcceptableValue>(__VLS_
|
|
|
2056
2056
|
ref: HTMLElement;
|
|
2057
2057
|
value: AcceptableValue;
|
|
2058
2058
|
} | undefined) => void) & ((evt: "leave", event: Event) => void);
|
|
2059
|
-
}>) =>
|
|
2059
|
+
}>) => vue69.VNode & {
|
|
2060
2060
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2061
2061
|
};
|
|
2062
2062
|
type __VLS_PrettifyLocal$11<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2074,8 +2074,8 @@ interface ListboxVirtualizerProps<T extends AcceptableValue = AcceptableValue> {
|
|
|
2074
2074
|
textContent?: (option: T) => string;
|
|
2075
2075
|
}
|
|
2076
2076
|
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<{
|
|
2077
|
-
props: __VLS_PrettifyLocal$10<Pick<Partial<{}> & Omit<{} &
|
|
2078
|
-
expose(exposed:
|
|
2077
|
+
props: __VLS_PrettifyLocal$10<Pick<Partial<{}> & Omit<{} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, never> & ListboxVirtualizerProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
2078
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
2079
2079
|
attrs: any;
|
|
2080
2080
|
slots: {
|
|
2081
2081
|
default?: (props: {
|
|
@@ -2085,7 +2085,7 @@ declare const _default$158: <T extends AcceptableValue = AcceptableValue>(__VLS_
|
|
|
2085
2085
|
}) => any;
|
|
2086
2086
|
};
|
|
2087
2087
|
emit: {};
|
|
2088
|
-
}>) =>
|
|
2088
|
+
}>) => vue69.VNode & {
|
|
2089
2089
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2090
2090
|
};
|
|
2091
2091
|
type __VLS_PrettifyLocal$10<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2098,7 +2098,7 @@ type ComboboxGroupContext = {
|
|
|
2098
2098
|
labelId: string;
|
|
2099
2099
|
};
|
|
2100
2100
|
declare const injectComboboxGroupContext: <T extends ComboboxGroupContext | null | undefined = ComboboxGroupContext>(fallback?: T | undefined) => T extends null ? ComboboxGroupContext | null : ComboboxGroupContext, provideComboboxGroupContext: (contextValue: ComboboxGroupContext) => ComboboxGroupContext;
|
|
2101
|
-
declare const _default$41: __VLS_WithSlots$234<
|
|
2101
|
+
declare const _default$41: __VLS_WithSlots$234<vue69.DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2102
2102
|
default?: (props: {}) => any;
|
|
2103
2103
|
}>;
|
|
2104
2104
|
type __VLS_WithSlots$234<T, S> = T & {
|
|
@@ -2114,13 +2114,13 @@ interface ComboboxInputProps extends ListboxFilterProps {
|
|
|
2114
2114
|
/** The display value of input for selected item. Does not work with `multiple`. */
|
|
2115
2115
|
displayValue?: (val: any) => string;
|
|
2116
2116
|
}
|
|
2117
|
-
declare const _default$42: __VLS_WithSlots$233<
|
|
2117
|
+
declare const _default$42: __VLS_WithSlots$233<vue69.DefineComponent<ComboboxInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2118
2118
|
"update:modelValue": (args_0: string) => any;
|
|
2119
|
-
}, string,
|
|
2119
|
+
}, string, vue69.PublicProps, Readonly<ComboboxInputProps> & Readonly<{
|
|
2120
2120
|
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
2121
2121
|
}>, {
|
|
2122
|
-
as: AsTag |
|
|
2123
|
-
}, {}, {}, {}, string,
|
|
2122
|
+
as: AsTag | vue69.Component;
|
|
2123
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2124
2124
|
default?: (props: {}) => any;
|
|
2125
2125
|
}>;
|
|
2126
2126
|
type __VLS_WithSlots$233<T, S> = T & {
|
|
@@ -2143,14 +2143,14 @@ interface ComboboxItemProps<T = AcceptableValue> extends ListboxItemProps<T> {
|
|
|
2143
2143
|
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<{
|
|
2144
2144
|
props: __VLS_PrettifyLocal$9<Pick<Partial<{}> & Omit<{
|
|
2145
2145
|
readonly onSelect?: ((event: SelectEvent<T>) => any) | undefined;
|
|
2146
|
-
} &
|
|
2147
|
-
expose(exposed:
|
|
2146
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onSelect"> & ComboboxItemProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
2147
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
2148
2148
|
attrs: any;
|
|
2149
2149
|
slots: {
|
|
2150
2150
|
default?: (props: {}) => any;
|
|
2151
2151
|
};
|
|
2152
2152
|
emit: (evt: "select", event: SelectEvent<T>) => void;
|
|
2153
|
-
}>) =>
|
|
2153
|
+
}>) => vue69.VNode & {
|
|
2154
2154
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2155
2155
|
};
|
|
2156
2156
|
type __VLS_PrettifyLocal$9<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2158,9 +2158,9 @@ type __VLS_PrettifyLocal$9<T> = { [K in keyof T]: T[K] } & {};
|
|
|
2158
2158
|
//#endregion
|
|
2159
2159
|
//#region src/Combobox/ComboboxItemIndicator.vue.d.ts
|
|
2160
2160
|
interface ComboboxItemIndicatorProps extends ListboxItemIndicatorProps {}
|
|
2161
|
-
declare const _default$44: __VLS_WithSlots$232<
|
|
2162
|
-
as: AsTag |
|
|
2163
|
-
}, {}, {}, {}, string,
|
|
2161
|
+
declare const _default$44: __VLS_WithSlots$232<vue69.DefineComponent<ComboboxItemIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxItemIndicatorProps> & Readonly<{}>, {
|
|
2162
|
+
as: AsTag | vue69.Component;
|
|
2163
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2164
2164
|
default?: (props: {}) => any;
|
|
2165
2165
|
}>;
|
|
2166
2166
|
type __VLS_WithSlots$232<T, S> = T & {
|
|
@@ -2174,9 +2174,9 @@ type __VLS_WithSlots$232<T, S> = T & {
|
|
|
2174
2174
|
interface ComboboxLabelProps extends PrimitiveProps {
|
|
2175
2175
|
for?: string;
|
|
2176
2176
|
}
|
|
2177
|
-
declare const _default$45: __VLS_WithSlots$231<
|
|
2178
|
-
as: AsTag |
|
|
2179
|
-
}, {}, {}, {}, string,
|
|
2177
|
+
declare const _default$45: __VLS_WithSlots$231<vue69.DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {
|
|
2178
|
+
as: AsTag | vue69.Component;
|
|
2179
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2180
2180
|
default?: (props: {}) => any;
|
|
2181
2181
|
}>;
|
|
2182
2182
|
type __VLS_WithSlots$231<T, S> = T & {
|
|
@@ -2188,7 +2188,7 @@ type __VLS_WithSlots$231<T, S> = T & {
|
|
|
2188
2188
|
//#endregion
|
|
2189
2189
|
//#region src/Combobox/ComboboxPortal.vue.d.ts
|
|
2190
2190
|
interface ComboboxPortalProps extends TeleportProps {}
|
|
2191
|
-
declare const _default$46: __VLS_WithSlots$230<
|
|
2191
|
+
declare const _default$46: __VLS_WithSlots$230<vue69.DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2192
2192
|
default?: (props: {}) => any;
|
|
2193
2193
|
}>;
|
|
2194
2194
|
type __VLS_WithSlots$230<T, S> = T & {
|
|
@@ -2272,14 +2272,14 @@ interface ComboboxRootProps<T = AcceptableValue> extends Omit<ListboxRootProps<T
|
|
|
2272
2272
|
}
|
|
2273
2273
|
declare const _default$47: <T extends AcceptableValue = AcceptableValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$8<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2274
2274
|
props: __VLS_PrettifyLocal$8<Pick<Partial<{}> & Omit<{
|
|
2275
|
-
readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
2276
2275
|
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
2276
|
+
readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
2277
2277
|
readonly onHighlight?: ((payload: {
|
|
2278
2278
|
ref: HTMLElement;
|
|
2279
2279
|
value: T;
|
|
2280
2280
|
} | undefined) => any) | undefined;
|
|
2281
|
-
} &
|
|
2282
|
-
expose(exposed:
|
|
2281
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onUpdate:open" | "onUpdate:modelValue" | "onHighlight"> & ComboboxRootProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
2282
|
+
expose(exposed: vue69.ShallowUnwrapRef<{
|
|
2283
2283
|
filtered: ComputedRef<{
|
|
2284
2284
|
count: number;
|
|
2285
2285
|
items: Map<string, number>;
|
|
@@ -2299,11 +2299,11 @@ declare const _default$47: <T extends AcceptableValue = AcceptableValue>(__VLS_p
|
|
|
2299
2299
|
modelValue: T | T[];
|
|
2300
2300
|
}) => any;
|
|
2301
2301
|
};
|
|
2302
|
-
emit: ((evt: "update:
|
|
2302
|
+
emit: ((evt: "update:open", value: boolean) => void) & ((evt: "update:modelValue", value: T) => void) & ((evt: "highlight", payload: {
|
|
2303
2303
|
ref: HTMLElement;
|
|
2304
2304
|
value: T;
|
|
2305
2305
|
} | undefined) => void);
|
|
2306
|
-
}>) =>
|
|
2306
|
+
}>) => vue69.VNode & {
|
|
2307
2307
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2308
2308
|
};
|
|
2309
2309
|
type __VLS_PrettifyLocal$8<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2311,7 +2311,7 @@ type __VLS_PrettifyLocal$8<T> = { [K in keyof T]: T[K] } & {};
|
|
|
2311
2311
|
//#endregion
|
|
2312
2312
|
//#region src/Combobox/ComboboxSeparator.vue.d.ts
|
|
2313
2313
|
interface ComboboxSeparatorProps extends PrimitiveProps {}
|
|
2314
|
-
declare const _default$48: __VLS_WithSlots$229<
|
|
2314
|
+
declare const _default$48: __VLS_WithSlots$229<vue69.DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2315
2315
|
default?: (props: {}) => any;
|
|
2316
2316
|
}>;
|
|
2317
2317
|
type __VLS_WithSlots$229<T, S> = T & {
|
|
@@ -2326,9 +2326,9 @@ interface ComboboxTriggerProps extends PrimitiveProps {
|
|
|
2326
2326
|
/** When `true`, prevents the user from interacting with item */
|
|
2327
2327
|
disabled?: boolean;
|
|
2328
2328
|
}
|
|
2329
|
-
declare const _default$49: __VLS_WithSlots$228<
|
|
2330
|
-
as: AsTag |
|
|
2331
|
-
}, {}, {}, {}, string,
|
|
2329
|
+
declare const _default$49: __VLS_WithSlots$228<vue69.DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {
|
|
2330
|
+
as: AsTag | vue69.Component;
|
|
2331
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2332
2332
|
default?: (props: {}) => any;
|
|
2333
2333
|
}>;
|
|
2334
2334
|
type __VLS_WithSlots$228<T, S> = T & {
|
|
@@ -2345,7 +2345,7 @@ interface ComboboxViewportProps extends PrimitiveProps {
|
|
|
2345
2345
|
*/
|
|
2346
2346
|
nonce?: string;
|
|
2347
2347
|
}
|
|
2348
|
-
declare const _default$50: __VLS_WithSlots$227<
|
|
2348
|
+
declare const _default$50: __VLS_WithSlots$227<vue69.DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2349
2349
|
default?: (props: {}) => any;
|
|
2350
2350
|
}>;
|
|
2351
2351
|
type __VLS_WithSlots$227<T, S> = T & {
|
|
@@ -2358,8 +2358,8 @@ type __VLS_WithSlots$227<T, S> = T & {
|
|
|
2358
2358
|
//#region src/Combobox/ComboboxVirtualizer.vue.d.ts
|
|
2359
2359
|
interface ComboboxVirtualizerProps<T extends AcceptableValue = AcceptableValue> extends ListboxVirtualizerProps<T> {}
|
|
2360
2360
|
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<{
|
|
2361
|
-
props: __VLS_PrettifyLocal$7<Pick<Partial<{}> & Omit<{} &
|
|
2362
|
-
expose(exposed:
|
|
2361
|
+
props: __VLS_PrettifyLocal$7<Pick<Partial<{}> & Omit<{} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, never> & ComboboxVirtualizerProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
2362
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
2363
2363
|
attrs: any;
|
|
2364
2364
|
slots: {
|
|
2365
2365
|
default?: (props: {
|
|
@@ -2369,7 +2369,7 @@ declare const _default$51: <T extends AcceptableValue = AcceptableValue>(__VLS_p
|
|
|
2369
2369
|
}) => any;
|
|
2370
2370
|
};
|
|
2371
2371
|
emit: {};
|
|
2372
|
-
}>) =>
|
|
2372
|
+
}>) => vue69.VNode & {
|
|
2373
2373
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2374
2374
|
};
|
|
2375
2375
|
type __VLS_PrettifyLocal$7<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2410,13 +2410,13 @@ interface ConfigProviderProps {
|
|
|
2410
2410
|
*/
|
|
2411
2411
|
useId?: () => string;
|
|
2412
2412
|
}
|
|
2413
|
-
declare const _default$52: __VLS_WithSlots$226<
|
|
2413
|
+
declare const _default$52: __VLS_WithSlots$226<vue69.DefineComponent<ConfigProviderProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ConfigProviderProps> & Readonly<{}>, {
|
|
2414
2414
|
useId: () => string;
|
|
2415
2415
|
dir: Direction;
|
|
2416
|
+
nonce: string;
|
|
2416
2417
|
locale: string;
|
|
2417
2418
|
scrollBody: boolean | ScrollBodyOption;
|
|
2418
|
-
|
|
2419
|
-
}, {}, {}, {}, string, vue157.ComponentProvideOptions, false, {}, any>, {
|
|
2419
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2420
2420
|
default?: (props: {}) => any;
|
|
2421
2421
|
}>;
|
|
2422
2422
|
type __VLS_WithSlots$226<T, S> = T & {
|
|
@@ -2424,7 +2424,6 @@ type __VLS_WithSlots$226<T, S> = T & {
|
|
|
2424
2424
|
$slots: S;
|
|
2425
2425
|
};
|
|
2426
2426
|
};
|
|
2427
|
-
//# sourceMappingURL=ConfigProvider.vue.d.ts.map
|
|
2428
2427
|
//#endregion
|
|
2429
2428
|
//#region src/Menu/MenuArrow.vue.d.ts
|
|
2430
2429
|
interface MenuArrowProps extends PopperArrowProps {}
|
|
@@ -2491,16 +2490,16 @@ interface FocusScopeProps extends PrimitiveProps {
|
|
|
2491
2490
|
*/
|
|
2492
2491
|
trapped?: boolean;
|
|
2493
2492
|
}
|
|
2494
|
-
declare const _default$144: __VLS_WithSlots$225<
|
|
2493
|
+
declare const _default$144: __VLS_WithSlots$225<vue69.DefineComponent<FocusScopeProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2495
2494
|
mountAutoFocus: (event: Event) => any;
|
|
2496
2495
|
unmountAutoFocus: (event: Event) => any;
|
|
2497
|
-
}, string,
|
|
2496
|
+
}, string, vue69.PublicProps, Readonly<FocusScopeProps> & Readonly<{
|
|
2498
2497
|
onMountAutoFocus?: ((event: Event) => any) | undefined;
|
|
2499
2498
|
onUnmountAutoFocus?: ((event: Event) => any) | undefined;
|
|
2500
2499
|
}>, {
|
|
2501
2500
|
loop: boolean;
|
|
2502
2501
|
trapped: boolean;
|
|
2503
|
-
}, {}, {}, {}, string,
|
|
2502
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2504
2503
|
default?: (props: {}) => any;
|
|
2505
2504
|
}>;
|
|
2506
2505
|
type __VLS_WithSlots$225<T, S> = T & {
|
|
@@ -2640,11 +2639,11 @@ interface MenuSubTriggerProps extends MenuItemImplProps {}
|
|
|
2640
2639
|
//#endregion
|
|
2641
2640
|
//#region src/ContextMenu/ContextMenuArrow.vue.d.ts
|
|
2642
2641
|
interface ContextMenuArrowProps extends MenuArrowProps {}
|
|
2643
|
-
declare const _default$53: __VLS_WithSlots$224<
|
|
2644
|
-
as: AsTag |
|
|
2642
|
+
declare const _default$53: __VLS_WithSlots$224<vue69.DefineComponent<ContextMenuArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ContextMenuArrowProps> & Readonly<{}>, {
|
|
2643
|
+
as: AsTag | vue69.Component;
|
|
2645
2644
|
width: number;
|
|
2646
2645
|
height: number;
|
|
2647
|
-
}, {}, {}, {}, string,
|
|
2646
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2648
2647
|
default?: (props: {}) => any;
|
|
2649
2648
|
}>;
|
|
2650
2649
|
type __VLS_WithSlots$224<T, S> = T & {
|
|
@@ -2657,13 +2656,13 @@ type __VLS_WithSlots$224<T, S> = T & {
|
|
|
2657
2656
|
//#region src/ContextMenu/ContextMenuCheckboxItem.vue.d.ts
|
|
2658
2657
|
type ContextMenuCheckboxItemEmits = MenuCheckboxItemEmits;
|
|
2659
2658
|
interface ContextMenuCheckboxItemProps extends MenuCheckboxItemProps {}
|
|
2660
|
-
declare const _default$54: __VLS_WithSlots$223<
|
|
2659
|
+
declare const _default$54: __VLS_WithSlots$223<vue69.DefineComponent<ContextMenuCheckboxItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2661
2660
|
select: (event: Event) => any;
|
|
2662
2661
|
"update:modelValue": (payload: boolean) => any;
|
|
2663
|
-
}, string,
|
|
2662
|
+
}, string, vue69.PublicProps, Readonly<ContextMenuCheckboxItemProps> & Readonly<{
|
|
2664
2663
|
onSelect?: ((event: Event) => any) | undefined;
|
|
2665
2664
|
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
2666
|
-
}>, {}, {}, {}, {}, string,
|
|
2665
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2667
2666
|
default?: (props: {}) => any;
|
|
2668
2667
|
}>;
|
|
2669
2668
|
type __VLS_WithSlots$223<T, S> = T & {
|
|
@@ -2676,13 +2675,13 @@ type __VLS_WithSlots$223<T, S> = T & {
|
|
|
2676
2675
|
//#region src/ContextMenu/ContextMenuContent.vue.d.ts
|
|
2677
2676
|
type ContextMenuContentEmits = MenuContentEmits;
|
|
2678
2677
|
interface ContextMenuContentProps extends Omit<MenuContentProps, 'side' | 'sideOffset' | 'align' | 'arrowPadding' | 'updatePositionStrategy'> {}
|
|
2679
|
-
declare const _default$55: __VLS_WithSlots$222<
|
|
2678
|
+
declare const _default$55: __VLS_WithSlots$222<vue69.DefineComponent<ContextMenuContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2680
2679
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
2681
2680
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
2682
2681
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
2683
2682
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
2684
2683
|
closeAutoFocus: (event: Event) => any;
|
|
2685
|
-
}, string,
|
|
2684
|
+
}, string, vue69.PublicProps, Readonly<ContextMenuContentProps> & Readonly<{
|
|
2686
2685
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
2687
2686
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
2688
2687
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -2695,7 +2694,7 @@ declare const _default$55: __VLS_WithSlots$222<vue157.DefineComponent<ContextMen
|
|
|
2695
2694
|
collisionPadding: number | Partial<Record<Side, number>>;
|
|
2696
2695
|
sticky: "partial" | "always";
|
|
2697
2696
|
hideWhenDetached: boolean;
|
|
2698
|
-
}, {}, {}, {}, string,
|
|
2697
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2699
2698
|
default?: (props: {}) => any;
|
|
2700
2699
|
}>;
|
|
2701
2700
|
type __VLS_WithSlots$222<T, S> = T & {
|
|
@@ -2707,7 +2706,7 @@ type __VLS_WithSlots$222<T, S> = T & {
|
|
|
2707
2706
|
//#endregion
|
|
2708
2707
|
//#region src/ContextMenu/ContextMenuGroup.vue.d.ts
|
|
2709
2708
|
interface ContextMenuGroupProps extends MenuGroupProps {}
|
|
2710
|
-
declare const _default$56: __VLS_WithSlots$221<
|
|
2709
|
+
declare const _default$56: __VLS_WithSlots$221<vue69.DefineComponent<ContextMenuGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ContextMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2711
2710
|
default?: (props: {}) => any;
|
|
2712
2711
|
}>;
|
|
2713
2712
|
type __VLS_WithSlots$221<T, S> = T & {
|
|
@@ -2720,11 +2719,11 @@ type __VLS_WithSlots$221<T, S> = T & {
|
|
|
2720
2719
|
//#region src/ContextMenu/ContextMenuItem.vue.d.ts
|
|
2721
2720
|
type ContextMenuItemEmits = MenuItemEmits;
|
|
2722
2721
|
interface ContextMenuItemProps extends MenuItemProps {}
|
|
2723
|
-
declare const _default$57: __VLS_WithSlots$220<
|
|
2722
|
+
declare const _default$57: __VLS_WithSlots$220<vue69.DefineComponent<MenuItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2724
2723
|
select: (event: Event) => any;
|
|
2725
|
-
}, string,
|
|
2724
|
+
}, string, vue69.PublicProps, Readonly<MenuItemProps> & Readonly<{
|
|
2726
2725
|
onSelect?: ((event: Event) => any) | undefined;
|
|
2727
|
-
}>, {}, {}, {}, {}, string,
|
|
2726
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2728
2727
|
default?: (props: {}) => any;
|
|
2729
2728
|
}>;
|
|
2730
2729
|
type __VLS_WithSlots$220<T, S> = T & {
|
|
@@ -2736,7 +2735,7 @@ type __VLS_WithSlots$220<T, S> = T & {
|
|
|
2736
2735
|
//#endregion
|
|
2737
2736
|
//#region src/ContextMenu/ContextMenuItemIndicator.vue.d.ts
|
|
2738
2737
|
interface ContextMenuItemIndicatorProps extends MenuItemIndicatorProps {}
|
|
2739
|
-
declare const _default$58: __VLS_WithSlots$219<
|
|
2738
|
+
declare const _default$58: __VLS_WithSlots$219<vue69.DefineComponent<ContextMenuItemIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ContextMenuItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2740
2739
|
default?: (props: {}) => any;
|
|
2741
2740
|
}>;
|
|
2742
2741
|
type __VLS_WithSlots$219<T, S> = T & {
|
|
@@ -2748,7 +2747,7 @@ type __VLS_WithSlots$219<T, S> = T & {
|
|
|
2748
2747
|
//#endregion
|
|
2749
2748
|
//#region src/ContextMenu/ContextMenuLabel.vue.d.ts
|
|
2750
2749
|
interface ContextMenuLabelProps extends MenuLabelProps {}
|
|
2751
|
-
declare const _default$59: __VLS_WithSlots$218<
|
|
2750
|
+
declare const _default$59: __VLS_WithSlots$218<vue69.DefineComponent<ContextMenuLabelProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ContextMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2752
2751
|
default?: (props: {}) => any;
|
|
2753
2752
|
}>;
|
|
2754
2753
|
type __VLS_WithSlots$218<T, S> = T & {
|
|
@@ -2764,7 +2763,7 @@ declare var __VLS_6: {};
|
|
|
2764
2763
|
type __VLS_Slots = {} & {
|
|
2765
2764
|
default?: (props: typeof __VLS_6) => any;
|
|
2766
2765
|
};
|
|
2767
|
-
declare const __VLS_component:
|
|
2766
|
+
declare const __VLS_component: vue69.DefineComponent<ContextMenuPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ContextMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>;
|
|
2768
2767
|
declare const _default$60: __VLS_WithSlots$217<typeof __VLS_component, __VLS_Slots>;
|
|
2769
2768
|
type __VLS_WithSlots$217<T, S> = T & {
|
|
2770
2769
|
new (): {
|
|
@@ -2776,11 +2775,11 @@ type __VLS_WithSlots$217<T, S> = T & {
|
|
|
2776
2775
|
//#region src/ContextMenu/ContextMenuRadioGroup.vue.d.ts
|
|
2777
2776
|
type ContextMenuRadioGroupEmits = MenuRadioGroupEmits;
|
|
2778
2777
|
interface ContextMenuRadioGroupProps extends MenuRadioGroupProps {}
|
|
2779
|
-
declare const _default$61: __VLS_WithSlots$216<
|
|
2778
|
+
declare const _default$61: __VLS_WithSlots$216<vue69.DefineComponent<ContextMenuRadioGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2780
2779
|
"update:modelValue": (payload: string) => any;
|
|
2781
|
-
}, string,
|
|
2780
|
+
}, string, vue69.PublicProps, Readonly<ContextMenuRadioGroupProps> & Readonly<{
|
|
2782
2781
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
2783
|
-
}>, {}, {}, {}, {}, string,
|
|
2782
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2784
2783
|
default?: (props: {}) => any;
|
|
2785
2784
|
}>;
|
|
2786
2785
|
type __VLS_WithSlots$216<T, S> = T & {
|
|
@@ -2793,11 +2792,11 @@ type __VLS_WithSlots$216<T, S> = T & {
|
|
|
2793
2792
|
//#region src/ContextMenu/ContextMenuRadioItem.vue.d.ts
|
|
2794
2793
|
type ContextMenuRadioItemEmits = MenuItemEmits;
|
|
2795
2794
|
interface ContextMenuRadioItemProps extends MenuRadioItemProps {}
|
|
2796
|
-
declare const _default$62: __VLS_WithSlots$215<
|
|
2795
|
+
declare const _default$62: __VLS_WithSlots$215<vue69.DefineComponent<ContextMenuRadioItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2797
2796
|
select: (event: Event) => any;
|
|
2798
|
-
}, string,
|
|
2797
|
+
}, string, vue69.PublicProps, Readonly<ContextMenuRadioItemProps> & Readonly<{
|
|
2799
2798
|
onSelect?: ((event: Event) => any) | undefined;
|
|
2800
|
-
}>, {}, {}, {}, {}, string,
|
|
2799
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2801
2800
|
default?: (props: {}) => any;
|
|
2802
2801
|
}>;
|
|
2803
2802
|
type __VLS_WithSlots$215<T, S> = T & {
|
|
@@ -2818,13 +2817,13 @@ type ContextMenuRootContext = {
|
|
|
2818
2817
|
interface ContextMenuRootProps extends Omit<MenuProps, 'open'> {}
|
|
2819
2818
|
type ContextMenuRootEmits = MenuEmits;
|
|
2820
2819
|
declare const injectContextMenuRootContext: <T extends ContextMenuRootContext | null | undefined = ContextMenuRootContext>(fallback?: T | undefined) => T extends null ? ContextMenuRootContext | null : ContextMenuRootContext, provideContextMenuRootContext: (contextValue: ContextMenuRootContext) => ContextMenuRootContext;
|
|
2821
|
-
declare const _default$63: __VLS_WithSlots$214<
|
|
2820
|
+
declare const _default$63: __VLS_WithSlots$214<vue69.DefineComponent<ContextMenuRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2822
2821
|
"update:open": (payload: boolean) => any;
|
|
2823
|
-
}, string,
|
|
2822
|
+
}, string, vue69.PublicProps, Readonly<ContextMenuRootProps> & Readonly<{
|
|
2824
2823
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
2825
2824
|
}>, {
|
|
2826
2825
|
modal: boolean;
|
|
2827
|
-
}, {}, {}, {}, string,
|
|
2826
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2828
2827
|
default?: (props: {}) => any;
|
|
2829
2828
|
}>;
|
|
2830
2829
|
type __VLS_WithSlots$214<T, S> = T & {
|
|
@@ -2836,7 +2835,7 @@ type __VLS_WithSlots$214<T, S> = T & {
|
|
|
2836
2835
|
//#endregion
|
|
2837
2836
|
//#region src/ContextMenu/ContextMenuSeparator.vue.d.ts
|
|
2838
2837
|
interface ContextMenuSeparatorProps extends MenuSeparatorProps {}
|
|
2839
|
-
declare const _default$64: __VLS_WithSlots$213<
|
|
2838
|
+
declare const _default$64: __VLS_WithSlots$213<vue69.DefineComponent<ContextMenuSeparatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ContextMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2840
2839
|
default?: (props: {}) => any;
|
|
2841
2840
|
}>;
|
|
2842
2841
|
type __VLS_WithSlots$213<T, S> = T & {
|
|
@@ -2852,13 +2851,13 @@ interface ContextMenuSubProps extends MenuSubProps {
|
|
|
2852
2851
|
/** The open state of the submenu when it is initially rendered. Use when you do not need to control its open state. */
|
|
2853
2852
|
defaultOpen?: boolean;
|
|
2854
2853
|
}
|
|
2855
|
-
declare const _default$65: __VLS_WithSlots$212<
|
|
2854
|
+
declare const _default$65: __VLS_WithSlots$212<vue69.DefineComponent<ContextMenuSubProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2856
2855
|
"update:open": (payload: boolean) => any;
|
|
2857
|
-
}, string,
|
|
2856
|
+
}, string, vue69.PublicProps, Readonly<ContextMenuSubProps> & Readonly<{
|
|
2858
2857
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
2859
2858
|
}>, {
|
|
2860
2859
|
open: boolean;
|
|
2861
|
-
}, {}, {}, {}, string,
|
|
2860
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2862
2861
|
default?: (props: {
|
|
2863
2862
|
/** Current open state */
|
|
2864
2863
|
open: boolean;
|
|
@@ -2874,23 +2873,23 @@ type __VLS_WithSlots$212<T, S> = T & {
|
|
|
2874
2873
|
//#region src/ContextMenu/ContextMenuSubContent.vue.d.ts
|
|
2875
2874
|
type ContextMenuSubContentEmits = MenuSubContentEmits;
|
|
2876
2875
|
interface ContextMenuSubContentProps extends MenuSubContentProps {}
|
|
2877
|
-
declare const _default$66: __VLS_WithSlots$211<
|
|
2876
|
+
declare const _default$66: __VLS_WithSlots$211<vue69.DefineComponent<ContextMenuSubContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
2877
|
+
entryFocus: (event: Event) => any;
|
|
2878
|
+
openAutoFocus: (event: Event) => any;
|
|
2878
2879
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
2879
2880
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
2880
2881
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
2881
2882
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
2882
|
-
openAutoFocus: (event: Event) => any;
|
|
2883
2883
|
closeAutoFocus: (event: Event) => any;
|
|
2884
|
-
|
|
2885
|
-
|
|
2884
|
+
}, string, vue69.PublicProps, Readonly<ContextMenuSubContentProps> & Readonly<{
|
|
2885
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
2886
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
2886
2887
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
2887
2888
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
2888
2889
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
2889
2890
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
2890
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
2891
2891
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
2892
|
-
|
|
2893
|
-
}>, {}, {}, {}, {}, string, vue157.ComponentProvideOptions, false, {}, any>, {
|
|
2892
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2894
2893
|
default?: (props: {}) => any;
|
|
2895
2894
|
}>;
|
|
2896
2895
|
type __VLS_WithSlots$211<T, S> = T & {
|
|
@@ -2902,7 +2901,7 @@ type __VLS_WithSlots$211<T, S> = T & {
|
|
|
2902
2901
|
//#endregion
|
|
2903
2902
|
//#region src/ContextMenu/ContextMenuSubTrigger.vue.d.ts
|
|
2904
2903
|
interface ContextMenuSubTriggerProps extends MenuSubTriggerProps {}
|
|
2905
|
-
declare const _default$67: __VLS_WithSlots$210<
|
|
2904
|
+
declare const _default$67: __VLS_WithSlots$210<vue69.DefineComponent<ContextMenuSubTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ContextMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2906
2905
|
default?: (props: {}) => any;
|
|
2907
2906
|
}>;
|
|
2908
2907
|
type __VLS_WithSlots$210<T, S> = T & {
|
|
@@ -2921,10 +2920,10 @@ interface ContextMenuTriggerProps extends PrimitiveProps {
|
|
|
2921
2920
|
*/
|
|
2922
2921
|
disabled?: boolean;
|
|
2923
2922
|
}
|
|
2924
|
-
declare const _default$68: __VLS_WithSlots$209<
|
|
2925
|
-
as: AsTag |
|
|
2923
|
+
declare const _default$68: __VLS_WithSlots$209<vue69.DefineComponent<ContextMenuTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ContextMenuTriggerProps> & Readonly<{}>, {
|
|
2924
|
+
as: AsTag | vue69.Component;
|
|
2926
2925
|
disabled: boolean;
|
|
2927
|
-
}, {}, {}, {}, string,
|
|
2926
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2928
2927
|
default?: (props: {}) => any;
|
|
2929
2928
|
}>;
|
|
2930
2929
|
type __VLS_WithSlots$209<T, S> = T & {
|
|
@@ -2939,7 +2938,7 @@ interface DateFieldInputProps extends PrimitiveProps {
|
|
|
2939
2938
|
/** The part of the date to render */
|
|
2940
2939
|
part: SegmentPart;
|
|
2941
2940
|
}
|
|
2942
|
-
declare const _default$69: __VLS_WithSlots$208<
|
|
2941
|
+
declare const _default$69: __VLS_WithSlots$208<vue69.DefineComponent<DateFieldInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
2943
2942
|
default?: (props: {}) => any;
|
|
2944
2943
|
}>;
|
|
2945
2944
|
type __VLS_WithSlots$208<T, S> = T & {
|
|
@@ -3011,13 +3010,13 @@ type DateFieldRootEmits = {
|
|
|
3011
3010
|
'update:placeholder': [date: DateValue$1];
|
|
3012
3011
|
};
|
|
3013
3012
|
declare const injectDateFieldRootContext: <T extends DateFieldRootContext | null | undefined = DateFieldRootContext>(fallback?: T | undefined) => T extends null ? DateFieldRootContext | null : DateFieldRootContext, provideDateFieldRootContext: (contextValue: DateFieldRootContext) => DateFieldRootContext;
|
|
3014
|
-
declare const _default$70: __VLS_WithSlots$207<
|
|
3013
|
+
declare const _default$70: __VLS_WithSlots$207<vue69.DefineComponent<DateFieldRootProps, {
|
|
3015
3014
|
/** Helper to set the focused element inside the DateField */
|
|
3016
3015
|
setFocusedElement: (el: HTMLElement) => void;
|
|
3017
|
-
}, {}, {}, {},
|
|
3016
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
3018
3017
|
"update:modelValue": (date: DateValue$1 | undefined) => any;
|
|
3019
3018
|
"update:placeholder": (date: DateValue$1) => any;
|
|
3020
|
-
}, string,
|
|
3019
|
+
}, string, vue69.PublicProps, Readonly<DateFieldRootProps> & Readonly<{
|
|
3021
3020
|
"onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
3022
3021
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
3023
3022
|
}>, {
|
|
@@ -3026,7 +3025,7 @@ declare const _default$70: __VLS_WithSlots$207<vue157.DefineComponent<DateFieldR
|
|
|
3026
3025
|
placeholder: DateValue$1;
|
|
3027
3026
|
readonly: boolean;
|
|
3028
3027
|
isDateUnavailable: Matcher;
|
|
3029
|
-
}, {}, {}, {}, string,
|
|
3028
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3030
3029
|
default?: (props: {
|
|
3031
3030
|
/** The current date of the field */
|
|
3032
3031
|
modelValue: DateValue$1 | undefined;
|
|
@@ -3048,7 +3047,7 @@ type __VLS_WithSlots$207<T, S> = T & {
|
|
|
3048
3047
|
//#endregion
|
|
3049
3048
|
//#region src/DatePicker/DatePickerAnchor.vue.d.ts
|
|
3050
3049
|
interface DatePickerAnchorProps extends PopoverAnchorProps {}
|
|
3051
|
-
declare const _default$71: __VLS_WithSlots$206<
|
|
3050
|
+
declare const _default$71: __VLS_WithSlots$206<vue69.DefineComponent<DatePickerAnchorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3052
3051
|
default?: (props: {}) => any;
|
|
3053
3052
|
}>;
|
|
3054
3053
|
type __VLS_WithSlots$206<T, S> = T & {
|
|
@@ -3060,7 +3059,7 @@ type __VLS_WithSlots$206<T, S> = T & {
|
|
|
3060
3059
|
//#endregion
|
|
3061
3060
|
//#region src/DatePicker/DatePickerArrow.vue.d.ts
|
|
3062
3061
|
interface DatePickerArrowProps extends PopoverArrowProps {}
|
|
3063
|
-
declare const _default$72: __VLS_WithSlots$205<
|
|
3062
|
+
declare const _default$72: __VLS_WithSlots$205<vue69.DefineComponent<DatePickerArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3064
3063
|
default?: (props: {}) => any;
|
|
3065
3064
|
}>;
|
|
3066
3065
|
type __VLS_WithSlots$205<T, S> = T & {
|
|
@@ -3071,7 +3070,7 @@ type __VLS_WithSlots$205<T, S> = T & {
|
|
|
3071
3070
|
//# sourceMappingURL=DatePickerArrow.vue.d.ts.map
|
|
3072
3071
|
//#endregion
|
|
3073
3072
|
//#region src/DatePicker/DatePickerCalendar.vue.d.ts
|
|
3074
|
-
declare const _default$73: __VLS_WithSlots$204<
|
|
3073
|
+
declare const _default$73: __VLS_WithSlots$204<vue69.DefineComponent<{}, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, true, {}, any>, {
|
|
3075
3074
|
default?: (props: {
|
|
3076
3075
|
date: DateValue$1;
|
|
3077
3076
|
grid: Grid<DateValue$1>[];
|
|
@@ -3090,7 +3089,7 @@ type __VLS_WithSlots$204<T, S> = T & {
|
|
|
3090
3089
|
//#endregion
|
|
3091
3090
|
//#region src/DatePicker/DatePickerCell.vue.d.ts
|
|
3092
3091
|
interface DatePickerCellProps extends CalendarCellProps {}
|
|
3093
|
-
declare const _default$74: __VLS_WithSlots$203<
|
|
3092
|
+
declare const _default$74: __VLS_WithSlots$203<vue69.DefineComponent<DatePickerCellProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3094
3093
|
default?: (props: {}) => any;
|
|
3095
3094
|
}>;
|
|
3096
3095
|
type __VLS_WithSlots$203<T, S> = T & {
|
|
@@ -3102,7 +3101,7 @@ type __VLS_WithSlots$203<T, S> = T & {
|
|
|
3102
3101
|
//#endregion
|
|
3103
3102
|
//#region src/DatePicker/DatePickerCellTrigger.vue.d.ts
|
|
3104
3103
|
interface DatePickerCellTriggerProps extends CalendarCellTriggerProps {}
|
|
3105
|
-
declare const _default$75: __VLS_WithSlots$202<
|
|
3104
|
+
declare const _default$75: __VLS_WithSlots$202<vue69.DefineComponent<DatePickerCellTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerCellTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, CalendarCellTriggerSlot>;
|
|
3106
3105
|
type __VLS_WithSlots$202<T, S> = T & {
|
|
3107
3106
|
new (): {
|
|
3108
3107
|
$slots: S;
|
|
@@ -3112,7 +3111,7 @@ type __VLS_WithSlots$202<T, S> = T & {
|
|
|
3112
3111
|
//#endregion
|
|
3113
3112
|
//#region src/DatePicker/DatePickerClose.vue.d.ts
|
|
3114
3113
|
interface DatePickerCloseProps extends PopoverCloseProps {}
|
|
3115
|
-
declare const _default$76: __VLS_WithSlots$201<
|
|
3114
|
+
declare const _default$76: __VLS_WithSlots$201<vue69.DefineComponent<DatePickerCloseProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3116
3115
|
default?: (props: {}) => any;
|
|
3117
3116
|
}>;
|
|
3118
3117
|
type __VLS_WithSlots$201<T, S> = T & {
|
|
@@ -3129,21 +3128,21 @@ interface DatePickerContentProps extends PopoverContentProps {
|
|
|
3129
3128
|
*/
|
|
3130
3129
|
portal?: PopoverPortalProps;
|
|
3131
3130
|
}
|
|
3132
|
-
declare const _default$77: __VLS_WithSlots$200<
|
|
3131
|
+
declare const _default$77: __VLS_WithSlots$200<vue69.DefineComponent<DatePickerContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
3132
|
+
openAutoFocus: (event: Event) => any;
|
|
3133
3133
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
3134
3134
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
3135
3135
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
3136
3136
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
3137
|
-
openAutoFocus: (event: Event) => any;
|
|
3138
3137
|
closeAutoFocus: (event: Event) => any;
|
|
3139
|
-
}, string,
|
|
3138
|
+
}, string, vue69.PublicProps, Readonly<DatePickerContentProps> & Readonly<{
|
|
3139
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
3140
3140
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
3141
3141
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
3142
3142
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
3143
3143
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
3144
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
3145
3144
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
3146
|
-
}>, {}, {}, {}, {}, string,
|
|
3145
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3147
3146
|
default?: (props: {}) => any;
|
|
3148
3147
|
}>;
|
|
3149
3148
|
type __VLS_WithSlots$200<T, S> = T & {
|
|
@@ -3154,7 +3153,7 @@ type __VLS_WithSlots$200<T, S> = T & {
|
|
|
3154
3153
|
//# sourceMappingURL=DatePickerContent.vue.d.ts.map
|
|
3155
3154
|
//#endregion
|
|
3156
3155
|
//#region src/DatePicker/DatePickerField.vue.d.ts
|
|
3157
|
-
declare const _default$78: __VLS_WithSlots$199<
|
|
3156
|
+
declare const _default$78: __VLS_WithSlots$199<vue69.DefineComponent<{}, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, true, {}, any>, {
|
|
3158
3157
|
default?: (props: {
|
|
3159
3158
|
segments: {
|
|
3160
3159
|
part: SegmentPart;
|
|
@@ -3172,7 +3171,7 @@ type __VLS_WithSlots$199<T, S> = T & {
|
|
|
3172
3171
|
//#endregion
|
|
3173
3172
|
//#region src/DatePicker/DatePickerGrid.vue.d.ts
|
|
3174
3173
|
interface DatePickerGridProps extends CalendarGridProps {}
|
|
3175
|
-
declare const _default$79: __VLS_WithSlots$198<
|
|
3174
|
+
declare const _default$79: __VLS_WithSlots$198<vue69.DefineComponent<DatePickerGridProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerGridProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3176
3175
|
default?: (props: {}) => any;
|
|
3177
3176
|
}>;
|
|
3178
3177
|
type __VLS_WithSlots$198<T, S> = T & {
|
|
@@ -3184,7 +3183,7 @@ type __VLS_WithSlots$198<T, S> = T & {
|
|
|
3184
3183
|
//#endregion
|
|
3185
3184
|
//#region src/DatePicker/DatePickerGridBody.vue.d.ts
|
|
3186
3185
|
interface DatePickerGridBodyProps extends CalendarGridBodyProps {}
|
|
3187
|
-
declare const _default$80: __VLS_WithSlots$197<
|
|
3186
|
+
declare const _default$80: __VLS_WithSlots$197<vue69.DefineComponent<DatePickerGridBodyProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerGridBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3188
3187
|
default?: (props: {}) => any;
|
|
3189
3188
|
}>;
|
|
3190
3189
|
type __VLS_WithSlots$197<T, S> = T & {
|
|
@@ -3196,7 +3195,7 @@ type __VLS_WithSlots$197<T, S> = T & {
|
|
|
3196
3195
|
//#endregion
|
|
3197
3196
|
//#region src/DatePicker/DatePickerGridHead.vue.d.ts
|
|
3198
3197
|
interface DatePickerGridHeadProps extends CalendarGridHeadProps {}
|
|
3199
|
-
declare const _default$81: __VLS_WithSlots$196<
|
|
3198
|
+
declare const _default$81: __VLS_WithSlots$196<vue69.DefineComponent<DatePickerGridHeadProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerGridHeadProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3200
3199
|
default?: (props: {}) => any;
|
|
3201
3200
|
}>;
|
|
3202
3201
|
type __VLS_WithSlots$196<T, S> = T & {
|
|
@@ -3208,7 +3207,7 @@ type __VLS_WithSlots$196<T, S> = T & {
|
|
|
3208
3207
|
//#endregion
|
|
3209
3208
|
//#region src/DatePicker/DatePickerGridRow.vue.d.ts
|
|
3210
3209
|
interface DatePickerGridRowProps extends CalendarGridRowProps {}
|
|
3211
|
-
declare const _default$82: __VLS_WithSlots$195<
|
|
3210
|
+
declare const _default$82: __VLS_WithSlots$195<vue69.DefineComponent<DatePickerGridRowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerGridRowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3212
3211
|
default?: (props: {}) => any;
|
|
3213
3212
|
}>;
|
|
3214
3213
|
type __VLS_WithSlots$195<T, S> = T & {
|
|
@@ -3220,7 +3219,7 @@ type __VLS_WithSlots$195<T, S> = T & {
|
|
|
3220
3219
|
//#endregion
|
|
3221
3220
|
//#region src/DatePicker/DatePickerHeadCell.vue.d.ts
|
|
3222
3221
|
interface DatePickerHeadCellProps extends CalendarHeadCellProps {}
|
|
3223
|
-
declare const _default$83: __VLS_WithSlots$194<
|
|
3222
|
+
declare const _default$83: __VLS_WithSlots$194<vue69.DefineComponent<DatePickerHeadCellProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerHeadCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3224
3223
|
default?: (props: {}) => any;
|
|
3225
3224
|
}>;
|
|
3226
3225
|
type __VLS_WithSlots$194<T, S> = T & {
|
|
@@ -3232,7 +3231,7 @@ type __VLS_WithSlots$194<T, S> = T & {
|
|
|
3232
3231
|
//#endregion
|
|
3233
3232
|
//#region src/DatePicker/DatePickerHeader.vue.d.ts
|
|
3234
3233
|
interface DatePickerHeaderProps extends CalendarHeaderProps {}
|
|
3235
|
-
declare const _default$84: __VLS_WithSlots$193<
|
|
3234
|
+
declare const _default$84: __VLS_WithSlots$193<vue69.DefineComponent<DatePickerHeaderProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3236
3235
|
default?: (props: {}) => any;
|
|
3237
3236
|
}>;
|
|
3238
3237
|
type __VLS_WithSlots$193<T, S> = T & {
|
|
@@ -3244,7 +3243,7 @@ type __VLS_WithSlots$193<T, S> = T & {
|
|
|
3244
3243
|
//#endregion
|
|
3245
3244
|
//#region src/DatePicker/DatePickerHeading.vue.d.ts
|
|
3246
3245
|
interface DatePickerHeadingProps extends CalendarHeadingProps {}
|
|
3247
|
-
declare const _default$85: __VLS_WithSlots$192<
|
|
3246
|
+
declare const _default$85: __VLS_WithSlots$192<vue69.DefineComponent<DatePickerHeadingProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerHeadingProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3248
3247
|
default?: (props: {
|
|
3249
3248
|
/** Current month and year */
|
|
3250
3249
|
headingValue: string;
|
|
@@ -3259,7 +3258,7 @@ type __VLS_WithSlots$192<T, S> = T & {
|
|
|
3259
3258
|
//#endregion
|
|
3260
3259
|
//#region src/DatePicker/DatePickerInput.vue.d.ts
|
|
3261
3260
|
interface DatePickerInputProps extends DateFieldInputProps {}
|
|
3262
|
-
declare const _default$86: __VLS_WithSlots$191<
|
|
3261
|
+
declare const _default$86: __VLS_WithSlots$191<vue69.DefineComponent<DatePickerInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3263
3262
|
default?: (props: {}) => any;
|
|
3264
3263
|
}>;
|
|
3265
3264
|
type __VLS_WithSlots$191<T, S> = T & {
|
|
@@ -3271,7 +3270,7 @@ type __VLS_WithSlots$191<T, S> = T & {
|
|
|
3271
3270
|
//#endregion
|
|
3272
3271
|
//#region src/DatePicker/DatePickerNext.vue.d.ts
|
|
3273
3272
|
interface DatePickerNextProps extends CalendarNextProps {}
|
|
3274
|
-
declare const _default$87: __VLS_WithSlots$190<
|
|
3273
|
+
declare const _default$87: __VLS_WithSlots$190<vue69.DefineComponent<DatePickerNextProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, CalendarNextSlot>;
|
|
3275
3274
|
type __VLS_WithSlots$190<T, S> = T & {
|
|
3276
3275
|
new (): {
|
|
3277
3276
|
$slots: S;
|
|
@@ -3281,7 +3280,7 @@ type __VLS_WithSlots$190<T, S> = T & {
|
|
|
3281
3280
|
//#endregion
|
|
3282
3281
|
//#region src/DatePicker/DatePickerPrev.vue.d.ts
|
|
3283
3282
|
interface DatePickerPrevProps extends CalendarPrevProps {}
|
|
3284
|
-
declare const _default$88: __VLS_WithSlots$189<
|
|
3283
|
+
declare const _default$88: __VLS_WithSlots$189<vue69.DefineComponent<DatePickerPrevProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, CalendarPrevSlot>;
|
|
3285
3284
|
type __VLS_WithSlots$189<T, S> = T & {
|
|
3286
3285
|
new (): {
|
|
3287
3286
|
$slots: S;
|
|
@@ -3329,32 +3328,32 @@ type DatePickerRootEmits = {
|
|
|
3329
3328
|
'update:placeholder': [date: DateValue$1];
|
|
3330
3329
|
};
|
|
3331
3330
|
declare const injectDatePickerRootContext: <T extends DatePickerRootContext | null | undefined = DatePickerRootContext>(fallback?: T | undefined) => T extends null ? DatePickerRootContext | null : DatePickerRootContext, provideDatePickerRootContext: (contextValue: DatePickerRootContext) => DatePickerRootContext;
|
|
3332
|
-
declare const _default$89: __VLS_WithSlots$188<
|
|
3333
|
-
"update:modelValue": (date: DateValue$1 | undefined) => any;
|
|
3331
|
+
declare const _default$89: __VLS_WithSlots$188<vue69.DefineComponent<DatePickerRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
3334
3332
|
"update:open": (value: boolean) => any;
|
|
3333
|
+
"update:modelValue": (date: DateValue$1 | undefined) => any;
|
|
3335
3334
|
"update:placeholder": (date: DateValue$1) => any;
|
|
3336
|
-
}, string,
|
|
3337
|
-
"onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
3335
|
+
}, string, vue69.PublicProps, Readonly<DatePickerRootProps> & Readonly<{
|
|
3338
3336
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
3337
|
+
"onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
3339
3338
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
3340
3339
|
}>, {
|
|
3341
|
-
|
|
3340
|
+
defaultOpen: boolean;
|
|
3341
|
+
open: boolean;
|
|
3342
3342
|
disabled: boolean;
|
|
3343
3343
|
defaultValue: DateValue$1;
|
|
3344
|
-
modal: boolean;
|
|
3345
|
-
open: boolean;
|
|
3346
|
-
defaultOpen: boolean;
|
|
3347
3344
|
placeholder: DateValue$1;
|
|
3348
|
-
readonly: boolean;
|
|
3349
|
-
isDateUnavailable: Matcher;
|
|
3350
3345
|
pagedNavigation: boolean;
|
|
3351
3346
|
preventDeselect: boolean;
|
|
3352
3347
|
weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
3353
3348
|
weekdayFormat: WeekDayFormat;
|
|
3354
3349
|
fixedWeeks: boolean;
|
|
3350
|
+
locale: string;
|
|
3355
3351
|
numberOfMonths: number;
|
|
3352
|
+
readonly: boolean;
|
|
3356
3353
|
isDateDisabled: Matcher;
|
|
3357
|
-
|
|
3354
|
+
isDateUnavailable: Matcher;
|
|
3355
|
+
modal: boolean;
|
|
3356
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3358
3357
|
default?: (props: {}) => any;
|
|
3359
3358
|
}>;
|
|
3360
3359
|
type __VLS_WithSlots$188<T, S> = T & {
|
|
@@ -3366,7 +3365,7 @@ type __VLS_WithSlots$188<T, S> = T & {
|
|
|
3366
3365
|
//#endregion
|
|
3367
3366
|
//#region src/DatePicker/DatePickerTrigger.vue.d.ts
|
|
3368
3367
|
interface DatePickerTriggerProps extends PopoverTriggerProps {}
|
|
3369
|
-
declare const _default$90: __VLS_WithSlots$187<
|
|
3368
|
+
declare const _default$90: __VLS_WithSlots$187<vue69.DefineComponent<DatePickerTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DatePickerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3370
3369
|
default?: (props: {}) => any;
|
|
3371
3370
|
}>;
|
|
3372
3371
|
type __VLS_WithSlots$187<T, S> = T & {
|
|
@@ -3446,12 +3445,12 @@ type DateRangeFieldRootEmits = {
|
|
|
3446
3445
|
'update:placeholder': [date: DateValue$1];
|
|
3447
3446
|
};
|
|
3448
3447
|
declare const injectDateRangeFieldRootContext: <T extends DateRangeFieldRootContext | null | undefined = DateRangeFieldRootContext>(fallback?: T | undefined) => T extends null ? DateRangeFieldRootContext | null : DateRangeFieldRootContext, provideDateRangeFieldRootContext: (contextValue: DateRangeFieldRootContext) => DateRangeFieldRootContext;
|
|
3449
|
-
declare const _default$92: __VLS_WithSlots$186<
|
|
3448
|
+
declare const _default$92: __VLS_WithSlots$186<vue69.DefineComponent<DateRangeFieldRootProps, {
|
|
3450
3449
|
setFocusedElement: (el: HTMLElement) => void;
|
|
3451
|
-
}, {}, {}, {},
|
|
3450
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
3452
3451
|
"update:modelValue": (args_0: DateRange) => any;
|
|
3453
3452
|
"update:placeholder": (date: DateValue$1) => any;
|
|
3454
|
-
}, string,
|
|
3453
|
+
}, string, vue69.PublicProps, Readonly<DateRangeFieldRootProps> & Readonly<{
|
|
3455
3454
|
"onUpdate:modelValue"?: ((args_0: DateRange) => any) | undefined;
|
|
3456
3455
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
3457
3456
|
}>, {
|
|
@@ -3460,7 +3459,7 @@ declare const _default$92: __VLS_WithSlots$186<vue157.DefineComponent<DateRangeF
|
|
|
3460
3459
|
placeholder: DateValue$1;
|
|
3461
3460
|
readonly: boolean;
|
|
3462
3461
|
isDateUnavailable: Matcher;
|
|
3463
|
-
}, {}, {}, {}, string,
|
|
3462
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3464
3463
|
default?: (props: {
|
|
3465
3464
|
modelValue: DateRange | null;
|
|
3466
3465
|
segments: {
|
|
@@ -3489,7 +3488,7 @@ interface DateRangeFieldInputProps extends PrimitiveProps {
|
|
|
3489
3488
|
/** The type of field to render (start or end) */
|
|
3490
3489
|
type: DateRangeType;
|
|
3491
3490
|
}
|
|
3492
|
-
declare const _default$91: __VLS_WithSlots$185<
|
|
3491
|
+
declare const _default$91: __VLS_WithSlots$185<vue69.DefineComponent<DateRangeFieldInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangeFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3493
3492
|
default?: (props: {}) => any;
|
|
3494
3493
|
}>;
|
|
3495
3494
|
type __VLS_WithSlots$185<T, S> = T & {
|
|
@@ -3501,7 +3500,7 @@ type __VLS_WithSlots$185<T, S> = T & {
|
|
|
3501
3500
|
//#endregion
|
|
3502
3501
|
//#region src/DateRangePicker/DateRangePickerAnchor.vue.d.ts
|
|
3503
3502
|
interface DateRangePickerAnchorProps extends PopoverAnchorProps {}
|
|
3504
|
-
declare const _default$93: __VLS_WithSlots$184<
|
|
3503
|
+
declare const _default$93: __VLS_WithSlots$184<vue69.DefineComponent<DateRangePickerAnchorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3505
3504
|
default?: (props: {}) => any;
|
|
3506
3505
|
}>;
|
|
3507
3506
|
type __VLS_WithSlots$184<T, S> = T & {
|
|
@@ -3513,7 +3512,7 @@ type __VLS_WithSlots$184<T, S> = T & {
|
|
|
3513
3512
|
//#endregion
|
|
3514
3513
|
//#region src/DateRangePicker/DateRangePickerArrow.vue.d.ts
|
|
3515
3514
|
interface DateRangePickerArrowProps extends PopoverArrowProps {}
|
|
3516
|
-
declare const _default$94: __VLS_WithSlots$183<
|
|
3515
|
+
declare const _default$94: __VLS_WithSlots$183<vue69.DefineComponent<DateRangePickerArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3517
3516
|
default?: (props: {}) => any;
|
|
3518
3517
|
}>;
|
|
3519
3518
|
type __VLS_WithSlots$183<T, S> = T & {
|
|
@@ -3524,10 +3523,10 @@ type __VLS_WithSlots$183<T, S> = T & {
|
|
|
3524
3523
|
//# sourceMappingURL=DateRangePickerArrow.vue.d.ts.map
|
|
3525
3524
|
//#endregion
|
|
3526
3525
|
//#region src/DateRangePicker/DateRangePickerCalendar.vue.d.ts
|
|
3527
|
-
declare const _default$95: __VLS_WithSlots$182<
|
|
3526
|
+
declare const _default$95: __VLS_WithSlots$182<vue69.DefineComponent<{}, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, true, {}, any>, {
|
|
3528
3527
|
default?: (props: {
|
|
3529
|
-
date:
|
|
3530
|
-
grid: Grid<
|
|
3528
|
+
date: _internationalized_date936.DateValue;
|
|
3529
|
+
grid: Grid<_internationalized_date936.DateValue>[];
|
|
3531
3530
|
weekDays: string[];
|
|
3532
3531
|
weekStartsOn: 0 | 5 | 1 | 3 | 2 | 4 | 6;
|
|
3533
3532
|
locale: string;
|
|
@@ -3543,7 +3542,7 @@ type __VLS_WithSlots$182<T, S> = T & {
|
|
|
3543
3542
|
//#endregion
|
|
3544
3543
|
//#region src/DateRangePicker/DateRangePickerCell.vue.d.ts
|
|
3545
3544
|
interface DateRangePickerCellProps extends RangeCalendarCellProps {}
|
|
3546
|
-
declare const _default$96: __VLS_WithSlots$181<
|
|
3545
|
+
declare const _default$96: __VLS_WithSlots$181<vue69.DefineComponent<DateRangePickerCellProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3547
3546
|
default?: (props: {}) => any;
|
|
3548
3547
|
}>;
|
|
3549
3548
|
type __VLS_WithSlots$181<T, S> = T & {
|
|
@@ -3586,9 +3585,9 @@ interface RangeCalendarCellTriggerSlot {
|
|
|
3586
3585
|
selectionEnd: boolean;
|
|
3587
3586
|
}) => any;
|
|
3588
3587
|
}
|
|
3589
|
-
declare const _default$213: __VLS_WithSlots$180<
|
|
3590
|
-
as: AsTag |
|
|
3591
|
-
}, {}, {}, {}, string,
|
|
3588
|
+
declare const _default$213: __VLS_WithSlots$180<vue69.DefineComponent<RangeCalendarCellTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarCellTriggerProps> & Readonly<{}>, {
|
|
3589
|
+
as: AsTag | vue69.Component;
|
|
3590
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, RangeCalendarCellTriggerSlot>;
|
|
3592
3591
|
type __VLS_WithSlots$180<T, S> = T & {
|
|
3593
3592
|
new (): {
|
|
3594
3593
|
$slots: S;
|
|
@@ -3598,7 +3597,7 @@ type __VLS_WithSlots$180<T, S> = T & {
|
|
|
3598
3597
|
//#endregion
|
|
3599
3598
|
//#region src/DateRangePicker/DateRangePickerCellTrigger.vue.d.ts
|
|
3600
3599
|
interface DateRangePickerCellTriggerProps extends RangeCalendarCellTriggerProps {}
|
|
3601
|
-
declare const _default$97: __VLS_WithSlots$179<
|
|
3600
|
+
declare const _default$97: __VLS_WithSlots$179<vue69.DefineComponent<DateRangePickerCellTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerCellTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, RangeCalendarCellTriggerSlot>;
|
|
3602
3601
|
type __VLS_WithSlots$179<T, S> = T & {
|
|
3603
3602
|
new (): {
|
|
3604
3603
|
$slots: S;
|
|
@@ -3608,7 +3607,7 @@ type __VLS_WithSlots$179<T, S> = T & {
|
|
|
3608
3607
|
//#endregion
|
|
3609
3608
|
//#region src/DateRangePicker/DateRangePickerClose.vue.d.ts
|
|
3610
3609
|
interface DateRangePickerCloseProps extends PopoverCloseProps {}
|
|
3611
|
-
declare const _default$98: __VLS_WithSlots$178<
|
|
3610
|
+
declare const _default$98: __VLS_WithSlots$178<vue69.DefineComponent<DateRangePickerCloseProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3612
3611
|
default?: (props: {}) => any;
|
|
3613
3612
|
}>;
|
|
3614
3613
|
type __VLS_WithSlots$178<T, S> = T & {
|
|
@@ -3625,21 +3624,21 @@ interface DateRangePickerContentProps extends PopoverContentProps {
|
|
|
3625
3624
|
*/
|
|
3626
3625
|
portal?: PopoverPortalProps;
|
|
3627
3626
|
}
|
|
3628
|
-
declare const _default$99: __VLS_WithSlots$177<
|
|
3627
|
+
declare const _default$99: __VLS_WithSlots$177<vue69.DefineComponent<DateRangePickerContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
3628
|
+
openAutoFocus: (event: Event) => any;
|
|
3629
3629
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
3630
3630
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
3631
3631
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
3632
3632
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
3633
|
-
openAutoFocus: (event: Event) => any;
|
|
3634
3633
|
closeAutoFocus: (event: Event) => any;
|
|
3635
|
-
}, string,
|
|
3634
|
+
}, string, vue69.PublicProps, Readonly<DateRangePickerContentProps> & Readonly<{
|
|
3635
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
3636
3636
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
3637
3637
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
3638
3638
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
3639
3639
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
3640
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
3641
3640
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
3642
|
-
}>, {}, {}, {}, {}, string,
|
|
3641
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3643
3642
|
default?: (props: {}) => any;
|
|
3644
3643
|
}>;
|
|
3645
3644
|
type __VLS_WithSlots$177<T, S> = T & {
|
|
@@ -3650,7 +3649,7 @@ type __VLS_WithSlots$177<T, S> = T & {
|
|
|
3650
3649
|
//# sourceMappingURL=DateRangePickerContent.vue.d.ts.map
|
|
3651
3650
|
//#endregion
|
|
3652
3651
|
//#region src/DateRangePicker/DateRangePickerField.vue.d.ts
|
|
3653
|
-
declare const _default$100: __VLS_WithSlots$176<
|
|
3652
|
+
declare const _default$100: __VLS_WithSlots$176<vue69.DefineComponent<{}, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, true, {}, any>, {
|
|
3654
3653
|
default?: (props: {
|
|
3655
3654
|
segments: {
|
|
3656
3655
|
start: {
|
|
@@ -3674,7 +3673,7 @@ type __VLS_WithSlots$176<T, S> = T & {
|
|
|
3674
3673
|
//#endregion
|
|
3675
3674
|
//#region src/DateRangePicker/DateRangePickerGrid.vue.d.ts
|
|
3676
3675
|
interface DateRangePickerGridProps extends RangeCalendarGridProps {}
|
|
3677
|
-
declare const _default$101: __VLS_WithSlots$175<
|
|
3676
|
+
declare const _default$101: __VLS_WithSlots$175<vue69.DefineComponent<DateRangePickerGridProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerGridProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3678
3677
|
default?: (props: {}) => any;
|
|
3679
3678
|
}>;
|
|
3680
3679
|
type __VLS_WithSlots$175<T, S> = T & {
|
|
@@ -3686,7 +3685,7 @@ type __VLS_WithSlots$175<T, S> = T & {
|
|
|
3686
3685
|
//#endregion
|
|
3687
3686
|
//#region src/DateRangePicker/DateRangePickerGridBody.vue.d.ts
|
|
3688
3687
|
interface DateRangePickerGridBodyProps extends RangeCalendarGridBodyProps {}
|
|
3689
|
-
declare const _default$102: __VLS_WithSlots$174<
|
|
3688
|
+
declare const _default$102: __VLS_WithSlots$174<vue69.DefineComponent<DateRangePickerGridBodyProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerGridBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3690
3689
|
default?: (props: {}) => any;
|
|
3691
3690
|
}>;
|
|
3692
3691
|
type __VLS_WithSlots$174<T, S> = T & {
|
|
@@ -3698,7 +3697,7 @@ type __VLS_WithSlots$174<T, S> = T & {
|
|
|
3698
3697
|
//#endregion
|
|
3699
3698
|
//#region src/DateRangePicker/DateRangePickerGridHead.vue.d.ts
|
|
3700
3699
|
interface DateRangePickerGridHeadProps extends RangeCalendarGridHeadProps {}
|
|
3701
|
-
declare const _default$103: __VLS_WithSlots$173<
|
|
3700
|
+
declare const _default$103: __VLS_WithSlots$173<vue69.DefineComponent<DateRangePickerGridHeadProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerGridHeadProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3702
3701
|
default?: (props: {}) => any;
|
|
3703
3702
|
}>;
|
|
3704
3703
|
type __VLS_WithSlots$173<T, S> = T & {
|
|
@@ -3710,7 +3709,7 @@ type __VLS_WithSlots$173<T, S> = T & {
|
|
|
3710
3709
|
//#endregion
|
|
3711
3710
|
//#region src/DateRangePicker/DateRangePickerGridRow.vue.d.ts
|
|
3712
3711
|
interface DateRangePickerGridRowProps extends RangeCalendarGridRowProps {}
|
|
3713
|
-
declare const _default$104: __VLS_WithSlots$172<
|
|
3712
|
+
declare const _default$104: __VLS_WithSlots$172<vue69.DefineComponent<DateRangePickerGridRowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerGridRowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3714
3713
|
default?: (props: {}) => any;
|
|
3715
3714
|
}>;
|
|
3716
3715
|
type __VLS_WithSlots$172<T, S> = T & {
|
|
@@ -3722,7 +3721,7 @@ type __VLS_WithSlots$172<T, S> = T & {
|
|
|
3722
3721
|
//#endregion
|
|
3723
3722
|
//#region src/DateRangePicker/DateRangePickerHeadCell.vue.d.ts
|
|
3724
3723
|
interface DateRangePickerHeadCellProps extends RangeCalendarHeadCellProps {}
|
|
3725
|
-
declare const _default$105: __VLS_WithSlots$171<
|
|
3724
|
+
declare const _default$105: __VLS_WithSlots$171<vue69.DefineComponent<DateRangePickerHeadCellProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerHeadCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3726
3725
|
default?: (props: {}) => any;
|
|
3727
3726
|
}>;
|
|
3728
3727
|
type __VLS_WithSlots$171<T, S> = T & {
|
|
@@ -3734,7 +3733,7 @@ type __VLS_WithSlots$171<T, S> = T & {
|
|
|
3734
3733
|
//#endregion
|
|
3735
3734
|
//#region src/DateRangePicker/DateRangePickerHeader.vue.d.ts
|
|
3736
3735
|
interface DateRangePickerHeaderProps extends RangeCalendarHeaderProps {}
|
|
3737
|
-
declare const _default$106: __VLS_WithSlots$170<
|
|
3736
|
+
declare const _default$106: __VLS_WithSlots$170<vue69.DefineComponent<DateRangePickerHeaderProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3738
3737
|
default?: (props: {}) => any;
|
|
3739
3738
|
}>;
|
|
3740
3739
|
type __VLS_WithSlots$170<T, S> = T & {
|
|
@@ -3746,7 +3745,7 @@ type __VLS_WithSlots$170<T, S> = T & {
|
|
|
3746
3745
|
//#endregion
|
|
3747
3746
|
//#region src/DateRangePicker/DateRangePickerHeading.vue.d.ts
|
|
3748
3747
|
interface DateRangePickerHeadingProps extends RangeCalendarHeadingProps {}
|
|
3749
|
-
declare const _default$107: __VLS_WithSlots$169<
|
|
3748
|
+
declare const _default$107: __VLS_WithSlots$169<vue69.DefineComponent<DateRangePickerHeadingProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerHeadingProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3750
3749
|
default?: (props: {
|
|
3751
3750
|
/** Current month and year */
|
|
3752
3751
|
headingValue: string;
|
|
@@ -3761,7 +3760,7 @@ type __VLS_WithSlots$169<T, S> = T & {
|
|
|
3761
3760
|
//#endregion
|
|
3762
3761
|
//#region src/DateRangePicker/DateRangePickerInput.vue.d.ts
|
|
3763
3762
|
interface DateRangePickerInputProps extends DateRangeFieldInputProps {}
|
|
3764
|
-
declare const _default$108: __VLS_WithSlots$168<
|
|
3763
|
+
declare const _default$108: __VLS_WithSlots$168<vue69.DefineComponent<DateRangePickerInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3765
3764
|
default?: (props: {}) => any;
|
|
3766
3765
|
}>;
|
|
3767
3766
|
type __VLS_WithSlots$168<T, S> = T & {
|
|
@@ -3782,9 +3781,9 @@ interface RangeCalendarNextSlot {
|
|
|
3782
3781
|
disabled: boolean;
|
|
3783
3782
|
}) => any;
|
|
3784
3783
|
}
|
|
3785
|
-
declare const _default$221: __VLS_WithSlots$167<
|
|
3786
|
-
as: AsTag |
|
|
3787
|
-
}, {}, {}, {}, string,
|
|
3784
|
+
declare const _default$221: __VLS_WithSlots$167<vue69.DefineComponent<RangeCalendarNextProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarNextProps> & Readonly<{}>, {
|
|
3785
|
+
as: AsTag | vue69.Component;
|
|
3786
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, RangeCalendarNextSlot>;
|
|
3788
3787
|
type __VLS_WithSlots$167<T, S> = T & {
|
|
3789
3788
|
new (): {
|
|
3790
3789
|
$slots: S;
|
|
@@ -3794,7 +3793,7 @@ type __VLS_WithSlots$167<T, S> = T & {
|
|
|
3794
3793
|
//#endregion
|
|
3795
3794
|
//#region src/DateRangePicker/DateRangePickerNext.vue.d.ts
|
|
3796
3795
|
interface DateRangePickerNextProps extends RangeCalendarNextProps {}
|
|
3797
|
-
declare const _default$109: __VLS_WithSlots$166<
|
|
3796
|
+
declare const _default$109: __VLS_WithSlots$166<vue69.DefineComponent<DateRangePickerNextProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, RangeCalendarNextSlot>;
|
|
3798
3797
|
type __VLS_WithSlots$166<T, S> = T & {
|
|
3799
3798
|
new (): {
|
|
3800
3799
|
$slots: S;
|
|
@@ -3813,9 +3812,9 @@ interface RangeCalendarPrevSlot {
|
|
|
3813
3812
|
disabled: boolean;
|
|
3814
3813
|
}) => any;
|
|
3815
3814
|
}
|
|
3816
|
-
declare const _default$222: __VLS_WithSlots$165<
|
|
3817
|
-
as: AsTag |
|
|
3818
|
-
}, {}, {}, {}, string,
|
|
3815
|
+
declare const _default$222: __VLS_WithSlots$165<vue69.DefineComponent<RangeCalendarPrevProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarPrevProps> & Readonly<{}>, {
|
|
3816
|
+
as: AsTag | vue69.Component;
|
|
3817
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, RangeCalendarPrevSlot>;
|
|
3819
3818
|
type __VLS_WithSlots$165<T, S> = T & {
|
|
3820
3819
|
new (): {
|
|
3821
3820
|
$slots: S;
|
|
@@ -3825,7 +3824,7 @@ type __VLS_WithSlots$165<T, S> = T & {
|
|
|
3825
3824
|
//#endregion
|
|
3826
3825
|
//#region src/DateRangePicker/DateRangePickerPrev.vue.d.ts
|
|
3827
3826
|
interface DateRangePickerPrevProps extends RangeCalendarPrevProps {}
|
|
3828
|
-
declare const _default$110: __VLS_WithSlots$164<
|
|
3827
|
+
declare const _default$110: __VLS_WithSlots$164<vue69.DefineComponent<DateRangePickerPrevProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, RangeCalendarPrevSlot>;
|
|
3829
3828
|
type __VLS_WithSlots$164<T, S> = T & {
|
|
3830
3829
|
new (): {
|
|
3831
3830
|
$slots: S;
|
|
@@ -3883,37 +3882,37 @@ type DateRangePickerRootEmits = {
|
|
|
3883
3882
|
'update:startValue': [date: DateValue$1 | undefined];
|
|
3884
3883
|
};
|
|
3885
3884
|
declare const injectDateRangePickerRootContext: <T extends DateRangePickerRootContext | null | undefined = DateRangePickerRootContext>(fallback?: T | undefined) => T extends null ? DateRangePickerRootContext | null : DateRangePickerRootContext, provideDateRangePickerRootContext: (contextValue: DateRangePickerRootContext) => DateRangePickerRootContext;
|
|
3886
|
-
declare const _default$111: __VLS_WithSlots$163<
|
|
3887
|
-
"update:modelValue": (date: DateRange) => any;
|
|
3885
|
+
declare const _default$111: __VLS_WithSlots$163<vue69.DefineComponent<DateRangePickerRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
3888
3886
|
"update:open": (value: boolean) => any;
|
|
3887
|
+
"update:modelValue": (date: DateRange) => any;
|
|
3889
3888
|
"update:placeholder": (date: DateValue$1) => any;
|
|
3890
3889
|
"update:startValue": (date: DateValue$1 | undefined) => any;
|
|
3891
|
-
}, string,
|
|
3892
|
-
"onUpdate:modelValue"?: ((date: DateRange) => any) | undefined;
|
|
3890
|
+
}, string, vue69.PublicProps, Readonly<DateRangePickerRootProps> & Readonly<{
|
|
3893
3891
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
3892
|
+
"onUpdate:modelValue"?: ((date: DateRange) => any) | undefined;
|
|
3894
3893
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
3895
3894
|
"onUpdate:startValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
3896
3895
|
}>, {
|
|
3897
|
-
|
|
3896
|
+
defaultOpen: boolean;
|
|
3897
|
+
open: boolean;
|
|
3898
3898
|
disabled: boolean;
|
|
3899
3899
|
defaultValue: DateRange;
|
|
3900
|
-
modal: boolean;
|
|
3901
|
-
open: boolean;
|
|
3902
|
-
defaultOpen: boolean;
|
|
3903
3900
|
placeholder: DateValue$1;
|
|
3904
|
-
readonly: boolean;
|
|
3905
|
-
isDateUnavailable: Matcher;
|
|
3906
3901
|
pagedNavigation: boolean;
|
|
3907
3902
|
preventDeselect: boolean;
|
|
3908
3903
|
weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
3909
3904
|
weekdayFormat: WeekDayFormat;
|
|
3910
3905
|
fixedWeeks: boolean;
|
|
3906
|
+
locale: string;
|
|
3911
3907
|
numberOfMonths: number;
|
|
3908
|
+
readonly: boolean;
|
|
3912
3909
|
isDateDisabled: Matcher;
|
|
3910
|
+
isDateUnavailable: Matcher;
|
|
3911
|
+
modal: boolean;
|
|
3912
|
+
isDateHighlightable: Matcher;
|
|
3913
3913
|
allowNonContiguousRanges: boolean;
|
|
3914
3914
|
maximumDays: number;
|
|
3915
|
-
|
|
3916
|
-
}, {}, {}, {}, string, vue157.ComponentProvideOptions, false, {}, any>, {
|
|
3915
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3917
3916
|
default?: (props: {
|
|
3918
3917
|
modelValue: DateRange;
|
|
3919
3918
|
open: boolean;
|
|
@@ -3928,7 +3927,7 @@ type __VLS_WithSlots$163<T, S> = T & {
|
|
|
3928
3927
|
//#endregion
|
|
3929
3928
|
//#region src/DateRangePicker/DateRangePickerTrigger.vue.d.ts
|
|
3930
3929
|
interface DateRangePickerTriggerProps extends PopoverTriggerProps {}
|
|
3931
|
-
declare const _default$112: __VLS_WithSlots$162<
|
|
3930
|
+
declare const _default$112: __VLS_WithSlots$162<vue69.DefineComponent<DateRangePickerTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DateRangePickerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3932
3931
|
default?: (props: {}) => any;
|
|
3933
3932
|
}>;
|
|
3934
3933
|
type __VLS_WithSlots$162<T, S> = T & {
|
|
@@ -3940,11 +3939,11 @@ type __VLS_WithSlots$162<T, S> = T & {
|
|
|
3940
3939
|
//#endregion
|
|
3941
3940
|
//#region src/DropdownMenu/DropdownMenuArrow.vue.d.ts
|
|
3942
3941
|
interface DropdownMenuArrowProps extends MenuArrowProps {}
|
|
3943
|
-
declare const _default$121: __VLS_WithSlots$161<
|
|
3944
|
-
as: AsTag |
|
|
3942
|
+
declare const _default$121: __VLS_WithSlots$161<vue69.DefineComponent<DropdownMenuArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DropdownMenuArrowProps> & Readonly<{}>, {
|
|
3943
|
+
as: AsTag | vue69.Component;
|
|
3945
3944
|
width: number;
|
|
3946
3945
|
height: number;
|
|
3947
|
-
}, {}, {}, {}, string,
|
|
3946
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3948
3947
|
default?: (props: {}) => any;
|
|
3949
3948
|
}>;
|
|
3950
3949
|
type __VLS_WithSlots$161<T, S> = T & {
|
|
@@ -3957,13 +3956,13 @@ type __VLS_WithSlots$161<T, S> = T & {
|
|
|
3957
3956
|
//#region src/DropdownMenu/DropdownMenuCheckboxItem.vue.d.ts
|
|
3958
3957
|
type DropdownMenuCheckboxItemEmits = MenuCheckboxItemEmits;
|
|
3959
3958
|
interface DropdownMenuCheckboxItemProps extends MenuCheckboxItemProps {}
|
|
3960
|
-
declare const _default$122: __VLS_WithSlots$160<
|
|
3959
|
+
declare const _default$122: __VLS_WithSlots$160<vue69.DefineComponent<DropdownMenuCheckboxItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
3961
3960
|
select: (event: Event) => any;
|
|
3962
3961
|
"update:modelValue": (payload: boolean) => any;
|
|
3963
|
-
}, string,
|
|
3962
|
+
}, string, vue69.PublicProps, Readonly<DropdownMenuCheckboxItemProps> & Readonly<{
|
|
3964
3963
|
onSelect?: ((event: Event) => any) | undefined;
|
|
3965
3964
|
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
3966
|
-
}>, {}, {}, {}, {}, string,
|
|
3965
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3967
3966
|
default?: (props: {}) => any;
|
|
3968
3967
|
}>;
|
|
3969
3968
|
type __VLS_WithSlots$160<T, S> = T & {
|
|
@@ -3976,19 +3975,19 @@ type __VLS_WithSlots$160<T, S> = T & {
|
|
|
3976
3975
|
//#region src/DropdownMenu/DropdownMenuContent.vue.d.ts
|
|
3977
3976
|
type DropdownMenuContentEmits = MenuContentEmits;
|
|
3978
3977
|
interface DropdownMenuContentProps extends MenuContentProps {}
|
|
3979
|
-
declare const _default$123: __VLS_WithSlots$159<
|
|
3978
|
+
declare const _default$123: __VLS_WithSlots$159<vue69.DefineComponent<DropdownMenuContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
3980
3979
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
3981
3980
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
3982
3981
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
3983
3982
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
3984
3983
|
closeAutoFocus: (event: Event) => any;
|
|
3985
|
-
}, string,
|
|
3984
|
+
}, string, vue69.PublicProps, Readonly<DropdownMenuContentProps> & Readonly<{
|
|
3986
3985
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
3987
3986
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
3988
3987
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
3989
3988
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
3990
3989
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
3991
|
-
}>, {}, {}, {}, {}, string,
|
|
3990
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
3992
3991
|
default?: (props: {}) => any;
|
|
3993
3992
|
}>;
|
|
3994
3993
|
type __VLS_WithSlots$159<T, S> = T & {
|
|
@@ -4000,7 +3999,7 @@ type __VLS_WithSlots$159<T, S> = T & {
|
|
|
4000
3999
|
//#endregion
|
|
4001
4000
|
//#region src/DropdownMenu/DropdownMenuGroup.vue.d.ts
|
|
4002
4001
|
interface DropdownMenuGroupProps extends MenuGroupProps {}
|
|
4003
|
-
declare const _default$124: __VLS_WithSlots$158<
|
|
4002
|
+
declare const _default$124: __VLS_WithSlots$158<vue69.DefineComponent<DropdownMenuGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DropdownMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4004
4003
|
default?: (props: {}) => any;
|
|
4005
4004
|
}>;
|
|
4006
4005
|
type __VLS_WithSlots$158<T, S> = T & {
|
|
@@ -4013,11 +4012,11 @@ type __VLS_WithSlots$158<T, S> = T & {
|
|
|
4013
4012
|
//#region src/DropdownMenu/DropdownMenuItem.vue.d.ts
|
|
4014
4013
|
type DropdownMenuItemEmits = MenuItemEmits;
|
|
4015
4014
|
interface DropdownMenuItemProps extends MenuItemProps {}
|
|
4016
|
-
declare const _default$125: __VLS_WithSlots$157<
|
|
4015
|
+
declare const _default$125: __VLS_WithSlots$157<vue69.DefineComponent<DropdownMenuItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4017
4016
|
select: (event: Event) => any;
|
|
4018
|
-
}, string,
|
|
4017
|
+
}, string, vue69.PublicProps, Readonly<DropdownMenuItemProps> & Readonly<{
|
|
4019
4018
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4020
|
-
}>, {}, {}, {}, {}, string,
|
|
4019
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4021
4020
|
default?: (props: {}) => any;
|
|
4022
4021
|
}>;
|
|
4023
4022
|
type __VLS_WithSlots$157<T, S> = T & {
|
|
@@ -4029,7 +4028,7 @@ type __VLS_WithSlots$157<T, S> = T & {
|
|
|
4029
4028
|
//#endregion
|
|
4030
4029
|
//#region src/DropdownMenu/DropdownMenuItemIndicator.vue.d.ts
|
|
4031
4030
|
interface DropdownMenuItemIndicatorProps extends MenuItemIndicatorProps {}
|
|
4032
|
-
declare const _default$126: __VLS_WithSlots$156<
|
|
4031
|
+
declare const _default$126: __VLS_WithSlots$156<vue69.DefineComponent<DropdownMenuItemIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DropdownMenuItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4033
4032
|
default?: (props: {}) => any;
|
|
4034
4033
|
}>;
|
|
4035
4034
|
type __VLS_WithSlots$156<T, S> = T & {
|
|
@@ -4041,7 +4040,7 @@ type __VLS_WithSlots$156<T, S> = T & {
|
|
|
4041
4040
|
//#endregion
|
|
4042
4041
|
//#region src/DropdownMenu/DropdownMenuLabel.vue.d.ts
|
|
4043
4042
|
interface DropdownMenuLabelProps extends MenuLabelProps {}
|
|
4044
|
-
declare const _default$127: __VLS_WithSlots$155<
|
|
4043
|
+
declare const _default$127: __VLS_WithSlots$155<vue69.DefineComponent<DropdownMenuLabelProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DropdownMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4045
4044
|
default?: (props: {}) => any;
|
|
4046
4045
|
}>;
|
|
4047
4046
|
type __VLS_WithSlots$155<T, S> = T & {
|
|
@@ -4053,7 +4052,7 @@ type __VLS_WithSlots$155<T, S> = T & {
|
|
|
4053
4052
|
//#endregion
|
|
4054
4053
|
//#region src/DropdownMenu/DropdownMenuPortal.vue.d.ts
|
|
4055
4054
|
interface DropdownMenuPortalProps extends MenuPortalProps {}
|
|
4056
|
-
declare const _default$128: __VLS_WithSlots$154<
|
|
4055
|
+
declare const _default$128: __VLS_WithSlots$154<vue69.DefineComponent<DropdownMenuPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DropdownMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4057
4056
|
default?: (props: {}) => any;
|
|
4058
4057
|
}>;
|
|
4059
4058
|
type __VLS_WithSlots$154<T, S> = T & {
|
|
@@ -4066,11 +4065,11 @@ type __VLS_WithSlots$154<T, S> = T & {
|
|
|
4066
4065
|
//#region src/DropdownMenu/DropdownMenuRadioGroup.vue.d.ts
|
|
4067
4066
|
type DropdownMenuRadioGroupEmits = MenuRadioGroupEmits;
|
|
4068
4067
|
interface DropdownMenuRadioGroupProps extends MenuRadioGroupProps {}
|
|
4069
|
-
declare const _default$129: __VLS_WithSlots$153<
|
|
4068
|
+
declare const _default$129: __VLS_WithSlots$153<vue69.DefineComponent<MenuRadioGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4070
4069
|
"update:modelValue": (payload: string) => any;
|
|
4071
|
-
}, string,
|
|
4070
|
+
}, string, vue69.PublicProps, Readonly<MenuRadioGroupProps> & Readonly<{
|
|
4072
4071
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
4073
|
-
}>, {}, {}, {}, {}, string,
|
|
4072
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4074
4073
|
default?: (props: {}) => any;
|
|
4075
4074
|
}>;
|
|
4076
4075
|
type __VLS_WithSlots$153<T, S> = T & {
|
|
@@ -4083,11 +4082,11 @@ type __VLS_WithSlots$153<T, S> = T & {
|
|
|
4083
4082
|
//#region src/DropdownMenu/DropdownMenuRadioItem.vue.d.ts
|
|
4084
4083
|
type DropdownMenuRadioItemEmits = MenuRadioItemEmits;
|
|
4085
4084
|
interface DropdownMenuRadioItemProps extends MenuRadioItemProps {}
|
|
4086
|
-
declare const _default$130: __VLS_WithSlots$152<
|
|
4085
|
+
declare const _default$130: __VLS_WithSlots$152<vue69.DefineComponent<DropdownMenuRadioItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4087
4086
|
select: (event: Event) => any;
|
|
4088
|
-
}, string,
|
|
4087
|
+
}, string, vue69.PublicProps, Readonly<DropdownMenuRadioItemProps> & Readonly<{
|
|
4089
4088
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4090
|
-
}>, {}, {}, {}, {}, string,
|
|
4089
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4091
4090
|
default?: (props: {}) => any;
|
|
4092
4091
|
}>;
|
|
4093
4092
|
type __VLS_WithSlots$152<T, S> = T & {
|
|
@@ -4114,14 +4113,14 @@ interface DropdownMenuRootContext {
|
|
|
4114
4113
|
dir: Ref<Direction>;
|
|
4115
4114
|
}
|
|
4116
4115
|
declare const injectDropdownMenuRootContext: <T extends DropdownMenuRootContext | null | undefined = DropdownMenuRootContext>(fallback?: T | undefined) => T extends null ? DropdownMenuRootContext | null : DropdownMenuRootContext, provideDropdownMenuRootContext: (contextValue: DropdownMenuRootContext) => DropdownMenuRootContext;
|
|
4117
|
-
declare const _default$131: __VLS_WithSlots$151<
|
|
4116
|
+
declare const _default$131: __VLS_WithSlots$151<vue69.DefineComponent<DropdownMenuRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4118
4117
|
"update:open": (payload: boolean) => any;
|
|
4119
|
-
}, string,
|
|
4118
|
+
}, string, vue69.PublicProps, Readonly<DropdownMenuRootProps> & Readonly<{
|
|
4120
4119
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
4121
4120
|
}>, {
|
|
4122
|
-
modal: boolean;
|
|
4123
4121
|
open: boolean;
|
|
4124
|
-
|
|
4122
|
+
modal: boolean;
|
|
4123
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4125
4124
|
default?: (props: {
|
|
4126
4125
|
/** Current open state */
|
|
4127
4126
|
open: boolean;
|
|
@@ -4136,7 +4135,7 @@ type __VLS_WithSlots$151<T, S> = T & {
|
|
|
4136
4135
|
//#endregion
|
|
4137
4136
|
//#region src/DropdownMenu/DropdownMenuSeparator.vue.d.ts
|
|
4138
4137
|
interface DropdownMenuSeparatorProps extends MenuSeparatorProps {}
|
|
4139
|
-
declare const _default$132: __VLS_WithSlots$150<
|
|
4138
|
+
declare const _default$132: __VLS_WithSlots$150<vue69.DefineComponent<DropdownMenuSeparatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DropdownMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4140
4139
|
default?: (props: {}) => any;
|
|
4141
4140
|
}>;
|
|
4142
4141
|
type __VLS_WithSlots$150<T, S> = T & {
|
|
@@ -4152,13 +4151,13 @@ interface DropdownMenuSubProps extends MenuSubProps {
|
|
|
4152
4151
|
/** The open state of the dropdown menu when it is initially rendered. Use when you do not need to control its open state. */
|
|
4153
4152
|
defaultOpen?: boolean;
|
|
4154
4153
|
}
|
|
4155
|
-
declare const _default$133: __VLS_WithSlots$149<
|
|
4154
|
+
declare const _default$133: __VLS_WithSlots$149<vue69.DefineComponent<DropdownMenuSubProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4156
4155
|
"update:open": (payload: boolean) => any;
|
|
4157
|
-
}, string,
|
|
4156
|
+
}, string, vue69.PublicProps, Readonly<DropdownMenuSubProps> & Readonly<{
|
|
4158
4157
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
4159
4158
|
}>, {
|
|
4160
4159
|
open: boolean;
|
|
4161
|
-
}, {}, {}, {}, string,
|
|
4160
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4162
4161
|
default?: (props: {
|
|
4163
4162
|
/** Current open state */
|
|
4164
4163
|
open: boolean;
|
|
@@ -4174,23 +4173,23 @@ type __VLS_WithSlots$149<T, S> = T & {
|
|
|
4174
4173
|
//#region src/DropdownMenu/DropdownMenuSubContent.vue.d.ts
|
|
4175
4174
|
type DropdownMenuSubContentEmits = MenuSubContentEmits;
|
|
4176
4175
|
interface DropdownMenuSubContentProps extends MenuSubContentProps {}
|
|
4177
|
-
declare const _default$134: __VLS_WithSlots$148<
|
|
4176
|
+
declare const _default$134: __VLS_WithSlots$148<vue69.DefineComponent<DropdownMenuSubContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4177
|
+
entryFocus: (event: Event) => any;
|
|
4178
|
+
openAutoFocus: (event: Event) => any;
|
|
4178
4179
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4179
4180
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4180
4181
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4181
4182
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4182
|
-
openAutoFocus: (event: Event) => any;
|
|
4183
4183
|
closeAutoFocus: (event: Event) => any;
|
|
4184
|
-
|
|
4185
|
-
|
|
4184
|
+
}, string, vue69.PublicProps, Readonly<DropdownMenuSubContentProps> & Readonly<{
|
|
4185
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
4186
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
4186
4187
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4187
4188
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4188
4189
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
4189
4190
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
4190
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
4191
4191
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
4192
|
-
|
|
4193
|
-
}>, {}, {}, {}, {}, string, vue157.ComponentProvideOptions, false, {}, any>, {
|
|
4192
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4194
4193
|
default?: (props: {}) => any;
|
|
4195
4194
|
}>;
|
|
4196
4195
|
type __VLS_WithSlots$148<T, S> = T & {
|
|
@@ -4202,7 +4201,7 @@ type __VLS_WithSlots$148<T, S> = T & {
|
|
|
4202
4201
|
//#endregion
|
|
4203
4202
|
//#region src/DropdownMenu/DropdownMenuSubTrigger.vue.d.ts
|
|
4204
4203
|
interface DropdownMenuSubTriggerProps extends MenuSubTriggerProps {}
|
|
4205
|
-
declare const _default$135: __VLS_WithSlots$147<
|
|
4204
|
+
declare const _default$135: __VLS_WithSlots$147<vue69.DefineComponent<DropdownMenuSubTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DropdownMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4206
4205
|
default?: (props: {}) => any;
|
|
4207
4206
|
}>;
|
|
4208
4207
|
type __VLS_WithSlots$147<T, S> = T & {
|
|
@@ -4217,9 +4216,9 @@ interface DropdownMenuTriggerProps extends PrimitiveProps {
|
|
|
4217
4216
|
/** When `true`, prevents the user from interacting with item */
|
|
4218
4217
|
disabled?: boolean;
|
|
4219
4218
|
}
|
|
4220
|
-
declare const _default$136: __VLS_WithSlots$146<
|
|
4221
|
-
as: AsTag |
|
|
4222
|
-
}, {}, {}, {}, string,
|
|
4219
|
+
declare const _default$136: __VLS_WithSlots$146<vue69.DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {
|
|
4220
|
+
as: AsTag | vue69.Component;
|
|
4221
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4223
4222
|
default?: (props: {}) => any;
|
|
4224
4223
|
}>;
|
|
4225
4224
|
type __VLS_WithSlots$146<T, S> = T & {
|
|
@@ -4231,9 +4230,9 @@ type __VLS_WithSlots$146<T, S> = T & {
|
|
|
4231
4230
|
//#endregion
|
|
4232
4231
|
//#region src/Editable/EditableArea.vue.d.ts
|
|
4233
4232
|
interface EditableAreaProps extends PrimitiveProps {}
|
|
4234
|
-
declare const _default$137: __VLS_WithSlots$145<
|
|
4235
|
-
as: AsTag |
|
|
4236
|
-
}, {}, {}, {}, string,
|
|
4233
|
+
declare const _default$137: __VLS_WithSlots$145<vue69.DefineComponent<EditableAreaProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<EditableAreaProps> & Readonly<{}>, {
|
|
4234
|
+
as: AsTag | vue69.Component;
|
|
4235
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4237
4236
|
default?: (props: {}) => any;
|
|
4238
4237
|
}>;
|
|
4239
4238
|
type __VLS_WithSlots$145<T, S> = T & {
|
|
@@ -4245,9 +4244,9 @@ type __VLS_WithSlots$145<T, S> = T & {
|
|
|
4245
4244
|
//#endregion
|
|
4246
4245
|
//#region src/Editable/EditableCancelTrigger.vue.d.ts
|
|
4247
4246
|
interface EditableCancelTriggerProps extends PrimitiveProps {}
|
|
4248
|
-
declare const _default$138: __VLS_WithSlots$144<
|
|
4249
|
-
as: AsTag |
|
|
4250
|
-
}, {}, {}, {}, string,
|
|
4247
|
+
declare const _default$138: __VLS_WithSlots$144<vue69.DefineComponent<EditableCancelTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<EditableCancelTriggerProps> & Readonly<{}>, {
|
|
4248
|
+
as: AsTag | vue69.Component;
|
|
4249
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4251
4250
|
default?: (props: {}) => any;
|
|
4252
4251
|
}>;
|
|
4253
4252
|
type __VLS_WithSlots$144<T, S> = T & {
|
|
@@ -4259,9 +4258,9 @@ type __VLS_WithSlots$144<T, S> = T & {
|
|
|
4259
4258
|
//#endregion
|
|
4260
4259
|
//#region src/Editable/EditableEditTrigger.vue.d.ts
|
|
4261
4260
|
interface EditableEditTriggerProps extends PrimitiveProps {}
|
|
4262
|
-
declare const _default$139: __VLS_WithSlots$143<
|
|
4263
|
-
as: AsTag |
|
|
4264
|
-
}, {}, {}, {}, string,
|
|
4261
|
+
declare const _default$139: __VLS_WithSlots$143<vue69.DefineComponent<EditableEditTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<EditableEditTriggerProps> & Readonly<{}>, {
|
|
4262
|
+
as: AsTag | vue69.Component;
|
|
4263
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4265
4264
|
default?: (props: {}) => any;
|
|
4266
4265
|
}>;
|
|
4267
4266
|
type __VLS_WithSlots$143<T, S> = T & {
|
|
@@ -4273,9 +4272,9 @@ type __VLS_WithSlots$143<T, S> = T & {
|
|
|
4273
4272
|
//#endregion
|
|
4274
4273
|
//#region src/Editable/EditableInput.vue.d.ts
|
|
4275
4274
|
interface EditableInputProps extends PrimitiveProps {}
|
|
4276
|
-
declare const _default$140: __VLS_WithSlots$142<
|
|
4277
|
-
as: AsTag |
|
|
4278
|
-
}, {}, {}, {}, string,
|
|
4275
|
+
declare const _default$140: __VLS_WithSlots$142<vue69.DefineComponent<EditableInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<EditableInputProps> & Readonly<{}>, {
|
|
4276
|
+
as: AsTag | vue69.Component;
|
|
4277
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4279
4278
|
default?: (props: {}) => any;
|
|
4280
4279
|
}>;
|
|
4281
4280
|
type __VLS_WithSlots$142<T, S> = T & {
|
|
@@ -4287,9 +4286,9 @@ type __VLS_WithSlots$142<T, S> = T & {
|
|
|
4287
4286
|
//#endregion
|
|
4288
4287
|
//#region src/Editable/EditablePreview.vue.d.ts
|
|
4289
4288
|
interface EditablePreviewProps extends PrimitiveProps {}
|
|
4290
|
-
declare const _default$141: __VLS_WithSlots$141<
|
|
4291
|
-
as: AsTag |
|
|
4292
|
-
}, {}, {}, {}, string,
|
|
4289
|
+
declare const _default$141: __VLS_WithSlots$141<vue69.DefineComponent<EditablePreviewProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<EditablePreviewProps> & Readonly<{}>, {
|
|
4290
|
+
as: AsTag | vue69.Component;
|
|
4291
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4293
4292
|
default?: (props: {}) => any;
|
|
4294
4293
|
}>;
|
|
4295
4294
|
type __VLS_WithSlots$141<T, S> = T & {
|
|
@@ -4366,24 +4365,24 @@ type EditableRootEmits = {
|
|
|
4366
4365
|
'update:state': [state: 'edit' | 'submit' | 'cancel'];
|
|
4367
4366
|
};
|
|
4368
4367
|
declare const injectEditableRootContext: <T extends EditableRootContext | null | undefined = EditableRootContext>(fallback?: T | undefined) => T extends null ? EditableRootContext | null : EditableRootContext, provideEditableRootContext: (contextValue: EditableRootContext) => EditableRootContext;
|
|
4369
|
-
declare const _default$142: __VLS_WithSlots$140<
|
|
4368
|
+
declare const _default$142: __VLS_WithSlots$140<vue69.DefineComponent<EditableRootProps, {
|
|
4370
4369
|
/** Function to submit the value of the editable */
|
|
4371
4370
|
submit: () => void;
|
|
4372
4371
|
/** Function to cancel the value of the editable */
|
|
4373
4372
|
cancel: () => void;
|
|
4374
4373
|
/** Function to set the editable in edit mode */
|
|
4375
4374
|
edit: () => void;
|
|
4376
|
-
}, {}, {}, {},
|
|
4375
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4377
4376
|
submit: (value: string | null | undefined) => any;
|
|
4378
4377
|
"update:modelValue": (value: string) => any;
|
|
4379
4378
|
"update:state": (state: "cancel" | "submit" | "edit") => any;
|
|
4380
|
-
}, string,
|
|
4379
|
+
}, string, vue69.PublicProps, Readonly<EditableRootProps> & Readonly<{
|
|
4381
4380
|
onSubmit?: ((value: string | null | undefined) => any) | undefined;
|
|
4382
4381
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4383
4382
|
"onUpdate:state"?: ((state: "cancel" | "submit" | "edit") => any) | undefined;
|
|
4384
4383
|
}>, {
|
|
4385
4384
|
required: boolean;
|
|
4386
|
-
as: AsTag |
|
|
4385
|
+
as: AsTag | vue69.Component;
|
|
4387
4386
|
disabled: boolean;
|
|
4388
4387
|
placeholder: string | {
|
|
4389
4388
|
edit: string;
|
|
@@ -4393,7 +4392,7 @@ declare const _default$142: __VLS_WithSlots$140<vue157.DefineComponent<EditableR
|
|
|
4393
4392
|
selectOnFocus: boolean;
|
|
4394
4393
|
submitMode: SubmitMode;
|
|
4395
4394
|
autoResize: boolean;
|
|
4396
|
-
}, {}, {}, {}, string,
|
|
4395
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4397
4396
|
default?: (props: {
|
|
4398
4397
|
/** Whether the editable field is in edit mode */
|
|
4399
4398
|
isEditing: boolean;
|
|
@@ -4418,9 +4417,9 @@ type __VLS_WithSlots$140<T, S> = T & {
|
|
|
4418
4417
|
//#endregion
|
|
4419
4418
|
//#region src/Editable/EditableSubmitTrigger.vue.d.ts
|
|
4420
4419
|
interface EditableSubmitTriggerProps extends PrimitiveProps {}
|
|
4421
|
-
declare const _default$143: __VLS_WithSlots$139<
|
|
4422
|
-
as: AsTag |
|
|
4423
|
-
}, {}, {}, {}, string,
|
|
4420
|
+
declare const _default$143: __VLS_WithSlots$139<vue69.DefineComponent<EditableSubmitTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<EditableSubmitTriggerProps> & Readonly<{}>, {
|
|
4421
|
+
as: AsTag | vue69.Component;
|
|
4422
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4424
4423
|
default?: (props: {}) => any;
|
|
4425
4424
|
}>;
|
|
4426
4425
|
type __VLS_WithSlots$139<T, S> = T & {
|
|
@@ -4432,11 +4431,11 @@ type __VLS_WithSlots$139<T, S> = T & {
|
|
|
4432
4431
|
//#endregion
|
|
4433
4432
|
//#region src/HoverCard/HoverCardArrow.vue.d.ts
|
|
4434
4433
|
interface HoverCardArrowProps extends PopperArrowProps {}
|
|
4435
|
-
declare const _default$145: __VLS_WithSlots$138<
|
|
4436
|
-
as: AsTag |
|
|
4434
|
+
declare const _default$145: __VLS_WithSlots$138<vue69.DefineComponent<HoverCardArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<HoverCardArrowProps> & Readonly<{}>, {
|
|
4435
|
+
as: AsTag | vue69.Component;
|
|
4437
4436
|
width: number;
|
|
4438
4437
|
height: number;
|
|
4439
|
-
}, {}, {}, {}, string,
|
|
4438
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4440
4439
|
default?: (props: {}) => any;
|
|
4441
4440
|
}>;
|
|
4442
4441
|
type __VLS_WithSlots$138<T, S> = T & {
|
|
@@ -4457,17 +4456,17 @@ interface HoverCardContentProps extends HoverCardContentImplProps {
|
|
|
4457
4456
|
*/
|
|
4458
4457
|
forceMount?: boolean;
|
|
4459
4458
|
}
|
|
4460
|
-
declare const _default$146: __VLS_WithSlots$137<
|
|
4459
|
+
declare const _default$146: __VLS_WithSlots$137<vue69.DefineComponent<HoverCardContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4461
4460
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4462
4461
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4463
4462
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4464
4463
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4465
|
-
}, string,
|
|
4464
|
+
}, string, vue69.PublicProps, Readonly<HoverCardContentProps> & Readonly<{
|
|
4466
4465
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4467
4466
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4468
4467
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
4469
4468
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
4470
|
-
}>, {}, {}, {}, {}, string,
|
|
4469
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4471
4470
|
default?: (props: {}) => any;
|
|
4472
4471
|
}>;
|
|
4473
4472
|
type __VLS_WithSlots$137<T, S> = T & {
|
|
@@ -4479,7 +4478,7 @@ type __VLS_WithSlots$137<T, S> = T & {
|
|
|
4479
4478
|
//#endregion
|
|
4480
4479
|
//#region src/HoverCard/HoverCardPortal.vue.d.ts
|
|
4481
4480
|
interface HoverCardPortalProps extends TeleportProps {}
|
|
4482
|
-
declare const _default$147: __VLS_WithSlots$136<
|
|
4481
|
+
declare const _default$147: __VLS_WithSlots$136<vue69.DefineComponent<HoverCardPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<HoverCardPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4483
4482
|
default?: (props: {}) => any;
|
|
4484
4483
|
}>;
|
|
4485
4484
|
type __VLS_WithSlots$136<T, S> = T & {
|
|
@@ -4516,16 +4515,16 @@ interface HoverCardRootContext {
|
|
|
4516
4515
|
triggerElement: Ref<HTMLElement | undefined>;
|
|
4517
4516
|
}
|
|
4518
4517
|
declare const injectHoverCardRootContext: <T extends HoverCardRootContext | null | undefined = HoverCardRootContext>(fallback?: T | undefined) => T extends null ? HoverCardRootContext | null : HoverCardRootContext, provideHoverCardRootContext: (contextValue: HoverCardRootContext) => HoverCardRootContext;
|
|
4519
|
-
declare const _default$148: __VLS_WithSlots$135<
|
|
4518
|
+
declare const _default$148: __VLS_WithSlots$135<vue69.DefineComponent<HoverCardRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4520
4519
|
"update:open": (value: boolean) => any;
|
|
4521
|
-
}, string,
|
|
4520
|
+
}, string, vue69.PublicProps, Readonly<HoverCardRootProps> & Readonly<{
|
|
4522
4521
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
4523
4522
|
}>, {
|
|
4524
|
-
open: boolean;
|
|
4525
4523
|
defaultOpen: boolean;
|
|
4524
|
+
open: boolean;
|
|
4526
4525
|
openDelay: number;
|
|
4527
4526
|
closeDelay: number;
|
|
4528
|
-
}, {}, {}, {}, string,
|
|
4527
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4529
4528
|
default?: (props: {
|
|
4530
4529
|
/** Current open state */
|
|
4531
4530
|
open: boolean;
|
|
@@ -4540,9 +4539,9 @@ type __VLS_WithSlots$135<T, S> = T & {
|
|
|
4540
4539
|
//#endregion
|
|
4541
4540
|
//#region src/HoverCard/HoverCardTrigger.vue.d.ts
|
|
4542
4541
|
interface HoverCardTriggerProps extends PopperAnchorProps {}
|
|
4543
|
-
declare const _default$149: __VLS_WithSlots$134<
|
|
4544
|
-
as: AsTag |
|
|
4545
|
-
}, {}, {}, {}, string,
|
|
4542
|
+
declare const _default$149: __VLS_WithSlots$134<vue69.DefineComponent<HoverCardTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<HoverCardTriggerProps> & Readonly<{}>, {
|
|
4543
|
+
as: AsTag | vue69.Component;
|
|
4544
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4546
4545
|
default?: (props: {}) => any;
|
|
4547
4546
|
}>;
|
|
4548
4547
|
type __VLS_WithSlots$134<T, S> = T & {
|
|
@@ -4557,9 +4556,9 @@ interface LabelProps extends PrimitiveProps {
|
|
|
4557
4556
|
/** The id of the element the label is associated with. */
|
|
4558
4557
|
for?: string;
|
|
4559
4558
|
}
|
|
4560
|
-
declare const _default$150: __VLS_WithSlots$133<
|
|
4561
|
-
as: AsTag |
|
|
4562
|
-
}, {}, {}, {}, string,
|
|
4559
|
+
declare const _default$150: __VLS_WithSlots$133<vue69.DefineComponent<LabelProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
4560
|
+
as: AsTag | vue69.Component;
|
|
4561
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4563
4562
|
default?: (props: {}) => any;
|
|
4564
4563
|
}>;
|
|
4565
4564
|
type __VLS_WithSlots$133<T, S> = T & {
|
|
@@ -4571,11 +4570,11 @@ type __VLS_WithSlots$133<T, S> = T & {
|
|
|
4571
4570
|
//#endregion
|
|
4572
4571
|
//#region src/Menubar/MenubarArrow.vue.d.ts
|
|
4573
4572
|
interface MenubarArrowProps extends MenuArrowProps {}
|
|
4574
|
-
declare const _default$159: __VLS_WithSlots$132<
|
|
4575
|
-
as: AsTag |
|
|
4573
|
+
declare const _default$159: __VLS_WithSlots$132<vue69.DefineComponent<MenubarArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<MenubarArrowProps> & Readonly<{}>, {
|
|
4574
|
+
as: AsTag | vue69.Component;
|
|
4576
4575
|
width: number;
|
|
4577
4576
|
height: number;
|
|
4578
|
-
}, {}, {}, {}, string,
|
|
4577
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4579
4578
|
default?: (props: {}) => any;
|
|
4580
4579
|
}>;
|
|
4581
4580
|
type __VLS_WithSlots$132<T, S> = T & {
|
|
@@ -4588,13 +4587,13 @@ type __VLS_WithSlots$132<T, S> = T & {
|
|
|
4588
4587
|
//#region src/Menubar/MenubarCheckboxItem.vue.d.ts
|
|
4589
4588
|
type MenubarCheckboxItemEmits = MenuCheckboxItemEmits;
|
|
4590
4589
|
interface MenubarCheckboxItemProps extends MenuCheckboxItemProps {}
|
|
4591
|
-
declare const _default$160: __VLS_WithSlots$131<
|
|
4590
|
+
declare const _default$160: __VLS_WithSlots$131<vue69.DefineComponent<MenubarCheckboxItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4592
4591
|
select: (event: Event) => any;
|
|
4593
4592
|
"update:modelValue": (payload: boolean) => any;
|
|
4594
|
-
}, string,
|
|
4593
|
+
}, string, vue69.PublicProps, Readonly<MenubarCheckboxItemProps> & Readonly<{
|
|
4595
4594
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4596
4595
|
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
4597
|
-
}>, {}, {}, {}, {}, string,
|
|
4596
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4598
4597
|
default?: (props: {}) => any;
|
|
4599
4598
|
}>;
|
|
4600
4599
|
type __VLS_WithSlots$131<T, S> = T & {
|
|
@@ -4606,13 +4605,13 @@ type __VLS_WithSlots$131<T, S> = T & {
|
|
|
4606
4605
|
//#endregion
|
|
4607
4606
|
//#region src/Menubar/MenubarContent.vue.d.ts
|
|
4608
4607
|
interface MenubarContentProps extends MenuContentProps {}
|
|
4609
|
-
declare const _default$161: __VLS_WithSlots$130<
|
|
4608
|
+
declare const _default$161: __VLS_WithSlots$130<vue69.DefineComponent<MenubarContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4610
4609
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4611
4610
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4612
4611
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4613
4612
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4614
4613
|
closeAutoFocus: (event: Event) => any;
|
|
4615
|
-
}, string,
|
|
4614
|
+
}, string, vue69.PublicProps, Readonly<MenubarContentProps> & Readonly<{
|
|
4616
4615
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4617
4616
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4618
4617
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -4620,7 +4619,7 @@ declare const _default$161: __VLS_WithSlots$130<vue157.DefineComponent<MenubarCo
|
|
|
4620
4619
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
4621
4620
|
}>, {
|
|
4622
4621
|
align: Align;
|
|
4623
|
-
}, {}, {}, {}, string,
|
|
4622
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4624
4623
|
default?: (props: {}) => any;
|
|
4625
4624
|
}>;
|
|
4626
4625
|
type __VLS_WithSlots$130<T, S> = T & {
|
|
@@ -4632,7 +4631,7 @@ type __VLS_WithSlots$130<T, S> = T & {
|
|
|
4632
4631
|
//#endregion
|
|
4633
4632
|
//#region src/Menubar/MenubarGroup.vue.d.ts
|
|
4634
4633
|
interface MenubarGroupProps extends MenuGroupProps {}
|
|
4635
|
-
declare const _default$162: __VLS_WithSlots$129<
|
|
4634
|
+
declare const _default$162: __VLS_WithSlots$129<vue69.DefineComponent<MenubarGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<MenubarGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4636
4635
|
default?: (props: {}) => any;
|
|
4637
4636
|
}>;
|
|
4638
4637
|
type __VLS_WithSlots$129<T, S> = T & {
|
|
@@ -4645,11 +4644,11 @@ type __VLS_WithSlots$129<T, S> = T & {
|
|
|
4645
4644
|
//#region src/Menubar/MenubarItem.vue.d.ts
|
|
4646
4645
|
type MenubarItemEmits = MenuItemEmits;
|
|
4647
4646
|
interface MenubarItemProps extends MenuItemProps {}
|
|
4648
|
-
declare const _default$163: __VLS_WithSlots$128<
|
|
4647
|
+
declare const _default$163: __VLS_WithSlots$128<vue69.DefineComponent<MenubarItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4649
4648
|
select: (event: Event) => any;
|
|
4650
|
-
}, string,
|
|
4649
|
+
}, string, vue69.PublicProps, Readonly<MenubarItemProps> & Readonly<{
|
|
4651
4650
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4652
|
-
}>, {}, {}, {}, {}, string,
|
|
4651
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4653
4652
|
default?: (props: {}) => any;
|
|
4654
4653
|
}>;
|
|
4655
4654
|
type __VLS_WithSlots$128<T, S> = T & {
|
|
@@ -4661,7 +4660,7 @@ type __VLS_WithSlots$128<T, S> = T & {
|
|
|
4661
4660
|
//#endregion
|
|
4662
4661
|
//#region src/Menubar/MenubarItemIndicator.vue.d.ts
|
|
4663
4662
|
interface MenubarItemIndicatorProps extends MenuItemIndicatorProps {}
|
|
4664
|
-
declare const _default$164: __VLS_WithSlots$127<
|
|
4663
|
+
declare const _default$164: __VLS_WithSlots$127<vue69.DefineComponent<MenubarItemIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<MenubarItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4665
4664
|
default?: (props: {}) => any;
|
|
4666
4665
|
}>;
|
|
4667
4666
|
type __VLS_WithSlots$127<T, S> = T & {
|
|
@@ -4673,7 +4672,7 @@ type __VLS_WithSlots$127<T, S> = T & {
|
|
|
4673
4672
|
//#endregion
|
|
4674
4673
|
//#region src/Menubar/MenubarLabel.vue.d.ts
|
|
4675
4674
|
interface MenubarLabelProps extends MenuLabelProps {}
|
|
4676
|
-
declare const _default$165: __VLS_WithSlots$126<
|
|
4675
|
+
declare const _default$165: __VLS_WithSlots$126<vue69.DefineComponent<MenubarLabelProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<MenubarLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4677
4676
|
default?: (props: {}) => any;
|
|
4678
4677
|
}>;
|
|
4679
4678
|
type __VLS_WithSlots$126<T, S> = T & {
|
|
@@ -4700,7 +4699,7 @@ type MenubarMenuContext = {
|
|
|
4700
4699
|
wasKeyboardTriggerOpenRef: Ref<boolean>;
|
|
4701
4700
|
};
|
|
4702
4701
|
declare const injectMenubarMenuContext: <T extends MenubarMenuContext | null | undefined = MenubarMenuContext>(fallback?: T | undefined) => T extends null ? MenubarMenuContext | null : MenubarMenuContext, provideMenubarMenuContext: (contextValue: MenubarMenuContext) => MenubarMenuContext;
|
|
4703
|
-
declare const _default$166: __VLS_WithSlots$125<
|
|
4702
|
+
declare const _default$166: __VLS_WithSlots$125<vue69.DefineComponent<MenubarMenuProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<MenubarMenuProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4704
4703
|
default?: (props: {}) => any;
|
|
4705
4704
|
}>;
|
|
4706
4705
|
type __VLS_WithSlots$125<T, S> = T & {
|
|
@@ -4712,7 +4711,7 @@ type __VLS_WithSlots$125<T, S> = T & {
|
|
|
4712
4711
|
//#endregion
|
|
4713
4712
|
//#region src/Menubar/MenubarPortal.vue.d.ts
|
|
4714
4713
|
interface MenubarPortalProps extends MenuPortalProps {}
|
|
4715
|
-
declare const _default$167: __VLS_WithSlots$124<
|
|
4714
|
+
declare const _default$167: __VLS_WithSlots$124<vue69.DefineComponent<MenubarPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<MenubarPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4716
4715
|
default?: (props: {}) => any;
|
|
4717
4716
|
}>;
|
|
4718
4717
|
type __VLS_WithSlots$124<T, S> = T & {
|
|
@@ -4725,11 +4724,11 @@ type __VLS_WithSlots$124<T, S> = T & {
|
|
|
4725
4724
|
//#region src/Menubar/MenubarRadioGroup.vue.d.ts
|
|
4726
4725
|
type MenubarRadioGroupEmits = MenuRadioGroupEmits;
|
|
4727
4726
|
interface MenubarRadioGroupProps extends MenuRadioGroupProps {}
|
|
4728
|
-
declare const _default$168: __VLS_WithSlots$123<
|
|
4727
|
+
declare const _default$168: __VLS_WithSlots$123<vue69.DefineComponent<MenubarRadioGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4729
4728
|
"update:modelValue": (payload: string) => any;
|
|
4730
|
-
}, string,
|
|
4729
|
+
}, string, vue69.PublicProps, Readonly<MenubarRadioGroupProps> & Readonly<{
|
|
4731
4730
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
4732
|
-
}>, {}, {}, {}, {}, string,
|
|
4731
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4733
4732
|
default?: (props: {}) => any;
|
|
4734
4733
|
}>;
|
|
4735
4734
|
type __VLS_WithSlots$123<T, S> = T & {
|
|
@@ -4742,11 +4741,11 @@ type __VLS_WithSlots$123<T, S> = T & {
|
|
|
4742
4741
|
//#region src/Menubar/MenubarRadioItem.vue.d.ts
|
|
4743
4742
|
type MenubarRadioItemEmits = MenuRadioItemEmits;
|
|
4744
4743
|
interface MenubarRadioItemProps extends MenuRadioItemProps {}
|
|
4745
|
-
declare const _default$169: __VLS_WithSlots$122<
|
|
4744
|
+
declare const _default$169: __VLS_WithSlots$122<vue69.DefineComponent<MenuRadioItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4746
4745
|
select: (event: Event) => any;
|
|
4747
|
-
}, string,
|
|
4746
|
+
}, string, vue69.PublicProps, Readonly<MenuRadioItemProps> & Readonly<{
|
|
4748
4747
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4749
|
-
}>, {}, {}, {}, {}, string,
|
|
4748
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4750
4749
|
default?: (props: {}) => any;
|
|
4751
4750
|
}>;
|
|
4752
4751
|
type __VLS_WithSlots$122<T, S> = T & {
|
|
@@ -4784,13 +4783,13 @@ interface MenubarRootContext {
|
|
|
4784
4783
|
onMenuToggle: (value: string) => void;
|
|
4785
4784
|
}
|
|
4786
4785
|
declare const injectMenubarRootContext: <T extends MenubarRootContext | null | undefined = MenubarRootContext>(fallback?: T | undefined) => T extends null ? MenubarRootContext | null : MenubarRootContext, provideMenubarRootContext: (contextValue: MenubarRootContext) => MenubarRootContext;
|
|
4787
|
-
declare const _default$170: __VLS_WithSlots$121<
|
|
4786
|
+
declare const _default$170: __VLS_WithSlots$121<vue69.DefineComponent<MenubarRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4788
4787
|
"update:modelValue": (value: boolean) => any;
|
|
4789
|
-
}, string,
|
|
4788
|
+
}, string, vue69.PublicProps, Readonly<MenubarRootProps> & Readonly<{
|
|
4790
4789
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
4791
4790
|
}>, {
|
|
4792
4791
|
loop: boolean;
|
|
4793
|
-
}, {}, {}, {}, string,
|
|
4792
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4794
4793
|
default?: (props: {
|
|
4795
4794
|
/** Current input values */
|
|
4796
4795
|
modelValue: string;
|
|
@@ -4805,7 +4804,7 @@ type __VLS_WithSlots$121<T, S> = T & {
|
|
|
4805
4804
|
//#endregion
|
|
4806
4805
|
//#region src/Menubar/MenubarSeparator.vue.d.ts
|
|
4807
4806
|
interface MenubarSeparatorProps extends MenuSeparatorProps {}
|
|
4808
|
-
declare const _default$171: __VLS_WithSlots$120<
|
|
4807
|
+
declare const _default$171: __VLS_WithSlots$120<vue69.DefineComponent<MenubarSeparatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<MenubarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4809
4808
|
default?: (props: {}) => any;
|
|
4810
4809
|
}>;
|
|
4811
4810
|
type __VLS_WithSlots$120<T, S> = T & {
|
|
@@ -4821,13 +4820,13 @@ interface MenubarSubProps extends MenuSubProps {
|
|
|
4821
4820
|
/** The open state of the submenu when it is initially rendered. Use when you do not need to control its open state. */
|
|
4822
4821
|
defaultOpen?: boolean;
|
|
4823
4822
|
}
|
|
4824
|
-
declare const _default$172: __VLS_WithSlots$119<
|
|
4823
|
+
declare const _default$172: __VLS_WithSlots$119<vue69.DefineComponent<MenubarSubProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4825
4824
|
"update:open": (payload: boolean) => any;
|
|
4826
|
-
}, string,
|
|
4825
|
+
}, string, vue69.PublicProps, Readonly<MenubarSubProps> & Readonly<{
|
|
4827
4826
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
4828
4827
|
}>, {
|
|
4829
4828
|
open: boolean;
|
|
4830
|
-
}, {}, {}, {}, string,
|
|
4829
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4831
4830
|
default?: (props: {
|
|
4832
4831
|
/** Current open state */
|
|
4833
4832
|
open: boolean;
|
|
@@ -4843,23 +4842,23 @@ type __VLS_WithSlots$119<T, S> = T & {
|
|
|
4843
4842
|
//#region src/Menubar/MenubarSubContent.vue.d.ts
|
|
4844
4843
|
type MenubarSubContentEmits = MenuSubContentEmits;
|
|
4845
4844
|
interface MenubarSubContentProps extends MenuSubContentProps {}
|
|
4846
|
-
declare const _default$173: __VLS_WithSlots$118<
|
|
4845
|
+
declare const _default$173: __VLS_WithSlots$118<vue69.DefineComponent<MenubarSubContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4846
|
+
entryFocus: (event: Event) => any;
|
|
4847
|
+
openAutoFocus: (event: Event) => any;
|
|
4847
4848
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4848
4849
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4849
4850
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4850
4851
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4851
|
-
openAutoFocus: (event: Event) => any;
|
|
4852
4852
|
closeAutoFocus: (event: Event) => any;
|
|
4853
|
-
|
|
4854
|
-
|
|
4853
|
+
}, string, vue69.PublicProps, Readonly<MenubarSubContentProps> & Readonly<{
|
|
4854
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
4855
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
4855
4856
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4856
4857
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4857
4858
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
4858
4859
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
4859
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
4860
4860
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
4861
|
-
|
|
4862
|
-
}>, {}, {}, {}, {}, string, vue157.ComponentProvideOptions, false, {}, any>, {
|
|
4861
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4863
4862
|
default?: (props: {}) => any;
|
|
4864
4863
|
}>;
|
|
4865
4864
|
type __VLS_WithSlots$118<T, S> = T & {
|
|
@@ -4871,7 +4870,7 @@ type __VLS_WithSlots$118<T, S> = T & {
|
|
|
4871
4870
|
//#endregion
|
|
4872
4871
|
//#region src/Menubar/MenubarSubTrigger.vue.d.ts
|
|
4873
4872
|
interface MenubarSubTriggerProps extends MenuSubTriggerProps {}
|
|
4874
|
-
declare const _default$174: __VLS_WithSlots$117<
|
|
4873
|
+
declare const _default$174: __VLS_WithSlots$117<vue69.DefineComponent<MenubarSubTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<MenubarSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4875
4874
|
default?: (props: {}) => any;
|
|
4876
4875
|
}>;
|
|
4877
4876
|
type __VLS_WithSlots$117<T, S> = T & {
|
|
@@ -4886,9 +4885,9 @@ interface MenubarTriggerProps extends PrimitiveProps {
|
|
|
4886
4885
|
/** When `true`, prevents the user from interacting with item */
|
|
4887
4886
|
disabled?: boolean;
|
|
4888
4887
|
}
|
|
4889
|
-
declare const _default$175: __VLS_WithSlots$116<
|
|
4890
|
-
as: AsTag |
|
|
4891
|
-
}, {}, {}, {}, string,
|
|
4888
|
+
declare const _default$175: __VLS_WithSlots$116<vue69.DefineComponent<MenubarTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<MenubarTriggerProps> & Readonly<{}>, {
|
|
4889
|
+
as: AsTag | vue69.Component;
|
|
4890
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4892
4891
|
default?: (props: {}) => any;
|
|
4893
4892
|
}>;
|
|
4894
4893
|
type __VLS_WithSlots$116<T, S> = T & {
|
|
@@ -4911,17 +4910,17 @@ interface NavigationMenuContentProps extends NavigationMenuContentImplProps {
|
|
|
4911
4910
|
*/
|
|
4912
4911
|
forceMount?: boolean;
|
|
4913
4912
|
}
|
|
4914
|
-
declare const _default$176: __VLS_WithSlots$115<
|
|
4913
|
+
declare const _default$176: __VLS_WithSlots$115<vue69.DefineComponent<NavigationMenuContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
4915
4914
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4916
4915
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4917
4916
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4918
4917
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4919
|
-
}, string,
|
|
4918
|
+
}, string, vue69.PublicProps, Readonly<NavigationMenuContentProps> & Readonly<{
|
|
4920
4919
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4921
4920
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4922
4921
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
4923
4922
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
4924
|
-
}>, {}, {}, {}, {}, string,
|
|
4923
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4925
4924
|
default?: (props: {}) => any;
|
|
4926
4925
|
}>;
|
|
4927
4926
|
type __VLS_WithSlots$115<T, S> = T & {
|
|
@@ -4939,7 +4938,7 @@ interface NavigationMenuIndicatorProps extends PrimitiveProps {
|
|
|
4939
4938
|
*/
|
|
4940
4939
|
forceMount?: boolean;
|
|
4941
4940
|
}
|
|
4942
|
-
declare const _default$177: __VLS_WithSlots$114<
|
|
4941
|
+
declare const _default$177: __VLS_WithSlots$114<vue69.DefineComponent<NavigationMenuIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<NavigationMenuIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4943
4942
|
default?: (props: {}) => any;
|
|
4944
4943
|
}>;
|
|
4945
4944
|
type __VLS_WithSlots$114<T, S> = T & {
|
|
@@ -4970,9 +4969,9 @@ type NavigationMenuItemContext = {
|
|
|
4970
4969
|
onRootContentClose: () => void;
|
|
4971
4970
|
};
|
|
4972
4971
|
declare const injectNavigationMenuItemContext: <T extends NavigationMenuItemContext | null | undefined = NavigationMenuItemContext>(fallback?: T | undefined) => T extends null ? NavigationMenuItemContext | null : NavigationMenuItemContext, provideNavigationMenuItemContext: (contextValue: NavigationMenuItemContext) => NavigationMenuItemContext;
|
|
4973
|
-
declare const _default$178: __VLS_WithSlots$113<
|
|
4974
|
-
as: AsTag |
|
|
4975
|
-
}, {}, {}, {}, string,
|
|
4972
|
+
declare const _default$178: __VLS_WithSlots$113<vue69.DefineComponent<NavigationMenuItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<NavigationMenuItemProps> & Readonly<{}>, {
|
|
4973
|
+
as: AsTag | vue69.Component;
|
|
4974
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
4976
4975
|
default?: (props: {}) => any;
|
|
4977
4976
|
}>;
|
|
4978
4977
|
type __VLS_WithSlots$113<T, S> = T & {
|
|
@@ -4997,17 +4996,17 @@ interface NavigationMenuLinkProps extends PrimitiveProps {
|
|
|
4997
4996
|
/** Used to identify the link as the currently active page. */
|
|
4998
4997
|
active?: boolean;
|
|
4999
4998
|
}
|
|
5000
|
-
declare const _default$179: __VLS_WithSlots$112<
|
|
4999
|
+
declare const _default$179: __VLS_WithSlots$112<vue69.DefineComponent<NavigationMenuLinkProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5001
5000
|
select: (payload: CustomEvent<{
|
|
5002
5001
|
originalEvent: Event;
|
|
5003
5002
|
}>) => any;
|
|
5004
|
-
}, string,
|
|
5003
|
+
}, string, vue69.PublicProps, Readonly<NavigationMenuLinkProps> & Readonly<{
|
|
5005
5004
|
onSelect?: ((payload: CustomEvent<{
|
|
5006
5005
|
originalEvent: Event;
|
|
5007
5006
|
}>) => any) | undefined;
|
|
5008
5007
|
}>, {
|
|
5009
|
-
as: AsTag |
|
|
5010
|
-
}, {}, {}, {}, string,
|
|
5008
|
+
as: AsTag | vue69.Component;
|
|
5009
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5011
5010
|
default?: (props: {}) => any;
|
|
5012
5011
|
}>;
|
|
5013
5012
|
type __VLS_WithSlots$112<T, S> = T & {
|
|
@@ -5019,9 +5018,9 @@ type __VLS_WithSlots$112<T, S> = T & {
|
|
|
5019
5018
|
//#endregion
|
|
5020
5019
|
//#region src/NavigationMenu/NavigationMenuList.vue.d.ts
|
|
5021
5020
|
interface NavigationMenuListProps extends PrimitiveProps {}
|
|
5022
|
-
declare const _default$180: __VLS_WithSlots$111<
|
|
5023
|
-
as: AsTag |
|
|
5024
|
-
}, {}, {}, {}, string,
|
|
5021
|
+
declare const _default$180: __VLS_WithSlots$111<vue69.DefineComponent<NavigationMenuListProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<NavigationMenuListProps> & Readonly<{}>, {
|
|
5022
|
+
as: AsTag | vue69.Component;
|
|
5023
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5025
5024
|
default?: (props: {}) => any;
|
|
5026
5025
|
}>;
|
|
5027
5026
|
type __VLS_WithSlots$111<T, S> = T & {
|
|
@@ -5113,20 +5112,20 @@ interface NavigationMenuContext {
|
|
|
5113
5112
|
onItemDismiss: () => void;
|
|
5114
5113
|
}
|
|
5115
5114
|
declare const injectNavigationMenuContext: <T extends NavigationMenuContext | null | undefined = NavigationMenuContext>(fallback?: T | undefined) => T extends null ? NavigationMenuContext | null : NavigationMenuContext, provideNavigationMenuContext: (contextValue: NavigationMenuContext) => NavigationMenuContext;
|
|
5116
|
-
declare const _default$181: __VLS_WithSlots$110<
|
|
5115
|
+
declare const _default$181: __VLS_WithSlots$110<vue69.DefineComponent<NavigationMenuRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5117
5116
|
"update:modelValue": (value: string) => any;
|
|
5118
|
-
}, string,
|
|
5117
|
+
}, string, vue69.PublicProps, Readonly<NavigationMenuRootProps> & Readonly<{
|
|
5119
5118
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5120
5119
|
}>, {
|
|
5121
|
-
as: AsTag |
|
|
5120
|
+
as: AsTag | vue69.Component;
|
|
5121
|
+
unmountOnHide: boolean;
|
|
5122
5122
|
orientation: Orientation;
|
|
5123
5123
|
modelValue: string;
|
|
5124
5124
|
delayDuration: number;
|
|
5125
5125
|
skipDelayDuration: number;
|
|
5126
5126
|
disableClickTrigger: boolean;
|
|
5127
5127
|
disableHoverTrigger: boolean;
|
|
5128
|
-
|
|
5129
|
-
}, {}, {}, {}, string, vue157.ComponentProvideOptions, false, {}, any>, {
|
|
5128
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5130
5129
|
default?: (props: {
|
|
5131
5130
|
/** Current input values */
|
|
5132
5131
|
modelValue: string;
|
|
@@ -5156,13 +5155,13 @@ interface NavigationMenuSubProps extends PrimitiveProps {
|
|
|
5156
5155
|
/** The orientation of the menu. */
|
|
5157
5156
|
orientation?: Orientation;
|
|
5158
5157
|
}
|
|
5159
|
-
declare const _default$182: __VLS_WithSlots$109<
|
|
5158
|
+
declare const _default$182: __VLS_WithSlots$109<vue69.DefineComponent<NavigationMenuSubProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5160
5159
|
"update:modelValue": (value: string) => any;
|
|
5161
|
-
}, string,
|
|
5160
|
+
}, string, vue69.PublicProps, Readonly<NavigationMenuSubProps> & Readonly<{
|
|
5162
5161
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5163
5162
|
}>, {
|
|
5164
5163
|
orientation: Orientation;
|
|
5165
|
-
}, {}, {}, {}, string,
|
|
5164
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5166
5165
|
default?: (props: {
|
|
5167
5166
|
/** Current input values */
|
|
5168
5167
|
modelValue: string;
|
|
@@ -5180,9 +5179,9 @@ interface NavigationMenuTriggerProps extends PrimitiveProps {
|
|
|
5180
5179
|
/** When `true`, prevents the user from interacting with item */
|
|
5181
5180
|
disabled?: boolean;
|
|
5182
5181
|
}
|
|
5183
|
-
declare const _default$183: __VLS_WithSlots$108<
|
|
5184
|
-
as: AsTag |
|
|
5185
|
-
}, {}, {}, {}, string,
|
|
5182
|
+
declare const _default$183: __VLS_WithSlots$108<vue69.DefineComponent<NavigationMenuTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<NavigationMenuTriggerProps> & Readonly<{}>, {
|
|
5183
|
+
as: AsTag | vue69.Component;
|
|
5184
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5186
5185
|
default?: (props: {}) => any;
|
|
5187
5186
|
}>;
|
|
5188
5187
|
type __VLS_WithSlots$108<T, S> = T & {
|
|
@@ -5205,9 +5204,9 @@ interface NavigationMenuViewportProps extends PrimitiveProps {
|
|
|
5205
5204
|
*/
|
|
5206
5205
|
align?: 'start' | 'center' | 'end';
|
|
5207
5206
|
}
|
|
5208
|
-
declare const _default$184: __VLS_WithSlots$107<
|
|
5207
|
+
declare const _default$184: __VLS_WithSlots$107<vue69.DefineComponent<NavigationMenuViewportProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<NavigationMenuViewportProps> & Readonly<{}>, {
|
|
5209
5208
|
align: "start" | "center" | "end";
|
|
5210
|
-
}, {}, {}, {}, string,
|
|
5209
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5211
5210
|
default?: (props: {}) => any;
|
|
5212
5211
|
}>;
|
|
5213
5212
|
type __VLS_WithSlots$107<T, S> = T & {
|
|
@@ -5221,9 +5220,9 @@ type __VLS_WithSlots$107<T, S> = T & {
|
|
|
5221
5220
|
interface NumberFieldDecrementProps extends PrimitiveProps {
|
|
5222
5221
|
disabled?: boolean;
|
|
5223
5222
|
}
|
|
5224
|
-
declare const _default$185: __VLS_WithSlots$106<
|
|
5225
|
-
as: AsTag |
|
|
5226
|
-
}, {}, {}, {}, string,
|
|
5223
|
+
declare const _default$185: __VLS_WithSlots$106<vue69.DefineComponent<NumberFieldDecrementProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<NumberFieldDecrementProps> & Readonly<{}>, {
|
|
5224
|
+
as: AsTag | vue69.Component;
|
|
5225
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5227
5226
|
default?: (props: {}) => any;
|
|
5228
5227
|
}>;
|
|
5229
5228
|
type __VLS_WithSlots$106<T, S> = T & {
|
|
@@ -5237,9 +5236,9 @@ type __VLS_WithSlots$106<T, S> = T & {
|
|
|
5237
5236
|
interface NumberFieldIncrementProps extends PrimitiveProps {
|
|
5238
5237
|
disabled?: boolean;
|
|
5239
5238
|
}
|
|
5240
|
-
declare const _default$186: __VLS_WithSlots$105<
|
|
5241
|
-
as: AsTag |
|
|
5242
|
-
}, {}, {}, {}, string,
|
|
5239
|
+
declare const _default$186: __VLS_WithSlots$105<vue69.DefineComponent<NumberFieldIncrementProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<NumberFieldIncrementProps> & Readonly<{}>, {
|
|
5240
|
+
as: AsTag | vue69.Component;
|
|
5241
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5243
5242
|
default?: (props: {}) => any;
|
|
5244
5243
|
}>;
|
|
5245
5244
|
type __VLS_WithSlots$105<T, S> = T & {
|
|
@@ -5251,9 +5250,9 @@ type __VLS_WithSlots$105<T, S> = T & {
|
|
|
5251
5250
|
//#endregion
|
|
5252
5251
|
//#region src/NumberField/NumberFieldInput.vue.d.ts
|
|
5253
5252
|
interface NumberFieldInputProps extends PrimitiveProps {}
|
|
5254
|
-
declare const _default$187: __VLS_WithSlots$104<
|
|
5255
|
-
as: AsTag |
|
|
5256
|
-
}, {}, {}, {}, string,
|
|
5253
|
+
declare const _default$187: __VLS_WithSlots$104<vue69.DefineComponent<NumberFieldInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<NumberFieldInputProps> & Readonly<{}>, {
|
|
5254
|
+
as: AsTag | vue69.Component;
|
|
5255
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5257
5256
|
default?: (props: {}) => any;
|
|
5258
5257
|
}>;
|
|
5259
5258
|
type __VLS_WithSlots$104<T, S> = T & {
|
|
@@ -5315,16 +5314,16 @@ interface NumberFieldRootContext {
|
|
|
5315
5314
|
id: Ref<string | undefined>;
|
|
5316
5315
|
}
|
|
5317
5316
|
declare const injectNumberFieldRootContext: <T extends NumberFieldRootContext | null | undefined = NumberFieldRootContext>(fallback?: T | undefined) => T extends null ? NumberFieldRootContext | null : NumberFieldRootContext, provideNumberFieldRootContext: (contextValue: NumberFieldRootContext) => NumberFieldRootContext;
|
|
5318
|
-
declare const _default$188: __VLS_WithSlots$103<
|
|
5317
|
+
declare const _default$188: __VLS_WithSlots$103<vue69.DefineComponent<NumberFieldRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5319
5318
|
"update:modelValue": (val: number) => any;
|
|
5320
|
-
}, string,
|
|
5319
|
+
}, string, vue69.PublicProps, Readonly<NumberFieldRootProps> & Readonly<{
|
|
5321
5320
|
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
5322
5321
|
}>, {
|
|
5323
|
-
as: AsTag |
|
|
5322
|
+
as: AsTag | vue69.Component;
|
|
5324
5323
|
defaultValue: number;
|
|
5325
5324
|
step: number;
|
|
5326
5325
|
stepSnapping: boolean;
|
|
5327
|
-
}, {}, {}, {}, string,
|
|
5326
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5328
5327
|
default?: (props: {
|
|
5329
5328
|
modelValue: number | undefined;
|
|
5330
5329
|
textValue: string;
|
|
@@ -5339,7 +5338,7 @@ type __VLS_WithSlots$103<T, S> = T & {
|
|
|
5339
5338
|
//#endregion
|
|
5340
5339
|
//#region src/Pagination/PaginationEllipsis.vue.d.ts
|
|
5341
5340
|
interface PaginationEllipsisProps extends PrimitiveProps {}
|
|
5342
|
-
declare const _default$189: __VLS_WithSlots$102<
|
|
5341
|
+
declare const _default$189: __VLS_WithSlots$102<vue69.DefineComponent<PaginationEllipsisProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5343
5342
|
default?: (props: {}) => any;
|
|
5344
5343
|
}>;
|
|
5345
5344
|
type __VLS_WithSlots$102<T, S> = T & {
|
|
@@ -5351,9 +5350,9 @@ type __VLS_WithSlots$102<T, S> = T & {
|
|
|
5351
5350
|
//#endregion
|
|
5352
5351
|
//#region src/Pagination/PaginationFirst.vue.d.ts
|
|
5353
5352
|
interface PaginationFirstProps extends PrimitiveProps {}
|
|
5354
|
-
declare const _default$190: __VLS_WithSlots$101<
|
|
5355
|
-
as: AsTag |
|
|
5356
|
-
}, {}, {}, {}, string,
|
|
5353
|
+
declare const _default$190: __VLS_WithSlots$101<vue69.DefineComponent<PaginationFirstProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PaginationFirstProps> & Readonly<{}>, {
|
|
5354
|
+
as: AsTag | vue69.Component;
|
|
5355
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5357
5356
|
default?: (props: {}) => any;
|
|
5358
5357
|
}>;
|
|
5359
5358
|
type __VLS_WithSlots$101<T, S> = T & {
|
|
@@ -5365,9 +5364,9 @@ type __VLS_WithSlots$101<T, S> = T & {
|
|
|
5365
5364
|
//#endregion
|
|
5366
5365
|
//#region src/Pagination/PaginationLast.vue.d.ts
|
|
5367
5366
|
interface PaginationLastProps extends PrimitiveProps {}
|
|
5368
|
-
declare const _default$191: __VLS_WithSlots$100<
|
|
5369
|
-
as: AsTag |
|
|
5370
|
-
}, {}, {}, {}, string,
|
|
5367
|
+
declare const _default$191: __VLS_WithSlots$100<vue69.DefineComponent<PaginationLastProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PaginationLastProps> & Readonly<{}>, {
|
|
5368
|
+
as: AsTag | vue69.Component;
|
|
5369
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5371
5370
|
default?: (props: {}) => any;
|
|
5372
5371
|
}>;
|
|
5373
5372
|
type __VLS_WithSlots$100<T, S> = T & {
|
|
@@ -5379,7 +5378,7 @@ type __VLS_WithSlots$100<T, S> = T & {
|
|
|
5379
5378
|
//#endregion
|
|
5380
5379
|
//#region src/Pagination/PaginationList.vue.d.ts
|
|
5381
5380
|
interface PaginationListProps extends PrimitiveProps {}
|
|
5382
|
-
declare const _default$192: __VLS_WithSlots$99<
|
|
5381
|
+
declare const _default$192: __VLS_WithSlots$99<vue69.DefineComponent<PaginationListProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PaginationListProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5383
5382
|
default?: (props: {
|
|
5384
5383
|
/** Pages item */
|
|
5385
5384
|
items: ({
|
|
@@ -5402,9 +5401,9 @@ interface PaginationListItemProps extends PrimitiveProps {
|
|
|
5402
5401
|
/** Value for the page */
|
|
5403
5402
|
value: number;
|
|
5404
5403
|
}
|
|
5405
|
-
declare const _default$193: __VLS_WithSlots$98<
|
|
5406
|
-
as: AsTag |
|
|
5407
|
-
}, {}, {}, {}, string,
|
|
5404
|
+
declare const _default$193: __VLS_WithSlots$98<vue69.DefineComponent<PaginationListItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PaginationListItemProps> & Readonly<{}>, {
|
|
5405
|
+
as: AsTag | vue69.Component;
|
|
5406
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5408
5407
|
default?: (props: {}) => any;
|
|
5409
5408
|
}>;
|
|
5410
5409
|
type __VLS_WithSlots$98<T, S> = T & {
|
|
@@ -5416,9 +5415,9 @@ type __VLS_WithSlots$98<T, S> = T & {
|
|
|
5416
5415
|
//#endregion
|
|
5417
5416
|
//#region src/Pagination/PaginationNext.vue.d.ts
|
|
5418
5417
|
interface PaginationNextProps extends PrimitiveProps {}
|
|
5419
|
-
declare const _default$194: __VLS_WithSlots$97<
|
|
5420
|
-
as: AsTag |
|
|
5421
|
-
}, {}, {}, {}, string,
|
|
5418
|
+
declare const _default$194: __VLS_WithSlots$97<vue69.DefineComponent<PaginationNextProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PaginationNextProps> & Readonly<{}>, {
|
|
5419
|
+
as: AsTag | vue69.Component;
|
|
5420
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5422
5421
|
default?: (props: {}) => any;
|
|
5423
5422
|
}>;
|
|
5424
5423
|
type __VLS_WithSlots$97<T, S> = T & {
|
|
@@ -5430,9 +5429,9 @@ type __VLS_WithSlots$97<T, S> = T & {
|
|
|
5430
5429
|
//#endregion
|
|
5431
5430
|
//#region src/Pagination/PaginationPrev.vue.d.ts
|
|
5432
5431
|
interface PaginationPrevProps extends PrimitiveProps {}
|
|
5433
|
-
declare const _default$195: __VLS_WithSlots$96<
|
|
5434
|
-
as: AsTag |
|
|
5435
|
-
}, {}, {}, {}, string,
|
|
5432
|
+
declare const _default$195: __VLS_WithSlots$96<vue69.DefineComponent<PaginationPrevProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PaginationPrevProps> & Readonly<{}>, {
|
|
5433
|
+
as: AsTag | vue69.Component;
|
|
5434
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5436
5435
|
default?: (props: {}) => any;
|
|
5437
5436
|
}>;
|
|
5438
5437
|
type __VLS_WithSlots$96<T, S> = T & {
|
|
@@ -5476,17 +5475,17 @@ type PaginationRootEmits = {
|
|
|
5476
5475
|
'update:page': [value: number];
|
|
5477
5476
|
};
|
|
5478
5477
|
declare const injectPaginationRootContext: <T extends PaginationRootContext | null | undefined = PaginationRootContext>(fallback?: T | undefined) => T extends null ? PaginationRootContext | null : PaginationRootContext, providePaginationRootContext: (contextValue: PaginationRootContext) => PaginationRootContext;
|
|
5479
|
-
declare const _default$196: __VLS_WithSlots$95<
|
|
5478
|
+
declare const _default$196: __VLS_WithSlots$95<vue69.DefineComponent<PaginationRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5480
5479
|
"update:page": (value: number) => any;
|
|
5481
|
-
}, string,
|
|
5480
|
+
}, string, vue69.PublicProps, Readonly<PaginationRootProps> & Readonly<{
|
|
5482
5481
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
5483
5482
|
}>, {
|
|
5484
|
-
as: AsTag |
|
|
5483
|
+
as: AsTag | vue69.Component;
|
|
5485
5484
|
defaultPage: number;
|
|
5486
5485
|
total: number;
|
|
5487
5486
|
siblingCount: number;
|
|
5488
5487
|
showEdges: boolean;
|
|
5489
|
-
}, {}, {}, {}, string,
|
|
5488
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5490
5489
|
default?: (props: {
|
|
5491
5490
|
/** Current page state */
|
|
5492
5491
|
page: number;
|
|
@@ -5508,9 +5507,9 @@ interface PinInputInputProps extends PrimitiveProps {
|
|
|
5508
5507
|
/** When `true`, prevents the user from interacting with the pin input */
|
|
5509
5508
|
disabled?: boolean;
|
|
5510
5509
|
}
|
|
5511
|
-
declare const _default$197: __VLS_WithSlots$94<
|
|
5512
|
-
as: AsTag |
|
|
5513
|
-
}, {}, {}, {}, string,
|
|
5510
|
+
declare const _default$197: __VLS_WithSlots$94<vue69.DefineComponent<PinInputInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PinInputInputProps> & Readonly<{}>, {
|
|
5511
|
+
as: AsTag | vue69.Component;
|
|
5512
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5514
5513
|
default?: (props: {}) => any;
|
|
5515
5514
|
}>;
|
|
5516
5515
|
type __VLS_WithSlots$94<T, S> = T & {
|
|
@@ -5567,8 +5566,8 @@ declare const _default$198: <Type extends PinInputType>(__VLS_props: NonNullable
|
|
|
5567
5566
|
props: __VLS_PrettifyLocal$6<Pick<Partial<{}> & Omit<{
|
|
5568
5567
|
readonly "onUpdate:modelValue"?: ((value: PinInputValue<Type>) => any) | undefined;
|
|
5569
5568
|
readonly onComplete?: ((value: PinInputValue<Type>) => any) | undefined;
|
|
5570
|
-
} &
|
|
5571
|
-
expose(exposed:
|
|
5569
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onUpdate:modelValue" | "onComplete"> & PinInputRootProps<Type> & Partial<{}>> & vue69.PublicProps;
|
|
5570
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
5572
5571
|
attrs: any;
|
|
5573
5572
|
slots: {
|
|
5574
5573
|
default?: (props: {
|
|
@@ -5577,7 +5576,7 @@ declare const _default$198: <Type extends PinInputType>(__VLS_props: NonNullable
|
|
|
5577
5576
|
}) => any;
|
|
5578
5577
|
};
|
|
5579
5578
|
emit: ((evt: "update:modelValue", value: PinInputValue<Type>) => void) & ((evt: "complete", value: PinInputValue<Type>) => void);
|
|
5580
|
-
}>) =>
|
|
5579
|
+
}>) => vue69.VNode & {
|
|
5581
5580
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
5582
5581
|
};
|
|
5583
5582
|
type __VLS_PrettifyLocal$6<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -5585,7 +5584,7 @@ type __VLS_PrettifyLocal$6<T> = { [K in keyof T]: T[K] } & {};
|
|
|
5585
5584
|
//#endregion
|
|
5586
5585
|
//#region src/Popover/PopoverAnchor.vue.d.ts
|
|
5587
5586
|
interface PopoverAnchorProps extends PopperAnchorProps {}
|
|
5588
|
-
declare const _default$199: __VLS_WithSlots$93<
|
|
5587
|
+
declare const _default$199: __VLS_WithSlots$93<vue69.DefineComponent<PopoverAnchorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5589
5588
|
default?: (props: {}) => any;
|
|
5590
5589
|
}>;
|
|
5591
5590
|
type __VLS_WithSlots$93<T, S> = T & {
|
|
@@ -5597,11 +5596,11 @@ type __VLS_WithSlots$93<T, S> = T & {
|
|
|
5597
5596
|
//#endregion
|
|
5598
5597
|
//#region src/Popover/PopoverArrow.vue.d.ts
|
|
5599
5598
|
interface PopoverArrowProps extends PopperArrowProps {}
|
|
5600
|
-
declare const _default$200: __VLS_WithSlots$92<
|
|
5601
|
-
as: AsTag |
|
|
5599
|
+
declare const _default$200: __VLS_WithSlots$92<vue69.DefineComponent<PopoverArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PopoverArrowProps> & Readonly<{}>, {
|
|
5600
|
+
as: AsTag | vue69.Component;
|
|
5602
5601
|
width: number;
|
|
5603
5602
|
height: number;
|
|
5604
|
-
}, {}, {}, {}, string,
|
|
5603
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5605
5604
|
default?: (props: {}) => any;
|
|
5606
5605
|
}>;
|
|
5607
5606
|
type __VLS_WithSlots$92<T, S> = T & {
|
|
@@ -5613,9 +5612,9 @@ type __VLS_WithSlots$92<T, S> = T & {
|
|
|
5613
5612
|
//#endregion
|
|
5614
5613
|
//#region src/Popover/PopoverClose.vue.d.ts
|
|
5615
5614
|
interface PopoverCloseProps extends PrimitiveProps {}
|
|
5616
|
-
declare const _default$201: __VLS_WithSlots$91<
|
|
5617
|
-
as: AsTag |
|
|
5618
|
-
}, {}, {}, {}, string,
|
|
5615
|
+
declare const _default$201: __VLS_WithSlots$91<vue69.DefineComponent<PopoverCloseProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PopoverCloseProps> & Readonly<{}>, {
|
|
5616
|
+
as: AsTag | vue69.Component;
|
|
5617
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5619
5618
|
default?: (props: {}) => any;
|
|
5620
5619
|
}>;
|
|
5621
5620
|
type __VLS_WithSlots$91<T, S> = T & {
|
|
@@ -5649,21 +5648,21 @@ interface PopoverContentProps extends PopoverContentImplProps {
|
|
|
5649
5648
|
*/
|
|
5650
5649
|
forceMount?: boolean;
|
|
5651
5650
|
}
|
|
5652
|
-
declare const _default$202: __VLS_WithSlots$90<
|
|
5651
|
+
declare const _default$202: __VLS_WithSlots$90<vue69.DefineComponent<PopoverContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5652
|
+
openAutoFocus: (event: Event) => any;
|
|
5653
5653
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
5654
5654
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
5655
5655
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
5656
5656
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
5657
|
-
openAutoFocus: (event: Event) => any;
|
|
5658
5657
|
closeAutoFocus: (event: Event) => any;
|
|
5659
|
-
}, string,
|
|
5658
|
+
}, string, vue69.PublicProps, Readonly<PopoverContentProps> & Readonly<{
|
|
5659
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
5660
5660
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
5661
5661
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
5662
5662
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
5663
5663
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
5664
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
5665
5664
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
5666
|
-
}>, {}, {}, {}, {}, string,
|
|
5665
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5667
5666
|
default?: (props: {}) => any;
|
|
5668
5667
|
} & {
|
|
5669
5668
|
default?: (props: {}) => any;
|
|
@@ -5677,7 +5676,7 @@ type __VLS_WithSlots$90<T, S> = T & {
|
|
|
5677
5676
|
//#endregion
|
|
5678
5677
|
//#region src/Popover/PopoverPortal.vue.d.ts
|
|
5679
5678
|
interface PopoverPortalProps extends TeleportProps {}
|
|
5680
|
-
declare const _default$203: __VLS_WithSlots$89<
|
|
5679
|
+
declare const _default$203: __VLS_WithSlots$89<vue69.DefineComponent<PopoverPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PopoverPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5681
5680
|
default?: (props: {}) => any;
|
|
5682
5681
|
}>;
|
|
5683
5682
|
type __VLS_WithSlots$89<T, S> = T & {
|
|
@@ -5721,15 +5720,15 @@ interface PopoverRootContext {
|
|
|
5721
5720
|
hasCustomAnchor: Ref<boolean>;
|
|
5722
5721
|
}
|
|
5723
5722
|
declare const injectPopoverRootContext: <T extends PopoverRootContext | null | undefined = PopoverRootContext>(fallback?: T | undefined) => T extends null ? PopoverRootContext | null : PopoverRootContext, providePopoverRootContext: (contextValue: PopoverRootContext) => PopoverRootContext;
|
|
5724
|
-
declare const _default$204: __VLS_WithSlots$88<
|
|
5723
|
+
declare const _default$204: __VLS_WithSlots$88<vue69.DefineComponent<PopoverRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5725
5724
|
"update:open": (value: boolean) => any;
|
|
5726
|
-
}, string,
|
|
5725
|
+
}, string, vue69.PublicProps, Readonly<PopoverRootProps> & Readonly<{
|
|
5727
5726
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
5728
5727
|
}>, {
|
|
5729
|
-
modal: boolean;
|
|
5730
|
-
open: boolean;
|
|
5731
5728
|
defaultOpen: boolean;
|
|
5732
|
-
|
|
5729
|
+
open: boolean;
|
|
5730
|
+
modal: boolean;
|
|
5731
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5733
5732
|
default?: (props: {
|
|
5734
5733
|
/** Current open state */
|
|
5735
5734
|
open: boolean;
|
|
@@ -5746,9 +5745,9 @@ type __VLS_WithSlots$88<T, S> = T & {
|
|
|
5746
5745
|
//#endregion
|
|
5747
5746
|
//#region src/Popover/PopoverTrigger.vue.d.ts
|
|
5748
5747
|
interface PopoverTriggerProps extends PrimitiveProps {}
|
|
5749
|
-
declare const _default$205: __VLS_WithSlots$87<
|
|
5750
|
-
as: AsTag |
|
|
5751
|
-
}, {}, {}, {}, string,
|
|
5748
|
+
declare const _default$205: __VLS_WithSlots$87<vue69.DefineComponent<PopoverTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<PopoverTriggerProps> & Readonly<{}>, {
|
|
5749
|
+
as: AsTag | vue69.Component;
|
|
5750
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5752
5751
|
default?: (props: {}) => any;
|
|
5753
5752
|
}>;
|
|
5754
5753
|
type __VLS_WithSlots$87<T, S> = T & {
|
|
@@ -5775,7 +5774,7 @@ interface PresenceProps {
|
|
|
5775
5774
|
*/
|
|
5776
5775
|
forceMount?: boolean;
|
|
5777
5776
|
}
|
|
5778
|
-
declare const _default$206:
|
|
5777
|
+
declare const _default$206: vue69.DefineComponent<vue69.ExtractPropTypes<{
|
|
5779
5778
|
present: {
|
|
5780
5779
|
type: BooleanConstructor;
|
|
5781
5780
|
required: true;
|
|
@@ -5783,9 +5782,9 @@ declare const _default$206: vue157.DefineComponent<vue157.ExtractPropTypes<{
|
|
|
5783
5782
|
forceMount: {
|
|
5784
5783
|
type: BooleanConstructor;
|
|
5785
5784
|
};
|
|
5786
|
-
}>, () => VNode<
|
|
5785
|
+
}>, () => VNode<vue69.RendererNode, vue69.RendererElement, {
|
|
5787
5786
|
[key: string]: any;
|
|
5788
|
-
}> | null, {}, {}, {},
|
|
5787
|
+
}> | null, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<vue69.ExtractPropTypes<{
|
|
5789
5788
|
present: {
|
|
5790
5789
|
type: BooleanConstructor;
|
|
5791
5790
|
required: true;
|
|
@@ -5799,11 +5798,11 @@ declare const _default$206: vue157.DefineComponent<vue157.ExtractPropTypes<{
|
|
|
5799
5798
|
default: (opts: {
|
|
5800
5799
|
present: boolean;
|
|
5801
5800
|
}) => any;
|
|
5802
|
-
}>, {}, {}, string,
|
|
5801
|
+
}>, {}, {}, string, vue69.ComponentProvideOptions, true, {}, any>;
|
|
5803
5802
|
//#endregion
|
|
5804
5803
|
//#region src/Progress/ProgressIndicator.vue.d.ts
|
|
5805
5804
|
interface ProgressIndicatorProps extends PrimitiveProps {}
|
|
5806
|
-
declare const _default$207: __VLS_WithSlots$86<
|
|
5805
|
+
declare const _default$207: __VLS_WithSlots$86<vue69.DefineComponent<ProgressIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ProgressIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5807
5806
|
default?: (props: {}) => any;
|
|
5808
5807
|
}>;
|
|
5809
5808
|
type __VLS_WithSlots$86<T, S> = T & {
|
|
@@ -5843,16 +5842,16 @@ interface ProgressRootContext {
|
|
|
5843
5842
|
}
|
|
5844
5843
|
declare const injectProgressRootContext: <T extends ProgressRootContext | null | undefined = ProgressRootContext>(fallback?: T | undefined) => T extends null ? ProgressRootContext | null : ProgressRootContext, provideProgressRootContext: (contextValue: ProgressRootContext) => ProgressRootContext;
|
|
5845
5844
|
type ProgressState = 'indeterminate' | 'loading' | 'complete';
|
|
5846
|
-
declare const _default$208: __VLS_WithSlots$85<
|
|
5845
|
+
declare const _default$208: __VLS_WithSlots$85<vue69.DefineComponent<ProgressRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5847
5846
|
"update:modelValue": (value: string[] | undefined) => any;
|
|
5848
5847
|
"update:max": (value: number) => any;
|
|
5849
|
-
}, string,
|
|
5848
|
+
}, string, vue69.PublicProps, Readonly<ProgressRootProps> & Readonly<{
|
|
5850
5849
|
"onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
|
|
5851
5850
|
"onUpdate:max"?: ((value: number) => any) | undefined;
|
|
5852
5851
|
}>, {
|
|
5853
5852
|
max: number;
|
|
5854
5853
|
getValueLabel: (value: number | null | undefined, max: number) => string | undefined;
|
|
5855
|
-
}, {}, {}, {}, string,
|
|
5854
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5856
5855
|
default?: (props: {
|
|
5857
5856
|
/** Current input values */
|
|
5858
5857
|
modelValue: number | null | undefined;
|
|
@@ -5873,9 +5872,9 @@ interface RadioGroupIndicatorProps extends PrimitiveProps {
|
|
|
5873
5872
|
*/
|
|
5874
5873
|
forceMount?: boolean;
|
|
5875
5874
|
}
|
|
5876
|
-
declare const _default$209: __VLS_WithSlots$84<
|
|
5877
|
-
as: AsTag |
|
|
5878
|
-
}, {}, {}, {}, string,
|
|
5875
|
+
declare const _default$209: __VLS_WithSlots$84<vue69.DefineComponent<RadioGroupIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RadioGroupIndicatorProps> & Readonly<{}>, {
|
|
5876
|
+
as: AsTag | vue69.Component;
|
|
5877
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5879
5878
|
default?: (props: {}) => any;
|
|
5880
5879
|
}>;
|
|
5881
5880
|
type __VLS_WithSlots$84<T, S> = T & {
|
|
@@ -5908,14 +5907,14 @@ interface RadioGroupItemContext {
|
|
|
5908
5907
|
checked: ComputedRef<boolean>;
|
|
5909
5908
|
}
|
|
5910
5909
|
declare const injectRadioGroupItemContext: <T extends RadioGroupItemContext | null | undefined = RadioGroupItemContext>(fallback?: T | undefined) => T extends null ? RadioGroupItemContext | null : RadioGroupItemContext, provideRadiogroupItemContext: (contextValue: RadioGroupItemContext) => RadioGroupItemContext;
|
|
5911
|
-
declare const _default$210: __VLS_WithSlots$83<
|
|
5910
|
+
declare const _default$210: __VLS_WithSlots$83<vue69.DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5912
5911
|
select: (event: SelectEvent$1) => any;
|
|
5913
|
-
}, string,
|
|
5912
|
+
}, string, vue69.PublicProps, Readonly<RadioGroupItemProps> & Readonly<{
|
|
5914
5913
|
onSelect?: ((event: SelectEvent$1) => any) | undefined;
|
|
5915
5914
|
}>, {
|
|
5916
|
-
as: AsTag |
|
|
5915
|
+
as: AsTag | vue69.Component;
|
|
5917
5916
|
disabled: boolean;
|
|
5918
|
-
}, {}, {}, {}, string,
|
|
5917
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5919
5918
|
default?: (props: {
|
|
5920
5919
|
/** Current checked state */
|
|
5921
5920
|
checked: boolean;
|
|
@@ -5965,16 +5964,16 @@ interface RadioGroupRootContext {
|
|
|
5965
5964
|
required: Ref<boolean>;
|
|
5966
5965
|
}
|
|
5967
5966
|
declare const injectRadioGroupRootContext: <T extends RadioGroupRootContext | null | undefined = RadioGroupRootContext>(fallback?: T | undefined) => T extends null ? RadioGroupRootContext | null : RadioGroupRootContext, provideRadioGroupRootContext: (contextValue: RadioGroupRootContext) => RadioGroupRootContext;
|
|
5968
|
-
declare const _default$211: __VLS_WithSlots$82<
|
|
5967
|
+
declare const _default$211: __VLS_WithSlots$82<vue69.DefineComponent<RadioGroupRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
5969
5968
|
"update:modelValue": (payload: string) => any;
|
|
5970
|
-
}, string,
|
|
5969
|
+
}, string, vue69.PublicProps, Readonly<RadioGroupRootProps> & Readonly<{
|
|
5971
5970
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
5972
5971
|
}>, {
|
|
5973
5972
|
required: boolean;
|
|
5974
5973
|
disabled: boolean;
|
|
5975
5974
|
orientation: DataOrientation;
|
|
5976
5975
|
loop: boolean;
|
|
5977
|
-
}, {}, {}, {}, string,
|
|
5976
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5978
5977
|
default?: (props: {
|
|
5979
5978
|
/** Current input values */
|
|
5980
5979
|
modelValue: AcceptableValue | undefined;
|
|
@@ -5991,9 +5990,9 @@ type __VLS_WithSlots$82<T, S> = T & {
|
|
|
5991
5990
|
interface RangeCalendarCellProps extends PrimitiveProps {
|
|
5992
5991
|
date: DateValue$1;
|
|
5993
5992
|
}
|
|
5994
|
-
declare const _default$212: __VLS_WithSlots$81<
|
|
5995
|
-
as: AsTag |
|
|
5996
|
-
}, {}, {}, {}, string,
|
|
5993
|
+
declare const _default$212: __VLS_WithSlots$81<vue69.DefineComponent<RangeCalendarCellProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarCellProps> & Readonly<{}>, {
|
|
5994
|
+
as: AsTag | vue69.Component;
|
|
5995
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
5997
5996
|
default?: (props: {}) => any;
|
|
5998
5997
|
}>;
|
|
5999
5998
|
type __VLS_WithSlots$81<T, S> = T & {
|
|
@@ -6005,9 +6004,9 @@ type __VLS_WithSlots$81<T, S> = T & {
|
|
|
6005
6004
|
//#endregion
|
|
6006
6005
|
//#region src/RangeCalendar/RangeCalendarGrid.vue.d.ts
|
|
6007
6006
|
interface RangeCalendarGridProps extends PrimitiveProps {}
|
|
6008
|
-
declare const _default$214: __VLS_WithSlots$80<
|
|
6009
|
-
as: AsTag |
|
|
6010
|
-
}, {}, {}, {}, string,
|
|
6007
|
+
declare const _default$214: __VLS_WithSlots$80<vue69.DefineComponent<RangeCalendarGridProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarGridProps> & Readonly<{}>, {
|
|
6008
|
+
as: AsTag | vue69.Component;
|
|
6009
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6011
6010
|
default?: (props: {}) => any;
|
|
6012
6011
|
}>;
|
|
6013
6012
|
type __VLS_WithSlots$80<T, S> = T & {
|
|
@@ -6019,9 +6018,9 @@ type __VLS_WithSlots$80<T, S> = T & {
|
|
|
6019
6018
|
//#endregion
|
|
6020
6019
|
//#region src/RangeCalendar/RangeCalendarGridBody.vue.d.ts
|
|
6021
6020
|
interface RangeCalendarGridBodyProps extends PrimitiveProps {}
|
|
6022
|
-
declare const _default$215: __VLS_WithSlots$79<
|
|
6023
|
-
as: AsTag |
|
|
6024
|
-
}, {}, {}, {}, string,
|
|
6021
|
+
declare const _default$215: __VLS_WithSlots$79<vue69.DefineComponent<RangeCalendarGridBodyProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarGridBodyProps> & Readonly<{}>, {
|
|
6022
|
+
as: AsTag | vue69.Component;
|
|
6023
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6025
6024
|
default?: (props: {}) => any;
|
|
6026
6025
|
}>;
|
|
6027
6026
|
type __VLS_WithSlots$79<T, S> = T & {
|
|
@@ -6033,9 +6032,9 @@ type __VLS_WithSlots$79<T, S> = T & {
|
|
|
6033
6032
|
//#endregion
|
|
6034
6033
|
//#region src/RangeCalendar/RangeCalendarGridHead.vue.d.ts
|
|
6035
6034
|
interface RangeCalendarGridHeadProps extends PrimitiveProps {}
|
|
6036
|
-
declare const _default$216: __VLS_WithSlots$78<
|
|
6037
|
-
as: AsTag |
|
|
6038
|
-
}, {}, {}, {}, string,
|
|
6035
|
+
declare const _default$216: __VLS_WithSlots$78<vue69.DefineComponent<RangeCalendarGridHeadProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarGridHeadProps> & Readonly<{}>, {
|
|
6036
|
+
as: AsTag | vue69.Component;
|
|
6037
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6039
6038
|
default?: (props: {}) => any;
|
|
6040
6039
|
}>;
|
|
6041
6040
|
type __VLS_WithSlots$78<T, S> = T & {
|
|
@@ -6047,9 +6046,9 @@ type __VLS_WithSlots$78<T, S> = T & {
|
|
|
6047
6046
|
//#endregion
|
|
6048
6047
|
//#region src/RangeCalendar/RangeCalendarGridRow.vue.d.ts
|
|
6049
6048
|
interface RangeCalendarGridRowProps extends PrimitiveProps {}
|
|
6050
|
-
declare const _default$217: __VLS_WithSlots$77<
|
|
6051
|
-
as: AsTag |
|
|
6052
|
-
}, {}, {}, {}, string,
|
|
6049
|
+
declare const _default$217: __VLS_WithSlots$77<vue69.DefineComponent<RangeCalendarGridRowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarGridRowProps> & Readonly<{}>, {
|
|
6050
|
+
as: AsTag | vue69.Component;
|
|
6051
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6053
6052
|
default?: (props: {}) => any;
|
|
6054
6053
|
}>;
|
|
6055
6054
|
type __VLS_WithSlots$77<T, S> = T & {
|
|
@@ -6061,9 +6060,9 @@ type __VLS_WithSlots$77<T, S> = T & {
|
|
|
6061
6060
|
//#endregion
|
|
6062
6061
|
//#region src/RangeCalendar/RangeCalendarHeadCell.vue.d.ts
|
|
6063
6062
|
interface RangeCalendarHeadCellProps extends PrimitiveProps {}
|
|
6064
|
-
declare const _default$218: __VLS_WithSlots$76<
|
|
6065
|
-
as: AsTag |
|
|
6066
|
-
}, {}, {}, {}, string,
|
|
6063
|
+
declare const _default$218: __VLS_WithSlots$76<vue69.DefineComponent<RangeCalendarHeadCellProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarHeadCellProps> & Readonly<{}>, {
|
|
6064
|
+
as: AsTag | vue69.Component;
|
|
6065
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6067
6066
|
default?: (props: {}) => any;
|
|
6068
6067
|
}>;
|
|
6069
6068
|
type __VLS_WithSlots$76<T, S> = T & {
|
|
@@ -6075,9 +6074,9 @@ type __VLS_WithSlots$76<T, S> = T & {
|
|
|
6075
6074
|
//#endregion
|
|
6076
6075
|
//#region src/RangeCalendar/RangeCalendarHeader.vue.d.ts
|
|
6077
6076
|
interface RangeCalendarHeaderProps extends PrimitiveProps {}
|
|
6078
|
-
declare const _default$219: __VLS_WithSlots$75<
|
|
6079
|
-
as: AsTag |
|
|
6080
|
-
}, {}, {}, {}, string,
|
|
6077
|
+
declare const _default$219: __VLS_WithSlots$75<vue69.DefineComponent<RangeCalendarHeaderProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarHeaderProps> & Readonly<{}>, {
|
|
6078
|
+
as: AsTag | vue69.Component;
|
|
6079
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6081
6080
|
default?: (props: {}) => any;
|
|
6082
6081
|
}>;
|
|
6083
6082
|
type __VLS_WithSlots$75<T, S> = T & {
|
|
@@ -6089,9 +6088,9 @@ type __VLS_WithSlots$75<T, S> = T & {
|
|
|
6089
6088
|
//#endregion
|
|
6090
6089
|
//#region src/RangeCalendar/RangeCalendarHeading.vue.d.ts
|
|
6091
6090
|
interface RangeCalendarHeadingProps extends PrimitiveProps {}
|
|
6092
|
-
declare const _default$220: __VLS_WithSlots$74<
|
|
6093
|
-
as: AsTag |
|
|
6094
|
-
}, {}, {}, {}, string,
|
|
6091
|
+
declare const _default$220: __VLS_WithSlots$74<vue69.DefineComponent<RangeCalendarHeadingProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<RangeCalendarHeadingProps> & Readonly<{}>, {
|
|
6092
|
+
as: AsTag | vue69.Component;
|
|
6093
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6095
6094
|
default?: (props: {
|
|
6096
6095
|
/** Current month and year */
|
|
6097
6096
|
headingValue: string;
|
|
@@ -6152,7 +6151,6 @@ type RangeCalendarRootContext = {
|
|
|
6152
6151
|
disableDaysOutsideCurrentView: Ref<boolean>;
|
|
6153
6152
|
fixedDate: Ref<'start' | 'end' | undefined>;
|
|
6154
6153
|
maximumDays: Ref<number | undefined>;
|
|
6155
|
-
startingWeekNumberPerMonth: ComputedRef<number[][]>;
|
|
6156
6154
|
};
|
|
6157
6155
|
interface RangeCalendarRootProps extends PrimitiveProps {
|
|
6158
6156
|
/** The default placeholder date */
|
|
@@ -6219,34 +6217,34 @@ type RangeCalendarRootEmits = {
|
|
|
6219
6217
|
'update:startValue': [date: DateValue$1 | undefined];
|
|
6220
6218
|
};
|
|
6221
6219
|
declare const injectRangeCalendarRootContext: <T extends RangeCalendarRootContext | null | undefined = RangeCalendarRootContext>(fallback?: T | undefined) => T extends null ? RangeCalendarRootContext | null : RangeCalendarRootContext, provideRangeCalendarRootContext: (contextValue: RangeCalendarRootContext) => RangeCalendarRootContext;
|
|
6222
|
-
declare const _default$223: __VLS_WithSlots$73<
|
|
6220
|
+
declare const _default$223: __VLS_WithSlots$73<vue69.DefineComponent<RangeCalendarRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
6223
6221
|
"update:modelValue": (date: DateRange) => any;
|
|
6224
6222
|
"update:placeholder": (date: DateValue$1) => any;
|
|
6225
6223
|
"update:startValue": (date: DateValue$1 | undefined) => any;
|
|
6226
|
-
}, string,
|
|
6224
|
+
}, string, vue69.PublicProps, Readonly<RangeCalendarRootProps> & Readonly<{
|
|
6227
6225
|
"onUpdate:modelValue"?: ((date: DateRange) => any) | undefined;
|
|
6228
6226
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
6229
6227
|
"onUpdate:startValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
6230
6228
|
}>, {
|
|
6231
|
-
as: AsTag |
|
|
6229
|
+
as: AsTag | vue69.Component;
|
|
6232
6230
|
disabled: boolean;
|
|
6233
6231
|
defaultValue: DateRange;
|
|
6234
6232
|
placeholder: DateValue$1;
|
|
6235
|
-
readonly: boolean;
|
|
6236
|
-
isDateUnavailable: Matcher;
|
|
6237
6233
|
pagedNavigation: boolean;
|
|
6238
6234
|
preventDeselect: boolean;
|
|
6239
6235
|
weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
6240
6236
|
weekdayFormat: WeekDayFormat;
|
|
6241
6237
|
fixedWeeks: boolean;
|
|
6242
6238
|
numberOfMonths: number;
|
|
6239
|
+
readonly: boolean;
|
|
6243
6240
|
initialFocus: boolean;
|
|
6244
6241
|
isDateDisabled: Matcher;
|
|
6242
|
+
isDateUnavailable: Matcher;
|
|
6245
6243
|
disableDaysOutsideCurrentView: boolean;
|
|
6244
|
+
isDateHighlightable: Matcher;
|
|
6246
6245
|
allowNonContiguousRanges: boolean;
|
|
6247
6246
|
maximumDays: number;
|
|
6248
|
-
|
|
6249
|
-
}, {}, {}, {}, string, vue157.ComponentProvideOptions, false, {}, any>, {
|
|
6247
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6250
6248
|
default?: (props: {
|
|
6251
6249
|
/** The current date of the placeholder */
|
|
6252
6250
|
date: DateValue$1;
|
|
@@ -6273,7 +6271,7 @@ type __VLS_WithSlots$73<T, S> = T & {
|
|
|
6273
6271
|
//#endregion
|
|
6274
6272
|
//#region src/ScrollArea/ScrollAreaCorner.vue.d.ts
|
|
6275
6273
|
interface ScrollAreaCornerProps extends PrimitiveProps {}
|
|
6276
|
-
declare const _default$226: __VLS_WithSlots$72<
|
|
6274
|
+
declare const _default$226: __VLS_WithSlots$72<vue69.DefineComponent<ScrollAreaCornerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ScrollAreaCornerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6277
6275
|
default?: (props: {}) => any;
|
|
6278
6276
|
}>;
|
|
6279
6277
|
type __VLS_WithSlots$72<T, S> = T & {
|
|
@@ -6325,17 +6323,17 @@ interface ScrollAreaRootProps extends PrimitiveProps {
|
|
|
6325
6323
|
/** 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. */
|
|
6326
6324
|
scrollHideDelay?: number;
|
|
6327
6325
|
}
|
|
6328
|
-
declare const _default$227: __VLS_WithSlots$71<
|
|
6326
|
+
declare const _default$227: __VLS_WithSlots$71<vue69.DefineComponent<ScrollAreaRootProps, {
|
|
6329
6327
|
/** Viewport element within ScrollArea */
|
|
6330
6328
|
viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
6331
6329
|
/** Scroll viewport to top */
|
|
6332
6330
|
scrollTop: () => void;
|
|
6333
6331
|
/** Scroll viewport to top-left */
|
|
6334
6332
|
scrollTopLeft: () => void;
|
|
6335
|
-
}, {}, {}, {},
|
|
6333
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ScrollAreaRootProps> & Readonly<{}>, {
|
|
6336
6334
|
type: ScrollType;
|
|
6337
6335
|
scrollHideDelay: number;
|
|
6338
|
-
}, {}, {}, {}, string,
|
|
6336
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6339
6337
|
default?: (props: {}) => any;
|
|
6340
6338
|
}>;
|
|
6341
6339
|
type __VLS_WithSlots$71<T, S> = T & {
|
|
@@ -6363,10 +6361,10 @@ interface ScrollAreaScollbarContext {
|
|
|
6363
6361
|
asChild: Ref<boolean>;
|
|
6364
6362
|
}
|
|
6365
6363
|
declare const injectScrollAreaScrollbarContext: <T extends ScrollAreaScollbarContext | null | undefined = ScrollAreaScollbarContext>(fallback?: T | undefined) => T extends null ? ScrollAreaScollbarContext | null : ScrollAreaScollbarContext, provideScrollAreaScrollbarContext: (contextValue: ScrollAreaScollbarContext) => ScrollAreaScollbarContext;
|
|
6366
|
-
declare const _default$228: __VLS_WithSlots$70<
|
|
6367
|
-
as: AsTag |
|
|
6364
|
+
declare const _default$228: __VLS_WithSlots$70<vue69.DefineComponent<ScrollAreaScrollbarProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ScrollAreaScrollbarProps> & Readonly<{}>, {
|
|
6365
|
+
as: AsTag | vue69.Component;
|
|
6368
6366
|
orientation: "vertical" | "horizontal";
|
|
6369
|
-
}, {}, {}, {}, string,
|
|
6367
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6370
6368
|
default?: (props: {}) => any;
|
|
6371
6369
|
} & {
|
|
6372
6370
|
default?: (props: {}) => any;
|
|
@@ -6384,7 +6382,7 @@ type __VLS_WithSlots$70<T, S> = T & {
|
|
|
6384
6382
|
//#endregion
|
|
6385
6383
|
//#region src/ScrollArea/ScrollAreaThumb.vue.d.ts
|
|
6386
6384
|
interface ScrollAreaThumbProps extends PrimitiveProps {}
|
|
6387
|
-
declare const _default$229: __VLS_WithSlots$69<
|
|
6385
|
+
declare const _default$229: __VLS_WithSlots$69<vue69.DefineComponent<ScrollAreaThumbProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ScrollAreaThumbProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6388
6386
|
default?: (props: {}) => any;
|
|
6389
6387
|
}>;
|
|
6390
6388
|
type __VLS_WithSlots$69<T, S> = T & {
|
|
@@ -6401,9 +6399,9 @@ interface ScrollAreaViewportProps extends PrimitiveProps {
|
|
|
6401
6399
|
*/
|
|
6402
6400
|
nonce?: string;
|
|
6403
6401
|
}
|
|
6404
|
-
declare const _default$230: __VLS_WithSlots$68<
|
|
6405
|
-
viewportElement:
|
|
6406
|
-
}, {}, {}, {},
|
|
6402
|
+
declare const _default$230: __VLS_WithSlots$68<vue69.DefineComponent<ScrollAreaViewportProps, {
|
|
6403
|
+
viewportElement: vue69.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
6404
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ScrollAreaViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6407
6405
|
default?: (props: {}) => any;
|
|
6408
6406
|
}>;
|
|
6409
6407
|
type __VLS_WithSlots$68<T, S> = T & {
|
|
@@ -6415,11 +6413,11 @@ type __VLS_WithSlots$68<T, S> = T & {
|
|
|
6415
6413
|
//#endregion
|
|
6416
6414
|
//#region src/Select/SelectArrow.vue.d.ts
|
|
6417
6415
|
interface SelectArrowProps extends PopperArrowProps {}
|
|
6418
|
-
declare const _default$231: __VLS_WithSlots$67<
|
|
6419
|
-
as: AsTag |
|
|
6416
|
+
declare const _default$231: __VLS_WithSlots$67<vue69.DefineComponent<SelectArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectArrowProps> & Readonly<{}>, {
|
|
6417
|
+
as: AsTag | vue69.Component;
|
|
6420
6418
|
width: number;
|
|
6421
6419
|
height: number;
|
|
6422
|
-
}, {}, {}, {}, string,
|
|
6420
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6423
6421
|
default?: (props: {}) => any;
|
|
6424
6422
|
}>;
|
|
6425
6423
|
type __VLS_WithSlots$67<T, S> = T & {
|
|
@@ -6469,15 +6467,15 @@ interface SelectContentProps extends SelectContentImplProps {
|
|
|
6469
6467
|
*/
|
|
6470
6468
|
forceMount?: boolean;
|
|
6471
6469
|
}
|
|
6472
|
-
declare const _default$232: __VLS_WithSlots$66<
|
|
6470
|
+
declare const _default$232: __VLS_WithSlots$66<vue69.DefineComponent<SelectContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
6473
6471
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
6474
6472
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
6475
6473
|
closeAutoFocus: (event: Event) => any;
|
|
6476
|
-
}, string,
|
|
6474
|
+
}, string, vue69.PublicProps, Readonly<SelectContentProps> & Readonly<{
|
|
6477
6475
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
6478
6476
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
6479
6477
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
6480
|
-
}>, {}, {}, {}, {}, string,
|
|
6478
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6481
6479
|
default?: (props: {}) => any;
|
|
6482
6480
|
} & {
|
|
6483
6481
|
default?: (props: {}) => any;
|
|
@@ -6495,7 +6493,7 @@ interface SelectGroupContext {
|
|
|
6495
6493
|
id: string;
|
|
6496
6494
|
}
|
|
6497
6495
|
declare const injectSelectGroupContext: <T extends SelectGroupContext | null | undefined = SelectGroupContext>(fallback?: T | undefined) => T extends null ? SelectGroupContext | null : SelectGroupContext, provideSelectGroupContext: (contextValue: SelectGroupContext) => SelectGroupContext;
|
|
6498
|
-
declare const _default$233: __VLS_WithSlots$65<
|
|
6496
|
+
declare const _default$233: __VLS_WithSlots$65<vue69.DefineComponent<SelectGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6499
6497
|
default?: (props: {}) => any;
|
|
6500
6498
|
}>;
|
|
6501
6499
|
type __VLS_WithSlots$65<T, S> = T & {
|
|
@@ -6507,9 +6505,9 @@ type __VLS_WithSlots$65<T, S> = T & {
|
|
|
6507
6505
|
//#endregion
|
|
6508
6506
|
//#region src/Select/SelectIcon.vue.d.ts
|
|
6509
6507
|
interface SelectIconProps extends PrimitiveProps {}
|
|
6510
|
-
declare const _default$234: __VLS_WithSlots$64<
|
|
6511
|
-
as: AsTag |
|
|
6512
|
-
}, {}, {}, {}, string,
|
|
6508
|
+
declare const _default$234: __VLS_WithSlots$64<vue69.DefineComponent<SelectIconProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectIconProps> & Readonly<{}>, {
|
|
6509
|
+
as: AsTag | vue69.Component;
|
|
6510
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6513
6511
|
default?: (props: {}) => any;
|
|
6514
6512
|
}>;
|
|
6515
6513
|
type __VLS_WithSlots$64<T, S> = T & {
|
|
@@ -6549,14 +6547,14 @@ interface SelectItemProps<T = AcceptableValue> extends PrimitiveProps {
|
|
|
6549
6547
|
declare const _default$235: <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<{
|
|
6550
6548
|
props: __VLS_PrettifyLocal$5<Pick<Partial<{}> & Omit<{
|
|
6551
6549
|
readonly onSelect?: ((event: SelectEvent$2<T>) => any) | undefined;
|
|
6552
|
-
} &
|
|
6553
|
-
expose(exposed:
|
|
6550
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onSelect"> & SelectItemProps<AcceptableValue> & Partial<{}>> & vue69.PublicProps;
|
|
6551
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
6554
6552
|
attrs: any;
|
|
6555
6553
|
slots: {
|
|
6556
6554
|
default?: (props: {}) => any;
|
|
6557
6555
|
};
|
|
6558
6556
|
emit: (evt: "select", event: SelectEvent$2<T>) => void;
|
|
6559
|
-
}>) =>
|
|
6557
|
+
}>) => vue69.VNode & {
|
|
6560
6558
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
6561
6559
|
};
|
|
6562
6560
|
type __VLS_PrettifyLocal$5<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -6564,9 +6562,9 @@ type __VLS_PrettifyLocal$5<T> = { [K in keyof T]: T[K] } & {};
|
|
|
6564
6562
|
//#endregion
|
|
6565
6563
|
//#region src/Select/SelectItemIndicator.vue.d.ts
|
|
6566
6564
|
interface SelectItemIndicatorProps extends PrimitiveProps {}
|
|
6567
|
-
declare const _default$236: __VLS_WithSlots$63<
|
|
6568
|
-
as: AsTag |
|
|
6569
|
-
}, {}, {}, {}, string,
|
|
6565
|
+
declare const _default$236: __VLS_WithSlots$63<vue69.DefineComponent<SelectItemIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectItemIndicatorProps> & Readonly<{}>, {
|
|
6566
|
+
as: AsTag | vue69.Component;
|
|
6567
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6570
6568
|
default?: (props: {}) => any;
|
|
6571
6569
|
}>;
|
|
6572
6570
|
type __VLS_WithSlots$63<T, S> = T & {
|
|
@@ -6578,9 +6576,9 @@ type __VLS_WithSlots$63<T, S> = T & {
|
|
|
6578
6576
|
//#endregion
|
|
6579
6577
|
//#region src/Select/SelectItemText.vue.d.ts
|
|
6580
6578
|
interface SelectItemTextProps extends PrimitiveProps {}
|
|
6581
|
-
declare const _default$237: __VLS_WithSlots$62<
|
|
6582
|
-
as: AsTag |
|
|
6583
|
-
}, {}, {}, {}, string,
|
|
6579
|
+
declare const _default$237: __VLS_WithSlots$62<vue69.DefineComponent<SelectItemTextProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectItemTextProps> & Readonly<{}>, {
|
|
6580
|
+
as: AsTag | vue69.Component;
|
|
6581
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6584
6582
|
default?: (props: {}) => any;
|
|
6585
6583
|
}>;
|
|
6586
6584
|
type __VLS_WithSlots$62<T, S> = T & {
|
|
@@ -6594,9 +6592,9 @@ type __VLS_WithSlots$62<T, S> = T & {
|
|
|
6594
6592
|
interface SelectLabelProps extends PrimitiveProps {
|
|
6595
6593
|
for?: string;
|
|
6596
6594
|
}
|
|
6597
|
-
declare const _default$238: __VLS_WithSlots$61<
|
|
6598
|
-
as: AsTag |
|
|
6599
|
-
}, {}, {}, {}, string,
|
|
6595
|
+
declare const _default$238: __VLS_WithSlots$61<vue69.DefineComponent<SelectLabelProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectLabelProps> & Readonly<{}>, {
|
|
6596
|
+
as: AsTag | vue69.Component;
|
|
6597
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6600
6598
|
default?: (props: {}) => any;
|
|
6601
6599
|
}>;
|
|
6602
6600
|
type __VLS_WithSlots$61<T, S> = T & {
|
|
@@ -6608,7 +6606,7 @@ type __VLS_WithSlots$61<T, S> = T & {
|
|
|
6608
6606
|
//#endregion
|
|
6609
6607
|
//#region src/Select/SelectPortal.vue.d.ts
|
|
6610
6608
|
interface SelectPortalProps extends TeleportProps {}
|
|
6611
|
-
declare const _default$239: __VLS_WithSlots$60<
|
|
6609
|
+
declare const _default$239: __VLS_WithSlots$60<vue69.DefineComponent<SelectPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6612
6610
|
default?: (props: {}) => any;
|
|
6613
6611
|
}>;
|
|
6614
6612
|
type __VLS_WithSlots$60<T, S> = T & {
|
|
@@ -6677,10 +6675,10 @@ interface SelectOption {
|
|
|
6677
6675
|
}
|
|
6678
6676
|
declare const _default$240: <T extends AcceptableValue = AcceptableValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
6679
6677
|
props: __VLS_PrettifyLocal$4<Pick<Partial<{}> & Omit<{
|
|
6680
|
-
readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
6681
6678
|
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
6682
|
-
|
|
6683
|
-
|
|
6679
|
+
readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
6680
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onUpdate:open" | "onUpdate:modelValue"> & SelectRootProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
6681
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
6684
6682
|
attrs: any;
|
|
6685
6683
|
slots: {
|
|
6686
6684
|
default?: (props: {
|
|
@@ -6690,8 +6688,8 @@ declare const _default$240: <T extends AcceptableValue = AcceptableValue>(__VLS_
|
|
|
6690
6688
|
open: boolean;
|
|
6691
6689
|
}) => any;
|
|
6692
6690
|
};
|
|
6693
|
-
emit: ((evt: "update:
|
|
6694
|
-
}>) =>
|
|
6691
|
+
emit: ((evt: "update:open", value: boolean) => void) & ((evt: "update:modelValue", value: T) => void);
|
|
6692
|
+
}>) => vue69.VNode & {
|
|
6695
6693
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
6696
6694
|
};
|
|
6697
6695
|
type __VLS_PrettifyLocal$4<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -6699,7 +6697,7 @@ type __VLS_PrettifyLocal$4<T> = { [K in keyof T]: T[K] } & {};
|
|
|
6699
6697
|
//#endregion
|
|
6700
6698
|
//#region src/Select/SelectScrollDownButton.vue.d.ts
|
|
6701
6699
|
interface SelectScrollDownButtonProps extends PrimitiveProps {}
|
|
6702
|
-
declare const _default$241: __VLS_WithSlots$59<
|
|
6700
|
+
declare const _default$241: __VLS_WithSlots$59<vue69.DefineComponent<SelectScrollDownButtonProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectScrollDownButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6703
6701
|
default?: (props: {}) => any;
|
|
6704
6702
|
}>;
|
|
6705
6703
|
type __VLS_WithSlots$59<T, S> = T & {
|
|
@@ -6711,7 +6709,7 @@ type __VLS_WithSlots$59<T, S> = T & {
|
|
|
6711
6709
|
//#endregion
|
|
6712
6710
|
//#region src/Select/SelectScrollUpButton.vue.d.ts
|
|
6713
6711
|
interface SelectScrollUpButtonProps extends PrimitiveProps {}
|
|
6714
|
-
declare const _default$242: __VLS_WithSlots$58<
|
|
6712
|
+
declare const _default$242: __VLS_WithSlots$58<vue69.DefineComponent<SelectScrollUpButtonProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectScrollUpButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6715
6713
|
default?: (props: {}) => any;
|
|
6716
6714
|
}>;
|
|
6717
6715
|
type __VLS_WithSlots$58<T, S> = T & {
|
|
@@ -6723,7 +6721,7 @@ type __VLS_WithSlots$58<T, S> = T & {
|
|
|
6723
6721
|
//#endregion
|
|
6724
6722
|
//#region src/Select/SelectSeparator.vue.d.ts
|
|
6725
6723
|
interface SelectSeparatorProps extends PrimitiveProps {}
|
|
6726
|
-
declare const _default$243: __VLS_WithSlots$57<
|
|
6724
|
+
declare const _default$243: __VLS_WithSlots$57<vue69.DefineComponent<SelectSeparatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6727
6725
|
default?: (props: {}) => any;
|
|
6728
6726
|
}>;
|
|
6729
6727
|
type __VLS_WithSlots$57<T, S> = T & {
|
|
@@ -6737,9 +6735,9 @@ type __VLS_WithSlots$57<T, S> = T & {
|
|
|
6737
6735
|
interface SelectTriggerProps extends PopperAnchorProps {
|
|
6738
6736
|
disabled?: boolean;
|
|
6739
6737
|
}
|
|
6740
|
-
declare const _default$244: __VLS_WithSlots$56<
|
|
6741
|
-
as: AsTag |
|
|
6742
|
-
}, {}, {}, {}, string,
|
|
6738
|
+
declare const _default$244: __VLS_WithSlots$56<vue69.DefineComponent<SelectTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectTriggerProps> & Readonly<{}>, {
|
|
6739
|
+
as: AsTag | vue69.Component;
|
|
6740
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6743
6741
|
default?: (props: {}) => any;
|
|
6744
6742
|
}>;
|
|
6745
6743
|
type __VLS_WithSlots$56<T, S> = T & {
|
|
@@ -6754,10 +6752,10 @@ interface SelectValueProps extends PrimitiveProps {
|
|
|
6754
6752
|
/** The content that will be rendered inside the `SelectValue` when no `value` or `defaultValue` is set. */
|
|
6755
6753
|
placeholder?: string;
|
|
6756
6754
|
}
|
|
6757
|
-
declare const _default$245: __VLS_WithSlots$55<
|
|
6758
|
-
as: AsTag |
|
|
6755
|
+
declare const _default$245: __VLS_WithSlots$55<vue69.DefineComponent<SelectValueProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectValueProps> & Readonly<{}>, {
|
|
6756
|
+
as: AsTag | vue69.Component;
|
|
6759
6757
|
placeholder: string;
|
|
6760
|
-
}, {}, {}, {}, string,
|
|
6758
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6761
6759
|
default?: (props: {
|
|
6762
6760
|
selectedLabel: string[];
|
|
6763
6761
|
modelValue: AcceptableValue | AcceptableValue[] | undefined;
|
|
@@ -6777,7 +6775,7 @@ interface SelectViewportProps extends PrimitiveProps {
|
|
|
6777
6775
|
*/
|
|
6778
6776
|
nonce?: string;
|
|
6779
6777
|
}
|
|
6780
|
-
declare const _default$246: __VLS_WithSlots$54<
|
|
6778
|
+
declare const _default$246: __VLS_WithSlots$54<vue69.DefineComponent<SelectViewportProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SelectViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6781
6779
|
default?: (props: {}) => any;
|
|
6782
6780
|
}>;
|
|
6783
6781
|
type __VLS_WithSlots$54<T, S> = T & {
|
|
@@ -6804,9 +6802,9 @@ interface BaseSeparatorProps extends PrimitiveProps {
|
|
|
6804
6802
|
//#endregion
|
|
6805
6803
|
//#region src/Separator/Separator.vue.d.ts
|
|
6806
6804
|
interface SeparatorProps extends BaseSeparatorProps {}
|
|
6807
|
-
declare const _default$247: __VLS_WithSlots$53<
|
|
6805
|
+
declare const _default$247: __VLS_WithSlots$53<vue69.DefineComponent<SeparatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SeparatorProps> & Readonly<{}>, {
|
|
6808
6806
|
orientation: DataOrientation;
|
|
6809
|
-
}, {}, {}, {}, string,
|
|
6807
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6810
6808
|
default?: (props: {}) => any;
|
|
6811
6809
|
}>;
|
|
6812
6810
|
type __VLS_WithSlots$53<T, S> = T & {
|
|
@@ -6818,9 +6816,9 @@ type __VLS_WithSlots$53<T, S> = T & {
|
|
|
6818
6816
|
//#endregion
|
|
6819
6817
|
//#region src/Slider/SliderRange.vue.d.ts
|
|
6820
6818
|
interface SliderRangeProps extends PrimitiveProps {}
|
|
6821
|
-
declare const _default$248: __VLS_WithSlots$52<
|
|
6822
|
-
as: AsTag |
|
|
6823
|
-
}, {}, {}, {}, string,
|
|
6819
|
+
declare const _default$248: __VLS_WithSlots$52<vue69.DefineComponent<SliderRangeProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SliderRangeProps> & Readonly<{}>, {
|
|
6820
|
+
as: AsTag | vue69.Component;
|
|
6821
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6824
6822
|
default?: (props: {}) => any;
|
|
6825
6823
|
}>;
|
|
6826
6824
|
type __VLS_WithSlots$52<T, S> = T & {
|
|
@@ -6885,24 +6883,24 @@ interface SliderRootContext {
|
|
|
6885
6883
|
thumbAlignment: Ref<ThumbAlignment>;
|
|
6886
6884
|
}
|
|
6887
6885
|
declare const injectSliderRootContext: <T extends SliderRootContext | null | undefined = SliderRootContext>(fallback?: T | undefined) => T extends null ? SliderRootContext | null : SliderRootContext, provideSliderRootContext: (contextValue: SliderRootContext) => SliderRootContext;
|
|
6888
|
-
declare const _default$249: __VLS_WithSlots$51<
|
|
6886
|
+
declare const _default$249: __VLS_WithSlots$51<vue69.DefineComponent<SliderRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
6889
6887
|
"update:modelValue": (payload: number[] | undefined) => any;
|
|
6890
6888
|
valueCommit: (payload: number[]) => any;
|
|
6891
|
-
}, string,
|
|
6889
|
+
}, string, vue69.PublicProps, Readonly<SliderRootProps> & Readonly<{
|
|
6892
6890
|
"onUpdate:modelValue"?: ((payload: number[] | undefined) => any) | undefined;
|
|
6893
6891
|
onValueCommit?: ((payload: number[]) => any) | undefined;
|
|
6894
6892
|
}>, {
|
|
6895
|
-
as: AsTag |
|
|
6893
|
+
as: AsTag | vue69.Component;
|
|
6896
6894
|
disabled: boolean;
|
|
6897
6895
|
orientation: DataOrientation;
|
|
6898
6896
|
defaultValue: number[];
|
|
6899
6897
|
step: number;
|
|
6898
|
+
min: number;
|
|
6900
6899
|
max: number;
|
|
6901
6900
|
inverted: boolean;
|
|
6902
|
-
min: number;
|
|
6903
6901
|
minStepsBetweenThumbs: number;
|
|
6904
6902
|
thumbAlignment: ThumbAlignment;
|
|
6905
|
-
}, {}, {}, {}, string,
|
|
6903
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6906
6904
|
default?: (props: {
|
|
6907
6905
|
/** Current slider values */
|
|
6908
6906
|
modelValue: number[] | null;
|
|
@@ -6917,9 +6915,9 @@ type __VLS_WithSlots$51<T, S> = T & {
|
|
|
6917
6915
|
//#endregion
|
|
6918
6916
|
//#region src/Slider/SliderThumb.vue.d.ts
|
|
6919
6917
|
interface SliderThumbProps extends PrimitiveProps {}
|
|
6920
|
-
declare const _default$250: __VLS_WithSlots$50<
|
|
6921
|
-
as: AsTag |
|
|
6922
|
-
}, {}, {}, {}, string,
|
|
6918
|
+
declare const _default$250: __VLS_WithSlots$50<vue69.DefineComponent<SliderThumbProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SliderThumbProps> & Readonly<{}>, {
|
|
6919
|
+
as: AsTag | vue69.Component;
|
|
6920
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6923
6921
|
default?: (props: {}) => any;
|
|
6924
6922
|
}>;
|
|
6925
6923
|
type __VLS_WithSlots$50<T, S> = T & {
|
|
@@ -6931,9 +6929,9 @@ type __VLS_WithSlots$50<T, S> = T & {
|
|
|
6931
6929
|
//#endregion
|
|
6932
6930
|
//#region src/Slider/SliderTrack.vue.d.ts
|
|
6933
6931
|
interface SliderTrackProps extends PrimitiveProps {}
|
|
6934
|
-
declare const _default$251: __VLS_WithSlots$49<
|
|
6935
|
-
as: AsTag |
|
|
6936
|
-
}, {}, {}, {}, string,
|
|
6932
|
+
declare const _default$251: __VLS_WithSlots$49<vue69.DefineComponent<SliderTrackProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SliderTrackProps> & Readonly<{}>, {
|
|
6933
|
+
as: AsTag | vue69.Component;
|
|
6934
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
6937
6935
|
default?: (props: {}) => any;
|
|
6938
6936
|
}>;
|
|
6939
6937
|
type __VLS_WithSlots$49<T, S> = T & {
|
|
@@ -6991,7 +6989,7 @@ type PanelData = {
|
|
|
6991
6989
|
idIsFromProps: boolean;
|
|
6992
6990
|
order: number | undefined;
|
|
6993
6991
|
};
|
|
6994
|
-
declare const _default$253: __VLS_WithSlots$48<
|
|
6992
|
+
declare const _default$253: __VLS_WithSlots$48<vue69.DefineComponent<SplitterPanelProps, {
|
|
6995
6993
|
/** If panel is `collapsible`, collapse it fully. */
|
|
6996
6994
|
collapse: () => void;
|
|
6997
6995
|
/** If panel is currently collapsed, expand it to its most recent size. */
|
|
@@ -7001,18 +6999,18 @@ declare const _default$253: __VLS_WithSlots$48<vue157.DefineComponent<SplitterPa
|
|
|
7001
6999
|
/** Resize panel to the specified percentage (1 - 100). */
|
|
7002
7000
|
resize: (size: number) => void;
|
|
7003
7001
|
/** Returns `true` if the panel is currently collapsed */
|
|
7004
|
-
isCollapsed:
|
|
7002
|
+
isCollapsed: vue69.ComputedRef<boolean>;
|
|
7005
7003
|
/** Returns `true` if the panel is currently not collapsed */
|
|
7006
|
-
isExpanded:
|
|
7007
|
-
}, {}, {}, {},
|
|
7004
|
+
isExpanded: vue69.ComputedRef<boolean>;
|
|
7005
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
7008
7006
|
resize: (size: number, prevSize: number | undefined) => any;
|
|
7009
7007
|
collapse: () => any;
|
|
7010
7008
|
expand: () => any;
|
|
7011
|
-
}, string,
|
|
7009
|
+
}, string, vue69.PublicProps, Readonly<SplitterPanelProps> & Readonly<{
|
|
7012
7010
|
onResize?: ((size: number, prevSize: number | undefined) => any) | undefined;
|
|
7013
7011
|
onCollapse?: (() => any) | undefined;
|
|
7014
7012
|
onExpand?: (() => any) | undefined;
|
|
7015
|
-
}>, {}, {}, {}, {}, string,
|
|
7013
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7016
7014
|
default?: (props: {
|
|
7017
7015
|
/** Is the panel collapsed */
|
|
7018
7016
|
isCollapsed: boolean;
|
|
@@ -7086,15 +7084,15 @@ type PanelGroupContext = {
|
|
|
7086
7084
|
getPanelStyle: (panelData: PanelData, defaultSize: number | undefined) => CSSProperties;
|
|
7087
7085
|
};
|
|
7088
7086
|
declare const injectPanelGroupContext: <T extends PanelGroupContext | null | undefined = PanelGroupContext>(fallback?: T | undefined) => T extends null ? PanelGroupContext | null : PanelGroupContext, providePanelGroupContext: (contextValue: PanelGroupContext) => PanelGroupContext;
|
|
7089
|
-
declare const _default$252: __VLS_WithSlots$47<
|
|
7087
|
+
declare const _default$252: __VLS_WithSlots$47<vue69.DefineComponent<SplitterGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
7090
7088
|
layout: (val: number[]) => any;
|
|
7091
|
-
}, string,
|
|
7089
|
+
}, string, vue69.PublicProps, Readonly<SplitterGroupProps> & Readonly<{
|
|
7092
7090
|
onLayout?: ((val: number[]) => any) | undefined;
|
|
7093
7091
|
}>, {
|
|
7094
7092
|
autoSaveId: string | null;
|
|
7095
7093
|
keyboardResizeBy: number | null;
|
|
7096
7094
|
storage: PanelGroupStorage;
|
|
7097
|
-
}, {}, {}, {}, string,
|
|
7095
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7098
7096
|
default?: (props: {
|
|
7099
7097
|
/** Current size of layout */
|
|
7100
7098
|
layout: number[];
|
|
@@ -7132,13 +7130,13 @@ type SplitterResizeHandleEmits = {
|
|
|
7132
7130
|
/** Event handler called when dragging the handler. */
|
|
7133
7131
|
dragging: [isDragging: boolean];
|
|
7134
7132
|
};
|
|
7135
|
-
declare const _default$254: __VLS_WithSlots$46<
|
|
7133
|
+
declare const _default$254: __VLS_WithSlots$46<vue69.DefineComponent<SplitterResizeHandleProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
7136
7134
|
dragging: (isDragging: boolean) => any;
|
|
7137
|
-
}, string,
|
|
7135
|
+
}, string, vue69.PublicProps, Readonly<SplitterResizeHandleProps> & Readonly<{
|
|
7138
7136
|
onDragging?: ((isDragging: boolean) => any) | undefined;
|
|
7139
7137
|
}>, {
|
|
7140
7138
|
tabindex: number;
|
|
7141
|
-
}, {}, {}, {}, string,
|
|
7139
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7142
7140
|
default?: (props: {}) => any;
|
|
7143
7141
|
}>;
|
|
7144
7142
|
type __VLS_WithSlots$46<T, S> = T & {
|
|
@@ -7150,9 +7148,9 @@ type __VLS_WithSlots$46<T, S> = T & {
|
|
|
7150
7148
|
//#endregion
|
|
7151
7149
|
//#region src/Stepper/StepperDescription.vue.d.ts
|
|
7152
7150
|
interface StepperDescriptionProps extends PrimitiveProps {}
|
|
7153
|
-
declare const _default$255: __VLS_WithSlots$45<
|
|
7154
|
-
as: AsTag |
|
|
7155
|
-
}, {}, {}, {}, string,
|
|
7151
|
+
declare const _default$255: __VLS_WithSlots$45<vue69.DefineComponent<StepperDescriptionProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<StepperDescriptionProps> & Readonly<{}>, {
|
|
7152
|
+
as: AsTag | vue69.Component;
|
|
7153
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7156
7154
|
default?: (props: {}) => any;
|
|
7157
7155
|
}>;
|
|
7158
7156
|
type __VLS_WithSlots$45<T, S> = T & {
|
|
@@ -7164,7 +7162,7 @@ type __VLS_WithSlots$45<T, S> = T & {
|
|
|
7164
7162
|
//#endregion
|
|
7165
7163
|
//#region src/Stepper/StepperIndicator.vue.d.ts
|
|
7166
7164
|
interface StepperIndicatorProps extends PrimitiveProps {}
|
|
7167
|
-
declare const _default$256: __VLS_WithSlots$44<
|
|
7165
|
+
declare const _default$256: __VLS_WithSlots$44<vue69.DefineComponent<StepperIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<StepperIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7168
7166
|
default?: (props: {
|
|
7169
7167
|
/** Current step */
|
|
7170
7168
|
step: number;
|
|
@@ -7196,10 +7194,10 @@ interface StepperItemProps extends PrimitiveProps {
|
|
|
7196
7194
|
/** Shows whether the step is completed. */
|
|
7197
7195
|
completed?: boolean;
|
|
7198
7196
|
}
|
|
7199
|
-
declare const _default$257: __VLS_WithSlots$43<
|
|
7197
|
+
declare const _default$257: __VLS_WithSlots$43<vue69.DefineComponent<StepperItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<StepperItemProps> & Readonly<{}>, {
|
|
7200
7198
|
disabled: boolean;
|
|
7201
7199
|
completed: boolean;
|
|
7202
|
-
}, {}, {}, {}, string,
|
|
7200
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7203
7201
|
default?: (props: {
|
|
7204
7202
|
/** The current state of the stepper item */
|
|
7205
7203
|
state: StepperState;
|
|
@@ -7246,27 +7244,27 @@ type StepperRootEmits = {
|
|
|
7246
7244
|
'update:modelValue': [payload: number | undefined];
|
|
7247
7245
|
};
|
|
7248
7246
|
declare const injectStepperRootContext: <T extends StepperRootContext | null | undefined = StepperRootContext>(fallback?: T | undefined) => T extends null ? StepperRootContext | null : StepperRootContext, provideStepperRootContext: (contextValue: StepperRootContext) => StepperRootContext;
|
|
7249
|
-
declare const _default$258: __VLS_WithSlots$42<
|
|
7247
|
+
declare const _default$258: __VLS_WithSlots$42<vue69.DefineComponent<StepperRootProps, {
|
|
7250
7248
|
goToStep: (step: number) => void;
|
|
7251
7249
|
nextStep: () => void;
|
|
7252
7250
|
prevStep: () => void;
|
|
7253
|
-
modelValue:
|
|
7254
|
-
totalSteps:
|
|
7255
|
-
isNextDisabled:
|
|
7256
|
-
isPrevDisabled:
|
|
7257
|
-
isFirstStep:
|
|
7258
|
-
isLastStep:
|
|
7251
|
+
modelValue: vue69.WritableComputedRef<number | undefined, number | undefined>;
|
|
7252
|
+
totalSteps: vue69.ComputedRef<number>;
|
|
7253
|
+
isNextDisabled: vue69.ComputedRef<boolean>;
|
|
7254
|
+
isPrevDisabled: vue69.ComputedRef<boolean>;
|
|
7255
|
+
isFirstStep: vue69.ComputedRef<boolean>;
|
|
7256
|
+
isLastStep: vue69.ComputedRef<boolean>;
|
|
7259
7257
|
hasNext: () => boolean;
|
|
7260
7258
|
hasPrev: () => boolean;
|
|
7261
|
-
}, {}, {}, {},
|
|
7259
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
7262
7260
|
"update:modelValue": (payload: number | undefined) => any;
|
|
7263
|
-
}, string,
|
|
7261
|
+
}, string, vue69.PublicProps, Readonly<StepperRootProps> & Readonly<{
|
|
7264
7262
|
"onUpdate:modelValue"?: ((payload: number | undefined) => any) | undefined;
|
|
7265
7263
|
}>, {
|
|
7266
7264
|
orientation: DataOrientation;
|
|
7267
7265
|
defaultValue: number;
|
|
7268
7266
|
linear: boolean;
|
|
7269
|
-
}, {}, {}, {}, string,
|
|
7267
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7270
7268
|
default?: (props: {
|
|
7271
7269
|
/** Current step */
|
|
7272
7270
|
modelValue: number | undefined;
|
|
@@ -7301,7 +7299,7 @@ type __VLS_WithSlots$42<T, S> = T & {
|
|
|
7301
7299
|
//#endregion
|
|
7302
7300
|
//#region src/Stepper/StepperSeparator.vue.d.ts
|
|
7303
7301
|
interface StepperSeparatorProps extends SeparatorProps {}
|
|
7304
|
-
declare const _default$259: __VLS_WithSlots$41<
|
|
7302
|
+
declare const _default$259: __VLS_WithSlots$41<vue69.DefineComponent<StepperSeparatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<StepperSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7305
7303
|
default?: (props: {}) => any;
|
|
7306
7304
|
}>;
|
|
7307
7305
|
type __VLS_WithSlots$41<T, S> = T & {
|
|
@@ -7313,9 +7311,9 @@ type __VLS_WithSlots$41<T, S> = T & {
|
|
|
7313
7311
|
//#endregion
|
|
7314
7312
|
//#region src/Stepper/StepperTitle.vue.d.ts
|
|
7315
7313
|
interface StepperTitleProps extends PrimitiveProps {}
|
|
7316
|
-
declare const _default$260: __VLS_WithSlots$40<
|
|
7317
|
-
as: AsTag |
|
|
7318
|
-
}, {}, {}, {}, string,
|
|
7314
|
+
declare const _default$260: __VLS_WithSlots$40<vue69.DefineComponent<StepperTitleProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<StepperTitleProps> & Readonly<{}>, {
|
|
7315
|
+
as: AsTag | vue69.Component;
|
|
7316
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7319
7317
|
default?: (props: {}) => any;
|
|
7320
7318
|
}>;
|
|
7321
7319
|
type __VLS_WithSlots$40<T, S> = T & {
|
|
@@ -7327,9 +7325,9 @@ type __VLS_WithSlots$40<T, S> = T & {
|
|
|
7327
7325
|
//#endregion
|
|
7328
7326
|
//#region src/Stepper/StepperTrigger.vue.d.ts
|
|
7329
7327
|
interface StepperTriggerProps extends PrimitiveProps {}
|
|
7330
|
-
declare const _default$261: __VLS_WithSlots$39<
|
|
7331
|
-
as: AsTag |
|
|
7332
|
-
}, {}, {}, {}, string,
|
|
7328
|
+
declare const _default$261: __VLS_WithSlots$39<vue69.DefineComponent<StepperTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<StepperTriggerProps> & Readonly<{}>, {
|
|
7329
|
+
as: AsTag | vue69.Component;
|
|
7330
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7333
7331
|
default?: (props: {}) => any;
|
|
7334
7332
|
}>;
|
|
7335
7333
|
type __VLS_WithSlots$39<T, S> = T & {
|
|
@@ -7361,15 +7359,15 @@ interface SwitchRootContext {
|
|
|
7361
7359
|
disabled: Ref<boolean>;
|
|
7362
7360
|
}
|
|
7363
7361
|
declare const injectSwitchRootContext: <T extends SwitchRootContext | null | undefined = SwitchRootContext>(fallback?: T | undefined) => T extends null ? SwitchRootContext | null : SwitchRootContext, provideSwitchRootContext: (contextValue: SwitchRootContext) => SwitchRootContext;
|
|
7364
|
-
declare const _default$262: __VLS_WithSlots$38<
|
|
7362
|
+
declare const _default$262: __VLS_WithSlots$38<vue69.DefineComponent<SwitchRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
7365
7363
|
"update:modelValue": (payload: boolean) => any;
|
|
7366
|
-
}, string,
|
|
7364
|
+
}, string, vue69.PublicProps, Readonly<SwitchRootProps> & Readonly<{
|
|
7367
7365
|
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
7368
7366
|
}>, {
|
|
7369
|
-
as: AsTag |
|
|
7367
|
+
as: AsTag | vue69.Component;
|
|
7370
7368
|
value: string;
|
|
7371
7369
|
modelValue: boolean | null;
|
|
7372
|
-
}, {}, {}, {}, string,
|
|
7370
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7373
7371
|
default?: (props: {
|
|
7374
7372
|
/** Current value */
|
|
7375
7373
|
modelValue: boolean;
|
|
@@ -7384,9 +7382,9 @@ type __VLS_WithSlots$38<T, S> = T & {
|
|
|
7384
7382
|
//#endregion
|
|
7385
7383
|
//#region src/Switch/SwitchThumb.vue.d.ts
|
|
7386
7384
|
interface SwitchThumbProps extends PrimitiveProps {}
|
|
7387
|
-
declare const _default$263: __VLS_WithSlots$37<
|
|
7388
|
-
as: AsTag |
|
|
7389
|
-
}, {}, {}, {}, string,
|
|
7385
|
+
declare const _default$263: __VLS_WithSlots$37<vue69.DefineComponent<SwitchThumbProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<SwitchThumbProps> & Readonly<{}>, {
|
|
7386
|
+
as: AsTag | vue69.Component;
|
|
7387
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7390
7388
|
default?: (props: {}) => any;
|
|
7391
7389
|
}>;
|
|
7392
7390
|
type __VLS_WithSlots$37<T, S> = T & {
|
|
@@ -7406,7 +7404,7 @@ interface TabsContentProps extends PrimitiveProps {
|
|
|
7406
7404
|
*/
|
|
7407
7405
|
forceMount?: boolean;
|
|
7408
7406
|
}
|
|
7409
|
-
declare const _default$264: __VLS_WithSlots$36<
|
|
7407
|
+
declare const _default$264: __VLS_WithSlots$36<vue69.DefineComponent<TabsContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7410
7408
|
default?: (props: {}) => any;
|
|
7411
7409
|
}>;
|
|
7412
7410
|
type __VLS_WithSlots$36<T, S> = T & {
|
|
@@ -7418,7 +7416,7 @@ type __VLS_WithSlots$36<T, S> = T & {
|
|
|
7418
7416
|
//#endregion
|
|
7419
7417
|
//#region src/Tabs/TabsIndicator.vue.d.ts
|
|
7420
7418
|
interface TabsIndicatorProps extends PrimitiveProps {}
|
|
7421
|
-
declare const _default$265: __VLS_WithSlots$35<
|
|
7419
|
+
declare const _default$265: __VLS_WithSlots$35<vue69.DefineComponent<TabsIndicatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TabsIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7422
7420
|
default?: (props: {}) => any;
|
|
7423
7421
|
}>;
|
|
7424
7422
|
type __VLS_WithSlots$35<T, S> = T & {
|
|
@@ -7433,9 +7431,9 @@ interface TabsListProps extends PrimitiveProps {
|
|
|
7433
7431
|
/** When `true`, keyboard navigation will loop from last tab to first, and vice versa. */
|
|
7434
7432
|
loop?: boolean;
|
|
7435
7433
|
}
|
|
7436
|
-
declare const _default$266: __VLS_WithSlots$34<
|
|
7434
|
+
declare const _default$266: __VLS_WithSlots$34<vue69.DefineComponent<TabsListProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TabsListProps> & Readonly<{}>, {
|
|
7437
7435
|
loop: boolean;
|
|
7438
|
-
}, {}, {}, {}, string,
|
|
7436
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7439
7437
|
default?: (props: {}) => any;
|
|
7440
7438
|
}>;
|
|
7441
7439
|
type __VLS_WithSlots$34<T, S> = T & {
|
|
@@ -7493,8 +7491,8 @@ declare const injectTabsRootContext: <T extends TabsRootContext | null | undefin
|
|
|
7493
7491
|
declare const _default$267: <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<{
|
|
7494
7492
|
props: __VLS_PrettifyLocal$3<Pick<Partial<{}> & Omit<{
|
|
7495
7493
|
readonly "onUpdate:modelValue"?: ((payload: T) => any) | undefined;
|
|
7496
|
-
} &
|
|
7497
|
-
expose(exposed:
|
|
7494
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onUpdate:modelValue"> & TabsRootProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
7495
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
7498
7496
|
attrs: any;
|
|
7499
7497
|
slots: {
|
|
7500
7498
|
default?: (props: {
|
|
@@ -7503,7 +7501,7 @@ declare const _default$267: <T extends StringOrNumber = StringOrNumber>(__VLS_pr
|
|
|
7503
7501
|
}) => any;
|
|
7504
7502
|
};
|
|
7505
7503
|
emit: (evt: "update:modelValue", payload: T) => void;
|
|
7506
|
-
}>) =>
|
|
7504
|
+
}>) => vue69.VNode & {
|
|
7507
7505
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
7508
7506
|
};
|
|
7509
7507
|
type __VLS_PrettifyLocal$3<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -7516,10 +7514,10 @@ interface TabsTriggerProps extends PrimitiveProps {
|
|
|
7516
7514
|
/** When `true`, prevents the user from interacting with the tab. */
|
|
7517
7515
|
disabled?: boolean;
|
|
7518
7516
|
}
|
|
7519
|
-
declare const _default$268: __VLS_WithSlots$33<
|
|
7520
|
-
as: AsTag |
|
|
7517
|
+
declare const _default$268: __VLS_WithSlots$33<vue69.DefineComponent<TabsTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TabsTriggerProps> & Readonly<{}>, {
|
|
7518
|
+
as: AsTag | vue69.Component;
|
|
7521
7519
|
disabled: boolean;
|
|
7522
|
-
}, {}, {}, {}, string,
|
|
7520
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7523
7521
|
default?: (props: {}) => any;
|
|
7524
7522
|
}>;
|
|
7525
7523
|
type __VLS_WithSlots$33<T, S> = T & {
|
|
@@ -7531,9 +7529,9 @@ type __VLS_WithSlots$33<T, S> = T & {
|
|
|
7531
7529
|
//#endregion
|
|
7532
7530
|
//#region src/TagsInput/TagsInputClear.vue.d.ts
|
|
7533
7531
|
interface TagsInputClearProps extends PrimitiveProps {}
|
|
7534
|
-
declare const _default$269: __VLS_WithSlots$32<
|
|
7535
|
-
as: AsTag |
|
|
7536
|
-
}, {}, {}, {}, string,
|
|
7532
|
+
declare const _default$269: __VLS_WithSlots$32<vue69.DefineComponent<TagsInputClearProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TagsInputClearProps> & Readonly<{}>, {
|
|
7533
|
+
as: AsTag | vue69.Component;
|
|
7534
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7537
7535
|
default?: (props: {}) => any;
|
|
7538
7536
|
}>;
|
|
7539
7537
|
type __VLS_WithSlots$32<T, S> = T & {
|
|
@@ -7552,9 +7550,9 @@ interface TagsInputInputProps extends PrimitiveProps {
|
|
|
7552
7550
|
/** Maximum number of character allowed. */
|
|
7553
7551
|
maxLength?: number;
|
|
7554
7552
|
}
|
|
7555
|
-
declare const _default$270: __VLS_WithSlots$31<
|
|
7556
|
-
as: AsTag |
|
|
7557
|
-
}, {}, {}, {}, string,
|
|
7553
|
+
declare const _default$270: __VLS_WithSlots$31<vue69.DefineComponent<TagsInputInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TagsInputInputProps> & Readonly<{}>, {
|
|
7554
|
+
as: AsTag | vue69.Component;
|
|
7555
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7558
7556
|
default?: (props: {}) => any;
|
|
7559
7557
|
}>;
|
|
7560
7558
|
type __VLS_WithSlots$31<T, S> = T & {
|
|
@@ -7627,8 +7625,8 @@ declare const _default$274: <T extends AcceptableInputValue = string>(__VLS_prop
|
|
|
7627
7625
|
readonly "onUpdate:modelValue"?: ((payload: T[]) => any) | undefined;
|
|
7628
7626
|
readonly onAddTag?: ((payload: T) => any) | undefined;
|
|
7629
7627
|
readonly onRemoveTag?: ((payload: T) => any) | undefined;
|
|
7630
|
-
} &
|
|
7631
|
-
expose(exposed:
|
|
7628
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onInvalid" | "onUpdate:modelValue" | "onAddTag" | "onRemoveTag"> & TagsInputRootProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
7629
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
7632
7630
|
attrs: any;
|
|
7633
7631
|
slots: {
|
|
7634
7632
|
default?: (props: {
|
|
@@ -7637,7 +7635,7 @@ declare const _default$274: <T extends AcceptableInputValue = string>(__VLS_prop
|
|
|
7637
7635
|
}) => any;
|
|
7638
7636
|
};
|
|
7639
7637
|
emit: ((evt: "invalid", payload: T) => void) & ((evt: "update:modelValue", payload: T[]) => void) & ((evt: "addTag", payload: T) => void) & ((evt: "removeTag", payload: T) => void);
|
|
7640
|
-
}>) =>
|
|
7638
|
+
}>) => vue69.VNode & {
|
|
7641
7639
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
7642
7640
|
};
|
|
7643
7641
|
type __VLS_PrettifyLocal$2<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -7658,7 +7656,7 @@ interface TagsInputItemContext {
|
|
|
7658
7656
|
textId: string;
|
|
7659
7657
|
}
|
|
7660
7658
|
declare const injectTagsInputItemContext: <T extends TagsInputItemContext | null | undefined = TagsInputItemContext>(fallback?: T | undefined) => T extends null ? TagsInputItemContext | null : TagsInputItemContext, provideTagsInputItemContext: (contextValue: TagsInputItemContext) => TagsInputItemContext;
|
|
7661
|
-
declare const _default$271: __VLS_WithSlots$30<
|
|
7659
|
+
declare const _default$271: __VLS_WithSlots$30<vue69.DefineComponent<TagsInputItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TagsInputItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7662
7660
|
default?: (props: {}) => any;
|
|
7663
7661
|
}>;
|
|
7664
7662
|
type __VLS_WithSlots$30<T, S> = T & {
|
|
@@ -7670,9 +7668,9 @@ type __VLS_WithSlots$30<T, S> = T & {
|
|
|
7670
7668
|
//#endregion
|
|
7671
7669
|
//#region src/TagsInput/TagsInputItemDelete.vue.d.ts
|
|
7672
7670
|
interface TagsInputItemDeleteProps extends PrimitiveProps {}
|
|
7673
|
-
declare const _default$272: __VLS_WithSlots$29<
|
|
7674
|
-
as: AsTag |
|
|
7675
|
-
}, {}, {}, {}, string,
|
|
7671
|
+
declare const _default$272: __VLS_WithSlots$29<vue69.DefineComponent<TagsInputItemDeleteProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TagsInputItemDeleteProps> & Readonly<{}>, {
|
|
7672
|
+
as: AsTag | vue69.Component;
|
|
7673
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7676
7674
|
default?: (props: {}) => any;
|
|
7677
7675
|
}>;
|
|
7678
7676
|
type __VLS_WithSlots$29<T, S> = T & {
|
|
@@ -7684,9 +7682,9 @@ type __VLS_WithSlots$29<T, S> = T & {
|
|
|
7684
7682
|
//#endregion
|
|
7685
7683
|
//#region src/TagsInput/TagsInputItemText.vue.d.ts
|
|
7686
7684
|
interface TagsInputItemTextProps extends PrimitiveProps {}
|
|
7687
|
-
declare const _default$273: __VLS_WithSlots$28<
|
|
7688
|
-
as: AsTag |
|
|
7689
|
-
}, {}, {}, {}, string,
|
|
7685
|
+
declare const _default$273: __VLS_WithSlots$28<vue69.DefineComponent<TagsInputItemTextProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TagsInputItemTextProps> & Readonly<{}>, {
|
|
7686
|
+
as: AsTag | vue69.Component;
|
|
7687
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7690
7688
|
default?: (props: {}) => any;
|
|
7691
7689
|
}>;
|
|
7692
7690
|
type __VLS_WithSlots$28<T, S> = T & {
|
|
@@ -7701,7 +7699,7 @@ interface TimeFieldInputProps extends PrimitiveProps {
|
|
|
7701
7699
|
/** The part of the date to render */
|
|
7702
7700
|
part: SegmentPart;
|
|
7703
7701
|
}
|
|
7704
|
-
declare const _default$275: __VLS_WithSlots$27<
|
|
7702
|
+
declare const _default$275: __VLS_WithSlots$27<vue69.DefineComponent<TimeFieldInputProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TimeFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7705
7703
|
default?: (props: {}) => any;
|
|
7706
7704
|
}>;
|
|
7707
7705
|
type __VLS_WithSlots$27<T, S> = T & {
|
|
@@ -7770,13 +7768,13 @@ type TimeFieldRootEmits = {
|
|
|
7770
7768
|
'update:placeholder': [date: TimeValue];
|
|
7771
7769
|
};
|
|
7772
7770
|
declare const injectTimeFieldRootContext: <T extends TimeFieldRootContext | null | undefined = TimeFieldRootContext>(fallback?: T | undefined) => T extends null ? TimeFieldRootContext | null : TimeFieldRootContext, provideTimeFieldRootContext: (contextValue: TimeFieldRootContext) => TimeFieldRootContext;
|
|
7773
|
-
declare const _default$276: __VLS_WithSlots$26<
|
|
7771
|
+
declare const _default$276: __VLS_WithSlots$26<vue69.DefineComponent<TimeFieldRootProps, {
|
|
7774
7772
|
/** Helper to set the focused element inside the DateField */
|
|
7775
7773
|
setFocusedElement: (el: HTMLElement) => void;
|
|
7776
|
-
}, {}, {}, {},
|
|
7774
|
+
}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
7777
7775
|
"update:modelValue": (date: TimeValue | undefined) => any;
|
|
7778
7776
|
"update:placeholder": (date: TimeValue) => any;
|
|
7779
|
-
}, string,
|
|
7777
|
+
}, string, vue69.PublicProps, Readonly<TimeFieldRootProps> & Readonly<{
|
|
7780
7778
|
"onUpdate:modelValue"?: ((date: TimeValue | undefined) => any) | undefined;
|
|
7781
7779
|
"onUpdate:placeholder"?: ((date: TimeValue) => any) | undefined;
|
|
7782
7780
|
}>, {
|
|
@@ -7784,7 +7782,7 @@ declare const _default$276: __VLS_WithSlots$26<vue157.DefineComponent<TimeFieldR
|
|
|
7784
7782
|
defaultValue: TimeValue;
|
|
7785
7783
|
placeholder: TimeValue;
|
|
7786
7784
|
readonly: boolean;
|
|
7787
|
-
}, {}, {}, {}, string,
|
|
7785
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7788
7786
|
default?: (props: {
|
|
7789
7787
|
/** The current time of the field */
|
|
7790
7788
|
modelValue: TimeValue | undefined;
|
|
@@ -7806,9 +7804,9 @@ type __VLS_WithSlots$26<T, S> = T & {
|
|
|
7806
7804
|
//#endregion
|
|
7807
7805
|
//#region src/Toast/ToastClose.vue.d.ts
|
|
7808
7806
|
interface ToastCloseProps extends PrimitiveProps {}
|
|
7809
|
-
declare const _default$278: __VLS_WithSlots$25<
|
|
7810
|
-
as: AsTag |
|
|
7811
|
-
}, {}, {}, {}, string,
|
|
7807
|
+
declare const _default$278: __VLS_WithSlots$25<vue69.DefineComponent<ToastCloseProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToastCloseProps> & Readonly<{}>, {
|
|
7808
|
+
as: AsTag | vue69.Component;
|
|
7809
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7812
7810
|
default?: (props: {}) => any;
|
|
7813
7811
|
}>;
|
|
7814
7812
|
type __VLS_WithSlots$25<T, S> = T & {
|
|
@@ -7828,7 +7826,7 @@ interface ToastActionProps extends ToastCloseProps {
|
|
|
7828
7826
|
*/
|
|
7829
7827
|
altText: string;
|
|
7830
7828
|
}
|
|
7831
|
-
declare const _default$277: __VLS_WithSlots$24<
|
|
7829
|
+
declare const _default$277: __VLS_WithSlots$24<vue69.DefineComponent<ToastActionProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToastActionProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7832
7830
|
default?: (props: {}) => any;
|
|
7833
7831
|
}>;
|
|
7834
7832
|
type __VLS_WithSlots$24<T, S> = T & {
|
|
@@ -7840,7 +7838,7 @@ type __VLS_WithSlots$24<T, S> = T & {
|
|
|
7840
7838
|
//#endregion
|
|
7841
7839
|
//#region src/Toast/ToastDescription.vue.d.ts
|
|
7842
7840
|
interface ToastDescriptionProps extends PrimitiveProps {}
|
|
7843
|
-
declare const _default$279: __VLS_WithSlots$23<
|
|
7841
|
+
declare const _default$279: __VLS_WithSlots$23<vue69.DefineComponent<ToastDescriptionProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToastDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7844
7842
|
default?: (props: {}) => any;
|
|
7845
7843
|
}>;
|
|
7846
7844
|
type __VLS_WithSlots$23<T, S> = T & {
|
|
@@ -7852,7 +7850,7 @@ type __VLS_WithSlots$23<T, S> = T & {
|
|
|
7852
7850
|
//#endregion
|
|
7853
7851
|
//#region src/Toast/ToastPortal.vue.d.ts
|
|
7854
7852
|
interface ToastPortalProps extends TeleportProps {}
|
|
7855
|
-
declare const _default$280: __VLS_WithSlots$22<
|
|
7853
|
+
declare const _default$280: __VLS_WithSlots$22<vue69.DefineComponent<ToastPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToastPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7856
7854
|
default?: (props: {}) => any;
|
|
7857
7855
|
}>;
|
|
7858
7856
|
type __VLS_WithSlots$22<T, S> = T & {
|
|
@@ -7912,12 +7910,12 @@ interface ToastProviderProps {
|
|
|
7912
7910
|
swipeThreshold?: number;
|
|
7913
7911
|
}
|
|
7914
7912
|
declare const injectToastProviderContext: <T extends ToastProviderContext | null | undefined = ToastProviderContext>(fallback?: T | undefined) => T extends null ? ToastProviderContext | null : ToastProviderContext, provideToastProviderContext: (contextValue: ToastProviderContext) => ToastProviderContext;
|
|
7915
|
-
declare const _default$281: __VLS_WithSlots$21<
|
|
7913
|
+
declare const _default$281: __VLS_WithSlots$21<vue69.DefineComponent<ToastProviderProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToastProviderProps> & Readonly<{}>, {
|
|
7916
7914
|
label: string;
|
|
7917
7915
|
duration: number;
|
|
7918
7916
|
swipeDirection: SwipeDirection;
|
|
7919
7917
|
swipeThreshold: number;
|
|
7920
|
-
}, {}, {}, {}, string,
|
|
7918
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
7921
7919
|
default?: (props: {}) => any;
|
|
7922
7920
|
}>;
|
|
7923
7921
|
type __VLS_WithSlots$21<T, S> = T & {
|
|
@@ -7977,19 +7975,19 @@ interface ToastRootProps extends ToastRootImplProps {
|
|
|
7977
7975
|
*/
|
|
7978
7976
|
forceMount?: boolean;
|
|
7979
7977
|
}
|
|
7980
|
-
declare const _default$282: __VLS_WithSlots$20<
|
|
7978
|
+
declare const _default$282: __VLS_WithSlots$20<vue69.DefineComponent<ToastRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
7981
7979
|
pause: () => any;
|
|
7982
|
-
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
7983
7980
|
"update:open": (value: boolean) => any;
|
|
7981
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
7984
7982
|
resume: () => any;
|
|
7985
7983
|
swipeStart: (event: SwipeEvent) => any;
|
|
7986
7984
|
swipeMove: (event: SwipeEvent) => any;
|
|
7987
7985
|
swipeCancel: (event: SwipeEvent) => any;
|
|
7988
7986
|
swipeEnd: (event: SwipeEvent) => any;
|
|
7989
|
-
}, string,
|
|
7987
|
+
}, string, vue69.PublicProps, Readonly<ToastRootProps> & Readonly<{
|
|
7990
7988
|
onPause?: (() => any) | undefined;
|
|
7991
|
-
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
7992
7989
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
7990
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
7993
7991
|
onResume?: (() => any) | undefined;
|
|
7994
7992
|
onSwipeStart?: ((event: SwipeEvent) => any) | undefined;
|
|
7995
7993
|
onSwipeMove?: ((event: SwipeEvent) => any) | undefined;
|
|
@@ -7997,10 +7995,10 @@ declare const _default$282: __VLS_WithSlots$20<vue157.DefineComponent<ToastRootP
|
|
|
7997
7995
|
onSwipeEnd?: ((event: SwipeEvent) => any) | undefined;
|
|
7998
7996
|
}>, {
|
|
7999
7997
|
type: "foreground" | "background";
|
|
8000
|
-
as: AsTag |
|
|
8001
|
-
open: boolean;
|
|
7998
|
+
as: AsTag | vue69.Component;
|
|
8002
7999
|
defaultOpen: boolean;
|
|
8003
|
-
|
|
8000
|
+
open: boolean;
|
|
8001
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8004
8002
|
default?: (props: {
|
|
8005
8003
|
/** Current open state */
|
|
8006
8004
|
open: boolean;
|
|
@@ -8019,7 +8017,7 @@ type __VLS_WithSlots$20<T, S> = T & {
|
|
|
8019
8017
|
//#endregion
|
|
8020
8018
|
//#region src/Toast/ToastTitle.vue.d.ts
|
|
8021
8019
|
interface ToastTitleProps extends PrimitiveProps {}
|
|
8022
|
-
declare const _default$283: __VLS_WithSlots$19<
|
|
8020
|
+
declare const _default$283: __VLS_WithSlots$19<vue69.DefineComponent<ToastTitleProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToastTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8023
8021
|
default?: (props: {}) => any;
|
|
8024
8022
|
}>;
|
|
8025
8023
|
type __VLS_WithSlots$19<T, S> = T & {
|
|
@@ -8044,11 +8042,11 @@ interface ToastViewportProps extends PrimitiveProps {
|
|
|
8044
8042
|
*/
|
|
8045
8043
|
label?: string | ((hotkey: string) => string);
|
|
8046
8044
|
}
|
|
8047
|
-
declare const _default$284: __VLS_WithSlots$18<
|
|
8045
|
+
declare const _default$284: __VLS_WithSlots$18<vue69.DefineComponent<ToastViewportProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToastViewportProps> & Readonly<{}>, {
|
|
8048
8046
|
label: string | ((hotkey: string) => string);
|
|
8049
|
-
as: AsTag |
|
|
8047
|
+
as: AsTag | vue69.Component;
|
|
8050
8048
|
hotkey: string[];
|
|
8051
|
-
}, {}, {}, {}, string,
|
|
8049
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8052
8050
|
default?: (props: {}) => any;
|
|
8053
8051
|
}>;
|
|
8054
8052
|
type __VLS_WithSlots$18<T, S> = T & {
|
|
@@ -8078,15 +8076,15 @@ interface ToggleProps extends PrimitiveProps, FormFieldProps {
|
|
|
8078
8076
|
*/
|
|
8079
8077
|
disabled?: boolean;
|
|
8080
8078
|
}
|
|
8081
|
-
declare const _default$285: __VLS_WithSlots$17<
|
|
8079
|
+
declare const _default$285: __VLS_WithSlots$17<vue69.DefineComponent<ToggleProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
8082
8080
|
"update:modelValue": (value: boolean) => any;
|
|
8083
|
-
}, string,
|
|
8081
|
+
}, string, vue69.PublicProps, Readonly<ToggleProps> & Readonly<{
|
|
8084
8082
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
8085
8083
|
}>, {
|
|
8086
|
-
as: AsTag |
|
|
8084
|
+
as: AsTag | vue69.Component;
|
|
8087
8085
|
disabled: boolean;
|
|
8088
8086
|
modelValue: boolean | null;
|
|
8089
|
-
}, {}, {}, {}, string,
|
|
8087
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8090
8088
|
default?: (props: {
|
|
8091
8089
|
/** Current value */
|
|
8092
8090
|
modelValue: boolean;
|
|
@@ -8112,9 +8110,9 @@ interface ToggleGroupItemProps extends Omit<ToggleProps, 'name' | 'required' | '
|
|
|
8112
8110
|
*/
|
|
8113
8111
|
value: AcceptableValue;
|
|
8114
8112
|
}
|
|
8115
|
-
declare const _default$286: __VLS_WithSlots$16<
|
|
8116
|
-
as: AsTag |
|
|
8117
|
-
}, {}, {}, {}, string,
|
|
8113
|
+
declare const _default$286: __VLS_WithSlots$16<vue69.DefineComponent<ToggleGroupItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToggleGroupItemProps> & Readonly<{}>, {
|
|
8114
|
+
as: AsTag | vue69.Component;
|
|
8115
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8118
8116
|
default?: (props: {
|
|
8119
8117
|
modelValue: boolean;
|
|
8120
8118
|
state: DataState;
|
|
@@ -8157,15 +8155,15 @@ interface ToggleGroupRootContext {
|
|
|
8157
8155
|
disabled?: Ref<boolean>;
|
|
8158
8156
|
}
|
|
8159
8157
|
declare const injectToggleGroupRootContext: <T extends ToggleGroupRootContext | null | undefined = ToggleGroupRootContext>(fallback?: T | undefined) => T extends null ? ToggleGroupRootContext | null : ToggleGroupRootContext, provideToggleGroupRootContext: (contextValue: ToggleGroupRootContext) => ToggleGroupRootContext;
|
|
8160
|
-
declare const _default$287: __VLS_WithSlots$15<
|
|
8158
|
+
declare const _default$287: __VLS_WithSlots$15<vue69.DefineComponent<ToggleGroupRootProps<AcceptableValue | AcceptableValue[]>, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
8161
8159
|
"update:modelValue": (payload: AcceptableValue | AcceptableValue[]) => any;
|
|
8162
|
-
}, string,
|
|
8160
|
+
}, string, vue69.PublicProps, Readonly<ToggleGroupRootProps<AcceptableValue | AcceptableValue[]>> & Readonly<{
|
|
8163
8161
|
"onUpdate:modelValue"?: ((payload: AcceptableValue | AcceptableValue[]) => any) | undefined;
|
|
8164
8162
|
}>, {
|
|
8165
8163
|
disabled: boolean;
|
|
8166
8164
|
loop: boolean;
|
|
8167
8165
|
rovingFocus: boolean;
|
|
8168
|
-
}, {}, {}, {}, string,
|
|
8166
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8169
8167
|
default?: (props: {
|
|
8170
8168
|
/** Current toggle values */
|
|
8171
8169
|
modelValue: AcceptableValue | AcceptableValue[] | undefined;
|
|
@@ -8182,9 +8180,9 @@ type __VLS_WithSlots$15<T, S> = T & {
|
|
|
8182
8180
|
interface ToolbarButtonProps extends PrimitiveProps {
|
|
8183
8181
|
disabled?: boolean;
|
|
8184
8182
|
}
|
|
8185
|
-
declare const _default$288: __VLS_WithSlots$14<
|
|
8186
|
-
as: AsTag |
|
|
8187
|
-
}, {}, {}, {}, string,
|
|
8183
|
+
declare const _default$288: __VLS_WithSlots$14<vue69.DefineComponent<ToolbarButtonProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToolbarButtonProps> & Readonly<{}>, {
|
|
8184
|
+
as: AsTag | vue69.Component;
|
|
8185
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8188
8186
|
default?: (props: {}) => any;
|
|
8189
8187
|
}>;
|
|
8190
8188
|
type __VLS_WithSlots$14<T, S> = T & {
|
|
@@ -8196,9 +8194,9 @@ type __VLS_WithSlots$14<T, S> = T & {
|
|
|
8196
8194
|
//#endregion
|
|
8197
8195
|
//#region src/Toolbar/ToolbarLink.vue.d.ts
|
|
8198
8196
|
interface ToolbarLinkProps extends PrimitiveProps {}
|
|
8199
|
-
declare const _default$289: __VLS_WithSlots$13<
|
|
8200
|
-
as: AsTag |
|
|
8201
|
-
}, {}, {}, {}, string,
|
|
8197
|
+
declare const _default$289: __VLS_WithSlots$13<vue69.DefineComponent<ToolbarLinkProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToolbarLinkProps> & Readonly<{}>, {
|
|
8198
|
+
as: AsTag | vue69.Component;
|
|
8199
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8202
8200
|
default?: (props: {}) => any;
|
|
8203
8201
|
}>;
|
|
8204
8202
|
type __VLS_WithSlots$13<T, S> = T & {
|
|
@@ -8222,9 +8220,9 @@ interface ToolbarRootContext {
|
|
|
8222
8220
|
dir: Ref<Direction>;
|
|
8223
8221
|
}
|
|
8224
8222
|
declare const injectToolbarRootContext: <T extends ToolbarRootContext | null | undefined = ToolbarRootContext>(fallback?: T | undefined) => T extends null ? ToolbarRootContext | null : ToolbarRootContext, provideToolbarRootContext: (contextValue: ToolbarRootContext) => ToolbarRootContext;
|
|
8225
|
-
declare const _default$290: __VLS_WithSlots$12<
|
|
8223
|
+
declare const _default$290: __VLS_WithSlots$12<vue69.DefineComponent<ToolbarRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToolbarRootProps> & Readonly<{}>, {
|
|
8226
8224
|
orientation: DataOrientation;
|
|
8227
|
-
}, {}, {}, {}, string,
|
|
8225
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8228
8226
|
default?: (props: {}) => any;
|
|
8229
8227
|
}>;
|
|
8230
8228
|
type __VLS_WithSlots$12<T, S> = T & {
|
|
@@ -8236,7 +8234,7 @@ type __VLS_WithSlots$12<T, S> = T & {
|
|
|
8236
8234
|
//#endregion
|
|
8237
8235
|
//#region src/Toolbar/ToolbarSeparator.vue.d.ts
|
|
8238
8236
|
interface ToolbarSeparatorProps extends PrimitiveProps {}
|
|
8239
|
-
declare const _default$291: __VLS_WithSlots$11<
|
|
8237
|
+
declare const _default$291: __VLS_WithSlots$11<vue69.DefineComponent<ToolbarSeparatorProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToolbarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8240
8238
|
default?: (props: {}) => any;
|
|
8241
8239
|
}>;
|
|
8242
8240
|
type __VLS_WithSlots$11<T, S> = T & {
|
|
@@ -8249,11 +8247,11 @@ type __VLS_WithSlots$11<T, S> = T & {
|
|
|
8249
8247
|
//#region src/Toolbar/ToolbarToggleGroup.vue.d.ts
|
|
8250
8248
|
type ToolbarToggleGroupEmits = ToggleGroupRootEmits;
|
|
8251
8249
|
interface ToolbarToggleGroupProps extends ToggleGroupRootProps {}
|
|
8252
|
-
declare const _default$292: __VLS_WithSlots$10<
|
|
8250
|
+
declare const _default$292: __VLS_WithSlots$10<vue69.DefineComponent<ToolbarToggleGroupProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
8253
8251
|
"update:modelValue": (payload: AcceptableValue | AcceptableValue[]) => any;
|
|
8254
|
-
}, string,
|
|
8252
|
+
}, string, vue69.PublicProps, Readonly<ToolbarToggleGroupProps> & Readonly<{
|
|
8255
8253
|
"onUpdate:modelValue"?: ((payload: AcceptableValue | AcceptableValue[]) => any) | undefined;
|
|
8256
|
-
}>, {}, {}, {}, {}, string,
|
|
8254
|
+
}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8257
8255
|
default?: (props: {}) => any;
|
|
8258
8256
|
}>;
|
|
8259
8257
|
type __VLS_WithSlots$10<T, S> = T & {
|
|
@@ -8265,7 +8263,7 @@ type __VLS_WithSlots$10<T, S> = T & {
|
|
|
8265
8263
|
//#endregion
|
|
8266
8264
|
//#region src/Toolbar/ToolbarToggleItem.vue.d.ts
|
|
8267
8265
|
interface ToolbarToggleItemProps extends ToggleGroupItemProps {}
|
|
8268
|
-
declare const _default$293: __VLS_WithSlots$9<
|
|
8266
|
+
declare const _default$293: __VLS_WithSlots$9<vue69.DefineComponent<ToolbarToggleItemProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ToolbarToggleItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8269
8267
|
default?: (props: {}) => any;
|
|
8270
8268
|
}>;
|
|
8271
8269
|
type __VLS_WithSlots$9<T, S> = T & {
|
|
@@ -8290,11 +8288,11 @@ interface TooltipArrowProps extends PrimitiveProps {
|
|
|
8290
8288
|
*/
|
|
8291
8289
|
height?: number;
|
|
8292
8290
|
}
|
|
8293
|
-
declare const _default$294: __VLS_WithSlots$8<
|
|
8294
|
-
as: AsTag |
|
|
8291
|
+
declare const _default$294: __VLS_WithSlots$8<vue69.DefineComponent<TooltipArrowProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TooltipArrowProps> & Readonly<{}>, {
|
|
8292
|
+
as: AsTag | vue69.Component;
|
|
8295
8293
|
width: number;
|
|
8296
8294
|
height: number;
|
|
8297
|
-
}, {}, {}, {}, string,
|
|
8295
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8298
8296
|
default?: (props: {}) => any;
|
|
8299
8297
|
}>;
|
|
8300
8298
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
@@ -8332,15 +8330,15 @@ interface TooltipContentProps extends TooltipContentImplProps {
|
|
|
8332
8330
|
*/
|
|
8333
8331
|
forceMount?: boolean;
|
|
8334
8332
|
}
|
|
8335
|
-
declare const _default$295: __VLS_WithSlots$7<
|
|
8333
|
+
declare const _default$295: __VLS_WithSlots$7<vue69.DefineComponent<TooltipContentProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
8336
8334
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8337
8335
|
pointerDownOutside: (event: Event) => any;
|
|
8338
|
-
}, string,
|
|
8336
|
+
}, string, vue69.PublicProps, Readonly<TooltipContentProps> & Readonly<{
|
|
8339
8337
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
8340
8338
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
8341
8339
|
}>, {
|
|
8342
8340
|
side: Side;
|
|
8343
|
-
}, {}, {}, {}, string,
|
|
8341
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8344
8342
|
default?: (props: {}) => any;
|
|
8345
8343
|
}>;
|
|
8346
8344
|
type __VLS_WithSlots$7<T, S> = T & {
|
|
@@ -8352,7 +8350,7 @@ type __VLS_WithSlots$7<T, S> = T & {
|
|
|
8352
8350
|
//#endregion
|
|
8353
8351
|
//#region src/Tooltip/TooltipPortal.vue.d.ts
|
|
8354
8352
|
interface TooltipPortalProps extends TeleportProps {}
|
|
8355
|
-
declare const _default$296: __VLS_WithSlots$6<
|
|
8353
|
+
declare const _default$296: __VLS_WithSlots$6<vue69.DefineComponent<TooltipPortalProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TooltipPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8356
8354
|
default?: (props: {}) => any;
|
|
8357
8355
|
}>;
|
|
8358
8356
|
type __VLS_WithSlots$6<T, S> = T & {
|
|
@@ -8410,12 +8408,12 @@ interface TooltipProviderProps {
|
|
|
8410
8408
|
*/
|
|
8411
8409
|
ignoreNonKeyboardFocus?: boolean;
|
|
8412
8410
|
}
|
|
8413
|
-
declare const _default$297: __VLS_WithSlots$5<
|
|
8411
|
+
declare const _default$297: __VLS_WithSlots$5<vue69.DefineComponent<TooltipProviderProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {
|
|
8414
8412
|
delayDuration: number;
|
|
8415
8413
|
skipDelayDuration: number;
|
|
8416
8414
|
disableHoverableContent: boolean;
|
|
8417
8415
|
ignoreNonKeyboardFocus: boolean;
|
|
8418
|
-
}, {}, {}, {}, string,
|
|
8416
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8419
8417
|
default?: (props: {}) => any;
|
|
8420
8418
|
}>;
|
|
8421
8419
|
type __VLS_WithSlots$5<T, S> = T & {
|
|
@@ -8488,19 +8486,19 @@ interface TooltipContext {
|
|
|
8488
8486
|
ignoreNonKeyboardFocus: Ref<boolean>;
|
|
8489
8487
|
}
|
|
8490
8488
|
declare const injectTooltipRootContext: <T extends TooltipContext | null | undefined = TooltipContext>(fallback?: T | undefined) => T extends null ? TooltipContext | null : TooltipContext, provideTooltipRootContext: (contextValue: TooltipContext) => TooltipContext;
|
|
8491
|
-
declare const _default$298: __VLS_WithSlots$4<
|
|
8489
|
+
declare const _default$298: __VLS_WithSlots$4<vue69.DefineComponent<TooltipRootProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {
|
|
8492
8490
|
"update:open": (value: boolean) => any;
|
|
8493
|
-
}, string,
|
|
8491
|
+
}, string, vue69.PublicProps, Readonly<TooltipRootProps> & Readonly<{
|
|
8494
8492
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
8495
8493
|
}>, {
|
|
8496
|
-
disabled: boolean;
|
|
8497
|
-
open: boolean;
|
|
8498
8494
|
defaultOpen: boolean;
|
|
8495
|
+
open: boolean;
|
|
8496
|
+
disabled: boolean;
|
|
8499
8497
|
delayDuration: number;
|
|
8500
8498
|
disableHoverableContent: boolean;
|
|
8501
8499
|
disableClosingTrigger: boolean;
|
|
8502
8500
|
ignoreNonKeyboardFocus: boolean;
|
|
8503
|
-
}, {}, {}, {}, string,
|
|
8501
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8504
8502
|
default?: (props: {
|
|
8505
8503
|
/** Current open state */
|
|
8506
8504
|
open: boolean;
|
|
@@ -8515,9 +8513,9 @@ type __VLS_WithSlots$4<T, S> = T & {
|
|
|
8515
8513
|
//#endregion
|
|
8516
8514
|
//#region src/Tooltip/TooltipTrigger.vue.d.ts
|
|
8517
8515
|
interface TooltipTriggerProps extends PopperAnchorProps {}
|
|
8518
|
-
declare const _default$299: __VLS_WithSlots$3<
|
|
8519
|
-
as: AsTag |
|
|
8520
|
-
}, {}, {}, {}, string,
|
|
8516
|
+
declare const _default$299: __VLS_WithSlots$3<vue69.DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {
|
|
8517
|
+
as: AsTag | vue69.Component;
|
|
8518
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8521
8519
|
default?: (props: {}) => any;
|
|
8522
8520
|
}>;
|
|
8523
8521
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
@@ -8556,11 +8554,11 @@ declare const _default$300: <T extends Record<string, any>>(__VLS_props: NonNull
|
|
|
8556
8554
|
props: __VLS_PrettifyLocal$1<Pick<Partial<{}> & Omit<{
|
|
8557
8555
|
readonly onSelect?: ((event: SelectEvent$3<T>) => any) | undefined;
|
|
8558
8556
|
readonly onToggle?: ((event: ToggleEvent<T>) => any) | undefined;
|
|
8559
|
-
} &
|
|
8560
|
-
expose(exposed:
|
|
8561
|
-
isExpanded:
|
|
8562
|
-
isSelected:
|
|
8563
|
-
isIndeterminate:
|
|
8557
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onToggle" | "onSelect"> & TreeItemProps<T> & Partial<{}>> & vue69.PublicProps;
|
|
8558
|
+
expose(exposed: vue69.ShallowUnwrapRef<{
|
|
8559
|
+
isExpanded: vue69.ComputedRef<boolean>;
|
|
8560
|
+
isSelected: vue69.ComputedRef<boolean>;
|
|
8561
|
+
isIndeterminate: vue69.ComputedRef<boolean | undefined>;
|
|
8564
8562
|
handleToggle: () => void;
|
|
8565
8563
|
handleSelect: () => void;
|
|
8566
8564
|
}>): void;
|
|
@@ -8575,7 +8573,7 @@ declare const _default$300: <T extends Record<string, any>>(__VLS_props: NonNull
|
|
|
8575
8573
|
}) => any;
|
|
8576
8574
|
};
|
|
8577
8575
|
emit: ((evt: "select", event: SelectEvent$3<T>) => void) & ((evt: "toggle", event: ToggleEvent<T>) => void);
|
|
8578
|
-
}>) =>
|
|
8576
|
+
}>) => vue69.VNode & {
|
|
8579
8577
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
8580
8578
|
};
|
|
8581
8579
|
type __VLS_PrettifyLocal$1<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -8651,8 +8649,8 @@ declare const _default$301: <T extends Record<string, any>, U extends Record<str
|
|
|
8651
8649
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
8652
8650
|
readonly "onUpdate:modelValue"?: ((val: M extends true ? U[] : U) => any) | undefined;
|
|
8653
8651
|
readonly "onUpdate:expanded"?: ((val: string[]) => any) | undefined;
|
|
8654
|
-
} &
|
|
8655
|
-
expose(exposed:
|
|
8652
|
+
} & vue69.VNodeProps & vue69.AllowedComponentProps & vue69.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:expanded"> & TreeRootProps<T, U, M> & Partial<{}>> & vue69.PublicProps;
|
|
8653
|
+
expose(exposed: vue69.ShallowUnwrapRef<{}>): void;
|
|
8656
8654
|
attrs: any;
|
|
8657
8655
|
slots: {
|
|
8658
8656
|
default?: (props: {
|
|
@@ -8662,7 +8660,7 @@ declare const _default$301: <T extends Record<string, any>, U extends Record<str
|
|
|
8662
8660
|
}) => any;
|
|
8663
8661
|
};
|
|
8664
8662
|
emit: ((evt: "update:modelValue", val: M extends true ? U[] : U) => void) & ((evt: "update:expanded", val: string[]) => void);
|
|
8665
|
-
}>) =>
|
|
8663
|
+
}>) => vue69.VNode & {
|
|
8666
8664
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
8667
8665
|
};
|
|
8668
8666
|
type __VLS_PrettifyLocal<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -8677,7 +8675,7 @@ interface TreeVirtualizerProps {
|
|
|
8677
8675
|
/** Text content for each item to achieve type-ahead feature */
|
|
8678
8676
|
textContent?: (item: Record<string, any>) => string;
|
|
8679
8677
|
}
|
|
8680
|
-
declare const _default$302: __VLS_WithSlots$2<
|
|
8678
|
+
declare const _default$302: __VLS_WithSlots$2<vue69.DefineComponent<TreeVirtualizerProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<TreeVirtualizerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8681
8679
|
default?: (props: {
|
|
8682
8680
|
item: FlattenedItem<Record<string, any>>;
|
|
8683
8681
|
virtualizer: Virtualizer<Element | Window, Element>;
|
|
@@ -8698,7 +8696,7 @@ interface ViewportProps extends PrimitiveProps {
|
|
|
8698
8696
|
*/
|
|
8699
8697
|
nonce?: string;
|
|
8700
8698
|
}
|
|
8701
|
-
declare const _default$303: __VLS_WithSlots$1<
|
|
8699
|
+
declare const _default$303: __VLS_WithSlots$1<vue69.DefineComponent<ViewportProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<ViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8702
8700
|
default?: (props: {}) => any;
|
|
8703
8701
|
}>;
|
|
8704
8702
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
@@ -8712,10 +8710,10 @@ type __VLS_WithSlots$1<T, S> = T & {
|
|
|
8712
8710
|
interface VisuallyHiddenProps extends PrimitiveProps {
|
|
8713
8711
|
feature?: 'focusable' | 'fully-hidden';
|
|
8714
8712
|
}
|
|
8715
|
-
declare const _default$304: __VLS_WithSlots<
|
|
8716
|
-
as: AsTag |
|
|
8713
|
+
declare const _default$304: __VLS_WithSlots<vue69.DefineComponent<VisuallyHiddenProps, {}, {}, {}, {}, vue69.ComponentOptionsMixin, vue69.ComponentOptionsMixin, {}, string, vue69.PublicProps, Readonly<VisuallyHiddenProps> & Readonly<{}>, {
|
|
8714
|
+
as: AsTag | vue69.Component;
|
|
8717
8715
|
feature: "focusable" | "fully-hidden";
|
|
8718
|
-
}, {}, {}, {}, string,
|
|
8716
|
+
}, {}, {}, {}, string, vue69.ComponentProvideOptions, false, {}, any>, {
|
|
8719
8717
|
default?: (props: {}) => any;
|
|
8720
8718
|
}>;
|
|
8721
8719
|
type __VLS_WithSlots<T, S> = T & {
|