reka-ui 2.4.0 → 2.5.0
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/ContextMenu/ContextMenuRoot.cjs +8 -2
- package/dist/ContextMenu/ContextMenuRoot.cjs.map +1 -1
- package/dist/ContextMenu/ContextMenuRoot.js +8 -2
- package/dist/ContextMenu/ContextMenuRoot.js.map +1 -1
- package/dist/ContextMenu/ContextMenuTrigger.cjs +1 -1
- package/dist/ContextMenu/ContextMenuTrigger.cjs.map +1 -1
- package/dist/ContextMenu/ContextMenuTrigger.js +1 -1
- package/dist/ContextMenu/ContextMenuTrigger.js.map +1 -1
- package/dist/DatePicker/DatePickerRoot.cjs +9 -2
- package/dist/DatePicker/DatePickerRoot.cjs.map +1 -1
- package/dist/DatePicker/DatePickerRoot.js +9 -2
- package/dist/DatePicker/DatePickerRoot.js.map +1 -1
- package/dist/DateRangePicker/DateRangePickerRoot.cjs +11 -2
- package/dist/DateRangePicker/DateRangePickerRoot.cjs.map +1 -1
- package/dist/DateRangePicker/DateRangePickerRoot.js +11 -2
- package/dist/DateRangePicker/DateRangePickerRoot.js.map +1 -1
- package/dist/RangeCalendar/RangeCalendarRoot.cjs +26 -28
- package/dist/RangeCalendar/RangeCalendarRoot.cjs.map +1 -1
- package/dist/RangeCalendar/RangeCalendarRoot.js +28 -30
- package/dist/RangeCalendar/RangeCalendarRoot.js.map +1 -1
- package/dist/RovingFocus/RovingFocusGroup.cjs +2 -0
- package/dist/RovingFocus/RovingFocusGroup.cjs.map +1 -1
- package/dist/RovingFocus/RovingFocusGroup.js +2 -0
- package/dist/RovingFocus/RovingFocusGroup.js.map +1 -1
- package/dist/Select/SelectContentImpl.cjs +3 -1
- package/dist/Select/SelectContentImpl.cjs.map +1 -1
- package/dist/Select/SelectContentImpl.js +3 -1
- package/dist/Select/SelectContentImpl.js.map +1 -1
- package/dist/Select/SelectRoot.cjs +12 -2
- package/dist/Select/SelectRoot.cjs.map +1 -1
- package/dist/Select/SelectRoot.js +13 -3
- package/dist/Select/SelectRoot.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/constant.d.cts.map +1 -1
- package/dist/index.d.cts +813 -789
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +825 -801
- package/dist/index.d.ts.map +1 -1
- package/dist/index2.d.cts.map +1 -1
- package/dist/shared/useDateFormatter.cjs +1 -1
- package/dist/shared/useDateFormatter.cjs.map +1 -1
- package/dist/shared/useDateFormatter.js +1 -1
- package/dist/shared/useDateFormatter.js.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/ContextMenu/ContextMenuRoot.vue +12 -2
- package/src/ContextMenu/ContextMenuTrigger.vue +4 -1
- package/src/DatePicker/DatePickerRoot.vue +11 -1
- package/src/DateRangePicker/DateRangePickerRoot.vue +14 -1
- package/src/RadioGroup/index.ts +1 -0
- package/src/RangeCalendar/RangeCalendarRoot.vue +34 -44
- package/src/RovingFocus/RovingFocusGroup.vue +2 -1
- package/src/Select/SelectContentImpl.vue +6 -1
- package/src/Select/SelectRoot.vue +20 -3
- package/src/shared/useDateFormatter.ts +2 -1
- package/src/shared/useId.ts +4 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DateRange, DateStep, DateValue, Grid, HourCycle, Matcher, SegmentPart, SegmentValueObj, WeekDayFormat } from "./index2.cjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _internationalized_date650 from "@internationalized/date";
|
|
3
3
|
import { CalendarDateTime, DateValue as DateValue$1, Time, ZonedDateTime } from "@internationalized/date";
|
|
4
|
-
import * as
|
|
4
|
+
import * as vue6 from "vue";
|
|
5
5
|
import { CSSProperties, Component, ComponentPublicInstance, ComputedRef, DefineComponent, HTMLAttributes, ImgHTMLAttributes, MaybeRef, MaybeRefOrGetter, PropType, Ref, SlotsType, UnwrapNestedRefs, VNode, VNodeProps, VNodeRef } from "vue";
|
|
6
6
|
import { EventHook, EventHookOn } from "@vueuse/core";
|
|
7
7
|
import { ComponentProps } from "vue-component-type-helpers";
|
|
@@ -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): vue6.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: vue6.Ref<Element | T | null | undefined, Element | T | null | undefined>;
|
|
150
|
+
currentElement: vue6.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>): vue6.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): vue6.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: vue6.DefineComponent<vue6.ExtractPropTypes<{
|
|
269
269
|
asChild: {
|
|
270
270
|
type: BooleanConstructor;
|
|
271
271
|
default: boolean;
|
|
@@ -274,9 +274,9 @@ declare const Primitive: vue1606.DefineComponent<vue1606.ExtractPropTypes<{
|
|
|
274
274
|
type: PropType<AsTag | Component>;
|
|
275
275
|
default: string;
|
|
276
276
|
};
|
|
277
|
-
}>, () =>
|
|
277
|
+
}>, () => vue6.VNode<vue6.RendererNode, vue6.RendererElement, {
|
|
278
278
|
[key: string]: any;
|
|
279
|
-
}>, {}, {}, {},
|
|
279
|
+
}>, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<vue6.ExtractPropTypes<{
|
|
280
280
|
asChild: {
|
|
281
281
|
type: BooleanConstructor;
|
|
282
282
|
default: boolean;
|
|
@@ -288,15 +288,15 @@ declare const Primitive: vue1606.DefineComponent<vue1606.ExtractPropTypes<{
|
|
|
288
288
|
}>> & Readonly<{}>, {
|
|
289
289
|
asChild: boolean;
|
|
290
290
|
as: AsTag | Component;
|
|
291
|
-
}, {}, {}, {}, string,
|
|
291
|
+
}, {}, {}, {}, string, vue6.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: vue6.DefineComponent<{}, () => vue6.VNode<vue6.RendererNode, vue6.RendererElement, {
|
|
296
296
|
[key: string]: any;
|
|
297
|
-
}> |
|
|
297
|
+
}> | vue6.VNode<vue6.RendererNode, vue6.RendererElement, {
|
|
298
298
|
[key: string]: any;
|
|
299
|
-
}>[] | null, {}, {}, {},
|
|
299
|
+
}>[] | null, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<CollapsibleContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
314
314
|
contentFound: (args_0: void) => any;
|
|
315
|
-
}, string,
|
|
315
|
+
}, string, vue6.PublicProps, Readonly<CollapsibleContentProps> & Readonly<{
|
|
316
316
|
onContentFound?: ((args_0?: void | undefined) => any) | undefined;
|
|
317
|
-
}>, {}, {}, {}, {}, string,
|
|
317
|
+
}>, {}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<CollapsibleRootProps, {
|
|
351
351
|
open: Ref<boolean, boolean>;
|
|
352
|
-
}, {}, {}, {},
|
|
352
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
353
353
|
"update:open": (value: boolean) => any;
|
|
354
|
-
}, string,
|
|
354
|
+
}, string, vue6.PublicProps, Readonly<CollapsibleRootProps> & Readonly<{
|
|
355
355
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
356
356
|
}>, {
|
|
357
357
|
open: boolean;
|
|
358
358
|
defaultOpen: boolean;
|
|
359
359
|
unmountOnHide: boolean;
|
|
360
|
-
}, {}, {}, {}, string,
|
|
360
|
+
}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<CollapsibleTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CollapsibleTriggerProps> & Readonly<{}>, {
|
|
376
|
+
as: AsTag | vue6.Component;
|
|
377
|
+
}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<AccordionContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
390
390
|
default?: (props: {}) => any;
|
|
391
391
|
}>;
|
|
392
392
|
type __VLS_WithSlots$285<T, S> = T & {
|
|
@@ -397,9 +397,9 @@ type __VLS_WithSlots$285<T, S> = T & {
|
|
|
397
397
|
//#endregion
|
|
398
398
|
//#region src/Accordion/AccordionHeader.vue.d.ts
|
|
399
399
|
interface AccordionHeaderProps extends PrimitiveProps {}
|
|
400
|
-
declare const _default$1: __VLS_WithSlots$284<
|
|
401
|
-
as: AsTag |
|
|
402
|
-
}, {}, {}, {}, string,
|
|
400
|
+
declare const _default$1: __VLS_WithSlots$284<vue6.DefineComponent<AccordionHeaderProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AccordionHeaderProps> & Readonly<{}>, {
|
|
401
|
+
as: AsTag | vue6.Component;
|
|
402
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
403
403
|
default?: (props: {}) => any;
|
|
404
404
|
}>;
|
|
405
405
|
type __VLS_WithSlots$284<T, S> = T & {
|
|
@@ -438,10 +438,10 @@ interface AccordionItemContext {
|
|
|
438
438
|
value: ComputedRef<string>;
|
|
439
439
|
}
|
|
440
440
|
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<
|
|
441
|
+
declare const _default$2: __VLS_WithSlots$283<vue6.DefineComponent<AccordionItemProps, {
|
|
442
442
|
open: ComputedRef<boolean>;
|
|
443
443
|
dataDisabled: ComputedRef<"" | undefined>;
|
|
444
|
-
}, {}, {}, {},
|
|
444
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
445
445
|
default?: (props: {
|
|
446
446
|
/** Current open state */
|
|
447
447
|
open: boolean;
|
|
@@ -509,8 +509,8 @@ declare const injectAccordionRootContext: <T extends AccordionRootContext<Accord
|
|
|
509
509
|
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
510
|
props: __VLS_PrettifyLocal$14<Pick<Partial<{}> & Omit<{
|
|
511
511
|
readonly "onUpdate:modelValue"?: ((value: (ExplicitType extends "single" ? string : string[]) | undefined) => any) | undefined;
|
|
512
|
-
} &
|
|
513
|
-
expose(exposed:
|
|
512
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onUpdate:modelValue"> & AccordionRootProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
513
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
514
514
|
attrs: any;
|
|
515
515
|
slots: {
|
|
516
516
|
default?: (props: {
|
|
@@ -519,7 +519,7 @@ declare const _default$3: <T extends (string | string[]), ExplicitType extends S
|
|
|
519
519
|
}) => any;
|
|
520
520
|
};
|
|
521
521
|
emit: (evt: "update:modelValue", value: (ExplicitType extends "single" ? string : string[]) | undefined) => void;
|
|
522
|
-
}>) =>
|
|
522
|
+
}>) => vue6.VNode & {
|
|
523
523
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
524
524
|
};
|
|
525
525
|
type __VLS_PrettifyLocal$14<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -527,7 +527,7 @@ type __VLS_PrettifyLocal$14<T> = { [K in keyof T]: T[K] } & {};
|
|
|
527
527
|
//#endregion
|
|
528
528
|
//#region src/Accordion/AccordionTrigger.vue.d.ts
|
|
529
529
|
interface AccordionTriggerProps extends PrimitiveProps {}
|
|
530
|
-
declare const _default$4: __VLS_WithSlots$282<
|
|
530
|
+
declare const _default$4: __VLS_WithSlots$282<vue6.DefineComponent<AccordionTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AccordionTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
531
531
|
default?: (props: {}) => any;
|
|
532
532
|
}>;
|
|
533
533
|
type __VLS_WithSlots$282<T, S> = T & {
|
|
@@ -539,9 +539,9 @@ type __VLS_WithSlots$282<T, S> = T & {
|
|
|
539
539
|
//#endregion
|
|
540
540
|
//#region src/Dialog/DialogClose.vue.d.ts
|
|
541
541
|
interface DialogCloseProps extends PrimitiveProps {}
|
|
542
|
-
declare const _default$113: __VLS_WithSlots$281<
|
|
543
|
-
as: AsTag |
|
|
544
|
-
}, {}, {}, {}, string,
|
|
542
|
+
declare const _default$113: __VLS_WithSlots$281<vue6.DefineComponent<DialogCloseProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
|
|
543
|
+
as: AsTag | vue6.Component;
|
|
544
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
545
545
|
default?: (props: {}) => any;
|
|
546
546
|
}>;
|
|
547
547
|
type __VLS_WithSlots$281<T, S> = T & {
|
|
@@ -628,21 +628,21 @@ interface DialogContentProps extends Omit<DialogContentImplProps, 'trapFocus'> {
|
|
|
628
628
|
*/
|
|
629
629
|
forceMount?: boolean;
|
|
630
630
|
}
|
|
631
|
-
declare const _default$114: __VLS_WithSlots$280<
|
|
631
|
+
declare const _default$114: __VLS_WithSlots$280<vue6.DefineComponent<DialogContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
632
632
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
633
633
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
634
634
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
635
635
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
636
636
|
openAutoFocus: (event: Event) => any;
|
|
637
637
|
closeAutoFocus: (event: Event) => any;
|
|
638
|
-
}, string,
|
|
638
|
+
}, string, vue6.PublicProps, Readonly<DialogContentProps> & Readonly<{
|
|
639
639
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
640
640
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
641
641
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
642
642
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
643
643
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
644
644
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
645
|
-
}>, {}, {}, {}, {}, string,
|
|
645
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
646
646
|
default?: (props: {}) => any;
|
|
647
647
|
} & {
|
|
648
648
|
default?: (props: {}) => any;
|
|
@@ -656,9 +656,9 @@ type __VLS_WithSlots$280<T, S> = T & {
|
|
|
656
656
|
//#endregion
|
|
657
657
|
//#region src/Dialog/DialogDescription.vue.d.ts
|
|
658
658
|
interface DialogDescriptionProps extends PrimitiveProps {}
|
|
659
|
-
declare const _default$115: __VLS_WithSlots$279<
|
|
660
|
-
as: AsTag |
|
|
661
|
-
}, {}, {}, {}, string,
|
|
659
|
+
declare const _default$115: __VLS_WithSlots$279<vue6.DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
|
|
660
|
+
as: AsTag | vue6.Component;
|
|
661
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
662
662
|
default?: (props: {}) => any;
|
|
663
663
|
}>;
|
|
664
664
|
type __VLS_WithSlots$279<T, S> = T & {
|
|
@@ -679,7 +679,7 @@ interface DialogOverlayProps extends DialogOverlayImplProps {
|
|
|
679
679
|
*/
|
|
680
680
|
forceMount?: boolean;
|
|
681
681
|
}
|
|
682
|
-
declare const _default$116: __VLS_WithSlots$278<
|
|
682
|
+
declare const _default$116: __VLS_WithSlots$278<vue6.DefineComponent<DialogOverlayProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
683
683
|
default?: (props: {}) => any;
|
|
684
684
|
}>;
|
|
685
685
|
type __VLS_WithSlots$278<T, S> = T & {
|
|
@@ -719,7 +719,7 @@ interface TeleportProps {
|
|
|
719
719
|
//#endregion
|
|
720
720
|
//#region src/Dialog/DialogPortal.vue.d.ts
|
|
721
721
|
interface DialogPortalProps extends TeleportProps {}
|
|
722
|
-
declare const _default$117: __VLS_WithSlots$277<
|
|
722
|
+
declare const _default$117: __VLS_WithSlots$277<vue6.DefineComponent<DialogPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DialogPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
723
723
|
default?: (props: {}) => any;
|
|
724
724
|
}>;
|
|
725
725
|
type __VLS_WithSlots$277<T, S> = T & {
|
|
@@ -758,15 +758,15 @@ interface DialogRootContext {
|
|
|
758
758
|
descriptionId: string;
|
|
759
759
|
}
|
|
760
760
|
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<
|
|
761
|
+
declare const _default$118: __VLS_WithSlots$276<vue6.DefineComponent<DialogRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
762
762
|
"update:open": (value: boolean) => any;
|
|
763
|
-
}, string,
|
|
763
|
+
}, string, vue6.PublicProps, Readonly<DialogRootProps> & Readonly<{
|
|
764
764
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
765
765
|
}>, {
|
|
766
766
|
open: boolean;
|
|
767
767
|
defaultOpen: boolean;
|
|
768
768
|
modal: boolean;
|
|
769
|
-
}, {}, {}, {}, string,
|
|
769
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
770
770
|
default?: (props: {
|
|
771
771
|
/** Current open state */
|
|
772
772
|
open: boolean;
|
|
@@ -783,9 +783,9 @@ type __VLS_WithSlots$276<T, S> = T & {
|
|
|
783
783
|
//#endregion
|
|
784
784
|
//#region src/Dialog/DialogTitle.vue.d.ts
|
|
785
785
|
interface DialogTitleProps extends PrimitiveProps {}
|
|
786
|
-
declare const _default$119: __VLS_WithSlots$275<
|
|
787
|
-
as: AsTag |
|
|
788
|
-
}, {}, {}, {}, string,
|
|
786
|
+
declare const _default$119: __VLS_WithSlots$275<vue6.DefineComponent<DialogTitleProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
|
|
787
|
+
as: AsTag | vue6.Component;
|
|
788
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
789
789
|
default?: (props: {}) => any;
|
|
790
790
|
}>;
|
|
791
791
|
type __VLS_WithSlots$275<T, S> = T & {
|
|
@@ -797,9 +797,9 @@ type __VLS_WithSlots$275<T, S> = T & {
|
|
|
797
797
|
//#endregion
|
|
798
798
|
//#region src/Dialog/DialogTrigger.vue.d.ts
|
|
799
799
|
interface DialogTriggerProps extends PrimitiveProps {}
|
|
800
|
-
declare const _default$120: __VLS_WithSlots$274<
|
|
801
|
-
as: AsTag |
|
|
802
|
-
}, {}, {}, {}, string,
|
|
800
|
+
declare const _default$120: __VLS_WithSlots$274<vue6.DefineComponent<DialogTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {
|
|
801
|
+
as: AsTag | vue6.Component;
|
|
802
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
803
803
|
default?: (props: {}) => any;
|
|
804
804
|
}>;
|
|
805
805
|
type __VLS_WithSlots$274<T, S> = T & {
|
|
@@ -811,9 +811,9 @@ type __VLS_WithSlots$274<T, S> = T & {
|
|
|
811
811
|
//#endregion
|
|
812
812
|
//#region src/AlertDialog/AlertDialogAction.vue.d.ts
|
|
813
813
|
interface AlertDialogActionProps extends DialogCloseProps {}
|
|
814
|
-
declare const _default$5: __VLS_WithSlots$273<
|
|
815
|
-
as: AsTag |
|
|
816
|
-
}, {}, {}, {}, string,
|
|
814
|
+
declare const _default$5: __VLS_WithSlots$273<vue6.DefineComponent<AlertDialogActionProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AlertDialogActionProps> & Readonly<{}>, {
|
|
815
|
+
as: AsTag | vue6.Component;
|
|
816
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
817
817
|
default?: (props: {}) => any;
|
|
818
818
|
}>;
|
|
819
819
|
type __VLS_WithSlots$273<T, S> = T & {
|
|
@@ -825,9 +825,9 @@ type __VLS_WithSlots$273<T, S> = T & {
|
|
|
825
825
|
//#endregion
|
|
826
826
|
//#region src/AlertDialog/AlertDialogCancel.vue.d.ts
|
|
827
827
|
interface AlertDialogCancelProps extends DialogCloseProps {}
|
|
828
|
-
declare const _default$6: __VLS_WithSlots$272<
|
|
829
|
-
as: AsTag |
|
|
830
|
-
}, {}, {}, {}, string,
|
|
828
|
+
declare const _default$6: __VLS_WithSlots$272<vue6.DefineComponent<AlertDialogCancelProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AlertDialogCancelProps> & Readonly<{}>, {
|
|
829
|
+
as: AsTag | vue6.Component;
|
|
830
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
831
831
|
default?: (props: {}) => any;
|
|
832
832
|
}>;
|
|
833
833
|
type __VLS_WithSlots$272<T, S> = T & {
|
|
@@ -844,21 +844,21 @@ interface AlertDialogContentContext {
|
|
|
844
844
|
declare const injectAlertDialogContentContext: <T extends AlertDialogContentContext | null | undefined = AlertDialogContentContext>(fallback?: T | undefined) => T extends null ? AlertDialogContentContext | null : AlertDialogContentContext, provideAlertDialogContentContext: (contextValue: AlertDialogContentContext) => AlertDialogContentContext;
|
|
845
845
|
type AlertDialogContentEmits = DialogContentEmits;
|
|
846
846
|
interface AlertDialogContentProps extends DialogContentProps {}
|
|
847
|
-
declare const _default$7: __VLS_WithSlots$271<
|
|
847
|
+
declare const _default$7: __VLS_WithSlots$271<vue6.DefineComponent<AlertDialogContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
848
848
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
849
849
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
850
850
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
851
851
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
852
852
|
openAutoFocus: (event: Event) => any;
|
|
853
853
|
closeAutoFocus: (event: Event) => any;
|
|
854
|
-
}, string,
|
|
854
|
+
}, string, vue6.PublicProps, Readonly<AlertDialogContentProps> & Readonly<{
|
|
855
855
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
856
856
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
857
857
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
858
858
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
859
859
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
860
860
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
861
|
-
}>, {}, {}, {}, {}, string,
|
|
861
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
862
862
|
default?: (props: {}) => any;
|
|
863
863
|
}>;
|
|
864
864
|
type __VLS_WithSlots$271<T, S> = T & {
|
|
@@ -870,9 +870,9 @@ type __VLS_WithSlots$271<T, S> = T & {
|
|
|
870
870
|
//#endregion
|
|
871
871
|
//#region src/AlertDialog/AlertDialogDescription.vue.d.ts
|
|
872
872
|
interface AlertDialogDescriptionProps extends DialogDescriptionProps {}
|
|
873
|
-
declare const _default$8: __VLS_WithSlots$270<
|
|
874
|
-
as: AsTag |
|
|
875
|
-
}, {}, {}, {}, string,
|
|
873
|
+
declare const _default$8: __VLS_WithSlots$270<vue6.DefineComponent<AlertDialogDescriptionProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AlertDialogDescriptionProps> & Readonly<{}>, {
|
|
874
|
+
as: AsTag | vue6.Component;
|
|
875
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
876
876
|
default?: (props: {}) => any;
|
|
877
877
|
}>;
|
|
878
878
|
type __VLS_WithSlots$270<T, S> = T & {
|
|
@@ -884,7 +884,7 @@ type __VLS_WithSlots$270<T, S> = T & {
|
|
|
884
884
|
//#endregion
|
|
885
885
|
//#region src/AlertDialog/AlertDialogOverlay.vue.d.ts
|
|
886
886
|
interface AlertDialogOverlayProps extends DialogOverlayProps {}
|
|
887
|
-
declare const _default$9: __VLS_WithSlots$269<
|
|
887
|
+
declare const _default$9: __VLS_WithSlots$269<vue6.DefineComponent<AlertDialogOverlayProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AlertDialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
888
888
|
default?: (props: {}) => any;
|
|
889
889
|
}>;
|
|
890
890
|
type __VLS_WithSlots$269<T, S> = T & {
|
|
@@ -896,7 +896,7 @@ type __VLS_WithSlots$269<T, S> = T & {
|
|
|
896
896
|
//#endregion
|
|
897
897
|
//#region src/AlertDialog/AlertDialogPortal.vue.d.ts
|
|
898
898
|
interface AlertDialogPortalProps extends TeleportProps {}
|
|
899
|
-
declare const _default$10: __VLS_WithSlots$268<
|
|
899
|
+
declare const _default$10: __VLS_WithSlots$268<vue6.DefineComponent<AlertDialogPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AlertDialogPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
900
900
|
default?: (props: {}) => any;
|
|
901
901
|
}>;
|
|
902
902
|
type __VLS_WithSlots$268<T, S> = T & {
|
|
@@ -909,11 +909,11 @@ type __VLS_WithSlots$268<T, S> = T & {
|
|
|
909
909
|
//#region src/AlertDialog/AlertDialogRoot.vue.d.ts
|
|
910
910
|
type AlertDialogEmits = DialogRootEmits;
|
|
911
911
|
interface AlertDialogProps extends Omit<DialogRootProps, 'modal'> {}
|
|
912
|
-
declare const _default$11: __VLS_WithSlots$267<
|
|
912
|
+
declare const _default$11: __VLS_WithSlots$267<vue6.DefineComponent<AlertDialogProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
913
913
|
"update:open": (value: boolean) => any;
|
|
914
|
-
}, string,
|
|
914
|
+
}, string, vue6.PublicProps, Readonly<AlertDialogProps> & Readonly<{
|
|
915
915
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
916
|
-
}>, {}, {}, {}, {}, string,
|
|
916
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
917
917
|
default?: (props: {
|
|
918
918
|
open: boolean;
|
|
919
919
|
close: () => void;
|
|
@@ -928,9 +928,9 @@ type __VLS_WithSlots$267<T, S> = T & {
|
|
|
928
928
|
//#endregion
|
|
929
929
|
//#region src/AlertDialog/AlertDialogTitle.vue.d.ts
|
|
930
930
|
interface AlertDialogTitleProps extends DialogTitleProps {}
|
|
931
|
-
declare const _default$12: __VLS_WithSlots$266<
|
|
932
|
-
as: AsTag |
|
|
933
|
-
}, {}, {}, {}, string,
|
|
931
|
+
declare const _default$12: __VLS_WithSlots$266<vue6.DefineComponent<AlertDialogTitleProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AlertDialogTitleProps> & Readonly<{}>, {
|
|
932
|
+
as: AsTag | vue6.Component;
|
|
933
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
934
934
|
default?: (props: {}) => any;
|
|
935
935
|
}>;
|
|
936
936
|
type __VLS_WithSlots$266<T, S> = T & {
|
|
@@ -942,9 +942,9 @@ type __VLS_WithSlots$266<T, S> = T & {
|
|
|
942
942
|
//#endregion
|
|
943
943
|
//#region src/AlertDialog/AlertDialogTrigger.vue.d.ts
|
|
944
944
|
interface AlertDialogTriggerProps extends DialogTriggerProps {}
|
|
945
|
-
declare const _default$13: __VLS_WithSlots$265<
|
|
946
|
-
as: AsTag |
|
|
947
|
-
}, {}, {}, {}, string,
|
|
945
|
+
declare const _default$13: __VLS_WithSlots$265<vue6.DefineComponent<AlertDialogTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AlertDialogTriggerProps> & Readonly<{}>, {
|
|
946
|
+
as: AsTag | vue6.Component;
|
|
947
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
948
948
|
default?: (props: {}) => any;
|
|
949
949
|
}>;
|
|
950
950
|
type __VLS_WithSlots$265<T, S> = T & {
|
|
@@ -962,9 +962,9 @@ interface AspectRatioProps extends PrimitiveProps {
|
|
|
962
962
|
*/
|
|
963
963
|
ratio?: number;
|
|
964
964
|
}
|
|
965
|
-
declare const _default$14: __VLS_WithSlots$264<
|
|
965
|
+
declare const _default$14: __VLS_WithSlots$264<vue6.DefineComponent<AspectRatioProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AspectRatioProps> & Readonly<{}>, {
|
|
966
966
|
ratio: number;
|
|
967
|
-
}, {}, {}, {}, string,
|
|
967
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
968
968
|
default?: (props: {
|
|
969
969
|
/** Current aspect ratio (in %) */
|
|
970
970
|
aspect: number;
|
|
@@ -982,9 +982,9 @@ interface AvatarFallbackProps extends PrimitiveProps {
|
|
|
982
982
|
/** Useful for delaying rendering so it only appears for those with slower connections. */
|
|
983
983
|
delayMs?: number;
|
|
984
984
|
}
|
|
985
|
-
declare const _default$15: __VLS_WithSlots$263<
|
|
986
|
-
as: AsTag |
|
|
987
|
-
}, {}, {}, {}, string,
|
|
985
|
+
declare const _default$15: __VLS_WithSlots$263<vue6.DefineComponent<AvatarFallbackProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AvatarFallbackProps> & Readonly<{}>, {
|
|
986
|
+
as: AsTag | vue6.Component;
|
|
987
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
988
988
|
default?: (props: {}) => any;
|
|
989
989
|
}>;
|
|
990
990
|
type __VLS_WithSlots$263<T, S> = T & {
|
|
@@ -1010,13 +1010,13 @@ interface AvatarImageProps extends PrimitiveProps {
|
|
|
1010
1010
|
referrerPolicy?: ImgHTMLAttributes['referrerpolicy'];
|
|
1011
1011
|
crossOrigin?: ImgHTMLAttributes['crossorigin'];
|
|
1012
1012
|
}
|
|
1013
|
-
declare const _default$16: __VLS_WithSlots$262<
|
|
1013
|
+
declare const _default$16: __VLS_WithSlots$262<vue6.DefineComponent<AvatarImageProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
1014
1014
|
loadingStatusChange: (value: ImageLoadingStatus) => any;
|
|
1015
|
-
}, string,
|
|
1015
|
+
}, string, vue6.PublicProps, Readonly<AvatarImageProps> & Readonly<{
|
|
1016
1016
|
onLoadingStatusChange?: ((value: ImageLoadingStatus) => any) | undefined;
|
|
1017
1017
|
}>, {
|
|
1018
|
-
as: AsTag |
|
|
1019
|
-
}, {}, {}, {}, string,
|
|
1018
|
+
as: AsTag | vue6.Component;
|
|
1019
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1020
1020
|
default?: (props: {}) => any;
|
|
1021
1021
|
}>;
|
|
1022
1022
|
type __VLS_WithSlots$262<T, S> = T & {
|
|
@@ -1032,9 +1032,9 @@ type AvatarRootContext = {
|
|
|
1032
1032
|
imageLoadingStatus: Ref<ImageLoadingStatus>;
|
|
1033
1033
|
};
|
|
1034
1034
|
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,
|
|
1035
|
+
declare const _default$17: __VLS_WithSlots$261<vue6.DefineComponent<AvatarRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<AvatarRootProps> & Readonly<{}>, {
|
|
1036
|
+
as: AsTag | vue6.Component;
|
|
1037
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1038
1038
|
default?: (props: {}) => any;
|
|
1039
1039
|
}>;
|
|
1040
1040
|
type __VLS_WithSlots$261<T, S> = T & {
|
|
@@ -1049,9 +1049,9 @@ interface CalendarCellProps extends PrimitiveProps {
|
|
|
1049
1049
|
/** The date value for the cell */
|
|
1050
1050
|
date: DateValue$1;
|
|
1051
1051
|
}
|
|
1052
|
-
declare const _default$18: __VLS_WithSlots$260<
|
|
1053
|
-
as: AsTag |
|
|
1054
|
-
}, {}, {}, {}, string,
|
|
1052
|
+
declare const _default$18: __VLS_WithSlots$260<vue6.DefineComponent<CalendarCellProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarCellProps> & Readonly<{}>, {
|
|
1053
|
+
as: AsTag | vue6.Component;
|
|
1054
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1055
1055
|
default?: (props: {}) => any;
|
|
1056
1056
|
}>;
|
|
1057
1057
|
type __VLS_WithSlots$260<T, S> = T & {
|
|
@@ -1086,9 +1086,9 @@ interface CalendarCellTriggerSlot {
|
|
|
1086
1086
|
unavailable: boolean;
|
|
1087
1087
|
}) => any;
|
|
1088
1088
|
}
|
|
1089
|
-
declare const _default$19: __VLS_WithSlots$259<
|
|
1090
|
-
as: AsTag |
|
|
1091
|
-
}, {}, {}, {}, string,
|
|
1089
|
+
declare const _default$19: __VLS_WithSlots$259<vue6.DefineComponent<CalendarCellTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarCellTriggerProps> & Readonly<{}>, {
|
|
1090
|
+
as: AsTag | vue6.Component;
|
|
1091
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, CalendarCellTriggerSlot>;
|
|
1092
1092
|
type __VLS_WithSlots$259<T, S> = T & {
|
|
1093
1093
|
new (): {
|
|
1094
1094
|
$slots: S;
|
|
@@ -1098,9 +1098,9 @@ type __VLS_WithSlots$259<T, S> = T & {
|
|
|
1098
1098
|
//#endregion
|
|
1099
1099
|
//#region src/Calendar/CalendarGrid.vue.d.ts
|
|
1100
1100
|
interface CalendarGridProps extends PrimitiveProps {}
|
|
1101
|
-
declare const _default$20: __VLS_WithSlots$258<
|
|
1102
|
-
as: AsTag |
|
|
1103
|
-
}, {}, {}, {}, string,
|
|
1101
|
+
declare const _default$20: __VLS_WithSlots$258<vue6.DefineComponent<CalendarGridProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarGridProps> & Readonly<{}>, {
|
|
1102
|
+
as: AsTag | vue6.Component;
|
|
1103
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1104
1104
|
default?: (props: {}) => any;
|
|
1105
1105
|
}>;
|
|
1106
1106
|
type __VLS_WithSlots$258<T, S> = T & {
|
|
@@ -1112,9 +1112,9 @@ type __VLS_WithSlots$258<T, S> = T & {
|
|
|
1112
1112
|
//#endregion
|
|
1113
1113
|
//#region src/Calendar/CalendarGridBody.vue.d.ts
|
|
1114
1114
|
interface CalendarGridBodyProps extends PrimitiveProps {}
|
|
1115
|
-
declare const _default$21: __VLS_WithSlots$257<
|
|
1116
|
-
as: AsTag |
|
|
1117
|
-
}, {}, {}, {}, string,
|
|
1115
|
+
declare const _default$21: __VLS_WithSlots$257<vue6.DefineComponent<CalendarGridBodyProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarGridBodyProps> & Readonly<{}>, {
|
|
1116
|
+
as: AsTag | vue6.Component;
|
|
1117
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1118
1118
|
default?: (props: {}) => any;
|
|
1119
1119
|
}>;
|
|
1120
1120
|
type __VLS_WithSlots$257<T, S> = T & {
|
|
@@ -1126,9 +1126,9 @@ type __VLS_WithSlots$257<T, S> = T & {
|
|
|
1126
1126
|
//#endregion
|
|
1127
1127
|
//#region src/Calendar/CalendarGridHead.vue.d.ts
|
|
1128
1128
|
interface CalendarGridHeadProps extends PrimitiveProps {}
|
|
1129
|
-
declare const _default$22: __VLS_WithSlots$256<
|
|
1130
|
-
as: AsTag |
|
|
1131
|
-
}, {}, {}, {}, string,
|
|
1129
|
+
declare const _default$22: __VLS_WithSlots$256<vue6.DefineComponent<CalendarGridHeadProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarGridHeadProps> & Readonly<{}>, {
|
|
1130
|
+
as: AsTag | vue6.Component;
|
|
1131
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1132
1132
|
default?: (props: {}) => any;
|
|
1133
1133
|
}>;
|
|
1134
1134
|
type __VLS_WithSlots$256<T, S> = T & {
|
|
@@ -1140,9 +1140,9 @@ type __VLS_WithSlots$256<T, S> = T & {
|
|
|
1140
1140
|
//#endregion
|
|
1141
1141
|
//#region src/Calendar/CalendarGridRow.vue.d.ts
|
|
1142
1142
|
interface CalendarGridRowProps extends PrimitiveProps {}
|
|
1143
|
-
declare const _default$23: __VLS_WithSlots$255<
|
|
1144
|
-
as: AsTag |
|
|
1145
|
-
}, {}, {}, {}, string,
|
|
1143
|
+
declare const _default$23: __VLS_WithSlots$255<vue6.DefineComponent<CalendarGridRowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarGridRowProps> & Readonly<{}>, {
|
|
1144
|
+
as: AsTag | vue6.Component;
|
|
1145
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1146
1146
|
default?: (props: {}) => any;
|
|
1147
1147
|
}>;
|
|
1148
1148
|
type __VLS_WithSlots$255<T, S> = T & {
|
|
@@ -1154,9 +1154,9 @@ type __VLS_WithSlots$255<T, S> = T & {
|
|
|
1154
1154
|
//#endregion
|
|
1155
1155
|
//#region src/Calendar/CalendarHeadCell.vue.d.ts
|
|
1156
1156
|
interface CalendarHeadCellProps extends PrimitiveProps {}
|
|
1157
|
-
declare const _default$24: __VLS_WithSlots$254<
|
|
1158
|
-
as: AsTag |
|
|
1159
|
-
}, {}, {}, {}, string,
|
|
1157
|
+
declare const _default$24: __VLS_WithSlots$254<vue6.DefineComponent<CalendarHeadCellProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarHeadCellProps> & Readonly<{}>, {
|
|
1158
|
+
as: AsTag | vue6.Component;
|
|
1159
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1160
1160
|
default?: (props: {}) => any;
|
|
1161
1161
|
}>;
|
|
1162
1162
|
type __VLS_WithSlots$254<T, S> = T & {
|
|
@@ -1168,9 +1168,9 @@ type __VLS_WithSlots$254<T, S> = T & {
|
|
|
1168
1168
|
//#endregion
|
|
1169
1169
|
//#region src/Calendar/CalendarHeader.vue.d.ts
|
|
1170
1170
|
interface CalendarHeaderProps extends PrimitiveProps {}
|
|
1171
|
-
declare const _default$25: __VLS_WithSlots$253<
|
|
1172
|
-
as: AsTag |
|
|
1173
|
-
}, {}, {}, {}, string,
|
|
1171
|
+
declare const _default$25: __VLS_WithSlots$253<vue6.DefineComponent<CalendarHeaderProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarHeaderProps> & Readonly<{}>, {
|
|
1172
|
+
as: AsTag | vue6.Component;
|
|
1173
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1174
1174
|
default?: (props: {}) => any;
|
|
1175
1175
|
}>;
|
|
1176
1176
|
type __VLS_WithSlots$253<T, S> = T & {
|
|
@@ -1182,9 +1182,9 @@ type __VLS_WithSlots$253<T, S> = T & {
|
|
|
1182
1182
|
//#endregion
|
|
1183
1183
|
//#region src/Calendar/CalendarHeading.vue.d.ts
|
|
1184
1184
|
interface CalendarHeadingProps extends PrimitiveProps {}
|
|
1185
|
-
declare const _default$26: __VLS_WithSlots$252<
|
|
1186
|
-
as: AsTag |
|
|
1187
|
-
}, {}, {}, {}, string,
|
|
1185
|
+
declare const _default$26: __VLS_WithSlots$252<vue6.DefineComponent<CalendarHeadingProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarHeadingProps> & Readonly<{}>, {
|
|
1186
|
+
as: AsTag | vue6.Component;
|
|
1187
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1188
1188
|
default?: (props: {
|
|
1189
1189
|
/** Current month and year */
|
|
1190
1190
|
headingValue: string;
|
|
@@ -1208,9 +1208,9 @@ interface CalendarNextSlot {
|
|
|
1208
1208
|
disabled: boolean;
|
|
1209
1209
|
}) => any;
|
|
1210
1210
|
}
|
|
1211
|
-
declare const _default$27: __VLS_WithSlots$251<
|
|
1212
|
-
as: AsTag |
|
|
1213
|
-
}, {}, {}, {}, string,
|
|
1211
|
+
declare const _default$27: __VLS_WithSlots$251<vue6.DefineComponent<CalendarNextProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarNextProps> & Readonly<{}>, {
|
|
1212
|
+
as: AsTag | vue6.Component;
|
|
1213
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, CalendarNextSlot>;
|
|
1214
1214
|
type __VLS_WithSlots$251<T, S> = T & {
|
|
1215
1215
|
new (): {
|
|
1216
1216
|
$slots: S;
|
|
@@ -1229,9 +1229,9 @@ interface CalendarPrevSlot {
|
|
|
1229
1229
|
disabled: boolean;
|
|
1230
1230
|
}) => any;
|
|
1231
1231
|
}
|
|
1232
|
-
declare const _default$28: __VLS_WithSlots$250<
|
|
1233
|
-
as: AsTag |
|
|
1234
|
-
}, {}, {}, {}, string,
|
|
1232
|
+
declare const _default$28: __VLS_WithSlots$250<vue6.DefineComponent<CalendarPrevProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CalendarPrevProps> & Readonly<{}>, {
|
|
1233
|
+
as: AsTag | vue6.Component;
|
|
1234
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, CalendarPrevSlot>;
|
|
1235
1235
|
type __VLS_WithSlots$250<T, S> = T & {
|
|
1236
1236
|
new (): {
|
|
1237
1237
|
$slots: S;
|
|
@@ -1273,7 +1273,6 @@ type CalendarRootContext = {
|
|
|
1273
1273
|
formatter: Formatter;
|
|
1274
1274
|
dir: Ref<Direction>;
|
|
1275
1275
|
disableDaysOutsideCurrentView: Ref<boolean>;
|
|
1276
|
-
startingWeekNumber: ComputedRef<number[]>;
|
|
1277
1276
|
};
|
|
1278
1277
|
interface CalendarRootProps extends PrimitiveProps {
|
|
1279
1278
|
/** The default value for the calendar */
|
|
@@ -1332,16 +1331,16 @@ type CalendarRootEmits = {
|
|
|
1332
1331
|
'update:placeholder': [date: DateValue$1];
|
|
1333
1332
|
};
|
|
1334
1333
|
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<
|
|
1334
|
+
declare const _default$29: __VLS_WithSlots$249<vue6.DefineComponent<CalendarRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
1336
1335
|
"update:modelValue": (date: DateValue$1 | undefined) => any;
|
|
1337
1336
|
"update:placeholder": (date: DateValue$1) => any;
|
|
1338
|
-
}, string,
|
|
1337
|
+
}, string, vue6.PublicProps, Readonly<CalendarRootProps> & Readonly<{
|
|
1339
1338
|
"onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
1340
1339
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
1341
1340
|
}>, {
|
|
1342
|
-
|
|
1341
|
+
as: AsTag | vue6.Component;
|
|
1343
1342
|
disabled: boolean;
|
|
1344
|
-
|
|
1343
|
+
defaultValue: DateValue$1;
|
|
1345
1344
|
multiple: boolean;
|
|
1346
1345
|
placeholder: DateValue$1;
|
|
1347
1346
|
pagedNavigation: boolean;
|
|
@@ -1355,7 +1354,7 @@ declare const _default$29: __VLS_WithSlots$249<vue1606.DefineComponent<CalendarR
|
|
|
1355
1354
|
isDateDisabled: Matcher;
|
|
1356
1355
|
isDateUnavailable: Matcher;
|
|
1357
1356
|
disableDaysOutsideCurrentView: boolean;
|
|
1358
|
-
}, {}, {}, {}, string,
|
|
1357
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1359
1358
|
default?: (props: {
|
|
1360
1359
|
/** The current date of the placeholder */
|
|
1361
1360
|
date: DateValue$1;
|
|
@@ -1417,22 +1416,22 @@ type RovingFocusGroupEmits = {
|
|
|
1417
1416
|
'entryFocus': [event: Event];
|
|
1418
1417
|
'update:currentTabStopId': [value: string | null | undefined];
|
|
1419
1418
|
};
|
|
1420
|
-
declare const _default$224: __VLS_WithSlots$248<
|
|
1419
|
+
declare const _default$224: __VLS_WithSlots$248<vue6.DefineComponent<RovingFocusGroupProps, {
|
|
1421
1420
|
getItems: (includeDisabledItem?: boolean) => {
|
|
1422
1421
|
ref: HTMLElement;
|
|
1423
1422
|
value?: any;
|
|
1424
1423
|
}[];
|
|
1425
|
-
}, {}, {}, {},
|
|
1424
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
1426
1425
|
entryFocus: (event: Event) => any;
|
|
1427
1426
|
"update:currentTabStopId": (value: string | null | undefined) => any;
|
|
1428
|
-
}, string,
|
|
1427
|
+
}, string, vue6.PublicProps, Readonly<RovingFocusGroupProps> & Readonly<{
|
|
1429
1428
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
1430
1429
|
"onUpdate:currentTabStopId"?: ((value: string | null | undefined) => any) | undefined;
|
|
1431
1430
|
}>, {
|
|
1432
1431
|
orientation: Orientation$1;
|
|
1433
1432
|
loop: boolean;
|
|
1434
1433
|
preventScrollOnEntryFocus: boolean;
|
|
1435
|
-
}, {}, {}, {}, string,
|
|
1434
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1436
1435
|
default?: (props: {}) => any;
|
|
1437
1436
|
}>;
|
|
1438
1437
|
type __VLS_WithSlots$248<T, S> = T & {
|
|
@@ -1455,10 +1454,10 @@ interface RovingFocusItemProps extends PrimitiveProps {
|
|
|
1455
1454
|
/** When `true`, shift + arrow key will allow focusing on next/previous item. */
|
|
1456
1455
|
allowShiftKey?: boolean;
|
|
1457
1456
|
}
|
|
1458
|
-
declare const _default$225: __VLS_WithSlots$247<
|
|
1459
|
-
as: AsTag |
|
|
1457
|
+
declare const _default$225: __VLS_WithSlots$247<vue6.DefineComponent<RovingFocusItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RovingFocusItemProps> & Readonly<{}>, {
|
|
1458
|
+
as: AsTag | vue6.Component;
|
|
1460
1459
|
focusable: boolean;
|
|
1461
|
-
}, {}, {}, {}, string,
|
|
1460
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1462
1461
|
default?: (props: {}) => any;
|
|
1463
1462
|
}>;
|
|
1464
1463
|
type __VLS_WithSlots$247<T, S> = T & {
|
|
@@ -1492,14 +1491,14 @@ declare const injectCheckboxGroupRootContext: <T extends CheckboxGroupRootContex
|
|
|
1492
1491
|
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
1492
|
props: __VLS_PrettifyLocal$13<Pick<Partial<{}> & Omit<{
|
|
1494
1493
|
readonly "onUpdate:modelValue"?: ((value: T[]) => any) | undefined;
|
|
1495
|
-
} &
|
|
1496
|
-
expose(exposed:
|
|
1494
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onUpdate:modelValue"> & CheckboxGroupRootProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
1495
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
1497
1496
|
attrs: any;
|
|
1498
1497
|
slots: {
|
|
1499
1498
|
default?: (props: {}) => any;
|
|
1500
1499
|
};
|
|
1501
1500
|
emit: (evt: "update:modelValue", value: T[]) => void;
|
|
1502
|
-
}>) =>
|
|
1501
|
+
}>) => vue6.VNode & {
|
|
1503
1502
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1504
1503
|
};
|
|
1505
1504
|
type __VLS_PrettifyLocal$13<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -1513,9 +1512,9 @@ interface CheckboxIndicatorProps extends PrimitiveProps {
|
|
|
1513
1512
|
*/
|
|
1514
1513
|
forceMount?: boolean;
|
|
1515
1514
|
}
|
|
1516
|
-
declare const _default$31: __VLS_WithSlots$246<
|
|
1517
|
-
as: AsTag |
|
|
1518
|
-
}, {}, {}, {}, string,
|
|
1515
|
+
declare const _default$31: __VLS_WithSlots$246<vue6.DefineComponent<CheckboxIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<CheckboxIndicatorProps> & Readonly<{}>, {
|
|
1516
|
+
as: AsTag | vue6.Component;
|
|
1517
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1519
1518
|
default?: (props: {}) => any;
|
|
1520
1519
|
}>;
|
|
1521
1520
|
type __VLS_WithSlots$246<T, S> = T & {
|
|
@@ -1553,15 +1552,15 @@ interface CheckboxRootContext {
|
|
|
1553
1552
|
state: Ref<CheckedState>;
|
|
1554
1553
|
}
|
|
1555
1554
|
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<
|
|
1555
|
+
declare const _default$32: __VLS_WithSlots$245<vue6.DefineComponent<CheckboxRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
1557
1556
|
"update:modelValue": (value: boolean | "indeterminate") => any;
|
|
1558
|
-
}, string,
|
|
1557
|
+
}, string, vue6.PublicProps, Readonly<CheckboxRootProps> & Readonly<{
|
|
1559
1558
|
"onUpdate:modelValue"?: ((value: boolean | "indeterminate") => any) | undefined;
|
|
1560
1559
|
}>, {
|
|
1561
|
-
modelValue: boolean | "indeterminate" | null;
|
|
1562
1560
|
value: AcceptableValue;
|
|
1563
|
-
as: AsTag |
|
|
1564
|
-
|
|
1561
|
+
as: AsTag | vue6.Component;
|
|
1562
|
+
modelValue: boolean | "indeterminate" | null;
|
|
1563
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1565
1564
|
default?: (props: {
|
|
1566
1565
|
/** Current value */
|
|
1567
1566
|
modelValue: CheckedState;
|
|
@@ -1740,7 +1739,7 @@ interface PopperContentProps extends PrimitiveProps {
|
|
|
1740
1739
|
//#endregion
|
|
1741
1740
|
//#region src/Combobox/ComboboxAnchor.vue.d.ts
|
|
1742
1741
|
interface ComboboxAnchorProps extends PopperAnchorProps {}
|
|
1743
|
-
declare const _default$36: __VLS_WithSlots$244<
|
|
1742
|
+
declare const _default$36: __VLS_WithSlots$244<vue6.DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1744
1743
|
default?: (props: {}) => any;
|
|
1745
1744
|
}>;
|
|
1746
1745
|
type __VLS_WithSlots$244<T, S> = T & {
|
|
@@ -1752,11 +1751,11 @@ type __VLS_WithSlots$244<T, S> = T & {
|
|
|
1752
1751
|
//#endregion
|
|
1753
1752
|
//#region src/Combobox/ComboboxArrow.vue.d.ts
|
|
1754
1753
|
interface ComboboxArrowProps extends PopperArrowProps {}
|
|
1755
|
-
declare const _default$37: __VLS_WithSlots$243<
|
|
1756
|
-
as: AsTag |
|
|
1754
|
+
declare const _default$37: __VLS_WithSlots$243<vue6.DefineComponent<ComboboxArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxArrowProps> & Readonly<{}>, {
|
|
1755
|
+
as: AsTag | vue6.Component;
|
|
1757
1756
|
width: number;
|
|
1758
1757
|
height: number;
|
|
1759
|
-
}, {}, {}, {}, string,
|
|
1758
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1760
1759
|
default?: (props: {}) => any;
|
|
1761
1760
|
}>;
|
|
1762
1761
|
type __VLS_WithSlots$243<T, S> = T & {
|
|
@@ -1768,9 +1767,9 @@ type __VLS_WithSlots$243<T, S> = T & {
|
|
|
1768
1767
|
//#endregion
|
|
1769
1768
|
//#region src/Combobox/ComboboxCancel.vue.d.ts
|
|
1770
1769
|
interface ComboboxCancelProps extends PrimitiveProps {}
|
|
1771
|
-
declare const _default$38: __VLS_WithSlots$242<
|
|
1772
|
-
as: AsTag |
|
|
1773
|
-
}, {}, {}, {}, string,
|
|
1770
|
+
declare const _default$38: __VLS_WithSlots$242<vue6.DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {
|
|
1771
|
+
as: AsTag | vue6.Component;
|
|
1772
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1774
1773
|
default?: (props: {}) => any;
|
|
1775
1774
|
}>;
|
|
1776
1775
|
type __VLS_WithSlots$242<T, S> = T & {
|
|
@@ -1802,17 +1801,17 @@ interface ComboboxContentProps extends ComboboxContentImplProps {
|
|
|
1802
1801
|
*/
|
|
1803
1802
|
forceMount?: boolean;
|
|
1804
1803
|
}
|
|
1805
|
-
declare const _default$39: __VLS_WithSlots$241<
|
|
1804
|
+
declare const _default$39: __VLS_WithSlots$241<vue6.DefineComponent<ComboboxContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
1806
1805
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
1807
1806
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
1808
1807
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
1809
1808
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
1810
|
-
}, string,
|
|
1809
|
+
}, string, vue6.PublicProps, Readonly<ComboboxContentProps> & Readonly<{
|
|
1811
1810
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
1812
1811
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
1813
1812
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
1814
1813
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
1815
|
-
}>, {}, {}, {}, {}, string,
|
|
1814
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1816
1815
|
default?: (props: {}) => any;
|
|
1817
1816
|
}>;
|
|
1818
1817
|
type __VLS_WithSlots$241<T, S> = T & {
|
|
@@ -1824,7 +1823,7 @@ type __VLS_WithSlots$241<T, S> = T & {
|
|
|
1824
1823
|
//#endregion
|
|
1825
1824
|
//#region src/Combobox/ComboboxEmpty.vue.d.ts
|
|
1826
1825
|
interface ComboboxEmptyProps extends PrimitiveProps {}
|
|
1827
|
-
declare const _default$40: __VLS_WithSlots$240<
|
|
1826
|
+
declare const _default$40: __VLS_WithSlots$240<vue6.DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1828
1827
|
default?: (props: {}) => any;
|
|
1829
1828
|
}>;
|
|
1830
1829
|
type __VLS_WithSlots$240<T, S> = T & {
|
|
@@ -1836,7 +1835,7 @@ type __VLS_WithSlots$240<T, S> = T & {
|
|
|
1836
1835
|
//#endregion
|
|
1837
1836
|
//#region src/Listbox/ListboxContent.vue.d.ts
|
|
1838
1837
|
interface ListboxContentProps extends PrimitiveProps {}
|
|
1839
|
-
declare const _default$151: __VLS_WithSlots$239<
|
|
1838
|
+
declare const _default$151: __VLS_WithSlots$239<vue6.DefineComponent<ListboxContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ListboxContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1840
1839
|
default?: (props: {}) => any;
|
|
1841
1840
|
}>;
|
|
1842
1841
|
type __VLS_WithSlots$239<T, S> = T & {
|
|
@@ -1858,13 +1857,13 @@ interface ListboxFilterProps extends PrimitiveProps {
|
|
|
1858
1857
|
type ListboxFilterEmits = {
|
|
1859
1858
|
'update:modelValue': [string];
|
|
1860
1859
|
};
|
|
1861
|
-
declare const _default$152: __VLS_WithSlots$238<
|
|
1860
|
+
declare const _default$152: __VLS_WithSlots$238<vue6.DefineComponent<ListboxFilterProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
1862
1861
|
"update:modelValue": (args_0: string) => any;
|
|
1863
|
-
}, string,
|
|
1862
|
+
}, string, vue6.PublicProps, Readonly<ListboxFilterProps> & Readonly<{
|
|
1864
1863
|
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
1865
1864
|
}>, {
|
|
1866
|
-
as: AsTag |
|
|
1867
|
-
}, {}, {}, {}, string,
|
|
1865
|
+
as: AsTag | vue6.Component;
|
|
1866
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1868
1867
|
default?: (props: {
|
|
1869
1868
|
/** Current input values */
|
|
1870
1869
|
modelValue: string | undefined;
|
|
@@ -1883,7 +1882,7 @@ interface ListboxGroupContext {
|
|
|
1883
1882
|
id: string;
|
|
1884
1883
|
}
|
|
1885
1884
|
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<
|
|
1885
|
+
declare const _default$153: __VLS_WithSlots$237<vue6.DefineComponent<ListboxGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ListboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1887
1886
|
default?: (props: {}) => any;
|
|
1888
1887
|
}>;
|
|
1889
1888
|
type __VLS_WithSlots$237<T, S> = T & {
|
|
@@ -1897,9 +1896,9 @@ type __VLS_WithSlots$237<T, S> = T & {
|
|
|
1897
1896
|
interface ListboxGroupLabelProps extends PrimitiveProps {
|
|
1898
1897
|
for?: string;
|
|
1899
1898
|
}
|
|
1900
|
-
declare const _default$154: __VLS_WithSlots$236<
|
|
1901
|
-
as: AsTag |
|
|
1902
|
-
}, {}, {}, {}, string,
|
|
1899
|
+
declare const _default$154: __VLS_WithSlots$236<vue6.DefineComponent<ListboxGroupLabelProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ListboxGroupLabelProps> & Readonly<{}>, {
|
|
1900
|
+
as: AsTag | vue6.Component;
|
|
1901
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1903
1902
|
default?: (props: {}) => any;
|
|
1904
1903
|
}>;
|
|
1905
1904
|
type __VLS_WithSlots$236<T, S> = T & {
|
|
@@ -1931,14 +1930,14 @@ declare const injectListboxItemContext: <T extends ListboxItemContext | null | u
|
|
|
1931
1930
|
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
1931
|
props: __VLS_PrettifyLocal$12<Pick<Partial<{}> & Omit<{
|
|
1933
1932
|
readonly onSelect?: ((event: SelectEvent<T>) => any) | undefined;
|
|
1934
|
-
} &
|
|
1935
|
-
expose(exposed:
|
|
1933
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onSelect"> & ListboxItemProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
1934
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
1936
1935
|
attrs: any;
|
|
1937
1936
|
slots: {
|
|
1938
1937
|
default?: (props: {}) => any;
|
|
1939
1938
|
};
|
|
1940
1939
|
emit: (evt: "select", event: SelectEvent<T>) => void;
|
|
1941
|
-
}>) =>
|
|
1940
|
+
}>) => vue6.VNode & {
|
|
1942
1941
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
1943
1942
|
};
|
|
1944
1943
|
type __VLS_PrettifyLocal$12<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -1946,9 +1945,9 @@ type __VLS_PrettifyLocal$12<T> = { [K in keyof T]: T[K] } & {};
|
|
|
1946
1945
|
//#endregion
|
|
1947
1946
|
//#region src/Listbox/ListboxItemIndicator.vue.d.ts
|
|
1948
1947
|
interface ListboxItemIndicatorProps extends PrimitiveProps {}
|
|
1949
|
-
declare const _default$156: __VLS_WithSlots$235<
|
|
1950
|
-
as: AsTag |
|
|
1951
|
-
}, {}, {}, {}, string,
|
|
1948
|
+
declare const _default$156: __VLS_WithSlots$235<vue6.DefineComponent<ListboxItemIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ListboxItemIndicatorProps> & Readonly<{}>, {
|
|
1949
|
+
as: AsTag | vue6.Component;
|
|
1950
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
1952
1951
|
default?: (props: {}) => any;
|
|
1953
1952
|
}>;
|
|
1954
1953
|
type __VLS_WithSlots$235<T, S> = T & {
|
|
@@ -2032,8 +2031,8 @@ declare const _default$157: <T extends AcceptableValue = AcceptableValue>(__VLS_
|
|
|
2032
2031
|
} | undefined) => any) | undefined;
|
|
2033
2032
|
readonly onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
|
|
2034
2033
|
readonly onLeave?: ((event: Event) => any) | undefined;
|
|
2035
|
-
} &
|
|
2036
|
-
expose(exposed:
|
|
2034
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onUpdate:modelValue" | "onHighlight" | "onEntryFocus" | "onLeave"> & ListboxRootProps<AcceptableValue> & Partial<{}>> & vue6.PublicProps;
|
|
2035
|
+
expose(exposed: vue6.ShallowUnwrapRef<{
|
|
2037
2036
|
highlightedElement: Ref<HTMLElement | null, HTMLElement | null>;
|
|
2038
2037
|
highlightItem: (value: T) => void;
|
|
2039
2038
|
highlightFirstItem: () => void;
|
|
@@ -2056,7 +2055,7 @@ declare const _default$157: <T extends AcceptableValue = AcceptableValue>(__VLS_
|
|
|
2056
2055
|
ref: HTMLElement;
|
|
2057
2056
|
value: AcceptableValue;
|
|
2058
2057
|
} | undefined) => void) & ((evt: "entryFocus", event: CustomEvent<any>) => void) & ((evt: "leave", event: Event) => void);
|
|
2059
|
-
}>) =>
|
|
2058
|
+
}>) => vue6.VNode & {
|
|
2060
2059
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2061
2060
|
};
|
|
2062
2061
|
type __VLS_PrettifyLocal$11<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2074,8 +2073,8 @@ interface ListboxVirtualizerProps<T extends AcceptableValue = AcceptableValue> {
|
|
|
2074
2073
|
textContent?: (option: T) => string;
|
|
2075
2074
|
}
|
|
2076
2075
|
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:
|
|
2076
|
+
props: __VLS_PrettifyLocal$10<Pick<Partial<{}> & Omit<{} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, never> & ListboxVirtualizerProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
2077
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
2079
2078
|
attrs: any;
|
|
2080
2079
|
slots: {
|
|
2081
2080
|
default?: (props: {
|
|
@@ -2085,7 +2084,7 @@ declare const _default$158: <T extends AcceptableValue = AcceptableValue>(__VLS_
|
|
|
2085
2084
|
}) => any;
|
|
2086
2085
|
};
|
|
2087
2086
|
emit: {};
|
|
2088
|
-
}>) =>
|
|
2087
|
+
}>) => vue6.VNode & {
|
|
2089
2088
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2090
2089
|
};
|
|
2091
2090
|
type __VLS_PrettifyLocal$10<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2098,7 +2097,7 @@ type ComboboxGroupContext = {
|
|
|
2098
2097
|
labelId: string;
|
|
2099
2098
|
};
|
|
2100
2099
|
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<
|
|
2100
|
+
declare const _default$41: __VLS_WithSlots$234<vue6.DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2102
2101
|
default?: (props: {}) => any;
|
|
2103
2102
|
}>;
|
|
2104
2103
|
type __VLS_WithSlots$234<T, S> = T & {
|
|
@@ -2114,13 +2113,13 @@ interface ComboboxInputProps extends ListboxFilterProps {
|
|
|
2114
2113
|
/** The display value of input for selected item. Does not work with `multiple`. */
|
|
2115
2114
|
displayValue?: (val: any) => string;
|
|
2116
2115
|
}
|
|
2117
|
-
declare const _default$42: __VLS_WithSlots$233<
|
|
2116
|
+
declare const _default$42: __VLS_WithSlots$233<vue6.DefineComponent<ComboboxInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
2118
2117
|
"update:modelValue": (args_0: string) => any;
|
|
2119
|
-
}, string,
|
|
2118
|
+
}, string, vue6.PublicProps, Readonly<ComboboxInputProps> & Readonly<{
|
|
2120
2119
|
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
2121
2120
|
}>, {
|
|
2122
|
-
as: AsTag |
|
|
2123
|
-
}, {}, {}, {}, string,
|
|
2121
|
+
as: AsTag | vue6.Component;
|
|
2122
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2124
2123
|
default?: (props: {}) => any;
|
|
2125
2124
|
}>;
|
|
2126
2125
|
type __VLS_WithSlots$233<T, S> = T & {
|
|
@@ -2143,14 +2142,14 @@ interface ComboboxItemProps<T = AcceptableValue> extends ListboxItemProps<T> {
|
|
|
2143
2142
|
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
2143
|
props: __VLS_PrettifyLocal$9<Pick<Partial<{}> & Omit<{
|
|
2145
2144
|
readonly onSelect?: ((event: SelectEvent<T>) => any) | undefined;
|
|
2146
|
-
} &
|
|
2147
|
-
expose(exposed:
|
|
2145
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onSelect"> & ComboboxItemProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
2146
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
2148
2147
|
attrs: any;
|
|
2149
2148
|
slots: {
|
|
2150
2149
|
default?: (props: {}) => any;
|
|
2151
2150
|
};
|
|
2152
2151
|
emit: (evt: "select", event: SelectEvent<T>) => void;
|
|
2153
|
-
}>) =>
|
|
2152
|
+
}>) => vue6.VNode & {
|
|
2154
2153
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2155
2154
|
};
|
|
2156
2155
|
type __VLS_PrettifyLocal$9<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2158,9 +2157,9 @@ type __VLS_PrettifyLocal$9<T> = { [K in keyof T]: T[K] } & {};
|
|
|
2158
2157
|
//#endregion
|
|
2159
2158
|
//#region src/Combobox/ComboboxItemIndicator.vue.d.ts
|
|
2160
2159
|
interface ComboboxItemIndicatorProps extends ListboxItemIndicatorProps {}
|
|
2161
|
-
declare const _default$44: __VLS_WithSlots$232<
|
|
2162
|
-
as: AsTag |
|
|
2163
|
-
}, {}, {}, {}, string,
|
|
2160
|
+
declare const _default$44: __VLS_WithSlots$232<vue6.DefineComponent<ComboboxItemIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxItemIndicatorProps> & Readonly<{}>, {
|
|
2161
|
+
as: AsTag | vue6.Component;
|
|
2162
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2164
2163
|
default?: (props: {}) => any;
|
|
2165
2164
|
}>;
|
|
2166
2165
|
type __VLS_WithSlots$232<T, S> = T & {
|
|
@@ -2174,9 +2173,9 @@ type __VLS_WithSlots$232<T, S> = T & {
|
|
|
2174
2173
|
interface ComboboxLabelProps extends PrimitiveProps {
|
|
2175
2174
|
for?: string;
|
|
2176
2175
|
}
|
|
2177
|
-
declare const _default$45: __VLS_WithSlots$231<
|
|
2178
|
-
as: AsTag |
|
|
2179
|
-
}, {}, {}, {}, string,
|
|
2176
|
+
declare const _default$45: __VLS_WithSlots$231<vue6.DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {
|
|
2177
|
+
as: AsTag | vue6.Component;
|
|
2178
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2180
2179
|
default?: (props: {}) => any;
|
|
2181
2180
|
}>;
|
|
2182
2181
|
type __VLS_WithSlots$231<T, S> = T & {
|
|
@@ -2188,7 +2187,7 @@ type __VLS_WithSlots$231<T, S> = T & {
|
|
|
2188
2187
|
//#endregion
|
|
2189
2188
|
//#region src/Combobox/ComboboxPortal.vue.d.ts
|
|
2190
2189
|
interface ComboboxPortalProps extends TeleportProps {}
|
|
2191
|
-
declare const _default$46: __VLS_WithSlots$230<
|
|
2190
|
+
declare const _default$46: __VLS_WithSlots$230<vue6.DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2192
2191
|
default?: (props: {}) => any;
|
|
2193
2192
|
}>;
|
|
2194
2193
|
type __VLS_WithSlots$230<T, S> = T & {
|
|
@@ -2278,8 +2277,8 @@ declare const _default$47: <T extends AcceptableValue = AcceptableValue>(__VLS_p
|
|
|
2278
2277
|
ref: HTMLElement;
|
|
2279
2278
|
value: T;
|
|
2280
2279
|
} | undefined) => any) | undefined;
|
|
2281
|
-
} &
|
|
2282
|
-
expose(exposed:
|
|
2280
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:open" | "onHighlight"> & ComboboxRootProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
2281
|
+
expose(exposed: vue6.ShallowUnwrapRef<{
|
|
2283
2282
|
filtered: ComputedRef<{
|
|
2284
2283
|
count: number;
|
|
2285
2284
|
items: Map<string, number>;
|
|
@@ -2303,7 +2302,7 @@ declare const _default$47: <T extends AcceptableValue = AcceptableValue>(__VLS_p
|
|
|
2303
2302
|
ref: HTMLElement;
|
|
2304
2303
|
value: T;
|
|
2305
2304
|
} | undefined) => void);
|
|
2306
|
-
}>) =>
|
|
2305
|
+
}>) => vue6.VNode & {
|
|
2307
2306
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2308
2307
|
};
|
|
2309
2308
|
type __VLS_PrettifyLocal$8<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2311,7 +2310,7 @@ type __VLS_PrettifyLocal$8<T> = { [K in keyof T]: T[K] } & {};
|
|
|
2311
2310
|
//#endregion
|
|
2312
2311
|
//#region src/Combobox/ComboboxSeparator.vue.d.ts
|
|
2313
2312
|
interface ComboboxSeparatorProps extends PrimitiveProps {}
|
|
2314
|
-
declare const _default$48: __VLS_WithSlots$229<
|
|
2313
|
+
declare const _default$48: __VLS_WithSlots$229<vue6.DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2315
2314
|
default?: (props: {}) => any;
|
|
2316
2315
|
}>;
|
|
2317
2316
|
type __VLS_WithSlots$229<T, S> = T & {
|
|
@@ -2326,9 +2325,9 @@ interface ComboboxTriggerProps extends PrimitiveProps {
|
|
|
2326
2325
|
/** When `true`, prevents the user from interacting with item */
|
|
2327
2326
|
disabled?: boolean;
|
|
2328
2327
|
}
|
|
2329
|
-
declare const _default$49: __VLS_WithSlots$228<
|
|
2330
|
-
as: AsTag |
|
|
2331
|
-
}, {}, {}, {}, string,
|
|
2328
|
+
declare const _default$49: __VLS_WithSlots$228<vue6.DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {
|
|
2329
|
+
as: AsTag | vue6.Component;
|
|
2330
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2332
2331
|
default?: (props: {}) => any;
|
|
2333
2332
|
}>;
|
|
2334
2333
|
type __VLS_WithSlots$228<T, S> = T & {
|
|
@@ -2345,7 +2344,7 @@ interface ComboboxViewportProps extends PrimitiveProps {
|
|
|
2345
2344
|
*/
|
|
2346
2345
|
nonce?: string;
|
|
2347
2346
|
}
|
|
2348
|
-
declare const _default$50: __VLS_WithSlots$227<
|
|
2347
|
+
declare const _default$50: __VLS_WithSlots$227<vue6.DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2349
2348
|
default?: (props: {}) => any;
|
|
2350
2349
|
}>;
|
|
2351
2350
|
type __VLS_WithSlots$227<T, S> = T & {
|
|
@@ -2358,8 +2357,8 @@ type __VLS_WithSlots$227<T, S> = T & {
|
|
|
2358
2357
|
//#region src/Combobox/ComboboxVirtualizer.vue.d.ts
|
|
2359
2358
|
interface ComboboxVirtualizerProps<T extends AcceptableValue = AcceptableValue> extends ListboxVirtualizerProps<T> {}
|
|
2360
2359
|
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:
|
|
2360
|
+
props: __VLS_PrettifyLocal$7<Pick<Partial<{}> & Omit<{} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, never> & ComboboxVirtualizerProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
2361
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
2363
2362
|
attrs: any;
|
|
2364
2363
|
slots: {
|
|
2365
2364
|
default?: (props: {
|
|
@@ -2369,7 +2368,7 @@ declare const _default$51: <T extends AcceptableValue = AcceptableValue>(__VLS_p
|
|
|
2369
2368
|
}) => any;
|
|
2370
2369
|
};
|
|
2371
2370
|
emit: {};
|
|
2372
|
-
}>) =>
|
|
2371
|
+
}>) => vue6.VNode & {
|
|
2373
2372
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2374
2373
|
};
|
|
2375
2374
|
type __VLS_PrettifyLocal$7<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -2410,13 +2409,13 @@ interface ConfigProviderProps {
|
|
|
2410
2409
|
*/
|
|
2411
2410
|
useId?: () => string;
|
|
2412
2411
|
}
|
|
2413
|
-
declare const _default$52: __VLS_WithSlots$226<
|
|
2412
|
+
declare const _default$52: __VLS_WithSlots$226<vue6.DefineComponent<ConfigProviderProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ConfigProviderProps> & Readonly<{}>, {
|
|
2414
2413
|
useId: () => string;
|
|
2415
2414
|
dir: Direction;
|
|
2416
2415
|
locale: string;
|
|
2417
2416
|
scrollBody: boolean | ScrollBodyOption;
|
|
2418
2417
|
nonce: string;
|
|
2419
|
-
}, {}, {}, {}, string,
|
|
2418
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2420
2419
|
default?: (props: {}) => any;
|
|
2421
2420
|
}>;
|
|
2422
2421
|
type __VLS_WithSlots$226<T, S> = T & {
|
|
@@ -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<vue6.DefineComponent<FocusScopeProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
2495
2494
|
mountAutoFocus: (event: Event) => any;
|
|
2496
2495
|
unmountAutoFocus: (event: Event) => any;
|
|
2497
|
-
}, string,
|
|
2496
|
+
}, string, vue6.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, vue6.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<vue6.DefineComponent<ContextMenuArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ContextMenuArrowProps> & Readonly<{}>, {
|
|
2643
|
+
as: AsTag | vue6.Component;
|
|
2645
2644
|
width: number;
|
|
2646
2645
|
height: number;
|
|
2647
|
-
}, {}, {}, {}, string,
|
|
2646
|
+
}, {}, {}, {}, string, vue6.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<
|
|
2661
|
-
"update:modelValue": (payload: boolean) => any;
|
|
2659
|
+
declare const _default$54: __VLS_WithSlots$223<vue6.DefineComponent<ContextMenuCheckboxItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
2662
2660
|
select: (event: Event) => any;
|
|
2663
|
-
|
|
2664
|
-
|
|
2661
|
+
"update:modelValue": (payload: boolean) => any;
|
|
2662
|
+
}, string, vue6.PublicProps, Readonly<ContextMenuCheckboxItemProps> & Readonly<{
|
|
2665
2663
|
onSelect?: ((event: Event) => any) | undefined;
|
|
2666
|
-
|
|
2664
|
+
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
2665
|
+
}>, {}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<ContextMenuContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.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, vue6.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<vue1606.DefineComponent<ContextMe
|
|
|
2695
2694
|
collisionPadding: number | Partial<Record<Side, number>>;
|
|
2696
2695
|
sticky: "partial" | "always";
|
|
2697
2696
|
hideWhenDetached: boolean;
|
|
2698
|
-
}, {}, {}, {}, string,
|
|
2697
|
+
}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<ContextMenuGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ContextMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<MenuItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
2724
2723
|
select: (event: Event) => any;
|
|
2725
|
-
}, string,
|
|
2724
|
+
}, string, vue6.PublicProps, Readonly<MenuItemProps> & Readonly<{
|
|
2726
2725
|
onSelect?: ((event: Event) => any) | undefined;
|
|
2727
|
-
}>, {}, {}, {}, {}, string,
|
|
2726
|
+
}>, {}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<ContextMenuItemIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ContextMenuItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<ContextMenuLabelProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ContextMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.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: vue6.DefineComponent<ContextMenuPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ContextMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<ContextMenuRadioGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
2780
2779
|
"update:modelValue": (payload: string) => any;
|
|
2781
|
-
}, string,
|
|
2780
|
+
}, string, vue6.PublicProps, Readonly<ContextMenuRadioGroupProps> & Readonly<{
|
|
2782
2781
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
2783
|
-
}>, {}, {}, {}, {}, string,
|
|
2782
|
+
}>, {}, {}, {}, {}, string, vue6.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<vue6.DefineComponent<ContextMenuRadioItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
2797
2796
|
select: (event: Event) => any;
|
|
2798
|
-
}, string,
|
|
2797
|
+
}, string, vue6.PublicProps, Readonly<ContextMenuRadioItemProps> & Readonly<{
|
|
2799
2798
|
onSelect?: ((event: Event) => any) | undefined;
|
|
2800
|
-
}>, {}, {}, {}, {}, string,
|
|
2799
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2801
2800
|
default?: (props: {}) => any;
|
|
2802
2801
|
}>;
|
|
2803
2802
|
type __VLS_WithSlots$215<T, S> = T & {
|
|
@@ -2814,17 +2813,26 @@ type ContextMenuRootContext = {
|
|
|
2814
2813
|
modal: Ref<boolean>;
|
|
2815
2814
|
dir: Ref<Direction>;
|
|
2816
2815
|
triggerElement: Ref<HTMLElement | undefined>;
|
|
2816
|
+
pressOpenDelay: Ref<number>;
|
|
2817
2817
|
};
|
|
2818
|
-
interface ContextMenuRootProps extends Omit<MenuProps, 'open'> {
|
|
2818
|
+
interface ContextMenuRootProps extends Omit<MenuProps, 'open'> {
|
|
2819
|
+
/**
|
|
2820
|
+
* The duration from when the trigger is pressed until the menu openes.
|
|
2821
|
+
*
|
|
2822
|
+
* @defaultValue 700
|
|
2823
|
+
*/
|
|
2824
|
+
pressOpenDelay?: number;
|
|
2825
|
+
}
|
|
2819
2826
|
type ContextMenuRootEmits = MenuEmits;
|
|
2820
2827
|
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<
|
|
2828
|
+
declare const _default$63: __VLS_WithSlots$214<vue6.DefineComponent<ContextMenuRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
2822
2829
|
"update:open": (payload: boolean) => any;
|
|
2823
|
-
}, string,
|
|
2830
|
+
}, string, vue6.PublicProps, Readonly<ContextMenuRootProps> & Readonly<{
|
|
2824
2831
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
2825
2832
|
}>, {
|
|
2826
2833
|
modal: boolean;
|
|
2827
|
-
|
|
2834
|
+
pressOpenDelay: number;
|
|
2835
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2828
2836
|
default?: (props: {}) => any;
|
|
2829
2837
|
}>;
|
|
2830
2838
|
type __VLS_WithSlots$214<T, S> = T & {
|
|
@@ -2836,7 +2844,7 @@ type __VLS_WithSlots$214<T, S> = T & {
|
|
|
2836
2844
|
//#endregion
|
|
2837
2845
|
//#region src/ContextMenu/ContextMenuSeparator.vue.d.ts
|
|
2838
2846
|
interface ContextMenuSeparatorProps extends MenuSeparatorProps {}
|
|
2839
|
-
declare const _default$64: __VLS_WithSlots$213<
|
|
2847
|
+
declare const _default$64: __VLS_WithSlots$213<vue6.DefineComponent<ContextMenuSeparatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ContextMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2840
2848
|
default?: (props: {}) => any;
|
|
2841
2849
|
}>;
|
|
2842
2850
|
type __VLS_WithSlots$213<T, S> = T & {
|
|
@@ -2852,13 +2860,13 @@ interface ContextMenuSubProps extends MenuSubProps {
|
|
|
2852
2860
|
/** The open state of the submenu when it is initially rendered. Use when you do not need to control its open state. */
|
|
2853
2861
|
defaultOpen?: boolean;
|
|
2854
2862
|
}
|
|
2855
|
-
declare const _default$65: __VLS_WithSlots$212<
|
|
2863
|
+
declare const _default$65: __VLS_WithSlots$212<vue6.DefineComponent<ContextMenuSubProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
2856
2864
|
"update:open": (payload: boolean) => any;
|
|
2857
|
-
}, string,
|
|
2865
|
+
}, string, vue6.PublicProps, Readonly<ContextMenuSubProps> & Readonly<{
|
|
2858
2866
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
2859
2867
|
}>, {
|
|
2860
2868
|
open: boolean;
|
|
2861
|
-
}, {}, {}, {}, string,
|
|
2869
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2862
2870
|
default?: (props: {
|
|
2863
2871
|
/** Current open state */
|
|
2864
2872
|
open: boolean;
|
|
@@ -2874,7 +2882,7 @@ type __VLS_WithSlots$212<T, S> = T & {
|
|
|
2874
2882
|
//#region src/ContextMenu/ContextMenuSubContent.vue.d.ts
|
|
2875
2883
|
type ContextMenuSubContentEmits = MenuSubContentEmits;
|
|
2876
2884
|
interface ContextMenuSubContentProps extends MenuSubContentProps {}
|
|
2877
|
-
declare const _default$66: __VLS_WithSlots$211<
|
|
2885
|
+
declare const _default$66: __VLS_WithSlots$211<vue6.DefineComponent<ContextMenuSubContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
2878
2886
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
2879
2887
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
2880
2888
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -2882,7 +2890,7 @@ declare const _default$66: __VLS_WithSlots$211<vue1606.DefineComponent<ContextMe
|
|
|
2882
2890
|
openAutoFocus: (event: Event) => any;
|
|
2883
2891
|
closeAutoFocus: (event: Event) => any;
|
|
2884
2892
|
entryFocus: (event: Event) => any;
|
|
2885
|
-
}, string,
|
|
2893
|
+
}, string, vue6.PublicProps, Readonly<ContextMenuSubContentProps> & Readonly<{
|
|
2886
2894
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
2887
2895
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
2888
2896
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -2890,7 +2898,7 @@ declare const _default$66: __VLS_WithSlots$211<vue1606.DefineComponent<ContextMe
|
|
|
2890
2898
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
2891
2899
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
2892
2900
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
2893
|
-
}>, {}, {}, {}, {}, string,
|
|
2901
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2894
2902
|
default?: (props: {}) => any;
|
|
2895
2903
|
}>;
|
|
2896
2904
|
type __VLS_WithSlots$211<T, S> = T & {
|
|
@@ -2902,7 +2910,7 @@ type __VLS_WithSlots$211<T, S> = T & {
|
|
|
2902
2910
|
//#endregion
|
|
2903
2911
|
//#region src/ContextMenu/ContextMenuSubTrigger.vue.d.ts
|
|
2904
2912
|
interface ContextMenuSubTriggerProps extends MenuSubTriggerProps {}
|
|
2905
|
-
declare const _default$67: __VLS_WithSlots$210<
|
|
2913
|
+
declare const _default$67: __VLS_WithSlots$210<vue6.DefineComponent<ContextMenuSubTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ContextMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2906
2914
|
default?: (props: {}) => any;
|
|
2907
2915
|
}>;
|
|
2908
2916
|
type __VLS_WithSlots$210<T, S> = T & {
|
|
@@ -2921,10 +2929,10 @@ interface ContextMenuTriggerProps extends PrimitiveProps {
|
|
|
2921
2929
|
*/
|
|
2922
2930
|
disabled?: boolean;
|
|
2923
2931
|
}
|
|
2924
|
-
declare const _default$68: __VLS_WithSlots$209<
|
|
2932
|
+
declare const _default$68: __VLS_WithSlots$209<vue6.DefineComponent<ContextMenuTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ContextMenuTriggerProps> & Readonly<{}>, {
|
|
2933
|
+
as: AsTag | vue6.Component;
|
|
2925
2934
|
disabled: boolean;
|
|
2926
|
-
|
|
2927
|
-
}, {}, {}, {}, string, vue1606.ComponentProvideOptions, false, {}, any>, {
|
|
2935
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2928
2936
|
default?: (props: {}) => any;
|
|
2929
2937
|
}>;
|
|
2930
2938
|
type __VLS_WithSlots$209<T, S> = T & {
|
|
@@ -2939,7 +2947,7 @@ interface DateFieldInputProps extends PrimitiveProps {
|
|
|
2939
2947
|
/** The part of the date to render */
|
|
2940
2948
|
part: SegmentPart;
|
|
2941
2949
|
}
|
|
2942
|
-
declare const _default$69: __VLS_WithSlots$208<
|
|
2950
|
+
declare const _default$69: __VLS_WithSlots$208<vue6.DefineComponent<DateFieldInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
2943
2951
|
default?: (props: {}) => any;
|
|
2944
2952
|
}>;
|
|
2945
2953
|
type __VLS_WithSlots$208<T, S> = T & {
|
|
@@ -3011,22 +3019,22 @@ type DateFieldRootEmits = {
|
|
|
3011
3019
|
'update:placeholder': [date: DateValue$1];
|
|
3012
3020
|
};
|
|
3013
3021
|
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<
|
|
3022
|
+
declare const _default$70: __VLS_WithSlots$207<vue6.DefineComponent<DateFieldRootProps, {
|
|
3015
3023
|
/** Helper to set the focused element inside the DateField */
|
|
3016
3024
|
setFocusedElement: (el: HTMLElement) => void;
|
|
3017
|
-
}, {}, {}, {},
|
|
3025
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
3018
3026
|
"update:modelValue": (date: DateValue$1 | undefined) => any;
|
|
3019
3027
|
"update:placeholder": (date: DateValue$1) => any;
|
|
3020
|
-
}, string,
|
|
3028
|
+
}, string, vue6.PublicProps, Readonly<DateFieldRootProps> & Readonly<{
|
|
3021
3029
|
"onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
3022
3030
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
3023
3031
|
}>, {
|
|
3024
|
-
defaultValue: DateValue$1;
|
|
3025
3032
|
disabled: boolean;
|
|
3033
|
+
defaultValue: DateValue$1;
|
|
3026
3034
|
placeholder: DateValue$1;
|
|
3027
3035
|
readonly: boolean;
|
|
3028
3036
|
isDateUnavailable: Matcher;
|
|
3029
|
-
}, {}, {}, {}, string,
|
|
3037
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3030
3038
|
default?: (props: {
|
|
3031
3039
|
/** The current date of the field */
|
|
3032
3040
|
modelValue: DateValue$1 | undefined;
|
|
@@ -3048,7 +3056,7 @@ type __VLS_WithSlots$207<T, S> = T & {
|
|
|
3048
3056
|
//#endregion
|
|
3049
3057
|
//#region src/DatePicker/DatePickerAnchor.vue.d.ts
|
|
3050
3058
|
interface DatePickerAnchorProps extends PopoverAnchorProps {}
|
|
3051
|
-
declare const _default$71: __VLS_WithSlots$206<
|
|
3059
|
+
declare const _default$71: __VLS_WithSlots$206<vue6.DefineComponent<DatePickerAnchorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3052
3060
|
default?: (props: {}) => any;
|
|
3053
3061
|
}>;
|
|
3054
3062
|
type __VLS_WithSlots$206<T, S> = T & {
|
|
@@ -3060,7 +3068,7 @@ type __VLS_WithSlots$206<T, S> = T & {
|
|
|
3060
3068
|
//#endregion
|
|
3061
3069
|
//#region src/DatePicker/DatePickerArrow.vue.d.ts
|
|
3062
3070
|
interface DatePickerArrowProps extends PopoverArrowProps {}
|
|
3063
|
-
declare const _default$72: __VLS_WithSlots$205<
|
|
3071
|
+
declare const _default$72: __VLS_WithSlots$205<vue6.DefineComponent<DatePickerArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3064
3072
|
default?: (props: {}) => any;
|
|
3065
3073
|
}>;
|
|
3066
3074
|
type __VLS_WithSlots$205<T, S> = T & {
|
|
@@ -3071,12 +3079,12 @@ type __VLS_WithSlots$205<T, S> = T & {
|
|
|
3071
3079
|
//# sourceMappingURL=DatePickerArrow.vue.d.ts.map
|
|
3072
3080
|
//#endregion
|
|
3073
3081
|
//#region src/DatePicker/DatePickerCalendar.vue.d.ts
|
|
3074
|
-
declare const _default$73: __VLS_WithSlots$204<
|
|
3082
|
+
declare const _default$73: __VLS_WithSlots$204<vue6.DefineComponent<{}, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, true, {}, any>, {
|
|
3075
3083
|
default?: (props: {
|
|
3076
3084
|
date: DateValue$1;
|
|
3077
3085
|
grid: Grid<DateValue$1>[];
|
|
3078
3086
|
weekDays: string[];
|
|
3079
|
-
weekStartsOn: 0 |
|
|
3087
|
+
weekStartsOn: 0 | 1 | 5 | 3 | 2 | 4 | 6;
|
|
3080
3088
|
locale: string;
|
|
3081
3089
|
fixedWeeks: boolean;
|
|
3082
3090
|
}) => any;
|
|
@@ -3090,7 +3098,7 @@ type __VLS_WithSlots$204<T, S> = T & {
|
|
|
3090
3098
|
//#endregion
|
|
3091
3099
|
//#region src/DatePicker/DatePickerCell.vue.d.ts
|
|
3092
3100
|
interface DatePickerCellProps extends CalendarCellProps {}
|
|
3093
|
-
declare const _default$74: __VLS_WithSlots$203<
|
|
3101
|
+
declare const _default$74: __VLS_WithSlots$203<vue6.DefineComponent<DatePickerCellProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3094
3102
|
default?: (props: {}) => any;
|
|
3095
3103
|
}>;
|
|
3096
3104
|
type __VLS_WithSlots$203<T, S> = T & {
|
|
@@ -3102,7 +3110,7 @@ type __VLS_WithSlots$203<T, S> = T & {
|
|
|
3102
3110
|
//#endregion
|
|
3103
3111
|
//#region src/DatePicker/DatePickerCellTrigger.vue.d.ts
|
|
3104
3112
|
interface DatePickerCellTriggerProps extends CalendarCellTriggerProps {}
|
|
3105
|
-
declare const _default$75: __VLS_WithSlots$202<
|
|
3113
|
+
declare const _default$75: __VLS_WithSlots$202<vue6.DefineComponent<DatePickerCellTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerCellTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, CalendarCellTriggerSlot>;
|
|
3106
3114
|
type __VLS_WithSlots$202<T, S> = T & {
|
|
3107
3115
|
new (): {
|
|
3108
3116
|
$slots: S;
|
|
@@ -3112,7 +3120,7 @@ type __VLS_WithSlots$202<T, S> = T & {
|
|
|
3112
3120
|
//#endregion
|
|
3113
3121
|
//#region src/DatePicker/DatePickerClose.vue.d.ts
|
|
3114
3122
|
interface DatePickerCloseProps extends PopoverCloseProps {}
|
|
3115
|
-
declare const _default$76: __VLS_WithSlots$201<
|
|
3123
|
+
declare const _default$76: __VLS_WithSlots$201<vue6.DefineComponent<DatePickerCloseProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3116
3124
|
default?: (props: {}) => any;
|
|
3117
3125
|
}>;
|
|
3118
3126
|
type __VLS_WithSlots$201<T, S> = T & {
|
|
@@ -3129,21 +3137,21 @@ interface DatePickerContentProps extends PopoverContentProps {
|
|
|
3129
3137
|
*/
|
|
3130
3138
|
portal?: PopoverPortalProps;
|
|
3131
3139
|
}
|
|
3132
|
-
declare const _default$77: __VLS_WithSlots$200<
|
|
3140
|
+
declare const _default$77: __VLS_WithSlots$200<vue6.DefineComponent<DatePickerContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
3133
3141
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
3134
3142
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
3135
3143
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
3136
3144
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
3137
3145
|
openAutoFocus: (event: Event) => any;
|
|
3138
3146
|
closeAutoFocus: (event: Event) => any;
|
|
3139
|
-
}, string,
|
|
3147
|
+
}, string, vue6.PublicProps, Readonly<DatePickerContentProps> & Readonly<{
|
|
3140
3148
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
3141
3149
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
3142
3150
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
3143
3151
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
3144
3152
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
3145
3153
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
3146
|
-
}>, {}, {}, {}, {}, string,
|
|
3154
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3147
3155
|
default?: (props: {}) => any;
|
|
3148
3156
|
}>;
|
|
3149
3157
|
type __VLS_WithSlots$200<T, S> = T & {
|
|
@@ -3154,7 +3162,7 @@ type __VLS_WithSlots$200<T, S> = T & {
|
|
|
3154
3162
|
//# sourceMappingURL=DatePickerContent.vue.d.ts.map
|
|
3155
3163
|
//#endregion
|
|
3156
3164
|
//#region src/DatePicker/DatePickerField.vue.d.ts
|
|
3157
|
-
declare const _default$78: __VLS_WithSlots$199<
|
|
3165
|
+
declare const _default$78: __VLS_WithSlots$199<vue6.DefineComponent<{}, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, true, {}, any>, {
|
|
3158
3166
|
default?: (props: {
|
|
3159
3167
|
segments: {
|
|
3160
3168
|
part: SegmentPart;
|
|
@@ -3172,7 +3180,7 @@ type __VLS_WithSlots$199<T, S> = T & {
|
|
|
3172
3180
|
//#endregion
|
|
3173
3181
|
//#region src/DatePicker/DatePickerGrid.vue.d.ts
|
|
3174
3182
|
interface DatePickerGridProps extends CalendarGridProps {}
|
|
3175
|
-
declare const _default$79: __VLS_WithSlots$198<
|
|
3183
|
+
declare const _default$79: __VLS_WithSlots$198<vue6.DefineComponent<DatePickerGridProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerGridProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3176
3184
|
default?: (props: {}) => any;
|
|
3177
3185
|
}>;
|
|
3178
3186
|
type __VLS_WithSlots$198<T, S> = T & {
|
|
@@ -3184,7 +3192,7 @@ type __VLS_WithSlots$198<T, S> = T & {
|
|
|
3184
3192
|
//#endregion
|
|
3185
3193
|
//#region src/DatePicker/DatePickerGridBody.vue.d.ts
|
|
3186
3194
|
interface DatePickerGridBodyProps extends CalendarGridBodyProps {}
|
|
3187
|
-
declare const _default$80: __VLS_WithSlots$197<
|
|
3195
|
+
declare const _default$80: __VLS_WithSlots$197<vue6.DefineComponent<DatePickerGridBodyProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerGridBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3188
3196
|
default?: (props: {}) => any;
|
|
3189
3197
|
}>;
|
|
3190
3198
|
type __VLS_WithSlots$197<T, S> = T & {
|
|
@@ -3196,7 +3204,7 @@ type __VLS_WithSlots$197<T, S> = T & {
|
|
|
3196
3204
|
//#endregion
|
|
3197
3205
|
//#region src/DatePicker/DatePickerGridHead.vue.d.ts
|
|
3198
3206
|
interface DatePickerGridHeadProps extends CalendarGridHeadProps {}
|
|
3199
|
-
declare const _default$81: __VLS_WithSlots$196<
|
|
3207
|
+
declare const _default$81: __VLS_WithSlots$196<vue6.DefineComponent<DatePickerGridHeadProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerGridHeadProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3200
3208
|
default?: (props: {}) => any;
|
|
3201
3209
|
}>;
|
|
3202
3210
|
type __VLS_WithSlots$196<T, S> = T & {
|
|
@@ -3208,7 +3216,7 @@ type __VLS_WithSlots$196<T, S> = T & {
|
|
|
3208
3216
|
//#endregion
|
|
3209
3217
|
//#region src/DatePicker/DatePickerGridRow.vue.d.ts
|
|
3210
3218
|
interface DatePickerGridRowProps extends CalendarGridRowProps {}
|
|
3211
|
-
declare const _default$82: __VLS_WithSlots$195<
|
|
3219
|
+
declare const _default$82: __VLS_WithSlots$195<vue6.DefineComponent<DatePickerGridRowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerGridRowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3212
3220
|
default?: (props: {}) => any;
|
|
3213
3221
|
}>;
|
|
3214
3222
|
type __VLS_WithSlots$195<T, S> = T & {
|
|
@@ -3220,7 +3228,7 @@ type __VLS_WithSlots$195<T, S> = T & {
|
|
|
3220
3228
|
//#endregion
|
|
3221
3229
|
//#region src/DatePicker/DatePickerHeadCell.vue.d.ts
|
|
3222
3230
|
interface DatePickerHeadCellProps extends CalendarHeadCellProps {}
|
|
3223
|
-
declare const _default$83: __VLS_WithSlots$194<
|
|
3231
|
+
declare const _default$83: __VLS_WithSlots$194<vue6.DefineComponent<DatePickerHeadCellProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerHeadCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3224
3232
|
default?: (props: {}) => any;
|
|
3225
3233
|
}>;
|
|
3226
3234
|
type __VLS_WithSlots$194<T, S> = T & {
|
|
@@ -3232,7 +3240,7 @@ type __VLS_WithSlots$194<T, S> = T & {
|
|
|
3232
3240
|
//#endregion
|
|
3233
3241
|
//#region src/DatePicker/DatePickerHeader.vue.d.ts
|
|
3234
3242
|
interface DatePickerHeaderProps extends CalendarHeaderProps {}
|
|
3235
|
-
declare const _default$84: __VLS_WithSlots$193<
|
|
3243
|
+
declare const _default$84: __VLS_WithSlots$193<vue6.DefineComponent<DatePickerHeaderProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3236
3244
|
default?: (props: {}) => any;
|
|
3237
3245
|
}>;
|
|
3238
3246
|
type __VLS_WithSlots$193<T, S> = T & {
|
|
@@ -3244,7 +3252,7 @@ type __VLS_WithSlots$193<T, S> = T & {
|
|
|
3244
3252
|
//#endregion
|
|
3245
3253
|
//#region src/DatePicker/DatePickerHeading.vue.d.ts
|
|
3246
3254
|
interface DatePickerHeadingProps extends CalendarHeadingProps {}
|
|
3247
|
-
declare const _default$85: __VLS_WithSlots$192<
|
|
3255
|
+
declare const _default$85: __VLS_WithSlots$192<vue6.DefineComponent<DatePickerHeadingProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerHeadingProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3248
3256
|
default?: (props: {
|
|
3249
3257
|
/** Current month and year */
|
|
3250
3258
|
headingValue: string;
|
|
@@ -3259,7 +3267,7 @@ type __VLS_WithSlots$192<T, S> = T & {
|
|
|
3259
3267
|
//#endregion
|
|
3260
3268
|
//#region src/DatePicker/DatePickerInput.vue.d.ts
|
|
3261
3269
|
interface DatePickerInputProps extends DateFieldInputProps {}
|
|
3262
|
-
declare const _default$86: __VLS_WithSlots$191<
|
|
3270
|
+
declare const _default$86: __VLS_WithSlots$191<vue6.DefineComponent<DatePickerInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3263
3271
|
default?: (props: {}) => any;
|
|
3264
3272
|
}>;
|
|
3265
3273
|
type __VLS_WithSlots$191<T, S> = T & {
|
|
@@ -3271,7 +3279,7 @@ type __VLS_WithSlots$191<T, S> = T & {
|
|
|
3271
3279
|
//#endregion
|
|
3272
3280
|
//#region src/DatePicker/DatePickerNext.vue.d.ts
|
|
3273
3281
|
interface DatePickerNextProps extends CalendarNextProps {}
|
|
3274
|
-
declare const _default$87: __VLS_WithSlots$190<
|
|
3282
|
+
declare const _default$87: __VLS_WithSlots$190<vue6.DefineComponent<DatePickerNextProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, CalendarNextSlot>;
|
|
3275
3283
|
type __VLS_WithSlots$190<T, S> = T & {
|
|
3276
3284
|
new (): {
|
|
3277
3285
|
$slots: S;
|
|
@@ -3281,7 +3289,7 @@ type __VLS_WithSlots$190<T, S> = T & {
|
|
|
3281
3289
|
//#endregion
|
|
3282
3290
|
//#region src/DatePicker/DatePickerPrev.vue.d.ts
|
|
3283
3291
|
interface DatePickerPrevProps extends CalendarPrevProps {}
|
|
3284
|
-
declare const _default$88: __VLS_WithSlots$189<
|
|
3292
|
+
declare const _default$88: __VLS_WithSlots$189<vue6.DefineComponent<DatePickerPrevProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, CalendarPrevSlot>;
|
|
3285
3293
|
type __VLS_WithSlots$189<T, S> = T & {
|
|
3286
3294
|
new (): {
|
|
3287
3295
|
$slots: S;
|
|
@@ -3320,8 +3328,12 @@ type DatePickerRootContext = {
|
|
|
3320
3328
|
onPlaceholderChange: (date: DateValue$1) => void;
|
|
3321
3329
|
dir: Ref<Direction>;
|
|
3322
3330
|
step: Ref<DateStep | undefined>;
|
|
3331
|
+
closeOnSelect: Ref<boolean>;
|
|
3332
|
+
};
|
|
3333
|
+
type DatePickerRootProps = DateFieldRootProps & PopoverRootProps & Pick<CalendarRootProps, 'isDateDisabled' | 'pagedNavigation' | 'weekStartsOn' | 'weekdayFormat' | 'fixedWeeks' | 'numberOfMonths' | 'preventDeselect'> & {
|
|
3334
|
+
/** Whether or not to close the popover on date select */
|
|
3335
|
+
closeOnSelect?: boolean;
|
|
3323
3336
|
};
|
|
3324
|
-
type DatePickerRootProps = DateFieldRootProps & PopoverRootProps & Pick<CalendarRootProps, 'isDateDisabled' | 'pagedNavigation' | 'weekStartsOn' | 'weekdayFormat' | 'fixedWeeks' | 'numberOfMonths' | 'preventDeselect'>;
|
|
3325
3337
|
type DatePickerRootEmits = {
|
|
3326
3338
|
/** Event handler called whenever the model value changes */
|
|
3327
3339
|
'update:modelValue': [date: DateValue$1 | undefined];
|
|
@@ -3329,21 +3341,21 @@ type DatePickerRootEmits = {
|
|
|
3329
3341
|
'update:placeholder': [date: DateValue$1];
|
|
3330
3342
|
};
|
|
3331
3343
|
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<
|
|
3344
|
+
declare const _default$89: __VLS_WithSlots$188<vue6.DefineComponent<DatePickerRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
3333
3345
|
"update:modelValue": (date: DateValue$1 | undefined) => any;
|
|
3334
3346
|
"update:open": (value: boolean) => any;
|
|
3335
3347
|
"update:placeholder": (date: DateValue$1) => any;
|
|
3336
|
-
}, string,
|
|
3348
|
+
}, string, vue6.PublicProps, Readonly<DatePickerRootProps> & Readonly<{
|
|
3337
3349
|
"onUpdate:modelValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
3338
3350
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
3339
3351
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
3340
3352
|
}>, {
|
|
3341
|
-
|
|
3342
|
-
disabled: boolean;
|
|
3353
|
+
locale: string;
|
|
3343
3354
|
open: boolean;
|
|
3344
3355
|
defaultOpen: boolean;
|
|
3356
|
+
disabled: boolean;
|
|
3357
|
+
defaultValue: DateValue$1;
|
|
3345
3358
|
modal: boolean;
|
|
3346
|
-
locale: string;
|
|
3347
3359
|
placeholder: DateValue$1;
|
|
3348
3360
|
pagedNavigation: boolean;
|
|
3349
3361
|
preventDeselect: boolean;
|
|
@@ -3354,7 +3366,8 @@ declare const _default$89: __VLS_WithSlots$188<vue1606.DefineComponent<DatePicke
|
|
|
3354
3366
|
readonly: boolean;
|
|
3355
3367
|
isDateDisabled: Matcher;
|
|
3356
3368
|
isDateUnavailable: Matcher;
|
|
3357
|
-
|
|
3369
|
+
closeOnSelect: boolean;
|
|
3370
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3358
3371
|
default?: (props: {}) => any;
|
|
3359
3372
|
}>;
|
|
3360
3373
|
type __VLS_WithSlots$188<T, S> = T & {
|
|
@@ -3366,7 +3379,7 @@ type __VLS_WithSlots$188<T, S> = T & {
|
|
|
3366
3379
|
//#endregion
|
|
3367
3380
|
//#region src/DatePicker/DatePickerTrigger.vue.d.ts
|
|
3368
3381
|
interface DatePickerTriggerProps extends PopoverTriggerProps {}
|
|
3369
|
-
declare const _default$90: __VLS_WithSlots$187<
|
|
3382
|
+
declare const _default$90: __VLS_WithSlots$187<vue6.DefineComponent<DatePickerTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DatePickerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3370
3383
|
default?: (props: {}) => any;
|
|
3371
3384
|
}>;
|
|
3372
3385
|
type __VLS_WithSlots$187<T, S> = T & {
|
|
@@ -3446,21 +3459,21 @@ type DateRangeFieldRootEmits = {
|
|
|
3446
3459
|
'update:placeholder': [date: DateValue$1];
|
|
3447
3460
|
};
|
|
3448
3461
|
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<
|
|
3462
|
+
declare const _default$92: __VLS_WithSlots$186<vue6.DefineComponent<DateRangeFieldRootProps, {
|
|
3450
3463
|
setFocusedElement: (el: HTMLElement) => void;
|
|
3451
|
-
}, {}, {}, {},
|
|
3464
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
3452
3465
|
"update:modelValue": (args_0: DateRange) => any;
|
|
3453
3466
|
"update:placeholder": (date: DateValue$1) => any;
|
|
3454
|
-
}, string,
|
|
3467
|
+
}, string, vue6.PublicProps, Readonly<DateRangeFieldRootProps> & Readonly<{
|
|
3455
3468
|
"onUpdate:modelValue"?: ((args_0: DateRange) => any) | undefined;
|
|
3456
3469
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
3457
3470
|
}>, {
|
|
3458
|
-
defaultValue: DateRange;
|
|
3459
3471
|
disabled: boolean;
|
|
3472
|
+
defaultValue: DateRange;
|
|
3460
3473
|
placeholder: DateValue$1;
|
|
3461
3474
|
readonly: boolean;
|
|
3462
3475
|
isDateUnavailable: Matcher;
|
|
3463
|
-
}, {}, {}, {}, string,
|
|
3476
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3464
3477
|
default?: (props: {
|
|
3465
3478
|
modelValue: DateRange | null;
|
|
3466
3479
|
segments: {
|
|
@@ -3489,7 +3502,7 @@ interface DateRangeFieldInputProps extends PrimitiveProps {
|
|
|
3489
3502
|
/** The type of field to render (start or end) */
|
|
3490
3503
|
type: DateRangeType;
|
|
3491
3504
|
}
|
|
3492
|
-
declare const _default$91: __VLS_WithSlots$185<
|
|
3505
|
+
declare const _default$91: __VLS_WithSlots$185<vue6.DefineComponent<DateRangeFieldInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangeFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3493
3506
|
default?: (props: {}) => any;
|
|
3494
3507
|
}>;
|
|
3495
3508
|
type __VLS_WithSlots$185<T, S> = T & {
|
|
@@ -3501,7 +3514,7 @@ type __VLS_WithSlots$185<T, S> = T & {
|
|
|
3501
3514
|
//#endregion
|
|
3502
3515
|
//#region src/DateRangePicker/DateRangePickerAnchor.vue.d.ts
|
|
3503
3516
|
interface DateRangePickerAnchorProps extends PopoverAnchorProps {}
|
|
3504
|
-
declare const _default$93: __VLS_WithSlots$184<
|
|
3517
|
+
declare const _default$93: __VLS_WithSlots$184<vue6.DefineComponent<DateRangePickerAnchorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3505
3518
|
default?: (props: {}) => any;
|
|
3506
3519
|
}>;
|
|
3507
3520
|
type __VLS_WithSlots$184<T, S> = T & {
|
|
@@ -3513,7 +3526,7 @@ type __VLS_WithSlots$184<T, S> = T & {
|
|
|
3513
3526
|
//#endregion
|
|
3514
3527
|
//#region src/DateRangePicker/DateRangePickerArrow.vue.d.ts
|
|
3515
3528
|
interface DateRangePickerArrowProps extends PopoverArrowProps {}
|
|
3516
|
-
declare const _default$94: __VLS_WithSlots$183<
|
|
3529
|
+
declare const _default$94: __VLS_WithSlots$183<vue6.DefineComponent<DateRangePickerArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3517
3530
|
default?: (props: {}) => any;
|
|
3518
3531
|
}>;
|
|
3519
3532
|
type __VLS_WithSlots$183<T, S> = T & {
|
|
@@ -3524,12 +3537,12 @@ type __VLS_WithSlots$183<T, S> = T & {
|
|
|
3524
3537
|
//# sourceMappingURL=DateRangePickerArrow.vue.d.ts.map
|
|
3525
3538
|
//#endregion
|
|
3526
3539
|
//#region src/DateRangePicker/DateRangePickerCalendar.vue.d.ts
|
|
3527
|
-
declare const _default$95: __VLS_WithSlots$182<
|
|
3540
|
+
declare const _default$95: __VLS_WithSlots$182<vue6.DefineComponent<{}, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, true, {}, any>, {
|
|
3528
3541
|
default?: (props: {
|
|
3529
|
-
date:
|
|
3530
|
-
grid: Grid<
|
|
3542
|
+
date: _internationalized_date650.DateValue;
|
|
3543
|
+
grid: Grid<_internationalized_date650.DateValue>[];
|
|
3531
3544
|
weekDays: string[];
|
|
3532
|
-
weekStartsOn: 0 |
|
|
3545
|
+
weekStartsOn: 0 | 1 | 5 | 3 | 2 | 4 | 6;
|
|
3533
3546
|
locale: string;
|
|
3534
3547
|
fixedWeeks: boolean;
|
|
3535
3548
|
}) => any;
|
|
@@ -3543,7 +3556,7 @@ type __VLS_WithSlots$182<T, S> = T & {
|
|
|
3543
3556
|
//#endregion
|
|
3544
3557
|
//#region src/DateRangePicker/DateRangePickerCell.vue.d.ts
|
|
3545
3558
|
interface DateRangePickerCellProps extends RangeCalendarCellProps {}
|
|
3546
|
-
declare const _default$96: __VLS_WithSlots$181<
|
|
3559
|
+
declare const _default$96: __VLS_WithSlots$181<vue6.DefineComponent<DateRangePickerCellProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3547
3560
|
default?: (props: {}) => any;
|
|
3548
3561
|
}>;
|
|
3549
3562
|
type __VLS_WithSlots$181<T, S> = T & {
|
|
@@ -3586,9 +3599,9 @@ interface RangeCalendarCellTriggerSlot {
|
|
|
3586
3599
|
selectionEnd: boolean;
|
|
3587
3600
|
}) => any;
|
|
3588
3601
|
}
|
|
3589
|
-
declare const _default$213: __VLS_WithSlots$180<
|
|
3590
|
-
as: AsTag |
|
|
3591
|
-
}, {}, {}, {}, string,
|
|
3602
|
+
declare const _default$213: __VLS_WithSlots$180<vue6.DefineComponent<RangeCalendarCellTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarCellTriggerProps> & Readonly<{}>, {
|
|
3603
|
+
as: AsTag | vue6.Component;
|
|
3604
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, RangeCalendarCellTriggerSlot>;
|
|
3592
3605
|
type __VLS_WithSlots$180<T, S> = T & {
|
|
3593
3606
|
new (): {
|
|
3594
3607
|
$slots: S;
|
|
@@ -3598,7 +3611,7 @@ type __VLS_WithSlots$180<T, S> = T & {
|
|
|
3598
3611
|
//#endregion
|
|
3599
3612
|
//#region src/DateRangePicker/DateRangePickerCellTrigger.vue.d.ts
|
|
3600
3613
|
interface DateRangePickerCellTriggerProps extends RangeCalendarCellTriggerProps {}
|
|
3601
|
-
declare const _default$97: __VLS_WithSlots$179<
|
|
3614
|
+
declare const _default$97: __VLS_WithSlots$179<vue6.DefineComponent<DateRangePickerCellTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerCellTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, RangeCalendarCellTriggerSlot>;
|
|
3602
3615
|
type __VLS_WithSlots$179<T, S> = T & {
|
|
3603
3616
|
new (): {
|
|
3604
3617
|
$slots: S;
|
|
@@ -3608,7 +3621,7 @@ type __VLS_WithSlots$179<T, S> = T & {
|
|
|
3608
3621
|
//#endregion
|
|
3609
3622
|
//#region src/DateRangePicker/DateRangePickerClose.vue.d.ts
|
|
3610
3623
|
interface DateRangePickerCloseProps extends PopoverCloseProps {}
|
|
3611
|
-
declare const _default$98: __VLS_WithSlots$178<
|
|
3624
|
+
declare const _default$98: __VLS_WithSlots$178<vue6.DefineComponent<DateRangePickerCloseProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3612
3625
|
default?: (props: {}) => any;
|
|
3613
3626
|
}>;
|
|
3614
3627
|
type __VLS_WithSlots$178<T, S> = T & {
|
|
@@ -3625,21 +3638,21 @@ interface DateRangePickerContentProps extends PopoverContentProps {
|
|
|
3625
3638
|
*/
|
|
3626
3639
|
portal?: PopoverPortalProps;
|
|
3627
3640
|
}
|
|
3628
|
-
declare const _default$99: __VLS_WithSlots$177<
|
|
3641
|
+
declare const _default$99: __VLS_WithSlots$177<vue6.DefineComponent<DateRangePickerContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
3629
3642
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
3630
3643
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
3631
3644
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
3632
3645
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
3633
3646
|
openAutoFocus: (event: Event) => any;
|
|
3634
3647
|
closeAutoFocus: (event: Event) => any;
|
|
3635
|
-
}, string,
|
|
3648
|
+
}, string, vue6.PublicProps, Readonly<DateRangePickerContentProps> & Readonly<{
|
|
3636
3649
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
3637
3650
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
3638
3651
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
3639
3652
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
3640
3653
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
3641
3654
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
3642
|
-
}>, {}, {}, {}, {}, string,
|
|
3655
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3643
3656
|
default?: (props: {}) => any;
|
|
3644
3657
|
}>;
|
|
3645
3658
|
type __VLS_WithSlots$177<T, S> = T & {
|
|
@@ -3650,7 +3663,7 @@ type __VLS_WithSlots$177<T, S> = T & {
|
|
|
3650
3663
|
//# sourceMappingURL=DateRangePickerContent.vue.d.ts.map
|
|
3651
3664
|
//#endregion
|
|
3652
3665
|
//#region src/DateRangePicker/DateRangePickerField.vue.d.ts
|
|
3653
|
-
declare const _default$100: __VLS_WithSlots$176<
|
|
3666
|
+
declare const _default$100: __VLS_WithSlots$176<vue6.DefineComponent<{}, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, true, {}, any>, {
|
|
3654
3667
|
default?: (props: {
|
|
3655
3668
|
segments: {
|
|
3656
3669
|
start: {
|
|
@@ -3674,7 +3687,7 @@ type __VLS_WithSlots$176<T, S> = T & {
|
|
|
3674
3687
|
//#endregion
|
|
3675
3688
|
//#region src/DateRangePicker/DateRangePickerGrid.vue.d.ts
|
|
3676
3689
|
interface DateRangePickerGridProps extends RangeCalendarGridProps {}
|
|
3677
|
-
declare const _default$101: __VLS_WithSlots$175<
|
|
3690
|
+
declare const _default$101: __VLS_WithSlots$175<vue6.DefineComponent<DateRangePickerGridProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerGridProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3678
3691
|
default?: (props: {}) => any;
|
|
3679
3692
|
}>;
|
|
3680
3693
|
type __VLS_WithSlots$175<T, S> = T & {
|
|
@@ -3686,7 +3699,7 @@ type __VLS_WithSlots$175<T, S> = T & {
|
|
|
3686
3699
|
//#endregion
|
|
3687
3700
|
//#region src/DateRangePicker/DateRangePickerGridBody.vue.d.ts
|
|
3688
3701
|
interface DateRangePickerGridBodyProps extends RangeCalendarGridBodyProps {}
|
|
3689
|
-
declare const _default$102: __VLS_WithSlots$174<
|
|
3702
|
+
declare const _default$102: __VLS_WithSlots$174<vue6.DefineComponent<DateRangePickerGridBodyProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerGridBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3690
3703
|
default?: (props: {}) => any;
|
|
3691
3704
|
}>;
|
|
3692
3705
|
type __VLS_WithSlots$174<T, S> = T & {
|
|
@@ -3698,7 +3711,7 @@ type __VLS_WithSlots$174<T, S> = T & {
|
|
|
3698
3711
|
//#endregion
|
|
3699
3712
|
//#region src/DateRangePicker/DateRangePickerGridHead.vue.d.ts
|
|
3700
3713
|
interface DateRangePickerGridHeadProps extends RangeCalendarGridHeadProps {}
|
|
3701
|
-
declare const _default$103: __VLS_WithSlots$173<
|
|
3714
|
+
declare const _default$103: __VLS_WithSlots$173<vue6.DefineComponent<DateRangePickerGridHeadProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerGridHeadProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3702
3715
|
default?: (props: {}) => any;
|
|
3703
3716
|
}>;
|
|
3704
3717
|
type __VLS_WithSlots$173<T, S> = T & {
|
|
@@ -3710,7 +3723,7 @@ type __VLS_WithSlots$173<T, S> = T & {
|
|
|
3710
3723
|
//#endregion
|
|
3711
3724
|
//#region src/DateRangePicker/DateRangePickerGridRow.vue.d.ts
|
|
3712
3725
|
interface DateRangePickerGridRowProps extends RangeCalendarGridRowProps {}
|
|
3713
|
-
declare const _default$104: __VLS_WithSlots$172<
|
|
3726
|
+
declare const _default$104: __VLS_WithSlots$172<vue6.DefineComponent<DateRangePickerGridRowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerGridRowProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3714
3727
|
default?: (props: {}) => any;
|
|
3715
3728
|
}>;
|
|
3716
3729
|
type __VLS_WithSlots$172<T, S> = T & {
|
|
@@ -3722,7 +3735,7 @@ type __VLS_WithSlots$172<T, S> = T & {
|
|
|
3722
3735
|
//#endregion
|
|
3723
3736
|
//#region src/DateRangePicker/DateRangePickerHeadCell.vue.d.ts
|
|
3724
3737
|
interface DateRangePickerHeadCellProps extends RangeCalendarHeadCellProps {}
|
|
3725
|
-
declare const _default$105: __VLS_WithSlots$171<
|
|
3738
|
+
declare const _default$105: __VLS_WithSlots$171<vue6.DefineComponent<DateRangePickerHeadCellProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerHeadCellProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3726
3739
|
default?: (props: {}) => any;
|
|
3727
3740
|
}>;
|
|
3728
3741
|
type __VLS_WithSlots$171<T, S> = T & {
|
|
@@ -3734,7 +3747,7 @@ type __VLS_WithSlots$171<T, S> = T & {
|
|
|
3734
3747
|
//#endregion
|
|
3735
3748
|
//#region src/DateRangePicker/DateRangePickerHeader.vue.d.ts
|
|
3736
3749
|
interface DateRangePickerHeaderProps extends RangeCalendarHeaderProps {}
|
|
3737
|
-
declare const _default$106: __VLS_WithSlots$170<
|
|
3750
|
+
declare const _default$106: __VLS_WithSlots$170<vue6.DefineComponent<DateRangePickerHeaderProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3738
3751
|
default?: (props: {}) => any;
|
|
3739
3752
|
}>;
|
|
3740
3753
|
type __VLS_WithSlots$170<T, S> = T & {
|
|
@@ -3746,7 +3759,7 @@ type __VLS_WithSlots$170<T, S> = T & {
|
|
|
3746
3759
|
//#endregion
|
|
3747
3760
|
//#region src/DateRangePicker/DateRangePickerHeading.vue.d.ts
|
|
3748
3761
|
interface DateRangePickerHeadingProps extends RangeCalendarHeadingProps {}
|
|
3749
|
-
declare const _default$107: __VLS_WithSlots$169<
|
|
3762
|
+
declare const _default$107: __VLS_WithSlots$169<vue6.DefineComponent<DateRangePickerHeadingProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerHeadingProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3750
3763
|
default?: (props: {
|
|
3751
3764
|
/** Current month and year */
|
|
3752
3765
|
headingValue: string;
|
|
@@ -3761,7 +3774,7 @@ type __VLS_WithSlots$169<T, S> = T & {
|
|
|
3761
3774
|
//#endregion
|
|
3762
3775
|
//#region src/DateRangePicker/DateRangePickerInput.vue.d.ts
|
|
3763
3776
|
interface DateRangePickerInputProps extends DateRangeFieldInputProps {}
|
|
3764
|
-
declare const _default$108: __VLS_WithSlots$168<
|
|
3777
|
+
declare const _default$108: __VLS_WithSlots$168<vue6.DefineComponent<DateRangePickerInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3765
3778
|
default?: (props: {}) => any;
|
|
3766
3779
|
}>;
|
|
3767
3780
|
type __VLS_WithSlots$168<T, S> = T & {
|
|
@@ -3782,9 +3795,9 @@ interface RangeCalendarNextSlot {
|
|
|
3782
3795
|
disabled: boolean;
|
|
3783
3796
|
}) => any;
|
|
3784
3797
|
}
|
|
3785
|
-
declare const _default$221: __VLS_WithSlots$167<
|
|
3786
|
-
as: AsTag |
|
|
3787
|
-
}, {}, {}, {}, string,
|
|
3798
|
+
declare const _default$221: __VLS_WithSlots$167<vue6.DefineComponent<RangeCalendarNextProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarNextProps> & Readonly<{}>, {
|
|
3799
|
+
as: AsTag | vue6.Component;
|
|
3800
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, RangeCalendarNextSlot>;
|
|
3788
3801
|
type __VLS_WithSlots$167<T, S> = T & {
|
|
3789
3802
|
new (): {
|
|
3790
3803
|
$slots: S;
|
|
@@ -3794,7 +3807,7 @@ type __VLS_WithSlots$167<T, S> = T & {
|
|
|
3794
3807
|
//#endregion
|
|
3795
3808
|
//#region src/DateRangePicker/DateRangePickerNext.vue.d.ts
|
|
3796
3809
|
interface DateRangePickerNextProps extends RangeCalendarNextProps {}
|
|
3797
|
-
declare const _default$109: __VLS_WithSlots$166<
|
|
3810
|
+
declare const _default$109: __VLS_WithSlots$166<vue6.DefineComponent<DateRangePickerNextProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, RangeCalendarNextSlot>;
|
|
3798
3811
|
type __VLS_WithSlots$166<T, S> = T & {
|
|
3799
3812
|
new (): {
|
|
3800
3813
|
$slots: S;
|
|
@@ -3813,9 +3826,9 @@ interface RangeCalendarPrevSlot {
|
|
|
3813
3826
|
disabled: boolean;
|
|
3814
3827
|
}) => any;
|
|
3815
3828
|
}
|
|
3816
|
-
declare const _default$222: __VLS_WithSlots$165<
|
|
3817
|
-
as: AsTag |
|
|
3818
|
-
}, {}, {}, {}, string,
|
|
3829
|
+
declare const _default$222: __VLS_WithSlots$165<vue6.DefineComponent<RangeCalendarPrevProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarPrevProps> & Readonly<{}>, {
|
|
3830
|
+
as: AsTag | vue6.Component;
|
|
3831
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, RangeCalendarPrevSlot>;
|
|
3819
3832
|
type __VLS_WithSlots$165<T, S> = T & {
|
|
3820
3833
|
new (): {
|
|
3821
3834
|
$slots: S;
|
|
@@ -3825,7 +3838,7 @@ type __VLS_WithSlots$165<T, S> = T & {
|
|
|
3825
3838
|
//#endregion
|
|
3826
3839
|
//#region src/DateRangePicker/DateRangePickerPrev.vue.d.ts
|
|
3827
3840
|
interface DateRangePickerPrevProps extends RangeCalendarPrevProps {}
|
|
3828
|
-
declare const _default$110: __VLS_WithSlots$164<
|
|
3841
|
+
declare const _default$110: __VLS_WithSlots$164<vue6.DefineComponent<DateRangePickerPrevProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, RangeCalendarPrevSlot>;
|
|
3829
3842
|
type __VLS_WithSlots$164<T, S> = T & {
|
|
3830
3843
|
new (): {
|
|
3831
3844
|
$slots: S;
|
|
@@ -3872,8 +3885,12 @@ type DateRangePickerRootContext = {
|
|
|
3872
3885
|
fixedDate: Ref<'start' | 'end' | undefined>;
|
|
3873
3886
|
maximumDays?: Ref<number | undefined>;
|
|
3874
3887
|
step: Ref<DateStep | undefined>;
|
|
3888
|
+
closeOnSelect?: Ref<boolean>;
|
|
3889
|
+
};
|
|
3890
|
+
type DateRangePickerRootProps = DateRangeFieldRootProps & PopoverRootProps & Pick<RangeCalendarRootProps, 'isDateDisabled' | 'pagedNavigation' | 'weekStartsOn' | 'weekdayFormat' | 'fixedWeeks' | 'numberOfMonths' | 'preventDeselect' | 'isDateUnavailable' | 'isDateHighlightable' | 'allowNonContiguousRanges' | 'fixedDate' | 'maximumDays'> & {
|
|
3891
|
+
/** Whether or not to close the popover on range select */
|
|
3892
|
+
closeOnSelect?: boolean;
|
|
3875
3893
|
};
|
|
3876
|
-
type DateRangePickerRootProps = DateRangeFieldRootProps & PopoverRootProps & Pick<RangeCalendarRootProps, 'isDateDisabled' | 'pagedNavigation' | 'weekStartsOn' | 'weekdayFormat' | 'fixedWeeks' | 'numberOfMonths' | 'preventDeselect' | 'isDateUnavailable' | 'isDateHighlightable' | 'allowNonContiguousRanges' | 'fixedDate' | 'maximumDays'>;
|
|
3877
3894
|
type DateRangePickerRootEmits = {
|
|
3878
3895
|
/** Event handler called whenever the model value changes */
|
|
3879
3896
|
'update:modelValue': [date: DateRange];
|
|
@@ -3883,23 +3900,23 @@ type DateRangePickerRootEmits = {
|
|
|
3883
3900
|
'update:startValue': [date: DateValue$1 | undefined];
|
|
3884
3901
|
};
|
|
3885
3902
|
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<
|
|
3903
|
+
declare const _default$111: __VLS_WithSlots$163<vue6.DefineComponent<DateRangePickerRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
3887
3904
|
"update:modelValue": (date: DateRange) => any;
|
|
3888
3905
|
"update:open": (value: boolean) => any;
|
|
3889
3906
|
"update:placeholder": (date: DateValue$1) => any;
|
|
3890
3907
|
"update:startValue": (date: DateValue$1 | undefined) => any;
|
|
3891
|
-
}, string,
|
|
3908
|
+
}, string, vue6.PublicProps, Readonly<DateRangePickerRootProps> & Readonly<{
|
|
3892
3909
|
"onUpdate:modelValue"?: ((date: DateRange) => any) | undefined;
|
|
3893
3910
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
3894
3911
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
3895
3912
|
"onUpdate:startValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
3896
3913
|
}>, {
|
|
3897
|
-
|
|
3898
|
-
disabled: boolean;
|
|
3914
|
+
locale: string;
|
|
3899
3915
|
open: boolean;
|
|
3900
3916
|
defaultOpen: boolean;
|
|
3917
|
+
disabled: boolean;
|
|
3918
|
+
defaultValue: DateRange;
|
|
3901
3919
|
modal: boolean;
|
|
3902
|
-
locale: string;
|
|
3903
3920
|
placeholder: DateValue$1;
|
|
3904
3921
|
pagedNavigation: boolean;
|
|
3905
3922
|
preventDeselect: boolean;
|
|
@@ -3910,10 +3927,11 @@ declare const _default$111: __VLS_WithSlots$163<vue1606.DefineComponent<DateRang
|
|
|
3910
3927
|
readonly: boolean;
|
|
3911
3928
|
isDateDisabled: Matcher;
|
|
3912
3929
|
isDateUnavailable: Matcher;
|
|
3930
|
+
closeOnSelect: boolean;
|
|
3913
3931
|
allowNonContiguousRanges: boolean;
|
|
3914
3932
|
maximumDays: number;
|
|
3915
3933
|
isDateHighlightable: Matcher;
|
|
3916
|
-
}, {}, {}, {}, string,
|
|
3934
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3917
3935
|
default?: (props: {
|
|
3918
3936
|
modelValue: DateRange;
|
|
3919
3937
|
open: boolean;
|
|
@@ -3928,7 +3946,7 @@ type __VLS_WithSlots$163<T, S> = T & {
|
|
|
3928
3946
|
//#endregion
|
|
3929
3947
|
//#region src/DateRangePicker/DateRangePickerTrigger.vue.d.ts
|
|
3930
3948
|
interface DateRangePickerTriggerProps extends PopoverTriggerProps {}
|
|
3931
|
-
declare const _default$112: __VLS_WithSlots$162<
|
|
3949
|
+
declare const _default$112: __VLS_WithSlots$162<vue6.DefineComponent<DateRangePickerTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DateRangePickerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3932
3950
|
default?: (props: {}) => any;
|
|
3933
3951
|
}>;
|
|
3934
3952
|
type __VLS_WithSlots$162<T, S> = T & {
|
|
@@ -3940,11 +3958,11 @@ type __VLS_WithSlots$162<T, S> = T & {
|
|
|
3940
3958
|
//#endregion
|
|
3941
3959
|
//#region src/DropdownMenu/DropdownMenuArrow.vue.d.ts
|
|
3942
3960
|
interface DropdownMenuArrowProps extends MenuArrowProps {}
|
|
3943
|
-
declare const _default$121: __VLS_WithSlots$161<
|
|
3944
|
-
as: AsTag |
|
|
3961
|
+
declare const _default$121: __VLS_WithSlots$161<vue6.DefineComponent<DropdownMenuArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DropdownMenuArrowProps> & Readonly<{}>, {
|
|
3962
|
+
as: AsTag | vue6.Component;
|
|
3945
3963
|
width: number;
|
|
3946
3964
|
height: number;
|
|
3947
|
-
}, {}, {}, {}, string,
|
|
3965
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3948
3966
|
default?: (props: {}) => any;
|
|
3949
3967
|
}>;
|
|
3950
3968
|
type __VLS_WithSlots$161<T, S> = T & {
|
|
@@ -3957,13 +3975,13 @@ type __VLS_WithSlots$161<T, S> = T & {
|
|
|
3957
3975
|
//#region src/DropdownMenu/DropdownMenuCheckboxItem.vue.d.ts
|
|
3958
3976
|
type DropdownMenuCheckboxItemEmits = MenuCheckboxItemEmits;
|
|
3959
3977
|
interface DropdownMenuCheckboxItemProps extends MenuCheckboxItemProps {}
|
|
3960
|
-
declare const _default$122: __VLS_WithSlots$160<
|
|
3961
|
-
"update:modelValue": (payload: boolean) => any;
|
|
3978
|
+
declare const _default$122: __VLS_WithSlots$160<vue6.DefineComponent<DropdownMenuCheckboxItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
3962
3979
|
select: (event: Event) => any;
|
|
3963
|
-
|
|
3964
|
-
|
|
3980
|
+
"update:modelValue": (payload: boolean) => any;
|
|
3981
|
+
}, string, vue6.PublicProps, Readonly<DropdownMenuCheckboxItemProps> & Readonly<{
|
|
3965
3982
|
onSelect?: ((event: Event) => any) | undefined;
|
|
3966
|
-
|
|
3983
|
+
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
3984
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3967
3985
|
default?: (props: {}) => any;
|
|
3968
3986
|
}>;
|
|
3969
3987
|
type __VLS_WithSlots$160<T, S> = T & {
|
|
@@ -3976,19 +3994,19 @@ type __VLS_WithSlots$160<T, S> = T & {
|
|
|
3976
3994
|
//#region src/DropdownMenu/DropdownMenuContent.vue.d.ts
|
|
3977
3995
|
type DropdownMenuContentEmits = MenuContentEmits;
|
|
3978
3996
|
interface DropdownMenuContentProps extends MenuContentProps {}
|
|
3979
|
-
declare const _default$123: __VLS_WithSlots$159<
|
|
3997
|
+
declare const _default$123: __VLS_WithSlots$159<vue6.DefineComponent<DropdownMenuContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
3980
3998
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
3981
3999
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
3982
4000
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
3983
4001
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
3984
4002
|
closeAutoFocus: (event: Event) => any;
|
|
3985
|
-
}, string,
|
|
4003
|
+
}, string, vue6.PublicProps, Readonly<DropdownMenuContentProps> & Readonly<{
|
|
3986
4004
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
3987
4005
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
3988
4006
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
3989
4007
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
3990
4008
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
3991
|
-
}>, {}, {}, {}, {}, string,
|
|
4009
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
3992
4010
|
default?: (props: {}) => any;
|
|
3993
4011
|
}>;
|
|
3994
4012
|
type __VLS_WithSlots$159<T, S> = T & {
|
|
@@ -4000,7 +4018,7 @@ type __VLS_WithSlots$159<T, S> = T & {
|
|
|
4000
4018
|
//#endregion
|
|
4001
4019
|
//#region src/DropdownMenu/DropdownMenuGroup.vue.d.ts
|
|
4002
4020
|
interface DropdownMenuGroupProps extends MenuGroupProps {}
|
|
4003
|
-
declare const _default$124: __VLS_WithSlots$158<
|
|
4021
|
+
declare const _default$124: __VLS_WithSlots$158<vue6.DefineComponent<DropdownMenuGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DropdownMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4004
4022
|
default?: (props: {}) => any;
|
|
4005
4023
|
}>;
|
|
4006
4024
|
type __VLS_WithSlots$158<T, S> = T & {
|
|
@@ -4013,11 +4031,11 @@ type __VLS_WithSlots$158<T, S> = T & {
|
|
|
4013
4031
|
//#region src/DropdownMenu/DropdownMenuItem.vue.d.ts
|
|
4014
4032
|
type DropdownMenuItemEmits = MenuItemEmits;
|
|
4015
4033
|
interface DropdownMenuItemProps extends MenuItemProps {}
|
|
4016
|
-
declare const _default$125: __VLS_WithSlots$157<
|
|
4034
|
+
declare const _default$125: __VLS_WithSlots$157<vue6.DefineComponent<DropdownMenuItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4017
4035
|
select: (event: Event) => any;
|
|
4018
|
-
}, string,
|
|
4036
|
+
}, string, vue6.PublicProps, Readonly<DropdownMenuItemProps> & Readonly<{
|
|
4019
4037
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4020
|
-
}>, {}, {}, {}, {}, string,
|
|
4038
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4021
4039
|
default?: (props: {}) => any;
|
|
4022
4040
|
}>;
|
|
4023
4041
|
type __VLS_WithSlots$157<T, S> = T & {
|
|
@@ -4029,7 +4047,7 @@ type __VLS_WithSlots$157<T, S> = T & {
|
|
|
4029
4047
|
//#endregion
|
|
4030
4048
|
//#region src/DropdownMenu/DropdownMenuItemIndicator.vue.d.ts
|
|
4031
4049
|
interface DropdownMenuItemIndicatorProps extends MenuItemIndicatorProps {}
|
|
4032
|
-
declare const _default$126: __VLS_WithSlots$156<
|
|
4050
|
+
declare const _default$126: __VLS_WithSlots$156<vue6.DefineComponent<DropdownMenuItemIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DropdownMenuItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4033
4051
|
default?: (props: {}) => any;
|
|
4034
4052
|
}>;
|
|
4035
4053
|
type __VLS_WithSlots$156<T, S> = T & {
|
|
@@ -4041,7 +4059,7 @@ type __VLS_WithSlots$156<T, S> = T & {
|
|
|
4041
4059
|
//#endregion
|
|
4042
4060
|
//#region src/DropdownMenu/DropdownMenuLabel.vue.d.ts
|
|
4043
4061
|
interface DropdownMenuLabelProps extends MenuLabelProps {}
|
|
4044
|
-
declare const _default$127: __VLS_WithSlots$155<
|
|
4062
|
+
declare const _default$127: __VLS_WithSlots$155<vue6.DefineComponent<DropdownMenuLabelProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DropdownMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4045
4063
|
default?: (props: {}) => any;
|
|
4046
4064
|
}>;
|
|
4047
4065
|
type __VLS_WithSlots$155<T, S> = T & {
|
|
@@ -4053,7 +4071,7 @@ type __VLS_WithSlots$155<T, S> = T & {
|
|
|
4053
4071
|
//#endregion
|
|
4054
4072
|
//#region src/DropdownMenu/DropdownMenuPortal.vue.d.ts
|
|
4055
4073
|
interface DropdownMenuPortalProps extends MenuPortalProps {}
|
|
4056
|
-
declare const _default$128: __VLS_WithSlots$154<
|
|
4074
|
+
declare const _default$128: __VLS_WithSlots$154<vue6.DefineComponent<DropdownMenuPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DropdownMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4057
4075
|
default?: (props: {}) => any;
|
|
4058
4076
|
}>;
|
|
4059
4077
|
type __VLS_WithSlots$154<T, S> = T & {
|
|
@@ -4066,11 +4084,11 @@ type __VLS_WithSlots$154<T, S> = T & {
|
|
|
4066
4084
|
//#region src/DropdownMenu/DropdownMenuRadioGroup.vue.d.ts
|
|
4067
4085
|
type DropdownMenuRadioGroupEmits = MenuRadioGroupEmits;
|
|
4068
4086
|
interface DropdownMenuRadioGroupProps extends MenuRadioGroupProps {}
|
|
4069
|
-
declare const _default$129: __VLS_WithSlots$153<
|
|
4087
|
+
declare const _default$129: __VLS_WithSlots$153<vue6.DefineComponent<MenuRadioGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4070
4088
|
"update:modelValue": (payload: string) => any;
|
|
4071
|
-
}, string,
|
|
4089
|
+
}, string, vue6.PublicProps, Readonly<MenuRadioGroupProps> & Readonly<{
|
|
4072
4090
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
4073
|
-
}>, {}, {}, {}, {}, string,
|
|
4091
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4074
4092
|
default?: (props: {}) => any;
|
|
4075
4093
|
}>;
|
|
4076
4094
|
type __VLS_WithSlots$153<T, S> = T & {
|
|
@@ -4083,11 +4101,11 @@ type __VLS_WithSlots$153<T, S> = T & {
|
|
|
4083
4101
|
//#region src/DropdownMenu/DropdownMenuRadioItem.vue.d.ts
|
|
4084
4102
|
type DropdownMenuRadioItemEmits = MenuRadioItemEmits;
|
|
4085
4103
|
interface DropdownMenuRadioItemProps extends MenuRadioItemProps {}
|
|
4086
|
-
declare const _default$130: __VLS_WithSlots$152<
|
|
4104
|
+
declare const _default$130: __VLS_WithSlots$152<vue6.DefineComponent<DropdownMenuRadioItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4087
4105
|
select: (event: Event) => any;
|
|
4088
|
-
}, string,
|
|
4106
|
+
}, string, vue6.PublicProps, Readonly<DropdownMenuRadioItemProps> & Readonly<{
|
|
4089
4107
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4090
|
-
}>, {}, {}, {}, {}, string,
|
|
4108
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4091
4109
|
default?: (props: {}) => any;
|
|
4092
4110
|
}>;
|
|
4093
4111
|
type __VLS_WithSlots$152<T, S> = T & {
|
|
@@ -4114,14 +4132,14 @@ interface DropdownMenuRootContext {
|
|
|
4114
4132
|
dir: Ref<Direction>;
|
|
4115
4133
|
}
|
|
4116
4134
|
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<
|
|
4135
|
+
declare const _default$131: __VLS_WithSlots$151<vue6.DefineComponent<DropdownMenuRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4118
4136
|
"update:open": (payload: boolean) => any;
|
|
4119
|
-
}, string,
|
|
4137
|
+
}, string, vue6.PublicProps, Readonly<DropdownMenuRootProps> & Readonly<{
|
|
4120
4138
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
4121
4139
|
}>, {
|
|
4122
4140
|
open: boolean;
|
|
4123
4141
|
modal: boolean;
|
|
4124
|
-
}, {}, {}, {}, string,
|
|
4142
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4125
4143
|
default?: (props: {
|
|
4126
4144
|
/** Current open state */
|
|
4127
4145
|
open: boolean;
|
|
@@ -4136,7 +4154,7 @@ type __VLS_WithSlots$151<T, S> = T & {
|
|
|
4136
4154
|
//#endregion
|
|
4137
4155
|
//#region src/DropdownMenu/DropdownMenuSeparator.vue.d.ts
|
|
4138
4156
|
interface DropdownMenuSeparatorProps extends MenuSeparatorProps {}
|
|
4139
|
-
declare const _default$132: __VLS_WithSlots$150<
|
|
4157
|
+
declare const _default$132: __VLS_WithSlots$150<vue6.DefineComponent<DropdownMenuSeparatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DropdownMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4140
4158
|
default?: (props: {}) => any;
|
|
4141
4159
|
}>;
|
|
4142
4160
|
type __VLS_WithSlots$150<T, S> = T & {
|
|
@@ -4152,13 +4170,13 @@ interface DropdownMenuSubProps extends MenuSubProps {
|
|
|
4152
4170
|
/** The open state of the dropdown menu when it is initially rendered. Use when you do not need to control its open state. */
|
|
4153
4171
|
defaultOpen?: boolean;
|
|
4154
4172
|
}
|
|
4155
|
-
declare const _default$133: __VLS_WithSlots$149<
|
|
4173
|
+
declare const _default$133: __VLS_WithSlots$149<vue6.DefineComponent<DropdownMenuSubProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4156
4174
|
"update:open": (payload: boolean) => any;
|
|
4157
|
-
}, string,
|
|
4175
|
+
}, string, vue6.PublicProps, Readonly<DropdownMenuSubProps> & Readonly<{
|
|
4158
4176
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
4159
4177
|
}>, {
|
|
4160
4178
|
open: boolean;
|
|
4161
|
-
}, {}, {}, {}, string,
|
|
4179
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4162
4180
|
default?: (props: {
|
|
4163
4181
|
/** Current open state */
|
|
4164
4182
|
open: boolean;
|
|
@@ -4174,7 +4192,7 @@ type __VLS_WithSlots$149<T, S> = T & {
|
|
|
4174
4192
|
//#region src/DropdownMenu/DropdownMenuSubContent.vue.d.ts
|
|
4175
4193
|
type DropdownMenuSubContentEmits = MenuSubContentEmits;
|
|
4176
4194
|
interface DropdownMenuSubContentProps extends MenuSubContentProps {}
|
|
4177
|
-
declare const _default$134: __VLS_WithSlots$148<
|
|
4195
|
+
declare const _default$134: __VLS_WithSlots$148<vue6.DefineComponent<DropdownMenuSubContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4178
4196
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4179
4197
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4180
4198
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -4182,7 +4200,7 @@ declare const _default$134: __VLS_WithSlots$148<vue1606.DefineComponent<Dropdown
|
|
|
4182
4200
|
openAutoFocus: (event: Event) => any;
|
|
4183
4201
|
closeAutoFocus: (event: Event) => any;
|
|
4184
4202
|
entryFocus: (event: Event) => any;
|
|
4185
|
-
}, string,
|
|
4203
|
+
}, string, vue6.PublicProps, Readonly<DropdownMenuSubContentProps> & Readonly<{
|
|
4186
4204
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4187
4205
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4188
4206
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -4190,7 +4208,7 @@ declare const _default$134: __VLS_WithSlots$148<vue1606.DefineComponent<Dropdown
|
|
|
4190
4208
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
4191
4209
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
4192
4210
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
4193
|
-
}>, {}, {}, {}, {}, string,
|
|
4211
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4194
4212
|
default?: (props: {}) => any;
|
|
4195
4213
|
}>;
|
|
4196
4214
|
type __VLS_WithSlots$148<T, S> = T & {
|
|
@@ -4202,7 +4220,7 @@ type __VLS_WithSlots$148<T, S> = T & {
|
|
|
4202
4220
|
//#endregion
|
|
4203
4221
|
//#region src/DropdownMenu/DropdownMenuSubTrigger.vue.d.ts
|
|
4204
4222
|
interface DropdownMenuSubTriggerProps extends MenuSubTriggerProps {}
|
|
4205
|
-
declare const _default$135: __VLS_WithSlots$147<
|
|
4223
|
+
declare const _default$135: __VLS_WithSlots$147<vue6.DefineComponent<DropdownMenuSubTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DropdownMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4206
4224
|
default?: (props: {}) => any;
|
|
4207
4225
|
}>;
|
|
4208
4226
|
type __VLS_WithSlots$147<T, S> = T & {
|
|
@@ -4217,9 +4235,9 @@ interface DropdownMenuTriggerProps extends PrimitiveProps {
|
|
|
4217
4235
|
/** When `true`, prevents the user from interacting with item */
|
|
4218
4236
|
disabled?: boolean;
|
|
4219
4237
|
}
|
|
4220
|
-
declare const _default$136: __VLS_WithSlots$146<
|
|
4221
|
-
as: AsTag |
|
|
4222
|
-
}, {}, {}, {}, string,
|
|
4238
|
+
declare const _default$136: __VLS_WithSlots$146<vue6.DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {
|
|
4239
|
+
as: AsTag | vue6.Component;
|
|
4240
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4223
4241
|
default?: (props: {}) => any;
|
|
4224
4242
|
}>;
|
|
4225
4243
|
type __VLS_WithSlots$146<T, S> = T & {
|
|
@@ -4231,9 +4249,9 @@ type __VLS_WithSlots$146<T, S> = T & {
|
|
|
4231
4249
|
//#endregion
|
|
4232
4250
|
//#region src/Editable/EditableArea.vue.d.ts
|
|
4233
4251
|
interface EditableAreaProps extends PrimitiveProps {}
|
|
4234
|
-
declare const _default$137: __VLS_WithSlots$145<
|
|
4235
|
-
as: AsTag |
|
|
4236
|
-
}, {}, {}, {}, string,
|
|
4252
|
+
declare const _default$137: __VLS_WithSlots$145<vue6.DefineComponent<EditableAreaProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<EditableAreaProps> & Readonly<{}>, {
|
|
4253
|
+
as: AsTag | vue6.Component;
|
|
4254
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4237
4255
|
default?: (props: {}) => any;
|
|
4238
4256
|
}>;
|
|
4239
4257
|
type __VLS_WithSlots$145<T, S> = T & {
|
|
@@ -4245,9 +4263,9 @@ type __VLS_WithSlots$145<T, S> = T & {
|
|
|
4245
4263
|
//#endregion
|
|
4246
4264
|
//#region src/Editable/EditableCancelTrigger.vue.d.ts
|
|
4247
4265
|
interface EditableCancelTriggerProps extends PrimitiveProps {}
|
|
4248
|
-
declare const _default$138: __VLS_WithSlots$144<
|
|
4249
|
-
as: AsTag |
|
|
4250
|
-
}, {}, {}, {}, string,
|
|
4266
|
+
declare const _default$138: __VLS_WithSlots$144<vue6.DefineComponent<EditableCancelTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<EditableCancelTriggerProps> & Readonly<{}>, {
|
|
4267
|
+
as: AsTag | vue6.Component;
|
|
4268
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4251
4269
|
default?: (props: {}) => any;
|
|
4252
4270
|
}>;
|
|
4253
4271
|
type __VLS_WithSlots$144<T, S> = T & {
|
|
@@ -4259,9 +4277,9 @@ type __VLS_WithSlots$144<T, S> = T & {
|
|
|
4259
4277
|
//#endregion
|
|
4260
4278
|
//#region src/Editable/EditableEditTrigger.vue.d.ts
|
|
4261
4279
|
interface EditableEditTriggerProps extends PrimitiveProps {}
|
|
4262
|
-
declare const _default$139: __VLS_WithSlots$143<
|
|
4263
|
-
as: AsTag |
|
|
4264
|
-
}, {}, {}, {}, string,
|
|
4280
|
+
declare const _default$139: __VLS_WithSlots$143<vue6.DefineComponent<EditableEditTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<EditableEditTriggerProps> & Readonly<{}>, {
|
|
4281
|
+
as: AsTag | vue6.Component;
|
|
4282
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4265
4283
|
default?: (props: {}) => any;
|
|
4266
4284
|
}>;
|
|
4267
4285
|
type __VLS_WithSlots$143<T, S> = T & {
|
|
@@ -4273,9 +4291,9 @@ type __VLS_WithSlots$143<T, S> = T & {
|
|
|
4273
4291
|
//#endregion
|
|
4274
4292
|
//#region src/Editable/EditableInput.vue.d.ts
|
|
4275
4293
|
interface EditableInputProps extends PrimitiveProps {}
|
|
4276
|
-
declare const _default$140: __VLS_WithSlots$142<
|
|
4277
|
-
as: AsTag |
|
|
4278
|
-
}, {}, {}, {}, string,
|
|
4294
|
+
declare const _default$140: __VLS_WithSlots$142<vue6.DefineComponent<EditableInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<EditableInputProps> & Readonly<{}>, {
|
|
4295
|
+
as: AsTag | vue6.Component;
|
|
4296
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4279
4297
|
default?: (props: {}) => any;
|
|
4280
4298
|
}>;
|
|
4281
4299
|
type __VLS_WithSlots$142<T, S> = T & {
|
|
@@ -4287,9 +4305,9 @@ type __VLS_WithSlots$142<T, S> = T & {
|
|
|
4287
4305
|
//#endregion
|
|
4288
4306
|
//#region src/Editable/EditablePreview.vue.d.ts
|
|
4289
4307
|
interface EditablePreviewProps extends PrimitiveProps {}
|
|
4290
|
-
declare const _default$141: __VLS_WithSlots$141<
|
|
4291
|
-
as: AsTag |
|
|
4292
|
-
}, {}, {}, {}, string,
|
|
4308
|
+
declare const _default$141: __VLS_WithSlots$141<vue6.DefineComponent<EditablePreviewProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<EditablePreviewProps> & Readonly<{}>, {
|
|
4309
|
+
as: AsTag | vue6.Component;
|
|
4310
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4293
4311
|
default?: (props: {}) => any;
|
|
4294
4312
|
}>;
|
|
4295
4313
|
type __VLS_WithSlots$141<T, S> = T & {
|
|
@@ -4366,24 +4384,24 @@ type EditableRootEmits = {
|
|
|
4366
4384
|
'update:state': [state: 'edit' | 'submit' | 'cancel'];
|
|
4367
4385
|
};
|
|
4368
4386
|
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<
|
|
4387
|
+
declare const _default$142: __VLS_WithSlots$140<vue6.DefineComponent<EditableRootProps, {
|
|
4370
4388
|
/** Function to submit the value of the editable */
|
|
4371
4389
|
submit: () => void;
|
|
4372
4390
|
/** Function to cancel the value of the editable */
|
|
4373
4391
|
cancel: () => void;
|
|
4374
4392
|
/** Function to set the editable in edit mode */
|
|
4375
4393
|
edit: () => void;
|
|
4376
|
-
}, {}, {}, {},
|
|
4394
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4377
4395
|
"update:modelValue": (value: string) => any;
|
|
4378
4396
|
submit: (value: string | null | undefined) => any;
|
|
4379
4397
|
"update:state": (state: "cancel" | "submit" | "edit") => any;
|
|
4380
|
-
}, string,
|
|
4398
|
+
}, string, vue6.PublicProps, Readonly<EditableRootProps> & Readonly<{
|
|
4381
4399
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4382
4400
|
onSubmit?: ((value: string | null | undefined) => any) | undefined;
|
|
4383
4401
|
"onUpdate:state"?: ((state: "cancel" | "submit" | "edit") => any) | undefined;
|
|
4384
4402
|
}>, {
|
|
4403
|
+
as: AsTag | vue6.Component;
|
|
4385
4404
|
disabled: boolean;
|
|
4386
|
-
as: AsTag | vue1606.Component;
|
|
4387
4405
|
required: boolean;
|
|
4388
4406
|
placeholder: string | {
|
|
4389
4407
|
edit: string;
|
|
@@ -4393,7 +4411,7 @@ declare const _default$142: __VLS_WithSlots$140<vue1606.DefineComponent<Editable
|
|
|
4393
4411
|
selectOnFocus: boolean;
|
|
4394
4412
|
submitMode: SubmitMode;
|
|
4395
4413
|
autoResize: boolean;
|
|
4396
|
-
}, {}, {}, {}, string,
|
|
4414
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4397
4415
|
default?: (props: {
|
|
4398
4416
|
/** Whether the editable field is in edit mode */
|
|
4399
4417
|
isEditing: boolean;
|
|
@@ -4418,9 +4436,9 @@ type __VLS_WithSlots$140<T, S> = T & {
|
|
|
4418
4436
|
//#endregion
|
|
4419
4437
|
//#region src/Editable/EditableSubmitTrigger.vue.d.ts
|
|
4420
4438
|
interface EditableSubmitTriggerProps extends PrimitiveProps {}
|
|
4421
|
-
declare const _default$143: __VLS_WithSlots$139<
|
|
4422
|
-
as: AsTag |
|
|
4423
|
-
}, {}, {}, {}, string,
|
|
4439
|
+
declare const _default$143: __VLS_WithSlots$139<vue6.DefineComponent<EditableSubmitTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<EditableSubmitTriggerProps> & Readonly<{}>, {
|
|
4440
|
+
as: AsTag | vue6.Component;
|
|
4441
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4424
4442
|
default?: (props: {}) => any;
|
|
4425
4443
|
}>;
|
|
4426
4444
|
type __VLS_WithSlots$139<T, S> = T & {
|
|
@@ -4432,11 +4450,11 @@ type __VLS_WithSlots$139<T, S> = T & {
|
|
|
4432
4450
|
//#endregion
|
|
4433
4451
|
//#region src/HoverCard/HoverCardArrow.vue.d.ts
|
|
4434
4452
|
interface HoverCardArrowProps extends PopperArrowProps {}
|
|
4435
|
-
declare const _default$145: __VLS_WithSlots$138<
|
|
4436
|
-
as: AsTag |
|
|
4453
|
+
declare const _default$145: __VLS_WithSlots$138<vue6.DefineComponent<HoverCardArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<HoverCardArrowProps> & Readonly<{}>, {
|
|
4454
|
+
as: AsTag | vue6.Component;
|
|
4437
4455
|
width: number;
|
|
4438
4456
|
height: number;
|
|
4439
|
-
}, {}, {}, {}, string,
|
|
4457
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4440
4458
|
default?: (props: {}) => any;
|
|
4441
4459
|
}>;
|
|
4442
4460
|
type __VLS_WithSlots$138<T, S> = T & {
|
|
@@ -4457,17 +4475,17 @@ interface HoverCardContentProps extends HoverCardContentImplProps {
|
|
|
4457
4475
|
*/
|
|
4458
4476
|
forceMount?: boolean;
|
|
4459
4477
|
}
|
|
4460
|
-
declare const _default$146: __VLS_WithSlots$137<
|
|
4478
|
+
declare const _default$146: __VLS_WithSlots$137<vue6.DefineComponent<HoverCardContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4461
4479
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4462
4480
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4463
4481
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4464
4482
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4465
|
-
}, string,
|
|
4483
|
+
}, string, vue6.PublicProps, Readonly<HoverCardContentProps> & Readonly<{
|
|
4466
4484
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4467
4485
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4468
4486
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
4469
4487
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
4470
|
-
}>, {}, {}, {}, {}, string,
|
|
4488
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4471
4489
|
default?: (props: {}) => any;
|
|
4472
4490
|
}>;
|
|
4473
4491
|
type __VLS_WithSlots$137<T, S> = T & {
|
|
@@ -4479,7 +4497,7 @@ type __VLS_WithSlots$137<T, S> = T & {
|
|
|
4479
4497
|
//#endregion
|
|
4480
4498
|
//#region src/HoverCard/HoverCardPortal.vue.d.ts
|
|
4481
4499
|
interface HoverCardPortalProps extends TeleportProps {}
|
|
4482
|
-
declare const _default$147: __VLS_WithSlots$136<
|
|
4500
|
+
declare const _default$147: __VLS_WithSlots$136<vue6.DefineComponent<HoverCardPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<HoverCardPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4483
4501
|
default?: (props: {}) => any;
|
|
4484
4502
|
}>;
|
|
4485
4503
|
type __VLS_WithSlots$136<T, S> = T & {
|
|
@@ -4516,16 +4534,16 @@ interface HoverCardRootContext {
|
|
|
4516
4534
|
triggerElement: Ref<HTMLElement | undefined>;
|
|
4517
4535
|
}
|
|
4518
4536
|
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<
|
|
4537
|
+
declare const _default$148: __VLS_WithSlots$135<vue6.DefineComponent<HoverCardRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4520
4538
|
"update:open": (value: boolean) => any;
|
|
4521
|
-
}, string,
|
|
4539
|
+
}, string, vue6.PublicProps, Readonly<HoverCardRootProps> & Readonly<{
|
|
4522
4540
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
4523
4541
|
}>, {
|
|
4524
4542
|
open: boolean;
|
|
4525
4543
|
defaultOpen: boolean;
|
|
4526
4544
|
openDelay: number;
|
|
4527
4545
|
closeDelay: number;
|
|
4528
|
-
}, {}, {}, {}, string,
|
|
4546
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4529
4547
|
default?: (props: {
|
|
4530
4548
|
/** Current open state */
|
|
4531
4549
|
open: boolean;
|
|
@@ -4540,9 +4558,9 @@ type __VLS_WithSlots$135<T, S> = T & {
|
|
|
4540
4558
|
//#endregion
|
|
4541
4559
|
//#region src/HoverCard/HoverCardTrigger.vue.d.ts
|
|
4542
4560
|
interface HoverCardTriggerProps extends PopperAnchorProps {}
|
|
4543
|
-
declare const _default$149: __VLS_WithSlots$134<
|
|
4544
|
-
as: AsTag |
|
|
4545
|
-
}, {}, {}, {}, string,
|
|
4561
|
+
declare const _default$149: __VLS_WithSlots$134<vue6.DefineComponent<HoverCardTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<HoverCardTriggerProps> & Readonly<{}>, {
|
|
4562
|
+
as: AsTag | vue6.Component;
|
|
4563
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4546
4564
|
default?: (props: {}) => any;
|
|
4547
4565
|
}>;
|
|
4548
4566
|
type __VLS_WithSlots$134<T, S> = T & {
|
|
@@ -4557,9 +4575,9 @@ interface LabelProps extends PrimitiveProps {
|
|
|
4557
4575
|
/** The id of the element the label is associated with. */
|
|
4558
4576
|
for?: string;
|
|
4559
4577
|
}
|
|
4560
|
-
declare const _default$150: __VLS_WithSlots$133<
|
|
4561
|
-
as: AsTag |
|
|
4562
|
-
}, {}, {}, {}, string,
|
|
4578
|
+
declare const _default$150: __VLS_WithSlots$133<vue6.DefineComponent<LabelProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
4579
|
+
as: AsTag | vue6.Component;
|
|
4580
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4563
4581
|
default?: (props: {}) => any;
|
|
4564
4582
|
}>;
|
|
4565
4583
|
type __VLS_WithSlots$133<T, S> = T & {
|
|
@@ -4571,11 +4589,11 @@ type __VLS_WithSlots$133<T, S> = T & {
|
|
|
4571
4589
|
//#endregion
|
|
4572
4590
|
//#region src/Menubar/MenubarArrow.vue.d.ts
|
|
4573
4591
|
interface MenubarArrowProps extends MenuArrowProps {}
|
|
4574
|
-
declare const _default$159: __VLS_WithSlots$132<
|
|
4575
|
-
as: AsTag |
|
|
4592
|
+
declare const _default$159: __VLS_WithSlots$132<vue6.DefineComponent<MenubarArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<MenubarArrowProps> & Readonly<{}>, {
|
|
4593
|
+
as: AsTag | vue6.Component;
|
|
4576
4594
|
width: number;
|
|
4577
4595
|
height: number;
|
|
4578
|
-
}, {}, {}, {}, string,
|
|
4596
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4579
4597
|
default?: (props: {}) => any;
|
|
4580
4598
|
}>;
|
|
4581
4599
|
type __VLS_WithSlots$132<T, S> = T & {
|
|
@@ -4588,13 +4606,13 @@ type __VLS_WithSlots$132<T, S> = T & {
|
|
|
4588
4606
|
//#region src/Menubar/MenubarCheckboxItem.vue.d.ts
|
|
4589
4607
|
type MenubarCheckboxItemEmits = MenuCheckboxItemEmits;
|
|
4590
4608
|
interface MenubarCheckboxItemProps extends MenuCheckboxItemProps {}
|
|
4591
|
-
declare const _default$160: __VLS_WithSlots$131<
|
|
4592
|
-
"update:modelValue": (payload: boolean) => any;
|
|
4609
|
+
declare const _default$160: __VLS_WithSlots$131<vue6.DefineComponent<MenubarCheckboxItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4593
4610
|
select: (event: Event) => any;
|
|
4594
|
-
|
|
4595
|
-
|
|
4611
|
+
"update:modelValue": (payload: boolean) => any;
|
|
4612
|
+
}, string, vue6.PublicProps, Readonly<MenubarCheckboxItemProps> & Readonly<{
|
|
4596
4613
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4597
|
-
|
|
4614
|
+
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
4615
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4598
4616
|
default?: (props: {}) => any;
|
|
4599
4617
|
}>;
|
|
4600
4618
|
type __VLS_WithSlots$131<T, S> = T & {
|
|
@@ -4606,13 +4624,13 @@ type __VLS_WithSlots$131<T, S> = T & {
|
|
|
4606
4624
|
//#endregion
|
|
4607
4625
|
//#region src/Menubar/MenubarContent.vue.d.ts
|
|
4608
4626
|
interface MenubarContentProps extends MenuContentProps {}
|
|
4609
|
-
declare const _default$161: __VLS_WithSlots$130<
|
|
4627
|
+
declare const _default$161: __VLS_WithSlots$130<vue6.DefineComponent<MenubarContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4610
4628
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4611
4629
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4612
4630
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4613
4631
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4614
4632
|
closeAutoFocus: (event: Event) => any;
|
|
4615
|
-
}, string,
|
|
4633
|
+
}, string, vue6.PublicProps, Readonly<MenubarContentProps> & Readonly<{
|
|
4616
4634
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4617
4635
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4618
4636
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -4620,7 +4638,7 @@ declare const _default$161: __VLS_WithSlots$130<vue1606.DefineComponent<MenubarC
|
|
|
4620
4638
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
4621
4639
|
}>, {
|
|
4622
4640
|
align: Align;
|
|
4623
|
-
}, {}, {}, {}, string,
|
|
4641
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4624
4642
|
default?: (props: {}) => any;
|
|
4625
4643
|
}>;
|
|
4626
4644
|
type __VLS_WithSlots$130<T, S> = T & {
|
|
@@ -4632,7 +4650,7 @@ type __VLS_WithSlots$130<T, S> = T & {
|
|
|
4632
4650
|
//#endregion
|
|
4633
4651
|
//#region src/Menubar/MenubarGroup.vue.d.ts
|
|
4634
4652
|
interface MenubarGroupProps extends MenuGroupProps {}
|
|
4635
|
-
declare const _default$162: __VLS_WithSlots$129<
|
|
4653
|
+
declare const _default$162: __VLS_WithSlots$129<vue6.DefineComponent<MenubarGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<MenubarGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4636
4654
|
default?: (props: {}) => any;
|
|
4637
4655
|
}>;
|
|
4638
4656
|
type __VLS_WithSlots$129<T, S> = T & {
|
|
@@ -4645,11 +4663,11 @@ type __VLS_WithSlots$129<T, S> = T & {
|
|
|
4645
4663
|
//#region src/Menubar/MenubarItem.vue.d.ts
|
|
4646
4664
|
type MenubarItemEmits = MenuItemEmits;
|
|
4647
4665
|
interface MenubarItemProps extends MenuItemProps {}
|
|
4648
|
-
declare const _default$163: __VLS_WithSlots$128<
|
|
4666
|
+
declare const _default$163: __VLS_WithSlots$128<vue6.DefineComponent<MenubarItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4649
4667
|
select: (event: Event) => any;
|
|
4650
|
-
}, string,
|
|
4668
|
+
}, string, vue6.PublicProps, Readonly<MenubarItemProps> & Readonly<{
|
|
4651
4669
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4652
|
-
}>, {}, {}, {}, {}, string,
|
|
4670
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4653
4671
|
default?: (props: {}) => any;
|
|
4654
4672
|
}>;
|
|
4655
4673
|
type __VLS_WithSlots$128<T, S> = T & {
|
|
@@ -4661,7 +4679,7 @@ type __VLS_WithSlots$128<T, S> = T & {
|
|
|
4661
4679
|
//#endregion
|
|
4662
4680
|
//#region src/Menubar/MenubarItemIndicator.vue.d.ts
|
|
4663
4681
|
interface MenubarItemIndicatorProps extends MenuItemIndicatorProps {}
|
|
4664
|
-
declare const _default$164: __VLS_WithSlots$127<
|
|
4682
|
+
declare const _default$164: __VLS_WithSlots$127<vue6.DefineComponent<MenubarItemIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<MenubarItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4665
4683
|
default?: (props: {}) => any;
|
|
4666
4684
|
}>;
|
|
4667
4685
|
type __VLS_WithSlots$127<T, S> = T & {
|
|
@@ -4673,7 +4691,7 @@ type __VLS_WithSlots$127<T, S> = T & {
|
|
|
4673
4691
|
//#endregion
|
|
4674
4692
|
//#region src/Menubar/MenubarLabel.vue.d.ts
|
|
4675
4693
|
interface MenubarLabelProps extends MenuLabelProps {}
|
|
4676
|
-
declare const _default$165: __VLS_WithSlots$126<
|
|
4694
|
+
declare const _default$165: __VLS_WithSlots$126<vue6.DefineComponent<MenubarLabelProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<MenubarLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4677
4695
|
default?: (props: {}) => any;
|
|
4678
4696
|
}>;
|
|
4679
4697
|
type __VLS_WithSlots$126<T, S> = T & {
|
|
@@ -4700,7 +4718,7 @@ type MenubarMenuContext = {
|
|
|
4700
4718
|
wasKeyboardTriggerOpenRef: Ref<boolean>;
|
|
4701
4719
|
};
|
|
4702
4720
|
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<
|
|
4721
|
+
declare const _default$166: __VLS_WithSlots$125<vue6.DefineComponent<MenubarMenuProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<MenubarMenuProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4704
4722
|
default?: (props: {}) => any;
|
|
4705
4723
|
}>;
|
|
4706
4724
|
type __VLS_WithSlots$125<T, S> = T & {
|
|
@@ -4712,7 +4730,7 @@ type __VLS_WithSlots$125<T, S> = T & {
|
|
|
4712
4730
|
//#endregion
|
|
4713
4731
|
//#region src/Menubar/MenubarPortal.vue.d.ts
|
|
4714
4732
|
interface MenubarPortalProps extends MenuPortalProps {}
|
|
4715
|
-
declare const _default$167: __VLS_WithSlots$124<
|
|
4733
|
+
declare const _default$167: __VLS_WithSlots$124<vue6.DefineComponent<MenubarPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<MenubarPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4716
4734
|
default?: (props: {}) => any;
|
|
4717
4735
|
}>;
|
|
4718
4736
|
type __VLS_WithSlots$124<T, S> = T & {
|
|
@@ -4725,11 +4743,11 @@ type __VLS_WithSlots$124<T, S> = T & {
|
|
|
4725
4743
|
//#region src/Menubar/MenubarRadioGroup.vue.d.ts
|
|
4726
4744
|
type MenubarRadioGroupEmits = MenuRadioGroupEmits;
|
|
4727
4745
|
interface MenubarRadioGroupProps extends MenuRadioGroupProps {}
|
|
4728
|
-
declare const _default$168: __VLS_WithSlots$123<
|
|
4746
|
+
declare const _default$168: __VLS_WithSlots$123<vue6.DefineComponent<MenubarRadioGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4729
4747
|
"update:modelValue": (payload: string) => any;
|
|
4730
|
-
}, string,
|
|
4748
|
+
}, string, vue6.PublicProps, Readonly<MenubarRadioGroupProps> & Readonly<{
|
|
4731
4749
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
4732
|
-
}>, {}, {}, {}, {}, string,
|
|
4750
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4733
4751
|
default?: (props: {}) => any;
|
|
4734
4752
|
}>;
|
|
4735
4753
|
type __VLS_WithSlots$123<T, S> = T & {
|
|
@@ -4742,11 +4760,11 @@ type __VLS_WithSlots$123<T, S> = T & {
|
|
|
4742
4760
|
//#region src/Menubar/MenubarRadioItem.vue.d.ts
|
|
4743
4761
|
type MenubarRadioItemEmits = MenuRadioItemEmits;
|
|
4744
4762
|
interface MenubarRadioItemProps extends MenuRadioItemProps {}
|
|
4745
|
-
declare const _default$169: __VLS_WithSlots$122<
|
|
4763
|
+
declare const _default$169: __VLS_WithSlots$122<vue6.DefineComponent<MenuRadioItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4746
4764
|
select: (event: Event) => any;
|
|
4747
|
-
}, string,
|
|
4765
|
+
}, string, vue6.PublicProps, Readonly<MenuRadioItemProps> & Readonly<{
|
|
4748
4766
|
onSelect?: ((event: Event) => any) | undefined;
|
|
4749
|
-
}>, {}, {}, {}, {}, string,
|
|
4767
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4750
4768
|
default?: (props: {}) => any;
|
|
4751
4769
|
}>;
|
|
4752
4770
|
type __VLS_WithSlots$122<T, S> = T & {
|
|
@@ -4784,13 +4802,13 @@ interface MenubarRootContext {
|
|
|
4784
4802
|
onMenuToggle: (value: string) => void;
|
|
4785
4803
|
}
|
|
4786
4804
|
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<
|
|
4805
|
+
declare const _default$170: __VLS_WithSlots$121<vue6.DefineComponent<MenubarRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4788
4806
|
"update:modelValue": (value: boolean) => any;
|
|
4789
|
-
}, string,
|
|
4807
|
+
}, string, vue6.PublicProps, Readonly<MenubarRootProps> & Readonly<{
|
|
4790
4808
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
4791
4809
|
}>, {
|
|
4792
4810
|
loop: boolean;
|
|
4793
|
-
}, {}, {}, {}, string,
|
|
4811
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4794
4812
|
default?: (props: {
|
|
4795
4813
|
/** Current input values */
|
|
4796
4814
|
modelValue: string;
|
|
@@ -4805,7 +4823,7 @@ type __VLS_WithSlots$121<T, S> = T & {
|
|
|
4805
4823
|
//#endregion
|
|
4806
4824
|
//#region src/Menubar/MenubarSeparator.vue.d.ts
|
|
4807
4825
|
interface MenubarSeparatorProps extends MenuSeparatorProps {}
|
|
4808
|
-
declare const _default$171: __VLS_WithSlots$120<
|
|
4826
|
+
declare const _default$171: __VLS_WithSlots$120<vue6.DefineComponent<MenubarSeparatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<MenubarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4809
4827
|
default?: (props: {}) => any;
|
|
4810
4828
|
}>;
|
|
4811
4829
|
type __VLS_WithSlots$120<T, S> = T & {
|
|
@@ -4821,13 +4839,13 @@ interface MenubarSubProps extends MenuSubProps {
|
|
|
4821
4839
|
/** The open state of the submenu when it is initially rendered. Use when you do not need to control its open state. */
|
|
4822
4840
|
defaultOpen?: boolean;
|
|
4823
4841
|
}
|
|
4824
|
-
declare const _default$172: __VLS_WithSlots$119<
|
|
4842
|
+
declare const _default$172: __VLS_WithSlots$119<vue6.DefineComponent<MenubarSubProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4825
4843
|
"update:open": (payload: boolean) => any;
|
|
4826
|
-
}, string,
|
|
4844
|
+
}, string, vue6.PublicProps, Readonly<MenubarSubProps> & Readonly<{
|
|
4827
4845
|
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
4828
4846
|
}>, {
|
|
4829
4847
|
open: boolean;
|
|
4830
|
-
}, {}, {}, {}, string,
|
|
4848
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4831
4849
|
default?: (props: {
|
|
4832
4850
|
/** Current open state */
|
|
4833
4851
|
open: boolean;
|
|
@@ -4843,7 +4861,7 @@ type __VLS_WithSlots$119<T, S> = T & {
|
|
|
4843
4861
|
//#region src/Menubar/MenubarSubContent.vue.d.ts
|
|
4844
4862
|
type MenubarSubContentEmits = MenuSubContentEmits;
|
|
4845
4863
|
interface MenubarSubContentProps extends MenuSubContentProps {}
|
|
4846
|
-
declare const _default$173: __VLS_WithSlots$118<
|
|
4864
|
+
declare const _default$173: __VLS_WithSlots$118<vue6.DefineComponent<MenubarSubContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4847
4865
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4848
4866
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4849
4867
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -4851,7 +4869,7 @@ declare const _default$173: __VLS_WithSlots$118<vue1606.DefineComponent<MenubarS
|
|
|
4851
4869
|
openAutoFocus: (event: Event) => any;
|
|
4852
4870
|
closeAutoFocus: (event: Event) => any;
|
|
4853
4871
|
entryFocus: (event: Event) => any;
|
|
4854
|
-
}, string,
|
|
4872
|
+
}, string, vue6.PublicProps, Readonly<MenubarSubContentProps> & Readonly<{
|
|
4855
4873
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4856
4874
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4857
4875
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -4859,7 +4877,7 @@ declare const _default$173: __VLS_WithSlots$118<vue1606.DefineComponent<MenubarS
|
|
|
4859
4877
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
4860
4878
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
4861
4879
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
4862
|
-
}>, {}, {}, {}, {}, string,
|
|
4880
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4863
4881
|
default?: (props: {}) => any;
|
|
4864
4882
|
}>;
|
|
4865
4883
|
type __VLS_WithSlots$118<T, S> = T & {
|
|
@@ -4871,7 +4889,7 @@ type __VLS_WithSlots$118<T, S> = T & {
|
|
|
4871
4889
|
//#endregion
|
|
4872
4890
|
//#region src/Menubar/MenubarSubTrigger.vue.d.ts
|
|
4873
4891
|
interface MenubarSubTriggerProps extends MenuSubTriggerProps {}
|
|
4874
|
-
declare const _default$174: __VLS_WithSlots$117<
|
|
4892
|
+
declare const _default$174: __VLS_WithSlots$117<vue6.DefineComponent<MenubarSubTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<MenubarSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4875
4893
|
default?: (props: {}) => any;
|
|
4876
4894
|
}>;
|
|
4877
4895
|
type __VLS_WithSlots$117<T, S> = T & {
|
|
@@ -4886,9 +4904,9 @@ interface MenubarTriggerProps extends PrimitiveProps {
|
|
|
4886
4904
|
/** When `true`, prevents the user from interacting with item */
|
|
4887
4905
|
disabled?: boolean;
|
|
4888
4906
|
}
|
|
4889
|
-
declare const _default$175: __VLS_WithSlots$116<
|
|
4890
|
-
as: AsTag |
|
|
4891
|
-
}, {}, {}, {}, string,
|
|
4907
|
+
declare const _default$175: __VLS_WithSlots$116<vue6.DefineComponent<MenubarTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<MenubarTriggerProps> & Readonly<{}>, {
|
|
4908
|
+
as: AsTag | vue6.Component;
|
|
4909
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4892
4910
|
default?: (props: {}) => any;
|
|
4893
4911
|
}>;
|
|
4894
4912
|
type __VLS_WithSlots$116<T, S> = T & {
|
|
@@ -4911,17 +4929,17 @@ interface NavigationMenuContentProps extends NavigationMenuContentImplProps {
|
|
|
4911
4929
|
*/
|
|
4912
4930
|
forceMount?: boolean;
|
|
4913
4931
|
}
|
|
4914
|
-
declare const _default$176: __VLS_WithSlots$115<
|
|
4932
|
+
declare const _default$176: __VLS_WithSlots$115<vue6.DefineComponent<NavigationMenuContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
4915
4933
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4916
4934
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4917
4935
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4918
4936
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4919
|
-
}, string,
|
|
4937
|
+
}, string, vue6.PublicProps, Readonly<NavigationMenuContentProps> & Readonly<{
|
|
4920
4938
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4921
4939
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4922
4940
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
4923
4941
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
4924
|
-
}>, {}, {}, {}, {}, string,
|
|
4942
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4925
4943
|
default?: (props: {}) => any;
|
|
4926
4944
|
}>;
|
|
4927
4945
|
type __VLS_WithSlots$115<T, S> = T & {
|
|
@@ -4939,7 +4957,7 @@ interface NavigationMenuIndicatorProps extends PrimitiveProps {
|
|
|
4939
4957
|
*/
|
|
4940
4958
|
forceMount?: boolean;
|
|
4941
4959
|
}
|
|
4942
|
-
declare const _default$177: __VLS_WithSlots$114<
|
|
4960
|
+
declare const _default$177: __VLS_WithSlots$114<vue6.DefineComponent<NavigationMenuIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<NavigationMenuIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4943
4961
|
default?: (props: {}) => any;
|
|
4944
4962
|
}>;
|
|
4945
4963
|
type __VLS_WithSlots$114<T, S> = T & {
|
|
@@ -4970,9 +4988,9 @@ type NavigationMenuItemContext = {
|
|
|
4970
4988
|
onRootContentClose: () => void;
|
|
4971
4989
|
};
|
|
4972
4990
|
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,
|
|
4991
|
+
declare const _default$178: __VLS_WithSlots$113<vue6.DefineComponent<NavigationMenuItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<NavigationMenuItemProps> & Readonly<{}>, {
|
|
4992
|
+
as: AsTag | vue6.Component;
|
|
4993
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
4976
4994
|
default?: (props: {}) => any;
|
|
4977
4995
|
}>;
|
|
4978
4996
|
type __VLS_WithSlots$113<T, S> = T & {
|
|
@@ -4997,17 +5015,17 @@ interface NavigationMenuLinkProps extends PrimitiveProps {
|
|
|
4997
5015
|
/** Used to identify the link as the currently active page. */
|
|
4998
5016
|
active?: boolean;
|
|
4999
5017
|
}
|
|
5000
|
-
declare const _default$179: __VLS_WithSlots$112<
|
|
5018
|
+
declare const _default$179: __VLS_WithSlots$112<vue6.DefineComponent<NavigationMenuLinkProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5001
5019
|
select: (payload: CustomEvent<{
|
|
5002
5020
|
originalEvent: Event;
|
|
5003
5021
|
}>) => any;
|
|
5004
|
-
}, string,
|
|
5022
|
+
}, string, vue6.PublicProps, Readonly<NavigationMenuLinkProps> & Readonly<{
|
|
5005
5023
|
onSelect?: ((payload: CustomEvent<{
|
|
5006
5024
|
originalEvent: Event;
|
|
5007
5025
|
}>) => any) | undefined;
|
|
5008
5026
|
}>, {
|
|
5009
|
-
as: AsTag |
|
|
5010
|
-
}, {}, {}, {}, string,
|
|
5027
|
+
as: AsTag | vue6.Component;
|
|
5028
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5011
5029
|
default?: (props: {}) => any;
|
|
5012
5030
|
}>;
|
|
5013
5031
|
type __VLS_WithSlots$112<T, S> = T & {
|
|
@@ -5019,9 +5037,9 @@ type __VLS_WithSlots$112<T, S> = T & {
|
|
|
5019
5037
|
//#endregion
|
|
5020
5038
|
//#region src/NavigationMenu/NavigationMenuList.vue.d.ts
|
|
5021
5039
|
interface NavigationMenuListProps extends PrimitiveProps {}
|
|
5022
|
-
declare const _default$180: __VLS_WithSlots$111<
|
|
5023
|
-
as: AsTag |
|
|
5024
|
-
}, {}, {}, {}, string,
|
|
5040
|
+
declare const _default$180: __VLS_WithSlots$111<vue6.DefineComponent<NavigationMenuListProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<NavigationMenuListProps> & Readonly<{}>, {
|
|
5041
|
+
as: AsTag | vue6.Component;
|
|
5042
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5025
5043
|
default?: (props: {}) => any;
|
|
5026
5044
|
}>;
|
|
5027
5045
|
type __VLS_WithSlots$111<T, S> = T & {
|
|
@@ -5113,20 +5131,20 @@ interface NavigationMenuContext {
|
|
|
5113
5131
|
onItemDismiss: () => void;
|
|
5114
5132
|
}
|
|
5115
5133
|
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<
|
|
5134
|
+
declare const _default$181: __VLS_WithSlots$110<vue6.DefineComponent<NavigationMenuRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5117
5135
|
"update:modelValue": (value: string) => any;
|
|
5118
|
-
}, string,
|
|
5136
|
+
}, string, vue6.PublicProps, Readonly<NavigationMenuRootProps> & Readonly<{
|
|
5119
5137
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5120
5138
|
}>, {
|
|
5121
|
-
|
|
5122
|
-
as: AsTag | vue1606.Component;
|
|
5123
|
-
orientation: Orientation;
|
|
5139
|
+
as: AsTag | vue6.Component;
|
|
5124
5140
|
unmountOnHide: boolean;
|
|
5141
|
+
orientation: Orientation;
|
|
5142
|
+
modelValue: string;
|
|
5125
5143
|
delayDuration: number;
|
|
5126
5144
|
skipDelayDuration: number;
|
|
5127
5145
|
disableClickTrigger: boolean;
|
|
5128
5146
|
disableHoverTrigger: boolean;
|
|
5129
|
-
}, {}, {}, {}, string,
|
|
5147
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5130
5148
|
default?: (props: {
|
|
5131
5149
|
/** Current input values */
|
|
5132
5150
|
modelValue: string;
|
|
@@ -5156,13 +5174,13 @@ interface NavigationMenuSubProps extends PrimitiveProps {
|
|
|
5156
5174
|
/** The orientation of the menu. */
|
|
5157
5175
|
orientation?: Orientation;
|
|
5158
5176
|
}
|
|
5159
|
-
declare const _default$182: __VLS_WithSlots$109<
|
|
5177
|
+
declare const _default$182: __VLS_WithSlots$109<vue6.DefineComponent<NavigationMenuSubProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5160
5178
|
"update:modelValue": (value: string) => any;
|
|
5161
|
-
}, string,
|
|
5179
|
+
}, string, vue6.PublicProps, Readonly<NavigationMenuSubProps> & Readonly<{
|
|
5162
5180
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5163
5181
|
}>, {
|
|
5164
5182
|
orientation: Orientation;
|
|
5165
|
-
}, {}, {}, {}, string,
|
|
5183
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5166
5184
|
default?: (props: {
|
|
5167
5185
|
/** Current input values */
|
|
5168
5186
|
modelValue: string;
|
|
@@ -5180,9 +5198,9 @@ interface NavigationMenuTriggerProps extends PrimitiveProps {
|
|
|
5180
5198
|
/** When `true`, prevents the user from interacting with item */
|
|
5181
5199
|
disabled?: boolean;
|
|
5182
5200
|
}
|
|
5183
|
-
declare const _default$183: __VLS_WithSlots$108<
|
|
5184
|
-
as: AsTag |
|
|
5185
|
-
}, {}, {}, {}, string,
|
|
5201
|
+
declare const _default$183: __VLS_WithSlots$108<vue6.DefineComponent<NavigationMenuTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<NavigationMenuTriggerProps> & Readonly<{}>, {
|
|
5202
|
+
as: AsTag | vue6.Component;
|
|
5203
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5186
5204
|
default?: (props: {}) => any;
|
|
5187
5205
|
}>;
|
|
5188
5206
|
type __VLS_WithSlots$108<T, S> = T & {
|
|
@@ -5205,9 +5223,9 @@ interface NavigationMenuViewportProps extends PrimitiveProps {
|
|
|
5205
5223
|
*/
|
|
5206
5224
|
align?: 'start' | 'center' | 'end';
|
|
5207
5225
|
}
|
|
5208
|
-
declare const _default$184: __VLS_WithSlots$107<
|
|
5226
|
+
declare const _default$184: __VLS_WithSlots$107<vue6.DefineComponent<NavigationMenuViewportProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<NavigationMenuViewportProps> & Readonly<{}>, {
|
|
5209
5227
|
align: "start" | "center" | "end";
|
|
5210
|
-
}, {}, {}, {}, string,
|
|
5228
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5211
5229
|
default?: (props: {}) => any;
|
|
5212
5230
|
}>;
|
|
5213
5231
|
type __VLS_WithSlots$107<T, S> = T & {
|
|
@@ -5221,9 +5239,9 @@ type __VLS_WithSlots$107<T, S> = T & {
|
|
|
5221
5239
|
interface NumberFieldDecrementProps extends PrimitiveProps {
|
|
5222
5240
|
disabled?: boolean;
|
|
5223
5241
|
}
|
|
5224
|
-
declare const _default$185: __VLS_WithSlots$106<
|
|
5225
|
-
as: AsTag |
|
|
5226
|
-
}, {}, {}, {}, string,
|
|
5242
|
+
declare const _default$185: __VLS_WithSlots$106<vue6.DefineComponent<NumberFieldDecrementProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<NumberFieldDecrementProps> & Readonly<{}>, {
|
|
5243
|
+
as: AsTag | vue6.Component;
|
|
5244
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5227
5245
|
default?: (props: {}) => any;
|
|
5228
5246
|
}>;
|
|
5229
5247
|
type __VLS_WithSlots$106<T, S> = T & {
|
|
@@ -5237,9 +5255,9 @@ type __VLS_WithSlots$106<T, S> = T & {
|
|
|
5237
5255
|
interface NumberFieldIncrementProps extends PrimitiveProps {
|
|
5238
5256
|
disabled?: boolean;
|
|
5239
5257
|
}
|
|
5240
|
-
declare const _default$186: __VLS_WithSlots$105<
|
|
5241
|
-
as: AsTag |
|
|
5242
|
-
}, {}, {}, {}, string,
|
|
5258
|
+
declare const _default$186: __VLS_WithSlots$105<vue6.DefineComponent<NumberFieldIncrementProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<NumberFieldIncrementProps> & Readonly<{}>, {
|
|
5259
|
+
as: AsTag | vue6.Component;
|
|
5260
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5243
5261
|
default?: (props: {}) => any;
|
|
5244
5262
|
}>;
|
|
5245
5263
|
type __VLS_WithSlots$105<T, S> = T & {
|
|
@@ -5251,9 +5269,9 @@ type __VLS_WithSlots$105<T, S> = T & {
|
|
|
5251
5269
|
//#endregion
|
|
5252
5270
|
//#region src/NumberField/NumberFieldInput.vue.d.ts
|
|
5253
5271
|
interface NumberFieldInputProps extends PrimitiveProps {}
|
|
5254
|
-
declare const _default$187: __VLS_WithSlots$104<
|
|
5255
|
-
as: AsTag |
|
|
5256
|
-
}, {}, {}, {}, string,
|
|
5272
|
+
declare const _default$187: __VLS_WithSlots$104<vue6.DefineComponent<NumberFieldInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<NumberFieldInputProps> & Readonly<{}>, {
|
|
5273
|
+
as: AsTag | vue6.Component;
|
|
5274
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5257
5275
|
default?: (props: {}) => any;
|
|
5258
5276
|
}>;
|
|
5259
5277
|
type __VLS_WithSlots$104<T, S> = T & {
|
|
@@ -5315,16 +5333,16 @@ interface NumberFieldRootContext {
|
|
|
5315
5333
|
id: Ref<string | undefined>;
|
|
5316
5334
|
}
|
|
5317
5335
|
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<
|
|
5336
|
+
declare const _default$188: __VLS_WithSlots$103<vue6.DefineComponent<NumberFieldRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5319
5337
|
"update:modelValue": (val: number) => any;
|
|
5320
|
-
}, string,
|
|
5338
|
+
}, string, vue6.PublicProps, Readonly<NumberFieldRootProps> & Readonly<{
|
|
5321
5339
|
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
5322
5340
|
}>, {
|
|
5341
|
+
as: AsTag | vue6.Component;
|
|
5323
5342
|
defaultValue: number;
|
|
5324
|
-
as: AsTag | vue1606.Component;
|
|
5325
5343
|
step: number;
|
|
5326
5344
|
stepSnapping: boolean;
|
|
5327
|
-
}, {}, {}, {}, string,
|
|
5345
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5328
5346
|
default?: (props: {
|
|
5329
5347
|
modelValue: number | undefined;
|
|
5330
5348
|
textValue: string;
|
|
@@ -5339,7 +5357,7 @@ type __VLS_WithSlots$103<T, S> = T & {
|
|
|
5339
5357
|
//#endregion
|
|
5340
5358
|
//#region src/Pagination/PaginationEllipsis.vue.d.ts
|
|
5341
5359
|
interface PaginationEllipsisProps extends PrimitiveProps {}
|
|
5342
|
-
declare const _default$189: __VLS_WithSlots$102<
|
|
5360
|
+
declare const _default$189: __VLS_WithSlots$102<vue6.DefineComponent<PaginationEllipsisProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5343
5361
|
default?: (props: {}) => any;
|
|
5344
5362
|
}>;
|
|
5345
5363
|
type __VLS_WithSlots$102<T, S> = T & {
|
|
@@ -5351,9 +5369,9 @@ type __VLS_WithSlots$102<T, S> = T & {
|
|
|
5351
5369
|
//#endregion
|
|
5352
5370
|
//#region src/Pagination/PaginationFirst.vue.d.ts
|
|
5353
5371
|
interface PaginationFirstProps extends PrimitiveProps {}
|
|
5354
|
-
declare const _default$190: __VLS_WithSlots$101<
|
|
5355
|
-
as: AsTag |
|
|
5356
|
-
}, {}, {}, {}, string,
|
|
5372
|
+
declare const _default$190: __VLS_WithSlots$101<vue6.DefineComponent<PaginationFirstProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PaginationFirstProps> & Readonly<{}>, {
|
|
5373
|
+
as: AsTag | vue6.Component;
|
|
5374
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5357
5375
|
default?: (props: {}) => any;
|
|
5358
5376
|
}>;
|
|
5359
5377
|
type __VLS_WithSlots$101<T, S> = T & {
|
|
@@ -5365,9 +5383,9 @@ type __VLS_WithSlots$101<T, S> = T & {
|
|
|
5365
5383
|
//#endregion
|
|
5366
5384
|
//#region src/Pagination/PaginationLast.vue.d.ts
|
|
5367
5385
|
interface PaginationLastProps extends PrimitiveProps {}
|
|
5368
|
-
declare const _default$191: __VLS_WithSlots$100<
|
|
5369
|
-
as: AsTag |
|
|
5370
|
-
}, {}, {}, {}, string,
|
|
5386
|
+
declare const _default$191: __VLS_WithSlots$100<vue6.DefineComponent<PaginationLastProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PaginationLastProps> & Readonly<{}>, {
|
|
5387
|
+
as: AsTag | vue6.Component;
|
|
5388
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5371
5389
|
default?: (props: {}) => any;
|
|
5372
5390
|
}>;
|
|
5373
5391
|
type __VLS_WithSlots$100<T, S> = T & {
|
|
@@ -5379,7 +5397,7 @@ type __VLS_WithSlots$100<T, S> = T & {
|
|
|
5379
5397
|
//#endregion
|
|
5380
5398
|
//#region src/Pagination/PaginationList.vue.d.ts
|
|
5381
5399
|
interface PaginationListProps extends PrimitiveProps {}
|
|
5382
|
-
declare const _default$192: __VLS_WithSlots$99<
|
|
5400
|
+
declare const _default$192: __VLS_WithSlots$99<vue6.DefineComponent<PaginationListProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PaginationListProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5383
5401
|
default?: (props: {
|
|
5384
5402
|
/** Pages item */
|
|
5385
5403
|
items: ({
|
|
@@ -5402,9 +5420,9 @@ interface PaginationListItemProps extends PrimitiveProps {
|
|
|
5402
5420
|
/** Value for the page */
|
|
5403
5421
|
value: number;
|
|
5404
5422
|
}
|
|
5405
|
-
declare const _default$193: __VLS_WithSlots$98<
|
|
5406
|
-
as: AsTag |
|
|
5407
|
-
}, {}, {}, {}, string,
|
|
5423
|
+
declare const _default$193: __VLS_WithSlots$98<vue6.DefineComponent<PaginationListItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PaginationListItemProps> & Readonly<{}>, {
|
|
5424
|
+
as: AsTag | vue6.Component;
|
|
5425
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5408
5426
|
default?: (props: {}) => any;
|
|
5409
5427
|
}>;
|
|
5410
5428
|
type __VLS_WithSlots$98<T, S> = T & {
|
|
@@ -5416,9 +5434,9 @@ type __VLS_WithSlots$98<T, S> = T & {
|
|
|
5416
5434
|
//#endregion
|
|
5417
5435
|
//#region src/Pagination/PaginationNext.vue.d.ts
|
|
5418
5436
|
interface PaginationNextProps extends PrimitiveProps {}
|
|
5419
|
-
declare const _default$194: __VLS_WithSlots$97<
|
|
5420
|
-
as: AsTag |
|
|
5421
|
-
}, {}, {}, {}, string,
|
|
5437
|
+
declare const _default$194: __VLS_WithSlots$97<vue6.DefineComponent<PaginationNextProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PaginationNextProps> & Readonly<{}>, {
|
|
5438
|
+
as: AsTag | vue6.Component;
|
|
5439
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5422
5440
|
default?: (props: {}) => any;
|
|
5423
5441
|
}>;
|
|
5424
5442
|
type __VLS_WithSlots$97<T, S> = T & {
|
|
@@ -5430,9 +5448,9 @@ type __VLS_WithSlots$97<T, S> = T & {
|
|
|
5430
5448
|
//#endregion
|
|
5431
5449
|
//#region src/Pagination/PaginationPrev.vue.d.ts
|
|
5432
5450
|
interface PaginationPrevProps extends PrimitiveProps {}
|
|
5433
|
-
declare const _default$195: __VLS_WithSlots$96<
|
|
5434
|
-
as: AsTag |
|
|
5435
|
-
}, {}, {}, {}, string,
|
|
5451
|
+
declare const _default$195: __VLS_WithSlots$96<vue6.DefineComponent<PaginationPrevProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PaginationPrevProps> & Readonly<{}>, {
|
|
5452
|
+
as: AsTag | vue6.Component;
|
|
5453
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5436
5454
|
default?: (props: {}) => any;
|
|
5437
5455
|
}>;
|
|
5438
5456
|
type __VLS_WithSlots$96<T, S> = T & {
|
|
@@ -5476,17 +5494,17 @@ type PaginationRootEmits = {
|
|
|
5476
5494
|
'update:page': [value: number];
|
|
5477
5495
|
};
|
|
5478
5496
|
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<
|
|
5497
|
+
declare const _default$196: __VLS_WithSlots$95<vue6.DefineComponent<PaginationRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5480
5498
|
"update:page": (value: number) => any;
|
|
5481
|
-
}, string,
|
|
5499
|
+
}, string, vue6.PublicProps, Readonly<PaginationRootProps> & Readonly<{
|
|
5482
5500
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
5483
5501
|
}>, {
|
|
5484
|
-
as: AsTag |
|
|
5502
|
+
as: AsTag | vue6.Component;
|
|
5485
5503
|
defaultPage: number;
|
|
5486
5504
|
total: number;
|
|
5487
5505
|
siblingCount: number;
|
|
5488
5506
|
showEdges: boolean;
|
|
5489
|
-
}, {}, {}, {}, string,
|
|
5507
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5490
5508
|
default?: (props: {
|
|
5491
5509
|
/** Current page state */
|
|
5492
5510
|
page: number;
|
|
@@ -5508,9 +5526,9 @@ interface PinInputInputProps extends PrimitiveProps {
|
|
|
5508
5526
|
/** When `true`, prevents the user from interacting with the pin input */
|
|
5509
5527
|
disabled?: boolean;
|
|
5510
5528
|
}
|
|
5511
|
-
declare const _default$197: __VLS_WithSlots$94<
|
|
5512
|
-
as: AsTag |
|
|
5513
|
-
}, {}, {}, {}, string,
|
|
5529
|
+
declare const _default$197: __VLS_WithSlots$94<vue6.DefineComponent<PinInputInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PinInputInputProps> & Readonly<{}>, {
|
|
5530
|
+
as: AsTag | vue6.Component;
|
|
5531
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5514
5532
|
default?: (props: {}) => any;
|
|
5515
5533
|
}>;
|
|
5516
5534
|
type __VLS_WithSlots$94<T, S> = T & {
|
|
@@ -5567,8 +5585,8 @@ declare const _default$198: <Type extends PinInputType>(__VLS_props: NonNullable
|
|
|
5567
5585
|
props: __VLS_PrettifyLocal$6<Pick<Partial<{}> & Omit<{
|
|
5568
5586
|
readonly "onUpdate:modelValue"?: ((value: PinInputValue<Type>) => any) | undefined;
|
|
5569
5587
|
readonly onComplete?: ((value: PinInputValue<Type>) => any) | undefined;
|
|
5570
|
-
} &
|
|
5571
|
-
expose(exposed:
|
|
5588
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onUpdate:modelValue" | "onComplete"> & PinInputRootProps<Type> & Partial<{}>> & vue6.PublicProps;
|
|
5589
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
5572
5590
|
attrs: any;
|
|
5573
5591
|
slots: {
|
|
5574
5592
|
default?: (props: {
|
|
@@ -5577,7 +5595,7 @@ declare const _default$198: <Type extends PinInputType>(__VLS_props: NonNullable
|
|
|
5577
5595
|
}) => any;
|
|
5578
5596
|
};
|
|
5579
5597
|
emit: ((evt: "update:modelValue", value: PinInputValue<Type>) => void) & ((evt: "complete", value: PinInputValue<Type>) => void);
|
|
5580
|
-
}>) =>
|
|
5598
|
+
}>) => vue6.VNode & {
|
|
5581
5599
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
5582
5600
|
};
|
|
5583
5601
|
type __VLS_PrettifyLocal$6<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -5585,7 +5603,7 @@ type __VLS_PrettifyLocal$6<T> = { [K in keyof T]: T[K] } & {};
|
|
|
5585
5603
|
//#endregion
|
|
5586
5604
|
//#region src/Popover/PopoverAnchor.vue.d.ts
|
|
5587
5605
|
interface PopoverAnchorProps extends PopperAnchorProps {}
|
|
5588
|
-
declare const _default$199: __VLS_WithSlots$93<
|
|
5606
|
+
declare const _default$199: __VLS_WithSlots$93<vue6.DefineComponent<PopoverAnchorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5589
5607
|
default?: (props: {}) => any;
|
|
5590
5608
|
}>;
|
|
5591
5609
|
type __VLS_WithSlots$93<T, S> = T & {
|
|
@@ -5597,11 +5615,11 @@ type __VLS_WithSlots$93<T, S> = T & {
|
|
|
5597
5615
|
//#endregion
|
|
5598
5616
|
//#region src/Popover/PopoverArrow.vue.d.ts
|
|
5599
5617
|
interface PopoverArrowProps extends PopperArrowProps {}
|
|
5600
|
-
declare const _default$200: __VLS_WithSlots$92<
|
|
5601
|
-
as: AsTag |
|
|
5618
|
+
declare const _default$200: __VLS_WithSlots$92<vue6.DefineComponent<PopoverArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PopoverArrowProps> & Readonly<{}>, {
|
|
5619
|
+
as: AsTag | vue6.Component;
|
|
5602
5620
|
width: number;
|
|
5603
5621
|
height: number;
|
|
5604
|
-
}, {}, {}, {}, string,
|
|
5622
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5605
5623
|
default?: (props: {}) => any;
|
|
5606
5624
|
}>;
|
|
5607
5625
|
type __VLS_WithSlots$92<T, S> = T & {
|
|
@@ -5613,9 +5631,9 @@ type __VLS_WithSlots$92<T, S> = T & {
|
|
|
5613
5631
|
//#endregion
|
|
5614
5632
|
//#region src/Popover/PopoverClose.vue.d.ts
|
|
5615
5633
|
interface PopoverCloseProps extends PrimitiveProps {}
|
|
5616
|
-
declare const _default$201: __VLS_WithSlots$91<
|
|
5617
|
-
as: AsTag |
|
|
5618
|
-
}, {}, {}, {}, string,
|
|
5634
|
+
declare const _default$201: __VLS_WithSlots$91<vue6.DefineComponent<PopoverCloseProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PopoverCloseProps> & Readonly<{}>, {
|
|
5635
|
+
as: AsTag | vue6.Component;
|
|
5636
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5619
5637
|
default?: (props: {}) => any;
|
|
5620
5638
|
}>;
|
|
5621
5639
|
type __VLS_WithSlots$91<T, S> = T & {
|
|
@@ -5649,21 +5667,21 @@ interface PopoverContentProps extends PopoverContentImplProps {
|
|
|
5649
5667
|
*/
|
|
5650
5668
|
forceMount?: boolean;
|
|
5651
5669
|
}
|
|
5652
|
-
declare const _default$202: __VLS_WithSlots$90<
|
|
5670
|
+
declare const _default$202: __VLS_WithSlots$90<vue6.DefineComponent<PopoverContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5653
5671
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
5654
5672
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
5655
5673
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
5656
5674
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
5657
5675
|
openAutoFocus: (event: Event) => any;
|
|
5658
5676
|
closeAutoFocus: (event: Event) => any;
|
|
5659
|
-
}, string,
|
|
5677
|
+
}, string, vue6.PublicProps, Readonly<PopoverContentProps> & Readonly<{
|
|
5660
5678
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
5661
5679
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
5662
5680
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
5663
5681
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
5664
5682
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
5665
5683
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
5666
|
-
}>, {}, {}, {}, {}, string,
|
|
5684
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5667
5685
|
default?: (props: {}) => any;
|
|
5668
5686
|
} & {
|
|
5669
5687
|
default?: (props: {}) => any;
|
|
@@ -5677,7 +5695,7 @@ type __VLS_WithSlots$90<T, S> = T & {
|
|
|
5677
5695
|
//#endregion
|
|
5678
5696
|
//#region src/Popover/PopoverPortal.vue.d.ts
|
|
5679
5697
|
interface PopoverPortalProps extends TeleportProps {}
|
|
5680
|
-
declare const _default$203: __VLS_WithSlots$89<
|
|
5698
|
+
declare const _default$203: __VLS_WithSlots$89<vue6.DefineComponent<PopoverPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PopoverPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5681
5699
|
default?: (props: {}) => any;
|
|
5682
5700
|
}>;
|
|
5683
5701
|
type __VLS_WithSlots$89<T, S> = T & {
|
|
@@ -5721,15 +5739,15 @@ interface PopoverRootContext {
|
|
|
5721
5739
|
hasCustomAnchor: Ref<boolean>;
|
|
5722
5740
|
}
|
|
5723
5741
|
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<
|
|
5742
|
+
declare const _default$204: __VLS_WithSlots$88<vue6.DefineComponent<PopoverRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5725
5743
|
"update:open": (value: boolean) => any;
|
|
5726
|
-
}, string,
|
|
5744
|
+
}, string, vue6.PublicProps, Readonly<PopoverRootProps> & Readonly<{
|
|
5727
5745
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
5728
5746
|
}>, {
|
|
5729
5747
|
open: boolean;
|
|
5730
5748
|
defaultOpen: boolean;
|
|
5731
5749
|
modal: boolean;
|
|
5732
|
-
}, {}, {}, {}, string,
|
|
5750
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5733
5751
|
default?: (props: {
|
|
5734
5752
|
/** Current open state */
|
|
5735
5753
|
open: boolean;
|
|
@@ -5746,9 +5764,9 @@ type __VLS_WithSlots$88<T, S> = T & {
|
|
|
5746
5764
|
//#endregion
|
|
5747
5765
|
//#region src/Popover/PopoverTrigger.vue.d.ts
|
|
5748
5766
|
interface PopoverTriggerProps extends PrimitiveProps {}
|
|
5749
|
-
declare const _default$205: __VLS_WithSlots$87<
|
|
5750
|
-
as: AsTag |
|
|
5751
|
-
}, {}, {}, {}, string,
|
|
5767
|
+
declare const _default$205: __VLS_WithSlots$87<vue6.DefineComponent<PopoverTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<PopoverTriggerProps> & Readonly<{}>, {
|
|
5768
|
+
as: AsTag | vue6.Component;
|
|
5769
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5752
5770
|
default?: (props: {}) => any;
|
|
5753
5771
|
}>;
|
|
5754
5772
|
type __VLS_WithSlots$87<T, S> = T & {
|
|
@@ -5775,7 +5793,7 @@ interface PresenceProps {
|
|
|
5775
5793
|
*/
|
|
5776
5794
|
forceMount?: boolean;
|
|
5777
5795
|
}
|
|
5778
|
-
declare const _default$206:
|
|
5796
|
+
declare const _default$206: vue6.DefineComponent<vue6.ExtractPropTypes<{
|
|
5779
5797
|
present: {
|
|
5780
5798
|
type: BooleanConstructor;
|
|
5781
5799
|
required: true;
|
|
@@ -5783,9 +5801,9 @@ declare const _default$206: vue1606.DefineComponent<vue1606.ExtractPropTypes<{
|
|
|
5783
5801
|
forceMount: {
|
|
5784
5802
|
type: BooleanConstructor;
|
|
5785
5803
|
};
|
|
5786
|
-
}>, () => VNode<
|
|
5804
|
+
}>, () => VNode<vue6.RendererNode, vue6.RendererElement, {
|
|
5787
5805
|
[key: string]: any;
|
|
5788
|
-
}> | null, {}, {}, {},
|
|
5806
|
+
}> | null, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<vue6.ExtractPropTypes<{
|
|
5789
5807
|
present: {
|
|
5790
5808
|
type: BooleanConstructor;
|
|
5791
5809
|
required: true;
|
|
@@ -5799,11 +5817,11 @@ declare const _default$206: vue1606.DefineComponent<vue1606.ExtractPropTypes<{
|
|
|
5799
5817
|
default: (opts: {
|
|
5800
5818
|
present: boolean;
|
|
5801
5819
|
}) => any;
|
|
5802
|
-
}>, {}, {}, string,
|
|
5820
|
+
}>, {}, {}, string, vue6.ComponentProvideOptions, true, {}, any>;
|
|
5803
5821
|
//#endregion
|
|
5804
5822
|
//#region src/Progress/ProgressIndicator.vue.d.ts
|
|
5805
5823
|
interface ProgressIndicatorProps extends PrimitiveProps {}
|
|
5806
|
-
declare const _default$207: __VLS_WithSlots$86<
|
|
5824
|
+
declare const _default$207: __VLS_WithSlots$86<vue6.DefineComponent<ProgressIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ProgressIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5807
5825
|
default?: (props: {}) => any;
|
|
5808
5826
|
}>;
|
|
5809
5827
|
type __VLS_WithSlots$86<T, S> = T & {
|
|
@@ -5843,16 +5861,16 @@ interface ProgressRootContext {
|
|
|
5843
5861
|
}
|
|
5844
5862
|
declare const injectProgressRootContext: <T extends ProgressRootContext | null | undefined = ProgressRootContext>(fallback?: T | undefined) => T extends null ? ProgressRootContext | null : ProgressRootContext, provideProgressRootContext: (contextValue: ProgressRootContext) => ProgressRootContext;
|
|
5845
5863
|
type ProgressState = 'indeterminate' | 'loading' | 'complete';
|
|
5846
|
-
declare const _default$208: __VLS_WithSlots$85<
|
|
5864
|
+
declare const _default$208: __VLS_WithSlots$85<vue6.DefineComponent<ProgressRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5847
5865
|
"update:modelValue": (value: string[] | undefined) => any;
|
|
5848
5866
|
"update:max": (value: number) => any;
|
|
5849
|
-
}, string,
|
|
5867
|
+
}, string, vue6.PublicProps, Readonly<ProgressRootProps> & Readonly<{
|
|
5850
5868
|
"onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
|
|
5851
5869
|
"onUpdate:max"?: ((value: number) => any) | undefined;
|
|
5852
5870
|
}>, {
|
|
5853
5871
|
max: number;
|
|
5854
5872
|
getValueLabel: (value: number | null | undefined, max: number) => string | undefined;
|
|
5855
|
-
}, {}, {}, {}, string,
|
|
5873
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5856
5874
|
default?: (props: {
|
|
5857
5875
|
/** Current input values */
|
|
5858
5876
|
modelValue: number | null | undefined;
|
|
@@ -5873,9 +5891,9 @@ interface RadioGroupIndicatorProps extends PrimitiveProps {
|
|
|
5873
5891
|
*/
|
|
5874
5892
|
forceMount?: boolean;
|
|
5875
5893
|
}
|
|
5876
|
-
declare const _default$209: __VLS_WithSlots$84<
|
|
5877
|
-
as: AsTag |
|
|
5878
|
-
}, {}, {}, {}, string,
|
|
5894
|
+
declare const _default$209: __VLS_WithSlots$84<vue6.DefineComponent<RadioGroupIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RadioGroupIndicatorProps> & Readonly<{}>, {
|
|
5895
|
+
as: AsTag | vue6.Component;
|
|
5896
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5879
5897
|
default?: (props: {}) => any;
|
|
5880
5898
|
}>;
|
|
5881
5899
|
type __VLS_WithSlots$84<T, S> = T & {
|
|
@@ -5903,19 +5921,22 @@ interface RadioProps extends PrimitiveProps, FormFieldProps {
|
|
|
5903
5921
|
//#endregion
|
|
5904
5922
|
//#region src/RadioGroup/RadioGroupItem.vue.d.ts
|
|
5905
5923
|
interface RadioGroupItemProps extends Omit<RadioProps, 'checked'> {}
|
|
5924
|
+
type RadioGroupItemEmits = {
|
|
5925
|
+
select: [event: SelectEvent$1];
|
|
5926
|
+
};
|
|
5906
5927
|
interface RadioGroupItemContext {
|
|
5907
5928
|
disabled: ComputedRef<boolean>;
|
|
5908
5929
|
checked: ComputedRef<boolean>;
|
|
5909
5930
|
}
|
|
5910
5931
|
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<
|
|
5932
|
+
declare const _default$210: __VLS_WithSlots$83<vue6.DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5912
5933
|
select: (event: SelectEvent$1) => any;
|
|
5913
|
-
}, string,
|
|
5934
|
+
}, string, vue6.PublicProps, Readonly<RadioGroupItemProps> & Readonly<{
|
|
5914
5935
|
onSelect?: ((event: SelectEvent$1) => any) | undefined;
|
|
5915
5936
|
}>, {
|
|
5937
|
+
as: AsTag | vue6.Component;
|
|
5916
5938
|
disabled: boolean;
|
|
5917
|
-
|
|
5918
|
-
}, {}, {}, {}, string, vue1606.ComponentProvideOptions, false, {}, any>, {
|
|
5939
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5919
5940
|
default?: (props: {
|
|
5920
5941
|
/** Current checked state */
|
|
5921
5942
|
checked: boolean;
|
|
@@ -5965,16 +5986,16 @@ interface RadioGroupRootContext {
|
|
|
5965
5986
|
required: Ref<boolean>;
|
|
5966
5987
|
}
|
|
5967
5988
|
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<
|
|
5989
|
+
declare const _default$211: __VLS_WithSlots$82<vue6.DefineComponent<RadioGroupRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
5969
5990
|
"update:modelValue": (payload: string) => any;
|
|
5970
|
-
}, string,
|
|
5991
|
+
}, string, vue6.PublicProps, Readonly<RadioGroupRootProps> & Readonly<{
|
|
5971
5992
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
5972
5993
|
}>, {
|
|
5973
5994
|
disabled: boolean;
|
|
5974
|
-
required: boolean;
|
|
5975
5995
|
orientation: DataOrientation;
|
|
5976
5996
|
loop: boolean;
|
|
5977
|
-
|
|
5997
|
+
required: boolean;
|
|
5998
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5978
5999
|
default?: (props: {
|
|
5979
6000
|
/** Current input values */
|
|
5980
6001
|
modelValue: AcceptableValue | undefined;
|
|
@@ -5991,9 +6012,9 @@ type __VLS_WithSlots$82<T, S> = T & {
|
|
|
5991
6012
|
interface RangeCalendarCellProps extends PrimitiveProps {
|
|
5992
6013
|
date: DateValue$1;
|
|
5993
6014
|
}
|
|
5994
|
-
declare const _default$212: __VLS_WithSlots$81<
|
|
5995
|
-
as: AsTag |
|
|
5996
|
-
}, {}, {}, {}, string,
|
|
6015
|
+
declare const _default$212: __VLS_WithSlots$81<vue6.DefineComponent<RangeCalendarCellProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarCellProps> & Readonly<{}>, {
|
|
6016
|
+
as: AsTag | vue6.Component;
|
|
6017
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
5997
6018
|
default?: (props: {}) => any;
|
|
5998
6019
|
}>;
|
|
5999
6020
|
type __VLS_WithSlots$81<T, S> = T & {
|
|
@@ -6005,9 +6026,9 @@ type __VLS_WithSlots$81<T, S> = T & {
|
|
|
6005
6026
|
//#endregion
|
|
6006
6027
|
//#region src/RangeCalendar/RangeCalendarGrid.vue.d.ts
|
|
6007
6028
|
interface RangeCalendarGridProps extends PrimitiveProps {}
|
|
6008
|
-
declare const _default$214: __VLS_WithSlots$80<
|
|
6009
|
-
as: AsTag |
|
|
6010
|
-
}, {}, {}, {}, string,
|
|
6029
|
+
declare const _default$214: __VLS_WithSlots$80<vue6.DefineComponent<RangeCalendarGridProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarGridProps> & Readonly<{}>, {
|
|
6030
|
+
as: AsTag | vue6.Component;
|
|
6031
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6011
6032
|
default?: (props: {}) => any;
|
|
6012
6033
|
}>;
|
|
6013
6034
|
type __VLS_WithSlots$80<T, S> = T & {
|
|
@@ -6019,9 +6040,9 @@ type __VLS_WithSlots$80<T, S> = T & {
|
|
|
6019
6040
|
//#endregion
|
|
6020
6041
|
//#region src/RangeCalendar/RangeCalendarGridBody.vue.d.ts
|
|
6021
6042
|
interface RangeCalendarGridBodyProps extends PrimitiveProps {}
|
|
6022
|
-
declare const _default$215: __VLS_WithSlots$79<
|
|
6023
|
-
as: AsTag |
|
|
6024
|
-
}, {}, {}, {}, string,
|
|
6043
|
+
declare const _default$215: __VLS_WithSlots$79<vue6.DefineComponent<RangeCalendarGridBodyProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarGridBodyProps> & Readonly<{}>, {
|
|
6044
|
+
as: AsTag | vue6.Component;
|
|
6045
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6025
6046
|
default?: (props: {}) => any;
|
|
6026
6047
|
}>;
|
|
6027
6048
|
type __VLS_WithSlots$79<T, S> = T & {
|
|
@@ -6033,9 +6054,9 @@ type __VLS_WithSlots$79<T, S> = T & {
|
|
|
6033
6054
|
//#endregion
|
|
6034
6055
|
//#region src/RangeCalendar/RangeCalendarGridHead.vue.d.ts
|
|
6035
6056
|
interface RangeCalendarGridHeadProps extends PrimitiveProps {}
|
|
6036
|
-
declare const _default$216: __VLS_WithSlots$78<
|
|
6037
|
-
as: AsTag |
|
|
6038
|
-
}, {}, {}, {}, string,
|
|
6057
|
+
declare const _default$216: __VLS_WithSlots$78<vue6.DefineComponent<RangeCalendarGridHeadProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarGridHeadProps> & Readonly<{}>, {
|
|
6058
|
+
as: AsTag | vue6.Component;
|
|
6059
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6039
6060
|
default?: (props: {}) => any;
|
|
6040
6061
|
}>;
|
|
6041
6062
|
type __VLS_WithSlots$78<T, S> = T & {
|
|
@@ -6047,9 +6068,9 @@ type __VLS_WithSlots$78<T, S> = T & {
|
|
|
6047
6068
|
//#endregion
|
|
6048
6069
|
//#region src/RangeCalendar/RangeCalendarGridRow.vue.d.ts
|
|
6049
6070
|
interface RangeCalendarGridRowProps extends PrimitiveProps {}
|
|
6050
|
-
declare const _default$217: __VLS_WithSlots$77<
|
|
6051
|
-
as: AsTag |
|
|
6052
|
-
}, {}, {}, {}, string,
|
|
6071
|
+
declare const _default$217: __VLS_WithSlots$77<vue6.DefineComponent<RangeCalendarGridRowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarGridRowProps> & Readonly<{}>, {
|
|
6072
|
+
as: AsTag | vue6.Component;
|
|
6073
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6053
6074
|
default?: (props: {}) => any;
|
|
6054
6075
|
}>;
|
|
6055
6076
|
type __VLS_WithSlots$77<T, S> = T & {
|
|
@@ -6061,9 +6082,9 @@ type __VLS_WithSlots$77<T, S> = T & {
|
|
|
6061
6082
|
//#endregion
|
|
6062
6083
|
//#region src/RangeCalendar/RangeCalendarHeadCell.vue.d.ts
|
|
6063
6084
|
interface RangeCalendarHeadCellProps extends PrimitiveProps {}
|
|
6064
|
-
declare const _default$218: __VLS_WithSlots$76<
|
|
6065
|
-
as: AsTag |
|
|
6066
|
-
}, {}, {}, {}, string,
|
|
6085
|
+
declare const _default$218: __VLS_WithSlots$76<vue6.DefineComponent<RangeCalendarHeadCellProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarHeadCellProps> & Readonly<{}>, {
|
|
6086
|
+
as: AsTag | vue6.Component;
|
|
6087
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6067
6088
|
default?: (props: {}) => any;
|
|
6068
6089
|
}>;
|
|
6069
6090
|
type __VLS_WithSlots$76<T, S> = T & {
|
|
@@ -6075,9 +6096,9 @@ type __VLS_WithSlots$76<T, S> = T & {
|
|
|
6075
6096
|
//#endregion
|
|
6076
6097
|
//#region src/RangeCalendar/RangeCalendarHeader.vue.d.ts
|
|
6077
6098
|
interface RangeCalendarHeaderProps extends PrimitiveProps {}
|
|
6078
|
-
declare const _default$219: __VLS_WithSlots$75<
|
|
6079
|
-
as: AsTag |
|
|
6080
|
-
}, {}, {}, {}, string,
|
|
6099
|
+
declare const _default$219: __VLS_WithSlots$75<vue6.DefineComponent<RangeCalendarHeaderProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarHeaderProps> & Readonly<{}>, {
|
|
6100
|
+
as: AsTag | vue6.Component;
|
|
6101
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6081
6102
|
default?: (props: {}) => any;
|
|
6082
6103
|
}>;
|
|
6083
6104
|
type __VLS_WithSlots$75<T, S> = T & {
|
|
@@ -6089,9 +6110,9 @@ type __VLS_WithSlots$75<T, S> = T & {
|
|
|
6089
6110
|
//#endregion
|
|
6090
6111
|
//#region src/RangeCalendar/RangeCalendarHeading.vue.d.ts
|
|
6091
6112
|
interface RangeCalendarHeadingProps extends PrimitiveProps {}
|
|
6092
|
-
declare const _default$220: __VLS_WithSlots$74<
|
|
6093
|
-
as: AsTag |
|
|
6094
|
-
}, {}, {}, {}, string,
|
|
6113
|
+
declare const _default$220: __VLS_WithSlots$74<vue6.DefineComponent<RangeCalendarHeadingProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<RangeCalendarHeadingProps> & Readonly<{}>, {
|
|
6114
|
+
as: AsTag | vue6.Component;
|
|
6115
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6095
6116
|
default?: (props: {
|
|
6096
6117
|
/** Current month and year */
|
|
6097
6118
|
headingValue: string;
|
|
@@ -6152,7 +6173,6 @@ type RangeCalendarRootContext = {
|
|
|
6152
6173
|
disableDaysOutsideCurrentView: Ref<boolean>;
|
|
6153
6174
|
fixedDate: Ref<'start' | 'end' | undefined>;
|
|
6154
6175
|
maximumDays: Ref<number | undefined>;
|
|
6155
|
-
startingWeekNumberPerMonth: ComputedRef<number[][]>;
|
|
6156
6176
|
};
|
|
6157
6177
|
interface RangeCalendarRootProps extends PrimitiveProps {
|
|
6158
6178
|
/** The default placeholder date */
|
|
@@ -6213,24 +6233,28 @@ interface RangeCalendarRootProps extends PrimitiveProps {
|
|
|
6213
6233
|
type RangeCalendarRootEmits = {
|
|
6214
6234
|
/** Event handler called whenever the model value changes */
|
|
6215
6235
|
'update:modelValue': [date: DateRange];
|
|
6236
|
+
/** Event handler called whenever there is a new validModel */
|
|
6237
|
+
'update:validModelValue': [date: DateRange];
|
|
6216
6238
|
/** Event handler called whenever the placeholder value changes */
|
|
6217
6239
|
'update:placeholder': [date: DateValue$1];
|
|
6218
6240
|
/** Event handler called whenever the start value changes */
|
|
6219
6241
|
'update:startValue': [date: DateValue$1 | undefined];
|
|
6220
6242
|
};
|
|
6221
6243
|
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<
|
|
6244
|
+
declare const _default$223: __VLS_WithSlots$73<vue6.DefineComponent<RangeCalendarRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
6223
6245
|
"update:modelValue": (date: DateRange) => any;
|
|
6224
6246
|
"update:placeholder": (date: DateValue$1) => any;
|
|
6247
|
+
"update:validModelValue": (date: DateRange) => any;
|
|
6225
6248
|
"update:startValue": (date: DateValue$1 | undefined) => any;
|
|
6226
|
-
}, string,
|
|
6249
|
+
}, string, vue6.PublicProps, Readonly<RangeCalendarRootProps> & Readonly<{
|
|
6227
6250
|
"onUpdate:modelValue"?: ((date: DateRange) => any) | undefined;
|
|
6228
6251
|
"onUpdate:placeholder"?: ((date: DateValue$1) => any) | undefined;
|
|
6252
|
+
"onUpdate:validModelValue"?: ((date: DateRange) => any) | undefined;
|
|
6229
6253
|
"onUpdate:startValue"?: ((date: DateValue$1 | undefined) => any) | undefined;
|
|
6230
6254
|
}>, {
|
|
6231
|
-
|
|
6255
|
+
as: AsTag | vue6.Component;
|
|
6232
6256
|
disabled: boolean;
|
|
6233
|
-
|
|
6257
|
+
defaultValue: DateRange;
|
|
6234
6258
|
placeholder: DateValue$1;
|
|
6235
6259
|
pagedNavigation: boolean;
|
|
6236
6260
|
preventDeselect: boolean;
|
|
@@ -6246,7 +6270,7 @@ declare const _default$223: __VLS_WithSlots$73<vue1606.DefineComponent<RangeCale
|
|
|
6246
6270
|
allowNonContiguousRanges: boolean;
|
|
6247
6271
|
maximumDays: number;
|
|
6248
6272
|
isDateHighlightable: Matcher;
|
|
6249
|
-
}, {}, {}, {}, string,
|
|
6273
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6250
6274
|
default?: (props: {
|
|
6251
6275
|
/** The current date of the placeholder */
|
|
6252
6276
|
date: DateValue$1;
|
|
@@ -6273,7 +6297,7 @@ type __VLS_WithSlots$73<T, S> = T & {
|
|
|
6273
6297
|
//#endregion
|
|
6274
6298
|
//#region src/ScrollArea/ScrollAreaCorner.vue.d.ts
|
|
6275
6299
|
interface ScrollAreaCornerProps extends PrimitiveProps {}
|
|
6276
|
-
declare const _default$226: __VLS_WithSlots$72<
|
|
6300
|
+
declare const _default$226: __VLS_WithSlots$72<vue6.DefineComponent<ScrollAreaCornerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ScrollAreaCornerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6277
6301
|
default?: (props: {}) => any;
|
|
6278
6302
|
}>;
|
|
6279
6303
|
type __VLS_WithSlots$72<T, S> = T & {
|
|
@@ -6325,17 +6349,17 @@ interface ScrollAreaRootProps extends PrimitiveProps {
|
|
|
6325
6349
|
/** 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
6350
|
scrollHideDelay?: number;
|
|
6327
6351
|
}
|
|
6328
|
-
declare const _default$227: __VLS_WithSlots$71<
|
|
6352
|
+
declare const _default$227: __VLS_WithSlots$71<vue6.DefineComponent<ScrollAreaRootProps, {
|
|
6329
6353
|
/** Viewport element within ScrollArea */
|
|
6330
6354
|
viewport: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
6331
6355
|
/** Scroll viewport to top */
|
|
6332
6356
|
scrollTop: () => void;
|
|
6333
6357
|
/** Scroll viewport to top-left */
|
|
6334
6358
|
scrollTopLeft: () => void;
|
|
6335
|
-
}, {}, {}, {},
|
|
6359
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ScrollAreaRootProps> & Readonly<{}>, {
|
|
6336
6360
|
type: ScrollType;
|
|
6337
6361
|
scrollHideDelay: number;
|
|
6338
|
-
}, {}, {}, {}, string,
|
|
6362
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6339
6363
|
default?: (props: {}) => any;
|
|
6340
6364
|
}>;
|
|
6341
6365
|
type __VLS_WithSlots$71<T, S> = T & {
|
|
@@ -6363,10 +6387,10 @@ interface ScrollAreaScollbarContext {
|
|
|
6363
6387
|
asChild: Ref<boolean>;
|
|
6364
6388
|
}
|
|
6365
6389
|
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 |
|
|
6390
|
+
declare const _default$228: __VLS_WithSlots$70<vue6.DefineComponent<ScrollAreaScrollbarProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ScrollAreaScrollbarProps> & Readonly<{}>, {
|
|
6391
|
+
as: AsTag | vue6.Component;
|
|
6368
6392
|
orientation: "vertical" | "horizontal";
|
|
6369
|
-
}, {}, {}, {}, string,
|
|
6393
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6370
6394
|
default?: (props: {}) => any;
|
|
6371
6395
|
} & {
|
|
6372
6396
|
default?: (props: {}) => any;
|
|
@@ -6384,7 +6408,7 @@ type __VLS_WithSlots$70<T, S> = T & {
|
|
|
6384
6408
|
//#endregion
|
|
6385
6409
|
//#region src/ScrollArea/ScrollAreaThumb.vue.d.ts
|
|
6386
6410
|
interface ScrollAreaThumbProps extends PrimitiveProps {}
|
|
6387
|
-
declare const _default$229: __VLS_WithSlots$69<
|
|
6411
|
+
declare const _default$229: __VLS_WithSlots$69<vue6.DefineComponent<ScrollAreaThumbProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ScrollAreaThumbProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6388
6412
|
default?: (props: {}) => any;
|
|
6389
6413
|
}>;
|
|
6390
6414
|
type __VLS_WithSlots$69<T, S> = T & {
|
|
@@ -6401,9 +6425,9 @@ interface ScrollAreaViewportProps extends PrimitiveProps {
|
|
|
6401
6425
|
*/
|
|
6402
6426
|
nonce?: string;
|
|
6403
6427
|
}
|
|
6404
|
-
declare const _default$230: __VLS_WithSlots$68<
|
|
6405
|
-
viewportElement:
|
|
6406
|
-
}, {}, {}, {},
|
|
6428
|
+
declare const _default$230: __VLS_WithSlots$68<vue6.DefineComponent<ScrollAreaViewportProps, {
|
|
6429
|
+
viewportElement: vue6.Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
6430
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ScrollAreaViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6407
6431
|
default?: (props: {}) => any;
|
|
6408
6432
|
}>;
|
|
6409
6433
|
type __VLS_WithSlots$68<T, S> = T & {
|
|
@@ -6415,11 +6439,11 @@ type __VLS_WithSlots$68<T, S> = T & {
|
|
|
6415
6439
|
//#endregion
|
|
6416
6440
|
//#region src/Select/SelectArrow.vue.d.ts
|
|
6417
6441
|
interface SelectArrowProps extends PopperArrowProps {}
|
|
6418
|
-
declare const _default$231: __VLS_WithSlots$67<
|
|
6419
|
-
as: AsTag |
|
|
6442
|
+
declare const _default$231: __VLS_WithSlots$67<vue6.DefineComponent<SelectArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectArrowProps> & Readonly<{}>, {
|
|
6443
|
+
as: AsTag | vue6.Component;
|
|
6420
6444
|
width: number;
|
|
6421
6445
|
height: number;
|
|
6422
|
-
}, {}, {}, {}, string,
|
|
6446
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6423
6447
|
default?: (props: {}) => any;
|
|
6424
6448
|
}>;
|
|
6425
6449
|
type __VLS_WithSlots$67<T, S> = T & {
|
|
@@ -6469,15 +6493,15 @@ interface SelectContentProps extends SelectContentImplProps {
|
|
|
6469
6493
|
*/
|
|
6470
6494
|
forceMount?: boolean;
|
|
6471
6495
|
}
|
|
6472
|
-
declare const _default$232: __VLS_WithSlots$66<
|
|
6496
|
+
declare const _default$232: __VLS_WithSlots$66<vue6.DefineComponent<SelectContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
6473
6497
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
6474
6498
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
6475
6499
|
closeAutoFocus: (event: Event) => any;
|
|
6476
|
-
}, string,
|
|
6500
|
+
}, string, vue6.PublicProps, Readonly<SelectContentProps> & Readonly<{
|
|
6477
6501
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
6478
6502
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
6479
6503
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
6480
|
-
}>, {}, {}, {}, {}, string,
|
|
6504
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6481
6505
|
default?: (props: {}) => any;
|
|
6482
6506
|
} & {
|
|
6483
6507
|
default?: (props: {}) => any;
|
|
@@ -6495,7 +6519,7 @@ interface SelectGroupContext {
|
|
|
6495
6519
|
id: string;
|
|
6496
6520
|
}
|
|
6497
6521
|
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<
|
|
6522
|
+
declare const _default$233: __VLS_WithSlots$65<vue6.DefineComponent<SelectGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6499
6523
|
default?: (props: {}) => any;
|
|
6500
6524
|
}>;
|
|
6501
6525
|
type __VLS_WithSlots$65<T, S> = T & {
|
|
@@ -6507,9 +6531,9 @@ type __VLS_WithSlots$65<T, S> = T & {
|
|
|
6507
6531
|
//#endregion
|
|
6508
6532
|
//#region src/Select/SelectIcon.vue.d.ts
|
|
6509
6533
|
interface SelectIconProps extends PrimitiveProps {}
|
|
6510
|
-
declare const _default$234: __VLS_WithSlots$64<
|
|
6511
|
-
as: AsTag |
|
|
6512
|
-
}, {}, {}, {}, string,
|
|
6534
|
+
declare const _default$234: __VLS_WithSlots$64<vue6.DefineComponent<SelectIconProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectIconProps> & Readonly<{}>, {
|
|
6535
|
+
as: AsTag | vue6.Component;
|
|
6536
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6513
6537
|
default?: (props: {}) => any;
|
|
6514
6538
|
}>;
|
|
6515
6539
|
type __VLS_WithSlots$64<T, S> = T & {
|
|
@@ -6549,14 +6573,14 @@ interface SelectItemProps<T = AcceptableValue> extends PrimitiveProps {
|
|
|
6549
6573
|
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
6574
|
props: __VLS_PrettifyLocal$5<Pick<Partial<{}> & Omit<{
|
|
6551
6575
|
readonly onSelect?: ((event: SelectEvent$2<T>) => any) | undefined;
|
|
6552
|
-
} &
|
|
6553
|
-
expose(exposed:
|
|
6576
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onSelect"> & SelectItemProps<AcceptableValue> & Partial<{}>> & vue6.PublicProps;
|
|
6577
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
6554
6578
|
attrs: any;
|
|
6555
6579
|
slots: {
|
|
6556
6580
|
default?: (props: {}) => any;
|
|
6557
6581
|
};
|
|
6558
6582
|
emit: (evt: "select", event: SelectEvent$2<T>) => void;
|
|
6559
|
-
}>) =>
|
|
6583
|
+
}>) => vue6.VNode & {
|
|
6560
6584
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
6561
6585
|
};
|
|
6562
6586
|
type __VLS_PrettifyLocal$5<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -6564,9 +6588,9 @@ type __VLS_PrettifyLocal$5<T> = { [K in keyof T]: T[K] } & {};
|
|
|
6564
6588
|
//#endregion
|
|
6565
6589
|
//#region src/Select/SelectItemIndicator.vue.d.ts
|
|
6566
6590
|
interface SelectItemIndicatorProps extends PrimitiveProps {}
|
|
6567
|
-
declare const _default$236: __VLS_WithSlots$63<
|
|
6568
|
-
as: AsTag |
|
|
6569
|
-
}, {}, {}, {}, string,
|
|
6591
|
+
declare const _default$236: __VLS_WithSlots$63<vue6.DefineComponent<SelectItemIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectItemIndicatorProps> & Readonly<{}>, {
|
|
6592
|
+
as: AsTag | vue6.Component;
|
|
6593
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6570
6594
|
default?: (props: {}) => any;
|
|
6571
6595
|
}>;
|
|
6572
6596
|
type __VLS_WithSlots$63<T, S> = T & {
|
|
@@ -6578,9 +6602,9 @@ type __VLS_WithSlots$63<T, S> = T & {
|
|
|
6578
6602
|
//#endregion
|
|
6579
6603
|
//#region src/Select/SelectItemText.vue.d.ts
|
|
6580
6604
|
interface SelectItemTextProps extends PrimitiveProps {}
|
|
6581
|
-
declare const _default$237: __VLS_WithSlots$62<
|
|
6582
|
-
as: AsTag |
|
|
6583
|
-
}, {}, {}, {}, string,
|
|
6605
|
+
declare const _default$237: __VLS_WithSlots$62<vue6.DefineComponent<SelectItemTextProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectItemTextProps> & Readonly<{}>, {
|
|
6606
|
+
as: AsTag | vue6.Component;
|
|
6607
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6584
6608
|
default?: (props: {}) => any;
|
|
6585
6609
|
}>;
|
|
6586
6610
|
type __VLS_WithSlots$62<T, S> = T & {
|
|
@@ -6594,9 +6618,9 @@ type __VLS_WithSlots$62<T, S> = T & {
|
|
|
6594
6618
|
interface SelectLabelProps extends PrimitiveProps {
|
|
6595
6619
|
for?: string;
|
|
6596
6620
|
}
|
|
6597
|
-
declare const _default$238: __VLS_WithSlots$61<
|
|
6598
|
-
as: AsTag |
|
|
6599
|
-
}, {}, {}, {}, string,
|
|
6621
|
+
declare const _default$238: __VLS_WithSlots$61<vue6.DefineComponent<SelectLabelProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectLabelProps> & Readonly<{}>, {
|
|
6622
|
+
as: AsTag | vue6.Component;
|
|
6623
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6600
6624
|
default?: (props: {}) => any;
|
|
6601
6625
|
}>;
|
|
6602
6626
|
type __VLS_WithSlots$61<T, S> = T & {
|
|
@@ -6608,7 +6632,7 @@ type __VLS_WithSlots$61<T, S> = T & {
|
|
|
6608
6632
|
//#endregion
|
|
6609
6633
|
//#region src/Select/SelectPortal.vue.d.ts
|
|
6610
6634
|
interface SelectPortalProps extends TeleportProps {}
|
|
6611
|
-
declare const _default$239: __VLS_WithSlots$60<
|
|
6635
|
+
declare const _default$239: __VLS_WithSlots$60<vue6.DefineComponent<SelectPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6612
6636
|
default?: (props: {}) => any;
|
|
6613
6637
|
}>;
|
|
6614
6638
|
type __VLS_WithSlots$60<T, S> = T & {
|
|
@@ -6679,8 +6703,8 @@ declare const _default$240: <T extends AcceptableValue = AcceptableValue>(__VLS_
|
|
|
6679
6703
|
props: __VLS_PrettifyLocal$4<Pick<Partial<{}> & Omit<{
|
|
6680
6704
|
readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
6681
6705
|
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
6682
|
-
} &
|
|
6683
|
-
expose(exposed:
|
|
6706
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:open"> & SelectRootProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
6707
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
6684
6708
|
attrs: any;
|
|
6685
6709
|
slots: {
|
|
6686
6710
|
default?: (props: {
|
|
@@ -6691,7 +6715,7 @@ declare const _default$240: <T extends AcceptableValue = AcceptableValue>(__VLS_
|
|
|
6691
6715
|
}) => any;
|
|
6692
6716
|
};
|
|
6693
6717
|
emit: ((evt: "update:modelValue", value: T) => void) & ((evt: "update:open", value: boolean) => void);
|
|
6694
|
-
}>) =>
|
|
6718
|
+
}>) => vue6.VNode & {
|
|
6695
6719
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
6696
6720
|
};
|
|
6697
6721
|
type __VLS_PrettifyLocal$4<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -6699,7 +6723,7 @@ type __VLS_PrettifyLocal$4<T> = { [K in keyof T]: T[K] } & {};
|
|
|
6699
6723
|
//#endregion
|
|
6700
6724
|
//#region src/Select/SelectScrollDownButton.vue.d.ts
|
|
6701
6725
|
interface SelectScrollDownButtonProps extends PrimitiveProps {}
|
|
6702
|
-
declare const _default$241: __VLS_WithSlots$59<
|
|
6726
|
+
declare const _default$241: __VLS_WithSlots$59<vue6.DefineComponent<SelectScrollDownButtonProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectScrollDownButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6703
6727
|
default?: (props: {}) => any;
|
|
6704
6728
|
}>;
|
|
6705
6729
|
type __VLS_WithSlots$59<T, S> = T & {
|
|
@@ -6711,7 +6735,7 @@ type __VLS_WithSlots$59<T, S> = T & {
|
|
|
6711
6735
|
//#endregion
|
|
6712
6736
|
//#region src/Select/SelectScrollUpButton.vue.d.ts
|
|
6713
6737
|
interface SelectScrollUpButtonProps extends PrimitiveProps {}
|
|
6714
|
-
declare const _default$242: __VLS_WithSlots$58<
|
|
6738
|
+
declare const _default$242: __VLS_WithSlots$58<vue6.DefineComponent<SelectScrollUpButtonProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectScrollUpButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6715
6739
|
default?: (props: {}) => any;
|
|
6716
6740
|
}>;
|
|
6717
6741
|
type __VLS_WithSlots$58<T, S> = T & {
|
|
@@ -6723,7 +6747,7 @@ type __VLS_WithSlots$58<T, S> = T & {
|
|
|
6723
6747
|
//#endregion
|
|
6724
6748
|
//#region src/Select/SelectSeparator.vue.d.ts
|
|
6725
6749
|
interface SelectSeparatorProps extends PrimitiveProps {}
|
|
6726
|
-
declare const _default$243: __VLS_WithSlots$57<
|
|
6750
|
+
declare const _default$243: __VLS_WithSlots$57<vue6.DefineComponent<SelectSeparatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6727
6751
|
default?: (props: {}) => any;
|
|
6728
6752
|
}>;
|
|
6729
6753
|
type __VLS_WithSlots$57<T, S> = T & {
|
|
@@ -6737,9 +6761,9 @@ type __VLS_WithSlots$57<T, S> = T & {
|
|
|
6737
6761
|
interface SelectTriggerProps extends PopperAnchorProps {
|
|
6738
6762
|
disabled?: boolean;
|
|
6739
6763
|
}
|
|
6740
|
-
declare const _default$244: __VLS_WithSlots$56<
|
|
6741
|
-
as: AsTag |
|
|
6742
|
-
}, {}, {}, {}, string,
|
|
6764
|
+
declare const _default$244: __VLS_WithSlots$56<vue6.DefineComponent<SelectTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectTriggerProps> & Readonly<{}>, {
|
|
6765
|
+
as: AsTag | vue6.Component;
|
|
6766
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6743
6767
|
default?: (props: {}) => any;
|
|
6744
6768
|
}>;
|
|
6745
6769
|
type __VLS_WithSlots$56<T, S> = T & {
|
|
@@ -6754,10 +6778,10 @@ interface SelectValueProps extends PrimitiveProps {
|
|
|
6754
6778
|
/** The content that will be rendered inside the `SelectValue` when no `value` or `defaultValue` is set. */
|
|
6755
6779
|
placeholder?: string;
|
|
6756
6780
|
}
|
|
6757
|
-
declare const _default$245: __VLS_WithSlots$55<
|
|
6758
|
-
as: AsTag |
|
|
6781
|
+
declare const _default$245: __VLS_WithSlots$55<vue6.DefineComponent<SelectValueProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectValueProps> & Readonly<{}>, {
|
|
6782
|
+
as: AsTag | vue6.Component;
|
|
6759
6783
|
placeholder: string;
|
|
6760
|
-
}, {}, {}, {}, string,
|
|
6784
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6761
6785
|
default?: (props: {
|
|
6762
6786
|
selectedLabel: string[];
|
|
6763
6787
|
modelValue: AcceptableValue | AcceptableValue[] | undefined;
|
|
@@ -6777,7 +6801,7 @@ interface SelectViewportProps extends PrimitiveProps {
|
|
|
6777
6801
|
*/
|
|
6778
6802
|
nonce?: string;
|
|
6779
6803
|
}
|
|
6780
|
-
declare const _default$246: __VLS_WithSlots$54<
|
|
6804
|
+
declare const _default$246: __VLS_WithSlots$54<vue6.DefineComponent<SelectViewportProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SelectViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6781
6805
|
default?: (props: {}) => any;
|
|
6782
6806
|
}>;
|
|
6783
6807
|
type __VLS_WithSlots$54<T, S> = T & {
|
|
@@ -6804,9 +6828,9 @@ interface BaseSeparatorProps extends PrimitiveProps {
|
|
|
6804
6828
|
//#endregion
|
|
6805
6829
|
//#region src/Separator/Separator.vue.d.ts
|
|
6806
6830
|
interface SeparatorProps extends BaseSeparatorProps {}
|
|
6807
|
-
declare const _default$247: __VLS_WithSlots$53<
|
|
6831
|
+
declare const _default$247: __VLS_WithSlots$53<vue6.DefineComponent<SeparatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SeparatorProps> & Readonly<{}>, {
|
|
6808
6832
|
orientation: DataOrientation;
|
|
6809
|
-
}, {}, {}, {}, string,
|
|
6833
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6810
6834
|
default?: (props: {}) => any;
|
|
6811
6835
|
}>;
|
|
6812
6836
|
type __VLS_WithSlots$53<T, S> = T & {
|
|
@@ -6818,9 +6842,9 @@ type __VLS_WithSlots$53<T, S> = T & {
|
|
|
6818
6842
|
//#endregion
|
|
6819
6843
|
//#region src/Slider/SliderRange.vue.d.ts
|
|
6820
6844
|
interface SliderRangeProps extends PrimitiveProps {}
|
|
6821
|
-
declare const _default$248: __VLS_WithSlots$52<
|
|
6822
|
-
as: AsTag |
|
|
6823
|
-
}, {}, {}, {}, string,
|
|
6845
|
+
declare const _default$248: __VLS_WithSlots$52<vue6.DefineComponent<SliderRangeProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SliderRangeProps> & Readonly<{}>, {
|
|
6846
|
+
as: AsTag | vue6.Component;
|
|
6847
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6824
6848
|
default?: (props: {}) => any;
|
|
6825
6849
|
}>;
|
|
6826
6850
|
type __VLS_WithSlots$52<T, S> = T & {
|
|
@@ -6885,24 +6909,24 @@ interface SliderRootContext {
|
|
|
6885
6909
|
thumbAlignment: Ref<ThumbAlignment>;
|
|
6886
6910
|
}
|
|
6887
6911
|
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<
|
|
6912
|
+
declare const _default$249: __VLS_WithSlots$51<vue6.DefineComponent<SliderRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
6889
6913
|
"update:modelValue": (payload: number[] | undefined) => any;
|
|
6890
6914
|
valueCommit: (payload: number[]) => any;
|
|
6891
|
-
}, string,
|
|
6915
|
+
}, string, vue6.PublicProps, Readonly<SliderRootProps> & Readonly<{
|
|
6892
6916
|
"onUpdate:modelValue"?: ((payload: number[] | undefined) => any) | undefined;
|
|
6893
6917
|
onValueCommit?: ((payload: number[]) => any) | undefined;
|
|
6894
6918
|
}>, {
|
|
6895
|
-
|
|
6919
|
+
as: AsTag | vue6.Component;
|
|
6896
6920
|
disabled: boolean;
|
|
6897
|
-
as: AsTag | vue1606.Component;
|
|
6898
6921
|
orientation: DataOrientation;
|
|
6922
|
+
defaultValue: number[];
|
|
6899
6923
|
step: number;
|
|
6900
6924
|
min: number;
|
|
6901
6925
|
max: number;
|
|
6902
6926
|
inverted: boolean;
|
|
6903
6927
|
minStepsBetweenThumbs: number;
|
|
6904
6928
|
thumbAlignment: ThumbAlignment;
|
|
6905
|
-
}, {}, {}, {}, string,
|
|
6929
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6906
6930
|
default?: (props: {
|
|
6907
6931
|
/** Current slider values */
|
|
6908
6932
|
modelValue: number[] | null;
|
|
@@ -6917,9 +6941,9 @@ type __VLS_WithSlots$51<T, S> = T & {
|
|
|
6917
6941
|
//#endregion
|
|
6918
6942
|
//#region src/Slider/SliderThumb.vue.d.ts
|
|
6919
6943
|
interface SliderThumbProps extends PrimitiveProps {}
|
|
6920
|
-
declare const _default$250: __VLS_WithSlots$50<
|
|
6921
|
-
as: AsTag |
|
|
6922
|
-
}, {}, {}, {}, string,
|
|
6944
|
+
declare const _default$250: __VLS_WithSlots$50<vue6.DefineComponent<SliderThumbProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SliderThumbProps> & Readonly<{}>, {
|
|
6945
|
+
as: AsTag | vue6.Component;
|
|
6946
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6923
6947
|
default?: (props: {}) => any;
|
|
6924
6948
|
}>;
|
|
6925
6949
|
type __VLS_WithSlots$50<T, S> = T & {
|
|
@@ -6931,9 +6955,9 @@ type __VLS_WithSlots$50<T, S> = T & {
|
|
|
6931
6955
|
//#endregion
|
|
6932
6956
|
//#region src/Slider/SliderTrack.vue.d.ts
|
|
6933
6957
|
interface SliderTrackProps extends PrimitiveProps {}
|
|
6934
|
-
declare const _default$251: __VLS_WithSlots$49<
|
|
6935
|
-
as: AsTag |
|
|
6936
|
-
}, {}, {}, {}, string,
|
|
6958
|
+
declare const _default$251: __VLS_WithSlots$49<vue6.DefineComponent<SliderTrackProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SliderTrackProps> & Readonly<{}>, {
|
|
6959
|
+
as: AsTag | vue6.Component;
|
|
6960
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
6937
6961
|
default?: (props: {}) => any;
|
|
6938
6962
|
}>;
|
|
6939
6963
|
type __VLS_WithSlots$49<T, S> = T & {
|
|
@@ -6991,7 +7015,7 @@ type PanelData = {
|
|
|
6991
7015
|
idIsFromProps: boolean;
|
|
6992
7016
|
order: number | undefined;
|
|
6993
7017
|
};
|
|
6994
|
-
declare const _default$253: __VLS_WithSlots$48<
|
|
7018
|
+
declare const _default$253: __VLS_WithSlots$48<vue6.DefineComponent<SplitterPanelProps, {
|
|
6995
7019
|
/** If panel is `collapsible`, collapse it fully. */
|
|
6996
7020
|
collapse: () => void;
|
|
6997
7021
|
/** If panel is currently collapsed, expand it to its most recent size. */
|
|
@@ -7001,18 +7025,18 @@ declare const _default$253: __VLS_WithSlots$48<vue1606.DefineComponent<SplitterP
|
|
|
7001
7025
|
/** Resize panel to the specified percentage (1 - 100). */
|
|
7002
7026
|
resize: (size: number) => void;
|
|
7003
7027
|
/** Returns `true` if the panel is currently collapsed */
|
|
7004
|
-
isCollapsed:
|
|
7028
|
+
isCollapsed: vue6.ComputedRef<boolean>;
|
|
7005
7029
|
/** Returns `true` if the panel is currently not collapsed */
|
|
7006
|
-
isExpanded:
|
|
7007
|
-
}, {}, {}, {},
|
|
7030
|
+
isExpanded: vue6.ComputedRef<boolean>;
|
|
7031
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
7008
7032
|
resize: (size: number, prevSize: number | undefined) => any;
|
|
7009
7033
|
collapse: () => any;
|
|
7010
7034
|
expand: () => any;
|
|
7011
|
-
}, string,
|
|
7035
|
+
}, string, vue6.PublicProps, Readonly<SplitterPanelProps> & Readonly<{
|
|
7012
7036
|
onResize?: ((size: number, prevSize: number | undefined) => any) | undefined;
|
|
7013
7037
|
onCollapse?: (() => any) | undefined;
|
|
7014
7038
|
onExpand?: (() => any) | undefined;
|
|
7015
|
-
}>, {}, {}, {}, {}, string,
|
|
7039
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7016
7040
|
default?: (props: {
|
|
7017
7041
|
/** Is the panel collapsed */
|
|
7018
7042
|
isCollapsed: boolean;
|
|
@@ -7086,15 +7110,15 @@ type PanelGroupContext = {
|
|
|
7086
7110
|
getPanelStyle: (panelData: PanelData, defaultSize: number | undefined) => CSSProperties;
|
|
7087
7111
|
};
|
|
7088
7112
|
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<
|
|
7113
|
+
declare const _default$252: __VLS_WithSlots$47<vue6.DefineComponent<SplitterGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
7090
7114
|
layout: (val: number[]) => any;
|
|
7091
|
-
}, string,
|
|
7115
|
+
}, string, vue6.PublicProps, Readonly<SplitterGroupProps> & Readonly<{
|
|
7092
7116
|
onLayout?: ((val: number[]) => any) | undefined;
|
|
7093
7117
|
}>, {
|
|
7094
7118
|
autoSaveId: string | null;
|
|
7095
7119
|
keyboardResizeBy: number | null;
|
|
7096
7120
|
storage: PanelGroupStorage;
|
|
7097
|
-
}, {}, {}, {}, string,
|
|
7121
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7098
7122
|
default?: (props: {
|
|
7099
7123
|
/** Current size of layout */
|
|
7100
7124
|
layout: number[];
|
|
@@ -7132,13 +7156,13 @@ type SplitterResizeHandleEmits = {
|
|
|
7132
7156
|
/** Event handler called when dragging the handler. */
|
|
7133
7157
|
dragging: [isDragging: boolean];
|
|
7134
7158
|
};
|
|
7135
|
-
declare const _default$254: __VLS_WithSlots$46<
|
|
7159
|
+
declare const _default$254: __VLS_WithSlots$46<vue6.DefineComponent<SplitterResizeHandleProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
7136
7160
|
dragging: (isDragging: boolean) => any;
|
|
7137
|
-
}, string,
|
|
7161
|
+
}, string, vue6.PublicProps, Readonly<SplitterResizeHandleProps> & Readonly<{
|
|
7138
7162
|
onDragging?: ((isDragging: boolean) => any) | undefined;
|
|
7139
7163
|
}>, {
|
|
7140
7164
|
tabindex: number;
|
|
7141
|
-
}, {}, {}, {}, string,
|
|
7165
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7142
7166
|
default?: (props: {}) => any;
|
|
7143
7167
|
}>;
|
|
7144
7168
|
type __VLS_WithSlots$46<T, S> = T & {
|
|
@@ -7150,9 +7174,9 @@ type __VLS_WithSlots$46<T, S> = T & {
|
|
|
7150
7174
|
//#endregion
|
|
7151
7175
|
//#region src/Stepper/StepperDescription.vue.d.ts
|
|
7152
7176
|
interface StepperDescriptionProps extends PrimitiveProps {}
|
|
7153
|
-
declare const _default$255: __VLS_WithSlots$45<
|
|
7154
|
-
as: AsTag |
|
|
7155
|
-
}, {}, {}, {}, string,
|
|
7177
|
+
declare const _default$255: __VLS_WithSlots$45<vue6.DefineComponent<StepperDescriptionProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<StepperDescriptionProps> & Readonly<{}>, {
|
|
7178
|
+
as: AsTag | vue6.Component;
|
|
7179
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7156
7180
|
default?: (props: {}) => any;
|
|
7157
7181
|
}>;
|
|
7158
7182
|
type __VLS_WithSlots$45<T, S> = T & {
|
|
@@ -7164,7 +7188,7 @@ type __VLS_WithSlots$45<T, S> = T & {
|
|
|
7164
7188
|
//#endregion
|
|
7165
7189
|
//#region src/Stepper/StepperIndicator.vue.d.ts
|
|
7166
7190
|
interface StepperIndicatorProps extends PrimitiveProps {}
|
|
7167
|
-
declare const _default$256: __VLS_WithSlots$44<
|
|
7191
|
+
declare const _default$256: __VLS_WithSlots$44<vue6.DefineComponent<StepperIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<StepperIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7168
7192
|
default?: (props: {
|
|
7169
7193
|
/** Current step */
|
|
7170
7194
|
step: number;
|
|
@@ -7196,10 +7220,10 @@ interface StepperItemProps extends PrimitiveProps {
|
|
|
7196
7220
|
/** Shows whether the step is completed. */
|
|
7197
7221
|
completed?: boolean;
|
|
7198
7222
|
}
|
|
7199
|
-
declare const _default$257: __VLS_WithSlots$43<
|
|
7223
|
+
declare const _default$257: __VLS_WithSlots$43<vue6.DefineComponent<StepperItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<StepperItemProps> & Readonly<{}>, {
|
|
7200
7224
|
disabled: boolean;
|
|
7201
7225
|
completed: boolean;
|
|
7202
|
-
}, {}, {}, {}, string,
|
|
7226
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7203
7227
|
default?: (props: {
|
|
7204
7228
|
/** The current state of the stepper item */
|
|
7205
7229
|
state: StepperState;
|
|
@@ -7246,27 +7270,27 @@ type StepperRootEmits = {
|
|
|
7246
7270
|
'update:modelValue': [payload: number | undefined];
|
|
7247
7271
|
};
|
|
7248
7272
|
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<
|
|
7273
|
+
declare const _default$258: __VLS_WithSlots$42<vue6.DefineComponent<StepperRootProps, {
|
|
7250
7274
|
goToStep: (step: number) => void;
|
|
7251
7275
|
nextStep: () => void;
|
|
7252
7276
|
prevStep: () => void;
|
|
7253
|
-
modelValue:
|
|
7254
|
-
totalSteps:
|
|
7255
|
-
isNextDisabled:
|
|
7256
|
-
isPrevDisabled:
|
|
7257
|
-
isFirstStep:
|
|
7258
|
-
isLastStep:
|
|
7277
|
+
modelValue: vue6.WritableComputedRef<number | undefined, number | undefined>;
|
|
7278
|
+
totalSteps: vue6.ComputedRef<number>;
|
|
7279
|
+
isNextDisabled: vue6.ComputedRef<boolean>;
|
|
7280
|
+
isPrevDisabled: vue6.ComputedRef<boolean>;
|
|
7281
|
+
isFirstStep: vue6.ComputedRef<boolean>;
|
|
7282
|
+
isLastStep: vue6.ComputedRef<boolean>;
|
|
7259
7283
|
hasNext: () => boolean;
|
|
7260
7284
|
hasPrev: () => boolean;
|
|
7261
|
-
}, {}, {}, {},
|
|
7285
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
7262
7286
|
"update:modelValue": (payload: number | undefined) => any;
|
|
7263
|
-
}, string,
|
|
7287
|
+
}, string, vue6.PublicProps, Readonly<StepperRootProps> & Readonly<{
|
|
7264
7288
|
"onUpdate:modelValue"?: ((payload: number | undefined) => any) | undefined;
|
|
7265
7289
|
}>, {
|
|
7266
|
-
defaultValue: number;
|
|
7267
7290
|
orientation: DataOrientation;
|
|
7291
|
+
defaultValue: number;
|
|
7268
7292
|
linear: boolean;
|
|
7269
|
-
}, {}, {}, {}, string,
|
|
7293
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7270
7294
|
default?: (props: {
|
|
7271
7295
|
/** Current step */
|
|
7272
7296
|
modelValue: number | undefined;
|
|
@@ -7301,7 +7325,7 @@ type __VLS_WithSlots$42<T, S> = T & {
|
|
|
7301
7325
|
//#endregion
|
|
7302
7326
|
//#region src/Stepper/StepperSeparator.vue.d.ts
|
|
7303
7327
|
interface StepperSeparatorProps extends SeparatorProps {}
|
|
7304
|
-
declare const _default$259: __VLS_WithSlots$41<
|
|
7328
|
+
declare const _default$259: __VLS_WithSlots$41<vue6.DefineComponent<StepperSeparatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<StepperSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7305
7329
|
default?: (props: {}) => any;
|
|
7306
7330
|
}>;
|
|
7307
7331
|
type __VLS_WithSlots$41<T, S> = T & {
|
|
@@ -7313,9 +7337,9 @@ type __VLS_WithSlots$41<T, S> = T & {
|
|
|
7313
7337
|
//#endregion
|
|
7314
7338
|
//#region src/Stepper/StepperTitle.vue.d.ts
|
|
7315
7339
|
interface StepperTitleProps extends PrimitiveProps {}
|
|
7316
|
-
declare const _default$260: __VLS_WithSlots$40<
|
|
7317
|
-
as: AsTag |
|
|
7318
|
-
}, {}, {}, {}, string,
|
|
7340
|
+
declare const _default$260: __VLS_WithSlots$40<vue6.DefineComponent<StepperTitleProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<StepperTitleProps> & Readonly<{}>, {
|
|
7341
|
+
as: AsTag | vue6.Component;
|
|
7342
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7319
7343
|
default?: (props: {}) => any;
|
|
7320
7344
|
}>;
|
|
7321
7345
|
type __VLS_WithSlots$40<T, S> = T & {
|
|
@@ -7327,9 +7351,9 @@ type __VLS_WithSlots$40<T, S> = T & {
|
|
|
7327
7351
|
//#endregion
|
|
7328
7352
|
//#region src/Stepper/StepperTrigger.vue.d.ts
|
|
7329
7353
|
interface StepperTriggerProps extends PrimitiveProps {}
|
|
7330
|
-
declare const _default$261: __VLS_WithSlots$39<
|
|
7331
|
-
as: AsTag |
|
|
7332
|
-
}, {}, {}, {}, string,
|
|
7354
|
+
declare const _default$261: __VLS_WithSlots$39<vue6.DefineComponent<StepperTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<StepperTriggerProps> & Readonly<{}>, {
|
|
7355
|
+
as: AsTag | vue6.Component;
|
|
7356
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7333
7357
|
default?: (props: {}) => any;
|
|
7334
7358
|
}>;
|
|
7335
7359
|
type __VLS_WithSlots$39<T, S> = T & {
|
|
@@ -7361,15 +7385,15 @@ interface SwitchRootContext {
|
|
|
7361
7385
|
disabled: Ref<boolean>;
|
|
7362
7386
|
}
|
|
7363
7387
|
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<
|
|
7388
|
+
declare const _default$262: __VLS_WithSlots$38<vue6.DefineComponent<SwitchRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
7365
7389
|
"update:modelValue": (payload: boolean) => any;
|
|
7366
|
-
}, string,
|
|
7390
|
+
}, string, vue6.PublicProps, Readonly<SwitchRootProps> & Readonly<{
|
|
7367
7391
|
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
7368
7392
|
}>, {
|
|
7369
|
-
modelValue: boolean | null;
|
|
7370
7393
|
value: string;
|
|
7371
|
-
as: AsTag |
|
|
7372
|
-
|
|
7394
|
+
as: AsTag | vue6.Component;
|
|
7395
|
+
modelValue: boolean | null;
|
|
7396
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7373
7397
|
default?: (props: {
|
|
7374
7398
|
/** Current value */
|
|
7375
7399
|
modelValue: boolean;
|
|
@@ -7384,9 +7408,9 @@ type __VLS_WithSlots$38<T, S> = T & {
|
|
|
7384
7408
|
//#endregion
|
|
7385
7409
|
//#region src/Switch/SwitchThumb.vue.d.ts
|
|
7386
7410
|
interface SwitchThumbProps extends PrimitiveProps {}
|
|
7387
|
-
declare const _default$263: __VLS_WithSlots$37<
|
|
7388
|
-
as: AsTag |
|
|
7389
|
-
}, {}, {}, {}, string,
|
|
7411
|
+
declare const _default$263: __VLS_WithSlots$37<vue6.DefineComponent<SwitchThumbProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<SwitchThumbProps> & Readonly<{}>, {
|
|
7412
|
+
as: AsTag | vue6.Component;
|
|
7413
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7390
7414
|
default?: (props: {}) => any;
|
|
7391
7415
|
}>;
|
|
7392
7416
|
type __VLS_WithSlots$37<T, S> = T & {
|
|
@@ -7406,7 +7430,7 @@ interface TabsContentProps extends PrimitiveProps {
|
|
|
7406
7430
|
*/
|
|
7407
7431
|
forceMount?: boolean;
|
|
7408
7432
|
}
|
|
7409
|
-
declare const _default$264: __VLS_WithSlots$36<
|
|
7433
|
+
declare const _default$264: __VLS_WithSlots$36<vue6.DefineComponent<TabsContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7410
7434
|
default?: (props: {}) => any;
|
|
7411
7435
|
}>;
|
|
7412
7436
|
type __VLS_WithSlots$36<T, S> = T & {
|
|
@@ -7418,7 +7442,7 @@ type __VLS_WithSlots$36<T, S> = T & {
|
|
|
7418
7442
|
//#endregion
|
|
7419
7443
|
//#region src/Tabs/TabsIndicator.vue.d.ts
|
|
7420
7444
|
interface TabsIndicatorProps extends PrimitiveProps {}
|
|
7421
|
-
declare const _default$265: __VLS_WithSlots$35<
|
|
7445
|
+
declare const _default$265: __VLS_WithSlots$35<vue6.DefineComponent<TabsIndicatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TabsIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7422
7446
|
default?: (props: {}) => any;
|
|
7423
7447
|
}>;
|
|
7424
7448
|
type __VLS_WithSlots$35<T, S> = T & {
|
|
@@ -7433,9 +7457,9 @@ interface TabsListProps extends PrimitiveProps {
|
|
|
7433
7457
|
/** When `true`, keyboard navigation will loop from last tab to first, and vice versa. */
|
|
7434
7458
|
loop?: boolean;
|
|
7435
7459
|
}
|
|
7436
|
-
declare const _default$266: __VLS_WithSlots$34<
|
|
7460
|
+
declare const _default$266: __VLS_WithSlots$34<vue6.DefineComponent<TabsListProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TabsListProps> & Readonly<{}>, {
|
|
7437
7461
|
loop: boolean;
|
|
7438
|
-
}, {}, {}, {}, string,
|
|
7462
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7439
7463
|
default?: (props: {}) => any;
|
|
7440
7464
|
}>;
|
|
7441
7465
|
type __VLS_WithSlots$34<T, S> = T & {
|
|
@@ -7493,8 +7517,8 @@ declare const injectTabsRootContext: <T extends TabsRootContext | null | undefin
|
|
|
7493
7517
|
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
7518
|
props: __VLS_PrettifyLocal$3<Pick<Partial<{}> & Omit<{
|
|
7495
7519
|
readonly "onUpdate:modelValue"?: ((payload: T) => any) | undefined;
|
|
7496
|
-
} &
|
|
7497
|
-
expose(exposed:
|
|
7520
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onUpdate:modelValue"> & TabsRootProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
7521
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
7498
7522
|
attrs: any;
|
|
7499
7523
|
slots: {
|
|
7500
7524
|
default?: (props: {
|
|
@@ -7503,7 +7527,7 @@ declare const _default$267: <T extends StringOrNumber = StringOrNumber>(__VLS_pr
|
|
|
7503
7527
|
}) => any;
|
|
7504
7528
|
};
|
|
7505
7529
|
emit: (evt: "update:modelValue", payload: T) => void;
|
|
7506
|
-
}>) =>
|
|
7530
|
+
}>) => vue6.VNode & {
|
|
7507
7531
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
7508
7532
|
};
|
|
7509
7533
|
type __VLS_PrettifyLocal$3<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -7516,10 +7540,10 @@ interface TabsTriggerProps extends PrimitiveProps {
|
|
|
7516
7540
|
/** When `true`, prevents the user from interacting with the tab. */
|
|
7517
7541
|
disabled?: boolean;
|
|
7518
7542
|
}
|
|
7519
|
-
declare const _default$268: __VLS_WithSlots$33<
|
|
7543
|
+
declare const _default$268: __VLS_WithSlots$33<vue6.DefineComponent<TabsTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TabsTriggerProps> & Readonly<{}>, {
|
|
7544
|
+
as: AsTag | vue6.Component;
|
|
7520
7545
|
disabled: boolean;
|
|
7521
|
-
|
|
7522
|
-
}, {}, {}, {}, string, vue1606.ComponentProvideOptions, false, {}, any>, {
|
|
7546
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7523
7547
|
default?: (props: {}) => any;
|
|
7524
7548
|
}>;
|
|
7525
7549
|
type __VLS_WithSlots$33<T, S> = T & {
|
|
@@ -7531,9 +7555,9 @@ type __VLS_WithSlots$33<T, S> = T & {
|
|
|
7531
7555
|
//#endregion
|
|
7532
7556
|
//#region src/TagsInput/TagsInputClear.vue.d.ts
|
|
7533
7557
|
interface TagsInputClearProps extends PrimitiveProps {}
|
|
7534
|
-
declare const _default$269: __VLS_WithSlots$32<
|
|
7535
|
-
as: AsTag |
|
|
7536
|
-
}, {}, {}, {}, string,
|
|
7558
|
+
declare const _default$269: __VLS_WithSlots$32<vue6.DefineComponent<TagsInputClearProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TagsInputClearProps> & Readonly<{}>, {
|
|
7559
|
+
as: AsTag | vue6.Component;
|
|
7560
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7537
7561
|
default?: (props: {}) => any;
|
|
7538
7562
|
}>;
|
|
7539
7563
|
type __VLS_WithSlots$32<T, S> = T & {
|
|
@@ -7552,9 +7576,9 @@ interface TagsInputInputProps extends PrimitiveProps {
|
|
|
7552
7576
|
/** Maximum number of character allowed. */
|
|
7553
7577
|
maxLength?: number;
|
|
7554
7578
|
}
|
|
7555
|
-
declare const _default$270: __VLS_WithSlots$31<
|
|
7556
|
-
as: AsTag |
|
|
7557
|
-
}, {}, {}, {}, string,
|
|
7579
|
+
declare const _default$270: __VLS_WithSlots$31<vue6.DefineComponent<TagsInputInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TagsInputInputProps> & Readonly<{}>, {
|
|
7580
|
+
as: AsTag | vue6.Component;
|
|
7581
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7558
7582
|
default?: (props: {}) => any;
|
|
7559
7583
|
}>;
|
|
7560
7584
|
type __VLS_WithSlots$31<T, S> = T & {
|
|
@@ -7627,8 +7651,8 @@ declare const _default$274: <T extends AcceptableInputValue = string>(__VLS_prop
|
|
|
7627
7651
|
readonly onInvalid?: ((payload: T) => any) | undefined;
|
|
7628
7652
|
readonly onAddTag?: ((payload: T) => any) | undefined;
|
|
7629
7653
|
readonly onRemoveTag?: ((payload: T) => any) | undefined;
|
|
7630
|
-
} &
|
|
7631
|
-
expose(exposed:
|
|
7654
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onUpdate:modelValue" | "onInvalid" | "onAddTag" | "onRemoveTag"> & TagsInputRootProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
7655
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
7632
7656
|
attrs: any;
|
|
7633
7657
|
slots: {
|
|
7634
7658
|
default?: (props: {
|
|
@@ -7637,7 +7661,7 @@ declare const _default$274: <T extends AcceptableInputValue = string>(__VLS_prop
|
|
|
7637
7661
|
}) => any;
|
|
7638
7662
|
};
|
|
7639
7663
|
emit: ((evt: "update:modelValue", payload: T[]) => void) & ((evt: "invalid", payload: T) => void) & ((evt: "addTag", payload: T) => void) & ((evt: "removeTag", payload: T) => void);
|
|
7640
|
-
}>) =>
|
|
7664
|
+
}>) => vue6.VNode & {
|
|
7641
7665
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
7642
7666
|
};
|
|
7643
7667
|
type __VLS_PrettifyLocal$2<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -7658,7 +7682,7 @@ interface TagsInputItemContext {
|
|
|
7658
7682
|
textId: string;
|
|
7659
7683
|
}
|
|
7660
7684
|
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<
|
|
7685
|
+
declare const _default$271: __VLS_WithSlots$30<vue6.DefineComponent<TagsInputItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TagsInputItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7662
7686
|
default?: (props: {}) => any;
|
|
7663
7687
|
}>;
|
|
7664
7688
|
type __VLS_WithSlots$30<T, S> = T & {
|
|
@@ -7670,9 +7694,9 @@ type __VLS_WithSlots$30<T, S> = T & {
|
|
|
7670
7694
|
//#endregion
|
|
7671
7695
|
//#region src/TagsInput/TagsInputItemDelete.vue.d.ts
|
|
7672
7696
|
interface TagsInputItemDeleteProps extends PrimitiveProps {}
|
|
7673
|
-
declare const _default$272: __VLS_WithSlots$29<
|
|
7674
|
-
as: AsTag |
|
|
7675
|
-
}, {}, {}, {}, string,
|
|
7697
|
+
declare const _default$272: __VLS_WithSlots$29<vue6.DefineComponent<TagsInputItemDeleteProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TagsInputItemDeleteProps> & Readonly<{}>, {
|
|
7698
|
+
as: AsTag | vue6.Component;
|
|
7699
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7676
7700
|
default?: (props: {}) => any;
|
|
7677
7701
|
}>;
|
|
7678
7702
|
type __VLS_WithSlots$29<T, S> = T & {
|
|
@@ -7684,9 +7708,9 @@ type __VLS_WithSlots$29<T, S> = T & {
|
|
|
7684
7708
|
//#endregion
|
|
7685
7709
|
//#region src/TagsInput/TagsInputItemText.vue.d.ts
|
|
7686
7710
|
interface TagsInputItemTextProps extends PrimitiveProps {}
|
|
7687
|
-
declare const _default$273: __VLS_WithSlots$28<
|
|
7688
|
-
as: AsTag |
|
|
7689
|
-
}, {}, {}, {}, string,
|
|
7711
|
+
declare const _default$273: __VLS_WithSlots$28<vue6.DefineComponent<TagsInputItemTextProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TagsInputItemTextProps> & Readonly<{}>, {
|
|
7712
|
+
as: AsTag | vue6.Component;
|
|
7713
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7690
7714
|
default?: (props: {}) => any;
|
|
7691
7715
|
}>;
|
|
7692
7716
|
type __VLS_WithSlots$28<T, S> = T & {
|
|
@@ -7701,7 +7725,7 @@ interface TimeFieldInputProps extends PrimitiveProps {
|
|
|
7701
7725
|
/** The part of the date to render */
|
|
7702
7726
|
part: SegmentPart;
|
|
7703
7727
|
}
|
|
7704
|
-
declare const _default$275: __VLS_WithSlots$27<
|
|
7728
|
+
declare const _default$275: __VLS_WithSlots$27<vue6.DefineComponent<TimeFieldInputProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TimeFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7705
7729
|
default?: (props: {}) => any;
|
|
7706
7730
|
}>;
|
|
7707
7731
|
type __VLS_WithSlots$27<T, S> = T & {
|
|
@@ -7770,21 +7794,21 @@ type TimeFieldRootEmits = {
|
|
|
7770
7794
|
'update:placeholder': [date: TimeValue];
|
|
7771
7795
|
};
|
|
7772
7796
|
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<
|
|
7797
|
+
declare const _default$276: __VLS_WithSlots$26<vue6.DefineComponent<TimeFieldRootProps, {
|
|
7774
7798
|
/** Helper to set the focused element inside the DateField */
|
|
7775
7799
|
setFocusedElement: (el: HTMLElement) => void;
|
|
7776
|
-
}, {}, {}, {},
|
|
7800
|
+
}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
7777
7801
|
"update:modelValue": (date: TimeValue | undefined) => any;
|
|
7778
7802
|
"update:placeholder": (date: TimeValue) => any;
|
|
7779
|
-
}, string,
|
|
7803
|
+
}, string, vue6.PublicProps, Readonly<TimeFieldRootProps> & Readonly<{
|
|
7780
7804
|
"onUpdate:modelValue"?: ((date: TimeValue | undefined) => any) | undefined;
|
|
7781
7805
|
"onUpdate:placeholder"?: ((date: TimeValue) => any) | undefined;
|
|
7782
7806
|
}>, {
|
|
7783
|
-
defaultValue: TimeValue;
|
|
7784
7807
|
disabled: boolean;
|
|
7808
|
+
defaultValue: TimeValue;
|
|
7785
7809
|
placeholder: TimeValue;
|
|
7786
7810
|
readonly: boolean;
|
|
7787
|
-
}, {}, {}, {}, string,
|
|
7811
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7788
7812
|
default?: (props: {
|
|
7789
7813
|
/** The current time of the field */
|
|
7790
7814
|
modelValue: TimeValue | undefined;
|
|
@@ -7806,9 +7830,9 @@ type __VLS_WithSlots$26<T, S> = T & {
|
|
|
7806
7830
|
//#endregion
|
|
7807
7831
|
//#region src/Toast/ToastClose.vue.d.ts
|
|
7808
7832
|
interface ToastCloseProps extends PrimitiveProps {}
|
|
7809
|
-
declare const _default$278: __VLS_WithSlots$25<
|
|
7810
|
-
as: AsTag |
|
|
7811
|
-
}, {}, {}, {}, string,
|
|
7833
|
+
declare const _default$278: __VLS_WithSlots$25<vue6.DefineComponent<ToastCloseProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToastCloseProps> & Readonly<{}>, {
|
|
7834
|
+
as: AsTag | vue6.Component;
|
|
7835
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7812
7836
|
default?: (props: {}) => any;
|
|
7813
7837
|
}>;
|
|
7814
7838
|
type __VLS_WithSlots$25<T, S> = T & {
|
|
@@ -7828,7 +7852,7 @@ interface ToastActionProps extends ToastCloseProps {
|
|
|
7828
7852
|
*/
|
|
7829
7853
|
altText: string;
|
|
7830
7854
|
}
|
|
7831
|
-
declare const _default$277: __VLS_WithSlots$24<
|
|
7855
|
+
declare const _default$277: __VLS_WithSlots$24<vue6.DefineComponent<ToastActionProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToastActionProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7832
7856
|
default?: (props: {}) => any;
|
|
7833
7857
|
}>;
|
|
7834
7858
|
type __VLS_WithSlots$24<T, S> = T & {
|
|
@@ -7840,7 +7864,7 @@ type __VLS_WithSlots$24<T, S> = T & {
|
|
|
7840
7864
|
//#endregion
|
|
7841
7865
|
//#region src/Toast/ToastDescription.vue.d.ts
|
|
7842
7866
|
interface ToastDescriptionProps extends PrimitiveProps {}
|
|
7843
|
-
declare const _default$279: __VLS_WithSlots$23<
|
|
7867
|
+
declare const _default$279: __VLS_WithSlots$23<vue6.DefineComponent<ToastDescriptionProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToastDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7844
7868
|
default?: (props: {}) => any;
|
|
7845
7869
|
}>;
|
|
7846
7870
|
type __VLS_WithSlots$23<T, S> = T & {
|
|
@@ -7852,7 +7876,7 @@ type __VLS_WithSlots$23<T, S> = T & {
|
|
|
7852
7876
|
//#endregion
|
|
7853
7877
|
//#region src/Toast/ToastPortal.vue.d.ts
|
|
7854
7878
|
interface ToastPortalProps extends TeleportProps {}
|
|
7855
|
-
declare const _default$280: __VLS_WithSlots$22<
|
|
7879
|
+
declare const _default$280: __VLS_WithSlots$22<vue6.DefineComponent<ToastPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToastPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7856
7880
|
default?: (props: {}) => any;
|
|
7857
7881
|
}>;
|
|
7858
7882
|
type __VLS_WithSlots$22<T, S> = T & {
|
|
@@ -7912,12 +7936,12 @@ interface ToastProviderProps {
|
|
|
7912
7936
|
swipeThreshold?: number;
|
|
7913
7937
|
}
|
|
7914
7938
|
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<
|
|
7939
|
+
declare const _default$281: __VLS_WithSlots$21<vue6.DefineComponent<ToastProviderProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToastProviderProps> & Readonly<{}>, {
|
|
7916
7940
|
label: string;
|
|
7917
7941
|
duration: number;
|
|
7918
7942
|
swipeDirection: SwipeDirection;
|
|
7919
7943
|
swipeThreshold: number;
|
|
7920
|
-
}, {}, {}, {}, string,
|
|
7944
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
7921
7945
|
default?: (props: {}) => any;
|
|
7922
7946
|
}>;
|
|
7923
7947
|
type __VLS_WithSlots$21<T, S> = T & {
|
|
@@ -7977,7 +8001,7 @@ interface ToastRootProps extends ToastRootImplProps {
|
|
|
7977
8001
|
*/
|
|
7978
8002
|
forceMount?: boolean;
|
|
7979
8003
|
}
|
|
7980
|
-
declare const _default$282: __VLS_WithSlots$20<
|
|
8004
|
+
declare const _default$282: __VLS_WithSlots$20<vue6.DefineComponent<ToastRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
7981
8005
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
7982
8006
|
"update:open": (value: boolean) => any;
|
|
7983
8007
|
pause: () => any;
|
|
@@ -7986,7 +8010,7 @@ declare const _default$282: __VLS_WithSlots$20<vue1606.DefineComponent<ToastRoot
|
|
|
7986
8010
|
swipeMove: (event: SwipeEvent) => any;
|
|
7987
8011
|
swipeCancel: (event: SwipeEvent) => any;
|
|
7988
8012
|
swipeEnd: (event: SwipeEvent) => any;
|
|
7989
|
-
}, string,
|
|
8013
|
+
}, string, vue6.PublicProps, Readonly<ToastRootProps> & Readonly<{
|
|
7990
8014
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
7991
8015
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
7992
8016
|
onPause?: (() => any) | undefined;
|
|
@@ -7996,11 +8020,11 @@ declare const _default$282: __VLS_WithSlots$20<vue1606.DefineComponent<ToastRoot
|
|
|
7996
8020
|
onSwipeCancel?: ((event: SwipeEvent) => any) | undefined;
|
|
7997
8021
|
onSwipeEnd?: ((event: SwipeEvent) => any) | undefined;
|
|
7998
8022
|
}>, {
|
|
7999
|
-
as: AsTag | vue1606.Component;
|
|
8000
8023
|
type: "foreground" | "background";
|
|
8024
|
+
as: AsTag | vue6.Component;
|
|
8001
8025
|
open: boolean;
|
|
8002
8026
|
defaultOpen: boolean;
|
|
8003
|
-
}, {}, {}, {}, string,
|
|
8027
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8004
8028
|
default?: (props: {
|
|
8005
8029
|
/** Current open state */
|
|
8006
8030
|
open: boolean;
|
|
@@ -8019,7 +8043,7 @@ type __VLS_WithSlots$20<T, S> = T & {
|
|
|
8019
8043
|
//#endregion
|
|
8020
8044
|
//#region src/Toast/ToastTitle.vue.d.ts
|
|
8021
8045
|
interface ToastTitleProps extends PrimitiveProps {}
|
|
8022
|
-
declare const _default$283: __VLS_WithSlots$19<
|
|
8046
|
+
declare const _default$283: __VLS_WithSlots$19<vue6.DefineComponent<ToastTitleProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToastTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8023
8047
|
default?: (props: {}) => any;
|
|
8024
8048
|
}>;
|
|
8025
8049
|
type __VLS_WithSlots$19<T, S> = T & {
|
|
@@ -8044,11 +8068,11 @@ interface ToastViewportProps extends PrimitiveProps {
|
|
|
8044
8068
|
*/
|
|
8045
8069
|
label?: string | ((hotkey: string) => string);
|
|
8046
8070
|
}
|
|
8047
|
-
declare const _default$284: __VLS_WithSlots$18<
|
|
8048
|
-
as: AsTag | vue1606.Component;
|
|
8071
|
+
declare const _default$284: __VLS_WithSlots$18<vue6.DefineComponent<ToastViewportProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToastViewportProps> & Readonly<{}>, {
|
|
8049
8072
|
label: string | ((hotkey: string) => string);
|
|
8073
|
+
as: AsTag | vue6.Component;
|
|
8050
8074
|
hotkey: string[];
|
|
8051
|
-
}, {}, {}, {}, string,
|
|
8075
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8052
8076
|
default?: (props: {}) => any;
|
|
8053
8077
|
}>;
|
|
8054
8078
|
type __VLS_WithSlots$18<T, S> = T & {
|
|
@@ -8078,15 +8102,15 @@ interface ToggleProps extends PrimitiveProps, FormFieldProps {
|
|
|
8078
8102
|
*/
|
|
8079
8103
|
disabled?: boolean;
|
|
8080
8104
|
}
|
|
8081
|
-
declare const _default$285: __VLS_WithSlots$17<
|
|
8105
|
+
declare const _default$285: __VLS_WithSlots$17<vue6.DefineComponent<ToggleProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
8082
8106
|
"update:modelValue": (value: boolean) => any;
|
|
8083
|
-
}, string,
|
|
8107
|
+
}, string, vue6.PublicProps, Readonly<ToggleProps> & Readonly<{
|
|
8084
8108
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
8085
8109
|
}>, {
|
|
8086
|
-
|
|
8110
|
+
as: AsTag | vue6.Component;
|
|
8087
8111
|
disabled: boolean;
|
|
8088
|
-
|
|
8089
|
-
}, {}, {}, {}, string,
|
|
8112
|
+
modelValue: boolean | null;
|
|
8113
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8090
8114
|
default?: (props: {
|
|
8091
8115
|
/** Current value */
|
|
8092
8116
|
modelValue: boolean;
|
|
@@ -8112,9 +8136,9 @@ interface ToggleGroupItemProps extends Omit<ToggleProps, 'name' | 'required' | '
|
|
|
8112
8136
|
*/
|
|
8113
8137
|
value: AcceptableValue;
|
|
8114
8138
|
}
|
|
8115
|
-
declare const _default$286: __VLS_WithSlots$16<
|
|
8116
|
-
as: AsTag |
|
|
8117
|
-
}, {}, {}, {}, string,
|
|
8139
|
+
declare const _default$286: __VLS_WithSlots$16<vue6.DefineComponent<ToggleGroupItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToggleGroupItemProps> & Readonly<{}>, {
|
|
8140
|
+
as: AsTag | vue6.Component;
|
|
8141
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8118
8142
|
default?: (props: {
|
|
8119
8143
|
modelValue: boolean;
|
|
8120
8144
|
state: DataState;
|
|
@@ -8157,15 +8181,15 @@ interface ToggleGroupRootContext {
|
|
|
8157
8181
|
disabled?: Ref<boolean>;
|
|
8158
8182
|
}
|
|
8159
8183
|
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<
|
|
8184
|
+
declare const _default$287: __VLS_WithSlots$15<vue6.DefineComponent<ToggleGroupRootProps<AcceptableValue | AcceptableValue[]>, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
8161
8185
|
"update:modelValue": (payload: AcceptableValue | AcceptableValue[]) => any;
|
|
8162
|
-
}, string,
|
|
8186
|
+
}, string, vue6.PublicProps, Readonly<ToggleGroupRootProps<AcceptableValue | AcceptableValue[]>> & Readonly<{
|
|
8163
8187
|
"onUpdate:modelValue"?: ((payload: AcceptableValue | AcceptableValue[]) => any) | undefined;
|
|
8164
8188
|
}>, {
|
|
8165
8189
|
disabled: boolean;
|
|
8166
8190
|
loop: boolean;
|
|
8167
8191
|
rovingFocus: boolean;
|
|
8168
|
-
}, {}, {}, {}, string,
|
|
8192
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8169
8193
|
default?: (props: {
|
|
8170
8194
|
/** Current toggle values */
|
|
8171
8195
|
modelValue: AcceptableValue | AcceptableValue[] | undefined;
|
|
@@ -8182,9 +8206,9 @@ type __VLS_WithSlots$15<T, S> = T & {
|
|
|
8182
8206
|
interface ToolbarButtonProps extends PrimitiveProps {
|
|
8183
8207
|
disabled?: boolean;
|
|
8184
8208
|
}
|
|
8185
|
-
declare const _default$288: __VLS_WithSlots$14<
|
|
8186
|
-
as: AsTag |
|
|
8187
|
-
}, {}, {}, {}, string,
|
|
8209
|
+
declare const _default$288: __VLS_WithSlots$14<vue6.DefineComponent<ToolbarButtonProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToolbarButtonProps> & Readonly<{}>, {
|
|
8210
|
+
as: AsTag | vue6.Component;
|
|
8211
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8188
8212
|
default?: (props: {}) => any;
|
|
8189
8213
|
}>;
|
|
8190
8214
|
type __VLS_WithSlots$14<T, S> = T & {
|
|
@@ -8196,9 +8220,9 @@ type __VLS_WithSlots$14<T, S> = T & {
|
|
|
8196
8220
|
//#endregion
|
|
8197
8221
|
//#region src/Toolbar/ToolbarLink.vue.d.ts
|
|
8198
8222
|
interface ToolbarLinkProps extends PrimitiveProps {}
|
|
8199
|
-
declare const _default$289: __VLS_WithSlots$13<
|
|
8200
|
-
as: AsTag |
|
|
8201
|
-
}, {}, {}, {}, string,
|
|
8223
|
+
declare const _default$289: __VLS_WithSlots$13<vue6.DefineComponent<ToolbarLinkProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToolbarLinkProps> & Readonly<{}>, {
|
|
8224
|
+
as: AsTag | vue6.Component;
|
|
8225
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8202
8226
|
default?: (props: {}) => any;
|
|
8203
8227
|
}>;
|
|
8204
8228
|
type __VLS_WithSlots$13<T, S> = T & {
|
|
@@ -8222,9 +8246,9 @@ interface ToolbarRootContext {
|
|
|
8222
8246
|
dir: Ref<Direction>;
|
|
8223
8247
|
}
|
|
8224
8248
|
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<
|
|
8249
|
+
declare const _default$290: __VLS_WithSlots$12<vue6.DefineComponent<ToolbarRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToolbarRootProps> & Readonly<{}>, {
|
|
8226
8250
|
orientation: DataOrientation;
|
|
8227
|
-
}, {}, {}, {}, string,
|
|
8251
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8228
8252
|
default?: (props: {}) => any;
|
|
8229
8253
|
}>;
|
|
8230
8254
|
type __VLS_WithSlots$12<T, S> = T & {
|
|
@@ -8236,7 +8260,7 @@ type __VLS_WithSlots$12<T, S> = T & {
|
|
|
8236
8260
|
//#endregion
|
|
8237
8261
|
//#region src/Toolbar/ToolbarSeparator.vue.d.ts
|
|
8238
8262
|
interface ToolbarSeparatorProps extends PrimitiveProps {}
|
|
8239
|
-
declare const _default$291: __VLS_WithSlots$11<
|
|
8263
|
+
declare const _default$291: __VLS_WithSlots$11<vue6.DefineComponent<ToolbarSeparatorProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToolbarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8240
8264
|
default?: (props: {}) => any;
|
|
8241
8265
|
}>;
|
|
8242
8266
|
type __VLS_WithSlots$11<T, S> = T & {
|
|
@@ -8249,11 +8273,11 @@ type __VLS_WithSlots$11<T, S> = T & {
|
|
|
8249
8273
|
//#region src/Toolbar/ToolbarToggleGroup.vue.d.ts
|
|
8250
8274
|
type ToolbarToggleGroupEmits = ToggleGroupRootEmits;
|
|
8251
8275
|
interface ToolbarToggleGroupProps extends ToggleGroupRootProps {}
|
|
8252
|
-
declare const _default$292: __VLS_WithSlots$10<
|
|
8276
|
+
declare const _default$292: __VLS_WithSlots$10<vue6.DefineComponent<ToolbarToggleGroupProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
8253
8277
|
"update:modelValue": (payload: AcceptableValue | AcceptableValue[]) => any;
|
|
8254
|
-
}, string,
|
|
8278
|
+
}, string, vue6.PublicProps, Readonly<ToolbarToggleGroupProps> & Readonly<{
|
|
8255
8279
|
"onUpdate:modelValue"?: ((payload: AcceptableValue | AcceptableValue[]) => any) | undefined;
|
|
8256
|
-
}>, {}, {}, {}, {}, string,
|
|
8280
|
+
}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8257
8281
|
default?: (props: {}) => any;
|
|
8258
8282
|
}>;
|
|
8259
8283
|
type __VLS_WithSlots$10<T, S> = T & {
|
|
@@ -8265,7 +8289,7 @@ type __VLS_WithSlots$10<T, S> = T & {
|
|
|
8265
8289
|
//#endregion
|
|
8266
8290
|
//#region src/Toolbar/ToolbarToggleItem.vue.d.ts
|
|
8267
8291
|
interface ToolbarToggleItemProps extends ToggleGroupItemProps {}
|
|
8268
|
-
declare const _default$293: __VLS_WithSlots$9<
|
|
8292
|
+
declare const _default$293: __VLS_WithSlots$9<vue6.DefineComponent<ToolbarToggleItemProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ToolbarToggleItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8269
8293
|
default?: (props: {}) => any;
|
|
8270
8294
|
}>;
|
|
8271
8295
|
type __VLS_WithSlots$9<T, S> = T & {
|
|
@@ -8290,11 +8314,11 @@ interface TooltipArrowProps extends PrimitiveProps {
|
|
|
8290
8314
|
*/
|
|
8291
8315
|
height?: number;
|
|
8292
8316
|
}
|
|
8293
|
-
declare const _default$294: __VLS_WithSlots$8<
|
|
8294
|
-
as: AsTag |
|
|
8317
|
+
declare const _default$294: __VLS_WithSlots$8<vue6.DefineComponent<TooltipArrowProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TooltipArrowProps> & Readonly<{}>, {
|
|
8318
|
+
as: AsTag | vue6.Component;
|
|
8295
8319
|
width: number;
|
|
8296
8320
|
height: number;
|
|
8297
|
-
}, {}, {}, {}, string,
|
|
8321
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8298
8322
|
default?: (props: {}) => any;
|
|
8299
8323
|
}>;
|
|
8300
8324
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
@@ -8332,15 +8356,15 @@ interface TooltipContentProps extends TooltipContentImplProps {
|
|
|
8332
8356
|
*/
|
|
8333
8357
|
forceMount?: boolean;
|
|
8334
8358
|
}
|
|
8335
|
-
declare const _default$295: __VLS_WithSlots$7<
|
|
8359
|
+
declare const _default$295: __VLS_WithSlots$7<vue6.DefineComponent<TooltipContentProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
8336
8360
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8337
8361
|
pointerDownOutside: (event: Event) => any;
|
|
8338
|
-
}, string,
|
|
8362
|
+
}, string, vue6.PublicProps, Readonly<TooltipContentProps> & Readonly<{
|
|
8339
8363
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
8340
8364
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
8341
8365
|
}>, {
|
|
8342
8366
|
side: Side;
|
|
8343
|
-
}, {}, {}, {}, string,
|
|
8367
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8344
8368
|
default?: (props: {}) => any;
|
|
8345
8369
|
}>;
|
|
8346
8370
|
type __VLS_WithSlots$7<T, S> = T & {
|
|
@@ -8352,7 +8376,7 @@ type __VLS_WithSlots$7<T, S> = T & {
|
|
|
8352
8376
|
//#endregion
|
|
8353
8377
|
//#region src/Tooltip/TooltipPortal.vue.d.ts
|
|
8354
8378
|
interface TooltipPortalProps extends TeleportProps {}
|
|
8355
|
-
declare const _default$296: __VLS_WithSlots$6<
|
|
8379
|
+
declare const _default$296: __VLS_WithSlots$6<vue6.DefineComponent<TooltipPortalProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TooltipPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8356
8380
|
default?: (props: {}) => any;
|
|
8357
8381
|
}>;
|
|
8358
8382
|
type __VLS_WithSlots$6<T, S> = T & {
|
|
@@ -8410,12 +8434,12 @@ interface TooltipProviderProps {
|
|
|
8410
8434
|
*/
|
|
8411
8435
|
ignoreNonKeyboardFocus?: boolean;
|
|
8412
8436
|
}
|
|
8413
|
-
declare const _default$297: __VLS_WithSlots$5<
|
|
8437
|
+
declare const _default$297: __VLS_WithSlots$5<vue6.DefineComponent<TooltipProviderProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {
|
|
8414
8438
|
delayDuration: number;
|
|
8415
8439
|
skipDelayDuration: number;
|
|
8416
8440
|
disableHoverableContent: boolean;
|
|
8417
8441
|
ignoreNonKeyboardFocus: boolean;
|
|
8418
|
-
}, {}, {}, {}, string,
|
|
8442
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8419
8443
|
default?: (props: {}) => any;
|
|
8420
8444
|
}>;
|
|
8421
8445
|
type __VLS_WithSlots$5<T, S> = T & {
|
|
@@ -8488,19 +8512,19 @@ interface TooltipContext {
|
|
|
8488
8512
|
ignoreNonKeyboardFocus: Ref<boolean>;
|
|
8489
8513
|
}
|
|
8490
8514
|
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<
|
|
8515
|
+
declare const _default$298: __VLS_WithSlots$4<vue6.DefineComponent<TooltipRootProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {
|
|
8492
8516
|
"update:open": (value: boolean) => any;
|
|
8493
|
-
}, string,
|
|
8517
|
+
}, string, vue6.PublicProps, Readonly<TooltipRootProps> & Readonly<{
|
|
8494
8518
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
8495
8519
|
}>, {
|
|
8496
|
-
disabled: boolean;
|
|
8497
8520
|
open: boolean;
|
|
8498
8521
|
defaultOpen: boolean;
|
|
8522
|
+
disabled: boolean;
|
|
8499
8523
|
delayDuration: number;
|
|
8500
8524
|
disableHoverableContent: boolean;
|
|
8501
8525
|
disableClosingTrigger: boolean;
|
|
8502
8526
|
ignoreNonKeyboardFocus: boolean;
|
|
8503
|
-
}, {}, {}, {}, string,
|
|
8527
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8504
8528
|
default?: (props: {
|
|
8505
8529
|
/** Current open state */
|
|
8506
8530
|
open: boolean;
|
|
@@ -8515,9 +8539,9 @@ type __VLS_WithSlots$4<T, S> = T & {
|
|
|
8515
8539
|
//#endregion
|
|
8516
8540
|
//#region src/Tooltip/TooltipTrigger.vue.d.ts
|
|
8517
8541
|
interface TooltipTriggerProps extends PopperAnchorProps {}
|
|
8518
|
-
declare const _default$299: __VLS_WithSlots$3<
|
|
8519
|
-
as: AsTag |
|
|
8520
|
-
}, {}, {}, {}, string,
|
|
8542
|
+
declare const _default$299: __VLS_WithSlots$3<vue6.DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {
|
|
8543
|
+
as: AsTag | vue6.Component;
|
|
8544
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8521
8545
|
default?: (props: {}) => any;
|
|
8522
8546
|
}>;
|
|
8523
8547
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
@@ -8556,11 +8580,11 @@ declare const _default$300: <T extends Record<string, any>>(__VLS_props: NonNull
|
|
|
8556
8580
|
props: __VLS_PrettifyLocal$1<Pick<Partial<{}> & Omit<{
|
|
8557
8581
|
readonly onSelect?: ((event: SelectEvent$3<T>) => any) | undefined;
|
|
8558
8582
|
readonly onToggle?: ((event: ToggleEvent<T>) => any) | undefined;
|
|
8559
|
-
} &
|
|
8560
|
-
expose(exposed:
|
|
8561
|
-
isExpanded:
|
|
8562
|
-
isSelected:
|
|
8563
|
-
isIndeterminate:
|
|
8583
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onSelect" | "onToggle"> & TreeItemProps<T> & Partial<{}>> & vue6.PublicProps;
|
|
8584
|
+
expose(exposed: vue6.ShallowUnwrapRef<{
|
|
8585
|
+
isExpanded: vue6.ComputedRef<boolean>;
|
|
8586
|
+
isSelected: vue6.ComputedRef<boolean>;
|
|
8587
|
+
isIndeterminate: vue6.ComputedRef<boolean | undefined>;
|
|
8564
8588
|
handleToggle: () => void;
|
|
8565
8589
|
handleSelect: () => void;
|
|
8566
8590
|
}>): void;
|
|
@@ -8575,7 +8599,7 @@ declare const _default$300: <T extends Record<string, any>>(__VLS_props: NonNull
|
|
|
8575
8599
|
}) => any;
|
|
8576
8600
|
};
|
|
8577
8601
|
emit: ((evt: "select", event: SelectEvent$3<T>) => void) & ((evt: "toggle", event: ToggleEvent<T>) => void);
|
|
8578
|
-
}>) =>
|
|
8602
|
+
}>) => vue6.VNode & {
|
|
8579
8603
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
8580
8604
|
};
|
|
8581
8605
|
type __VLS_PrettifyLocal$1<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -8651,8 +8675,8 @@ declare const _default$301: <T extends Record<string, any>, U extends Record<str
|
|
|
8651
8675
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
8652
8676
|
readonly "onUpdate:modelValue"?: ((val: M extends true ? U[] : U) => any) | undefined;
|
|
8653
8677
|
readonly "onUpdate:expanded"?: ((val: string[]) => any) | undefined;
|
|
8654
|
-
} &
|
|
8655
|
-
expose(exposed:
|
|
8678
|
+
} & vue6.VNodeProps & vue6.AllowedComponentProps & vue6.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:expanded"> & TreeRootProps<T, U, M> & Partial<{}>> & vue6.PublicProps;
|
|
8679
|
+
expose(exposed: vue6.ShallowUnwrapRef<{}>): void;
|
|
8656
8680
|
attrs: any;
|
|
8657
8681
|
slots: {
|
|
8658
8682
|
default?: (props: {
|
|
@@ -8662,7 +8686,7 @@ declare const _default$301: <T extends Record<string, any>, U extends Record<str
|
|
|
8662
8686
|
}) => any;
|
|
8663
8687
|
};
|
|
8664
8688
|
emit: ((evt: "update:modelValue", val: M extends true ? U[] : U) => void) & ((evt: "update:expanded", val: string[]) => void);
|
|
8665
|
-
}>) =>
|
|
8689
|
+
}>) => vue6.VNode & {
|
|
8666
8690
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
8667
8691
|
};
|
|
8668
8692
|
type __VLS_PrettifyLocal<T> = { [K in keyof T]: T[K] } & {};
|
|
@@ -8677,7 +8701,7 @@ interface TreeVirtualizerProps {
|
|
|
8677
8701
|
/** Text content for each item to achieve type-ahead feature */
|
|
8678
8702
|
textContent?: (item: Record<string, any>) => string;
|
|
8679
8703
|
}
|
|
8680
|
-
declare const _default$302: __VLS_WithSlots$2<
|
|
8704
|
+
declare const _default$302: __VLS_WithSlots$2<vue6.DefineComponent<TreeVirtualizerProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<TreeVirtualizerProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8681
8705
|
default?: (props: {
|
|
8682
8706
|
item: FlattenedItem<Record<string, any>>;
|
|
8683
8707
|
virtualizer: Virtualizer<Element | Window, Element>;
|
|
@@ -8698,7 +8722,7 @@ interface ViewportProps extends PrimitiveProps {
|
|
|
8698
8722
|
*/
|
|
8699
8723
|
nonce?: string;
|
|
8700
8724
|
}
|
|
8701
|
-
declare const _default$303: __VLS_WithSlots$1<
|
|
8725
|
+
declare const _default$303: __VLS_WithSlots$1<vue6.DefineComponent<ViewportProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<ViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8702
8726
|
default?: (props: {}) => any;
|
|
8703
8727
|
}>;
|
|
8704
8728
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
@@ -8712,10 +8736,10 @@ type __VLS_WithSlots$1<T, S> = T & {
|
|
|
8712
8736
|
interface VisuallyHiddenProps extends PrimitiveProps {
|
|
8713
8737
|
feature?: 'focusable' | 'fully-hidden';
|
|
8714
8738
|
}
|
|
8715
|
-
declare const _default$304: __VLS_WithSlots<
|
|
8716
|
-
as: AsTag |
|
|
8739
|
+
declare const _default$304: __VLS_WithSlots<vue6.DefineComponent<VisuallyHiddenProps, {}, {}, {}, {}, vue6.ComponentOptionsMixin, vue6.ComponentOptionsMixin, {}, string, vue6.PublicProps, Readonly<VisuallyHiddenProps> & Readonly<{}>, {
|
|
8740
|
+
as: AsTag | vue6.Component;
|
|
8717
8741
|
feature: "focusable" | "fully-hidden";
|
|
8718
|
-
}, {}, {}, {}, string,
|
|
8742
|
+
}, {}, {}, {}, string, vue6.ComponentProvideOptions, false, {}, any>, {
|
|
8719
8743
|
default?: (props: {}) => any;
|
|
8720
8744
|
}>;
|
|
8721
8745
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -8726,5 +8750,5 @@ type __VLS_WithSlots<T, S> = T & {
|
|
|
8726
8750
|
//# sourceMappingURL=VisuallyHidden.vue.d.ts.map
|
|
8727
8751
|
|
|
8728
8752
|
//#endregion
|
|
8729
|
-
export { AcceptableInputValue, AcceptableValue, _default as AccordionContent, AccordionContentProps, _default$1 as AccordionHeader, AccordionHeaderProps, _default$2 as AccordionItem, AccordionItemProps, _default$3 as AccordionRoot, AccordionRootEmits, AccordionRootProps, _default$4 as AccordionTrigger, AccordionTriggerProps, _default$5 as AlertDialogAction, AlertDialogActionProps, _default$6 as AlertDialogCancel, AlertDialogCancelProps, _default$7 as AlertDialogContent, AlertDialogContentEmits, AlertDialogContentProps, _default$8 as AlertDialogDescription, AlertDialogDescriptionProps, AlertDialogEmits, _default$9 as AlertDialogOverlay, AlertDialogOverlayProps, _default$10 as AlertDialogPortal, AlertDialogPortalProps, AlertDialogProps, _default$11 as AlertDialogRoot, _default$12 as AlertDialogTitle, AlertDialogTitleProps, _default$13 as AlertDialogTrigger, AlertDialogTriggerProps, AsTag, _default$14 as AspectRatio, AspectRatioProps, _default$15 as AvatarFallback, AvatarFallbackProps, _default$16 as AvatarImage, AvatarImageEmits, AvatarImageProps, _default$17 as AvatarRoot, AvatarRootProps, _default$18 as CalendarCell, CalendarCellProps, _default$19 as CalendarCellTrigger, CalendarCellTriggerProps, _default$20 as CalendarGrid, _default$21 as CalendarGridBody, CalendarGridBodyProps, _default$22 as CalendarGridHead, CalendarGridHeadProps, CalendarGridProps, _default$23 as CalendarGridRow, CalendarGridRowProps, _default$24 as CalendarHeadCell, CalendarHeadCellProps, _default$25 as CalendarHeader, CalendarHeaderProps, _default$26 as CalendarHeading, CalendarHeadingProps, _default$27 as CalendarNext, CalendarNextProps, _default$28 as CalendarPrev, CalendarPrevProps, _default$29 as CalendarRoot, CalendarRootEmits, CalendarRootProps, CheckedState as CheckboxCheckedState, _default$30 as CheckboxGroupRoot, CheckboxGroupRootEmits, CheckboxGroupRootProps, _default$31 as CheckboxIndicator, CheckboxIndicatorProps, _default$32 as CheckboxRoot, CheckboxRootEmits, CheckboxRootProps, _default$33 as CollapsibleContent, CollapsibleContentEmits, CollapsibleContentProps, _default$34 as CollapsibleRoot, CollapsibleRootEmits, CollapsibleRootProps, _default$35 as CollapsibleTrigger, CollapsibleTriggerProps, _default$36 as ComboboxAnchor, ComboboxAnchorProps, _default$37 as ComboboxArrow, ComboboxArrowProps, _default$38 as ComboboxCancel, ComboboxCancelProps, _default$39 as ComboboxContent, ComboboxContentEmits, ComboboxContentProps, _default$40 as ComboboxEmpty, ComboboxEmptyProps, _default$41 as ComboboxGroup, ComboboxGroupProps, _default$42 as ComboboxInput, ComboboxInputEmits, ComboboxInputProps, _default$43 as ComboboxItem, ComboboxItemEmits, _default$44 as ComboboxItemIndicator, ComboboxItemIndicatorProps, ComboboxItemProps, _default$45 as ComboboxLabel, ComboboxLabelProps, _default$46 as ComboboxPortal, ComboboxPortalProps, _default$47 as ComboboxRoot, ComboboxRootEmits, ComboboxRootProps, _default$48 as ComboboxSeparator, ComboboxSeparatorProps, _default$49 as ComboboxTrigger, ComboboxTriggerProps, _default$50 as ComboboxViewport, ComboboxViewportProps, _default$51 as ComboboxVirtualizer, ComboboxVirtualizerProps, _default$52 as ConfigProvider, ConfigProviderProps, _default$53 as ContextMenuArrow, ContextMenuArrowProps, _default$54 as ContextMenuCheckboxItem, ContextMenuCheckboxItemEmits, ContextMenuCheckboxItemProps, _default$55 as ContextMenuContent, ContextMenuContentEmits, ContextMenuContentProps, _default$56 as ContextMenuGroup, ContextMenuGroupProps, _default$57 as ContextMenuItem, ContextMenuItemEmits, _default$58 as ContextMenuItemIndicator, ContextMenuItemIndicatorProps, ContextMenuItemProps, _default$59 as ContextMenuLabel, ContextMenuLabelProps, _default$60 as ContextMenuPortal, ContextMenuPortalProps, _default$61 as ContextMenuRadioGroup, ContextMenuRadioGroupEmits, ContextMenuRadioGroupProps, _default$62 as ContextMenuRadioItem, ContextMenuRadioItemEmits, ContextMenuRadioItemProps, _default$63 as ContextMenuRoot, ContextMenuRootEmits, ContextMenuRootProps, _default$64 as ContextMenuSeparator, ContextMenuSeparatorProps, _default$65 as ContextMenuSub, _default$66 as ContextMenuSubContent, ContextMenuSubContentEmits, ContextMenuSubContentProps, ContextMenuSubEmits, ContextMenuSubProps, _default$67 as ContextMenuSubTrigger, ContextMenuSubTriggerProps, _default$68 as ContextMenuTrigger, ContextMenuTriggerProps, _default$69 as DateFieldInput, DateFieldInputProps, _default$70 as DateFieldRoot, DateFieldRootEmits, DateFieldRootProps, _default$71 as DatePickerAnchor, _default$72 as DatePickerArrow, _default$73 as DatePickerCalendar, _default$74 as DatePickerCell, DatePickerCellProps, _default$75 as DatePickerCellTrigger, DatePickerCellTriggerProps, _default$76 as DatePickerClose, _default$77 as DatePickerContent, DatePickerContentProps, _default$78 as DatePickerField, _default$79 as DatePickerGrid, _default$80 as DatePickerGridBody, DatePickerGridBodyProps, _default$81 as DatePickerGridHead, DatePickerGridHeadProps, DatePickerGridProps, _default$82 as DatePickerGridRow, DatePickerGridRowProps, _default$83 as DatePickerHeadCell, DatePickerHeadCellProps, _default$84 as DatePickerHeader, DatePickerHeaderProps, _default$85 as DatePickerHeading, DatePickerHeadingProps, _default$86 as DatePickerInput, DatePickerInputProps, _default$87 as DatePickerNext, DatePickerNextProps, _default$88 as DatePickerPrev, DatePickerPrevProps, _default$89 as DatePickerRoot, DatePickerRootEmits, DatePickerRootProps, _default$90 as DatePickerTrigger, DatePickerTriggerProps, DateRange, _default$91 as DateRangeFieldInput, DateRangeFieldInputProps, _default$92 as DateRangeFieldRoot, DateRangeFieldRootEmits, DateRangeFieldRootProps, _default$93 as DateRangePickerAnchor, _default$94 as DateRangePickerArrow, _default$95 as DateRangePickerCalendar, _default$96 as DateRangePickerCell, DateRangePickerCellProps, _default$97 as DateRangePickerCellTrigger, DateRangePickerCellTriggerProps, _default$98 as DateRangePickerClose, _default$99 as DateRangePickerContent, DateRangePickerContentProps, _default$100 as DateRangePickerField, _default$101 as DateRangePickerGrid, _default$102 as DateRangePickerGridBody, DateRangePickerGridBodyProps, _default$103 as DateRangePickerGridHead, DateRangePickerGridHeadProps, DateRangePickerGridProps, _default$104 as DateRangePickerGridRow, DateRangePickerGridRowProps, _default$105 as DateRangePickerHeadCell, DateRangePickerHeadCellProps, _default$106 as DateRangePickerHeader, DateRangePickerHeaderProps, _default$107 as DateRangePickerHeading, DateRangePickerHeadingProps, _default$108 as DateRangePickerInput, DateRangePickerInputProps, _default$109 as DateRangePickerNext, DateRangePickerNextProps, _default$110 as DateRangePickerPrev, DateRangePickerPrevProps, _default$111 as DateRangePickerRoot, DateRangePickerRootEmits, DateRangePickerRootProps, _default$112 as DateRangePickerTrigger, DateRangePickerTriggerProps, DateValue, _default$113 as DialogClose, DialogCloseProps, _default$114 as DialogContent, DialogContentEmits, DialogContentProps, _default$115 as DialogDescription, DialogDescriptionProps, _default$116 as DialogOverlay, DialogOverlayProps, _default$117 as DialogPortal, DialogPortalProps, _default$118 as DialogRoot, DialogRootEmits, DialogRootProps, _default$119 as DialogTitle, DialogTitleProps, _default$120 as DialogTrigger, DialogTriggerProps, _default$121 as DropdownMenuArrow, DropdownMenuArrowProps, _default$122 as DropdownMenuCheckboxItem, DropdownMenuCheckboxItemEmits, DropdownMenuCheckboxItemProps, _default$123 as DropdownMenuContent, DropdownMenuContentEmits, DropdownMenuContentProps, _default$124 as DropdownMenuGroup, DropdownMenuGroupProps, _default$125 as DropdownMenuItem, DropdownMenuItemEmits, _default$126 as DropdownMenuItemIndicator, DropdownMenuItemIndicatorProps, DropdownMenuItemProps, _default$127 as DropdownMenuLabel, DropdownMenuLabelProps, _default$128 as DropdownMenuPortal, DropdownMenuPortalProps, _default$129 as DropdownMenuRadioGroup, DropdownMenuRadioGroupEmits, DropdownMenuRadioGroupProps, _default$130 as DropdownMenuRadioItem, DropdownMenuRadioItemEmits, DropdownMenuRadioItemProps, _default$131 as DropdownMenuRoot, DropdownMenuRootEmits, DropdownMenuRootProps, _default$132 as DropdownMenuSeparator, DropdownMenuSeparatorProps, _default$133 as DropdownMenuSub, _default$134 as DropdownMenuSubContent, DropdownMenuSubContentEmits, DropdownMenuSubContentProps, DropdownMenuSubEmits, DropdownMenuSubProps, _default$135 as DropdownMenuSubTrigger, DropdownMenuSubTriggerProps, _default$136 as DropdownMenuTrigger, DropdownMenuTriggerProps, _default$137 as EditableArea, EditableAreaProps, _default$138 as EditableCancelTrigger, EditableCancelTriggerProps, _default$139 as EditableEditTrigger, EditableEditTriggerProps, _default$140 as EditableInput, EditableInputProps, _default$141 as EditablePreview, EditablePreviewProps, _default$142 as EditableRoot, EditableRootEmits, EditableRootProps, _default$143 as EditableSubmitTrigger, EditableSubmitTriggerProps, FlattenedItem, FocusOutsideEvent, _default$144 as FocusScope, FocusScopeEmits, FocusScopeProps, Formatter, GenericComponentInstance, _default$145 as HoverCardArrow, HoverCardArrowProps, _default$146 as HoverCardContent, HoverCardContentProps, _default$147 as HoverCardPortal, HoverCardPortalProps, _default$148 as HoverCardRoot, HoverCardRootEmits, HoverCardRootProps, _default$149 as HoverCardTrigger, HoverCardTriggerProps, _default$150 as Label, LabelProps, _default$151 as ListboxContent, ListboxContentProps, _default$152 as ListboxFilter, ListboxFilterEmits, ListboxFilterProps, _default$153 as ListboxGroup, _default$154 as ListboxGroupLabel, ListboxGroupLabelProps, ListboxGroupProps, _default$155 as ListboxItem, ListboxItemEmits, _default$156 as ListboxItemIndicator, ListboxItemIndicatorProps, ListboxItemProps, SelectEvent as ListboxItemSelectEvent, _default$157 as ListboxRoot, ListboxRootEmits, ListboxRootProps, _default$158 as ListboxVirtualizer, ListboxVirtualizerProps, _default$159 as MenubarArrow, MenubarArrowProps, _default$160 as MenubarCheckboxItem, MenubarCheckboxItemEmits, MenubarCheckboxItemProps, _default$161 as MenubarContent, MenubarContentProps, _default$162 as MenubarGroup, MenubarGroupProps, _default$163 as MenubarItem, MenubarItemEmits, _default$164 as MenubarItemIndicator, MenubarItemIndicatorProps, MenubarItemProps, _default$165 as MenubarLabel, MenubarLabelProps, _default$166 as MenubarMenu, MenubarMenuProps, _default$167 as MenubarPortal, MenubarPortalProps, _default$168 as MenubarRadioGroup, MenubarRadioGroupEmits, MenubarRadioGroupProps, _default$169 as MenubarRadioItem, MenubarRadioItemEmits, MenubarRadioItemProps, _default$170 as MenubarRoot, MenubarRootEmits, MenubarRootProps, _default$171 as MenubarSeparator, MenubarSeparatorProps, _default$172 as MenubarSub, _default$173 as MenubarSubContent, MenubarSubContentEmits, MenubarSubContentProps, MenubarSubEmits, MenubarSubProps, _default$174 as MenubarSubTrigger, MenubarSubTriggerProps, _default$175 as MenubarTrigger, MenubarTriggerProps, _default$176 as NavigationMenuContent, NavigationMenuContentEmits, NavigationMenuContentProps, _default$177 as NavigationMenuIndicator, NavigationMenuIndicatorProps, _default$178 as NavigationMenuItem, NavigationMenuItemProps, _default$179 as NavigationMenuLink, NavigationMenuLinkEmits, NavigationMenuLinkProps, _default$180 as NavigationMenuList, NavigationMenuListProps, _default$181 as NavigationMenuRoot, NavigationMenuRootEmits, NavigationMenuRootProps, _default$182 as NavigationMenuSub, NavigationMenuSubEmits, NavigationMenuSubProps, _default$183 as NavigationMenuTrigger, NavigationMenuTriggerProps, _default$184 as NavigationMenuViewport, NavigationMenuViewportProps, _default$185 as NumberFieldDecrement, NumberFieldDecrementProps, _default$186 as NumberFieldIncrement, NumberFieldIncrementProps, _default$187 as NumberFieldInput, NumberFieldInputProps, _default$188 as NumberFieldRoot, NumberFieldRootEmits, NumberFieldRootProps, _default$189 as PaginationEllipsis, PaginationEllipsisProps, _default$190 as PaginationFirst, PaginationFirstProps, _default$191 as PaginationLast, PaginationLastProps, _default$192 as PaginationList, _default$193 as PaginationListItem, PaginationListItemProps, PaginationListProps, _default$194 as PaginationNext, PaginationNextProps, _default$195 as PaginationPrev, PaginationPrevProps, _default$196 as PaginationRoot, PaginationRootEmits, PaginationRootProps, _default$197 as PinInputInput, PinInputInputProps, _default$198 as PinInputRoot, PinInputRootEmits, PinInputRootProps, PointerDownOutsideEvent, _default$199 as PopoverAnchor, PopoverAnchorProps, _default$200 as PopoverArrow, PopoverArrowProps, _default$201 as PopoverClose, PopoverCloseProps, _default$202 as PopoverContent, PopoverContentEmits, PopoverContentProps, _default$203 as PopoverPortal, PopoverPortalProps, _default$204 as PopoverRoot, PopoverRootEmits, PopoverRootProps, _default$205 as PopoverTrigger, PopoverTriggerProps, _default$206 as Presence, PresenceProps, Primitive, PrimitiveProps, _default$207 as ProgressIndicator, ProgressIndicatorProps, _default$208 as ProgressRoot, ProgressRootEmits, ProgressRootProps, _default$209 as RadioGroupIndicator, RadioGroupIndicatorProps, _default$210 as RadioGroupItem, RadioGroupItemProps, SelectEvent$1 as RadioGroupItemSelectEvent, _default$211 as RadioGroupRoot, RadioGroupRootEmits, RadioGroupRootProps, _default$212 as RangeCalendarCell, RangeCalendarCellProps, _default$213 as RangeCalendarCellTrigger, RangeCalendarCellTriggerProps, _default$214 as RangeCalendarGrid, _default$215 as RangeCalendarGridBody, RangeCalendarGridBodyProps, _default$216 as RangeCalendarGridHead, RangeCalendarGridHeadProps, RangeCalendarGridProps, _default$217 as RangeCalendarGridRow, RangeCalendarGridRowProps, _default$218 as RangeCalendarHeadCell, RangeCalendarHeadCellProps, _default$219 as RangeCalendarHeader, RangeCalendarHeaderProps, _default$220 as RangeCalendarHeading, RangeCalendarHeadingProps, _default$221 as RangeCalendarNext, RangeCalendarNextProps, _default$222 as RangeCalendarPrev, RangeCalendarPrevProps, _default$223 as RangeCalendarRoot, RangeCalendarRootEmits, RangeCalendarRootProps, ReferenceElement, _default$224 as RovingFocusGroup, RovingFocusGroupEmits, RovingFocusGroupProps, _default$225 as RovingFocusItem, RovingFocusItemProps, _default$226 as ScrollAreaCorner, ScrollAreaCornerProps, _default$227 as ScrollAreaRoot, ScrollAreaRootProps, _default$228 as ScrollAreaScrollbar, ScrollAreaScrollbarProps, _default$229 as ScrollAreaThumb, ScrollAreaThumbProps, _default$230 as ScrollAreaViewport, ScrollAreaViewportProps, _default$231 as SelectArrow, SelectArrowProps, _default$232 as SelectContent, SelectContentEmits, SelectContentProps, _default$233 as SelectGroup, SelectGroupProps, _default$234 as SelectIcon, SelectIconProps, _default$235 as SelectItem, _default$236 as SelectItemIndicator, SelectItemIndicatorProps, SelectItemProps, SelectEvent$2 as SelectItemSelectEvent, _default$237 as SelectItemText, SelectItemTextProps, _default$238 as SelectLabel, SelectLabelProps, _default$239 as SelectPortal, SelectPortalProps, _default$240 as SelectRoot, SelectRootEmits, SelectRootProps, _default$241 as SelectScrollDownButton, SelectScrollDownButtonProps, _default$242 as SelectScrollUpButton, SelectScrollUpButtonProps, _default$243 as SelectSeparator, SelectSeparatorProps, _default$244 as SelectTrigger, SelectTriggerProps, _default$245 as SelectValue, SelectValueProps, _default$246 as SelectViewport, SelectViewportProps, _default$247 as Separator, SeparatorProps, _default$248 as SliderRange, SliderRangeProps, _default$249 as SliderRoot, SliderRootEmits, SliderRootProps, _default$250 as SliderThumb, SliderThumbProps, _default$251 as SliderTrack, SliderTrackProps, Slot, _default$252 as SplitterGroup, SplitterGroupEmits, SplitterGroupProps, _default$253 as SplitterPanel, SplitterPanelEmits, SplitterPanelProps, _default$254 as SplitterResizeHandle, SplitterResizeHandleEmits, SplitterResizeHandleProps, _default$255 as StepperDescription, StepperDescriptionProps, _default$256 as StepperIndicator, StepperIndicatorProps, _default$257 as StepperItem, StepperItemProps, _default$258 as StepperRoot, StepperRootEmits, StepperRootProps, _default$259 as StepperSeparator, StepperSeparatorProps, _default$260 as StepperTitle, StepperTitleProps, _default$261 as StepperTrigger, StepperTriggerProps, _default$262 as SwitchRoot, SwitchRootEmits, SwitchRootProps, _default$263 as SwitchThumb, SwitchThumbProps, _default$264 as TabsContent, TabsContentProps, _default$265 as TabsIndicator, TabsIndicatorProps, _default$266 as TabsList, TabsListProps, _default$267 as TabsRoot, TabsRootEmits, TabsRootProps, _default$268 as TabsTrigger, TabsTriggerProps, _default$269 as TagsInputClear, TagsInputClearProps, _default$270 as TagsInputInput, TagsInputInputProps, _default$271 as TagsInputItem, _default$272 as TagsInputItemDelete, TagsInputItemDeleteProps, TagsInputItemProps, _default$273 as TagsInputItemText, TagsInputItemTextProps, _default$274 as TagsInputRoot, TagsInputRootEmits, TagsInputRootProps, _default$275 as TimeFieldInput, TimeFieldInputProps, _default$276 as TimeFieldRoot, TimeFieldRootEmits, TimeFieldRootProps, _default$277 as ToastAction, ToastActionProps, _default$278 as ToastClose, ToastCloseProps, _default$279 as ToastDescription, ToastDescriptionProps, _default$280 as ToastPortal, ToastPortalProps, _default$281 as ToastProvider, ToastProviderProps, _default$282 as ToastRoot, ToastRootEmits, ToastRootProps, _default$283 as ToastTitle, ToastTitleProps, _default$284 as ToastViewport, ToastViewportProps, _default$285 as Toggle, ToggleEmits, _default$286 as ToggleGroupItem, ToggleGroupItemProps, _default$287 as ToggleGroupRoot, ToggleGroupRootEmits, ToggleGroupRootProps, ToggleProps, _default$288 as ToolbarButton, ToolbarButtonProps, _default$289 as ToolbarLink, ToolbarLinkProps, _default$290 as ToolbarRoot, ToolbarRootProps, _default$291 as ToolbarSeparator, ToolbarSeparatorProps, _default$292 as ToolbarToggleGroup, ToolbarToggleGroupEmits, ToolbarToggleGroupProps, _default$293 as ToolbarToggleItem, ToolbarToggleItemProps, _default$294 as TooltipArrow, TooltipArrowProps, _default$295 as TooltipContent, TooltipContentEmits, TooltipContentProps, _default$296 as TooltipPortal, TooltipPortalProps, _default$297 as TooltipProvider, TooltipProviderProps, _default$298 as TooltipRoot, TooltipRootEmits, TooltipRootProps, _default$299 as TooltipTrigger, TooltipTriggerProps, _default$300 as TreeItem, TreeItemEmits, TreeItemProps, SelectEvent$3 as TreeItemSelectEvent, ToggleEvent as TreeItemToggleEvent, _default$301 as TreeRoot, TreeRootEmits, TreeRootProps, _default$302 as TreeVirtualizer, TreeVirtualizerProps, _default$303 as Viewport, ViewportProps, _default$304 as VisuallyHidden, VisuallyHiddenProps, createContext, injectAccordionItemContext, injectAccordionRootContext, injectAlertDialogContentContext, injectAvatarRootContext, injectCalendarRootContext, injectCheckboxGroupRootContext, injectCheckboxRootContext, injectCollapsibleRootContext, injectComboboxGroupContext, injectListboxItemContext as injectComboboxItemContext, injectComboboxRootContext, injectConfigProviderContext, injectContextMenuRootContext, injectDateFieldRootContext, injectDatePickerRootContext, injectDateRangeFieldRootContext, injectDateRangePickerRootContext, injectDialogRootContext, injectDropdownMenuRootContext, injectEditableRootContext, injectHoverCardRootContext, injectListboxGroupContext, injectListboxItemContext, injectListboxRootContext, injectMenubarMenuContext, injectMenubarRootContext, injectNavigationMenuContext, injectNavigationMenuItemContext, injectNumberFieldRootContext, injectPaginationRootContext, injectPinInputRootContext, injectPopoverRootContext, injectProgressRootContext, injectRadioGroupItemContext, injectRadioGroupRootContext, injectRangeCalendarRootContext, injectScrollAreaRootContext, injectScrollAreaScrollbarContext, injectSelectGroupContext, injectSelectItemContext, injectSelectRootContext, injectSliderRootContext, injectPanelGroupContext as injectSplitterGroupContext, injectStepperItemContext, injectStepperRootContext, injectSwitchRootContext, injectTabsRootContext, injectTagsInputItemContext, injectTagsInputRootContext, injectTimeFieldRootContext, injectToastProviderContext, injectToggleGroupRootContext, injectToolbarRootContext, injectTooltipProviderContext, injectTooltipRootContext, injectTreeRootContext, useBodyScrollLock, useDateFormatter, useEmitAsProps, useFilter, useForwardExpose, useForwardProps, useForwardPropsEmits, useId, useStateMachine, withDefault };
|
|
8753
|
+
export { AcceptableInputValue, AcceptableValue, _default as AccordionContent, AccordionContentProps, _default$1 as AccordionHeader, AccordionHeaderProps, _default$2 as AccordionItem, AccordionItemProps, _default$3 as AccordionRoot, AccordionRootEmits, AccordionRootProps, _default$4 as AccordionTrigger, AccordionTriggerProps, _default$5 as AlertDialogAction, AlertDialogActionProps, _default$6 as AlertDialogCancel, AlertDialogCancelProps, _default$7 as AlertDialogContent, AlertDialogContentEmits, AlertDialogContentProps, _default$8 as AlertDialogDescription, AlertDialogDescriptionProps, AlertDialogEmits, _default$9 as AlertDialogOverlay, AlertDialogOverlayProps, _default$10 as AlertDialogPortal, AlertDialogPortalProps, AlertDialogProps, _default$11 as AlertDialogRoot, _default$12 as AlertDialogTitle, AlertDialogTitleProps, _default$13 as AlertDialogTrigger, AlertDialogTriggerProps, AsTag, _default$14 as AspectRatio, AspectRatioProps, _default$15 as AvatarFallback, AvatarFallbackProps, _default$16 as AvatarImage, AvatarImageEmits, AvatarImageProps, _default$17 as AvatarRoot, AvatarRootProps, _default$18 as CalendarCell, CalendarCellProps, _default$19 as CalendarCellTrigger, CalendarCellTriggerProps, _default$20 as CalendarGrid, _default$21 as CalendarGridBody, CalendarGridBodyProps, _default$22 as CalendarGridHead, CalendarGridHeadProps, CalendarGridProps, _default$23 as CalendarGridRow, CalendarGridRowProps, _default$24 as CalendarHeadCell, CalendarHeadCellProps, _default$25 as CalendarHeader, CalendarHeaderProps, _default$26 as CalendarHeading, CalendarHeadingProps, _default$27 as CalendarNext, CalendarNextProps, _default$28 as CalendarPrev, CalendarPrevProps, _default$29 as CalendarRoot, CalendarRootEmits, CalendarRootProps, CheckedState as CheckboxCheckedState, _default$30 as CheckboxGroupRoot, CheckboxGroupRootEmits, CheckboxGroupRootProps, _default$31 as CheckboxIndicator, CheckboxIndicatorProps, _default$32 as CheckboxRoot, CheckboxRootEmits, CheckboxRootProps, _default$33 as CollapsibleContent, CollapsibleContentEmits, CollapsibleContentProps, _default$34 as CollapsibleRoot, CollapsibleRootEmits, CollapsibleRootProps, _default$35 as CollapsibleTrigger, CollapsibleTriggerProps, _default$36 as ComboboxAnchor, ComboboxAnchorProps, _default$37 as ComboboxArrow, ComboboxArrowProps, _default$38 as ComboboxCancel, ComboboxCancelProps, _default$39 as ComboboxContent, ComboboxContentEmits, ComboboxContentProps, _default$40 as ComboboxEmpty, ComboboxEmptyProps, _default$41 as ComboboxGroup, ComboboxGroupProps, _default$42 as ComboboxInput, ComboboxInputEmits, ComboboxInputProps, _default$43 as ComboboxItem, ComboboxItemEmits, _default$44 as ComboboxItemIndicator, ComboboxItemIndicatorProps, ComboboxItemProps, _default$45 as ComboboxLabel, ComboboxLabelProps, _default$46 as ComboboxPortal, ComboboxPortalProps, _default$47 as ComboboxRoot, ComboboxRootEmits, ComboboxRootProps, _default$48 as ComboboxSeparator, ComboboxSeparatorProps, _default$49 as ComboboxTrigger, ComboboxTriggerProps, _default$50 as ComboboxViewport, ComboboxViewportProps, _default$51 as ComboboxVirtualizer, ComboboxVirtualizerProps, _default$52 as ConfigProvider, ConfigProviderProps, _default$53 as ContextMenuArrow, ContextMenuArrowProps, _default$54 as ContextMenuCheckboxItem, ContextMenuCheckboxItemEmits, ContextMenuCheckboxItemProps, _default$55 as ContextMenuContent, ContextMenuContentEmits, ContextMenuContentProps, _default$56 as ContextMenuGroup, ContextMenuGroupProps, _default$57 as ContextMenuItem, ContextMenuItemEmits, _default$58 as ContextMenuItemIndicator, ContextMenuItemIndicatorProps, ContextMenuItemProps, _default$59 as ContextMenuLabel, ContextMenuLabelProps, _default$60 as ContextMenuPortal, ContextMenuPortalProps, _default$61 as ContextMenuRadioGroup, ContextMenuRadioGroupEmits, ContextMenuRadioGroupProps, _default$62 as ContextMenuRadioItem, ContextMenuRadioItemEmits, ContextMenuRadioItemProps, _default$63 as ContextMenuRoot, ContextMenuRootEmits, ContextMenuRootProps, _default$64 as ContextMenuSeparator, ContextMenuSeparatorProps, _default$65 as ContextMenuSub, _default$66 as ContextMenuSubContent, ContextMenuSubContentEmits, ContextMenuSubContentProps, ContextMenuSubEmits, ContextMenuSubProps, _default$67 as ContextMenuSubTrigger, ContextMenuSubTriggerProps, _default$68 as ContextMenuTrigger, ContextMenuTriggerProps, _default$69 as DateFieldInput, DateFieldInputProps, _default$70 as DateFieldRoot, DateFieldRootEmits, DateFieldRootProps, _default$71 as DatePickerAnchor, _default$72 as DatePickerArrow, _default$73 as DatePickerCalendar, _default$74 as DatePickerCell, DatePickerCellProps, _default$75 as DatePickerCellTrigger, DatePickerCellTriggerProps, _default$76 as DatePickerClose, _default$77 as DatePickerContent, DatePickerContentProps, _default$78 as DatePickerField, _default$79 as DatePickerGrid, _default$80 as DatePickerGridBody, DatePickerGridBodyProps, _default$81 as DatePickerGridHead, DatePickerGridHeadProps, DatePickerGridProps, _default$82 as DatePickerGridRow, DatePickerGridRowProps, _default$83 as DatePickerHeadCell, DatePickerHeadCellProps, _default$84 as DatePickerHeader, DatePickerHeaderProps, _default$85 as DatePickerHeading, DatePickerHeadingProps, _default$86 as DatePickerInput, DatePickerInputProps, _default$87 as DatePickerNext, DatePickerNextProps, _default$88 as DatePickerPrev, DatePickerPrevProps, _default$89 as DatePickerRoot, DatePickerRootEmits, DatePickerRootProps, _default$90 as DatePickerTrigger, DatePickerTriggerProps, DateRange, _default$91 as DateRangeFieldInput, DateRangeFieldInputProps, _default$92 as DateRangeFieldRoot, DateRangeFieldRootEmits, DateRangeFieldRootProps, _default$93 as DateRangePickerAnchor, _default$94 as DateRangePickerArrow, _default$95 as DateRangePickerCalendar, _default$96 as DateRangePickerCell, DateRangePickerCellProps, _default$97 as DateRangePickerCellTrigger, DateRangePickerCellTriggerProps, _default$98 as DateRangePickerClose, _default$99 as DateRangePickerContent, DateRangePickerContentProps, _default$100 as DateRangePickerField, _default$101 as DateRangePickerGrid, _default$102 as DateRangePickerGridBody, DateRangePickerGridBodyProps, _default$103 as DateRangePickerGridHead, DateRangePickerGridHeadProps, DateRangePickerGridProps, _default$104 as DateRangePickerGridRow, DateRangePickerGridRowProps, _default$105 as DateRangePickerHeadCell, DateRangePickerHeadCellProps, _default$106 as DateRangePickerHeader, DateRangePickerHeaderProps, _default$107 as DateRangePickerHeading, DateRangePickerHeadingProps, _default$108 as DateRangePickerInput, DateRangePickerInputProps, _default$109 as DateRangePickerNext, DateRangePickerNextProps, _default$110 as DateRangePickerPrev, DateRangePickerPrevProps, _default$111 as DateRangePickerRoot, DateRangePickerRootEmits, DateRangePickerRootProps, _default$112 as DateRangePickerTrigger, DateRangePickerTriggerProps, DateValue, _default$113 as DialogClose, DialogCloseProps, _default$114 as DialogContent, DialogContentEmits, DialogContentProps, _default$115 as DialogDescription, DialogDescriptionProps, _default$116 as DialogOverlay, DialogOverlayProps, _default$117 as DialogPortal, DialogPortalProps, _default$118 as DialogRoot, DialogRootEmits, DialogRootProps, _default$119 as DialogTitle, DialogTitleProps, _default$120 as DialogTrigger, DialogTriggerProps, _default$121 as DropdownMenuArrow, DropdownMenuArrowProps, _default$122 as DropdownMenuCheckboxItem, DropdownMenuCheckboxItemEmits, DropdownMenuCheckboxItemProps, _default$123 as DropdownMenuContent, DropdownMenuContentEmits, DropdownMenuContentProps, _default$124 as DropdownMenuGroup, DropdownMenuGroupProps, _default$125 as DropdownMenuItem, DropdownMenuItemEmits, _default$126 as DropdownMenuItemIndicator, DropdownMenuItemIndicatorProps, DropdownMenuItemProps, _default$127 as DropdownMenuLabel, DropdownMenuLabelProps, _default$128 as DropdownMenuPortal, DropdownMenuPortalProps, _default$129 as DropdownMenuRadioGroup, DropdownMenuRadioGroupEmits, DropdownMenuRadioGroupProps, _default$130 as DropdownMenuRadioItem, DropdownMenuRadioItemEmits, DropdownMenuRadioItemProps, _default$131 as DropdownMenuRoot, DropdownMenuRootEmits, DropdownMenuRootProps, _default$132 as DropdownMenuSeparator, DropdownMenuSeparatorProps, _default$133 as DropdownMenuSub, _default$134 as DropdownMenuSubContent, DropdownMenuSubContentEmits, DropdownMenuSubContentProps, DropdownMenuSubEmits, DropdownMenuSubProps, _default$135 as DropdownMenuSubTrigger, DropdownMenuSubTriggerProps, _default$136 as DropdownMenuTrigger, DropdownMenuTriggerProps, _default$137 as EditableArea, EditableAreaProps, _default$138 as EditableCancelTrigger, EditableCancelTriggerProps, _default$139 as EditableEditTrigger, EditableEditTriggerProps, _default$140 as EditableInput, EditableInputProps, _default$141 as EditablePreview, EditablePreviewProps, _default$142 as EditableRoot, EditableRootEmits, EditableRootProps, _default$143 as EditableSubmitTrigger, EditableSubmitTriggerProps, FlattenedItem, FocusOutsideEvent, _default$144 as FocusScope, FocusScopeEmits, FocusScopeProps, Formatter, GenericComponentInstance, _default$145 as HoverCardArrow, HoverCardArrowProps, _default$146 as HoverCardContent, HoverCardContentProps, _default$147 as HoverCardPortal, HoverCardPortalProps, _default$148 as HoverCardRoot, HoverCardRootEmits, HoverCardRootProps, _default$149 as HoverCardTrigger, HoverCardTriggerProps, _default$150 as Label, LabelProps, _default$151 as ListboxContent, ListboxContentProps, _default$152 as ListboxFilter, ListboxFilterEmits, ListboxFilterProps, _default$153 as ListboxGroup, _default$154 as ListboxGroupLabel, ListboxGroupLabelProps, ListboxGroupProps, _default$155 as ListboxItem, ListboxItemEmits, _default$156 as ListboxItemIndicator, ListboxItemIndicatorProps, ListboxItemProps, SelectEvent as ListboxItemSelectEvent, _default$157 as ListboxRoot, ListboxRootEmits, ListboxRootProps, _default$158 as ListboxVirtualizer, ListboxVirtualizerProps, _default$159 as MenubarArrow, MenubarArrowProps, _default$160 as MenubarCheckboxItem, MenubarCheckboxItemEmits, MenubarCheckboxItemProps, _default$161 as MenubarContent, MenubarContentProps, _default$162 as MenubarGroup, MenubarGroupProps, _default$163 as MenubarItem, MenubarItemEmits, _default$164 as MenubarItemIndicator, MenubarItemIndicatorProps, MenubarItemProps, _default$165 as MenubarLabel, MenubarLabelProps, _default$166 as MenubarMenu, MenubarMenuProps, _default$167 as MenubarPortal, MenubarPortalProps, _default$168 as MenubarRadioGroup, MenubarRadioGroupEmits, MenubarRadioGroupProps, _default$169 as MenubarRadioItem, MenubarRadioItemEmits, MenubarRadioItemProps, _default$170 as MenubarRoot, MenubarRootEmits, MenubarRootProps, _default$171 as MenubarSeparator, MenubarSeparatorProps, _default$172 as MenubarSub, _default$173 as MenubarSubContent, MenubarSubContentEmits, MenubarSubContentProps, MenubarSubEmits, MenubarSubProps, _default$174 as MenubarSubTrigger, MenubarSubTriggerProps, _default$175 as MenubarTrigger, MenubarTriggerProps, _default$176 as NavigationMenuContent, NavigationMenuContentEmits, NavigationMenuContentProps, _default$177 as NavigationMenuIndicator, NavigationMenuIndicatorProps, _default$178 as NavigationMenuItem, NavigationMenuItemProps, _default$179 as NavigationMenuLink, NavigationMenuLinkEmits, NavigationMenuLinkProps, _default$180 as NavigationMenuList, NavigationMenuListProps, _default$181 as NavigationMenuRoot, NavigationMenuRootEmits, NavigationMenuRootProps, _default$182 as NavigationMenuSub, NavigationMenuSubEmits, NavigationMenuSubProps, _default$183 as NavigationMenuTrigger, NavigationMenuTriggerProps, _default$184 as NavigationMenuViewport, NavigationMenuViewportProps, _default$185 as NumberFieldDecrement, NumberFieldDecrementProps, _default$186 as NumberFieldIncrement, NumberFieldIncrementProps, _default$187 as NumberFieldInput, NumberFieldInputProps, _default$188 as NumberFieldRoot, NumberFieldRootEmits, NumberFieldRootProps, _default$189 as PaginationEllipsis, PaginationEllipsisProps, _default$190 as PaginationFirst, PaginationFirstProps, _default$191 as PaginationLast, PaginationLastProps, _default$192 as PaginationList, _default$193 as PaginationListItem, PaginationListItemProps, PaginationListProps, _default$194 as PaginationNext, PaginationNextProps, _default$195 as PaginationPrev, PaginationPrevProps, _default$196 as PaginationRoot, PaginationRootEmits, PaginationRootProps, _default$197 as PinInputInput, PinInputInputProps, _default$198 as PinInputRoot, PinInputRootEmits, PinInputRootProps, PointerDownOutsideEvent, _default$199 as PopoverAnchor, PopoverAnchorProps, _default$200 as PopoverArrow, PopoverArrowProps, _default$201 as PopoverClose, PopoverCloseProps, _default$202 as PopoverContent, PopoverContentEmits, PopoverContentProps, _default$203 as PopoverPortal, PopoverPortalProps, _default$204 as PopoverRoot, PopoverRootEmits, PopoverRootProps, _default$205 as PopoverTrigger, PopoverTriggerProps, _default$206 as Presence, PresenceProps, Primitive, PrimitiveProps, _default$207 as ProgressIndicator, ProgressIndicatorProps, _default$208 as ProgressRoot, ProgressRootEmits, ProgressRootProps, _default$209 as RadioGroupIndicator, RadioGroupIndicatorProps, _default$210 as RadioGroupItem, RadioGroupItemEmits, RadioGroupItemProps, SelectEvent$1 as RadioGroupItemSelectEvent, _default$211 as RadioGroupRoot, RadioGroupRootEmits, RadioGroupRootProps, _default$212 as RangeCalendarCell, RangeCalendarCellProps, _default$213 as RangeCalendarCellTrigger, RangeCalendarCellTriggerProps, _default$214 as RangeCalendarGrid, _default$215 as RangeCalendarGridBody, RangeCalendarGridBodyProps, _default$216 as RangeCalendarGridHead, RangeCalendarGridHeadProps, RangeCalendarGridProps, _default$217 as RangeCalendarGridRow, RangeCalendarGridRowProps, _default$218 as RangeCalendarHeadCell, RangeCalendarHeadCellProps, _default$219 as RangeCalendarHeader, RangeCalendarHeaderProps, _default$220 as RangeCalendarHeading, RangeCalendarHeadingProps, _default$221 as RangeCalendarNext, RangeCalendarNextProps, _default$222 as RangeCalendarPrev, RangeCalendarPrevProps, _default$223 as RangeCalendarRoot, RangeCalendarRootEmits, RangeCalendarRootProps, ReferenceElement, _default$224 as RovingFocusGroup, RovingFocusGroupEmits, RovingFocusGroupProps, _default$225 as RovingFocusItem, RovingFocusItemProps, _default$226 as ScrollAreaCorner, ScrollAreaCornerProps, _default$227 as ScrollAreaRoot, ScrollAreaRootProps, _default$228 as ScrollAreaScrollbar, ScrollAreaScrollbarProps, _default$229 as ScrollAreaThumb, ScrollAreaThumbProps, _default$230 as ScrollAreaViewport, ScrollAreaViewportProps, _default$231 as SelectArrow, SelectArrowProps, _default$232 as SelectContent, SelectContentEmits, SelectContentProps, _default$233 as SelectGroup, SelectGroupProps, _default$234 as SelectIcon, SelectIconProps, _default$235 as SelectItem, _default$236 as SelectItemIndicator, SelectItemIndicatorProps, SelectItemProps, SelectEvent$2 as SelectItemSelectEvent, _default$237 as SelectItemText, SelectItemTextProps, _default$238 as SelectLabel, SelectLabelProps, _default$239 as SelectPortal, SelectPortalProps, _default$240 as SelectRoot, SelectRootEmits, SelectRootProps, _default$241 as SelectScrollDownButton, SelectScrollDownButtonProps, _default$242 as SelectScrollUpButton, SelectScrollUpButtonProps, _default$243 as SelectSeparator, SelectSeparatorProps, _default$244 as SelectTrigger, SelectTriggerProps, _default$245 as SelectValue, SelectValueProps, _default$246 as SelectViewport, SelectViewportProps, _default$247 as Separator, SeparatorProps, _default$248 as SliderRange, SliderRangeProps, _default$249 as SliderRoot, SliderRootEmits, SliderRootProps, _default$250 as SliderThumb, SliderThumbProps, _default$251 as SliderTrack, SliderTrackProps, Slot, _default$252 as SplitterGroup, SplitterGroupEmits, SplitterGroupProps, _default$253 as SplitterPanel, SplitterPanelEmits, SplitterPanelProps, _default$254 as SplitterResizeHandle, SplitterResizeHandleEmits, SplitterResizeHandleProps, _default$255 as StepperDescription, StepperDescriptionProps, _default$256 as StepperIndicator, StepperIndicatorProps, _default$257 as StepperItem, StepperItemProps, _default$258 as StepperRoot, StepperRootEmits, StepperRootProps, _default$259 as StepperSeparator, StepperSeparatorProps, _default$260 as StepperTitle, StepperTitleProps, _default$261 as StepperTrigger, StepperTriggerProps, _default$262 as SwitchRoot, SwitchRootEmits, SwitchRootProps, _default$263 as SwitchThumb, SwitchThumbProps, _default$264 as TabsContent, TabsContentProps, _default$265 as TabsIndicator, TabsIndicatorProps, _default$266 as TabsList, TabsListProps, _default$267 as TabsRoot, TabsRootEmits, TabsRootProps, _default$268 as TabsTrigger, TabsTriggerProps, _default$269 as TagsInputClear, TagsInputClearProps, _default$270 as TagsInputInput, TagsInputInputProps, _default$271 as TagsInputItem, _default$272 as TagsInputItemDelete, TagsInputItemDeleteProps, TagsInputItemProps, _default$273 as TagsInputItemText, TagsInputItemTextProps, _default$274 as TagsInputRoot, TagsInputRootEmits, TagsInputRootProps, _default$275 as TimeFieldInput, TimeFieldInputProps, _default$276 as TimeFieldRoot, TimeFieldRootEmits, TimeFieldRootProps, _default$277 as ToastAction, ToastActionProps, _default$278 as ToastClose, ToastCloseProps, _default$279 as ToastDescription, ToastDescriptionProps, _default$280 as ToastPortal, ToastPortalProps, _default$281 as ToastProvider, ToastProviderProps, _default$282 as ToastRoot, ToastRootEmits, ToastRootProps, _default$283 as ToastTitle, ToastTitleProps, _default$284 as ToastViewport, ToastViewportProps, _default$285 as Toggle, ToggleEmits, _default$286 as ToggleGroupItem, ToggleGroupItemProps, _default$287 as ToggleGroupRoot, ToggleGroupRootEmits, ToggleGroupRootProps, ToggleProps, _default$288 as ToolbarButton, ToolbarButtonProps, _default$289 as ToolbarLink, ToolbarLinkProps, _default$290 as ToolbarRoot, ToolbarRootProps, _default$291 as ToolbarSeparator, ToolbarSeparatorProps, _default$292 as ToolbarToggleGroup, ToolbarToggleGroupEmits, ToolbarToggleGroupProps, _default$293 as ToolbarToggleItem, ToolbarToggleItemProps, _default$294 as TooltipArrow, TooltipArrowProps, _default$295 as TooltipContent, TooltipContentEmits, TooltipContentProps, _default$296 as TooltipPortal, TooltipPortalProps, _default$297 as TooltipProvider, TooltipProviderProps, _default$298 as TooltipRoot, TooltipRootEmits, TooltipRootProps, _default$299 as TooltipTrigger, TooltipTriggerProps, _default$300 as TreeItem, TreeItemEmits, TreeItemProps, SelectEvent$3 as TreeItemSelectEvent, ToggleEvent as TreeItemToggleEvent, _default$301 as TreeRoot, TreeRootEmits, TreeRootProps, _default$302 as TreeVirtualizer, TreeVirtualizerProps, _default$303 as Viewport, ViewportProps, _default$304 as VisuallyHidden, VisuallyHiddenProps, createContext, injectAccordionItemContext, injectAccordionRootContext, injectAlertDialogContentContext, injectAvatarRootContext, injectCalendarRootContext, injectCheckboxGroupRootContext, injectCheckboxRootContext, injectCollapsibleRootContext, injectComboboxGroupContext, injectListboxItemContext as injectComboboxItemContext, injectComboboxRootContext, injectConfigProviderContext, injectContextMenuRootContext, injectDateFieldRootContext, injectDatePickerRootContext, injectDateRangeFieldRootContext, injectDateRangePickerRootContext, injectDialogRootContext, injectDropdownMenuRootContext, injectEditableRootContext, injectHoverCardRootContext, injectListboxGroupContext, injectListboxItemContext, injectListboxRootContext, injectMenubarMenuContext, injectMenubarRootContext, injectNavigationMenuContext, injectNavigationMenuItemContext, injectNumberFieldRootContext, injectPaginationRootContext, injectPinInputRootContext, injectPopoverRootContext, injectProgressRootContext, injectRadioGroupItemContext, injectRadioGroupRootContext, injectRangeCalendarRootContext, injectScrollAreaRootContext, injectScrollAreaScrollbarContext, injectSelectGroupContext, injectSelectItemContext, injectSelectRootContext, injectSliderRootContext, injectPanelGroupContext as injectSplitterGroupContext, injectStepperItemContext, injectStepperRootContext, injectSwitchRootContext, injectTabsRootContext, injectTagsInputItemContext, injectTagsInputRootContext, injectTimeFieldRootContext, injectToastProviderContext, injectToggleGroupRootContext, injectToolbarRootContext, injectTooltipProviderContext, injectTooltipRootContext, injectTreeRootContext, useBodyScrollLock, useDateFormatter, useEmitAsProps, useFilter, useForwardExpose, useForwardProps, useForwardPropsEmits, useId, useStateMachine, withDefault };
|
|
8730
8754
|
//# sourceMappingURL=index.d.cts.map
|