base-ui-vue 0.2.0 → 0.3.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/content/ScrollAreaContent.cjs +168 -0
- package/dist/content/ScrollAreaContent.cjs.map +1 -0
- package/dist/content/ScrollAreaContent.js +133 -0
- package/dist/content/ScrollAreaContent.js.map +1 -0
- package/dist/corner/ScrollAreaCorner.cjs +77 -0
- package/dist/corner/ScrollAreaCorner.cjs.map +1 -0
- package/dist/corner/ScrollAreaCorner.js +72 -0
- package/dist/corner/ScrollAreaCorner.js.map +1 -0
- package/dist/index.cjs +33 -0
- package/dist/index.d.cts +1067 -352
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +1067 -352
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index2.cjs +3565 -1373
- package/dist/index2.cjs.map +1 -1
- package/dist/index2.js +3228 -1204
- package/dist/index2.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +4 -0
- package/src/input/Input.vue +37 -0
- package/src/input/InputDataAttributes.ts +30 -0
- package/src/input/index.ts +4 -0
- package/src/meter/index.ts +16 -0
- package/src/meter/indicator/MeterIndicator.vue +65 -0
- package/src/meter/label/MeterLabel.vue +63 -0
- package/src/meter/root/MeterRoot.vue +131 -0
- package/src/meter/root/MeterRootContext.ts +41 -0
- package/src/meter/track/MeterTrack.vue +46 -0
- package/src/meter/value/MeterValue.vue +85 -0
- package/src/progress/index.ts +23 -0
- package/src/progress/indicator/ProgressIndicator.vue +74 -0
- package/src/progress/label/ProgressLabel.vue +63 -0
- package/src/progress/root/ProgressRoot.vue +160 -0
- package/src/progress/root/ProgressRootContext.ts +51 -0
- package/src/progress/root/ProgressRootDataAttributes.ts +14 -0
- package/src/progress/root/stateAttributesMapping.ts +18 -0
- package/src/progress/track/ProgressTrack.vue +48 -0
- package/src/progress/value/ProgressValue.vue +92 -0
- package/src/scroll-area/constants.ts +2 -0
- package/src/scroll-area/content/ScrollAreaContent.vue +87 -0
- package/src/scroll-area/corner/ScrollAreaCorner.vue +64 -0
- package/src/scroll-area/index.ts +25 -0
- package/src/scroll-area/root/ScrollAreaRoot.vue +297 -0
- package/src/scroll-area/root/ScrollAreaRootContext.ts +89 -0
- package/src/scroll-area/root/ScrollAreaRootCssVars.ts +4 -0
- package/src/scroll-area/root/ScrollAreaRootDataAttributes.ts +9 -0
- package/src/scroll-area/root/stateAttributes.ts +14 -0
- package/src/scroll-area/scrollbar/ScrollAreaScrollbar.vue +263 -0
- package/src/scroll-area/scrollbar/ScrollAreaScrollbarContext.ts +20 -0
- package/src/scroll-area/scrollbar/ScrollAreaScrollbarCssVars.ts +4 -0
- package/src/scroll-area/scrollbar/ScrollAreaScrollbarDataAttributes.ts +11 -0
- package/src/scroll-area/thumb/ScrollAreaThumb.vue +120 -0
- package/src/scroll-area/thumb/ScrollAreaThumbDataAttributes.ts +3 -0
- package/src/scroll-area/utils/getOffset.ts +34 -0
- package/src/scroll-area/viewport/ScrollAreaViewport.vue +379 -0
- package/src/scroll-area/viewport/ScrollAreaViewportContext.ts +20 -0
- package/src/scroll-area/viewport/ScrollAreaViewportCssVars.ts +6 -0
- package/src/scroll-area/viewport/ScrollAreaViewportDataAttributes.ts +9 -0
- package/src/utils/formatNumber.ts +25 -0
- package/src/utils/scrollEdges.ts +33 -0
- package/src/utils/styles.ts +28 -0
package/dist/index.d.ts
CHANGED
|
@@ -279,42 +279,42 @@ interface AccordionPanelProps extends BaseUIComponentProps<AccordionPanelState>
|
|
|
279
279
|
}
|
|
280
280
|
//#endregion
|
|
281
281
|
//#region src/accordion/header/AccordionHeader.vue.d.ts
|
|
282
|
-
declare var __VLS_1$
|
|
282
|
+
declare var __VLS_1$48: {
|
|
283
283
|
props: Record<string, any>;
|
|
284
284
|
state: AccordionItemState<any>;
|
|
285
|
-
}, __VLS_10$
|
|
285
|
+
}, __VLS_10$41: {
|
|
286
286
|
state: AccordionItemState<any>;
|
|
287
287
|
};
|
|
288
|
-
type __VLS_Slots$
|
|
289
|
-
default?: (props: typeof __VLS_1$
|
|
288
|
+
type __VLS_Slots$58 = {} & {
|
|
289
|
+
default?: (props: typeof __VLS_1$48) => any;
|
|
290
290
|
} & {
|
|
291
|
-
default?: (props: typeof __VLS_10$
|
|
291
|
+
default?: (props: typeof __VLS_10$41) => any;
|
|
292
292
|
};
|
|
293
|
-
declare const __VLS_base$
|
|
293
|
+
declare const __VLS_base$58: vue.DefineComponent<AccordionHeaderProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AccordionHeaderProps> & Readonly<{}>, {
|
|
294
294
|
as: string | vue.Component;
|
|
295
295
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
296
|
-
declare const __VLS_export$
|
|
297
|
-
declare const _default: typeof __VLS_export$
|
|
298
|
-
type __VLS_WithSlots$
|
|
296
|
+
declare const __VLS_export$61: __VLS_WithSlots$58<typeof __VLS_base$58, __VLS_Slots$58>;
|
|
297
|
+
declare const _default: typeof __VLS_export$61;
|
|
298
|
+
type __VLS_WithSlots$58<T, S> = T & {
|
|
299
299
|
new (): {
|
|
300
300
|
$slots: S;
|
|
301
301
|
};
|
|
302
302
|
}; //# sourceMappingURL=AccordionHeader.vue.d.ts.map
|
|
303
303
|
//#endregion
|
|
304
304
|
//#region src/accordion/item/AccordionItem.vue.d.ts
|
|
305
|
-
declare var __VLS_1$
|
|
305
|
+
declare var __VLS_1$47: {
|
|
306
306
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
307
307
|
props: Record<string, any>;
|
|
308
308
|
state: AccordionItemState<any>;
|
|
309
|
-
}, __VLS_10$
|
|
309
|
+
}, __VLS_10$40: {
|
|
310
310
|
state: AccordionItemState<any>;
|
|
311
311
|
};
|
|
312
|
-
type __VLS_Slots$
|
|
313
|
-
default?: (props: typeof __VLS_1$
|
|
312
|
+
type __VLS_Slots$57 = {} & {
|
|
313
|
+
default?: (props: typeof __VLS_1$47) => any;
|
|
314
314
|
} & {
|
|
315
|
-
default?: (props: typeof __VLS_10$
|
|
315
|
+
default?: (props: typeof __VLS_10$40) => any;
|
|
316
316
|
};
|
|
317
|
-
declare const __VLS_base$
|
|
317
|
+
declare const __VLS_base$57: vue.DefineComponent<AccordionItemProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & {
|
|
318
318
|
openChange: (open: boolean, details: AccordionItemChangeEventDetails) => any;
|
|
319
319
|
}, string, vue.PublicProps, Readonly<AccordionItemProps> & Readonly<{
|
|
320
320
|
onOpenChange?: ((open: boolean, details: AccordionItemChangeEventDetails) => any) | undefined;
|
|
@@ -322,9 +322,9 @@ declare const __VLS_base$40: vue.DefineComponent<AccordionItemProps, {}, {}, {},
|
|
|
322
322
|
disabled: boolean;
|
|
323
323
|
as: string | vue.Component;
|
|
324
324
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
325
|
-
declare const __VLS_export$
|
|
326
|
-
declare const _default$1: typeof __VLS_export$
|
|
327
|
-
type __VLS_WithSlots$
|
|
325
|
+
declare const __VLS_export$60: __VLS_WithSlots$57<typeof __VLS_base$57, __VLS_Slots$57>;
|
|
326
|
+
declare const _default$1: typeof __VLS_export$60;
|
|
327
|
+
type __VLS_WithSlots$57<T, S> = T & {
|
|
328
328
|
new (): {
|
|
329
329
|
$slots: S;
|
|
330
330
|
};
|
|
@@ -341,24 +341,24 @@ declare const accordionItemContextKey: InjectionKey<AccordionItemContext>;
|
|
|
341
341
|
declare function useAccordionItemContext(): AccordionItemContext;
|
|
342
342
|
//#endregion
|
|
343
343
|
//#region src/accordion/panel/AccordionPanel.vue.d.ts
|
|
344
|
-
declare var __VLS_1$
|
|
344
|
+
declare var __VLS_1$46: {
|
|
345
345
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
346
346
|
props: Record<string, any>;
|
|
347
347
|
state: AccordionPanelState;
|
|
348
|
-
}, __VLS_10$
|
|
348
|
+
}, __VLS_10$39: {
|
|
349
349
|
state: AccordionPanelState;
|
|
350
350
|
};
|
|
351
|
-
type __VLS_Slots$
|
|
352
|
-
default?: (props: typeof __VLS_1$
|
|
351
|
+
type __VLS_Slots$56 = {} & {
|
|
352
|
+
default?: (props: typeof __VLS_1$46) => any;
|
|
353
353
|
} & {
|
|
354
|
-
default?: (props: typeof __VLS_10$
|
|
354
|
+
default?: (props: typeof __VLS_10$39) => any;
|
|
355
355
|
};
|
|
356
|
-
declare const __VLS_base$
|
|
356
|
+
declare const __VLS_base$56: vue.DefineComponent<AccordionPanelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AccordionPanelProps> & Readonly<{}>, {
|
|
357
357
|
as: string | vue.Component;
|
|
358
358
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
359
|
-
declare const __VLS_export$
|
|
360
|
-
declare const _default$2: typeof __VLS_export$
|
|
361
|
-
type __VLS_WithSlots$
|
|
359
|
+
declare const __VLS_export$59: __VLS_WithSlots$56<typeof __VLS_base$56, __VLS_Slots$56>;
|
|
360
|
+
declare const _default$2: typeof __VLS_export$59;
|
|
361
|
+
type __VLS_WithSlots$56<T, S> = T & {
|
|
362
362
|
new (): {
|
|
363
363
|
$slots: S;
|
|
364
364
|
};
|
|
@@ -372,12 +372,12 @@ declare var __VLS_8$5: {
|
|
|
372
372
|
}, __VLS_16$2: {
|
|
373
373
|
state: AccordionRootState<any>;
|
|
374
374
|
};
|
|
375
|
-
type __VLS_Slots$
|
|
375
|
+
type __VLS_Slots$55 = {} & {
|
|
376
376
|
default?: (props: typeof __VLS_8$5) => any;
|
|
377
377
|
} & {
|
|
378
378
|
default?: (props: typeof __VLS_16$2) => any;
|
|
379
379
|
};
|
|
380
|
-
declare const __VLS_base$
|
|
380
|
+
declare const __VLS_base$55: vue.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & {
|
|
381
381
|
valueChange: (value: AccordionValue, details: AccordionRootChangeEventDetails) => any;
|
|
382
382
|
}, string, vue.PublicProps, Readonly<__VLS_Props$1> & Readonly<{
|
|
383
383
|
onValueChange?: ((value: AccordionValue, details: AccordionRootChangeEventDetails) => any) | undefined;
|
|
@@ -390,9 +390,9 @@ declare const __VLS_base$38: vue.DefineComponent<__VLS_Props$1, {}, {}, {}, {},
|
|
|
390
390
|
multiple: boolean;
|
|
391
391
|
loopFocus: boolean;
|
|
392
392
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
393
|
-
declare const __VLS_export$
|
|
394
|
-
declare const _default$3: typeof __VLS_export$
|
|
395
|
-
type __VLS_WithSlots$
|
|
393
|
+
declare const __VLS_export$58: __VLS_WithSlots$55<typeof __VLS_base$55, __VLS_Slots$55>;
|
|
394
|
+
declare const _default$3: typeof __VLS_export$58;
|
|
395
|
+
type __VLS_WithSlots$55<T, S> = T & {
|
|
396
396
|
new (): {
|
|
397
397
|
$slots: S;
|
|
398
398
|
};
|
|
@@ -426,25 +426,25 @@ declare const accordionRootContextKey: InjectionKey<AccordionRootContext>;
|
|
|
426
426
|
declare function useAccordionRootContext<Value = any>(): AccordionRootContext<Value>;
|
|
427
427
|
//#endregion
|
|
428
428
|
//#region src/accordion/trigger/AccordionTrigger.vue.d.ts
|
|
429
|
-
declare var __VLS_1$
|
|
429
|
+
declare var __VLS_1$45: {
|
|
430
430
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
431
431
|
props: Record<string, any>;
|
|
432
432
|
state: vue.Ref<AccordionItemState<any>, AccordionItemState<any>>;
|
|
433
|
-
}, __VLS_10$
|
|
433
|
+
}, __VLS_10$38: {
|
|
434
434
|
state: vue.Ref<AccordionItemState<any>, AccordionItemState<any>>;
|
|
435
435
|
};
|
|
436
|
-
type __VLS_Slots$
|
|
437
|
-
default?: (props: typeof __VLS_1$
|
|
436
|
+
type __VLS_Slots$54 = {} & {
|
|
437
|
+
default?: (props: typeof __VLS_1$45) => any;
|
|
438
438
|
} & {
|
|
439
|
-
default?: (props: typeof __VLS_10$
|
|
439
|
+
default?: (props: typeof __VLS_10$38) => any;
|
|
440
440
|
};
|
|
441
|
-
declare const __VLS_base$
|
|
441
|
+
declare const __VLS_base$54: vue.DefineComponent<AccordionTriggerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AccordionTriggerProps> & Readonly<{}>, {
|
|
442
442
|
nativeButton: boolean;
|
|
443
443
|
as: string | vue.Component;
|
|
444
444
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
445
|
-
declare const __VLS_export$
|
|
446
|
-
declare const _default$4: typeof __VLS_export$
|
|
447
|
-
type __VLS_WithSlots$
|
|
445
|
+
declare const __VLS_export$57: __VLS_WithSlots$54<typeof __VLS_base$54, __VLS_Slots$54>;
|
|
446
|
+
declare const _default$4: typeof __VLS_export$57;
|
|
447
|
+
type __VLS_WithSlots$54<T, S> = T & {
|
|
448
448
|
new (): {
|
|
449
449
|
$slots: S;
|
|
450
450
|
};
|
|
@@ -456,23 +456,23 @@ interface AvatarRootState {
|
|
|
456
456
|
imageLoadingStatus: ImageLoadingStatus;
|
|
457
457
|
}
|
|
458
458
|
interface AvatarRootProps extends BaseUIComponentProps<AvatarRootState> {}
|
|
459
|
-
declare var __VLS_1$
|
|
459
|
+
declare var __VLS_1$44: {
|
|
460
460
|
props: Record<string, any>;
|
|
461
461
|
state: AvatarRootState;
|
|
462
|
-
}, __VLS_10$
|
|
462
|
+
}, __VLS_10$37: {
|
|
463
463
|
state: AvatarRootState;
|
|
464
464
|
};
|
|
465
|
-
type __VLS_Slots$
|
|
466
|
-
default?: (props: typeof __VLS_1$
|
|
465
|
+
type __VLS_Slots$53 = {} & {
|
|
466
|
+
default?: (props: typeof __VLS_1$44) => any;
|
|
467
467
|
} & {
|
|
468
|
-
default?: (props: typeof __VLS_10$
|
|
468
|
+
default?: (props: typeof __VLS_10$37) => any;
|
|
469
469
|
};
|
|
470
|
-
declare const __VLS_base$
|
|
470
|
+
declare const __VLS_base$53: vue.DefineComponent<AvatarRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AvatarRootProps> & Readonly<{}>, {
|
|
471
471
|
as: string | vue.Component;
|
|
472
472
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
473
|
-
declare const __VLS_export$
|
|
474
|
-
declare const _default$7: typeof __VLS_export$
|
|
475
|
-
type __VLS_WithSlots$
|
|
473
|
+
declare const __VLS_export$56: __VLS_WithSlots$53<typeof __VLS_base$53, __VLS_Slots$53>;
|
|
474
|
+
declare const _default$7: typeof __VLS_export$56;
|
|
475
|
+
type __VLS_WithSlots$53<T, S> = T & {
|
|
476
476
|
new (): {
|
|
477
477
|
$slots: S;
|
|
478
478
|
};
|
|
@@ -486,23 +486,23 @@ interface AvatarFallbackProps extends BaseUIComponentProps<AvatarFallbackState>
|
|
|
486
486
|
*/
|
|
487
487
|
delay?: number;
|
|
488
488
|
}
|
|
489
|
-
declare var __VLS_1$
|
|
489
|
+
declare var __VLS_1$43: {
|
|
490
490
|
props: Record<string, any>;
|
|
491
491
|
state: AvatarFallbackState;
|
|
492
|
-
}, __VLS_10$
|
|
492
|
+
}, __VLS_10$36: {
|
|
493
493
|
state: AvatarFallbackState;
|
|
494
494
|
};
|
|
495
|
-
type __VLS_Slots$
|
|
496
|
-
default?: (props: typeof __VLS_1$
|
|
495
|
+
type __VLS_Slots$52 = {} & {
|
|
496
|
+
default?: (props: typeof __VLS_1$43) => any;
|
|
497
497
|
} & {
|
|
498
|
-
default?: (props: typeof __VLS_10$
|
|
498
|
+
default?: (props: typeof __VLS_10$36) => any;
|
|
499
499
|
};
|
|
500
|
-
declare const __VLS_base$
|
|
500
|
+
declare const __VLS_base$52: vue.DefineComponent<AvatarFallbackProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AvatarFallbackProps> & Readonly<{}>, {
|
|
501
501
|
as: string | vue.Component;
|
|
502
502
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
503
|
-
declare const __VLS_export$
|
|
504
|
-
declare const _default$5: typeof __VLS_export$
|
|
505
|
-
type __VLS_WithSlots$
|
|
503
|
+
declare const __VLS_export$55: __VLS_WithSlots$52<typeof __VLS_base$52, __VLS_Slots$52>;
|
|
504
|
+
declare const _default$5: typeof __VLS_export$55;
|
|
505
|
+
type __VLS_WithSlots$52<T, S> = T & {
|
|
506
506
|
new (): {
|
|
507
507
|
$slots: S;
|
|
508
508
|
};
|
|
@@ -520,28 +520,28 @@ interface AvatarImageProps extends BaseUIComponentProps<AvatarImageState> {
|
|
|
520
520
|
referrerPolicy?: HTMLImageElement['referrerPolicy'];
|
|
521
521
|
crossOrigin?: '' | 'anonymous' | 'use-credentials';
|
|
522
522
|
}
|
|
523
|
-
declare var __VLS_1$
|
|
523
|
+
declare var __VLS_1$42: {
|
|
524
524
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
525
525
|
props: Record<string, any>;
|
|
526
526
|
state: AvatarImageState;
|
|
527
|
-
}, __VLS_10$
|
|
527
|
+
}, __VLS_10$35: {
|
|
528
528
|
state: AvatarImageState;
|
|
529
529
|
};
|
|
530
|
-
type __VLS_Slots$
|
|
531
|
-
default?: (props: typeof __VLS_1$
|
|
530
|
+
type __VLS_Slots$51 = {} & {
|
|
531
|
+
default?: (props: typeof __VLS_1$42) => any;
|
|
532
532
|
} & {
|
|
533
|
-
default?: (props: typeof __VLS_10$
|
|
533
|
+
default?: (props: typeof __VLS_10$35) => any;
|
|
534
534
|
};
|
|
535
|
-
declare const __VLS_base$
|
|
535
|
+
declare const __VLS_base$51: vue.DefineComponent<AvatarImageProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & {
|
|
536
536
|
loadingStatusChange: (status: ImageLoadingStatus$1) => any;
|
|
537
537
|
}, string, vue.PublicProps, Readonly<AvatarImageProps> & Readonly<{
|
|
538
538
|
onLoadingStatusChange?: ((status: ImageLoadingStatus$1) => any) | undefined;
|
|
539
539
|
}>, {
|
|
540
540
|
as: string | vue.Component;
|
|
541
541
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
542
|
-
declare const __VLS_export$
|
|
543
|
-
declare const _default$6: typeof __VLS_export$
|
|
544
|
-
type __VLS_WithSlots$
|
|
542
|
+
declare const __VLS_export$54: __VLS_WithSlots$51<typeof __VLS_base$51, __VLS_Slots$51>;
|
|
543
|
+
declare const _default$6: typeof __VLS_export$54;
|
|
544
|
+
type __VLS_WithSlots$51<T, S> = T & {
|
|
545
545
|
new (): {
|
|
546
546
|
$slots: S;
|
|
547
547
|
};
|
|
@@ -584,31 +584,31 @@ interface ButtonProps extends NativeButtonProps, BaseUIComponentProps<ButtonStat
|
|
|
584
584
|
}
|
|
585
585
|
//#endregion
|
|
586
586
|
//#region src/button/Button.vue.d.ts
|
|
587
|
-
declare var __VLS_1$
|
|
587
|
+
declare var __VLS_1$41: {
|
|
588
588
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
589
589
|
props: Record<string, any>;
|
|
590
590
|
state: {
|
|
591
591
|
disabled: boolean;
|
|
592
592
|
};
|
|
593
|
-
}, __VLS_10$
|
|
593
|
+
}, __VLS_10$34: {
|
|
594
594
|
state: {
|
|
595
595
|
disabled: boolean;
|
|
596
596
|
};
|
|
597
597
|
};
|
|
598
|
-
type __VLS_Slots$
|
|
599
|
-
default?: (props: typeof __VLS_1$
|
|
598
|
+
type __VLS_Slots$50 = {} & {
|
|
599
|
+
default?: (props: typeof __VLS_1$41) => any;
|
|
600
600
|
} & {
|
|
601
|
-
default?: (props: typeof __VLS_10$
|
|
601
|
+
default?: (props: typeof __VLS_10$34) => any;
|
|
602
602
|
};
|
|
603
|
-
declare const __VLS_base$
|
|
603
|
+
declare const __VLS_base$50: vue.DefineComponent<ButtonProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ButtonProps> & Readonly<{}>, {
|
|
604
604
|
disabled: boolean;
|
|
605
605
|
nativeButton: boolean;
|
|
606
606
|
as: string | vue.Component;
|
|
607
607
|
focusableWhenDisabled: boolean;
|
|
608
608
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
609
|
-
declare const __VLS_export$
|
|
610
|
-
declare const _default$8: typeof __VLS_export$
|
|
611
|
-
type __VLS_WithSlots$
|
|
609
|
+
declare const __VLS_export$53: __VLS_WithSlots$50<typeof __VLS_base$50, __VLS_Slots$50>;
|
|
610
|
+
declare const _default$8: typeof __VLS_export$53;
|
|
611
|
+
type __VLS_WithSlots$50<T, S> = T & {
|
|
612
612
|
new (): {
|
|
613
613
|
$slots: S;
|
|
614
614
|
};
|
|
@@ -727,18 +727,18 @@ interface FieldRootProps extends BaseUIComponentProps<FieldRootState> {
|
|
|
727
727
|
*/
|
|
728
728
|
touched?: boolean;
|
|
729
729
|
}
|
|
730
|
-
declare var __VLS_1$
|
|
730
|
+
declare var __VLS_1$40: {
|
|
731
731
|
props: Record<string, any>;
|
|
732
732
|
state: FieldRootState;
|
|
733
|
-
}, __VLS_10$
|
|
733
|
+
}, __VLS_10$33: {
|
|
734
734
|
state: FieldRootState;
|
|
735
735
|
};
|
|
736
|
-
type __VLS_Slots$
|
|
737
|
-
default?: (props: typeof __VLS_1$
|
|
736
|
+
type __VLS_Slots$49 = {} & {
|
|
737
|
+
default?: (props: typeof __VLS_1$40) => any;
|
|
738
738
|
} & {
|
|
739
|
-
default?: (props: typeof __VLS_10$
|
|
739
|
+
default?: (props: typeof __VLS_10$33) => any;
|
|
740
740
|
};
|
|
741
|
-
declare const __VLS_base$
|
|
741
|
+
declare const __VLS_base$49: vue.DefineComponent<FieldRootProps, FieldRootExpose, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldRootProps> & Readonly<{}>, {
|
|
742
742
|
disabled: boolean;
|
|
743
743
|
as: string | vue.Component;
|
|
744
744
|
touched: boolean;
|
|
@@ -746,9 +746,9 @@ declare const __VLS_base$32: vue.DefineComponent<FieldRootProps, FieldRootExpose
|
|
|
746
746
|
invalid: boolean;
|
|
747
747
|
validationDebounceTime: number;
|
|
748
748
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
749
|
-
declare const __VLS_export$
|
|
750
|
-
declare const _default$22: typeof __VLS_export$
|
|
751
|
-
type __VLS_WithSlots$
|
|
749
|
+
declare const __VLS_export$52: __VLS_WithSlots$49<typeof __VLS_base$49, __VLS_Slots$49>;
|
|
750
|
+
declare const _default$22: typeof __VLS_export$52;
|
|
751
|
+
type __VLS_WithSlots$49<T, S> = T & {
|
|
752
752
|
new (): {
|
|
753
753
|
$slots: S;
|
|
754
754
|
};
|
|
@@ -848,19 +848,19 @@ interface CheckboxRootProps extends NonNativeButtonProps, BaseUIComponentProps<C
|
|
|
848
848
|
'value'?: string;
|
|
849
849
|
'aria-labelledby'?: string;
|
|
850
850
|
}
|
|
851
|
-
declare var __VLS_1$
|
|
851
|
+
declare var __VLS_1$39: {
|
|
852
852
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
853
853
|
props: Record<string, any>;
|
|
854
854
|
state: CheckboxRootState;
|
|
855
855
|
}, __VLS_9$1: {
|
|
856
856
|
state: CheckboxRootState;
|
|
857
857
|
};
|
|
858
|
-
type __VLS_Slots$
|
|
859
|
-
default?: (props: typeof __VLS_1$
|
|
858
|
+
type __VLS_Slots$48 = {} & {
|
|
859
|
+
default?: (props: typeof __VLS_1$39) => any;
|
|
860
860
|
} & {
|
|
861
861
|
default?: (props: typeof __VLS_9$1) => any;
|
|
862
862
|
};
|
|
863
|
-
declare const __VLS_base$
|
|
863
|
+
declare const __VLS_base$48: vue.DefineComponent<CheckboxRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
864
864
|
checkedChange: (checked: boolean, eventDetails: {
|
|
865
865
|
reason: "none";
|
|
866
866
|
event: Event;
|
|
@@ -890,9 +890,9 @@ declare const __VLS_base$31: vue.DefineComponent<CheckboxRootProps, {}, {}, {},
|
|
|
890
890
|
nativeButton: boolean;
|
|
891
891
|
as: string | vue.Component;
|
|
892
892
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
893
|
-
declare const __VLS_export$
|
|
894
|
-
declare const _default$12: typeof __VLS_export$
|
|
895
|
-
type __VLS_WithSlots$
|
|
893
|
+
declare const __VLS_export$51: __VLS_WithSlots$48<typeof __VLS_base$48, __VLS_Slots$48>;
|
|
894
|
+
declare const _default$12: typeof __VLS_export$51;
|
|
895
|
+
type __VLS_WithSlots$48<T, S> = T & {
|
|
896
896
|
new (): {
|
|
897
897
|
$slots: S;
|
|
898
898
|
};
|
|
@@ -909,25 +909,25 @@ interface CheckboxIndicatorProps extends BaseUIComponentProps<CheckboxIndicatorS
|
|
|
909
909
|
*/
|
|
910
910
|
keepMounted?: boolean;
|
|
911
911
|
}
|
|
912
|
-
declare var __VLS_1$
|
|
912
|
+
declare var __VLS_1$38: {
|
|
913
913
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
914
914
|
props: Record<string, any>;
|
|
915
915
|
state: CheckboxIndicatorState;
|
|
916
|
-
}, __VLS_10$
|
|
916
|
+
}, __VLS_10$32: {
|
|
917
917
|
state: CheckboxIndicatorState;
|
|
918
918
|
};
|
|
919
|
-
type __VLS_Slots$
|
|
920
|
-
default?: (props: typeof __VLS_1$
|
|
919
|
+
type __VLS_Slots$47 = {} & {
|
|
920
|
+
default?: (props: typeof __VLS_1$38) => any;
|
|
921
921
|
} & {
|
|
922
|
-
default?: (props: typeof __VLS_10$
|
|
922
|
+
default?: (props: typeof __VLS_10$32) => any;
|
|
923
923
|
};
|
|
924
|
-
declare const __VLS_base$
|
|
924
|
+
declare const __VLS_base$47: vue.DefineComponent<CheckboxIndicatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CheckboxIndicatorProps> & Readonly<{}>, {
|
|
925
925
|
as: string | vue.Component;
|
|
926
926
|
keepMounted: boolean;
|
|
927
927
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
928
|
-
declare const __VLS_export$
|
|
929
|
-
declare const _default$11: typeof __VLS_export$
|
|
930
|
-
type __VLS_WithSlots$
|
|
928
|
+
declare const __VLS_export$50: __VLS_WithSlots$47<typeof __VLS_base$47, __VLS_Slots$47>;
|
|
929
|
+
declare const _default$11: typeof __VLS_export$50;
|
|
930
|
+
type __VLS_WithSlots$47<T, S> = T & {
|
|
931
931
|
new (): {
|
|
932
932
|
$slots: S;
|
|
933
933
|
};
|
|
@@ -1226,19 +1226,19 @@ interface CheckboxGroupProps extends BaseUIComponentProps<CheckboxGroupState> {
|
|
|
1226
1226
|
disabled?: boolean;
|
|
1227
1227
|
id?: string;
|
|
1228
1228
|
}
|
|
1229
|
-
declare var __VLS_1$
|
|
1229
|
+
declare var __VLS_1$37: {
|
|
1230
1230
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
1231
1231
|
props: Record<string, any>;
|
|
1232
1232
|
state: CheckboxGroupState;
|
|
1233
|
-
}, __VLS_10$
|
|
1233
|
+
}, __VLS_10$31: {
|
|
1234
1234
|
state: CheckboxGroupState;
|
|
1235
1235
|
};
|
|
1236
|
-
type __VLS_Slots$
|
|
1237
|
-
default?: (props: typeof __VLS_1$
|
|
1236
|
+
type __VLS_Slots$46 = {} & {
|
|
1237
|
+
default?: (props: typeof __VLS_1$37) => any;
|
|
1238
1238
|
} & {
|
|
1239
|
-
default?: (props: typeof __VLS_10$
|
|
1239
|
+
default?: (props: typeof __VLS_10$31) => any;
|
|
1240
1240
|
};
|
|
1241
|
-
declare const __VLS_base$
|
|
1241
|
+
declare const __VLS_base$46: vue.DefineComponent<CheckboxGroupProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1242
1242
|
valueChange: (value: string[], eventDetails: {
|
|
1243
1243
|
reason: "none";
|
|
1244
1244
|
event: Event;
|
|
@@ -1263,9 +1263,9 @@ declare const __VLS_base$29: vue.DefineComponent<CheckboxGroupProps, {}, {}, {},
|
|
|
1263
1263
|
as: string | vue.Component;
|
|
1264
1264
|
defaultValue: string[];
|
|
1265
1265
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1266
|
-
declare const __VLS_export$
|
|
1267
|
-
declare const _default$10: typeof __VLS_export$
|
|
1268
|
-
type __VLS_WithSlots$
|
|
1266
|
+
declare const __VLS_export$49: __VLS_WithSlots$46<typeof __VLS_base$46, __VLS_Slots$46>;
|
|
1267
|
+
declare const _default$10: typeof __VLS_export$49;
|
|
1268
|
+
type __VLS_WithSlots$46<T, S> = T & {
|
|
1269
1269
|
new (): {
|
|
1270
1270
|
$slots: S;
|
|
1271
1271
|
};
|
|
@@ -1389,44 +1389,44 @@ interface CollapsiblePanelProps extends BaseUIComponentProps<CollapsiblePanelSta
|
|
|
1389
1389
|
}
|
|
1390
1390
|
//#endregion
|
|
1391
1391
|
//#region src/collapsible/panel/CollapsiblePanel.vue.d.ts
|
|
1392
|
-
declare var __VLS_1$
|
|
1392
|
+
declare var __VLS_1$36: {
|
|
1393
1393
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
1394
1394
|
props: Record<string, any>;
|
|
1395
1395
|
state: CollapsiblePanelState;
|
|
1396
|
-
}, __VLS_10$
|
|
1396
|
+
}, __VLS_10$30: {
|
|
1397
1397
|
state: CollapsiblePanelState;
|
|
1398
1398
|
};
|
|
1399
|
-
type __VLS_Slots$
|
|
1400
|
-
default?: (props: typeof __VLS_1$
|
|
1399
|
+
type __VLS_Slots$45 = {} & {
|
|
1400
|
+
default?: (props: typeof __VLS_1$36) => any;
|
|
1401
1401
|
} & {
|
|
1402
|
-
default?: (props: typeof __VLS_10$
|
|
1402
|
+
default?: (props: typeof __VLS_10$30) => any;
|
|
1403
1403
|
};
|
|
1404
|
-
declare const __VLS_base$
|
|
1404
|
+
declare const __VLS_base$45: vue.DefineComponent<CollapsiblePanelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CollapsiblePanelProps> & Readonly<{}>, {
|
|
1405
1405
|
as: string | vue.Component;
|
|
1406
1406
|
keepMounted: boolean;
|
|
1407
1407
|
hiddenUntilFound: boolean;
|
|
1408
1408
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1409
|
-
declare const __VLS_export$
|
|
1410
|
-
declare const _default$13: typeof __VLS_export$
|
|
1411
|
-
type __VLS_WithSlots$
|
|
1409
|
+
declare const __VLS_export$48: __VLS_WithSlots$45<typeof __VLS_base$45, __VLS_Slots$45>;
|
|
1410
|
+
declare const _default$13: typeof __VLS_export$48;
|
|
1411
|
+
type __VLS_WithSlots$45<T, S> = T & {
|
|
1412
1412
|
new (): {
|
|
1413
1413
|
$slots: S;
|
|
1414
1414
|
};
|
|
1415
1415
|
}; //# sourceMappingURL=CollapsiblePanel.vue.d.ts.map
|
|
1416
1416
|
//#endregion
|
|
1417
1417
|
//#region src/collapsible/root/CollapsibleRoot.vue.d.ts
|
|
1418
|
-
declare var __VLS_1$
|
|
1418
|
+
declare var __VLS_1$35: {
|
|
1419
1419
|
props: Record<string, any>;
|
|
1420
1420
|
state: CollapsibleRootState;
|
|
1421
|
-
}, __VLS_10$
|
|
1421
|
+
}, __VLS_10$29: {
|
|
1422
1422
|
state: CollapsibleRootState;
|
|
1423
1423
|
};
|
|
1424
|
-
type __VLS_Slots$
|
|
1425
|
-
default?: (props: typeof __VLS_1$
|
|
1424
|
+
type __VLS_Slots$44 = {} & {
|
|
1425
|
+
default?: (props: typeof __VLS_1$35) => any;
|
|
1426
1426
|
} & {
|
|
1427
|
-
default?: (props: typeof __VLS_10$
|
|
1427
|
+
default?: (props: typeof __VLS_10$29) => any;
|
|
1428
1428
|
};
|
|
1429
|
-
declare const __VLS_base$
|
|
1429
|
+
declare const __VLS_base$44: vue.DefineComponent<CollapsibleRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & {
|
|
1430
1430
|
openChange: (open: boolean, details: CollapsibleChangeEventDetails) => any;
|
|
1431
1431
|
}, string, vue.PublicProps, Readonly<CollapsibleRootProps> & Readonly<{
|
|
1432
1432
|
onOpenChange?: ((open: boolean, details: CollapsibleChangeEventDetails) => any) | undefined;
|
|
@@ -1435,9 +1435,9 @@ declare const __VLS_base$27: vue.DefineComponent<CollapsibleRootProps, {}, {}, {
|
|
|
1435
1435
|
as: string | vue.Component;
|
|
1436
1436
|
defaultOpen: boolean;
|
|
1437
1437
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1438
|
-
declare const __VLS_export$
|
|
1439
|
-
declare const _default$14: typeof __VLS_export$
|
|
1440
|
-
type __VLS_WithSlots$
|
|
1438
|
+
declare const __VLS_export$47: __VLS_WithSlots$44<typeof __VLS_base$44, __VLS_Slots$44>;
|
|
1439
|
+
declare const _default$14: typeof __VLS_export$47;
|
|
1440
|
+
type __VLS_WithSlots$44<T, S> = T & {
|
|
1441
1441
|
new (): {
|
|
1442
1442
|
$slots: S;
|
|
1443
1443
|
};
|
|
@@ -1499,25 +1499,25 @@ declare const collapsibleRootContextKey: InjectionKey<CollapsibleRootContext>;
|
|
|
1499
1499
|
declare function useCollapsibleRootContext(): CollapsibleRootContext;
|
|
1500
1500
|
//#endregion
|
|
1501
1501
|
//#region src/collapsible/trigger/CollapsibleTrigger.vue.d.ts
|
|
1502
|
-
declare var __VLS_1$
|
|
1502
|
+
declare var __VLS_1$34: {
|
|
1503
1503
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
1504
1504
|
props: Record<string, any>;
|
|
1505
1505
|
state: vue.Ref<CollapsibleRootState, CollapsibleRootState>;
|
|
1506
|
-
}, __VLS_10$
|
|
1506
|
+
}, __VLS_10$28: {
|
|
1507
1507
|
state: vue.Ref<CollapsibleRootState, CollapsibleRootState>;
|
|
1508
1508
|
};
|
|
1509
|
-
type __VLS_Slots$
|
|
1510
|
-
default?: (props: typeof __VLS_1$
|
|
1509
|
+
type __VLS_Slots$43 = {} & {
|
|
1510
|
+
default?: (props: typeof __VLS_1$34) => any;
|
|
1511
1511
|
} & {
|
|
1512
|
-
default?: (props: typeof __VLS_10$
|
|
1512
|
+
default?: (props: typeof __VLS_10$28) => any;
|
|
1513
1513
|
};
|
|
1514
|
-
declare const __VLS_base$
|
|
1514
|
+
declare const __VLS_base$43: vue.DefineComponent<CollapsibleTriggerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CollapsibleTriggerProps> & Readonly<{}>, {
|
|
1515
1515
|
nativeButton: boolean;
|
|
1516
1516
|
as: string | vue.Component;
|
|
1517
1517
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1518
|
-
declare const __VLS_export$
|
|
1519
|
-
declare const _default$15: typeof __VLS_export$
|
|
1520
|
-
type __VLS_WithSlots$
|
|
1518
|
+
declare const __VLS_export$46: __VLS_WithSlots$43<typeof __VLS_base$43, __VLS_Slots$43>;
|
|
1519
|
+
declare const _default$15: typeof __VLS_export$46;
|
|
1520
|
+
type __VLS_WithSlots$43<T, S> = T & {
|
|
1521
1521
|
new (): {
|
|
1522
1522
|
$slots: S;
|
|
1523
1523
|
};
|
|
@@ -1545,32 +1545,32 @@ interface CSPProviderProps {
|
|
|
1545
1545
|
*/
|
|
1546
1546
|
disableStyleElements?: boolean;
|
|
1547
1547
|
}
|
|
1548
|
-
declare var __VLS_1$
|
|
1549
|
-
type __VLS_Slots$
|
|
1550
|
-
default?: (props: typeof __VLS_1$
|
|
1548
|
+
declare var __VLS_1$33: {};
|
|
1549
|
+
type __VLS_Slots$42 = {} & {
|
|
1550
|
+
default?: (props: typeof __VLS_1$33) => any;
|
|
1551
1551
|
};
|
|
1552
|
-
declare const __VLS_base$
|
|
1552
|
+
declare const __VLS_base$42: vue.DefineComponent<CSPProviderProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CSPProviderProps> & Readonly<{}>, {
|
|
1553
1553
|
disableStyleElements: boolean;
|
|
1554
1554
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1555
|
-
declare const __VLS_export$
|
|
1556
|
-
declare const _default$9: typeof __VLS_export$
|
|
1557
|
-
type __VLS_WithSlots$
|
|
1555
|
+
declare const __VLS_export$45: __VLS_WithSlots$42<typeof __VLS_base$42, __VLS_Slots$42>;
|
|
1556
|
+
declare const _default$9: typeof __VLS_export$45;
|
|
1557
|
+
type __VLS_WithSlots$42<T, S> = T & {
|
|
1558
1558
|
new (): {
|
|
1559
1559
|
$slots: S;
|
|
1560
1560
|
};
|
|
1561
1561
|
}; //# sourceMappingURL=CSPProvider.vue.d.ts.map
|
|
1562
1562
|
//#endregion
|
|
1563
1563
|
//#region src/direction-provider/DirectionProvider.vue.d.ts
|
|
1564
|
-
declare var __VLS_1$
|
|
1565
|
-
type __VLS_Slots$
|
|
1566
|
-
default?: (props: typeof __VLS_1$
|
|
1564
|
+
declare var __VLS_1$32: {};
|
|
1565
|
+
type __VLS_Slots$41 = {} & {
|
|
1566
|
+
default?: (props: typeof __VLS_1$32) => any;
|
|
1567
1567
|
};
|
|
1568
|
-
declare const __VLS_base$
|
|
1568
|
+
declare const __VLS_base$41: vue.DefineComponent<DirectionProviderProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<DirectionProviderProps> & Readonly<{}>, {
|
|
1569
1569
|
direction: TextDirection;
|
|
1570
1570
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1571
|
-
declare const __VLS_export$
|
|
1572
|
-
declare const _default$16: typeof __VLS_export$
|
|
1573
|
-
type __VLS_WithSlots$
|
|
1571
|
+
declare const __VLS_export$44: __VLS_WithSlots$41<typeof __VLS_base$41, __VLS_Slots$41>;
|
|
1572
|
+
declare const _default$16: typeof __VLS_export$44;
|
|
1573
|
+
type __VLS_WithSlots$41<T, S> = T & {
|
|
1574
1574
|
new (): {
|
|
1575
1575
|
$slots: S;
|
|
1576
1576
|
};
|
|
@@ -1595,15 +1595,15 @@ interface FieldControlProps extends BaseUIComponentProps<FieldControlState> {
|
|
|
1595
1595
|
step?: string | number;
|
|
1596
1596
|
placeholder?: string;
|
|
1597
1597
|
}
|
|
1598
|
-
declare var __VLS_1$
|
|
1598
|
+
declare var __VLS_1$31: {
|
|
1599
1599
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
1600
1600
|
props: Record<string, any>;
|
|
1601
1601
|
state: FieldRootState;
|
|
1602
1602
|
};
|
|
1603
|
-
type __VLS_Slots$
|
|
1604
|
-
default?: (props: typeof __VLS_1$
|
|
1603
|
+
type __VLS_Slots$40 = {} & {
|
|
1604
|
+
default?: (props: typeof __VLS_1$31) => any;
|
|
1605
1605
|
};
|
|
1606
|
-
declare const __VLS_base$
|
|
1606
|
+
declare const __VLS_base$40: vue.DefineComponent<FieldControlProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1607
1607
|
valueChange: (value: string, event: Event) => any;
|
|
1608
1608
|
}, string, vue.PublicProps, Readonly<FieldControlProps> & Readonly<{
|
|
1609
1609
|
onValueChange?: ((value: string, event: Event) => any) | undefined;
|
|
@@ -1612,9 +1612,9 @@ declare const __VLS_base$23: vue.DefineComponent<FieldControlProps, {}, {}, {},
|
|
|
1612
1612
|
as: string | vue.Component;
|
|
1613
1613
|
autofocus: boolean;
|
|
1614
1614
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1615
|
-
declare const __VLS_export$
|
|
1616
|
-
declare const _default$17: typeof __VLS_export$
|
|
1617
|
-
type __VLS_WithSlots$
|
|
1615
|
+
declare const __VLS_export$43: __VLS_WithSlots$40<typeof __VLS_base$40, __VLS_Slots$40>;
|
|
1616
|
+
declare const _default$17: typeof __VLS_export$43;
|
|
1617
|
+
type __VLS_WithSlots$40<T, S> = T & {
|
|
1618
1618
|
new (): {
|
|
1619
1619
|
$slots: S;
|
|
1620
1620
|
};
|
|
@@ -1660,23 +1660,23 @@ interface FieldDescriptionProps extends BaseUIComponentProps<FieldDescriptionSta
|
|
|
1660
1660
|
*/
|
|
1661
1661
|
id?: string;
|
|
1662
1662
|
}
|
|
1663
|
-
declare var __VLS_1$
|
|
1663
|
+
declare var __VLS_1$30: {
|
|
1664
1664
|
props: Record<string, any>;
|
|
1665
1665
|
state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
|
|
1666
|
-
}, __VLS_10$
|
|
1666
|
+
}, __VLS_10$27: {
|
|
1667
1667
|
state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
|
|
1668
1668
|
};
|
|
1669
|
-
type __VLS_Slots$
|
|
1670
|
-
default?: (props: typeof __VLS_1$
|
|
1669
|
+
type __VLS_Slots$39 = {} & {
|
|
1670
|
+
default?: (props: typeof __VLS_1$30) => any;
|
|
1671
1671
|
} & {
|
|
1672
|
-
default?: (props: typeof __VLS_10$
|
|
1672
|
+
default?: (props: typeof __VLS_10$27) => any;
|
|
1673
1673
|
};
|
|
1674
|
-
declare const __VLS_base$
|
|
1674
|
+
declare const __VLS_base$39: vue.DefineComponent<FieldDescriptionProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldDescriptionProps> & Readonly<{}>, {
|
|
1675
1675
|
as: string | vue.Component;
|
|
1676
1676
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1677
|
-
declare const __VLS_export$
|
|
1678
|
-
declare const _default$18: typeof __VLS_export$
|
|
1679
|
-
type __VLS_WithSlots$
|
|
1677
|
+
declare const __VLS_export$42: __VLS_WithSlots$39<typeof __VLS_base$39, __VLS_Slots$39>;
|
|
1678
|
+
declare const _default$18: typeof __VLS_export$42;
|
|
1679
|
+
type __VLS_WithSlots$39<T, S> = T & {
|
|
1680
1680
|
new (): {
|
|
1681
1681
|
$slots: S;
|
|
1682
1682
|
};
|
|
@@ -1698,23 +1698,23 @@ interface FieldErrorProps extends BaseUIComponentProps<FieldErrorState> {
|
|
|
1698
1698
|
*/
|
|
1699
1699
|
match?: boolean | keyof ValidityState;
|
|
1700
1700
|
}
|
|
1701
|
-
declare var __VLS_1$
|
|
1701
|
+
declare var __VLS_1$29: {
|
|
1702
1702
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
1703
1703
|
props: Record<string, any>;
|
|
1704
1704
|
state: FieldErrorState;
|
|
1705
1705
|
message: string | string[];
|
|
1706
|
-
}, __VLS_10$
|
|
1707
|
-
type __VLS_Slots$
|
|
1708
|
-
default?: (props: typeof __VLS_1$
|
|
1706
|
+
}, __VLS_10$26: {};
|
|
1707
|
+
type __VLS_Slots$38 = {} & {
|
|
1708
|
+
default?: (props: typeof __VLS_1$29) => any;
|
|
1709
1709
|
} & {
|
|
1710
|
-
default?: (props: typeof __VLS_10$
|
|
1710
|
+
default?: (props: typeof __VLS_10$26) => any;
|
|
1711
1711
|
};
|
|
1712
|
-
declare const __VLS_base$
|
|
1712
|
+
declare const __VLS_base$38: vue.DefineComponent<FieldErrorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldErrorProps> & Readonly<{}>, {
|
|
1713
1713
|
as: string | vue.Component;
|
|
1714
1714
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1715
|
-
declare const __VLS_export$
|
|
1716
|
-
declare const _default$19: typeof __VLS_export$
|
|
1717
|
-
type __VLS_WithSlots$
|
|
1715
|
+
declare const __VLS_export$41: __VLS_WithSlots$38<typeof __VLS_base$38, __VLS_Slots$38>;
|
|
1716
|
+
declare const _default$19: typeof __VLS_export$41;
|
|
1717
|
+
type __VLS_WithSlots$38<T, S> = T & {
|
|
1718
1718
|
new (): {
|
|
1719
1719
|
$slots: S;
|
|
1720
1720
|
};
|
|
@@ -1736,18 +1736,18 @@ declare var __VLS_8$4: {
|
|
|
1736
1736
|
}, __VLS_16$1: {
|
|
1737
1737
|
state: FieldRootState;
|
|
1738
1738
|
};
|
|
1739
|
-
type __VLS_Slots$
|
|
1739
|
+
type __VLS_Slots$37 = {} & {
|
|
1740
1740
|
default?: (props: typeof __VLS_8$4) => any;
|
|
1741
1741
|
} & {
|
|
1742
1742
|
default?: (props: typeof __VLS_16$1) => any;
|
|
1743
1743
|
};
|
|
1744
|
-
declare const __VLS_base$
|
|
1744
|
+
declare const __VLS_base$37: vue.DefineComponent<FieldItemProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldItemProps> & Readonly<{}>, {
|
|
1745
1745
|
disabled: boolean;
|
|
1746
1746
|
as: string | vue.Component;
|
|
1747
1747
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1748
|
-
declare const __VLS_export$
|
|
1749
|
-
declare const _default$20: typeof __VLS_export$
|
|
1750
|
-
type __VLS_WithSlots$
|
|
1748
|
+
declare const __VLS_export$40: __VLS_WithSlots$37<typeof __VLS_base$37, __VLS_Slots$37>;
|
|
1749
|
+
declare const _default$20: typeof __VLS_export$40;
|
|
1750
|
+
type __VLS_WithSlots$37<T, S> = T & {
|
|
1751
1751
|
new (): {
|
|
1752
1752
|
$slots: S;
|
|
1753
1753
|
};
|
|
@@ -1773,24 +1773,24 @@ interface FieldLabelProps extends BaseUIComponentProps<FieldLabelState> {
|
|
|
1773
1773
|
*/
|
|
1774
1774
|
nativeLabel?: boolean;
|
|
1775
1775
|
}
|
|
1776
|
-
declare var __VLS_1$
|
|
1776
|
+
declare var __VLS_1$28: {
|
|
1777
1777
|
props: Record<string, any>;
|
|
1778
1778
|
state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
|
|
1779
|
-
}, __VLS_10$
|
|
1779
|
+
}, __VLS_10$25: {
|
|
1780
1780
|
state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
|
|
1781
1781
|
};
|
|
1782
|
-
type __VLS_Slots$
|
|
1783
|
-
default?: (props: typeof __VLS_1$
|
|
1782
|
+
type __VLS_Slots$36 = {} & {
|
|
1783
|
+
default?: (props: typeof __VLS_1$28) => any;
|
|
1784
1784
|
} & {
|
|
1785
|
-
default?: (props: typeof __VLS_10$
|
|
1785
|
+
default?: (props: typeof __VLS_10$25) => any;
|
|
1786
1786
|
};
|
|
1787
|
-
declare const __VLS_base$
|
|
1787
|
+
declare const __VLS_base$36: vue.DefineComponent<FieldLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldLabelProps> & Readonly<{}>, {
|
|
1788
1788
|
as: string | vue.Component;
|
|
1789
1789
|
nativeLabel: boolean;
|
|
1790
1790
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1791
|
-
declare const __VLS_export$
|
|
1792
|
-
declare const _default$21: typeof __VLS_export$
|
|
1793
|
-
type __VLS_WithSlots$
|
|
1791
|
+
declare const __VLS_export$39: __VLS_WithSlots$36<typeof __VLS_base$36, __VLS_Slots$36>;
|
|
1792
|
+
declare const _default$21: typeof __VLS_export$39;
|
|
1793
|
+
type __VLS_WithSlots$36<T, S> = T & {
|
|
1794
1794
|
new (): {
|
|
1795
1795
|
$slots: S;
|
|
1796
1796
|
};
|
|
@@ -1828,7 +1828,7 @@ interface FieldValidityState extends Omit<FieldValidityData, 'state'> {
|
|
|
1828
1828
|
validity: FieldValidityData['state'];
|
|
1829
1829
|
transitionStatus: TransitionStatus;
|
|
1830
1830
|
}
|
|
1831
|
-
declare var __VLS_1$
|
|
1831
|
+
declare var __VLS_1$27: {
|
|
1832
1832
|
validity: FieldValidityData["state"];
|
|
1833
1833
|
transitionStatus: TransitionStatus;
|
|
1834
1834
|
value: unknown;
|
|
@@ -1836,13 +1836,13 @@ declare var __VLS_1$13: {
|
|
|
1836
1836
|
errors: string[];
|
|
1837
1837
|
initialValue: unknown;
|
|
1838
1838
|
};
|
|
1839
|
-
type __VLS_Slots$
|
|
1840
|
-
default?: (props: typeof __VLS_1$
|
|
1839
|
+
type __VLS_Slots$35 = {} & {
|
|
1840
|
+
default?: (props: typeof __VLS_1$27) => any;
|
|
1841
1841
|
};
|
|
1842
|
-
declare const __VLS_base$
|
|
1843
|
-
declare const __VLS_export$
|
|
1844
|
-
declare const _default$23: typeof __VLS_export$
|
|
1845
|
-
type __VLS_WithSlots$
|
|
1842
|
+
declare const __VLS_base$35: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
1843
|
+
declare const __VLS_export$38: __VLS_WithSlots$35<typeof __VLS_base$35, __VLS_Slots$35>;
|
|
1844
|
+
declare const _default$23: typeof __VLS_export$38;
|
|
1845
|
+
type __VLS_WithSlots$35<T, S> = T & {
|
|
1846
1846
|
new (): {
|
|
1847
1847
|
$slots: S;
|
|
1848
1848
|
};
|
|
@@ -1862,23 +1862,23 @@ interface FieldsetLegendProps extends BaseUIComponentProps<FieldsetLegendState>
|
|
|
1862
1862
|
*/
|
|
1863
1863
|
id?: string;
|
|
1864
1864
|
}
|
|
1865
|
-
declare var __VLS_1$
|
|
1865
|
+
declare var __VLS_1$26: {
|
|
1866
1866
|
props: Record<string, any>;
|
|
1867
1867
|
state: FieldsetLegendState;
|
|
1868
|
-
}, __VLS_10$
|
|
1868
|
+
}, __VLS_10$24: {
|
|
1869
1869
|
state: FieldsetLegendState;
|
|
1870
1870
|
};
|
|
1871
|
-
type __VLS_Slots$
|
|
1872
|
-
default?: (props: typeof __VLS_1$
|
|
1871
|
+
type __VLS_Slots$34 = {} & {
|
|
1872
|
+
default?: (props: typeof __VLS_1$26) => any;
|
|
1873
1873
|
} & {
|
|
1874
|
-
default?: (props: typeof __VLS_10$
|
|
1874
|
+
default?: (props: typeof __VLS_10$24) => any;
|
|
1875
1875
|
};
|
|
1876
|
-
declare const __VLS_base$
|
|
1876
|
+
declare const __VLS_base$34: vue.DefineComponent<FieldsetLegendProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldsetLegendProps> & Readonly<{}>, {
|
|
1877
1877
|
as: string | vue.Component;
|
|
1878
1878
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1879
|
-
declare const __VLS_export$
|
|
1880
|
-
declare const _default$24: typeof __VLS_export$
|
|
1881
|
-
type __VLS_WithSlots$
|
|
1879
|
+
declare const __VLS_export$37: __VLS_WithSlots$34<typeof __VLS_base$34, __VLS_Slots$34>;
|
|
1880
|
+
declare const _default$24: typeof __VLS_export$37;
|
|
1881
|
+
type __VLS_WithSlots$34<T, S> = T & {
|
|
1882
1882
|
new (): {
|
|
1883
1883
|
$slots: S;
|
|
1884
1884
|
};
|
|
@@ -1898,24 +1898,24 @@ interface FieldsetRootProps extends BaseUIComponentProps<FieldsetRootState> {
|
|
|
1898
1898
|
*/
|
|
1899
1899
|
disabled?: boolean;
|
|
1900
1900
|
}
|
|
1901
|
-
declare var __VLS_1$
|
|
1901
|
+
declare var __VLS_1$25: {
|
|
1902
1902
|
props: Record<string, any>;
|
|
1903
1903
|
state: FieldsetRootState;
|
|
1904
|
-
}, __VLS_10$
|
|
1904
|
+
}, __VLS_10$23: {
|
|
1905
1905
|
state: FieldsetRootState;
|
|
1906
1906
|
};
|
|
1907
|
-
type __VLS_Slots$
|
|
1908
|
-
default?: (props: typeof __VLS_1$
|
|
1907
|
+
type __VLS_Slots$33 = {} & {
|
|
1908
|
+
default?: (props: typeof __VLS_1$25) => any;
|
|
1909
1909
|
} & {
|
|
1910
|
-
default?: (props: typeof __VLS_10$
|
|
1910
|
+
default?: (props: typeof __VLS_10$23) => any;
|
|
1911
1911
|
};
|
|
1912
|
-
declare const __VLS_base$
|
|
1912
|
+
declare const __VLS_base$33: vue.DefineComponent<FieldsetRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldsetRootProps> & Readonly<{}>, {
|
|
1913
1913
|
disabled: boolean;
|
|
1914
1914
|
as: string | vue.Component;
|
|
1915
1915
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1916
|
-
declare const __VLS_export$
|
|
1917
|
-
declare const _default$25: typeof __VLS_export$
|
|
1918
|
-
type __VLS_WithSlots$
|
|
1916
|
+
declare const __VLS_export$36: __VLS_WithSlots$33<typeof __VLS_base$33, __VLS_Slots$33>;
|
|
1917
|
+
declare const _default$25: typeof __VLS_export$36;
|
|
1918
|
+
type __VLS_WithSlots$33<T, S> = T & {
|
|
1919
1919
|
new (): {
|
|
1920
1920
|
$slots: S;
|
|
1921
1921
|
};
|
|
@@ -1958,24 +1958,24 @@ interface FormProps extends BaseUIComponentProps<FormState> {
|
|
|
1958
1958
|
*/
|
|
1959
1959
|
noValidate?: boolean;
|
|
1960
1960
|
}
|
|
1961
|
-
declare var __VLS_1$
|
|
1961
|
+
declare var __VLS_1$24: {
|
|
1962
1962
|
props: Record<string, any>;
|
|
1963
1963
|
state: FormState;
|
|
1964
1964
|
actions: {
|
|
1965
1965
|
validate: (fieldName?: string) => void;
|
|
1966
1966
|
};
|
|
1967
|
-
}, __VLS_10$
|
|
1967
|
+
}, __VLS_10$22: {
|
|
1968
1968
|
state: FormState;
|
|
1969
1969
|
actions: {
|
|
1970
1970
|
validate: (fieldName?: string) => void;
|
|
1971
1971
|
};
|
|
1972
1972
|
};
|
|
1973
|
-
type __VLS_Slots$
|
|
1974
|
-
default?: (props: typeof __VLS_1$
|
|
1973
|
+
type __VLS_Slots$32 = {} & {
|
|
1974
|
+
default?: (props: typeof __VLS_1$24) => any;
|
|
1975
1975
|
} & {
|
|
1976
|
-
default?: (props: typeof __VLS_10$
|
|
1976
|
+
default?: (props: typeof __VLS_10$22) => any;
|
|
1977
1977
|
};
|
|
1978
|
-
declare const __VLS_base$
|
|
1978
|
+
declare const __VLS_base$32: vue.DefineComponent<FormProps, {
|
|
1979
1979
|
actions: {
|
|
1980
1980
|
validate: (fieldName?: string) => void;
|
|
1981
1981
|
};
|
|
@@ -1988,67 +1988,556 @@ declare const __VLS_base$15: vue.DefineComponent<FormProps, {
|
|
|
1988
1988
|
validationMode: FormValidationMode;
|
|
1989
1989
|
noValidate: boolean;
|
|
1990
1990
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
1991
|
-
declare const __VLS_export$
|
|
1992
|
-
declare const _default$26: typeof __VLS_export$
|
|
1993
|
-
type __VLS_WithSlots$
|
|
1991
|
+
declare const __VLS_export$35: __VLS_WithSlots$32<typeof __VLS_base$32, __VLS_Slots$32>;
|
|
1992
|
+
declare const _default$26: typeof __VLS_export$35;
|
|
1993
|
+
type __VLS_WithSlots$32<T, S> = T & {
|
|
1994
1994
|
new (): {
|
|
1995
1995
|
$slots: S;
|
|
1996
1996
|
};
|
|
1997
1997
|
}; //# sourceMappingURL=Form.vue.d.ts.map
|
|
1998
1998
|
//#endregion
|
|
1999
|
-
//#region src/
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
declare
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
1999
|
+
//#region src/input/Input.vue.d.ts
|
|
2000
|
+
type InputState = FieldControlState;
|
|
2001
|
+
interface InputProps extends FieldControlProps {}
|
|
2002
|
+
declare var __VLS_11: {
|
|
2003
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2004
|
+
props: Record<string, any>;
|
|
2005
|
+
state: FieldRootState;
|
|
2006
|
+
};
|
|
2007
|
+
type __VLS_Slots$31 = {} & {
|
|
2008
|
+
default?: (props: typeof __VLS_11) => any;
|
|
2009
|
+
};
|
|
2010
|
+
declare const __VLS_base$31: vue.DefineComponent<InputProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2011
|
+
valueChange: (value: string, event: Event) => any;
|
|
2012
|
+
}, string, vue.PublicProps, Readonly<InputProps> & Readonly<{
|
|
2013
|
+
onValueChange?: ((value: string, event: Event) => any) | undefined;
|
|
2014
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2015
|
+
declare const __VLS_export$34: __VLS_WithSlots$31<typeof __VLS_base$31, __VLS_Slots$31>;
|
|
2016
|
+
declare const _default$27: typeof __VLS_export$34;
|
|
2017
|
+
type __VLS_WithSlots$31<T, S> = T & {
|
|
2018
|
+
new (): {
|
|
2019
|
+
$slots: S;
|
|
2020
|
+
};
|
|
2021
|
+
}; //# sourceMappingURL=Input.vue.d.ts.map
|
|
2022
|
+
//#endregion
|
|
2023
|
+
//#region src/input/InputDataAttributes.d.ts
|
|
2024
|
+
declare enum InputDataAttributes {
|
|
2025
|
+
/**
|
|
2026
|
+
* Present when the input is disabled.
|
|
2027
|
+
*/
|
|
2028
|
+
disabled = "data-disabled",
|
|
2029
|
+
/**
|
|
2030
|
+
* Present when the input is in a valid state (when wrapped in FieldRoot).
|
|
2031
|
+
*/
|
|
2032
|
+
valid = "data-valid",
|
|
2033
|
+
/**
|
|
2034
|
+
* Present when the input is in an invalid state (when wrapped in FieldRoot).
|
|
2035
|
+
*/
|
|
2036
|
+
invalid = "data-invalid",
|
|
2037
|
+
/**
|
|
2038
|
+
* Present when the input has been touched (when wrapped in FieldRoot).
|
|
2039
|
+
*/
|
|
2040
|
+
touched = "data-touched",
|
|
2041
|
+
/**
|
|
2042
|
+
* Present when the input's value has changed (when wrapped in FieldRoot).
|
|
2043
|
+
*/
|
|
2044
|
+
dirty = "data-dirty",
|
|
2045
|
+
/**
|
|
2046
|
+
* Present when the input is filled (when wrapped in FieldRoot).
|
|
2047
|
+
*/
|
|
2048
|
+
filled = "data-filled",
|
|
2049
|
+
/**
|
|
2050
|
+
* Present when the input is focused (when wrapped in FieldRoot).
|
|
2051
|
+
*/
|
|
2052
|
+
focused = "data-focused"
|
|
2053
|
+
}
|
|
2054
|
+
//#endregion
|
|
2055
|
+
//#region src/merge-props/mergeProps.d.ts
|
|
2056
|
+
declare function makeEventPreventable<T extends Event>(event: T): BaseUIEvent<T>;
|
|
2057
|
+
declare function mergeClasses(ourClass: string | undefined, theirClass: string | undefined): string | undefined;
|
|
2058
|
+
declare function mergeObjects<A extends object | undefined, B extends object | undefined>(a: A, b: B): NonNullable<A> | NonNullable<B> | (A & B) | undefined;
|
|
2059
|
+
/**
|
|
2060
|
+
* Merges Vue prop/attr objects using Base UI Vue semantics.
|
|
2061
|
+
*
|
|
2062
|
+
* Later props overwrite earlier ones, except for:
|
|
2063
|
+
* - Event listeners: merged so the rightmost listener runs first and can prevent earlier listeners.
|
|
2064
|
+
* - `class`: merged in rightmost-first order.
|
|
2065
|
+
* - `style`: merged using Vue's native style merging.
|
|
2066
|
+
*/
|
|
2067
|
+
declare function mergeProps(...args: (Record<string, any> | undefined)[]): Record<string, any>;
|
|
2068
|
+
/**
|
|
2069
|
+
* Merges an array of Vue prop/attr objects using the same semantics as {@link mergeProps}.
|
|
2070
|
+
*
|
|
2071
|
+
* Useful when prop layers are assembled dynamically before being bound with `v-bind`.
|
|
2072
|
+
*/
|
|
2073
|
+
declare function mergePropsN(props: readonly (Record<string, any> | undefined)[]): Record<string, any>;
|
|
2074
|
+
//#endregion
|
|
2075
|
+
//#region src/meter/root/MeterRoot.vue.d.ts
|
|
2076
|
+
interface MeterRootState {}
|
|
2077
|
+
interface MeterRootProps extends BaseUIComponentProps<MeterRootState> {
|
|
2078
|
+
/**
|
|
2079
|
+
* A string value that provides a user-friendly name for `aria-valuenow`,
|
|
2080
|
+
* the current value of the meter.
|
|
2081
|
+
*/
|
|
2082
|
+
ariaValuetext?: string;
|
|
2083
|
+
/**
|
|
2084
|
+
* Options to format the value.
|
|
2085
|
+
*/
|
|
2086
|
+
format?: Intl.NumberFormatOptions;
|
|
2087
|
+
/**
|
|
2088
|
+
* A function that returns a string value that provides a human-readable
|
|
2089
|
+
* text alternative for `aria-valuenow`, the current value of the meter.
|
|
2090
|
+
*/
|
|
2091
|
+
getAriaValueText?: (formattedValue: string, value: number) => string;
|
|
2092
|
+
/**
|
|
2093
|
+
* The locale used by `Intl.NumberFormat` when formatting the value.
|
|
2094
|
+
* Defaults to the user's runtime locale.
|
|
2095
|
+
*/
|
|
2096
|
+
locale?: Intl.LocalesArgument;
|
|
2097
|
+
/**
|
|
2098
|
+
* The maximum value.
|
|
2099
|
+
* @default 100
|
|
2100
|
+
*/
|
|
2101
|
+
max?: number;
|
|
2102
|
+
/**
|
|
2103
|
+
* The minimum value.
|
|
2104
|
+
* @default 0
|
|
2105
|
+
*/
|
|
2106
|
+
min?: number;
|
|
2107
|
+
/**
|
|
2108
|
+
* The current value.
|
|
2109
|
+
*/
|
|
2110
|
+
value: number;
|
|
2111
|
+
}
|
|
2112
|
+
declare var __VLS_1$23: {
|
|
2113
|
+
props: Record<string, any>;
|
|
2114
|
+
state: MeterRootState;
|
|
2115
|
+
}, __VLS_10$21: {
|
|
2116
|
+
state: MeterRootState;
|
|
2117
|
+
};
|
|
2118
|
+
type __VLS_Slots$30 = {} & {
|
|
2119
|
+
default?: (props: typeof __VLS_1$23) => any;
|
|
2120
|
+
} & {
|
|
2121
|
+
default?: (props: typeof __VLS_10$21) => any;
|
|
2122
|
+
};
|
|
2123
|
+
declare const __VLS_base$30: vue.DefineComponent<MeterRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterRootProps> & Readonly<{}>, {
|
|
2124
|
+
as: string | vue.Component;
|
|
2125
|
+
min: number;
|
|
2126
|
+
max: number;
|
|
2127
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2128
|
+
declare const __VLS_export$33: __VLS_WithSlots$30<typeof __VLS_base$30, __VLS_Slots$30>;
|
|
2129
|
+
declare const _default$30: typeof __VLS_export$33;
|
|
2130
|
+
type __VLS_WithSlots$30<T, S> = T & {
|
|
2131
|
+
new (): {
|
|
2132
|
+
$slots: S;
|
|
2133
|
+
};
|
|
2134
|
+
}; //# sourceMappingURL=MeterRoot.vue.d.ts.map
|
|
2135
|
+
//#endregion
|
|
2136
|
+
//#region src/meter/indicator/MeterIndicator.vue.d.ts
|
|
2137
|
+
interface MeterIndicatorState extends MeterRootState {}
|
|
2138
|
+
interface MeterIndicatorProps extends BaseUIComponentProps<MeterIndicatorState> {}
|
|
2139
|
+
declare var __VLS_1$22: {
|
|
2140
|
+
props: Record<string, any>;
|
|
2141
|
+
state: MeterIndicatorState;
|
|
2142
|
+
}, __VLS_10$20: {
|
|
2143
|
+
state: MeterIndicatorState;
|
|
2144
|
+
};
|
|
2145
|
+
type __VLS_Slots$29 = {} & {
|
|
2146
|
+
default?: (props: typeof __VLS_1$22) => any;
|
|
2147
|
+
} & {
|
|
2148
|
+
default?: (props: typeof __VLS_10$20) => any;
|
|
2149
|
+
};
|
|
2150
|
+
declare const __VLS_base$29: vue.DefineComponent<MeterIndicatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterIndicatorProps> & Readonly<{}>, {
|
|
2151
|
+
as: string | vue.Component;
|
|
2152
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2153
|
+
declare const __VLS_export$32: __VLS_WithSlots$29<typeof __VLS_base$29, __VLS_Slots$29>;
|
|
2154
|
+
declare const _default$28: typeof __VLS_export$32;
|
|
2155
|
+
type __VLS_WithSlots$29<T, S> = T & {
|
|
2156
|
+
new (): {
|
|
2157
|
+
$slots: S;
|
|
2158
|
+
};
|
|
2159
|
+
}; //# sourceMappingURL=MeterIndicator.vue.d.ts.map
|
|
2160
|
+
//#endregion
|
|
2161
|
+
//#region src/meter/label/MeterLabel.vue.d.ts
|
|
2162
|
+
interface MeterLabelState extends MeterRootState {}
|
|
2163
|
+
interface MeterLabelProps extends BaseUIComponentProps<MeterLabelState> {
|
|
2164
|
+
/**
|
|
2165
|
+
* The id of the label element. When provided, it overrides the automatically
|
|
2166
|
+
* generated one.
|
|
2167
|
+
*/
|
|
2168
|
+
id?: string;
|
|
2169
|
+
}
|
|
2170
|
+
declare var __VLS_1$21: {
|
|
2171
|
+
props: Record<string, any>;
|
|
2172
|
+
state: MeterLabelState;
|
|
2173
|
+
}, __VLS_10$19: {
|
|
2174
|
+
state: MeterLabelState;
|
|
2175
|
+
};
|
|
2176
|
+
type __VLS_Slots$28 = {} & {
|
|
2177
|
+
default?: (props: typeof __VLS_1$21) => any;
|
|
2178
|
+
} & {
|
|
2179
|
+
default?: (props: typeof __VLS_10$19) => any;
|
|
2180
|
+
};
|
|
2181
|
+
declare const __VLS_base$28: vue.DefineComponent<MeterLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterLabelProps> & Readonly<{}>, {
|
|
2182
|
+
as: string | vue.Component;
|
|
2183
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2184
|
+
declare const __VLS_export$31: __VLS_WithSlots$28<typeof __VLS_base$28, __VLS_Slots$28>;
|
|
2185
|
+
declare const _default$29: typeof __VLS_export$31;
|
|
2186
|
+
type __VLS_WithSlots$28<T, S> = T & {
|
|
2187
|
+
new (): {
|
|
2188
|
+
$slots: S;
|
|
2189
|
+
};
|
|
2190
|
+
}; //# sourceMappingURL=MeterLabel.vue.d.ts.map
|
|
2191
|
+
//#endregion
|
|
2192
|
+
//#region src/meter/root/MeterRootContext.d.ts
|
|
2193
|
+
interface MeterRootContext {
|
|
2194
|
+
/**
|
|
2195
|
+
* The formatted current value of the meter.
|
|
2196
|
+
*/
|
|
2197
|
+
formattedValue: Ref<string>;
|
|
2198
|
+
/**
|
|
2199
|
+
* The maximum allowed value of the meter.
|
|
2200
|
+
*/
|
|
2201
|
+
max: Ref<number>;
|
|
2202
|
+
/**
|
|
2203
|
+
* The minimum allowed value of the meter.
|
|
2204
|
+
*/
|
|
2205
|
+
min: Ref<number>;
|
|
2206
|
+
/**
|
|
2207
|
+
* The raw current value of the meter.
|
|
2208
|
+
*/
|
|
2209
|
+
value: Ref<number>;
|
|
2210
|
+
/**
|
|
2211
|
+
* Registers the DOM id of the `<MeterLabel>` for `aria-labelledby`.
|
|
2212
|
+
*/
|
|
2213
|
+
setLabelId: (id: string | undefined) => void;
|
|
2214
|
+
}
|
|
2215
|
+
declare const meterRootContextKey: InjectionKey<MeterRootContext>;
|
|
2216
|
+
declare function useMeterRootContext(optional: true): MeterRootContext | undefined;
|
|
2217
|
+
declare function useMeterRootContext(optional?: false): MeterRootContext;
|
|
2218
|
+
//#endregion
|
|
2219
|
+
//#region src/meter/track/MeterTrack.vue.d.ts
|
|
2220
|
+
interface MeterTrackState extends MeterRootState {}
|
|
2221
|
+
interface MeterTrackProps extends BaseUIComponentProps<MeterTrackState> {}
|
|
2222
|
+
declare var __VLS_1$20: {
|
|
2223
|
+
props: Record<string, any>;
|
|
2224
|
+
state: MeterTrackState;
|
|
2225
|
+
}, __VLS_10$18: {
|
|
2226
|
+
state: MeterTrackState;
|
|
2227
|
+
};
|
|
2228
|
+
type __VLS_Slots$27 = {} & {
|
|
2229
|
+
default?: (props: typeof __VLS_1$20) => any;
|
|
2230
|
+
} & {
|
|
2231
|
+
default?: (props: typeof __VLS_10$18) => any;
|
|
2232
|
+
};
|
|
2233
|
+
declare const __VLS_base$27: vue.DefineComponent<MeterTrackProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterTrackProps> & Readonly<{}>, {
|
|
2234
|
+
as: string | vue.Component;
|
|
2235
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2236
|
+
declare const __VLS_export$30: __VLS_WithSlots$27<typeof __VLS_base$27, __VLS_Slots$27>;
|
|
2237
|
+
declare const _default$31: typeof __VLS_export$30;
|
|
2238
|
+
type __VLS_WithSlots$27<T, S> = T & {
|
|
2239
|
+
new (): {
|
|
2240
|
+
$slots: S;
|
|
2241
|
+
};
|
|
2242
|
+
}; //# sourceMappingURL=MeterTrack.vue.d.ts.map
|
|
2243
|
+
//#endregion
|
|
2244
|
+
//#region src/meter/value/MeterValue.vue.d.ts
|
|
2245
|
+
interface MeterValueState extends MeterRootState {}
|
|
2246
|
+
interface MeterValueProps extends BaseUIComponentProps<MeterValueState> {}
|
|
2247
|
+
interface MeterValueSlotProps {
|
|
2248
|
+
formattedValue: string;
|
|
2249
|
+
value: number;
|
|
2250
|
+
}
|
|
2251
|
+
interface MeterValueRenderlessSlotProps extends MeterValueSlotProps {
|
|
2252
|
+
props: Record<string, unknown>;
|
|
2253
|
+
state: MeterValueState;
|
|
2254
|
+
}
|
|
2255
|
+
type __VLS_Slots$26 = {
|
|
2256
|
+
default?: (props: MeterValueSlotProps | MeterValueRenderlessSlotProps) => unknown;
|
|
2257
|
+
};
|
|
2258
|
+
declare const __VLS_base$26: vue.DefineComponent<MeterValueProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterValueProps> & Readonly<{}>, {
|
|
2259
|
+
as: string | vue.Component;
|
|
2260
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2261
|
+
declare const __VLS_export$29: __VLS_WithSlots$26<typeof __VLS_base$26, __VLS_Slots$26>;
|
|
2262
|
+
declare const _default$32: typeof __VLS_export$29;
|
|
2263
|
+
type __VLS_WithSlots$26<T, S> = T & {
|
|
2264
|
+
new (): {
|
|
2265
|
+
$slots: S;
|
|
2266
|
+
};
|
|
2267
|
+
}; //# sourceMappingURL=MeterValue.vue.d.ts.map
|
|
2268
|
+
//#endregion
|
|
2269
|
+
//#region src/progress/root/ProgressRoot.vue.d.ts
|
|
2270
|
+
type ProgressStatus = 'indeterminate' | 'progressing' | 'complete';
|
|
2271
|
+
interface ProgressRootState {
|
|
2272
|
+
/**
|
|
2273
|
+
* The current status.
|
|
2274
|
+
*/
|
|
2275
|
+
status: ProgressStatus;
|
|
2276
|
+
}
|
|
2277
|
+
interface ProgressRootProps extends BaseUIComponentProps<ProgressRootState> {
|
|
2278
|
+
/**
|
|
2279
|
+
* A string value that provides a user-friendly name for `aria-valuenow`.
|
|
2280
|
+
* Takes precedence over `getAriaValueText`.
|
|
2281
|
+
*/
|
|
2282
|
+
ariaValuetext?: string;
|
|
2283
|
+
/**
|
|
2284
|
+
* Options to format the value.
|
|
2285
|
+
*/
|
|
2286
|
+
format?: Intl.NumberFormatOptions;
|
|
2287
|
+
/**
|
|
2288
|
+
* A function that returns a string value for `aria-valuetext`.
|
|
2289
|
+
* Receives the formatted value (or `null` when indeterminate) and the raw
|
|
2290
|
+
* value.
|
|
2291
|
+
*/
|
|
2292
|
+
getAriaValueText?: (formattedValue: string | null, value: number | null) => string;
|
|
2293
|
+
/**
|
|
2294
|
+
* The locale used by `Intl.NumberFormat` when formatting the value.
|
|
2295
|
+
* Defaults to the user's runtime locale.
|
|
2296
|
+
*/
|
|
2297
|
+
locale?: Intl.LocalesArgument;
|
|
2298
|
+
/**
|
|
2299
|
+
* The maximum value.
|
|
2300
|
+
* @default 100
|
|
2301
|
+
*/
|
|
2302
|
+
max?: number;
|
|
2303
|
+
/**
|
|
2304
|
+
* The minimum value.
|
|
2305
|
+
* @default 0
|
|
2306
|
+
*/
|
|
2307
|
+
min?: number;
|
|
2308
|
+
/**
|
|
2309
|
+
* The current value. The component is indeterminate when value is `null`.
|
|
2310
|
+
* @default null
|
|
2311
|
+
*/
|
|
2312
|
+
value: number | null;
|
|
2313
|
+
}
|
|
2314
|
+
declare var __VLS_1$19: {
|
|
2315
|
+
props: Record<string, any>;
|
|
2316
|
+
state: ProgressRootState;
|
|
2317
|
+
}, __VLS_10$17: {
|
|
2318
|
+
state: ProgressRootState;
|
|
2319
|
+
};
|
|
2320
|
+
type __VLS_Slots$25 = {} & {
|
|
2321
|
+
default?: (props: typeof __VLS_1$19) => any;
|
|
2322
|
+
} & {
|
|
2323
|
+
default?: (props: typeof __VLS_10$17) => any;
|
|
2324
|
+
};
|
|
2325
|
+
declare const __VLS_base$25: vue.DefineComponent<ProgressRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressRootProps> & Readonly<{}>, {
|
|
2326
|
+
as: string | vue.Component;
|
|
2327
|
+
min: number;
|
|
2328
|
+
max: number;
|
|
2329
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2330
|
+
declare const __VLS_export$28: __VLS_WithSlots$25<typeof __VLS_base$25, __VLS_Slots$25>;
|
|
2331
|
+
declare const _default$35: typeof __VLS_export$28;
|
|
2332
|
+
type __VLS_WithSlots$25<T, S> = T & {
|
|
2333
|
+
new (): {
|
|
2334
|
+
$slots: S;
|
|
2335
|
+
};
|
|
2336
|
+
}; //# sourceMappingURL=ProgressRoot.vue.d.ts.map
|
|
2337
|
+
//#endregion
|
|
2338
|
+
//#region src/progress/indicator/ProgressIndicator.vue.d.ts
|
|
2339
|
+
interface ProgressIndicatorState extends ProgressRootState {}
|
|
2340
|
+
interface ProgressIndicatorProps extends BaseUIComponentProps<ProgressIndicatorState> {}
|
|
2341
|
+
declare var __VLS_1$18: {
|
|
2342
|
+
props: Record<string, any>;
|
|
2343
|
+
state: ProgressRootState;
|
|
2344
|
+
}, __VLS_10$16: {
|
|
2345
|
+
state: ProgressRootState;
|
|
2346
|
+
};
|
|
2347
|
+
type __VLS_Slots$24 = {} & {
|
|
2348
|
+
default?: (props: typeof __VLS_1$18) => any;
|
|
2349
|
+
} & {
|
|
2350
|
+
default?: (props: typeof __VLS_10$16) => any;
|
|
2351
|
+
};
|
|
2352
|
+
declare const __VLS_base$24: vue.DefineComponent<ProgressIndicatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressIndicatorProps> & Readonly<{}>, {
|
|
2353
|
+
as: string | vue.Component;
|
|
2354
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2355
|
+
declare const __VLS_export$27: __VLS_WithSlots$24<typeof __VLS_base$24, __VLS_Slots$24>;
|
|
2356
|
+
declare const _default$33: typeof __VLS_export$27;
|
|
2357
|
+
type __VLS_WithSlots$24<T, S> = T & {
|
|
2358
|
+
new (): {
|
|
2359
|
+
$slots: S;
|
|
2360
|
+
};
|
|
2361
|
+
}; //# sourceMappingURL=ProgressIndicator.vue.d.ts.map
|
|
2362
|
+
//#endregion
|
|
2363
|
+
//#region src/progress/label/ProgressLabel.vue.d.ts
|
|
2364
|
+
interface ProgressLabelState extends ProgressRootState {}
|
|
2365
|
+
interface ProgressLabelProps extends BaseUIComponentProps<ProgressLabelState> {
|
|
2366
|
+
/**
|
|
2367
|
+
* The id of the label element. When provided, it overrides the
|
|
2368
|
+
* automatically generated one.
|
|
2369
|
+
*/
|
|
2370
|
+
id?: string;
|
|
2371
|
+
}
|
|
2372
|
+
declare var __VLS_1$17: {
|
|
2373
|
+
props: Record<string, any>;
|
|
2374
|
+
state: ProgressRootState;
|
|
2375
|
+
}, __VLS_10$15: {
|
|
2376
|
+
state: ProgressRootState;
|
|
2377
|
+
};
|
|
2378
|
+
type __VLS_Slots$23 = {} & {
|
|
2379
|
+
default?: (props: typeof __VLS_1$17) => any;
|
|
2380
|
+
} & {
|
|
2381
|
+
default?: (props: typeof __VLS_10$15) => any;
|
|
2382
|
+
};
|
|
2383
|
+
declare const __VLS_base$23: vue.DefineComponent<ProgressLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressLabelProps> & Readonly<{}>, {
|
|
2384
|
+
as: string | vue.Component;
|
|
2385
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2386
|
+
declare const __VLS_export$26: __VLS_WithSlots$23<typeof __VLS_base$23, __VLS_Slots$23>;
|
|
2387
|
+
declare const _default$34: typeof __VLS_export$26;
|
|
2388
|
+
type __VLS_WithSlots$23<T, S> = T & {
|
|
2389
|
+
new (): {
|
|
2390
|
+
$slots: S;
|
|
2391
|
+
};
|
|
2392
|
+
}; //# sourceMappingURL=ProgressLabel.vue.d.ts.map
|
|
2393
|
+
//#endregion
|
|
2394
|
+
//#region src/progress/root/ProgressRootContext.d.ts
|
|
2395
|
+
interface ProgressRootContext {
|
|
2396
|
+
/**
|
|
2397
|
+
* The formatted current value of the progress bar.
|
|
2398
|
+
* Empty string when the component is indeterminate.
|
|
2399
|
+
*/
|
|
2400
|
+
formattedValue: Ref<string>;
|
|
2401
|
+
/**
|
|
2402
|
+
* The maximum allowed value of the progress bar.
|
|
2403
|
+
*/
|
|
2404
|
+
max: Ref<number>;
|
|
2405
|
+
/**
|
|
2406
|
+
* The minimum allowed value of the progress bar.
|
|
2407
|
+
*/
|
|
2408
|
+
min: Ref<number>;
|
|
2409
|
+
/**
|
|
2410
|
+
* The raw current value, or `null` when indeterminate.
|
|
2411
|
+
*/
|
|
2412
|
+
value: Ref<number | null>;
|
|
2413
|
+
/**
|
|
2414
|
+
* Derived completion status. Used to produce `data-*` state attributes.
|
|
2415
|
+
*/
|
|
2416
|
+
status: ComputedRef<ProgressStatus>;
|
|
2417
|
+
/**
|
|
2418
|
+
* The state of the root component.
|
|
2419
|
+
*/
|
|
2420
|
+
state: ComputedRef<ProgressRootState>;
|
|
2421
|
+
/**
|
|
2422
|
+
* Registers the DOM id of the `<ProgressLabel>` for `aria-labelledby`.
|
|
2423
|
+
*/
|
|
2424
|
+
setLabelId: (id: string | undefined) => void;
|
|
2425
|
+
}
|
|
2426
|
+
declare const progressRootContextKey: InjectionKey<ProgressRootContext>;
|
|
2427
|
+
declare function useProgressRootContext(optional: true): ProgressRootContext | undefined;
|
|
2428
|
+
declare function useProgressRootContext(optional?: false): ProgressRootContext;
|
|
2429
|
+
//#endregion
|
|
2430
|
+
//#region src/progress/root/ProgressRootDataAttributes.d.ts
|
|
2431
|
+
declare enum ProgressRootDataAttributes {
|
|
2432
|
+
/**
|
|
2433
|
+
* Present when the progress has completed.
|
|
2434
|
+
*/
|
|
2435
|
+
complete = "data-complete",
|
|
2436
|
+
/**
|
|
2437
|
+
* Present when the progress is in indeterminate state.
|
|
2438
|
+
*/
|
|
2439
|
+
indeterminate = "data-indeterminate",
|
|
2440
|
+
/**
|
|
2441
|
+
* Present while the progress is progressing.
|
|
2442
|
+
*/
|
|
2443
|
+
progressing = "data-progressing"
|
|
2444
|
+
}
|
|
2445
|
+
//#endregion
|
|
2446
|
+
//#region src/utils/getStateAttributesProps.d.ts
|
|
2447
|
+
type StateAttributesMapping<State> = { [Property in keyof State]?: (state: State[Property]) => Record<string, string> | null };
|
|
2448
|
+
//#endregion
|
|
2449
|
+
//#region src/progress/root/stateAttributesMapping.d.ts
|
|
2450
|
+
declare const progressStateAttributesMapping: StateAttributesMapping<ProgressRootState>;
|
|
2451
|
+
//#endregion
|
|
2452
|
+
//#region src/progress/track/ProgressTrack.vue.d.ts
|
|
2453
|
+
interface ProgressTrackState extends ProgressRootState {}
|
|
2454
|
+
interface ProgressTrackProps extends BaseUIComponentProps<ProgressTrackState> {}
|
|
2455
|
+
declare var __VLS_1$16: {
|
|
2456
|
+
props: Record<string, any>;
|
|
2457
|
+
state: ProgressRootState;
|
|
2458
|
+
}, __VLS_10$14: {
|
|
2459
|
+
state: ProgressRootState;
|
|
2460
|
+
};
|
|
2461
|
+
type __VLS_Slots$22 = {} & {
|
|
2462
|
+
default?: (props: typeof __VLS_1$16) => any;
|
|
2463
|
+
} & {
|
|
2464
|
+
default?: (props: typeof __VLS_10$14) => any;
|
|
2465
|
+
};
|
|
2466
|
+
declare const __VLS_base$22: vue.DefineComponent<ProgressTrackProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressTrackProps> & Readonly<{}>, {
|
|
2467
|
+
as: string | vue.Component;
|
|
2468
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2469
|
+
declare const __VLS_export$25: __VLS_WithSlots$22<typeof __VLS_base$22, __VLS_Slots$22>;
|
|
2470
|
+
declare const _default$36: typeof __VLS_export$25;
|
|
2471
|
+
type __VLS_WithSlots$22<T, S> = T & {
|
|
2472
|
+
new (): {
|
|
2473
|
+
$slots: S;
|
|
2474
|
+
};
|
|
2475
|
+
}; //# sourceMappingURL=ProgressTrack.vue.d.ts.map
|
|
2476
|
+
//#endregion
|
|
2477
|
+
//#region src/progress/value/ProgressValue.vue.d.ts
|
|
2478
|
+
interface ProgressValueState extends ProgressRootState {}
|
|
2479
|
+
interface ProgressValueProps extends BaseUIComponentProps<ProgressValueState> {}
|
|
2480
|
+
interface ProgressValueSlotProps {
|
|
2481
|
+
/**
|
|
2482
|
+
* Formatted value. `"indeterminate"` when the root value is `null`.
|
|
2483
|
+
*/
|
|
2484
|
+
formattedValue: string | 'indeterminate';
|
|
2485
|
+
/**
|
|
2486
|
+
* Raw numeric value, or `null` when indeterminate.
|
|
2487
|
+
*/
|
|
2488
|
+
value: number | null;
|
|
2489
|
+
}
|
|
2490
|
+
interface ProgressValueRenderlessSlotProps extends ProgressValueSlotProps {
|
|
2491
|
+
props: Record<string, unknown>;
|
|
2492
|
+
state: ProgressValueState;
|
|
2493
|
+
}
|
|
2494
|
+
type __VLS_Slots$21 = {
|
|
2495
|
+
default?: (props: ProgressValueSlotProps | ProgressValueRenderlessSlotProps) => unknown;
|
|
2496
|
+
};
|
|
2497
|
+
declare const __VLS_base$21: vue.DefineComponent<ProgressValueProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressValueProps> & Readonly<{}>, {
|
|
2498
|
+
as: string | vue.Component;
|
|
2499
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2500
|
+
declare const __VLS_export$24: __VLS_WithSlots$21<typeof __VLS_base$21, __VLS_Slots$21>;
|
|
2501
|
+
declare const _default$37: typeof __VLS_export$24;
|
|
2502
|
+
type __VLS_WithSlots$21<T, S> = T & {
|
|
2503
|
+
new (): {
|
|
2504
|
+
$slots: S;
|
|
2505
|
+
};
|
|
2506
|
+
}; //# sourceMappingURL=ProgressValue.vue.d.ts.map
|
|
2507
|
+
//#endregion
|
|
2508
|
+
//#region src/separator/Separator.vue.d.ts
|
|
2509
|
+
interface SeparatorState {
|
|
2510
|
+
/**
|
|
2511
|
+
* The orientation of the separator.
|
|
2512
|
+
*/
|
|
2513
|
+
orientation: Orientation;
|
|
2514
|
+
}
|
|
2515
|
+
interface SeparatorProps extends BaseUIComponentProps<SeparatorState> {
|
|
2516
|
+
/**
|
|
2517
|
+
* The orientation of the separator.
|
|
2518
|
+
* @default 'horizontal'
|
|
2030
2519
|
*/
|
|
2031
2520
|
orientation?: Orientation;
|
|
2032
2521
|
}
|
|
2033
|
-
declare var __VLS_1$
|
|
2522
|
+
declare var __VLS_1$15: {
|
|
2034
2523
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2035
2524
|
props: Record<string, any>;
|
|
2036
2525
|
state: SeparatorState;
|
|
2037
|
-
}, __VLS_10$
|
|
2526
|
+
}, __VLS_10$13: {
|
|
2038
2527
|
state: SeparatorState;
|
|
2039
2528
|
};
|
|
2040
|
-
type __VLS_Slots$
|
|
2041
|
-
default?: (props: typeof __VLS_1$
|
|
2529
|
+
type __VLS_Slots$20 = {} & {
|
|
2530
|
+
default?: (props: typeof __VLS_1$15) => any;
|
|
2042
2531
|
} & {
|
|
2043
|
-
default?: (props: typeof __VLS_10$
|
|
2532
|
+
default?: (props: typeof __VLS_10$13) => any;
|
|
2044
2533
|
};
|
|
2045
|
-
declare const __VLS_base$
|
|
2534
|
+
declare const __VLS_base$20: vue.DefineComponent<SeparatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SeparatorProps> & Readonly<{}>, {
|
|
2046
2535
|
as: string | vue.Component;
|
|
2047
2536
|
orientation: Orientation;
|
|
2048
2537
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2049
|
-
declare const __VLS_export$
|
|
2050
|
-
declare const _default$
|
|
2051
|
-
type __VLS_WithSlots$
|
|
2538
|
+
declare const __VLS_export$23: __VLS_WithSlots$20<typeof __VLS_base$20, __VLS_Slots$20>;
|
|
2539
|
+
declare const _default$44: typeof __VLS_export$23;
|
|
2540
|
+
type __VLS_WithSlots$20<T, S> = T & {
|
|
2052
2541
|
new (): {
|
|
2053
2542
|
$slots: S;
|
|
2054
2543
|
};
|
|
@@ -2213,12 +2702,12 @@ declare var __VLS_8$3: {
|
|
|
2213
2702
|
props: Record<string, any>;
|
|
2214
2703
|
state: SliderRootState;
|
|
2215
2704
|
}, __VLS_16: {};
|
|
2216
|
-
type __VLS_Slots$
|
|
2705
|
+
type __VLS_Slots$19 = {} & {
|
|
2217
2706
|
default?: (props: typeof __VLS_8$3) => any;
|
|
2218
2707
|
} & {
|
|
2219
2708
|
default?: (props: typeof __VLS_16) => any;
|
|
2220
2709
|
};
|
|
2221
|
-
declare const __VLS_base$
|
|
2710
|
+
declare const __VLS_base$19: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2222
2711
|
valueChange: (value: number | readonly number[], details: SliderRootChangeEventDetails) => any;
|
|
2223
2712
|
valueCommitted: (value: number | readonly number[], details: SliderRootCommitEventDetails) => any;
|
|
2224
2713
|
}, string, vue.PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
@@ -2236,9 +2725,9 @@ declare const __VLS_base$13: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vu
|
|
|
2236
2725
|
thumbAlignment: "center" | "edge" | "edge-client-only";
|
|
2237
2726
|
thumbCollisionBehavior: "push" | "swap" | "none";
|
|
2238
2727
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2239
|
-
declare const __VLS_export$
|
|
2240
|
-
declare const _default$
|
|
2241
|
-
type __VLS_WithSlots$
|
|
2728
|
+
declare const __VLS_export$22: __VLS_WithSlots$19<typeof __VLS_base$19, __VLS_Slots$19>;
|
|
2729
|
+
declare const _default$48: typeof __VLS_export$22;
|
|
2730
|
+
type __VLS_WithSlots$19<T, S> = T & {
|
|
2242
2731
|
new (): {
|
|
2243
2732
|
$slots: S;
|
|
2244
2733
|
};
|
|
@@ -2247,22 +2736,22 @@ type __VLS_WithSlots$13<T, S> = T & {
|
|
|
2247
2736
|
//#region src/slider/control/SliderControl.vue.d.ts
|
|
2248
2737
|
interface SliderControlState extends SliderRootState {}
|
|
2249
2738
|
interface SliderControlProps extends BaseUIComponentProps<SliderControlState> {}
|
|
2250
|
-
declare var __VLS_1$
|
|
2739
|
+
declare var __VLS_1$14: {
|
|
2251
2740
|
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
2252
2741
|
props: Record<string, any>;
|
|
2253
2742
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
2254
|
-
}, __VLS_10$
|
|
2255
|
-
type __VLS_Slots$
|
|
2256
|
-
default?: (props: typeof __VLS_1$
|
|
2743
|
+
}, __VLS_10$12: {};
|
|
2744
|
+
type __VLS_Slots$18 = {} & {
|
|
2745
|
+
default?: (props: typeof __VLS_1$14) => any;
|
|
2257
2746
|
} & {
|
|
2258
|
-
default?: (props: typeof __VLS_10$
|
|
2747
|
+
default?: (props: typeof __VLS_10$12) => any;
|
|
2259
2748
|
};
|
|
2260
|
-
declare const __VLS_base$
|
|
2749
|
+
declare const __VLS_base$18: vue.DefineComponent<SliderControlProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderControlProps> & Readonly<{}>, {
|
|
2261
2750
|
as: string | vue.Component;
|
|
2262
2751
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2263
|
-
declare const __VLS_export$
|
|
2264
|
-
declare const _default$
|
|
2265
|
-
type __VLS_WithSlots$
|
|
2752
|
+
declare const __VLS_export$21: __VLS_WithSlots$18<typeof __VLS_base$18, __VLS_Slots$18>;
|
|
2753
|
+
declare const _default$45: typeof __VLS_export$21;
|
|
2754
|
+
type __VLS_WithSlots$18<T, S> = T & {
|
|
2266
2755
|
new (): {
|
|
2267
2756
|
$slots: S;
|
|
2268
2757
|
};
|
|
@@ -2308,22 +2797,22 @@ declare enum SliderControlDataAttributes {
|
|
|
2308
2797
|
//#region src/slider/indicator/SliderIndicator.vue.d.ts
|
|
2309
2798
|
interface SliderIndicatorState extends SliderRootState {}
|
|
2310
2799
|
interface SliderIndicatorProps extends BaseUIComponentProps<SliderIndicatorState> {}
|
|
2311
|
-
declare var __VLS_1$
|
|
2800
|
+
declare var __VLS_1$13: {
|
|
2312
2801
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2313
2802
|
props: Record<string, any>;
|
|
2314
2803
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
2315
|
-
}, __VLS_10$
|
|
2316
|
-
type __VLS_Slots$
|
|
2317
|
-
default?: (props: typeof __VLS_1$
|
|
2804
|
+
}, __VLS_10$11: {};
|
|
2805
|
+
type __VLS_Slots$17 = {} & {
|
|
2806
|
+
default?: (props: typeof __VLS_1$13) => any;
|
|
2318
2807
|
} & {
|
|
2319
|
-
default?: (props: typeof __VLS_10$
|
|
2808
|
+
default?: (props: typeof __VLS_10$11) => any;
|
|
2320
2809
|
};
|
|
2321
|
-
declare const __VLS_base$
|
|
2810
|
+
declare const __VLS_base$17: vue.DefineComponent<SliderIndicatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderIndicatorProps> & Readonly<{}>, {
|
|
2322
2811
|
as: string | vue.Component;
|
|
2323
2812
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2324
|
-
declare const __VLS_export$
|
|
2325
|
-
declare const _default$
|
|
2326
|
-
type __VLS_WithSlots$
|
|
2813
|
+
declare const __VLS_export$20: __VLS_WithSlots$17<typeof __VLS_base$17, __VLS_Slots$17>;
|
|
2814
|
+
declare const _default$46: typeof __VLS_export$20;
|
|
2815
|
+
type __VLS_WithSlots$17<T, S> = T & {
|
|
2327
2816
|
new (): {
|
|
2328
2817
|
$slots: S;
|
|
2329
2818
|
};
|
|
@@ -2369,22 +2858,22 @@ declare enum SliderIndicatorDataAttributes {
|
|
|
2369
2858
|
//#region src/slider/label/SliderLabel.vue.d.ts
|
|
2370
2859
|
type SliderLabelState = SliderRootState;
|
|
2371
2860
|
interface SliderLabelProps extends BaseUIComponentProps<SliderLabelState> {}
|
|
2372
|
-
declare var __VLS_1$
|
|
2861
|
+
declare var __VLS_1$12: {
|
|
2373
2862
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2374
2863
|
props: Record<string, any>;
|
|
2375
2864
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
2376
|
-
}, __VLS_10$
|
|
2377
|
-
type __VLS_Slots$
|
|
2378
|
-
default?: (props: typeof __VLS_1$
|
|
2865
|
+
}, __VLS_10$10: {};
|
|
2866
|
+
type __VLS_Slots$16 = {} & {
|
|
2867
|
+
default?: (props: typeof __VLS_1$12) => any;
|
|
2379
2868
|
} & {
|
|
2380
|
-
default?: (props: typeof __VLS_10$
|
|
2869
|
+
default?: (props: typeof __VLS_10$10) => any;
|
|
2381
2870
|
};
|
|
2382
|
-
declare const __VLS_base$
|
|
2871
|
+
declare const __VLS_base$16: vue.DefineComponent<SliderLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderLabelProps> & Readonly<{}>, {
|
|
2383
2872
|
as: string | vue.Component;
|
|
2384
2873
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2385
|
-
declare const __VLS_export$
|
|
2386
|
-
declare const _default$
|
|
2387
|
-
type __VLS_WithSlots$
|
|
2874
|
+
declare const __VLS_export$19: __VLS_WithSlots$16<typeof __VLS_base$16, __VLS_Slots$16>;
|
|
2875
|
+
declare const _default$47: typeof __VLS_export$19;
|
|
2876
|
+
type __VLS_WithSlots$16<T, S> = T & {
|
|
2388
2877
|
new (): {
|
|
2389
2878
|
$slots: S;
|
|
2390
2879
|
};
|
|
@@ -2458,23 +2947,23 @@ interface SliderThumbProps extends Omit<BaseUIComponentProps<SliderThumbState>,
|
|
|
2458
2947
|
ariaDescribedby?: string;
|
|
2459
2948
|
style?: CSSProperties | ((state: SliderThumbState) => CSSProperties);
|
|
2460
2949
|
}
|
|
2461
|
-
declare var __VLS_1$
|
|
2950
|
+
declare var __VLS_1$11: {
|
|
2462
2951
|
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
2463
2952
|
props: Record<string, any>;
|
|
2464
2953
|
state: Ref<SliderRootState, SliderRootState>;
|
|
2465
|
-
}, __VLS_10$
|
|
2466
|
-
type __VLS_Slots$
|
|
2467
|
-
default?: (props: typeof __VLS_1$
|
|
2954
|
+
}, __VLS_10$9: {};
|
|
2955
|
+
type __VLS_Slots$15 = {} & {
|
|
2956
|
+
default?: (props: typeof __VLS_1$11) => any;
|
|
2468
2957
|
} & {
|
|
2469
|
-
default?: (props: typeof __VLS_10$
|
|
2958
|
+
default?: (props: typeof __VLS_10$9) => any;
|
|
2470
2959
|
};
|
|
2471
|
-
declare const __VLS_base$
|
|
2960
|
+
declare const __VLS_base$15: vue.DefineComponent<SliderThumbProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderThumbProps> & Readonly<{}>, {
|
|
2472
2961
|
disabled: boolean;
|
|
2473
2962
|
as: string | vue.Component;
|
|
2474
2963
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2475
|
-
declare const __VLS_export$
|
|
2476
|
-
declare const _default$
|
|
2477
|
-
type __VLS_WithSlots$
|
|
2964
|
+
declare const __VLS_export$18: __VLS_WithSlots$15<typeof __VLS_base$15, __VLS_Slots$15>;
|
|
2965
|
+
declare const _default$49: typeof __VLS_export$18;
|
|
2966
|
+
type __VLS_WithSlots$15<T, S> = T & {
|
|
2478
2967
|
new (): {
|
|
2479
2968
|
$slots: S;
|
|
2480
2969
|
};
|
|
@@ -2653,22 +3142,22 @@ declare enum SliderThumbDataAttributes {
|
|
|
2653
3142
|
//#region src/slider/track/SliderTrack.vue.d.ts
|
|
2654
3143
|
interface SliderTrackState extends SliderRootState {}
|
|
2655
3144
|
interface SliderTrackProps extends BaseUIComponentProps<SliderTrackState> {}
|
|
2656
|
-
declare var __VLS_1$
|
|
3145
|
+
declare var __VLS_1$10: {
|
|
2657
3146
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2658
3147
|
props: Record<string, any>;
|
|
2659
3148
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
2660
|
-
}, __VLS_10$
|
|
2661
|
-
type __VLS_Slots$
|
|
2662
|
-
default?: (props: typeof __VLS_1$
|
|
3149
|
+
}, __VLS_10$8: {};
|
|
3150
|
+
type __VLS_Slots$14 = {} & {
|
|
3151
|
+
default?: (props: typeof __VLS_1$10) => any;
|
|
2663
3152
|
} & {
|
|
2664
|
-
default?: (props: typeof __VLS_10$
|
|
3153
|
+
default?: (props: typeof __VLS_10$8) => any;
|
|
2665
3154
|
};
|
|
2666
|
-
declare const __VLS_base$
|
|
3155
|
+
declare const __VLS_base$14: vue.DefineComponent<SliderTrackProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderTrackProps> & Readonly<{}>, {
|
|
2667
3156
|
as: string | vue.Component;
|
|
2668
3157
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2669
|
-
declare const __VLS_export$
|
|
2670
|
-
declare const _default$
|
|
2671
|
-
type __VLS_WithSlots$
|
|
3158
|
+
declare const __VLS_export$17: __VLS_WithSlots$14<typeof __VLS_base$14, __VLS_Slots$14>;
|
|
3159
|
+
declare const _default$50: typeof __VLS_export$17;
|
|
3160
|
+
type __VLS_WithSlots$14<T, S> = T & {
|
|
2672
3161
|
new (): {
|
|
2673
3162
|
$slots: S;
|
|
2674
3163
|
};
|
|
@@ -2691,28 +3180,28 @@ interface SliderValueState extends SliderRootState {}
|
|
|
2691
3180
|
interface SliderValueProps extends BaseUIComponentProps<SliderValueState> {
|
|
2692
3181
|
ariaLive?: 'off' | 'polite' | 'assertive';
|
|
2693
3182
|
}
|
|
2694
|
-
declare var __VLS_1$
|
|
3183
|
+
declare var __VLS_1$9: {
|
|
2695
3184
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2696
3185
|
props: Record<string, any>;
|
|
2697
3186
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
2698
3187
|
formattedValues: string[];
|
|
2699
3188
|
values: readonly number[];
|
|
2700
|
-
}, __VLS_10$
|
|
3189
|
+
}, __VLS_10$7: {
|
|
2701
3190
|
formattedValues: string[];
|
|
2702
3191
|
values: readonly number[];
|
|
2703
3192
|
};
|
|
2704
|
-
type __VLS_Slots$
|
|
2705
|
-
default?: (props: typeof __VLS_1$
|
|
3193
|
+
type __VLS_Slots$13 = {} & {
|
|
3194
|
+
default?: (props: typeof __VLS_1$9) => any;
|
|
2706
3195
|
} & {
|
|
2707
|
-
default?: (props: typeof __VLS_10$
|
|
3196
|
+
default?: (props: typeof __VLS_10$7) => any;
|
|
2708
3197
|
};
|
|
2709
|
-
declare const __VLS_base$
|
|
3198
|
+
declare const __VLS_base$13: vue.DefineComponent<SliderValueProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderValueProps> & Readonly<{}>, {
|
|
2710
3199
|
as: string | vue.Component;
|
|
2711
3200
|
ariaLive: "off" | "polite" | "assertive";
|
|
2712
3201
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2713
|
-
declare const __VLS_export$
|
|
2714
|
-
declare const _default$
|
|
2715
|
-
type __VLS_WithSlots$
|
|
3202
|
+
declare const __VLS_export$16: __VLS_WithSlots$13<typeof __VLS_base$13, __VLS_Slots$13>;
|
|
3203
|
+
declare const _default$51: typeof __VLS_export$16;
|
|
3204
|
+
type __VLS_WithSlots$13<T, S> = T & {
|
|
2716
3205
|
new (): {
|
|
2717
3206
|
$slots: S;
|
|
2718
3207
|
};
|
|
@@ -2838,19 +3327,19 @@ interface SwitchRootProps extends NonNativeButtonProps, BaseUIComponentProps<Swi
|
|
|
2838
3327
|
}
|
|
2839
3328
|
type SwitchRootChangeEventReason = typeof REASONS.none;
|
|
2840
3329
|
type SwitchRootChangeEventDetails = BaseUIChangeEventDetails<SwitchRootChangeEventReason>;
|
|
2841
|
-
declare var __VLS_1$
|
|
3330
|
+
declare var __VLS_1$8: {
|
|
2842
3331
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2843
3332
|
props: Record<string, any>;
|
|
2844
3333
|
state: SwitchRootState;
|
|
2845
3334
|
}, __VLS_9: {
|
|
2846
3335
|
state: SwitchRootState;
|
|
2847
3336
|
};
|
|
2848
|
-
type __VLS_Slots$
|
|
2849
|
-
default?: (props: typeof __VLS_1$
|
|
3337
|
+
type __VLS_Slots$12 = {} & {
|
|
3338
|
+
default?: (props: typeof __VLS_1$8) => any;
|
|
2850
3339
|
} & {
|
|
2851
3340
|
default?: (props: typeof __VLS_9) => any;
|
|
2852
3341
|
};
|
|
2853
|
-
declare const __VLS_base$
|
|
3342
|
+
declare const __VLS_base$12: vue.DefineComponent<SwitchRootProps, {
|
|
2854
3343
|
element: Ref<HTMLElement | null, HTMLElement | null>;
|
|
2855
3344
|
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2856
3345
|
checkedChange: (checked: boolean, eventDetails: {
|
|
@@ -2880,9 +3369,9 @@ declare const __VLS_base$6: vue.DefineComponent<SwitchRootProps, {
|
|
|
2880
3369
|
nativeButton: boolean;
|
|
2881
3370
|
as: string | vue.Component;
|
|
2882
3371
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2883
|
-
declare const __VLS_export$
|
|
2884
|
-
declare const _default$
|
|
2885
|
-
type __VLS_WithSlots$
|
|
3372
|
+
declare const __VLS_export$15: __VLS_WithSlots$12<typeof __VLS_base$12, __VLS_Slots$12>;
|
|
3373
|
+
declare const _default$52: typeof __VLS_export$15;
|
|
3374
|
+
type __VLS_WithSlots$12<T, S> = T & {
|
|
2886
3375
|
new (): {
|
|
2887
3376
|
$slots: S;
|
|
2888
3377
|
};
|
|
@@ -2945,24 +3434,24 @@ declare enum SwitchRootDataAttributes {
|
|
|
2945
3434
|
//#region src/switch/thumb/SwitchThumb.vue.d.ts
|
|
2946
3435
|
interface SwitchThumbState extends SwitchRootState {}
|
|
2947
3436
|
interface SwitchThumbProps extends BaseUIComponentProps<SwitchThumbState> {}
|
|
2948
|
-
declare var __VLS_1$
|
|
3437
|
+
declare var __VLS_1$7: {
|
|
2949
3438
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2950
3439
|
props: Record<string, any>;
|
|
2951
3440
|
state: SwitchThumbState;
|
|
2952
|
-
}, __VLS_10$
|
|
3441
|
+
}, __VLS_10$6: {
|
|
2953
3442
|
state: SwitchThumbState;
|
|
2954
3443
|
};
|
|
2955
|
-
type __VLS_Slots$
|
|
2956
|
-
default?: (props: typeof __VLS_1$
|
|
3444
|
+
type __VLS_Slots$11 = {} & {
|
|
3445
|
+
default?: (props: typeof __VLS_1$7) => any;
|
|
2957
3446
|
} & {
|
|
2958
|
-
default?: (props: typeof __VLS_10$
|
|
3447
|
+
default?: (props: typeof __VLS_10$6) => any;
|
|
2959
3448
|
};
|
|
2960
|
-
declare const __VLS_base$
|
|
3449
|
+
declare const __VLS_base$11: vue.DefineComponent<SwitchThumbProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SwitchThumbProps> & Readonly<{}>, {
|
|
2961
3450
|
as: string | vue.Component;
|
|
2962
3451
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2963
|
-
declare const __VLS_export$
|
|
2964
|
-
declare const _default$
|
|
2965
|
-
type __VLS_WithSlots$
|
|
3452
|
+
declare const __VLS_export$14: __VLS_WithSlots$11<typeof __VLS_base$11, __VLS_Slots$11>;
|
|
3453
|
+
declare const _default$53: typeof __VLS_export$14;
|
|
3454
|
+
type __VLS_WithSlots$11<T, S> = T & {
|
|
2966
3455
|
new (): {
|
|
2967
3456
|
$slots: S;
|
|
2968
3457
|
};
|
|
@@ -3016,6 +3505,235 @@ declare enum SwitchThumbDataAttributes {
|
|
|
3016
3505
|
focused = "data-focused"
|
|
3017
3506
|
}
|
|
3018
3507
|
//#endregion
|
|
3508
|
+
//#region src/scroll-area/root/ScrollAreaRootContext.d.ts
|
|
3509
|
+
interface ScrollAreaRootState {
|
|
3510
|
+
scrolling: boolean;
|
|
3511
|
+
hasOverflowX: boolean;
|
|
3512
|
+
hasOverflowY: boolean;
|
|
3513
|
+
overflowXStart: boolean;
|
|
3514
|
+
overflowXEnd: boolean;
|
|
3515
|
+
overflowYStart: boolean;
|
|
3516
|
+
overflowYEnd: boolean;
|
|
3517
|
+
cornerHidden: boolean;
|
|
3518
|
+
}
|
|
3519
|
+
//#endregion
|
|
3520
|
+
//#region src/scroll-area/content/ScrollAreaContent.vue.d.ts
|
|
3521
|
+
type ScrollAreaContentState = ScrollAreaRootState;
|
|
3522
|
+
interface ScrollAreaContentProps extends BaseUIComponentProps<ScrollAreaContentState> {}
|
|
3523
|
+
declare var __VLS_1$6: {
|
|
3524
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3525
|
+
props: Record<string, any>;
|
|
3526
|
+
state: ScrollAreaRootState;
|
|
3527
|
+
}, __VLS_10$5: {};
|
|
3528
|
+
type __VLS_Slots$10 = {} & {
|
|
3529
|
+
default?: (props: typeof __VLS_1$6) => any;
|
|
3530
|
+
} & {
|
|
3531
|
+
default?: (props: typeof __VLS_10$5) => any;
|
|
3532
|
+
};
|
|
3533
|
+
declare const __VLS_base$10: vue.DefineComponent<ScrollAreaContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaContentProps> & Readonly<{}>, {
|
|
3534
|
+
as: string | vue.Component;
|
|
3535
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3536
|
+
declare const __VLS_export$13: __VLS_WithSlots$10<typeof __VLS_base$10, __VLS_Slots$10>;
|
|
3537
|
+
declare const _default$38: typeof __VLS_export$13;
|
|
3538
|
+
type __VLS_WithSlots$10<T, S> = T & {
|
|
3539
|
+
new (): {
|
|
3540
|
+
$slots: S;
|
|
3541
|
+
};
|
|
3542
|
+
}; //# sourceMappingURL=ScrollAreaContent.vue.d.ts.map
|
|
3543
|
+
//#endregion
|
|
3544
|
+
//#region src/scroll-area/corner/ScrollAreaCorner.vue.d.ts
|
|
3545
|
+
interface ScrollAreaCornerState {}
|
|
3546
|
+
interface ScrollAreaCornerProps extends BaseUIComponentProps<ScrollAreaCornerState> {}
|
|
3547
|
+
declare var __VLS_1$5: {
|
|
3548
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3549
|
+
props: Record<string, any>;
|
|
3550
|
+
state: ScrollAreaCornerState;
|
|
3551
|
+
};
|
|
3552
|
+
type __VLS_Slots$9 = {} & {
|
|
3553
|
+
default?: (props: typeof __VLS_1$5) => any;
|
|
3554
|
+
};
|
|
3555
|
+
declare const __VLS_base$9: vue.DefineComponent<ScrollAreaCornerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaCornerProps> & Readonly<{}>, {
|
|
3556
|
+
as: string | vue.Component;
|
|
3557
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3558
|
+
declare const __VLS_export$12: __VLS_WithSlots$9<typeof __VLS_base$9, __VLS_Slots$9>;
|
|
3559
|
+
declare const _default$39: typeof __VLS_export$12;
|
|
3560
|
+
type __VLS_WithSlots$9<T, S> = T & {
|
|
3561
|
+
new (): {
|
|
3562
|
+
$slots: S;
|
|
3563
|
+
};
|
|
3564
|
+
}; //# sourceMappingURL=ScrollAreaCorner.vue.d.ts.map
|
|
3565
|
+
//#endregion
|
|
3566
|
+
//#region src/scroll-area/root/ScrollAreaRoot.vue.d.ts
|
|
3567
|
+
interface ScrollAreaRootProps extends BaseUIComponentProps<ScrollAreaRootState> {
|
|
3568
|
+
overflowEdgeThreshold?: number | Partial<{
|
|
3569
|
+
xStart: number;
|
|
3570
|
+
xEnd: number;
|
|
3571
|
+
yStart: number;
|
|
3572
|
+
yEnd: number;
|
|
3573
|
+
}>;
|
|
3574
|
+
}
|
|
3575
|
+
declare var __VLS_1$4: {
|
|
3576
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3577
|
+
props: Record<string, any>;
|
|
3578
|
+
state: ScrollAreaRootState;
|
|
3579
|
+
}, __VLS_10$4: {};
|
|
3580
|
+
type __VLS_Slots$8 = {} & {
|
|
3581
|
+
default?: (props: typeof __VLS_1$4) => any;
|
|
3582
|
+
} & {
|
|
3583
|
+
default?: (props: typeof __VLS_10$4) => any;
|
|
3584
|
+
};
|
|
3585
|
+
declare const __VLS_base$8: vue.DefineComponent<ScrollAreaRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaRootProps> & Readonly<{}>, {
|
|
3586
|
+
as: string | vue.Component;
|
|
3587
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3588
|
+
declare const __VLS_export$11: __VLS_WithSlots$8<typeof __VLS_base$8, __VLS_Slots$8>;
|
|
3589
|
+
declare const _default$40: typeof __VLS_export$11;
|
|
3590
|
+
type __VLS_WithSlots$8<T, S> = T & {
|
|
3591
|
+
new (): {
|
|
3592
|
+
$slots: S;
|
|
3593
|
+
};
|
|
3594
|
+
}; //# sourceMappingURL=ScrollAreaRoot.vue.d.ts.map
|
|
3595
|
+
//#endregion
|
|
3596
|
+
//#region src/scroll-area/root/ScrollAreaRootCssVars.d.ts
|
|
3597
|
+
declare enum ScrollAreaRootCssVars {
|
|
3598
|
+
scrollAreaCornerHeight = "--scroll-area-corner-height",
|
|
3599
|
+
scrollAreaCornerWidth = "--scroll-area-corner-width"
|
|
3600
|
+
}
|
|
3601
|
+
//#endregion
|
|
3602
|
+
//#region src/scroll-area/root/ScrollAreaRootDataAttributes.d.ts
|
|
3603
|
+
declare enum ScrollAreaRootDataAttributes {
|
|
3604
|
+
scrolling = "data-scrolling",
|
|
3605
|
+
hasOverflowX = "data-has-overflow-x",
|
|
3606
|
+
hasOverflowY = "data-has-overflow-y",
|
|
3607
|
+
overflowXStart = "data-overflow-x-start",
|
|
3608
|
+
overflowXEnd = "data-overflow-x-end",
|
|
3609
|
+
overflowYStart = "data-overflow-y-start",
|
|
3610
|
+
overflowYEnd = "data-overflow-y-end"
|
|
3611
|
+
}
|
|
3612
|
+
//#endregion
|
|
3613
|
+
//#region src/scroll-area/scrollbar/ScrollAreaScrollbar.vue.d.ts
|
|
3614
|
+
interface ScrollAreaScrollbarState extends ScrollAreaRootState {
|
|
3615
|
+
hovering: boolean;
|
|
3616
|
+
scrolling: boolean;
|
|
3617
|
+
orientation: 'vertical' | 'horizontal';
|
|
3618
|
+
}
|
|
3619
|
+
interface ScrollAreaScrollbarProps extends BaseUIComponentProps<ScrollAreaScrollbarState> {
|
|
3620
|
+
orientation?: 'vertical' | 'horizontal';
|
|
3621
|
+
keepMounted?: boolean;
|
|
3622
|
+
}
|
|
3623
|
+
declare var __VLS_1$3: {
|
|
3624
|
+
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
3625
|
+
props: Record<string, any>;
|
|
3626
|
+
state: ScrollAreaScrollbarState;
|
|
3627
|
+
}, __VLS_10$3: {};
|
|
3628
|
+
type __VLS_Slots$7 = {} & {
|
|
3629
|
+
default?: (props: typeof __VLS_1$3) => any;
|
|
3630
|
+
} & {
|
|
3631
|
+
default?: (props: typeof __VLS_10$3) => any;
|
|
3632
|
+
};
|
|
3633
|
+
declare const __VLS_base$7: vue.DefineComponent<ScrollAreaScrollbarProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaScrollbarProps> & Readonly<{}>, {
|
|
3634
|
+
as: string | vue.Component;
|
|
3635
|
+
keepMounted: boolean;
|
|
3636
|
+
orientation: "vertical" | "horizontal";
|
|
3637
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3638
|
+
declare const __VLS_export$10: __VLS_WithSlots$7<typeof __VLS_base$7, __VLS_Slots$7>;
|
|
3639
|
+
declare const _default$41: typeof __VLS_export$10;
|
|
3640
|
+
type __VLS_WithSlots$7<T, S> = T & {
|
|
3641
|
+
new (): {
|
|
3642
|
+
$slots: S;
|
|
3643
|
+
};
|
|
3644
|
+
}; //# sourceMappingURL=ScrollAreaScrollbar.vue.d.ts.map
|
|
3645
|
+
//#endregion
|
|
3646
|
+
//#region src/scroll-area/scrollbar/ScrollAreaScrollbarCssVars.d.ts
|
|
3647
|
+
declare enum ScrollAreaScrollbarCssVars {
|
|
3648
|
+
scrollAreaThumbHeight = "--scroll-area-thumb-height",
|
|
3649
|
+
scrollAreaThumbWidth = "--scroll-area-thumb-width"
|
|
3650
|
+
}
|
|
3651
|
+
//#endregion
|
|
3652
|
+
//#region src/scroll-area/scrollbar/ScrollAreaScrollbarDataAttributes.d.ts
|
|
3653
|
+
declare enum ScrollAreaScrollbarDataAttributes {
|
|
3654
|
+
orientation = "data-orientation",
|
|
3655
|
+
hovering = "data-hovering",
|
|
3656
|
+
scrolling = "data-scrolling",
|
|
3657
|
+
hasOverflowX = "data-has-overflow-x",
|
|
3658
|
+
hasOverflowY = "data-has-overflow-y",
|
|
3659
|
+
overflowXStart = "data-overflow-x-start",
|
|
3660
|
+
overflowXEnd = "data-overflow-x-end",
|
|
3661
|
+
overflowYStart = "data-overflow-y-start",
|
|
3662
|
+
overflowYEnd = "data-overflow-y-end"
|
|
3663
|
+
}
|
|
3664
|
+
//#endregion
|
|
3665
|
+
//#region src/scroll-area/thumb/ScrollAreaThumb.vue.d.ts
|
|
3666
|
+
interface ScrollAreaThumbState {
|
|
3667
|
+
orientation?: 'horizontal' | 'vertical';
|
|
3668
|
+
}
|
|
3669
|
+
interface ScrollAreaThumbProps extends BaseUIComponentProps<ScrollAreaThumbState> {}
|
|
3670
|
+
declare var __VLS_1$2: {
|
|
3671
|
+
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
3672
|
+
props: Record<string, any>;
|
|
3673
|
+
state: ScrollAreaThumbState;
|
|
3674
|
+
};
|
|
3675
|
+
type __VLS_Slots$6 = {} & {
|
|
3676
|
+
default?: (props: typeof __VLS_1$2) => any;
|
|
3677
|
+
};
|
|
3678
|
+
declare const __VLS_base$6: vue.DefineComponent<ScrollAreaThumbProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaThumbProps> & Readonly<{}>, {
|
|
3679
|
+
as: string | vue.Component;
|
|
3680
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3681
|
+
declare const __VLS_export$9: __VLS_WithSlots$6<typeof __VLS_base$6, __VLS_Slots$6>;
|
|
3682
|
+
declare const _default$42: typeof __VLS_export$9;
|
|
3683
|
+
type __VLS_WithSlots$6<T, S> = T & {
|
|
3684
|
+
new (): {
|
|
3685
|
+
$slots: S;
|
|
3686
|
+
};
|
|
3687
|
+
}; //# sourceMappingURL=ScrollAreaThumb.vue.d.ts.map
|
|
3688
|
+
//#endregion
|
|
3689
|
+
//#region src/scroll-area/thumb/ScrollAreaThumbDataAttributes.d.ts
|
|
3690
|
+
declare enum ScrollAreaThumbDataAttributes {
|
|
3691
|
+
orientation = "data-orientation"
|
|
3692
|
+
}
|
|
3693
|
+
//#endregion
|
|
3694
|
+
//#region src/scroll-area/viewport/ScrollAreaViewport.vue.d.ts
|
|
3695
|
+
type ScrollAreaViewportState = ScrollAreaRootState;
|
|
3696
|
+
interface ScrollAreaViewportProps extends BaseUIComponentProps<ScrollAreaViewportState> {}
|
|
3697
|
+
declare var __VLS_1$1: {
|
|
3698
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3699
|
+
props: Record<string, any>;
|
|
3700
|
+
state: ScrollAreaRootState;
|
|
3701
|
+
}, __VLS_10$2: {};
|
|
3702
|
+
type __VLS_Slots$5 = {} & {
|
|
3703
|
+
default?: (props: typeof __VLS_1$1) => any;
|
|
3704
|
+
} & {
|
|
3705
|
+
default?: (props: typeof __VLS_10$2) => any;
|
|
3706
|
+
};
|
|
3707
|
+
declare const __VLS_base$5: vue.DefineComponent<ScrollAreaViewportProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaViewportProps> & Readonly<{}>, {
|
|
3708
|
+
as: string | vue.Component;
|
|
3709
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3710
|
+
declare const __VLS_export$8: __VLS_WithSlots$5<typeof __VLS_base$5, __VLS_Slots$5>;
|
|
3711
|
+
declare const _default$43: typeof __VLS_export$8;
|
|
3712
|
+
type __VLS_WithSlots$5<T, S> = T & {
|
|
3713
|
+
new (): {
|
|
3714
|
+
$slots: S;
|
|
3715
|
+
};
|
|
3716
|
+
}; //# sourceMappingURL=ScrollAreaViewport.vue.d.ts.map
|
|
3717
|
+
//#endregion
|
|
3718
|
+
//#region src/scroll-area/viewport/ScrollAreaViewportCssVars.d.ts
|
|
3719
|
+
declare enum ScrollAreaViewportCssVars {
|
|
3720
|
+
scrollAreaOverflowXStart = "--scroll-area-overflow-x-start",
|
|
3721
|
+
scrollAreaOverflowXEnd = "--scroll-area-overflow-x-end",
|
|
3722
|
+
scrollAreaOverflowYStart = "--scroll-area-overflow-y-start",
|
|
3723
|
+
scrollAreaOverflowYEnd = "--scroll-area-overflow-y-end"
|
|
3724
|
+
}
|
|
3725
|
+
//#endregion
|
|
3726
|
+
//#region src/scroll-area/viewport/ScrollAreaViewportDataAttributes.d.ts
|
|
3727
|
+
declare enum ScrollAreaViewportDataAttributes {
|
|
3728
|
+
scrolling = "data-scrolling",
|
|
3729
|
+
hasOverflowX = "data-has-overflow-x",
|
|
3730
|
+
hasOverflowY = "data-has-overflow-y",
|
|
3731
|
+
overflowXStart = "data-overflow-x-start",
|
|
3732
|
+
overflowXEnd = "data-overflow-x-end",
|
|
3733
|
+
overflowYStart = "data-overflow-y-start",
|
|
3734
|
+
overflowYEnd = "data-overflow-y-end"
|
|
3735
|
+
}
|
|
3736
|
+
//#endregion
|
|
3019
3737
|
//#region src/toggle/Toggle.vue.d.ts
|
|
3020
3738
|
interface ToggleState {
|
|
3021
3739
|
/**
|
|
@@ -3092,7 +3810,7 @@ declare const __VLS_export$7: <Value extends string = string>(__VLS_props: NonNu
|
|
|
3092
3810
|
}>) => vue.VNode & {
|
|
3093
3811
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
3094
3812
|
};
|
|
3095
|
-
declare const _default$
|
|
3813
|
+
declare const _default$54: typeof __VLS_export$7;
|
|
3096
3814
|
type __VLS_PrettifyLocal$1<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {}; //# sourceMappingURL=Toggle.vue.d.ts.map
|
|
3097
3815
|
//#endregion
|
|
3098
3816
|
//#region src/toggle/ToggleDataAttributes.d.ts
|
|
@@ -3204,7 +3922,7 @@ declare const __VLS_export$6: <Value extends string = string>(__VLS_props: NonNu
|
|
|
3204
3922
|
}>) => vue.VNode & {
|
|
3205
3923
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
3206
3924
|
};
|
|
3207
|
-
declare const _default$
|
|
3925
|
+
declare const _default$55: typeof __VLS_export$6;
|
|
3208
3926
|
type __VLS_PrettifyLocal<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {}; //# sourceMappingURL=ToggleGroup.vue.d.ts.map
|
|
3209
3927
|
//#endregion
|
|
3210
3928
|
//#region src/toggle-group/ToggleGroupContext.d.ts
|
|
@@ -3288,7 +4006,7 @@ declare const __VLS_base$4: vue.DefineComponent<ToolbarRootProps, {}, {}, {}, {}
|
|
|
3288
4006
|
loopFocus: boolean;
|
|
3289
4007
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3290
4008
|
declare const __VLS_export$5: __VLS_WithSlots$4<typeof __VLS_base$4, __VLS_Slots$4>;
|
|
3291
|
-
declare const _default$
|
|
4009
|
+
declare const _default$60: typeof __VLS_export$5;
|
|
3292
4010
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
3293
4011
|
new (): {
|
|
3294
4012
|
$slots: S;
|
|
@@ -3331,7 +4049,7 @@ declare const __VLS_base$3: vue.DefineComponent<ToolbarButtonProps, {}, {}, {},
|
|
|
3331
4049
|
focusableWhenDisabled: boolean;
|
|
3332
4050
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3333
4051
|
declare const __VLS_export$4: __VLS_WithSlots$3<typeof __VLS_base$3, __VLS_Slots$3>;
|
|
3334
|
-
declare const _default$
|
|
4052
|
+
declare const _default$56: typeof __VLS_export$4;
|
|
3335
4053
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
3336
4054
|
new (): {
|
|
3337
4055
|
$slots: S;
|
|
@@ -3381,7 +4099,7 @@ declare const __VLS_base$2: vue.DefineComponent<ToolbarGroupProps, {}, {}, {}, {
|
|
|
3381
4099
|
as: string | vue.Component;
|
|
3382
4100
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3383
4101
|
declare const __VLS_export$3: __VLS_WithSlots$2<typeof __VLS_base$2, __VLS_Slots$2>;
|
|
3384
|
-
declare const _default$
|
|
4102
|
+
declare const _default$57: typeof __VLS_export$3;
|
|
3385
4103
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
3386
4104
|
new (): {
|
|
3387
4105
|
$slots: S;
|
|
@@ -3438,7 +4156,7 @@ declare const __VLS_export$2: vue.DefineComponent<ToolbarInputProps, {}, {}, {},
|
|
|
3438
4156
|
as: string | vue.Component;
|
|
3439
4157
|
focusableWhenDisabled: boolean;
|
|
3440
4158
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3441
|
-
declare const _default$
|
|
4159
|
+
declare const _default$58: typeof __VLS_export$2;
|
|
3442
4160
|
//#endregion
|
|
3443
4161
|
//#region src/toolbar/input/ToolbarInputDataAttributes.d.ts
|
|
3444
4162
|
declare enum ToolbarInputDataAttributes {
|
|
@@ -3475,7 +4193,7 @@ declare const __VLS_base$1: vue.DefineComponent<ToolbarLinkProps, {}, {}, {}, {}
|
|
|
3475
4193
|
as: string | vue.Component;
|
|
3476
4194
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3477
4195
|
declare const __VLS_export$1: __VLS_WithSlots$1<typeof __VLS_base$1, __VLS_Slots$1>;
|
|
3478
|
-
declare const _default$
|
|
4196
|
+
declare const _default$59: typeof __VLS_export$1;
|
|
3479
4197
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
3480
4198
|
new (): {
|
|
3481
4199
|
$slots: S;
|
|
@@ -3527,7 +4245,7 @@ type __VLS_Slots = {} & {
|
|
|
3527
4245
|
};
|
|
3528
4246
|
declare const __VLS_base: vue.DefineComponent<ToolbarSeparatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ToolbarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3529
4247
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
3530
|
-
declare const _default$
|
|
4248
|
+
declare const _default$61: typeof __VLS_export;
|
|
3531
4249
|
type __VLS_WithSlots<T, S> = T & {
|
|
3532
4250
|
new (): {
|
|
3533
4251
|
$slots: S;
|
|
@@ -3543,9 +4261,6 @@ declare enum ToolbarSeparatorDataAttributes {
|
|
|
3543
4261
|
orientation = "data-orientation"
|
|
3544
4262
|
}
|
|
3545
4263
|
//#endregion
|
|
3546
|
-
//#region src/utils/getStateAttributesProps.d.ts
|
|
3547
|
-
type StateAttributesMapping<State> = { [Property in keyof State]?: (state: State[Property]) => Record<string, string> | null };
|
|
3548
|
-
//#endregion
|
|
3549
4264
|
//#region src/use-render/useRender.d.ts
|
|
3550
4265
|
type UseRenderIntrinsicElement = keyof NativeElements;
|
|
3551
4266
|
type UseRenderRef = Ref<HTMLElement | ComponentPublicInstance | null> | ((el: Element | ComponentPublicInstance | null) => void);
|
|
@@ -3636,5 +4351,5 @@ declare const Slot: Component;
|
|
|
3636
4351
|
declare const name = "base-ui-vue";
|
|
3637
4352
|
declare const version = "0.0.0";
|
|
3638
4353
|
//#endregion
|
|
3639
|
-
export { _default as AccordionHeader, AccordionHeaderProps, _default$1 as AccordionItem, AccordionItemChangeEventDetails, AccordionItemChangeEventReason, type AccordionItemContext, AccordionItemProps, AccordionItemState, _default$2 as AccordionPanel, AccordionPanelProps, AccordionPanelState, _default$3 as AccordionRoot, AccordionRootChangeEventDetails, AccordionRootChangeEventReason, type AccordionRootContext, AccordionRootProps, AccordionRootState, _default$4 as AccordionTrigger, AccordionTriggerProps, AccordionValue, _default$5 as AvatarFallback, type AvatarFallbackProps, type AvatarFallbackState, _default$6 as AvatarImage, AvatarImageDataAttributes, type AvatarImageProps, type AvatarImageState, _default$7 as AvatarRoot, type AvatarRootProps, type AvatarRootState, _default$8 as Button, ButtonProps, ButtonState, type CSPContextValue, _default$9 as CSPProvider, type CSPProviderProps, Checkbox, _default$10 as CheckboxGroup, type CheckboxGroupContext, CheckboxGroupDataAttributes, type CheckboxGroupProps, type CheckboxGroupState, _default$11 as CheckboxIndicator, CheckboxIndicatorDataAttributes, type CheckboxIndicatorProps, type CheckboxIndicatorState, _default$12 as CheckboxRoot, type CheckboxRootContext, CheckboxRootDataAttributes, type CheckboxRootProps, type CheckboxRootState, CollapsibleChangeEventDetails, CollapsibleChangeEventReason, _default$13 as CollapsiblePanel, CollapsiblePanelProps, CollapsiblePanelState, _default$14 as CollapsibleRoot, type CollapsibleRootContext, CollapsibleRootProps, CollapsibleRootState, _default$15 as CollapsibleTrigger, CollapsibleTriggerProps, _default$16 as DirectionProvider, type DirectionProviderProps, _default$17 as FieldControl, FieldControlDataAttributes, type FieldControlProps, type FieldControlState, _default$18 as FieldDescription, type FieldDescriptionProps, type FieldDescriptionState, _default$19 as FieldError, type FieldErrorProps, type FieldErrorState, _default$20 as FieldItem, type FieldItemContext, type FieldItemProps, type FieldItemState, _default$21 as FieldLabel, type FieldLabelProps, type FieldLabelState, _default$22 as FieldRoot, type FieldRootContext, type FieldRootExpose, type FieldRootProps, type FieldRootState, _default$23 as FieldValidity, type FieldValidityData, type FieldValidityState, _default$24 as FieldsetLegend, type FieldsetLegendProps, type FieldsetLegendState, _default$25 as FieldsetRoot, type FieldsetRootContext, type FieldsetRootProps, type FieldsetRootState, _default$26 as Form, type FormActions, type FormContext, type FormErrors, type FormField, type FormProps, type FormState, type FormValidationMode, type ImageLoadingStatus, _default$11 as Indicator, RenderRef, _default$12 as Root, _default$
|
|
4354
|
+
export { _default as AccordionHeader, AccordionHeaderProps, _default$1 as AccordionItem, AccordionItemChangeEventDetails, AccordionItemChangeEventReason, type AccordionItemContext, AccordionItemProps, AccordionItemState, _default$2 as AccordionPanel, AccordionPanelProps, AccordionPanelState, _default$3 as AccordionRoot, AccordionRootChangeEventDetails, AccordionRootChangeEventReason, type AccordionRootContext, AccordionRootProps, AccordionRootState, _default$4 as AccordionTrigger, AccordionTriggerProps, AccordionValue, _default$5 as AvatarFallback, type AvatarFallbackProps, type AvatarFallbackState, _default$6 as AvatarImage, AvatarImageDataAttributes, type AvatarImageProps, type AvatarImageState, _default$7 as AvatarRoot, type AvatarRootProps, type AvatarRootState, _default$8 as Button, ButtonProps, ButtonState, type CSPContextValue, _default$9 as CSPProvider, type CSPProviderProps, Checkbox, _default$10 as CheckboxGroup, type CheckboxGroupContext, CheckboxGroupDataAttributes, type CheckboxGroupProps, type CheckboxGroupState, _default$11 as CheckboxIndicator, CheckboxIndicatorDataAttributes, type CheckboxIndicatorProps, type CheckboxIndicatorState, _default$12 as CheckboxRoot, type CheckboxRootContext, CheckboxRootDataAttributes, type CheckboxRootProps, type CheckboxRootState, CollapsibleChangeEventDetails, CollapsibleChangeEventReason, _default$13 as CollapsiblePanel, CollapsiblePanelProps, CollapsiblePanelState, _default$14 as CollapsibleRoot, type CollapsibleRootContext, CollapsibleRootProps, CollapsibleRootState, _default$15 as CollapsibleTrigger, CollapsibleTriggerProps, _default$16 as DirectionProvider, type DirectionProviderProps, _default$17 as FieldControl, FieldControlDataAttributes, type FieldControlProps, type FieldControlState, _default$18 as FieldDescription, type FieldDescriptionProps, type FieldDescriptionState, _default$19 as FieldError, type FieldErrorProps, type FieldErrorState, _default$20 as FieldItem, type FieldItemContext, type FieldItemProps, type FieldItemState, _default$21 as FieldLabel, type FieldLabelProps, type FieldLabelState, _default$22 as FieldRoot, type FieldRootContext, type FieldRootExpose, type FieldRootProps, type FieldRootState, _default$23 as FieldValidity, type FieldValidityData, type FieldValidityState, _default$24 as FieldsetLegend, type FieldsetLegendProps, type FieldsetLegendState, _default$25 as FieldsetRoot, type FieldsetRootContext, type FieldsetRootProps, type FieldsetRootState, _default$26 as Form, type FormActions, type FormContext, type FormErrors, type FormField, type FormProps, type FormState, type FormValidationMode, type ImageLoadingStatus, _default$11 as Indicator, _default$27 as Input, InputDataAttributes, type InputProps, type InputState, _default$28 as MeterIndicator, type MeterIndicatorProps, type MeterIndicatorState, _default$29 as MeterLabel, type MeterLabelProps, type MeterLabelState, _default$30 as MeterRoot, type MeterRootContext, type MeterRootProps, type MeterRootState, _default$31 as MeterTrack, type MeterTrackProps, type MeterTrackState, _default$32 as MeterValue, type MeterValueProps, type MeterValueState, _default$33 as ProgressIndicator, type ProgressIndicatorProps, type ProgressIndicatorState, _default$34 as ProgressLabel, type ProgressLabelProps, type ProgressLabelState, _default$35 as ProgressRoot, type ProgressRootContext, ProgressRootDataAttributes, type ProgressRootProps, type ProgressRootState, type ProgressStatus, _default$36 as ProgressTrack, type ProgressTrackProps, type ProgressTrackState, _default$37 as ProgressValue, type ProgressValueProps, type ProgressValueRenderlessSlotProps, type ProgressValueSlotProps, type ProgressValueState, RenderRef, _default$12 as Root, _default$38 as ScrollAreaContent, type ScrollAreaContentProps, type ScrollAreaContentState, _default$39 as ScrollAreaCorner, type ScrollAreaCornerProps, type ScrollAreaCornerState, _default$40 as ScrollAreaRoot, ScrollAreaRootCssVars, ScrollAreaRootDataAttributes, type ScrollAreaRootProps, type ScrollAreaRootState, _default$41 as ScrollAreaScrollbar, ScrollAreaScrollbarCssVars, ScrollAreaScrollbarDataAttributes, type ScrollAreaScrollbarProps, type ScrollAreaScrollbarState, _default$42 as ScrollAreaThumb, ScrollAreaThumbDataAttributes, type ScrollAreaThumbProps, type ScrollAreaThumbState, _default$43 as ScrollAreaViewport, ScrollAreaViewportCssVars, ScrollAreaViewportDataAttributes, type ScrollAreaViewportProps, type ScrollAreaViewportState, _default$44 as Separator, SeparatorDataAttributes, type SeparatorProps, type SeparatorState, _default$45 as SliderControl, SliderControlDataAttributes, type SliderControlProps, type SliderControlState, _default$46 as SliderIndicator, SliderIndicatorDataAttributes, type SliderIndicatorProps, type SliderIndicatorState, _default$47 as SliderLabel, type SliderLabelProps, type SliderLabelState, _default$48 as SliderRoot, type SliderRootChangeEventDetails, type SliderRootChangeEventReason, type SliderRootCommitEventDetails, type SliderRootCommitEventReason, type SliderRootContext, SliderRootDataAttributes, type SliderRootProps, type SliderRootState, _default$49 as SliderThumb, SliderThumbDataAttributes, type SliderThumbProps, type SliderThumbState, _default$50 as SliderTrack, SliderTrackDataAttributes, type SliderTrackProps, type SliderTrackState, _default$51 as SliderValue, SliderValueDataAttributes, type SliderValueProps, type SliderValueState, Slot, _default$52 as SwitchRoot, type SwitchRootChangeEventDetails, type SwitchRootChangeEventReason, type SwitchRootContext, SwitchRootDataAttributes, type SwitchRootProps, type SwitchRootState, _default$53 as SwitchThumb, SwitchThumbDataAttributes, type SwitchThumbProps, type SwitchThumbState, type TextDirection, type ThumbMetadata, _default$54 as Toggle, ToggleDataAttributes, _default$55 as ToggleGroup, type ToggleGroupContext, ToggleGroupDataAttributes, type ToggleGroupProps, type ToggleGroupState, type ToggleProps, type ToggleState, _default$56 as ToolbarButton, ToolbarButtonDataAttributes, type ToolbarButtonProps, type ToolbarButtonState, _default$57 as ToolbarGroup, type ToolbarGroupContext, ToolbarGroupDataAttributes, type ToolbarGroupProps, type ToolbarGroupState, _default$58 as ToolbarInput, ToolbarInputDataAttributes, type ToolbarInputProps, type ToolbarInputState, _default$59 as ToolbarLink, ToolbarLinkDataAttributes, type ToolbarLinkProps, type ToolbarLinkState, _default$60 as ToolbarRoot, type ToolbarRootContext, ToolbarRootDataAttributes, type ToolbarRootItemMetadata, type ToolbarRootProps, type ToolbarRootState, _default$61 as ToolbarSeparator, ToolbarSeparatorDataAttributes, type ToolbarSeparatorProps, type ToolbarSeparatorState, type TransitionStatus, type UseCheckboxGroupParentParameters, type UseCheckboxGroupParentReturnValue, UseRenderComponentProps, UseRenderElementProps, UseRenderParams, UseRenderReturn, accordionItemContextKey, accordionRootContextKey, checkboxGroupContextKey, checkboxRootContextKey, collapsibleRootContextKey, fieldItemContextKey, fieldRootContextKey, fieldsetRootContextKey, formContextKey, makeEventPreventable, mergeClasses, mergeObjects, mergeProps, mergePropsN, meterRootContextKey, name, progressRootContextKey, progressStateAttributesMapping, sliderRootContextKey, switchRootContextKey, toggleGroupContextKey, toolbarGroupContextKey, toolbarRootContextKey, useAccordionItemContext, useAccordionRootContext, useCSPContext, useCheckboxGroupContext, useCheckboxRootContext, useCollapsibleRootContext, useDirection, useFieldItemContext, useFieldRootContext, useFieldsetRootContext, useFormContext, useMeterRootContext, useProgressRootContext, useRender, useSliderRootContext, useSwitchRootContext, useToggleGroupContext, useToolbarGroupContext, useToolbarRootContext, version };
|
|
3640
4355
|
//# sourceMappingURL=index.d.ts.map
|