base-ui-vue 0.3.0 → 0.4.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/button/ToolbarButton.cjs +6 -0
- package/dist/button/ToolbarButton.js +1 -1
- package/dist/control/SliderControl.js +2 -2
- package/dist/decrement/NumberFieldDecrement.cjs +861 -0
- package/dist/decrement/NumberFieldDecrement.cjs.map +1 -0
- package/dist/decrement/NumberFieldDecrement.js +700 -0
- package/dist/decrement/NumberFieldDecrement.js.map +1 -0
- package/dist/fallback/AvatarFallback.cjs +2 -46
- package/dist/fallback/AvatarFallback.cjs.map +1 -1
- package/dist/fallback/AvatarFallback.js +3 -41
- package/dist/fallback/AvatarFallback.js.map +1 -1
- package/dist/group/NumberFieldGroup.cjs +72 -0
- package/dist/group/NumberFieldGroup.cjs.map +1 -0
- package/dist/group/NumberFieldGroup.js +67 -0
- package/dist/group/NumberFieldGroup.js.map +1 -0
- package/dist/increment/NumberFieldIncrement.cjs +112 -0
- package/dist/increment/NumberFieldIncrement.cjs.map +1 -0
- package/dist/increment/NumberFieldIncrement.js +107 -0
- package/dist/increment/NumberFieldIncrement.js.map +1 -0
- package/dist/index.cjs +20 -1
- package/dist/index.d.cts +1387 -771
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +1387 -771
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -3
- package/dist/index2.cjs +4292 -2479
- package/dist/index2.cjs.map +1 -1
- package/dist/index2.js +4155 -2408
- package/dist/index2.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +3 -1
- package/src/number-field/decrement/NumberFieldDecrement.vue +109 -0
- package/src/number-field/group/NumberFieldGroup.vue +47 -0
- package/src/number-field/increment/NumberFieldIncrement.vue +109 -0
- package/src/number-field/index.ts +42 -0
- package/src/number-field/input/NumberFieldInput.vue +455 -0
- package/src/number-field/root/NumberFieldRoot.vue +626 -0
- package/src/number-field/root/NumberFieldRootContext.ts +94 -0
- package/src/number-field/root/useNumberFieldButton.ts +171 -0
- package/src/number-field/scrub-area/NumberFieldScrubArea.vue +359 -0
- package/src/number-field/scrub-area/NumberFieldScrubAreaContext.ts +26 -0
- package/src/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.vue +75 -0
- package/src/number-field/utils/constants.ts +4 -0
- package/src/number-field/utils/getViewportRect.ts +34 -0
- package/src/number-field/utils/parse.ts +248 -0
- package/src/number-field/utils/stateAttributesMapping.ts +9 -0
- package/src/number-field/utils/subscribeToVisualViewportResize.ts +27 -0
- package/src/number-field/utils/types.ts +24 -0
- package/src/number-field/utils/validate.ts +120 -0
- package/src/otp-field/index.ts +22 -0
- package/src/otp-field/input/OtpFieldInput.vue +336 -0
- package/src/otp-field/root/OtpFieldRoot.vue +583 -0
- package/src/otp-field/root/OtpFieldRootContext.ts +81 -0
- package/src/otp-field/utils/otp.ts +135 -0
- package/src/otp-field/utils/stateAttributesMapping.ts +16 -0
- package/src/utils/detectBrowser.ts +15 -0
- package/src/utils/formatNumber.ts +35 -2
- package/src/utils/useInterval.ts +45 -0
- package/src/utils/usePressAndHold.ts +260 -0
- package/src/utils/useValueChanged.ts +21 -0
package/dist/index.d.cts
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$54: {
|
|
283
283
|
props: Record<string, any>;
|
|
284
284
|
state: AccordionItemState<any>;
|
|
285
|
-
}, __VLS_10$
|
|
285
|
+
}, __VLS_10$45: {
|
|
286
286
|
state: AccordionItemState<any>;
|
|
287
287
|
};
|
|
288
|
-
type __VLS_Slots$
|
|
289
|
-
default?: (props: typeof __VLS_1$
|
|
288
|
+
type __VLS_Slots$67 = {} & {
|
|
289
|
+
default?: (props: typeof __VLS_1$54) => any;
|
|
290
290
|
} & {
|
|
291
|
-
default?: (props: typeof __VLS_10$
|
|
291
|
+
default?: (props: typeof __VLS_10$45) => any;
|
|
292
292
|
};
|
|
293
|
-
declare const __VLS_base$
|
|
293
|
+
declare const __VLS_base$67: 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$70: __VLS_WithSlots$67<typeof __VLS_base$67, __VLS_Slots$67>;
|
|
297
|
+
declare const _default: typeof __VLS_export$70;
|
|
298
|
+
type __VLS_WithSlots$67<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$53: {
|
|
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$44: {
|
|
310
310
|
state: AccordionItemState<any>;
|
|
311
311
|
};
|
|
312
|
-
type __VLS_Slots$
|
|
313
|
-
default?: (props: typeof __VLS_1$
|
|
312
|
+
type __VLS_Slots$66 = {} & {
|
|
313
|
+
default?: (props: typeof __VLS_1$53) => any;
|
|
314
314
|
} & {
|
|
315
|
-
default?: (props: typeof __VLS_10$
|
|
315
|
+
default?: (props: typeof __VLS_10$44) => any;
|
|
316
316
|
};
|
|
317
|
-
declare const __VLS_base$
|
|
317
|
+
declare const __VLS_base$66: 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$57: 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$69: __VLS_WithSlots$66<typeof __VLS_base$66, __VLS_Slots$66>;
|
|
326
|
+
declare const _default$1: typeof __VLS_export$69;
|
|
327
|
+
type __VLS_WithSlots$66<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$52: {
|
|
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$43: {
|
|
349
349
|
state: AccordionPanelState;
|
|
350
350
|
};
|
|
351
|
-
type __VLS_Slots$
|
|
352
|
-
default?: (props: typeof __VLS_1$
|
|
351
|
+
type __VLS_Slots$65 = {} & {
|
|
352
|
+
default?: (props: typeof __VLS_1$52) => any;
|
|
353
353
|
} & {
|
|
354
|
-
default?: (props: typeof __VLS_10$
|
|
354
|
+
default?: (props: typeof __VLS_10$43) => any;
|
|
355
355
|
};
|
|
356
|
-
declare const __VLS_base$
|
|
356
|
+
declare const __VLS_base$65: 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$68: __VLS_WithSlots$65<typeof __VLS_base$65, __VLS_Slots$65>;
|
|
360
|
+
declare const _default$2: typeof __VLS_export$68;
|
|
361
|
+
type __VLS_WithSlots$65<T, S> = T & {
|
|
362
362
|
new (): {
|
|
363
363
|
$slots: S;
|
|
364
364
|
};
|
|
@@ -366,18 +366,18 @@ type __VLS_WithSlots$56<T, S> = T & {
|
|
|
366
366
|
//#endregion
|
|
367
367
|
//#region src/accordion/root/AccordionRoot.vue.d.ts
|
|
368
368
|
type __VLS_Props$1 = AccordionRootProps;
|
|
369
|
-
declare var __VLS_8$
|
|
369
|
+
declare var __VLS_8$6: {
|
|
370
370
|
props: Record<string, any>;
|
|
371
371
|
state: AccordionRootState<any>;
|
|
372
|
-
}, __VLS_16$
|
|
372
|
+
}, __VLS_16$4: {
|
|
373
373
|
state: AccordionRootState<any>;
|
|
374
374
|
};
|
|
375
|
-
type __VLS_Slots$
|
|
376
|
-
default?: (props: typeof __VLS_8$
|
|
375
|
+
type __VLS_Slots$64 = {} & {
|
|
376
|
+
default?: (props: typeof __VLS_8$6) => any;
|
|
377
377
|
} & {
|
|
378
|
-
default?: (props: typeof __VLS_16$
|
|
378
|
+
default?: (props: typeof __VLS_16$4) => any;
|
|
379
379
|
};
|
|
380
|
-
declare const __VLS_base$
|
|
380
|
+
declare const __VLS_base$64: 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;
|
|
@@ -385,14 +385,14 @@ declare const __VLS_base$55: vue.DefineComponent<__VLS_Props$1, {}, {}, {}, {},
|
|
|
385
385
|
disabled: boolean;
|
|
386
386
|
as: string | vue.Component;
|
|
387
387
|
keepMounted: boolean;
|
|
388
|
-
orientation: Orientation;
|
|
389
388
|
hiddenUntilFound: boolean;
|
|
390
389
|
multiple: boolean;
|
|
390
|
+
orientation: Orientation;
|
|
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$67: __VLS_WithSlots$64<typeof __VLS_base$64, __VLS_Slots$64>;
|
|
394
|
+
declare const _default$3: typeof __VLS_export$67;
|
|
395
|
+
type __VLS_WithSlots$64<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$51: {
|
|
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$42: {
|
|
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$63 = {} & {
|
|
437
|
+
default?: (props: typeof __VLS_1$51) => any;
|
|
438
438
|
} & {
|
|
439
|
-
default?: (props: typeof __VLS_10$
|
|
439
|
+
default?: (props: typeof __VLS_10$42) => any;
|
|
440
440
|
};
|
|
441
|
-
declare const __VLS_base$
|
|
441
|
+
declare const __VLS_base$63: 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$66: __VLS_WithSlots$63<typeof __VLS_base$63, __VLS_Slots$63>;
|
|
446
|
+
declare const _default$4: typeof __VLS_export$66;
|
|
447
|
+
type __VLS_WithSlots$63<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$50: {
|
|
460
460
|
props: Record<string, any>;
|
|
461
461
|
state: AvatarRootState;
|
|
462
|
-
}, __VLS_10$
|
|
462
|
+
}, __VLS_10$41: {
|
|
463
463
|
state: AvatarRootState;
|
|
464
464
|
};
|
|
465
|
-
type __VLS_Slots$
|
|
466
|
-
default?: (props: typeof __VLS_1$
|
|
465
|
+
type __VLS_Slots$62 = {} & {
|
|
466
|
+
default?: (props: typeof __VLS_1$50) => any;
|
|
467
467
|
} & {
|
|
468
|
-
default?: (props: typeof __VLS_10$
|
|
468
|
+
default?: (props: typeof __VLS_10$41) => any;
|
|
469
469
|
};
|
|
470
|
-
declare const __VLS_base$
|
|
470
|
+
declare const __VLS_base$62: 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$65: __VLS_WithSlots$62<typeof __VLS_base$62, __VLS_Slots$62>;
|
|
474
|
+
declare const _default$7: typeof __VLS_export$65;
|
|
475
|
+
type __VLS_WithSlots$62<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$49: {
|
|
490
490
|
props: Record<string, any>;
|
|
491
491
|
state: AvatarFallbackState;
|
|
492
|
-
}, __VLS_10$
|
|
492
|
+
}, __VLS_10$40: {
|
|
493
493
|
state: AvatarFallbackState;
|
|
494
494
|
};
|
|
495
|
-
type __VLS_Slots$
|
|
496
|
-
default?: (props: typeof __VLS_1$
|
|
495
|
+
type __VLS_Slots$61 = {} & {
|
|
496
|
+
default?: (props: typeof __VLS_1$49) => any;
|
|
497
497
|
} & {
|
|
498
|
-
default?: (props: typeof __VLS_10$
|
|
498
|
+
default?: (props: typeof __VLS_10$40) => any;
|
|
499
499
|
};
|
|
500
|
-
declare const __VLS_base$
|
|
500
|
+
declare const __VLS_base$61: 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$64: __VLS_WithSlots$61<typeof __VLS_base$61, __VLS_Slots$61>;
|
|
504
|
+
declare const _default$5: typeof __VLS_export$64;
|
|
505
|
+
type __VLS_WithSlots$61<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$48: {
|
|
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$39: {
|
|
528
528
|
state: AvatarImageState;
|
|
529
529
|
};
|
|
530
|
-
type __VLS_Slots$
|
|
531
|
-
default?: (props: typeof __VLS_1$
|
|
530
|
+
type __VLS_Slots$60 = {} & {
|
|
531
|
+
default?: (props: typeof __VLS_1$48) => any;
|
|
532
532
|
} & {
|
|
533
|
-
default?: (props: typeof __VLS_10$
|
|
533
|
+
default?: (props: typeof __VLS_10$39) => any;
|
|
534
534
|
};
|
|
535
|
-
declare const __VLS_base$
|
|
535
|
+
declare const __VLS_base$60: 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$63: __VLS_WithSlots$60<typeof __VLS_base$60, __VLS_Slots$60>;
|
|
543
|
+
declare const _default$6: typeof __VLS_export$63;
|
|
544
|
+
type __VLS_WithSlots$60<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$47: {
|
|
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$38: {
|
|
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$59 = {} & {
|
|
599
|
+
default?: (props: typeof __VLS_1$47) => any;
|
|
600
600
|
} & {
|
|
601
|
-
default?: (props: typeof __VLS_10$
|
|
601
|
+
default?: (props: typeof __VLS_10$38) => any;
|
|
602
602
|
};
|
|
603
|
-
declare const __VLS_base$
|
|
603
|
+
declare const __VLS_base$59: 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$62: __VLS_WithSlots$59<typeof __VLS_base$59, __VLS_Slots$59>;
|
|
610
|
+
declare const _default$8: typeof __VLS_export$62;
|
|
611
|
+
type __VLS_WithSlots$59<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$46: {
|
|
731
731
|
props: Record<string, any>;
|
|
732
732
|
state: FieldRootState;
|
|
733
|
-
}, __VLS_10$
|
|
733
|
+
}, __VLS_10$37: {
|
|
734
734
|
state: FieldRootState;
|
|
735
735
|
};
|
|
736
|
-
type __VLS_Slots$
|
|
737
|
-
default?: (props: typeof __VLS_1$
|
|
736
|
+
type __VLS_Slots$58 = {} & {
|
|
737
|
+
default?: (props: typeof __VLS_1$46) => any;
|
|
738
738
|
} & {
|
|
739
|
-
default?: (props: typeof __VLS_10$
|
|
739
|
+
default?: (props: typeof __VLS_10$37) => any;
|
|
740
740
|
};
|
|
741
|
-
declare const __VLS_base$
|
|
741
|
+
declare const __VLS_base$58: 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$49: 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$61: __VLS_WithSlots$58<typeof __VLS_base$58, __VLS_Slots$58>;
|
|
750
|
+
declare const _default$22: typeof __VLS_export$61;
|
|
751
|
+
type __VLS_WithSlots$58<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$45: {
|
|
852
852
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
853
853
|
props: Record<string, any>;
|
|
854
854
|
state: CheckboxRootState;
|
|
855
|
-
}, __VLS_9$
|
|
855
|
+
}, __VLS_9$2: {
|
|
856
856
|
state: CheckboxRootState;
|
|
857
857
|
};
|
|
858
|
-
type __VLS_Slots$
|
|
859
|
-
default?: (props: typeof __VLS_1$
|
|
858
|
+
type __VLS_Slots$57 = {} & {
|
|
859
|
+
default?: (props: typeof __VLS_1$45) => any;
|
|
860
860
|
} & {
|
|
861
|
-
default?: (props: typeof __VLS_9$
|
|
861
|
+
default?: (props: typeof __VLS_9$2) => any;
|
|
862
862
|
};
|
|
863
|
-
declare const __VLS_base$
|
|
863
|
+
declare const __VLS_base$57: 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$48: 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$60: __VLS_WithSlots$57<typeof __VLS_base$57, __VLS_Slots$57>;
|
|
894
|
+
declare const _default$12: typeof __VLS_export$60;
|
|
895
|
+
type __VLS_WithSlots$57<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$44: {
|
|
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$36: {
|
|
917
917
|
state: CheckboxIndicatorState;
|
|
918
918
|
};
|
|
919
|
-
type __VLS_Slots$
|
|
920
|
-
default?: (props: typeof __VLS_1$
|
|
919
|
+
type __VLS_Slots$56 = {} & {
|
|
920
|
+
default?: (props: typeof __VLS_1$44) => any;
|
|
921
921
|
} & {
|
|
922
|
-
default?: (props: typeof __VLS_10$
|
|
922
|
+
default?: (props: typeof __VLS_10$36) => any;
|
|
923
923
|
};
|
|
924
|
-
declare const __VLS_base$
|
|
924
|
+
declare const __VLS_base$56: 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$59: __VLS_WithSlots$56<typeof __VLS_base$56, __VLS_Slots$56>;
|
|
929
|
+
declare const _default$11: typeof __VLS_export$59;
|
|
930
|
+
type __VLS_WithSlots$56<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$43: {
|
|
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$35: {
|
|
1234
1234
|
state: CheckboxGroupState;
|
|
1235
1235
|
};
|
|
1236
|
-
type __VLS_Slots$
|
|
1237
|
-
default?: (props: typeof __VLS_1$
|
|
1236
|
+
type __VLS_Slots$55 = {} & {
|
|
1237
|
+
default?: (props: typeof __VLS_1$43) => any;
|
|
1238
1238
|
} & {
|
|
1239
|
-
default?: (props: typeof __VLS_10$
|
|
1239
|
+
default?: (props: typeof __VLS_10$35) => any;
|
|
1240
1240
|
};
|
|
1241
|
-
declare const __VLS_base$
|
|
1241
|
+
declare const __VLS_base$55: 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$46: 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$58: __VLS_WithSlots$55<typeof __VLS_base$55, __VLS_Slots$55>;
|
|
1267
|
+
declare const _default$10: typeof __VLS_export$58;
|
|
1268
|
+
type __VLS_WithSlots$55<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$42: {
|
|
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$34: {
|
|
1397
1397
|
state: CollapsiblePanelState;
|
|
1398
1398
|
};
|
|
1399
|
-
type __VLS_Slots$
|
|
1400
|
-
default?: (props: typeof __VLS_1$
|
|
1399
|
+
type __VLS_Slots$54 = {} & {
|
|
1400
|
+
default?: (props: typeof __VLS_1$42) => any;
|
|
1401
1401
|
} & {
|
|
1402
|
-
default?: (props: typeof __VLS_10$
|
|
1402
|
+
default?: (props: typeof __VLS_10$34) => any;
|
|
1403
1403
|
};
|
|
1404
|
-
declare const __VLS_base$
|
|
1404
|
+
declare const __VLS_base$54: 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$57: __VLS_WithSlots$54<typeof __VLS_base$54, __VLS_Slots$54>;
|
|
1410
|
+
declare const _default$13: typeof __VLS_export$57;
|
|
1411
|
+
type __VLS_WithSlots$54<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$41: {
|
|
1419
1419
|
props: Record<string, any>;
|
|
1420
1420
|
state: CollapsibleRootState;
|
|
1421
|
-
}, __VLS_10$
|
|
1421
|
+
}, __VLS_10$33: {
|
|
1422
1422
|
state: CollapsibleRootState;
|
|
1423
1423
|
};
|
|
1424
|
-
type __VLS_Slots$
|
|
1425
|
-
default?: (props: typeof __VLS_1$
|
|
1424
|
+
type __VLS_Slots$53 = {} & {
|
|
1425
|
+
default?: (props: typeof __VLS_1$41) => any;
|
|
1426
1426
|
} & {
|
|
1427
|
-
default?: (props: typeof __VLS_10$
|
|
1427
|
+
default?: (props: typeof __VLS_10$33) => any;
|
|
1428
1428
|
};
|
|
1429
|
-
declare const __VLS_base$
|
|
1429
|
+
declare const __VLS_base$53: 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$44: 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$56: __VLS_WithSlots$53<typeof __VLS_base$53, __VLS_Slots$53>;
|
|
1439
|
+
declare const _default$14: typeof __VLS_export$56;
|
|
1440
|
+
type __VLS_WithSlots$53<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$40: {
|
|
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$32: {
|
|
1507
1507
|
state: vue.Ref<CollapsibleRootState, CollapsibleRootState>;
|
|
1508
1508
|
};
|
|
1509
|
-
type __VLS_Slots$
|
|
1510
|
-
default?: (props: typeof __VLS_1$
|
|
1509
|
+
type __VLS_Slots$52 = {} & {
|
|
1510
|
+
default?: (props: typeof __VLS_1$40) => any;
|
|
1511
1511
|
} & {
|
|
1512
|
-
default?: (props: typeof __VLS_10$
|
|
1512
|
+
default?: (props: typeof __VLS_10$32) => any;
|
|
1513
1513
|
};
|
|
1514
|
-
declare const __VLS_base$
|
|
1514
|
+
declare const __VLS_base$52: 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$55: __VLS_WithSlots$52<typeof __VLS_base$52, __VLS_Slots$52>;
|
|
1519
|
+
declare const _default$15: typeof __VLS_export$55;
|
|
1520
|
+
type __VLS_WithSlots$52<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$39: {};
|
|
1549
|
+
type __VLS_Slots$51 = {} & {
|
|
1550
|
+
default?: (props: typeof __VLS_1$39) => any;
|
|
1551
1551
|
};
|
|
1552
|
-
declare const __VLS_base$
|
|
1552
|
+
declare const __VLS_base$51: 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$54: __VLS_WithSlots$51<typeof __VLS_base$51, __VLS_Slots$51>;
|
|
1556
|
+
declare const _default$9: typeof __VLS_export$54;
|
|
1557
|
+
type __VLS_WithSlots$51<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$38: {};
|
|
1565
|
+
type __VLS_Slots$50 = {} & {
|
|
1566
|
+
default?: (props: typeof __VLS_1$38) => any;
|
|
1567
1567
|
};
|
|
1568
|
-
declare const __VLS_base$
|
|
1568
|
+
declare const __VLS_base$50: 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$53: __VLS_WithSlots$50<typeof __VLS_base$50, __VLS_Slots$50>;
|
|
1572
|
+
declare const _default$16: typeof __VLS_export$53;
|
|
1573
|
+
type __VLS_WithSlots$50<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$37: {
|
|
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$49 = {} & {
|
|
1604
|
+
default?: (props: typeof __VLS_1$37) => any;
|
|
1605
1605
|
};
|
|
1606
|
-
declare const __VLS_base$
|
|
1606
|
+
declare const __VLS_base$49: 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$40: 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$52: __VLS_WithSlots$49<typeof __VLS_base$49, __VLS_Slots$49>;
|
|
1616
|
+
declare const _default$17: typeof __VLS_export$52;
|
|
1617
|
+
type __VLS_WithSlots$49<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$36: {
|
|
1664
1664
|
props: Record<string, any>;
|
|
1665
1665
|
state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
|
|
1666
|
-
}, __VLS_10$
|
|
1666
|
+
}, __VLS_10$31: {
|
|
1667
1667
|
state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
|
|
1668
1668
|
};
|
|
1669
|
-
type __VLS_Slots$
|
|
1670
|
-
default?: (props: typeof __VLS_1$
|
|
1669
|
+
type __VLS_Slots$48 = {} & {
|
|
1670
|
+
default?: (props: typeof __VLS_1$36) => any;
|
|
1671
1671
|
} & {
|
|
1672
|
-
default?: (props: typeof __VLS_10$
|
|
1672
|
+
default?: (props: typeof __VLS_10$31) => any;
|
|
1673
1673
|
};
|
|
1674
|
-
declare const __VLS_base$
|
|
1674
|
+
declare const __VLS_base$48: 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$51: __VLS_WithSlots$48<typeof __VLS_base$48, __VLS_Slots$48>;
|
|
1678
|
+
declare const _default$18: typeof __VLS_export$51;
|
|
1679
|
+
type __VLS_WithSlots$48<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$35: {
|
|
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$30: {};
|
|
1707
|
+
type __VLS_Slots$47 = {} & {
|
|
1708
|
+
default?: (props: typeof __VLS_1$35) => any;
|
|
1709
1709
|
} & {
|
|
1710
|
-
default?: (props: typeof __VLS_10$
|
|
1710
|
+
default?: (props: typeof __VLS_10$30) => any;
|
|
1711
1711
|
};
|
|
1712
|
-
declare const __VLS_base$
|
|
1712
|
+
declare const __VLS_base$47: 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$50: __VLS_WithSlots$47<typeof __VLS_base$47, __VLS_Slots$47>;
|
|
1716
|
+
declare const _default$19: typeof __VLS_export$50;
|
|
1717
|
+
type __VLS_WithSlots$47<T, S> = T & {
|
|
1718
1718
|
new (): {
|
|
1719
1719
|
$slots: S;
|
|
1720
1720
|
};
|
|
@@ -1730,24 +1730,24 @@ interface FieldItemProps extends BaseUIComponentProps<FieldItemState> {
|
|
|
1730
1730
|
*/
|
|
1731
1731
|
disabled?: boolean;
|
|
1732
1732
|
}
|
|
1733
|
-
declare var __VLS_8$
|
|
1733
|
+
declare var __VLS_8$5: {
|
|
1734
1734
|
props: Record<string, any>;
|
|
1735
1735
|
state: FieldRootState;
|
|
1736
|
-
}, __VLS_16$
|
|
1736
|
+
}, __VLS_16$3: {
|
|
1737
1737
|
state: FieldRootState;
|
|
1738
1738
|
};
|
|
1739
|
-
type __VLS_Slots$
|
|
1740
|
-
default?: (props: typeof __VLS_8$
|
|
1739
|
+
type __VLS_Slots$46 = {} & {
|
|
1740
|
+
default?: (props: typeof __VLS_8$5) => any;
|
|
1741
1741
|
} & {
|
|
1742
|
-
default?: (props: typeof __VLS_16$
|
|
1742
|
+
default?: (props: typeof __VLS_16$3) => any;
|
|
1743
1743
|
};
|
|
1744
|
-
declare const __VLS_base$
|
|
1744
|
+
declare const __VLS_base$46: 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$49: __VLS_WithSlots$46<typeof __VLS_base$46, __VLS_Slots$46>;
|
|
1749
|
+
declare const _default$20: typeof __VLS_export$49;
|
|
1750
|
+
type __VLS_WithSlots$46<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$34: {
|
|
1777
1777
|
props: Record<string, any>;
|
|
1778
1778
|
state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
|
|
1779
|
-
}, __VLS_10$
|
|
1779
|
+
}, __VLS_10$29: {
|
|
1780
1780
|
state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
|
|
1781
1781
|
};
|
|
1782
|
-
type __VLS_Slots$
|
|
1783
|
-
default?: (props: typeof __VLS_1$
|
|
1782
|
+
type __VLS_Slots$45 = {} & {
|
|
1783
|
+
default?: (props: typeof __VLS_1$34) => any;
|
|
1784
1784
|
} & {
|
|
1785
|
-
default?: (props: typeof __VLS_10$
|
|
1785
|
+
default?: (props: typeof __VLS_10$29) => any;
|
|
1786
1786
|
};
|
|
1787
|
-
declare const __VLS_base$
|
|
1787
|
+
declare const __VLS_base$45: 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$48: __VLS_WithSlots$45<typeof __VLS_base$45, __VLS_Slots$45>;
|
|
1792
|
+
declare const _default$21: typeof __VLS_export$48;
|
|
1793
|
+
type __VLS_WithSlots$45<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$33: {
|
|
1832
1832
|
validity: FieldValidityData["state"];
|
|
1833
1833
|
transitionStatus: TransitionStatus;
|
|
1834
1834
|
value: unknown;
|
|
@@ -1836,13 +1836,13 @@ declare var __VLS_1$27: {
|
|
|
1836
1836
|
errors: string[];
|
|
1837
1837
|
initialValue: unknown;
|
|
1838
1838
|
};
|
|
1839
|
-
type __VLS_Slots$
|
|
1840
|
-
default?: (props: typeof __VLS_1$
|
|
1839
|
+
type __VLS_Slots$44 = {} & {
|
|
1840
|
+
default?: (props: typeof __VLS_1$33) => 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$44: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
1843
|
+
declare const __VLS_export$47: __VLS_WithSlots$44<typeof __VLS_base$44, __VLS_Slots$44>;
|
|
1844
|
+
declare const _default$23: typeof __VLS_export$47;
|
|
1845
|
+
type __VLS_WithSlots$44<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$32: {
|
|
1866
1866
|
props: Record<string, any>;
|
|
1867
1867
|
state: FieldsetLegendState;
|
|
1868
|
-
}, __VLS_10$
|
|
1868
|
+
}, __VLS_10$28: {
|
|
1869
1869
|
state: FieldsetLegendState;
|
|
1870
1870
|
};
|
|
1871
|
-
type __VLS_Slots$
|
|
1872
|
-
default?: (props: typeof __VLS_1$
|
|
1871
|
+
type __VLS_Slots$43 = {} & {
|
|
1872
|
+
default?: (props: typeof __VLS_1$32) => any;
|
|
1873
1873
|
} & {
|
|
1874
|
-
default?: (props: typeof __VLS_10$
|
|
1874
|
+
default?: (props: typeof __VLS_10$28) => any;
|
|
1875
1875
|
};
|
|
1876
|
-
declare const __VLS_base$
|
|
1876
|
+
declare const __VLS_base$43: 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$46: __VLS_WithSlots$43<typeof __VLS_base$43, __VLS_Slots$43>;
|
|
1880
|
+
declare const _default$24: typeof __VLS_export$46;
|
|
1881
|
+
type __VLS_WithSlots$43<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$31: {
|
|
1902
1902
|
props: Record<string, any>;
|
|
1903
1903
|
state: FieldsetRootState;
|
|
1904
|
-
}, __VLS_10$
|
|
1904
|
+
}, __VLS_10$27: {
|
|
1905
1905
|
state: FieldsetRootState;
|
|
1906
1906
|
};
|
|
1907
|
-
type __VLS_Slots$
|
|
1908
|
-
default?: (props: typeof __VLS_1$
|
|
1907
|
+
type __VLS_Slots$42 = {} & {
|
|
1908
|
+
default?: (props: typeof __VLS_1$31) => any;
|
|
1909
1909
|
} & {
|
|
1910
|
-
default?: (props: typeof __VLS_10$
|
|
1910
|
+
default?: (props: typeof __VLS_10$27) => any;
|
|
1911
1911
|
};
|
|
1912
|
-
declare const __VLS_base$
|
|
1912
|
+
declare const __VLS_base$42: 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$45: __VLS_WithSlots$42<typeof __VLS_base$42, __VLS_Slots$42>;
|
|
1917
|
+
declare const _default$25: typeof __VLS_export$45;
|
|
1918
|
+
type __VLS_WithSlots$42<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$30: {
|
|
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$26: {
|
|
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$41 = {} & {
|
|
1974
|
+
default?: (props: typeof __VLS_1$30) => any;
|
|
1975
1975
|
} & {
|
|
1976
|
-
default?: (props: typeof __VLS_10$
|
|
1976
|
+
default?: (props: typeof __VLS_10$26) => any;
|
|
1977
1977
|
};
|
|
1978
|
-
declare const __VLS_base$
|
|
1978
|
+
declare const __VLS_base$41: vue.DefineComponent<FormProps, {
|
|
1979
1979
|
actions: {
|
|
1980
1980
|
validate: (fieldName?: string) => void;
|
|
1981
1981
|
};
|
|
@@ -1988,9 +1988,9 @@ declare const __VLS_base$32: 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$44: __VLS_WithSlots$41<typeof __VLS_base$41, __VLS_Slots$41>;
|
|
1992
|
+
declare const _default$26: typeof __VLS_export$44;
|
|
1993
|
+
type __VLS_WithSlots$41<T, S> = T & {
|
|
1994
1994
|
new (): {
|
|
1995
1995
|
$slots: S;
|
|
1996
1996
|
};
|
|
@@ -2004,17 +2004,17 @@ declare var __VLS_11: {
|
|
|
2004
2004
|
props: Record<string, any>;
|
|
2005
2005
|
state: FieldRootState;
|
|
2006
2006
|
};
|
|
2007
|
-
type __VLS_Slots$
|
|
2007
|
+
type __VLS_Slots$40 = {} & {
|
|
2008
2008
|
default?: (props: typeof __VLS_11) => any;
|
|
2009
2009
|
};
|
|
2010
|
-
declare const __VLS_base$
|
|
2010
|
+
declare const __VLS_base$40: vue.DefineComponent<InputProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2011
2011
|
valueChange: (value: string, event: Event) => any;
|
|
2012
2012
|
}, string, vue.PublicProps, Readonly<InputProps> & Readonly<{
|
|
2013
2013
|
onValueChange?: ((value: string, event: Event) => any) | undefined;
|
|
2014
2014
|
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2015
|
-
declare const __VLS_export$
|
|
2016
|
-
declare const _default$27: typeof __VLS_export$
|
|
2017
|
-
type __VLS_WithSlots$
|
|
2015
|
+
declare const __VLS_export$43: __VLS_WithSlots$40<typeof __VLS_base$40, __VLS_Slots$40>;
|
|
2016
|
+
declare const _default$27: typeof __VLS_export$43;
|
|
2017
|
+
type __VLS_WithSlots$40<T, S> = T & {
|
|
2018
2018
|
new (): {
|
|
2019
2019
|
$slots: S;
|
|
2020
2020
|
};
|
|
@@ -2109,25 +2109,25 @@ interface MeterRootProps extends BaseUIComponentProps<MeterRootState> {
|
|
|
2109
2109
|
*/
|
|
2110
2110
|
value: number;
|
|
2111
2111
|
}
|
|
2112
|
-
declare var __VLS_1$
|
|
2112
|
+
declare var __VLS_1$29: {
|
|
2113
2113
|
props: Record<string, any>;
|
|
2114
2114
|
state: MeterRootState;
|
|
2115
|
-
}, __VLS_10$
|
|
2115
|
+
}, __VLS_10$25: {
|
|
2116
2116
|
state: MeterRootState;
|
|
2117
2117
|
};
|
|
2118
|
-
type __VLS_Slots$
|
|
2119
|
-
default?: (props: typeof __VLS_1$
|
|
2118
|
+
type __VLS_Slots$39 = {} & {
|
|
2119
|
+
default?: (props: typeof __VLS_1$29) => any;
|
|
2120
2120
|
} & {
|
|
2121
|
-
default?: (props: typeof __VLS_10$
|
|
2121
|
+
default?: (props: typeof __VLS_10$25) => any;
|
|
2122
2122
|
};
|
|
2123
|
-
declare const __VLS_base$
|
|
2123
|
+
declare const __VLS_base$39: vue.DefineComponent<MeterRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterRootProps> & Readonly<{}>, {
|
|
2124
2124
|
as: string | vue.Component;
|
|
2125
2125
|
min: number;
|
|
2126
2126
|
max: number;
|
|
2127
2127
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2128
|
-
declare const __VLS_export$
|
|
2129
|
-
declare const _default$30: typeof __VLS_export$
|
|
2130
|
-
type __VLS_WithSlots$
|
|
2128
|
+
declare const __VLS_export$42: __VLS_WithSlots$39<typeof __VLS_base$39, __VLS_Slots$39>;
|
|
2129
|
+
declare const _default$30: typeof __VLS_export$42;
|
|
2130
|
+
type __VLS_WithSlots$39<T, S> = T & {
|
|
2131
2131
|
new (): {
|
|
2132
2132
|
$slots: S;
|
|
2133
2133
|
};
|
|
@@ -2136,23 +2136,23 @@ type __VLS_WithSlots$30<T, S> = T & {
|
|
|
2136
2136
|
//#region src/meter/indicator/MeterIndicator.vue.d.ts
|
|
2137
2137
|
interface MeterIndicatorState extends MeterRootState {}
|
|
2138
2138
|
interface MeterIndicatorProps extends BaseUIComponentProps<MeterIndicatorState> {}
|
|
2139
|
-
declare var __VLS_1$
|
|
2139
|
+
declare var __VLS_1$28: {
|
|
2140
2140
|
props: Record<string, any>;
|
|
2141
2141
|
state: MeterIndicatorState;
|
|
2142
|
-
}, __VLS_10$
|
|
2142
|
+
}, __VLS_10$24: {
|
|
2143
2143
|
state: MeterIndicatorState;
|
|
2144
2144
|
};
|
|
2145
|
-
type __VLS_Slots$
|
|
2146
|
-
default?: (props: typeof __VLS_1$
|
|
2145
|
+
type __VLS_Slots$38 = {} & {
|
|
2146
|
+
default?: (props: typeof __VLS_1$28) => any;
|
|
2147
2147
|
} & {
|
|
2148
|
-
default?: (props: typeof __VLS_10$
|
|
2148
|
+
default?: (props: typeof __VLS_10$24) => any;
|
|
2149
2149
|
};
|
|
2150
|
-
declare const __VLS_base$
|
|
2150
|
+
declare const __VLS_base$38: vue.DefineComponent<MeterIndicatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterIndicatorProps> & Readonly<{}>, {
|
|
2151
2151
|
as: string | vue.Component;
|
|
2152
2152
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2153
|
-
declare const __VLS_export$
|
|
2154
|
-
declare const _default$28: typeof __VLS_export$
|
|
2155
|
-
type __VLS_WithSlots$
|
|
2153
|
+
declare const __VLS_export$41: __VLS_WithSlots$38<typeof __VLS_base$38, __VLS_Slots$38>;
|
|
2154
|
+
declare const _default$28: typeof __VLS_export$41;
|
|
2155
|
+
type __VLS_WithSlots$38<T, S> = T & {
|
|
2156
2156
|
new (): {
|
|
2157
2157
|
$slots: S;
|
|
2158
2158
|
};
|
|
@@ -2167,23 +2167,23 @@ interface MeterLabelProps extends BaseUIComponentProps<MeterLabelState> {
|
|
|
2167
2167
|
*/
|
|
2168
2168
|
id?: string;
|
|
2169
2169
|
}
|
|
2170
|
-
declare var __VLS_1$
|
|
2170
|
+
declare var __VLS_1$27: {
|
|
2171
2171
|
props: Record<string, any>;
|
|
2172
2172
|
state: MeterLabelState;
|
|
2173
|
-
}, __VLS_10$
|
|
2173
|
+
}, __VLS_10$23: {
|
|
2174
2174
|
state: MeterLabelState;
|
|
2175
2175
|
};
|
|
2176
|
-
type __VLS_Slots$
|
|
2177
|
-
default?: (props: typeof __VLS_1$
|
|
2176
|
+
type __VLS_Slots$37 = {} & {
|
|
2177
|
+
default?: (props: typeof __VLS_1$27) => any;
|
|
2178
2178
|
} & {
|
|
2179
|
-
default?: (props: typeof __VLS_10$
|
|
2179
|
+
default?: (props: typeof __VLS_10$23) => any;
|
|
2180
2180
|
};
|
|
2181
|
-
declare const __VLS_base$
|
|
2181
|
+
declare const __VLS_base$37: vue.DefineComponent<MeterLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterLabelProps> & Readonly<{}>, {
|
|
2182
2182
|
as: string | vue.Component;
|
|
2183
2183
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2184
|
-
declare const __VLS_export$
|
|
2185
|
-
declare const _default$29: typeof __VLS_export$
|
|
2186
|
-
type __VLS_WithSlots$
|
|
2184
|
+
declare const __VLS_export$40: __VLS_WithSlots$37<typeof __VLS_base$37, __VLS_Slots$37>;
|
|
2185
|
+
declare const _default$29: typeof __VLS_export$40;
|
|
2186
|
+
type __VLS_WithSlots$37<T, S> = T & {
|
|
2187
2187
|
new (): {
|
|
2188
2188
|
$slots: S;
|
|
2189
2189
|
};
|
|
@@ -2219,23 +2219,23 @@ declare function useMeterRootContext(optional?: false): MeterRootContext;
|
|
|
2219
2219
|
//#region src/meter/track/MeterTrack.vue.d.ts
|
|
2220
2220
|
interface MeterTrackState extends MeterRootState {}
|
|
2221
2221
|
interface MeterTrackProps extends BaseUIComponentProps<MeterTrackState> {}
|
|
2222
|
-
declare var __VLS_1$
|
|
2222
|
+
declare var __VLS_1$26: {
|
|
2223
2223
|
props: Record<string, any>;
|
|
2224
2224
|
state: MeterTrackState;
|
|
2225
|
-
}, __VLS_10$
|
|
2225
|
+
}, __VLS_10$22: {
|
|
2226
2226
|
state: MeterTrackState;
|
|
2227
2227
|
};
|
|
2228
|
-
type __VLS_Slots$
|
|
2229
|
-
default?: (props: typeof __VLS_1$
|
|
2228
|
+
type __VLS_Slots$36 = {} & {
|
|
2229
|
+
default?: (props: typeof __VLS_1$26) => any;
|
|
2230
2230
|
} & {
|
|
2231
|
-
default?: (props: typeof __VLS_10$
|
|
2231
|
+
default?: (props: typeof __VLS_10$22) => any;
|
|
2232
2232
|
};
|
|
2233
|
-
declare const __VLS_base$
|
|
2233
|
+
declare const __VLS_base$36: vue.DefineComponent<MeterTrackProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterTrackProps> & Readonly<{}>, {
|
|
2234
2234
|
as: string | vue.Component;
|
|
2235
2235
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2236
|
-
declare const __VLS_export$
|
|
2237
|
-
declare const _default$31: typeof __VLS_export$
|
|
2238
|
-
type __VLS_WithSlots$
|
|
2236
|
+
declare const __VLS_export$39: __VLS_WithSlots$36<typeof __VLS_base$36, __VLS_Slots$36>;
|
|
2237
|
+
declare const _default$31: typeof __VLS_export$39;
|
|
2238
|
+
type __VLS_WithSlots$36<T, S> = T & {
|
|
2239
2239
|
new (): {
|
|
2240
2240
|
$slots: S;
|
|
2241
2241
|
};
|
|
@@ -2252,122 +2252,738 @@ interface MeterValueRenderlessSlotProps extends MeterValueSlotProps {
|
|
|
2252
2252
|
props: Record<string, unknown>;
|
|
2253
2253
|
state: MeterValueState;
|
|
2254
2254
|
}
|
|
2255
|
-
type __VLS_Slots$
|
|
2255
|
+
type __VLS_Slots$35 = {
|
|
2256
2256
|
default?: (props: MeterValueSlotProps | MeterValueRenderlessSlotProps) => unknown;
|
|
2257
2257
|
};
|
|
2258
|
-
declare const __VLS_base$
|
|
2258
|
+
declare const __VLS_base$35: vue.DefineComponent<MeterValueProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterValueProps> & Readonly<{}>, {
|
|
2259
2259
|
as: string | vue.Component;
|
|
2260
2260
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2261
|
-
declare const __VLS_export$
|
|
2262
|
-
declare const _default$32: typeof __VLS_export$
|
|
2263
|
-
type __VLS_WithSlots$
|
|
2261
|
+
declare const __VLS_export$38: __VLS_WithSlots$35<typeof __VLS_base$35, __VLS_Slots$35>;
|
|
2262
|
+
declare const _default$32: typeof __VLS_export$38;
|
|
2263
|
+
type __VLS_WithSlots$35<T, S> = T & {
|
|
2264
2264
|
new (): {
|
|
2265
2265
|
$slots: S;
|
|
2266
2266
|
};
|
|
2267
2267
|
}; //# sourceMappingURL=MeterValue.vue.d.ts.map
|
|
2268
2268
|
//#endregion
|
|
2269
|
-
//#region src/
|
|
2270
|
-
type
|
|
2271
|
-
|
|
2269
|
+
//#region src/number-field/utils/types.d.ts
|
|
2270
|
+
type Direction = -1 | 1;
|
|
2271
|
+
type DirectionalChangeReason = 'increment-press' | 'decrement-press' | 'wheel' | 'scrub' | 'keyboard';
|
|
2272
|
+
interface ChangeEventCustomProperties {
|
|
2273
|
+
direction?: Direction | undefined;
|
|
2274
|
+
}
|
|
2275
|
+
interface IncrementValueParameters {
|
|
2276
|
+
direction: Direction;
|
|
2277
|
+
event?: Event | undefined;
|
|
2278
|
+
reason: DirectionalChangeReason;
|
|
2279
|
+
currentValue?: number | null | undefined;
|
|
2280
|
+
}
|
|
2281
|
+
interface EventWithOptionalKeyState {
|
|
2282
|
+
altKey?: boolean | undefined;
|
|
2283
|
+
shiftKey?: boolean | undefined;
|
|
2284
|
+
}
|
|
2285
|
+
//#endregion
|
|
2286
|
+
//#region src/number-field/root/NumberFieldRootContext.d.ts
|
|
2287
|
+
type InputMode = 'numeric' | 'decimal' | 'text';
|
|
2288
|
+
type NumberFieldRootChangeEventReason = typeof REASONS.inputChange | typeof REASONS.inputClear | typeof REASONS.inputBlur | typeof REASONS.inputPaste | typeof REASONS.keyboard | typeof REASONS.incrementPress | typeof REASONS.decrementPress | typeof REASONS.wheel | typeof REASONS.scrub | typeof REASONS.none;
|
|
2289
|
+
type NumberFieldRootChangeEventDetails = BaseUIChangeEventDetails<NumberFieldRootChangeEventReason, ChangeEventCustomProperties>;
|
|
2290
|
+
type NumberFieldRootCommitEventReason = typeof REASONS.inputBlur | typeof REASONS.inputClear | typeof REASONS.keyboard | typeof REASONS.incrementPress | typeof REASONS.decrementPress | typeof REASONS.wheel | typeof REASONS.scrub | typeof REASONS.none;
|
|
2291
|
+
type NumberFieldRootCommitEventDetails = BaseUIGenericEventDetails<NumberFieldRootCommitEventReason>;
|
|
2292
|
+
interface NumberFieldRootContext {
|
|
2293
|
+
inputValue: Readonly<Ref<string>>;
|
|
2294
|
+
value: Readonly<Ref<number | null>>;
|
|
2295
|
+
minWithDefault: ComputedRef<number>;
|
|
2296
|
+
maxWithDefault: ComputedRef<number>;
|
|
2297
|
+
disabled: ComputedRef<boolean>;
|
|
2298
|
+
readOnly: ComputedRef<boolean>;
|
|
2299
|
+
id: ComputedRef<string | undefined>;
|
|
2300
|
+
setValue: (value: number | null, details: NumberFieldRootChangeEventDetails) => boolean;
|
|
2301
|
+
getStepAmount: (event?: EventWithOptionalKeyState) => number | undefined;
|
|
2302
|
+
incrementValue: (amount: number, params: IncrementValueParameters) => boolean;
|
|
2303
|
+
inputRef: Ref<HTMLInputElement | null>;
|
|
2304
|
+
allowInputSyncRef: Ref<boolean>;
|
|
2305
|
+
formatOptionsRef: ComputedRef<Intl.NumberFormatOptions | undefined>;
|
|
2306
|
+
valueRef: Ref<number | null>;
|
|
2307
|
+
lastChangedValueRef: Ref<number | null>;
|
|
2308
|
+
hasPendingCommitRef: Ref<boolean>;
|
|
2309
|
+
name: ComputedRef<string | undefined>;
|
|
2310
|
+
nameProp: ComputedRef<string | undefined>;
|
|
2311
|
+
required: ComputedRef<boolean>;
|
|
2312
|
+
invalid: Readonly<Ref<boolean | undefined>>;
|
|
2313
|
+
inputMode: Readonly<Ref<InputMode>>;
|
|
2314
|
+
getAllowedNonNumericKeys: () => Set<string | undefined>;
|
|
2315
|
+
min: ComputedRef<number | undefined>;
|
|
2316
|
+
max: ComputedRef<number | undefined>;
|
|
2317
|
+
setInputValue: (value: string) => void;
|
|
2318
|
+
locale: ComputedRef<Intl.LocalesArgument>;
|
|
2319
|
+
isScrubbing: Readonly<Ref<boolean>>;
|
|
2320
|
+
setIsScrubbing: (value: boolean) => void;
|
|
2321
|
+
state: ComputedRef<NumberFieldRootState>;
|
|
2322
|
+
onValueCommitted: (value: number | null, eventDetails: NumberFieldRootCommitEventDetails) => void;
|
|
2323
|
+
}
|
|
2324
|
+
declare const numberFieldRootContextKey: InjectionKey<NumberFieldRootContext>;
|
|
2325
|
+
declare function useNumberFieldRootContext(): NumberFieldRootContext;
|
|
2326
|
+
//#endregion
|
|
2327
|
+
//#region src/number-field/root/NumberFieldRoot.vue.d.ts
|
|
2328
|
+
interface NumberFieldRootState extends FieldRootState {
|
|
2272
2329
|
/**
|
|
2273
|
-
* The
|
|
2330
|
+
* The raw numeric value of the field.
|
|
2274
2331
|
*/
|
|
2275
|
-
|
|
2276
|
-
}
|
|
2277
|
-
interface ProgressRootProps extends BaseUIComponentProps<ProgressRootState> {
|
|
2332
|
+
value: number | null;
|
|
2278
2333
|
/**
|
|
2279
|
-
*
|
|
2280
|
-
* Takes precedence over `getAriaValueText`.
|
|
2334
|
+
* The formatted string value presented in the input element.
|
|
2281
2335
|
*/
|
|
2282
|
-
|
|
2336
|
+
inputValue: string;
|
|
2283
2337
|
/**
|
|
2284
|
-
*
|
|
2338
|
+
* Whether the user must enter a value before submitting a form.
|
|
2285
2339
|
*/
|
|
2286
|
-
|
|
2340
|
+
required: boolean;
|
|
2287
2341
|
/**
|
|
2288
|
-
*
|
|
2289
|
-
* Receives the formatted value (or `null` when indeterminate) and the raw
|
|
2290
|
-
* value.
|
|
2342
|
+
* Whether the component should ignore user interaction.
|
|
2291
2343
|
*/
|
|
2292
|
-
|
|
2344
|
+
disabled: boolean;
|
|
2293
2345
|
/**
|
|
2294
|
-
*
|
|
2295
|
-
* Defaults to the user's runtime locale.
|
|
2346
|
+
* Whether the user should be unable to change the field value.
|
|
2296
2347
|
*/
|
|
2297
|
-
|
|
2348
|
+
readOnly: boolean;
|
|
2298
2349
|
/**
|
|
2299
|
-
*
|
|
2300
|
-
* @default 100
|
|
2350
|
+
* Whether the user is currently scrubbing the field.
|
|
2301
2351
|
*/
|
|
2302
|
-
|
|
2352
|
+
scrubbing: boolean;
|
|
2353
|
+
}
|
|
2354
|
+
interface NumberFieldRootProps extends BaseUIComponentProps<NumberFieldRootState> {
|
|
2303
2355
|
/**
|
|
2304
|
-
* The
|
|
2305
|
-
|
|
2356
|
+
* The id of the input element.
|
|
2357
|
+
*/
|
|
2358
|
+
id?: string;
|
|
2359
|
+
/**
|
|
2360
|
+
* The minimum value of the input element.
|
|
2306
2361
|
*/
|
|
2307
2362
|
min?: number;
|
|
2308
2363
|
/**
|
|
2309
|
-
* The
|
|
2310
|
-
* @default null
|
|
2364
|
+
* The maximum value of the input element.
|
|
2311
2365
|
*/
|
|
2312
|
-
|
|
2366
|
+
max?: number;
|
|
2367
|
+
/**
|
|
2368
|
+
* When true, direct text entry may be outside the `min`/`max` range without clamping,
|
|
2369
|
+
* so native range underflow/overflow validation can occur.
|
|
2370
|
+
* Step-based interactions (keyboard arrows, buttons, wheel, scrub) still clamp.
|
|
2371
|
+
* @default false
|
|
2372
|
+
*/
|
|
2373
|
+
allowOutOfRange?: boolean;
|
|
2374
|
+
/**
|
|
2375
|
+
* The small step value of the input element when incrementing while the alt key is held. Snaps
|
|
2376
|
+
* to multiples of this value.
|
|
2377
|
+
* @default 0.1
|
|
2378
|
+
*/
|
|
2379
|
+
smallStep?: number;
|
|
2380
|
+
/**
|
|
2381
|
+
* Amount to increment and decrement with the buttons and arrow keys, or to scrub with pointer
|
|
2382
|
+
* movement in the scrub area.
|
|
2383
|
+
* Specify `step="any"` to always disable step validation.
|
|
2384
|
+
* @default 1
|
|
2385
|
+
*/
|
|
2386
|
+
step?: number | 'any';
|
|
2387
|
+
/**
|
|
2388
|
+
* The large step value of the input element when incrementing while the shift key is held. Snaps
|
|
2389
|
+
* to multiples of this value.
|
|
2390
|
+
* @default 10
|
|
2391
|
+
*/
|
|
2392
|
+
largeStep?: number;
|
|
2393
|
+
/**
|
|
2394
|
+
* Whether the user must enter a value before submitting a form.
|
|
2395
|
+
* @default false
|
|
2396
|
+
*/
|
|
2397
|
+
required?: boolean;
|
|
2398
|
+
/**
|
|
2399
|
+
* Whether the component should ignore user interaction.
|
|
2400
|
+
* @default false
|
|
2401
|
+
*/
|
|
2402
|
+
disabled?: boolean;
|
|
2403
|
+
/**
|
|
2404
|
+
* Whether the user should be unable to change the field value.
|
|
2405
|
+
* @default false
|
|
2406
|
+
*/
|
|
2407
|
+
readOnly?: boolean;
|
|
2408
|
+
/**
|
|
2409
|
+
* Identifies the field when a form is submitted.
|
|
2410
|
+
*/
|
|
2411
|
+
name?: string;
|
|
2412
|
+
/**
|
|
2413
|
+
* Identifies the form that owns the hidden input.
|
|
2414
|
+
* Useful when the number field is rendered outside the form.
|
|
2415
|
+
*/
|
|
2416
|
+
form?: string;
|
|
2417
|
+
/**
|
|
2418
|
+
* The raw numeric value of the field.
|
|
2419
|
+
*/
|
|
2420
|
+
value?: number | null;
|
|
2421
|
+
/**
|
|
2422
|
+
* The uncontrolled value of the field when it's initially rendered.
|
|
2423
|
+
*
|
|
2424
|
+
* To render a controlled number field, use the `value` prop instead.
|
|
2425
|
+
*/
|
|
2426
|
+
defaultValue?: number;
|
|
2427
|
+
/**
|
|
2428
|
+
* Whether to allow the user to scrub the input value with the mouse wheel while focused and
|
|
2429
|
+
* hovering over the input.
|
|
2430
|
+
* @default false
|
|
2431
|
+
*/
|
|
2432
|
+
allowWheelScrub?: boolean;
|
|
2433
|
+
/**
|
|
2434
|
+
* Whether the value should snap to the nearest step when incrementing or decrementing.
|
|
2435
|
+
* @default false
|
|
2436
|
+
*/
|
|
2437
|
+
snapOnStep?: boolean;
|
|
2438
|
+
/**
|
|
2439
|
+
* Options to format the input value.
|
|
2440
|
+
*/
|
|
2441
|
+
format?: Intl.NumberFormatOptions;
|
|
2442
|
+
/**
|
|
2443
|
+
* The locale of the input element.
|
|
2444
|
+
* Defaults to the user's runtime locale.
|
|
2445
|
+
*/
|
|
2446
|
+
locale?: Intl.LocalesArgument;
|
|
2313
2447
|
}
|
|
2314
|
-
declare var
|
|
2448
|
+
declare var __VLS_7$1: {
|
|
2449
|
+
state: NumberFieldRootState;
|
|
2450
|
+
}, __VLS_9$1: {
|
|
2451
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2315
2452
|
props: Record<string, any>;
|
|
2316
|
-
state:
|
|
2317
|
-
}, __VLS_10$17: {
|
|
2318
|
-
state: ProgressRootState;
|
|
2453
|
+
state: NumberFieldRootState;
|
|
2319
2454
|
};
|
|
2320
|
-
type __VLS_Slots$
|
|
2321
|
-
default?: (props: typeof
|
|
2455
|
+
type __VLS_Slots$34 = {} & {
|
|
2456
|
+
default?: (props: typeof __VLS_7$1) => any;
|
|
2322
2457
|
} & {
|
|
2323
|
-
default?: (props: typeof
|
|
2458
|
+
default?: (props: typeof __VLS_9$1) => any;
|
|
2324
2459
|
};
|
|
2325
|
-
declare const __VLS_base$
|
|
2460
|
+
declare const __VLS_base$34: vue.DefineComponent<NumberFieldRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2461
|
+
valueChange: (value: number | null, eventDetails: NumberFieldRootChangeEventDetails) => any;
|
|
2462
|
+
valueCommitted: (value: number | null, eventDetails: NumberFieldRootCommitEventDetails) => any;
|
|
2463
|
+
}, string, vue.PublicProps, Readonly<NumberFieldRootProps> & Readonly<{
|
|
2464
|
+
onValueChange?: ((value: number | null, eventDetails: NumberFieldRootChangeEventDetails) => any) | undefined;
|
|
2465
|
+
onValueCommitted?: ((value: number | null, eventDetails: NumberFieldRootCommitEventDetails) => any) | undefined;
|
|
2466
|
+
}>, {
|
|
2467
|
+
disabled: boolean;
|
|
2468
|
+
readOnly: boolean;
|
|
2469
|
+
required: boolean;
|
|
2326
2470
|
as: string | vue.Component;
|
|
2327
|
-
|
|
2328
|
-
|
|
2471
|
+
step: number | "any";
|
|
2472
|
+
allowOutOfRange: boolean;
|
|
2473
|
+
smallStep: number;
|
|
2474
|
+
largeStep: number;
|
|
2475
|
+
allowWheelScrub: boolean;
|
|
2476
|
+
snapOnStep: boolean;
|
|
2329
2477
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2330
|
-
declare const __VLS_export$
|
|
2331
|
-
declare const _default$
|
|
2332
|
-
type __VLS_WithSlots$
|
|
2478
|
+
declare const __VLS_export$37: __VLS_WithSlots$34<typeof __VLS_base$34, __VLS_Slots$34>;
|
|
2479
|
+
declare const _default$37: typeof __VLS_export$37;
|
|
2480
|
+
type __VLS_WithSlots$34<T, S> = T & {
|
|
2333
2481
|
new (): {
|
|
2334
2482
|
$slots: S;
|
|
2335
2483
|
};
|
|
2336
|
-
}; //# sourceMappingURL=
|
|
2484
|
+
}; //# sourceMappingURL=NumberFieldRoot.vue.d.ts.map
|
|
2337
2485
|
//#endregion
|
|
2338
|
-
//#region src/
|
|
2339
|
-
|
|
2340
|
-
interface
|
|
2341
|
-
|
|
2486
|
+
//#region src/number-field/decrement/NumberFieldDecrement.vue.d.ts
|
|
2487
|
+
type NumberFieldDecrementState = NumberFieldRootState;
|
|
2488
|
+
interface NumberFieldDecrementProps extends NativeButtonProps, BaseUIComponentProps<NumberFieldDecrementState> {
|
|
2489
|
+
disabled?: boolean;
|
|
2490
|
+
}
|
|
2491
|
+
declare var __VLS_1$25: {
|
|
2492
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2342
2493
|
props: Record<string, any>;
|
|
2343
|
-
state:
|
|
2344
|
-
}, __VLS_10$
|
|
2345
|
-
state:
|
|
2494
|
+
state: NumberFieldRootState;
|
|
2495
|
+
}, __VLS_10$21: {
|
|
2496
|
+
state: NumberFieldRootState;
|
|
2346
2497
|
};
|
|
2347
|
-
type __VLS_Slots$
|
|
2348
|
-
default?: (props: typeof __VLS_1$
|
|
2498
|
+
type __VLS_Slots$33 = {} & {
|
|
2499
|
+
default?: (props: typeof __VLS_1$25) => any;
|
|
2349
2500
|
} & {
|
|
2350
|
-
default?: (props: typeof __VLS_10$
|
|
2501
|
+
default?: (props: typeof __VLS_10$21) => any;
|
|
2351
2502
|
};
|
|
2352
|
-
declare const __VLS_base$
|
|
2503
|
+
declare const __VLS_base$33: vue.DefineComponent<NumberFieldDecrementProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<NumberFieldDecrementProps> & Readonly<{}>, {
|
|
2504
|
+
disabled: boolean;
|
|
2505
|
+
nativeButton: boolean;
|
|
2353
2506
|
as: string | vue.Component;
|
|
2354
2507
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2355
|
-
declare const __VLS_export$
|
|
2356
|
-
declare const _default$33: typeof __VLS_export$
|
|
2357
|
-
type __VLS_WithSlots$
|
|
2508
|
+
declare const __VLS_export$36: __VLS_WithSlots$33<typeof __VLS_base$33, __VLS_Slots$33>;
|
|
2509
|
+
declare const _default$33: typeof __VLS_export$36;
|
|
2510
|
+
type __VLS_WithSlots$33<T, S> = T & {
|
|
2358
2511
|
new (): {
|
|
2359
2512
|
$slots: S;
|
|
2360
2513
|
};
|
|
2361
|
-
}; //# sourceMappingURL=
|
|
2514
|
+
}; //# sourceMappingURL=NumberFieldDecrement.vue.d.ts.map
|
|
2362
2515
|
//#endregion
|
|
2363
|
-
//#region src/
|
|
2364
|
-
|
|
2365
|
-
interface
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2516
|
+
//#region src/number-field/group/NumberFieldGroup.vue.d.ts
|
|
2517
|
+
type NumberFieldGroupState = NumberFieldRootState;
|
|
2518
|
+
interface NumberFieldGroupProps extends BaseUIComponentProps<NumberFieldGroupState> {}
|
|
2519
|
+
declare var __VLS_1$24: {
|
|
2520
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2521
|
+
props: Record<string, any>;
|
|
2522
|
+
state: NumberFieldRootState;
|
|
2523
|
+
}, __VLS_10$20: {
|
|
2524
|
+
state: NumberFieldRootState;
|
|
2525
|
+
};
|
|
2526
|
+
type __VLS_Slots$32 = {} & {
|
|
2527
|
+
default?: (props: typeof __VLS_1$24) => any;
|
|
2528
|
+
} & {
|
|
2529
|
+
default?: (props: typeof __VLS_10$20) => any;
|
|
2530
|
+
};
|
|
2531
|
+
declare const __VLS_base$32: vue.DefineComponent<NumberFieldGroupProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<NumberFieldGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2532
|
+
declare const __VLS_export$35: __VLS_WithSlots$32<typeof __VLS_base$32, __VLS_Slots$32>;
|
|
2533
|
+
declare const _default$34: typeof __VLS_export$35;
|
|
2534
|
+
type __VLS_WithSlots$32<T, S> = T & {
|
|
2535
|
+
new (): {
|
|
2536
|
+
$slots: S;
|
|
2537
|
+
};
|
|
2538
|
+
}; //# sourceMappingURL=NumberFieldGroup.vue.d.ts.map
|
|
2539
|
+
//#endregion
|
|
2540
|
+
//#region src/number-field/increment/NumberFieldIncrement.vue.d.ts
|
|
2541
|
+
type NumberFieldIncrementState = NumberFieldRootState;
|
|
2542
|
+
interface NumberFieldIncrementProps extends NativeButtonProps, BaseUIComponentProps<NumberFieldIncrementState> {
|
|
2543
|
+
disabled?: boolean;
|
|
2544
|
+
}
|
|
2545
|
+
declare var __VLS_1$23: {
|
|
2546
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2547
|
+
props: Record<string, any>;
|
|
2548
|
+
state: NumberFieldRootState;
|
|
2549
|
+
}, __VLS_10$19: {
|
|
2550
|
+
state: NumberFieldRootState;
|
|
2551
|
+
};
|
|
2552
|
+
type __VLS_Slots$31 = {} & {
|
|
2553
|
+
default?: (props: typeof __VLS_1$23) => any;
|
|
2554
|
+
} & {
|
|
2555
|
+
default?: (props: typeof __VLS_10$19) => any;
|
|
2556
|
+
};
|
|
2557
|
+
declare const __VLS_base$31: vue.DefineComponent<NumberFieldIncrementProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<NumberFieldIncrementProps> & Readonly<{}>, {
|
|
2558
|
+
disabled: boolean;
|
|
2559
|
+
nativeButton: boolean;
|
|
2560
|
+
as: string | vue.Component;
|
|
2561
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2562
|
+
declare const __VLS_export$34: __VLS_WithSlots$31<typeof __VLS_base$31, __VLS_Slots$31>;
|
|
2563
|
+
declare const _default$35: typeof __VLS_export$34;
|
|
2564
|
+
type __VLS_WithSlots$31<T, S> = T & {
|
|
2565
|
+
new (): {
|
|
2566
|
+
$slots: S;
|
|
2567
|
+
};
|
|
2568
|
+
}; //# sourceMappingURL=NumberFieldIncrement.vue.d.ts.map
|
|
2569
|
+
//#endregion
|
|
2570
|
+
//#region src/number-field/input/NumberFieldInput.vue.d.ts
|
|
2571
|
+
type NumberFieldInputState = NumberFieldRootState;
|
|
2572
|
+
interface NumberFieldInputProps extends BaseUIComponentProps<NumberFieldInputState> {}
|
|
2573
|
+
declare var __VLS_1$22: {
|
|
2574
|
+
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
2575
|
+
props: Record<string, any>;
|
|
2576
|
+
state: NumberFieldRootState;
|
|
2577
|
+
};
|
|
2578
|
+
type __VLS_Slots$30 = {} & {
|
|
2579
|
+
default?: (props: typeof __VLS_1$22) => any;
|
|
2580
|
+
};
|
|
2581
|
+
declare const __VLS_base$30: vue.DefineComponent<NumberFieldInputProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<NumberFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2582
|
+
declare const __VLS_export$33: __VLS_WithSlots$30<typeof __VLS_base$30, __VLS_Slots$30>;
|
|
2583
|
+
declare const _default$36: typeof __VLS_export$33;
|
|
2584
|
+
type __VLS_WithSlots$30<T, S> = T & {
|
|
2585
|
+
new (): {
|
|
2586
|
+
$slots: S;
|
|
2587
|
+
};
|
|
2588
|
+
}; //# sourceMappingURL=NumberFieldInput.vue.d.ts.map
|
|
2589
|
+
//#endregion
|
|
2590
|
+
//#region src/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.vue.d.ts
|
|
2591
|
+
type NumberFieldScrubAreaCursorState = NumberFieldRootState;
|
|
2592
|
+
interface NumberFieldScrubAreaCursorProps extends BaseUIComponentProps<NumberFieldScrubAreaCursorState> {}
|
|
2593
|
+
declare var __VLS_7: {
|
|
2594
|
+
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
2595
|
+
props: Record<string, any>;
|
|
2596
|
+
state: NumberFieldRootState;
|
|
2597
|
+
}, __VLS_16$2: {
|
|
2598
|
+
state: NumberFieldRootState;
|
|
2599
|
+
};
|
|
2600
|
+
type __VLS_Slots$29 = {} & {
|
|
2601
|
+
default?: (props: typeof __VLS_7) => any;
|
|
2602
|
+
} & {
|
|
2603
|
+
default?: (props: typeof __VLS_16$2) => any;
|
|
2604
|
+
};
|
|
2605
|
+
declare const __VLS_base$29: vue.DefineComponent<NumberFieldScrubAreaCursorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<NumberFieldScrubAreaCursorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2606
|
+
declare const __VLS_export$32: __VLS_WithSlots$29<typeof __VLS_base$29, __VLS_Slots$29>;
|
|
2607
|
+
declare const _default$39: typeof __VLS_export$32;
|
|
2608
|
+
type __VLS_WithSlots$29<T, S> = T & {
|
|
2609
|
+
new (): {
|
|
2610
|
+
$slots: S;
|
|
2611
|
+
};
|
|
2612
|
+
}; //# sourceMappingURL=NumberFieldScrubAreaCursor.vue.d.ts.map
|
|
2613
|
+
//#endregion
|
|
2614
|
+
//#region src/number-field/scrub-area/NumberFieldScrubArea.vue.d.ts
|
|
2615
|
+
type NumberFieldScrubAreaState = NumberFieldRootState;
|
|
2616
|
+
interface NumberFieldScrubAreaProps extends BaseUIComponentProps<NumberFieldScrubAreaState> {
|
|
2617
|
+
/**
|
|
2618
|
+
* Cursor movement direction in the scrub area.
|
|
2619
|
+
* @default 'horizontal'
|
|
2620
|
+
*/
|
|
2621
|
+
direction?: 'horizontal' | 'vertical';
|
|
2622
|
+
/**
|
|
2623
|
+
* Determines how many pixels the cursor must move before the value changes.
|
|
2624
|
+
* A higher value will make scrubbing less sensitive.
|
|
2625
|
+
* @default 2
|
|
2626
|
+
*/
|
|
2627
|
+
pixelSensitivity?: number;
|
|
2628
|
+
/**
|
|
2629
|
+
* If specified, determines the distance that the cursor may move from the center
|
|
2630
|
+
* of the scrub area before it will loop back around.
|
|
2631
|
+
*/
|
|
2632
|
+
teleportDistance?: number;
|
|
2633
|
+
}
|
|
2634
|
+
declare var __VLS_1$21: {
|
|
2635
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2636
|
+
props: Record<string, any>;
|
|
2637
|
+
state: NumberFieldRootState;
|
|
2638
|
+
}, __VLS_10$18: {
|
|
2639
|
+
state: NumberFieldRootState;
|
|
2640
|
+
};
|
|
2641
|
+
type __VLS_Slots$28 = {} & {
|
|
2642
|
+
default?: (props: typeof __VLS_1$21) => any;
|
|
2643
|
+
} & {
|
|
2644
|
+
default?: (props: typeof __VLS_10$18) => any;
|
|
2645
|
+
};
|
|
2646
|
+
declare const __VLS_base$28: vue.DefineComponent<NumberFieldScrubAreaProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<NumberFieldScrubAreaProps> & Readonly<{}>, {
|
|
2647
|
+
as: string | vue.Component;
|
|
2648
|
+
direction: "horizontal" | "vertical";
|
|
2649
|
+
pixelSensitivity: number;
|
|
2650
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2651
|
+
declare const __VLS_export$31: __VLS_WithSlots$28<typeof __VLS_base$28, __VLS_Slots$28>;
|
|
2652
|
+
declare const _default$38: typeof __VLS_export$31;
|
|
2653
|
+
type __VLS_WithSlots$28<T, S> = T & {
|
|
2654
|
+
new (): {
|
|
2655
|
+
$slots: S;
|
|
2656
|
+
};
|
|
2657
|
+
}; //# sourceMappingURL=NumberFieldScrubArea.vue.d.ts.map
|
|
2658
|
+
//#endregion
|
|
2659
|
+
//#region src/number-field/scrub-area/NumberFieldScrubAreaContext.d.ts
|
|
2660
|
+
interface NumberFieldScrubAreaContext {
|
|
2661
|
+
isScrubbing: Readonly<Ref<boolean>>;
|
|
2662
|
+
isTouchInput: Readonly<Ref<boolean>>;
|
|
2663
|
+
isPointerLockDenied: Readonly<Ref<boolean>>;
|
|
2664
|
+
scrubAreaCursorRef: Ref<HTMLElement | null>;
|
|
2665
|
+
scrubAreaRef: Ref<HTMLElement | null>;
|
|
2666
|
+
direction: ComputedRef<'horizontal' | 'vertical'>;
|
|
2667
|
+
pixelSensitivity: ComputedRef<number>;
|
|
2668
|
+
teleportDistance: ComputedRef<number | undefined>;
|
|
2669
|
+
}
|
|
2670
|
+
declare const numberFieldScrubAreaContextKey: InjectionKey<NumberFieldScrubAreaContext>;
|
|
2671
|
+
declare function useNumberFieldScrubAreaContext(): NumberFieldScrubAreaContext;
|
|
2672
|
+
//#endregion
|
|
2673
|
+
//#region src/otp-field/utils/otp.d.ts
|
|
2674
|
+
type OtpValidationType = 'numeric' | 'alpha' | 'alphanumeric' | 'none';
|
|
2675
|
+
//#endregion
|
|
2676
|
+
//#region src/otp-field/root/OtpFieldRootContext.d.ts
|
|
2677
|
+
type OtpFieldRootChangeEventReason = typeof REASONS.inputChange | typeof REASONS.inputClear | typeof REASONS.inputPaste | typeof REASONS.keyboard;
|
|
2678
|
+
type OtpFieldRootChangeEventDetails = BaseUIChangeEventDetails<OtpFieldRootChangeEventReason>;
|
|
2679
|
+
type OtpFieldRootInvalidEventReason = typeof REASONS.inputChange | typeof REASONS.inputPaste;
|
|
2680
|
+
type OtpFieldRootInvalidEventDetails = BaseUIGenericEventDetails<OtpFieldRootInvalidEventReason>;
|
|
2681
|
+
type OtpFieldRootCompleteEventReason = typeof REASONS.inputChange | typeof REASONS.inputPaste;
|
|
2682
|
+
type OtpFieldRootCompleteEventDetails = BaseUIGenericEventDetails<OtpFieldRootCompleteEventReason>;
|
|
2683
|
+
interface OtpFieldRootContext {
|
|
2684
|
+
activeIndex: ComputedRef<number>;
|
|
2685
|
+
autoComplete: ComputedRef<string | undefined>;
|
|
2686
|
+
disabled: ComputedRef<boolean>;
|
|
2687
|
+
form: ComputedRef<string | undefined>;
|
|
2688
|
+
focusInput: (index: number) => void;
|
|
2689
|
+
queueFocusInput: (index: number, value: string) => void;
|
|
2690
|
+
getInputId: (index: number) => string | undefined;
|
|
2691
|
+
handleInputBlur: (event: FocusEvent) => void;
|
|
2692
|
+
handleInputFocus: (index: number, event: FocusEvent) => void;
|
|
2693
|
+
inputMode: ComputedRef<string | undefined>;
|
|
2694
|
+
inputAriaLabelledBy: ComputedRef<string | undefined>;
|
|
2695
|
+
invalid: Readonly<Ref<boolean | undefined>>;
|
|
2696
|
+
length: ComputedRef<number>;
|
|
2697
|
+
mask: ComputedRef<boolean>;
|
|
2698
|
+
pattern: ComputedRef<string | undefined>;
|
|
2699
|
+
reportValueInvalid: (value: string, details: OtpFieldRootInvalidEventDetails) => void;
|
|
2700
|
+
readOnly: ComputedRef<boolean>;
|
|
2701
|
+
required: ComputedRef<boolean>;
|
|
2702
|
+
normalizeValue: ComputedRef<((value: string) => string) | undefined>;
|
|
2703
|
+
setValue: (value: string, details: OtpFieldRootChangeEventDetails) => string | null;
|
|
2704
|
+
state: ComputedRef<OtpFieldRootState>;
|
|
2705
|
+
validationType: ComputedRef<OtpValidationType>;
|
|
2706
|
+
value: ComputedRef<string>;
|
|
2707
|
+
}
|
|
2708
|
+
declare const otpFieldRootContextKey: InjectionKey<OtpFieldRootContext>;
|
|
2709
|
+
declare function useOtpFieldRootContext(): OtpFieldRootContext;
|
|
2710
|
+
declare function getOtpFieldInputState(state: OtpFieldRootState, value: string, index: number): OtpFieldInputState;
|
|
2711
|
+
//#endregion
|
|
2712
|
+
//#region src/otp-field/root/OtpFieldRoot.vue.d.ts
|
|
2713
|
+
interface OtpFieldRootState extends FieldRootState {
|
|
2714
|
+
/**
|
|
2715
|
+
* Whether all slots are filled.
|
|
2716
|
+
*/
|
|
2717
|
+
complete: boolean;
|
|
2718
|
+
/**
|
|
2719
|
+
* Whether the component should ignore user interaction.
|
|
2720
|
+
*/
|
|
2721
|
+
disabled: boolean;
|
|
2722
|
+
/**
|
|
2723
|
+
* The number of OTP input slots.
|
|
2724
|
+
*/
|
|
2725
|
+
length: number;
|
|
2726
|
+
/**
|
|
2727
|
+
* Whether the user should be unable to change the field value.
|
|
2728
|
+
*/
|
|
2729
|
+
readOnly: boolean;
|
|
2730
|
+
/**
|
|
2731
|
+
* Whether the user must enter a value before submitting a form.
|
|
2732
|
+
*/
|
|
2733
|
+
required: boolean;
|
|
2734
|
+
/**
|
|
2735
|
+
* The OTP value.
|
|
2736
|
+
*/
|
|
2737
|
+
value: string;
|
|
2738
|
+
}
|
|
2739
|
+
interface OtpFieldRootProps extends BaseUIComponentProps<OtpFieldRootState> {
|
|
2740
|
+
/**
|
|
2741
|
+
* The id of the first input element.
|
|
2742
|
+
* Subsequent inputs derive their ids from it (`{id}-2`, `{id}-3`, and so on).
|
|
2743
|
+
*/
|
|
2744
|
+
id?: string;
|
|
2745
|
+
/**
|
|
2746
|
+
* The input autocomplete attribute. Applied to the first slot and hidden validation input.
|
|
2747
|
+
* @default 'one-time-code'
|
|
2748
|
+
*/
|
|
2749
|
+
autoComplete?: string;
|
|
2750
|
+
/**
|
|
2751
|
+
* A string specifying the `form` element with which the hidden input is associated.
|
|
2752
|
+
* This string's value must match the id of a `form` element in the same document.
|
|
2753
|
+
*/
|
|
2754
|
+
form?: string;
|
|
2755
|
+
/**
|
|
2756
|
+
* The number of OTP input slots.
|
|
2757
|
+
* Required so the root can clamp values, detect completion, and generate
|
|
2758
|
+
* consistent validation markup before all slots hydrate.
|
|
2759
|
+
*/
|
|
2760
|
+
length: number;
|
|
2761
|
+
/**
|
|
2762
|
+
* Whether to submit the owning form when the OTP becomes complete.
|
|
2763
|
+
* @default false
|
|
2764
|
+
*/
|
|
2765
|
+
autoSubmit?: boolean;
|
|
2766
|
+
/**
|
|
2767
|
+
* Whether the slot inputs should mask entered characters.
|
|
2768
|
+
* Pass `type` directly to individual `OtpFieldInput` parts to use a custom input type.
|
|
2769
|
+
* @default false
|
|
2770
|
+
*/
|
|
2771
|
+
mask?: boolean;
|
|
2772
|
+
/**
|
|
2773
|
+
* The virtual keyboard hint applied to the slot inputs and hidden validation input.
|
|
2774
|
+
*/
|
|
2775
|
+
inputMode?: string;
|
|
2776
|
+
/**
|
|
2777
|
+
* The type of input validation to apply to the OTP value.
|
|
2778
|
+
* @default 'numeric'
|
|
2779
|
+
*/
|
|
2780
|
+
validationType?: OtpValidationType;
|
|
2781
|
+
/**
|
|
2782
|
+
* Function that normalizes the OTP value after whitespace and `validationType` filtering.
|
|
2783
|
+
* It should be idempotent because OtpField may normalize the same value more than once.
|
|
2784
|
+
*/
|
|
2785
|
+
normalizeValue?: (value: string) => string;
|
|
2786
|
+
/**
|
|
2787
|
+
* Whether the user must enter a value before submitting a form.
|
|
2788
|
+
* @default false
|
|
2789
|
+
*/
|
|
2790
|
+
required?: boolean;
|
|
2791
|
+
/**
|
|
2792
|
+
* Whether the component should ignore user interaction.
|
|
2793
|
+
* @default false
|
|
2794
|
+
*/
|
|
2795
|
+
disabled?: boolean;
|
|
2796
|
+
/**
|
|
2797
|
+
* Whether the user should be unable to change the field value.
|
|
2798
|
+
* @default false
|
|
2799
|
+
*/
|
|
2800
|
+
readOnly?: boolean;
|
|
2801
|
+
/**
|
|
2802
|
+
* Identifies the field when a form is submitted.
|
|
2803
|
+
*/
|
|
2804
|
+
name?: string;
|
|
2805
|
+
/**
|
|
2806
|
+
* The OTP value.
|
|
2807
|
+
*/
|
|
2808
|
+
value?: string;
|
|
2809
|
+
/**
|
|
2810
|
+
* The uncontrolled OTP value when the component is initially rendered.
|
|
2811
|
+
*/
|
|
2812
|
+
defaultValue?: string;
|
|
2813
|
+
}
|
|
2814
|
+
declare var __VLS_8$4: {
|
|
2815
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2816
|
+
props: Record<string, any>;
|
|
2817
|
+
state: OtpFieldRootState;
|
|
2818
|
+
}, __VLS_16$1: {
|
|
2819
|
+
state: OtpFieldRootState;
|
|
2820
|
+
};
|
|
2821
|
+
type __VLS_Slots$27 = {} & {
|
|
2822
|
+
default?: (props: typeof __VLS_8$4) => any;
|
|
2823
|
+
} & {
|
|
2824
|
+
default?: (props: typeof __VLS_16$1) => any;
|
|
2825
|
+
};
|
|
2826
|
+
declare const __VLS_base$27: vue.DefineComponent<OtpFieldRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2827
|
+
valueChange: (value: string, eventDetails: OtpFieldRootChangeEventDetails) => any;
|
|
2828
|
+
valueInvalid: (value: string, eventDetails: OtpFieldRootInvalidEventDetails) => any;
|
|
2829
|
+
valueComplete: (value: string, eventDetails: OtpFieldRootCompleteEventDetails) => any;
|
|
2830
|
+
}, string, vue.PublicProps, Readonly<OtpFieldRootProps> & Readonly<{
|
|
2831
|
+
onValueChange?: ((value: string, eventDetails: OtpFieldRootChangeEventDetails) => any) | undefined;
|
|
2832
|
+
onValueInvalid?: ((value: string, eventDetails: OtpFieldRootInvalidEventDetails) => any) | undefined;
|
|
2833
|
+
onValueComplete?: ((value: string, eventDetails: OtpFieldRootCompleteEventDetails) => any) | undefined;
|
|
2834
|
+
}>, {
|
|
2835
|
+
disabled: boolean;
|
|
2836
|
+
readOnly: boolean;
|
|
2837
|
+
required: boolean;
|
|
2838
|
+
as: string | vue.Component;
|
|
2839
|
+
mask: boolean;
|
|
2840
|
+
autoComplete: string;
|
|
2841
|
+
autoSubmit: boolean;
|
|
2842
|
+
validationType: OtpValidationType;
|
|
2843
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2844
|
+
declare const __VLS_export$30: __VLS_WithSlots$27<typeof __VLS_base$27, __VLS_Slots$27>;
|
|
2845
|
+
declare const _default$41: typeof __VLS_export$30;
|
|
2846
|
+
type __VLS_WithSlots$27<T, S> = T & {
|
|
2847
|
+
new (): {
|
|
2848
|
+
$slots: S;
|
|
2849
|
+
};
|
|
2850
|
+
}; //# sourceMappingURL=OtpFieldRoot.vue.d.ts.map
|
|
2851
|
+
//#endregion
|
|
2852
|
+
//#region src/otp-field/input/OtpFieldInput.vue.d.ts
|
|
2853
|
+
interface OtpFieldInputState extends Omit<OtpFieldRootState, 'filled' | 'value'> {
|
|
2854
|
+
/**
|
|
2855
|
+
* Whether this input contains a character.
|
|
2856
|
+
*/
|
|
2857
|
+
filled: boolean;
|
|
2858
|
+
/**
|
|
2859
|
+
* The input index.
|
|
2860
|
+
*/
|
|
2861
|
+
index: number;
|
|
2862
|
+
/**
|
|
2863
|
+
* The character rendered in this slot.
|
|
2864
|
+
*/
|
|
2865
|
+
value: string;
|
|
2866
|
+
}
|
|
2867
|
+
interface OtpFieldInputProps extends BaseUIComponentProps<OtpFieldInputState> {}
|
|
2868
|
+
declare var __VLS_1$20: {
|
|
2869
|
+
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
2870
|
+
props: Record<string, any>;
|
|
2871
|
+
state: OtpFieldInputState;
|
|
2872
|
+
};
|
|
2873
|
+
type __VLS_Slots$26 = {} & {
|
|
2874
|
+
default?: (props: typeof __VLS_1$20) => any;
|
|
2875
|
+
};
|
|
2876
|
+
declare const __VLS_base$26: vue.DefineComponent<OtpFieldInputProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<OtpFieldInputProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2877
|
+
declare const __VLS_export$29: __VLS_WithSlots$26<typeof __VLS_base$26, __VLS_Slots$26>;
|
|
2878
|
+
declare const _default$40: typeof __VLS_export$29;
|
|
2879
|
+
type __VLS_WithSlots$26<T, S> = T & {
|
|
2880
|
+
new (): {
|
|
2881
|
+
$slots: S;
|
|
2882
|
+
};
|
|
2883
|
+
}; //# sourceMappingURL=OtpFieldInput.vue.d.ts.map
|
|
2884
|
+
//#endregion
|
|
2885
|
+
//#region src/progress/root/ProgressRoot.vue.d.ts
|
|
2886
|
+
type ProgressStatus = 'indeterminate' | 'progressing' | 'complete';
|
|
2887
|
+
interface ProgressRootState {
|
|
2888
|
+
/**
|
|
2889
|
+
* The current status.
|
|
2890
|
+
*/
|
|
2891
|
+
status: ProgressStatus;
|
|
2892
|
+
}
|
|
2893
|
+
interface ProgressRootProps extends BaseUIComponentProps<ProgressRootState> {
|
|
2894
|
+
/**
|
|
2895
|
+
* A string value that provides a user-friendly name for `aria-valuenow`.
|
|
2896
|
+
* Takes precedence over `getAriaValueText`.
|
|
2897
|
+
*/
|
|
2898
|
+
ariaValuetext?: string;
|
|
2899
|
+
/**
|
|
2900
|
+
* Options to format the value.
|
|
2901
|
+
*/
|
|
2902
|
+
format?: Intl.NumberFormatOptions;
|
|
2903
|
+
/**
|
|
2904
|
+
* A function that returns a string value for `aria-valuetext`.
|
|
2905
|
+
* Receives the formatted value (or `null` when indeterminate) and the raw
|
|
2906
|
+
* value.
|
|
2907
|
+
*/
|
|
2908
|
+
getAriaValueText?: (formattedValue: string | null, value: number | null) => string;
|
|
2909
|
+
/**
|
|
2910
|
+
* The locale used by `Intl.NumberFormat` when formatting the value.
|
|
2911
|
+
* Defaults to the user's runtime locale.
|
|
2912
|
+
*/
|
|
2913
|
+
locale?: Intl.LocalesArgument;
|
|
2914
|
+
/**
|
|
2915
|
+
* The maximum value.
|
|
2916
|
+
* @default 100
|
|
2917
|
+
*/
|
|
2918
|
+
max?: number;
|
|
2919
|
+
/**
|
|
2920
|
+
* The minimum value.
|
|
2921
|
+
* @default 0
|
|
2922
|
+
*/
|
|
2923
|
+
min?: number;
|
|
2924
|
+
/**
|
|
2925
|
+
* The current value. The component is indeterminate when value is `null`.
|
|
2926
|
+
* @default null
|
|
2927
|
+
*/
|
|
2928
|
+
value: number | null;
|
|
2929
|
+
}
|
|
2930
|
+
declare var __VLS_1$19: {
|
|
2931
|
+
props: Record<string, any>;
|
|
2932
|
+
state: ProgressRootState;
|
|
2933
|
+
}, __VLS_10$17: {
|
|
2934
|
+
state: ProgressRootState;
|
|
2935
|
+
};
|
|
2936
|
+
type __VLS_Slots$25 = {} & {
|
|
2937
|
+
default?: (props: typeof __VLS_1$19) => any;
|
|
2938
|
+
} & {
|
|
2939
|
+
default?: (props: typeof __VLS_10$17) => any;
|
|
2940
|
+
};
|
|
2941
|
+
declare const __VLS_base$25: vue.DefineComponent<ProgressRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressRootProps> & Readonly<{}>, {
|
|
2942
|
+
as: string | vue.Component;
|
|
2943
|
+
min: number;
|
|
2944
|
+
max: number;
|
|
2945
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2946
|
+
declare const __VLS_export$28: __VLS_WithSlots$25<typeof __VLS_base$25, __VLS_Slots$25>;
|
|
2947
|
+
declare const _default$44: typeof __VLS_export$28;
|
|
2948
|
+
type __VLS_WithSlots$25<T, S> = T & {
|
|
2949
|
+
new (): {
|
|
2950
|
+
$slots: S;
|
|
2951
|
+
};
|
|
2952
|
+
}; //# sourceMappingURL=ProgressRoot.vue.d.ts.map
|
|
2953
|
+
//#endregion
|
|
2954
|
+
//#region src/progress/indicator/ProgressIndicator.vue.d.ts
|
|
2955
|
+
interface ProgressIndicatorState extends ProgressRootState {}
|
|
2956
|
+
interface ProgressIndicatorProps extends BaseUIComponentProps<ProgressIndicatorState> {}
|
|
2957
|
+
declare var __VLS_1$18: {
|
|
2958
|
+
props: Record<string, any>;
|
|
2959
|
+
state: ProgressRootState;
|
|
2960
|
+
}, __VLS_10$16: {
|
|
2961
|
+
state: ProgressRootState;
|
|
2962
|
+
};
|
|
2963
|
+
type __VLS_Slots$24 = {} & {
|
|
2964
|
+
default?: (props: typeof __VLS_1$18) => any;
|
|
2965
|
+
} & {
|
|
2966
|
+
default?: (props: typeof __VLS_10$16) => any;
|
|
2967
|
+
};
|
|
2968
|
+
declare const __VLS_base$24: vue.DefineComponent<ProgressIndicatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressIndicatorProps> & Readonly<{}>, {
|
|
2969
|
+
as: string | vue.Component;
|
|
2970
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2971
|
+
declare const __VLS_export$27: __VLS_WithSlots$24<typeof __VLS_base$24, __VLS_Slots$24>;
|
|
2972
|
+
declare const _default$42: typeof __VLS_export$27;
|
|
2973
|
+
type __VLS_WithSlots$24<T, S> = T & {
|
|
2974
|
+
new (): {
|
|
2975
|
+
$slots: S;
|
|
2976
|
+
};
|
|
2977
|
+
}; //# sourceMappingURL=ProgressIndicator.vue.d.ts.map
|
|
2978
|
+
//#endregion
|
|
2979
|
+
//#region src/progress/label/ProgressLabel.vue.d.ts
|
|
2980
|
+
interface ProgressLabelState extends ProgressRootState {}
|
|
2981
|
+
interface ProgressLabelProps extends BaseUIComponentProps<ProgressLabelState> {
|
|
2982
|
+
/**
|
|
2983
|
+
* The id of the label element. When provided, it overrides the
|
|
2984
|
+
* automatically generated one.
|
|
2985
|
+
*/
|
|
2986
|
+
id?: string;
|
|
2371
2987
|
}
|
|
2372
2988
|
declare var __VLS_1$17: {
|
|
2373
2989
|
props: Record<string, any>;
|
|
@@ -2378,132 +2994,361 @@ declare var __VLS_1$17: {
|
|
|
2378
2994
|
type __VLS_Slots$23 = {} & {
|
|
2379
2995
|
default?: (props: typeof __VLS_1$17) => any;
|
|
2380
2996
|
} & {
|
|
2381
|
-
default?: (props: typeof __VLS_10$15) => any;
|
|
2997
|
+
default?: (props: typeof __VLS_10$15) => any;
|
|
2998
|
+
};
|
|
2999
|
+
declare const __VLS_base$23: vue.DefineComponent<ProgressLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressLabelProps> & Readonly<{}>, {
|
|
3000
|
+
as: string | vue.Component;
|
|
3001
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3002
|
+
declare const __VLS_export$26: __VLS_WithSlots$23<typeof __VLS_base$23, __VLS_Slots$23>;
|
|
3003
|
+
declare const _default$43: typeof __VLS_export$26;
|
|
3004
|
+
type __VLS_WithSlots$23<T, S> = T & {
|
|
3005
|
+
new (): {
|
|
3006
|
+
$slots: S;
|
|
3007
|
+
};
|
|
3008
|
+
}; //# sourceMappingURL=ProgressLabel.vue.d.ts.map
|
|
3009
|
+
//#endregion
|
|
3010
|
+
//#region src/progress/root/ProgressRootContext.d.ts
|
|
3011
|
+
interface ProgressRootContext {
|
|
3012
|
+
/**
|
|
3013
|
+
* The formatted current value of the progress bar.
|
|
3014
|
+
* Empty string when the component is indeterminate.
|
|
3015
|
+
*/
|
|
3016
|
+
formattedValue: Ref<string>;
|
|
3017
|
+
/**
|
|
3018
|
+
* The maximum allowed value of the progress bar.
|
|
3019
|
+
*/
|
|
3020
|
+
max: Ref<number>;
|
|
3021
|
+
/**
|
|
3022
|
+
* The minimum allowed value of the progress bar.
|
|
3023
|
+
*/
|
|
3024
|
+
min: Ref<number>;
|
|
3025
|
+
/**
|
|
3026
|
+
* The raw current value, or `null` when indeterminate.
|
|
3027
|
+
*/
|
|
3028
|
+
value: Ref<number | null>;
|
|
3029
|
+
/**
|
|
3030
|
+
* Derived completion status. Used to produce `data-*` state attributes.
|
|
3031
|
+
*/
|
|
3032
|
+
status: ComputedRef<ProgressStatus>;
|
|
3033
|
+
/**
|
|
3034
|
+
* The state of the root component.
|
|
3035
|
+
*/
|
|
3036
|
+
state: ComputedRef<ProgressRootState>;
|
|
3037
|
+
/**
|
|
3038
|
+
* Registers the DOM id of the `<ProgressLabel>` for `aria-labelledby`.
|
|
3039
|
+
*/
|
|
3040
|
+
setLabelId: (id: string | undefined) => void;
|
|
3041
|
+
}
|
|
3042
|
+
declare const progressRootContextKey: InjectionKey<ProgressRootContext>;
|
|
3043
|
+
declare function useProgressRootContext(optional: true): ProgressRootContext | undefined;
|
|
3044
|
+
declare function useProgressRootContext(optional?: false): ProgressRootContext;
|
|
3045
|
+
//#endregion
|
|
3046
|
+
//#region src/progress/root/ProgressRootDataAttributes.d.ts
|
|
3047
|
+
declare enum ProgressRootDataAttributes {
|
|
3048
|
+
/**
|
|
3049
|
+
* Present when the progress has completed.
|
|
3050
|
+
*/
|
|
3051
|
+
complete = "data-complete",
|
|
3052
|
+
/**
|
|
3053
|
+
* Present when the progress is in indeterminate state.
|
|
3054
|
+
*/
|
|
3055
|
+
indeterminate = "data-indeterminate",
|
|
3056
|
+
/**
|
|
3057
|
+
* Present while the progress is progressing.
|
|
3058
|
+
*/
|
|
3059
|
+
progressing = "data-progressing"
|
|
3060
|
+
}
|
|
3061
|
+
//#endregion
|
|
3062
|
+
//#region src/utils/getStateAttributesProps.d.ts
|
|
3063
|
+
type StateAttributesMapping<State> = { [Property in keyof State]?: (state: State[Property]) => Record<string, string> | null };
|
|
3064
|
+
//#endregion
|
|
3065
|
+
//#region src/progress/root/stateAttributesMapping.d.ts
|
|
3066
|
+
declare const progressStateAttributesMapping: StateAttributesMapping<ProgressRootState>;
|
|
3067
|
+
//#endregion
|
|
3068
|
+
//#region src/progress/track/ProgressTrack.vue.d.ts
|
|
3069
|
+
interface ProgressTrackState extends ProgressRootState {}
|
|
3070
|
+
interface ProgressTrackProps extends BaseUIComponentProps<ProgressTrackState> {}
|
|
3071
|
+
declare var __VLS_1$16: {
|
|
3072
|
+
props: Record<string, any>;
|
|
3073
|
+
state: ProgressRootState;
|
|
3074
|
+
}, __VLS_10$14: {
|
|
3075
|
+
state: ProgressRootState;
|
|
3076
|
+
};
|
|
3077
|
+
type __VLS_Slots$22 = {} & {
|
|
3078
|
+
default?: (props: typeof __VLS_1$16) => any;
|
|
3079
|
+
} & {
|
|
3080
|
+
default?: (props: typeof __VLS_10$14) => any;
|
|
3081
|
+
};
|
|
3082
|
+
declare const __VLS_base$22: vue.DefineComponent<ProgressTrackProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressTrackProps> & Readonly<{}>, {
|
|
3083
|
+
as: string | vue.Component;
|
|
3084
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3085
|
+
declare const __VLS_export$25: __VLS_WithSlots$22<typeof __VLS_base$22, __VLS_Slots$22>;
|
|
3086
|
+
declare const _default$45: typeof __VLS_export$25;
|
|
3087
|
+
type __VLS_WithSlots$22<T, S> = T & {
|
|
3088
|
+
new (): {
|
|
3089
|
+
$slots: S;
|
|
3090
|
+
};
|
|
3091
|
+
}; //# sourceMappingURL=ProgressTrack.vue.d.ts.map
|
|
3092
|
+
//#endregion
|
|
3093
|
+
//#region src/progress/value/ProgressValue.vue.d.ts
|
|
3094
|
+
interface ProgressValueState extends ProgressRootState {}
|
|
3095
|
+
interface ProgressValueProps extends BaseUIComponentProps<ProgressValueState> {}
|
|
3096
|
+
interface ProgressValueSlotProps {
|
|
3097
|
+
/**
|
|
3098
|
+
* Formatted value. `"indeterminate"` when the root value is `null`.
|
|
3099
|
+
*/
|
|
3100
|
+
formattedValue: string | 'indeterminate';
|
|
3101
|
+
/**
|
|
3102
|
+
* Raw numeric value, or `null` when indeterminate.
|
|
3103
|
+
*/
|
|
3104
|
+
value: number | null;
|
|
3105
|
+
}
|
|
3106
|
+
interface ProgressValueRenderlessSlotProps extends ProgressValueSlotProps {
|
|
3107
|
+
props: Record<string, unknown>;
|
|
3108
|
+
state: ProgressValueState;
|
|
3109
|
+
}
|
|
3110
|
+
type __VLS_Slots$21 = {
|
|
3111
|
+
default?: (props: ProgressValueSlotProps | ProgressValueRenderlessSlotProps) => unknown;
|
|
3112
|
+
};
|
|
3113
|
+
declare const __VLS_base$21: vue.DefineComponent<ProgressValueProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressValueProps> & Readonly<{}>, {
|
|
3114
|
+
as: string | vue.Component;
|
|
3115
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3116
|
+
declare const __VLS_export$24: __VLS_WithSlots$21<typeof __VLS_base$21, __VLS_Slots$21>;
|
|
3117
|
+
declare const _default$46: typeof __VLS_export$24;
|
|
3118
|
+
type __VLS_WithSlots$21<T, S> = T & {
|
|
3119
|
+
new (): {
|
|
3120
|
+
$slots: S;
|
|
3121
|
+
};
|
|
3122
|
+
}; //# sourceMappingURL=ProgressValue.vue.d.ts.map
|
|
3123
|
+
//#endregion
|
|
3124
|
+
//#region src/scroll-area/root/ScrollAreaRootContext.d.ts
|
|
3125
|
+
interface ScrollAreaRootState {
|
|
3126
|
+
scrolling: boolean;
|
|
3127
|
+
hasOverflowX: boolean;
|
|
3128
|
+
hasOverflowY: boolean;
|
|
3129
|
+
overflowXStart: boolean;
|
|
3130
|
+
overflowXEnd: boolean;
|
|
3131
|
+
overflowYStart: boolean;
|
|
3132
|
+
overflowYEnd: boolean;
|
|
3133
|
+
cornerHidden: boolean;
|
|
3134
|
+
}
|
|
3135
|
+
//#endregion
|
|
3136
|
+
//#region src/scroll-area/content/ScrollAreaContent.vue.d.ts
|
|
3137
|
+
type ScrollAreaContentState = ScrollAreaRootState;
|
|
3138
|
+
interface ScrollAreaContentProps extends BaseUIComponentProps<ScrollAreaContentState> {}
|
|
3139
|
+
declare var __VLS_1$15: {
|
|
3140
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3141
|
+
props: Record<string, any>;
|
|
3142
|
+
state: ScrollAreaRootState;
|
|
3143
|
+
}, __VLS_10$13: {};
|
|
3144
|
+
type __VLS_Slots$20 = {} & {
|
|
3145
|
+
default?: (props: typeof __VLS_1$15) => any;
|
|
3146
|
+
} & {
|
|
3147
|
+
default?: (props: typeof __VLS_10$13) => any;
|
|
3148
|
+
};
|
|
3149
|
+
declare const __VLS_base$20: vue.DefineComponent<ScrollAreaContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaContentProps> & Readonly<{}>, {
|
|
3150
|
+
as: string | vue.Component;
|
|
3151
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3152
|
+
declare const __VLS_export$23: __VLS_WithSlots$20<typeof __VLS_base$20, __VLS_Slots$20>;
|
|
3153
|
+
declare const _default$47: typeof __VLS_export$23;
|
|
3154
|
+
type __VLS_WithSlots$20<T, S> = T & {
|
|
3155
|
+
new (): {
|
|
3156
|
+
$slots: S;
|
|
3157
|
+
};
|
|
3158
|
+
}; //# sourceMappingURL=ScrollAreaContent.vue.d.ts.map
|
|
3159
|
+
//#endregion
|
|
3160
|
+
//#region src/scroll-area/corner/ScrollAreaCorner.vue.d.ts
|
|
3161
|
+
interface ScrollAreaCornerState {}
|
|
3162
|
+
interface ScrollAreaCornerProps extends BaseUIComponentProps<ScrollAreaCornerState> {}
|
|
3163
|
+
declare var __VLS_1$14: {
|
|
3164
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3165
|
+
props: Record<string, any>;
|
|
3166
|
+
state: ScrollAreaCornerState;
|
|
3167
|
+
};
|
|
3168
|
+
type __VLS_Slots$19 = {} & {
|
|
3169
|
+
default?: (props: typeof __VLS_1$14) => any;
|
|
3170
|
+
};
|
|
3171
|
+
declare const __VLS_base$19: vue.DefineComponent<ScrollAreaCornerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaCornerProps> & Readonly<{}>, {
|
|
3172
|
+
as: string | vue.Component;
|
|
3173
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3174
|
+
declare const __VLS_export$22: __VLS_WithSlots$19<typeof __VLS_base$19, __VLS_Slots$19>;
|
|
3175
|
+
declare const _default$48: typeof __VLS_export$22;
|
|
3176
|
+
type __VLS_WithSlots$19<T, S> = T & {
|
|
3177
|
+
new (): {
|
|
3178
|
+
$slots: S;
|
|
3179
|
+
};
|
|
3180
|
+
}; //# sourceMappingURL=ScrollAreaCorner.vue.d.ts.map
|
|
3181
|
+
//#endregion
|
|
3182
|
+
//#region src/scroll-area/root/ScrollAreaRoot.vue.d.ts
|
|
3183
|
+
interface ScrollAreaRootProps extends BaseUIComponentProps<ScrollAreaRootState> {
|
|
3184
|
+
overflowEdgeThreshold?: number | Partial<{
|
|
3185
|
+
xStart: number;
|
|
3186
|
+
xEnd: number;
|
|
3187
|
+
yStart: number;
|
|
3188
|
+
yEnd: number;
|
|
3189
|
+
}>;
|
|
3190
|
+
}
|
|
3191
|
+
declare var __VLS_1$13: {
|
|
3192
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3193
|
+
props: Record<string, any>;
|
|
3194
|
+
state: ScrollAreaRootState;
|
|
3195
|
+
}, __VLS_10$12: {};
|
|
3196
|
+
type __VLS_Slots$18 = {} & {
|
|
3197
|
+
default?: (props: typeof __VLS_1$13) => any;
|
|
3198
|
+
} & {
|
|
3199
|
+
default?: (props: typeof __VLS_10$12) => any;
|
|
3200
|
+
};
|
|
3201
|
+
declare const __VLS_base$18: vue.DefineComponent<ScrollAreaRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaRootProps> & Readonly<{}>, {
|
|
3202
|
+
as: string | vue.Component;
|
|
3203
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3204
|
+
declare const __VLS_export$21: __VLS_WithSlots$18<typeof __VLS_base$18, __VLS_Slots$18>;
|
|
3205
|
+
declare const _default$49: typeof __VLS_export$21;
|
|
3206
|
+
type __VLS_WithSlots$18<T, S> = T & {
|
|
3207
|
+
new (): {
|
|
3208
|
+
$slots: S;
|
|
3209
|
+
};
|
|
3210
|
+
}; //# sourceMappingURL=ScrollAreaRoot.vue.d.ts.map
|
|
3211
|
+
//#endregion
|
|
3212
|
+
//#region src/scroll-area/root/ScrollAreaRootCssVars.d.ts
|
|
3213
|
+
declare enum ScrollAreaRootCssVars {
|
|
3214
|
+
scrollAreaCornerHeight = "--scroll-area-corner-height",
|
|
3215
|
+
scrollAreaCornerWidth = "--scroll-area-corner-width"
|
|
3216
|
+
}
|
|
3217
|
+
//#endregion
|
|
3218
|
+
//#region src/scroll-area/root/ScrollAreaRootDataAttributes.d.ts
|
|
3219
|
+
declare enum ScrollAreaRootDataAttributes {
|
|
3220
|
+
scrolling = "data-scrolling",
|
|
3221
|
+
hasOverflowX = "data-has-overflow-x",
|
|
3222
|
+
hasOverflowY = "data-has-overflow-y",
|
|
3223
|
+
overflowXStart = "data-overflow-x-start",
|
|
3224
|
+
overflowXEnd = "data-overflow-x-end",
|
|
3225
|
+
overflowYStart = "data-overflow-y-start",
|
|
3226
|
+
overflowYEnd = "data-overflow-y-end"
|
|
3227
|
+
}
|
|
3228
|
+
//#endregion
|
|
3229
|
+
//#region src/scroll-area/scrollbar/ScrollAreaScrollbar.vue.d.ts
|
|
3230
|
+
interface ScrollAreaScrollbarState extends ScrollAreaRootState {
|
|
3231
|
+
hovering: boolean;
|
|
3232
|
+
scrolling: boolean;
|
|
3233
|
+
orientation: 'vertical' | 'horizontal';
|
|
3234
|
+
}
|
|
3235
|
+
interface ScrollAreaScrollbarProps extends BaseUIComponentProps<ScrollAreaScrollbarState> {
|
|
3236
|
+
orientation?: 'vertical' | 'horizontal';
|
|
3237
|
+
keepMounted?: boolean;
|
|
3238
|
+
}
|
|
3239
|
+
declare var __VLS_1$12: {
|
|
3240
|
+
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
3241
|
+
props: Record<string, any>;
|
|
3242
|
+
state: ScrollAreaScrollbarState;
|
|
3243
|
+
}, __VLS_10$11: {};
|
|
3244
|
+
type __VLS_Slots$17 = {} & {
|
|
3245
|
+
default?: (props: typeof __VLS_1$12) => any;
|
|
3246
|
+
} & {
|
|
3247
|
+
default?: (props: typeof __VLS_10$11) => any;
|
|
2382
3248
|
};
|
|
2383
|
-
declare const __VLS_base$
|
|
3249
|
+
declare const __VLS_base$17: vue.DefineComponent<ScrollAreaScrollbarProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaScrollbarProps> & Readonly<{}>, {
|
|
2384
3250
|
as: string | vue.Component;
|
|
3251
|
+
keepMounted: boolean;
|
|
3252
|
+
orientation: "vertical" | "horizontal";
|
|
2385
3253
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2386
|
-
declare const __VLS_export$
|
|
2387
|
-
declare const _default$
|
|
2388
|
-
type __VLS_WithSlots$
|
|
3254
|
+
declare const __VLS_export$20: __VLS_WithSlots$17<typeof __VLS_base$17, __VLS_Slots$17>;
|
|
3255
|
+
declare const _default$50: typeof __VLS_export$20;
|
|
3256
|
+
type __VLS_WithSlots$17<T, S> = T & {
|
|
2389
3257
|
new (): {
|
|
2390
3258
|
$slots: S;
|
|
2391
3259
|
};
|
|
2392
|
-
}; //# sourceMappingURL=
|
|
3260
|
+
}; //# sourceMappingURL=ScrollAreaScrollbar.vue.d.ts.map
|
|
2393
3261
|
//#endregion
|
|
2394
|
-
//#region src/
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
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;
|
|
3262
|
+
//#region src/scroll-area/scrollbar/ScrollAreaScrollbarCssVars.d.ts
|
|
3263
|
+
declare enum ScrollAreaScrollbarCssVars {
|
|
3264
|
+
scrollAreaThumbHeight = "--scroll-area-thumb-height",
|
|
3265
|
+
scrollAreaThumbWidth = "--scroll-area-thumb-width"
|
|
2425
3266
|
}
|
|
2426
|
-
declare const progressRootContextKey: InjectionKey<ProgressRootContext>;
|
|
2427
|
-
declare function useProgressRootContext(optional: true): ProgressRootContext | undefined;
|
|
2428
|
-
declare function useProgressRootContext(optional?: false): ProgressRootContext;
|
|
2429
3267
|
//#endregion
|
|
2430
|
-
//#region src/
|
|
2431
|
-
declare enum
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
* Present while the progress is progressing.
|
|
2442
|
-
*/
|
|
2443
|
-
progressing = "data-progressing"
|
|
3268
|
+
//#region src/scroll-area/scrollbar/ScrollAreaScrollbarDataAttributes.d.ts
|
|
3269
|
+
declare enum ScrollAreaScrollbarDataAttributes {
|
|
3270
|
+
orientation = "data-orientation",
|
|
3271
|
+
hovering = "data-hovering",
|
|
3272
|
+
scrolling = "data-scrolling",
|
|
3273
|
+
hasOverflowX = "data-has-overflow-x",
|
|
3274
|
+
hasOverflowY = "data-has-overflow-y",
|
|
3275
|
+
overflowXStart = "data-overflow-x-start",
|
|
3276
|
+
overflowXEnd = "data-overflow-x-end",
|
|
3277
|
+
overflowYStart = "data-overflow-y-start",
|
|
3278
|
+
overflowYEnd = "data-overflow-y-end"
|
|
2444
3279
|
}
|
|
2445
3280
|
//#endregion
|
|
2446
|
-
//#region src/
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
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;
|
|
3281
|
+
//#region src/scroll-area/thumb/ScrollAreaThumb.vue.d.ts
|
|
3282
|
+
interface ScrollAreaThumbState {
|
|
3283
|
+
orientation?: 'horizontal' | 'vertical';
|
|
3284
|
+
}
|
|
3285
|
+
interface ScrollAreaThumbProps extends BaseUIComponentProps<ScrollAreaThumbState> {}
|
|
3286
|
+
declare var __VLS_1$11: {
|
|
3287
|
+
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
3288
|
+
props: Record<string, any>;
|
|
3289
|
+
state: ScrollAreaThumbState;
|
|
2465
3290
|
};
|
|
2466
|
-
|
|
3291
|
+
type __VLS_Slots$16 = {} & {
|
|
3292
|
+
default?: (props: typeof __VLS_1$11) => any;
|
|
3293
|
+
};
|
|
3294
|
+
declare const __VLS_base$16: vue.DefineComponent<ScrollAreaThumbProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaThumbProps> & Readonly<{}>, {
|
|
2467
3295
|
as: string | vue.Component;
|
|
2468
3296
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2469
|
-
declare const __VLS_export$
|
|
2470
|
-
declare const _default$
|
|
2471
|
-
type __VLS_WithSlots$
|
|
3297
|
+
declare const __VLS_export$19: __VLS_WithSlots$16<typeof __VLS_base$16, __VLS_Slots$16>;
|
|
3298
|
+
declare const _default$51: typeof __VLS_export$19;
|
|
3299
|
+
type __VLS_WithSlots$16<T, S> = T & {
|
|
2472
3300
|
new (): {
|
|
2473
3301
|
$slots: S;
|
|
2474
3302
|
};
|
|
2475
|
-
}; //# sourceMappingURL=
|
|
3303
|
+
}; //# sourceMappingURL=ScrollAreaThumb.vue.d.ts.map
|
|
2476
3304
|
//#endregion
|
|
2477
|
-
//#region src/
|
|
2478
|
-
|
|
2479
|
-
|
|
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;
|
|
3305
|
+
//#region src/scroll-area/thumb/ScrollAreaThumbDataAttributes.d.ts
|
|
3306
|
+
declare enum ScrollAreaThumbDataAttributes {
|
|
3307
|
+
orientation = "data-orientation"
|
|
2493
3308
|
}
|
|
2494
|
-
|
|
2495
|
-
|
|
3309
|
+
//#endregion
|
|
3310
|
+
//#region src/scroll-area/viewport/ScrollAreaViewport.vue.d.ts
|
|
3311
|
+
type ScrollAreaViewportState = ScrollAreaRootState;
|
|
3312
|
+
interface ScrollAreaViewportProps extends BaseUIComponentProps<ScrollAreaViewportState> {}
|
|
3313
|
+
declare var __VLS_1$10: {
|
|
3314
|
+
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3315
|
+
props: Record<string, any>;
|
|
3316
|
+
state: ScrollAreaRootState;
|
|
3317
|
+
}, __VLS_10$10: {};
|
|
3318
|
+
type __VLS_Slots$15 = {} & {
|
|
3319
|
+
default?: (props: typeof __VLS_1$10) => any;
|
|
3320
|
+
} & {
|
|
3321
|
+
default?: (props: typeof __VLS_10$10) => any;
|
|
2496
3322
|
};
|
|
2497
|
-
declare const __VLS_base$
|
|
3323
|
+
declare const __VLS_base$15: vue.DefineComponent<ScrollAreaViewportProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaViewportProps> & Readonly<{}>, {
|
|
2498
3324
|
as: string | vue.Component;
|
|
2499
3325
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2500
|
-
declare const __VLS_export$
|
|
2501
|
-
declare const _default$
|
|
2502
|
-
type __VLS_WithSlots$
|
|
3326
|
+
declare const __VLS_export$18: __VLS_WithSlots$15<typeof __VLS_base$15, __VLS_Slots$15>;
|
|
3327
|
+
declare const _default$52: typeof __VLS_export$18;
|
|
3328
|
+
type __VLS_WithSlots$15<T, S> = T & {
|
|
2503
3329
|
new (): {
|
|
2504
3330
|
$slots: S;
|
|
2505
3331
|
};
|
|
2506
|
-
}; //# sourceMappingURL=
|
|
3332
|
+
}; //# sourceMappingURL=ScrollAreaViewport.vue.d.ts.map
|
|
3333
|
+
//#endregion
|
|
3334
|
+
//#region src/scroll-area/viewport/ScrollAreaViewportCssVars.d.ts
|
|
3335
|
+
declare enum ScrollAreaViewportCssVars {
|
|
3336
|
+
scrollAreaOverflowXStart = "--scroll-area-overflow-x-start",
|
|
3337
|
+
scrollAreaOverflowXEnd = "--scroll-area-overflow-x-end",
|
|
3338
|
+
scrollAreaOverflowYStart = "--scroll-area-overflow-y-start",
|
|
3339
|
+
scrollAreaOverflowYEnd = "--scroll-area-overflow-y-end"
|
|
3340
|
+
}
|
|
3341
|
+
//#endregion
|
|
3342
|
+
//#region src/scroll-area/viewport/ScrollAreaViewportDataAttributes.d.ts
|
|
3343
|
+
declare enum ScrollAreaViewportDataAttributes {
|
|
3344
|
+
scrolling = "data-scrolling",
|
|
3345
|
+
hasOverflowX = "data-has-overflow-x",
|
|
3346
|
+
hasOverflowY = "data-has-overflow-y",
|
|
3347
|
+
overflowXStart = "data-overflow-x-start",
|
|
3348
|
+
overflowXEnd = "data-overflow-x-end",
|
|
3349
|
+
overflowYStart = "data-overflow-y-start",
|
|
3350
|
+
overflowYEnd = "data-overflow-y-end"
|
|
3351
|
+
}
|
|
2507
3352
|
//#endregion
|
|
2508
3353
|
//#region src/separator/Separator.vue.d.ts
|
|
2509
3354
|
interface SeparatorState {
|
|
@@ -2519,25 +3364,25 @@ interface SeparatorProps extends BaseUIComponentProps<SeparatorState> {
|
|
|
2519
3364
|
*/
|
|
2520
3365
|
orientation?: Orientation;
|
|
2521
3366
|
}
|
|
2522
|
-
declare var __VLS_1$
|
|
3367
|
+
declare var __VLS_1$9: {
|
|
2523
3368
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2524
3369
|
props: Record<string, any>;
|
|
2525
3370
|
state: SeparatorState;
|
|
2526
|
-
}, __VLS_10$
|
|
3371
|
+
}, __VLS_10$9: {
|
|
2527
3372
|
state: SeparatorState;
|
|
2528
3373
|
};
|
|
2529
|
-
type __VLS_Slots$
|
|
2530
|
-
default?: (props: typeof __VLS_1$
|
|
3374
|
+
type __VLS_Slots$14 = {} & {
|
|
3375
|
+
default?: (props: typeof __VLS_1$9) => any;
|
|
2531
3376
|
} & {
|
|
2532
|
-
default?: (props: typeof __VLS_10$
|
|
3377
|
+
default?: (props: typeof __VLS_10$9) => any;
|
|
2533
3378
|
};
|
|
2534
|
-
declare const __VLS_base$
|
|
3379
|
+
declare const __VLS_base$14: vue.DefineComponent<SeparatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SeparatorProps> & Readonly<{}>, {
|
|
2535
3380
|
as: string | vue.Component;
|
|
2536
3381
|
orientation: Orientation;
|
|
2537
3382
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2538
|
-
declare const __VLS_export$
|
|
2539
|
-
declare const _default$
|
|
2540
|
-
type __VLS_WithSlots$
|
|
3383
|
+
declare const __VLS_export$17: __VLS_WithSlots$14<typeof __VLS_base$14, __VLS_Slots$14>;
|
|
3384
|
+
declare const _default$53: typeof __VLS_export$17;
|
|
3385
|
+
type __VLS_WithSlots$14<T, S> = T & {
|
|
2541
3386
|
new (): {
|
|
2542
3387
|
$slots: S;
|
|
2543
3388
|
};
|
|
@@ -2702,12 +3547,12 @@ declare var __VLS_8$3: {
|
|
|
2702
3547
|
props: Record<string, any>;
|
|
2703
3548
|
state: SliderRootState;
|
|
2704
3549
|
}, __VLS_16: {};
|
|
2705
|
-
type __VLS_Slots$
|
|
3550
|
+
type __VLS_Slots$13 = {} & {
|
|
2706
3551
|
default?: (props: typeof __VLS_8$3) => any;
|
|
2707
3552
|
} & {
|
|
2708
3553
|
default?: (props: typeof __VLS_16) => any;
|
|
2709
3554
|
};
|
|
2710
|
-
declare const __VLS_base$
|
|
3555
|
+
declare const __VLS_base$13: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2711
3556
|
valueChange: (value: number | readonly number[], details: SliderRootChangeEventDetails) => any;
|
|
2712
3557
|
valueCommitted: (value: number | readonly number[], details: SliderRootCommitEventDetails) => any;
|
|
2713
3558
|
}, string, vue.PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
@@ -2716,18 +3561,18 @@ declare const __VLS_base$19: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vu
|
|
|
2716
3561
|
}>, {
|
|
2717
3562
|
disabled: boolean;
|
|
2718
3563
|
as: string | vue.Component;
|
|
2719
|
-
orientation: Orientation;
|
|
2720
3564
|
min: number;
|
|
2721
3565
|
max: number;
|
|
2722
3566
|
step: number;
|
|
2723
|
-
|
|
3567
|
+
orientation: Orientation;
|
|
2724
3568
|
largeStep: number;
|
|
3569
|
+
minStepsBetweenValues: number;
|
|
2725
3570
|
thumbAlignment: "center" | "edge" | "edge-client-only";
|
|
2726
3571
|
thumbCollisionBehavior: "push" | "swap" | "none";
|
|
2727
3572
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2728
|
-
declare const __VLS_export$
|
|
2729
|
-
declare const _default$
|
|
2730
|
-
type __VLS_WithSlots$
|
|
3573
|
+
declare const __VLS_export$16: __VLS_WithSlots$13<typeof __VLS_base$13, __VLS_Slots$13>;
|
|
3574
|
+
declare const _default$57: typeof __VLS_export$16;
|
|
3575
|
+
type __VLS_WithSlots$13<T, S> = T & {
|
|
2731
3576
|
new (): {
|
|
2732
3577
|
$slots: S;
|
|
2733
3578
|
};
|
|
@@ -2736,22 +3581,22 @@ type __VLS_WithSlots$19<T, S> = T & {
|
|
|
2736
3581
|
//#region src/slider/control/SliderControl.vue.d.ts
|
|
2737
3582
|
interface SliderControlState extends SliderRootState {}
|
|
2738
3583
|
interface SliderControlProps extends BaseUIComponentProps<SliderControlState> {}
|
|
2739
|
-
declare var __VLS_1$
|
|
3584
|
+
declare var __VLS_1$8: {
|
|
2740
3585
|
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
2741
3586
|
props: Record<string, any>;
|
|
2742
3587
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
2743
|
-
}, __VLS_10$
|
|
2744
|
-
type __VLS_Slots$
|
|
2745
|
-
default?: (props: typeof __VLS_1$
|
|
3588
|
+
}, __VLS_10$8: {};
|
|
3589
|
+
type __VLS_Slots$12 = {} & {
|
|
3590
|
+
default?: (props: typeof __VLS_1$8) => any;
|
|
2746
3591
|
} & {
|
|
2747
|
-
default?: (props: typeof __VLS_10$
|
|
3592
|
+
default?: (props: typeof __VLS_10$8) => any;
|
|
2748
3593
|
};
|
|
2749
|
-
declare const __VLS_base$
|
|
3594
|
+
declare const __VLS_base$12: vue.DefineComponent<SliderControlProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderControlProps> & Readonly<{}>, {
|
|
2750
3595
|
as: string | vue.Component;
|
|
2751
3596
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2752
|
-
declare const __VLS_export$
|
|
2753
|
-
declare const _default$
|
|
2754
|
-
type __VLS_WithSlots$
|
|
3597
|
+
declare const __VLS_export$15: __VLS_WithSlots$12<typeof __VLS_base$12, __VLS_Slots$12>;
|
|
3598
|
+
declare const _default$54: typeof __VLS_export$15;
|
|
3599
|
+
type __VLS_WithSlots$12<T, S> = T & {
|
|
2755
3600
|
new (): {
|
|
2756
3601
|
$slots: S;
|
|
2757
3602
|
};
|
|
@@ -2797,22 +3642,22 @@ declare enum SliderControlDataAttributes {
|
|
|
2797
3642
|
//#region src/slider/indicator/SliderIndicator.vue.d.ts
|
|
2798
3643
|
interface SliderIndicatorState extends SliderRootState {}
|
|
2799
3644
|
interface SliderIndicatorProps extends BaseUIComponentProps<SliderIndicatorState> {}
|
|
2800
|
-
declare var __VLS_1$
|
|
3645
|
+
declare var __VLS_1$7: {
|
|
2801
3646
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2802
3647
|
props: Record<string, any>;
|
|
2803
3648
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
2804
|
-
}, __VLS_10$
|
|
2805
|
-
type __VLS_Slots$
|
|
2806
|
-
default?: (props: typeof __VLS_1$
|
|
3649
|
+
}, __VLS_10$7: {};
|
|
3650
|
+
type __VLS_Slots$11 = {} & {
|
|
3651
|
+
default?: (props: typeof __VLS_1$7) => any;
|
|
2807
3652
|
} & {
|
|
2808
|
-
default?: (props: typeof __VLS_10$
|
|
3653
|
+
default?: (props: typeof __VLS_10$7) => any;
|
|
2809
3654
|
};
|
|
2810
|
-
declare const __VLS_base$
|
|
3655
|
+
declare const __VLS_base$11: vue.DefineComponent<SliderIndicatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderIndicatorProps> & Readonly<{}>, {
|
|
2811
3656
|
as: string | vue.Component;
|
|
2812
3657
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2813
|
-
declare const __VLS_export$
|
|
2814
|
-
declare const _default$
|
|
2815
|
-
type __VLS_WithSlots$
|
|
3658
|
+
declare const __VLS_export$14: __VLS_WithSlots$11<typeof __VLS_base$11, __VLS_Slots$11>;
|
|
3659
|
+
declare const _default$55: typeof __VLS_export$14;
|
|
3660
|
+
type __VLS_WithSlots$11<T, S> = T & {
|
|
2816
3661
|
new (): {
|
|
2817
3662
|
$slots: S;
|
|
2818
3663
|
};
|
|
@@ -2858,22 +3703,22 @@ declare enum SliderIndicatorDataAttributes {
|
|
|
2858
3703
|
//#region src/slider/label/SliderLabel.vue.d.ts
|
|
2859
3704
|
type SliderLabelState = SliderRootState;
|
|
2860
3705
|
interface SliderLabelProps extends BaseUIComponentProps<SliderLabelState> {}
|
|
2861
|
-
declare var __VLS_1$
|
|
3706
|
+
declare var __VLS_1$6: {
|
|
2862
3707
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
2863
3708
|
props: Record<string, any>;
|
|
2864
3709
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
2865
|
-
}, __VLS_10$
|
|
2866
|
-
type __VLS_Slots$
|
|
2867
|
-
default?: (props: typeof __VLS_1$
|
|
3710
|
+
}, __VLS_10$6: {};
|
|
3711
|
+
type __VLS_Slots$10 = {} & {
|
|
3712
|
+
default?: (props: typeof __VLS_1$6) => any;
|
|
2868
3713
|
} & {
|
|
2869
|
-
default?: (props: typeof __VLS_10$
|
|
3714
|
+
default?: (props: typeof __VLS_10$6) => any;
|
|
2870
3715
|
};
|
|
2871
|
-
declare const __VLS_base$
|
|
3716
|
+
declare const __VLS_base$10: vue.DefineComponent<SliderLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderLabelProps> & Readonly<{}>, {
|
|
2872
3717
|
as: string | vue.Component;
|
|
2873
3718
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2874
|
-
declare const __VLS_export$
|
|
2875
|
-
declare const _default$
|
|
2876
|
-
type __VLS_WithSlots$
|
|
3719
|
+
declare const __VLS_export$13: __VLS_WithSlots$10<typeof __VLS_base$10, __VLS_Slots$10>;
|
|
3720
|
+
declare const _default$56: typeof __VLS_export$13;
|
|
3721
|
+
type __VLS_WithSlots$10<T, S> = T & {
|
|
2877
3722
|
new (): {
|
|
2878
3723
|
$slots: S;
|
|
2879
3724
|
};
|
|
@@ -2947,23 +3792,23 @@ interface SliderThumbProps extends Omit<BaseUIComponentProps<SliderThumbState>,
|
|
|
2947
3792
|
ariaDescribedby?: string;
|
|
2948
3793
|
style?: CSSProperties | ((state: SliderThumbState) => CSSProperties);
|
|
2949
3794
|
}
|
|
2950
|
-
declare var __VLS_1$
|
|
3795
|
+
declare var __VLS_1$5: {
|
|
2951
3796
|
ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
|
|
2952
3797
|
props: Record<string, any>;
|
|
2953
3798
|
state: Ref<SliderRootState, SliderRootState>;
|
|
2954
|
-
}, __VLS_10$
|
|
2955
|
-
type __VLS_Slots$
|
|
2956
|
-
default?: (props: typeof __VLS_1$
|
|
3799
|
+
}, __VLS_10$5: {};
|
|
3800
|
+
type __VLS_Slots$9 = {} & {
|
|
3801
|
+
default?: (props: typeof __VLS_1$5) => any;
|
|
2957
3802
|
} & {
|
|
2958
|
-
default?: (props: typeof __VLS_10$
|
|
3803
|
+
default?: (props: typeof __VLS_10$5) => any;
|
|
2959
3804
|
};
|
|
2960
|
-
declare const __VLS_base$
|
|
3805
|
+
declare const __VLS_base$9: vue.DefineComponent<SliderThumbProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderThumbProps> & Readonly<{}>, {
|
|
2961
3806
|
disabled: boolean;
|
|
2962
3807
|
as: string | vue.Component;
|
|
2963
3808
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
2964
|
-
declare const __VLS_export$
|
|
2965
|
-
declare const _default$
|
|
2966
|
-
type __VLS_WithSlots$
|
|
3809
|
+
declare const __VLS_export$12: __VLS_WithSlots$9<typeof __VLS_base$9, __VLS_Slots$9>;
|
|
3810
|
+
declare const _default$58: typeof __VLS_export$12;
|
|
3811
|
+
type __VLS_WithSlots$9<T, S> = T & {
|
|
2967
3812
|
new (): {
|
|
2968
3813
|
$slots: S;
|
|
2969
3814
|
};
|
|
@@ -3142,22 +3987,22 @@ declare enum SliderThumbDataAttributes {
|
|
|
3142
3987
|
//#region src/slider/track/SliderTrack.vue.d.ts
|
|
3143
3988
|
interface SliderTrackState extends SliderRootState {}
|
|
3144
3989
|
interface SliderTrackProps extends BaseUIComponentProps<SliderTrackState> {}
|
|
3145
|
-
declare var __VLS_1$
|
|
3990
|
+
declare var __VLS_1$4: {
|
|
3146
3991
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3147
3992
|
props: Record<string, any>;
|
|
3148
3993
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
3149
|
-
}, __VLS_10$
|
|
3150
|
-
type __VLS_Slots$
|
|
3151
|
-
default?: (props: typeof __VLS_1$
|
|
3994
|
+
}, __VLS_10$4: {};
|
|
3995
|
+
type __VLS_Slots$8 = {} & {
|
|
3996
|
+
default?: (props: typeof __VLS_1$4) => any;
|
|
3152
3997
|
} & {
|
|
3153
|
-
default?: (props: typeof __VLS_10$
|
|
3998
|
+
default?: (props: typeof __VLS_10$4) => any;
|
|
3154
3999
|
};
|
|
3155
|
-
declare const __VLS_base$
|
|
4000
|
+
declare const __VLS_base$8: vue.DefineComponent<SliderTrackProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderTrackProps> & Readonly<{}>, {
|
|
3156
4001
|
as: string | vue.Component;
|
|
3157
4002
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3158
|
-
declare const __VLS_export$
|
|
3159
|
-
declare const _default$
|
|
3160
|
-
type __VLS_WithSlots$
|
|
4003
|
+
declare const __VLS_export$11: __VLS_WithSlots$8<typeof __VLS_base$8, __VLS_Slots$8>;
|
|
4004
|
+
declare const _default$59: typeof __VLS_export$11;
|
|
4005
|
+
type __VLS_WithSlots$8<T, S> = T & {
|
|
3161
4006
|
new (): {
|
|
3162
4007
|
$slots: S;
|
|
3163
4008
|
};
|
|
@@ -3180,28 +4025,28 @@ interface SliderValueState extends SliderRootState {}
|
|
|
3180
4025
|
interface SliderValueProps extends BaseUIComponentProps<SliderValueState> {
|
|
3181
4026
|
ariaLive?: 'off' | 'polite' | 'assertive';
|
|
3182
4027
|
}
|
|
3183
|
-
declare var __VLS_1$
|
|
4028
|
+
declare var __VLS_1$3: {
|
|
3184
4029
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3185
4030
|
props: Record<string, any>;
|
|
3186
4031
|
state: vue.Ref<SliderRootState, SliderRootState>;
|
|
3187
4032
|
formattedValues: string[];
|
|
3188
4033
|
values: readonly number[];
|
|
3189
|
-
}, __VLS_10$
|
|
4034
|
+
}, __VLS_10$3: {
|
|
3190
4035
|
formattedValues: string[];
|
|
3191
4036
|
values: readonly number[];
|
|
3192
4037
|
};
|
|
3193
|
-
type __VLS_Slots$
|
|
3194
|
-
default?: (props: typeof __VLS_1$
|
|
4038
|
+
type __VLS_Slots$7 = {} & {
|
|
4039
|
+
default?: (props: typeof __VLS_1$3) => any;
|
|
3195
4040
|
} & {
|
|
3196
|
-
default?: (props: typeof __VLS_10$
|
|
4041
|
+
default?: (props: typeof __VLS_10$3) => any;
|
|
3197
4042
|
};
|
|
3198
|
-
declare const __VLS_base$
|
|
4043
|
+
declare const __VLS_base$7: vue.DefineComponent<SliderValueProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SliderValueProps> & Readonly<{}>, {
|
|
3199
4044
|
as: string | vue.Component;
|
|
3200
4045
|
ariaLive: "off" | "polite" | "assertive";
|
|
3201
4046
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3202
|
-
declare const __VLS_export$
|
|
3203
|
-
declare const _default$
|
|
3204
|
-
type __VLS_WithSlots$
|
|
4047
|
+
declare const __VLS_export$10: __VLS_WithSlots$7<typeof __VLS_base$7, __VLS_Slots$7>;
|
|
4048
|
+
declare const _default$60: typeof __VLS_export$10;
|
|
4049
|
+
type __VLS_WithSlots$7<T, S> = T & {
|
|
3205
4050
|
new (): {
|
|
3206
4051
|
$slots: S;
|
|
3207
4052
|
};
|
|
@@ -3327,19 +4172,19 @@ interface SwitchRootProps extends NonNativeButtonProps, BaseUIComponentProps<Swi
|
|
|
3327
4172
|
}
|
|
3328
4173
|
type SwitchRootChangeEventReason = typeof REASONS.none;
|
|
3329
4174
|
type SwitchRootChangeEventDetails = BaseUIChangeEventDetails<SwitchRootChangeEventReason>;
|
|
3330
|
-
declare var __VLS_1$
|
|
4175
|
+
declare var __VLS_1$2: {
|
|
3331
4176
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3332
4177
|
props: Record<string, any>;
|
|
3333
4178
|
state: SwitchRootState;
|
|
3334
4179
|
}, __VLS_9: {
|
|
3335
4180
|
state: SwitchRootState;
|
|
3336
4181
|
};
|
|
3337
|
-
type __VLS_Slots$
|
|
3338
|
-
default?: (props: typeof __VLS_1$
|
|
4182
|
+
type __VLS_Slots$6 = {} & {
|
|
4183
|
+
default?: (props: typeof __VLS_1$2) => any;
|
|
3339
4184
|
} & {
|
|
3340
4185
|
default?: (props: typeof __VLS_9) => any;
|
|
3341
4186
|
};
|
|
3342
|
-
declare const __VLS_base$
|
|
4187
|
+
declare const __VLS_base$6: vue.DefineComponent<SwitchRootProps, {
|
|
3343
4188
|
element: Ref<HTMLElement | null, HTMLElement | null>;
|
|
3344
4189
|
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3345
4190
|
checkedChange: (checked: boolean, eventDetails: {
|
|
@@ -3369,9 +4214,9 @@ declare const __VLS_base$12: vue.DefineComponent<SwitchRootProps, {
|
|
|
3369
4214
|
nativeButton: boolean;
|
|
3370
4215
|
as: string | vue.Component;
|
|
3371
4216
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3372
|
-
declare const __VLS_export$
|
|
3373
|
-
declare const _default$
|
|
3374
|
-
type __VLS_WithSlots$
|
|
4217
|
+
declare const __VLS_export$9: __VLS_WithSlots$6<typeof __VLS_base$6, __VLS_Slots$6>;
|
|
4218
|
+
declare const _default$61: typeof __VLS_export$9;
|
|
4219
|
+
type __VLS_WithSlots$6<T, S> = T & {
|
|
3375
4220
|
new (): {
|
|
3376
4221
|
$slots: S;
|
|
3377
4222
|
};
|
|
@@ -3434,24 +4279,24 @@ declare enum SwitchRootDataAttributes {
|
|
|
3434
4279
|
//#region src/switch/thumb/SwitchThumb.vue.d.ts
|
|
3435
4280
|
interface SwitchThumbState extends SwitchRootState {}
|
|
3436
4281
|
interface SwitchThumbProps extends BaseUIComponentProps<SwitchThumbState> {}
|
|
3437
|
-
declare var __VLS_1$
|
|
4282
|
+
declare var __VLS_1$1: {
|
|
3438
4283
|
ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
|
|
3439
4284
|
props: Record<string, any>;
|
|
3440
4285
|
state: SwitchThumbState;
|
|
3441
|
-
}, __VLS_10$
|
|
4286
|
+
}, __VLS_10$2: {
|
|
3442
4287
|
state: SwitchThumbState;
|
|
3443
4288
|
};
|
|
3444
|
-
type __VLS_Slots$
|
|
3445
|
-
default?: (props: typeof __VLS_1$
|
|
4289
|
+
type __VLS_Slots$5 = {} & {
|
|
4290
|
+
default?: (props: typeof __VLS_1$1) => any;
|
|
3446
4291
|
} & {
|
|
3447
|
-
default?: (props: typeof __VLS_10$
|
|
4292
|
+
default?: (props: typeof __VLS_10$2) => any;
|
|
3448
4293
|
};
|
|
3449
|
-
declare const __VLS_base$
|
|
4294
|
+
declare const __VLS_base$5: vue.DefineComponent<SwitchThumbProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<SwitchThumbProps> & Readonly<{}>, {
|
|
3450
4295
|
as: string | vue.Component;
|
|
3451
4296
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
3452
|
-
declare const __VLS_export$
|
|
3453
|
-
declare const _default$
|
|
3454
|
-
type __VLS_WithSlots$
|
|
4297
|
+
declare const __VLS_export$8: __VLS_WithSlots$5<typeof __VLS_base$5, __VLS_Slots$5>;
|
|
4298
|
+
declare const _default$62: typeof __VLS_export$8;
|
|
4299
|
+
type __VLS_WithSlots$5<T, S> = T & {
|
|
3455
4300
|
new (): {
|
|
3456
4301
|
$slots: S;
|
|
3457
4302
|
};
|
|
@@ -3505,235 +4350,6 @@ declare enum SwitchThumbDataAttributes {
|
|
|
3505
4350
|
focused = "data-focused"
|
|
3506
4351
|
}
|
|
3507
4352
|
//#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
|
|
3737
4353
|
//#region src/toggle/Toggle.vue.d.ts
|
|
3738
4354
|
interface ToggleState {
|
|
3739
4355
|
/**
|
|
@@ -3810,7 +4426,7 @@ declare const __VLS_export$7: <Value extends string = string>(__VLS_props: NonNu
|
|
|
3810
4426
|
}>) => vue.VNode & {
|
|
3811
4427
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
3812
4428
|
};
|
|
3813
|
-
declare const _default$
|
|
4429
|
+
declare const _default$63: typeof __VLS_export$7;
|
|
3814
4430
|
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
|
|
3815
4431
|
//#endregion
|
|
3816
4432
|
//#region src/toggle/ToggleDataAttributes.d.ts
|
|
@@ -3922,7 +4538,7 @@ declare const __VLS_export$6: <Value extends string = string>(__VLS_props: NonNu
|
|
|
3922
4538
|
}>) => vue.VNode & {
|
|
3923
4539
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
3924
4540
|
};
|
|
3925
|
-
declare const _default$
|
|
4541
|
+
declare const _default$64: typeof __VLS_export$6;
|
|
3926
4542
|
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
|
|
3927
4543
|
//#endregion
|
|
3928
4544
|
//#region src/toggle-group/ToggleGroupContext.d.ts
|
|
@@ -4006,7 +4622,7 @@ declare const __VLS_base$4: vue.DefineComponent<ToolbarRootProps, {}, {}, {}, {}
|
|
|
4006
4622
|
loopFocus: boolean;
|
|
4007
4623
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
4008
4624
|
declare const __VLS_export$5: __VLS_WithSlots$4<typeof __VLS_base$4, __VLS_Slots$4>;
|
|
4009
|
-
declare const _default$
|
|
4625
|
+
declare const _default$69: typeof __VLS_export$5;
|
|
4010
4626
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
4011
4627
|
new (): {
|
|
4012
4628
|
$slots: S;
|
|
@@ -4049,7 +4665,7 @@ declare const __VLS_base$3: vue.DefineComponent<ToolbarButtonProps, {}, {}, {},
|
|
|
4049
4665
|
focusableWhenDisabled: boolean;
|
|
4050
4666
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
4051
4667
|
declare const __VLS_export$4: __VLS_WithSlots$3<typeof __VLS_base$3, __VLS_Slots$3>;
|
|
4052
|
-
declare const _default$
|
|
4668
|
+
declare const _default$65: typeof __VLS_export$4;
|
|
4053
4669
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
4054
4670
|
new (): {
|
|
4055
4671
|
$slots: S;
|
|
@@ -4099,7 +4715,7 @@ declare const __VLS_base$2: vue.DefineComponent<ToolbarGroupProps, {}, {}, {}, {
|
|
|
4099
4715
|
as: string | vue.Component;
|
|
4100
4716
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
4101
4717
|
declare const __VLS_export$3: __VLS_WithSlots$2<typeof __VLS_base$2, __VLS_Slots$2>;
|
|
4102
|
-
declare const _default$
|
|
4718
|
+
declare const _default$66: typeof __VLS_export$3;
|
|
4103
4719
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
4104
4720
|
new (): {
|
|
4105
4721
|
$slots: S;
|
|
@@ -4156,7 +4772,7 @@ declare const __VLS_export$2: vue.DefineComponent<ToolbarInputProps, {}, {}, {},
|
|
|
4156
4772
|
as: string | vue.Component;
|
|
4157
4773
|
focusableWhenDisabled: boolean;
|
|
4158
4774
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
4159
|
-
declare const _default$
|
|
4775
|
+
declare const _default$67: typeof __VLS_export$2;
|
|
4160
4776
|
//#endregion
|
|
4161
4777
|
//#region src/toolbar/input/ToolbarInputDataAttributes.d.ts
|
|
4162
4778
|
declare enum ToolbarInputDataAttributes {
|
|
@@ -4193,7 +4809,7 @@ declare const __VLS_base$1: vue.DefineComponent<ToolbarLinkProps, {}, {}, {}, {}
|
|
|
4193
4809
|
as: string | vue.Component;
|
|
4194
4810
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
4195
4811
|
declare const __VLS_export$1: __VLS_WithSlots$1<typeof __VLS_base$1, __VLS_Slots$1>;
|
|
4196
|
-
declare const _default$
|
|
4812
|
+
declare const _default$68: typeof __VLS_export$1;
|
|
4197
4813
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
4198
4814
|
new (): {
|
|
4199
4815
|
$slots: S;
|
|
@@ -4245,7 +4861,7 @@ type __VLS_Slots = {} & {
|
|
|
4245
4861
|
};
|
|
4246
4862
|
declare const __VLS_base: vue.DefineComponent<ToolbarSeparatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ToolbarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
4247
4863
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
4248
|
-
declare const _default$
|
|
4864
|
+
declare const _default$70: typeof __VLS_export;
|
|
4249
4865
|
type __VLS_WithSlots<T, S> = T & {
|
|
4250
4866
|
new (): {
|
|
4251
4867
|
$slots: S;
|
|
@@ -4351,5 +4967,5 @@ declare const Slot: Component;
|
|
|
4351
4967
|
declare const name = "base-ui-vue";
|
|
4352
4968
|
declare const version = "0.0.0";
|
|
4353
4969
|
//#endregion
|
|
4354
|
-
export { _default as AccordionHeader, AccordionHeaderProps, _default$1 as AccordionItem, AccordionItemChangeEventDetails, AccordionItemChangeEventReason, AccordionItemContext, AccordionItemProps, AccordionItemState, _default$2 as AccordionPanel, AccordionPanelProps, AccordionPanelState, _default$3 as AccordionRoot, AccordionRootChangeEventDetails, AccordionRootChangeEventReason, AccordionRootContext, AccordionRootProps, AccordionRootState, _default$4 as AccordionTrigger, AccordionTriggerProps, AccordionValue, _default$5 as AvatarFallback, AvatarFallbackProps, AvatarFallbackState, _default$6 as AvatarImage, AvatarImageDataAttributes, AvatarImageProps, AvatarImageState, _default$7 as AvatarRoot, AvatarRootProps, AvatarRootState, _default$8 as Button, ButtonProps, ButtonState, CSPContextValue, _default$9 as CSPProvider, CSPProviderProps, Checkbox, _default$10 as CheckboxGroup, CheckboxGroupContext, CheckboxGroupDataAttributes, CheckboxGroupProps, 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, CollapsibleRootContext, CollapsibleRootProps, CollapsibleRootState, _default$15 as CollapsibleTrigger, CollapsibleTriggerProps, _default$16 as DirectionProvider, DirectionProviderProps, _default$17 as FieldControl, FieldControlDataAttributes, FieldControlProps, FieldControlState, _default$18 as FieldDescription, FieldDescriptionProps, FieldDescriptionState, _default$19 as FieldError, FieldErrorProps, FieldErrorState, _default$20 as FieldItem, FieldItemContext, FieldItemProps, FieldItemState, _default$21 as FieldLabel, FieldLabelProps, FieldLabelState, _default$22 as FieldRoot, FieldRootContext, FieldRootExpose, FieldRootProps, FieldRootState, _default$23 as FieldValidity, FieldValidityData, FieldValidityState, _default$24 as FieldsetLegend, FieldsetLegendProps, FieldsetLegendState, _default$25 as FieldsetRoot, FieldsetRootContext, FieldsetRootProps, FieldsetRootState, _default$26 as Form, FormActions, FormContext, FormErrors, FormField, FormProps, FormState, FormValidationMode, ImageLoadingStatus, _default$11 as Indicator, _default$27 as Input, InputDataAttributes, InputProps, InputState, _default$28 as MeterIndicator, MeterIndicatorProps, MeterIndicatorState, _default$29 as MeterLabel, MeterLabelProps, MeterLabelState, _default$30 as MeterRoot, MeterRootContext, MeterRootProps, MeterRootState, _default$31 as MeterTrack, MeterTrackProps, MeterTrackState, _default$32 as MeterValue, MeterValueProps, MeterValueState, _default$33 as ProgressIndicator, ProgressIndicatorProps, ProgressIndicatorState, _default$
|
|
4970
|
+
export { _default as AccordionHeader, AccordionHeaderProps, _default$1 as AccordionItem, AccordionItemChangeEventDetails, AccordionItemChangeEventReason, AccordionItemContext, AccordionItemProps, AccordionItemState, _default$2 as AccordionPanel, AccordionPanelProps, AccordionPanelState, _default$3 as AccordionRoot, AccordionRootChangeEventDetails, AccordionRootChangeEventReason, AccordionRootContext, AccordionRootProps, AccordionRootState, _default$4 as AccordionTrigger, AccordionTriggerProps, AccordionValue, _default$5 as AvatarFallback, AvatarFallbackProps, AvatarFallbackState, _default$6 as AvatarImage, AvatarImageDataAttributes, AvatarImageProps, AvatarImageState, _default$7 as AvatarRoot, AvatarRootProps, AvatarRootState, _default$8 as Button, ButtonProps, ButtonState, CSPContextValue, _default$9 as CSPProvider, CSPProviderProps, Checkbox, _default$10 as CheckboxGroup, CheckboxGroupContext, CheckboxGroupDataAttributes, CheckboxGroupProps, 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, CollapsibleRootContext, CollapsibleRootProps, CollapsibleRootState, _default$15 as CollapsibleTrigger, CollapsibleTriggerProps, _default$16 as DirectionProvider, DirectionProviderProps, _default$17 as FieldControl, FieldControlDataAttributes, FieldControlProps, FieldControlState, _default$18 as FieldDescription, FieldDescriptionProps, FieldDescriptionState, _default$19 as FieldError, FieldErrorProps, FieldErrorState, _default$20 as FieldItem, FieldItemContext, FieldItemProps, FieldItemState, _default$21 as FieldLabel, FieldLabelProps, FieldLabelState, _default$22 as FieldRoot, FieldRootContext, FieldRootExpose, FieldRootProps, FieldRootState, _default$23 as FieldValidity, FieldValidityData, FieldValidityState, _default$24 as FieldsetLegend, FieldsetLegendProps, FieldsetLegendState, _default$25 as FieldsetRoot, FieldsetRootContext, FieldsetRootProps, FieldsetRootState, _default$26 as Form, FormActions, FormContext, FormErrors, FormField, FormProps, FormState, FormValidationMode, ImageLoadingStatus, _default$11 as Indicator, _default$27 as Input, InputDataAttributes, InputMode, InputProps, InputState, _default$28 as MeterIndicator, MeterIndicatorProps, MeterIndicatorState, _default$29 as MeterLabel, MeterLabelProps, MeterLabelState, _default$30 as MeterRoot, MeterRootContext, MeterRootProps, MeterRootState, _default$31 as MeterTrack, MeterTrackProps, MeterTrackState, _default$32 as MeterValue, MeterValueProps, MeterValueState, _default$33 as NumberFieldDecrement, NumberFieldDecrementProps, NumberFieldDecrementState, _default$34 as NumberFieldGroup, NumberFieldGroupProps, NumberFieldGroupState, _default$35 as NumberFieldIncrement, NumberFieldIncrementProps, NumberFieldIncrementState, _default$36 as NumberFieldInput, NumberFieldInputProps, NumberFieldInputState, _default$37 as NumberFieldRoot, NumberFieldRootChangeEventDetails, NumberFieldRootChangeEventReason, NumberFieldRootCommitEventDetails, NumberFieldRootCommitEventReason, NumberFieldRootContext, NumberFieldRootProps, NumberFieldRootState, _default$38 as NumberFieldScrubArea, NumberFieldScrubAreaContext, _default$39 as NumberFieldScrubAreaCursor, NumberFieldScrubAreaCursorProps, NumberFieldScrubAreaCursorState, NumberFieldScrubAreaProps, NumberFieldScrubAreaState, _default$40 as OtpFieldInput, OtpFieldInputProps, OtpFieldInputState, _default$41 as OtpFieldRoot, OtpFieldRootChangeEventDetails, OtpFieldRootChangeEventReason, OtpFieldRootCompleteEventDetails, OtpFieldRootCompleteEventReason, OtpFieldRootContext, OtpFieldRootInvalidEventDetails, OtpFieldRootInvalidEventReason, OtpFieldRootProps, OtpFieldRootState, OtpValidationType, _default$42 as ProgressIndicator, ProgressIndicatorProps, ProgressIndicatorState, _default$43 as ProgressLabel, ProgressLabelProps, ProgressLabelState, _default$44 as ProgressRoot, ProgressRootContext, ProgressRootDataAttributes, ProgressRootProps, ProgressRootState, ProgressStatus, _default$45 as ProgressTrack, ProgressTrackProps, ProgressTrackState, _default$46 as ProgressValue, ProgressValueProps, ProgressValueRenderlessSlotProps, ProgressValueSlotProps, ProgressValueState, RenderRef, _default$12 as Root, _default$47 as ScrollAreaContent, ScrollAreaContentProps, ScrollAreaContentState, _default$48 as ScrollAreaCorner, ScrollAreaCornerProps, ScrollAreaCornerState, _default$49 as ScrollAreaRoot, ScrollAreaRootCssVars, ScrollAreaRootDataAttributes, ScrollAreaRootProps, ScrollAreaRootState, _default$50 as ScrollAreaScrollbar, ScrollAreaScrollbarCssVars, ScrollAreaScrollbarDataAttributes, ScrollAreaScrollbarProps, ScrollAreaScrollbarState, _default$51 as ScrollAreaThumb, ScrollAreaThumbDataAttributes, ScrollAreaThumbProps, ScrollAreaThumbState, _default$52 as ScrollAreaViewport, ScrollAreaViewportCssVars, ScrollAreaViewportDataAttributes, ScrollAreaViewportProps, ScrollAreaViewportState, _default$53 as Separator, SeparatorDataAttributes, SeparatorProps, SeparatorState, _default$54 as SliderControl, SliderControlDataAttributes, SliderControlProps, SliderControlState, _default$55 as SliderIndicator, SliderIndicatorDataAttributes, SliderIndicatorProps, SliderIndicatorState, _default$56 as SliderLabel, SliderLabelProps, SliderLabelState, _default$57 as SliderRoot, SliderRootChangeEventDetails, SliderRootChangeEventReason, SliderRootCommitEventDetails, SliderRootCommitEventReason, SliderRootContext, SliderRootDataAttributes, SliderRootProps, SliderRootState, _default$58 as SliderThumb, SliderThumbDataAttributes, SliderThumbProps, SliderThumbState, _default$59 as SliderTrack, SliderTrackDataAttributes, SliderTrackProps, SliderTrackState, _default$60 as SliderValue, SliderValueDataAttributes, SliderValueProps, SliderValueState, Slot, _default$61 as SwitchRoot, SwitchRootChangeEventDetails, SwitchRootChangeEventReason, SwitchRootContext, SwitchRootDataAttributes, SwitchRootProps, SwitchRootState, _default$62 as SwitchThumb, SwitchThumbDataAttributes, SwitchThumbProps, SwitchThumbState, TextDirection, ThumbMetadata, _default$63 as Toggle, ToggleDataAttributes, _default$64 as ToggleGroup, ToggleGroupContext, ToggleGroupDataAttributes, ToggleGroupProps, ToggleGroupState, ToggleProps, ToggleState, _default$65 as ToolbarButton, ToolbarButtonDataAttributes, ToolbarButtonProps, ToolbarButtonState, _default$66 as ToolbarGroup, ToolbarGroupContext, ToolbarGroupDataAttributes, ToolbarGroupProps, ToolbarGroupState, _default$67 as ToolbarInput, ToolbarInputDataAttributes, ToolbarInputProps, ToolbarInputState, _default$68 as ToolbarLink, ToolbarLinkDataAttributes, ToolbarLinkProps, ToolbarLinkState, _default$69 as ToolbarRoot, ToolbarRootContext, ToolbarRootDataAttributes, ToolbarRootItemMetadata, ToolbarRootProps, ToolbarRootState, _default$70 as ToolbarSeparator, ToolbarSeparatorDataAttributes, ToolbarSeparatorProps, ToolbarSeparatorState, type TransitionStatus, UseCheckboxGroupParentParameters, UseCheckboxGroupParentReturnValue, UseRenderComponentProps, UseRenderElementProps, UseRenderParams, UseRenderReturn, accordionItemContextKey, accordionRootContextKey, checkboxGroupContextKey, checkboxRootContextKey, collapsibleRootContextKey, fieldItemContextKey, fieldRootContextKey, fieldsetRootContextKey, formContextKey, getOtpFieldInputState, makeEventPreventable, mergeClasses, mergeObjects, mergeProps, mergePropsN, meterRootContextKey, name, numberFieldRootContextKey, numberFieldScrubAreaContextKey, otpFieldRootContextKey, progressRootContextKey, progressStateAttributesMapping, sliderRootContextKey, switchRootContextKey, toggleGroupContextKey, toolbarGroupContextKey, toolbarRootContextKey, useAccordionItemContext, useAccordionRootContext, useCSPContext, useCheckboxGroupContext, useCheckboxRootContext, useCollapsibleRootContext, useDirection, useFieldItemContext, useFieldRootContext, useFieldsetRootContext, useFormContext, useMeterRootContext, useNumberFieldRootContext, useNumberFieldScrubAreaContext, useOtpFieldRootContext, useProgressRootContext, useRender, useSliderRootContext, useSwitchRootContext, useToggleGroupContext, useToolbarGroupContext, useToolbarRootContext, version };
|
|
4355
4971
|
//# sourceMappingURL=index.d.cts.map
|