base-ui-vue 0.2.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.
Files changed (109) hide show
  1. package/dist/button/ToolbarButton.cjs +6 -0
  2. package/dist/button/ToolbarButton.js +1 -1
  3. package/dist/content/ScrollAreaContent.cjs +168 -0
  4. package/dist/content/ScrollAreaContent.cjs.map +1 -0
  5. package/dist/content/ScrollAreaContent.js +133 -0
  6. package/dist/content/ScrollAreaContent.js.map +1 -0
  7. package/dist/control/SliderControl.js +2 -2
  8. package/dist/corner/ScrollAreaCorner.cjs +77 -0
  9. package/dist/corner/ScrollAreaCorner.cjs.map +1 -0
  10. package/dist/corner/ScrollAreaCorner.js +72 -0
  11. package/dist/corner/ScrollAreaCorner.js.map +1 -0
  12. package/dist/decrement/NumberFieldDecrement.cjs +861 -0
  13. package/dist/decrement/NumberFieldDecrement.cjs.map +1 -0
  14. package/dist/decrement/NumberFieldDecrement.js +700 -0
  15. package/dist/decrement/NumberFieldDecrement.js.map +1 -0
  16. package/dist/fallback/AvatarFallback.cjs +2 -46
  17. package/dist/fallback/AvatarFallback.cjs.map +1 -1
  18. package/dist/fallback/AvatarFallback.js +3 -41
  19. package/dist/fallback/AvatarFallback.js.map +1 -1
  20. package/dist/group/NumberFieldGroup.cjs +72 -0
  21. package/dist/group/NumberFieldGroup.cjs.map +1 -0
  22. package/dist/group/NumberFieldGroup.js +67 -0
  23. package/dist/group/NumberFieldGroup.js.map +1 -0
  24. package/dist/increment/NumberFieldIncrement.cjs +112 -0
  25. package/dist/increment/NumberFieldIncrement.cjs.map +1 -0
  26. package/dist/increment/NumberFieldIncrement.js +107 -0
  27. package/dist/increment/NumberFieldIncrement.js.map +1 -0
  28. package/dist/index.cjs +52 -0
  29. package/dist/index.d.cts +1761 -430
  30. package/dist/index.d.cts.map +1 -1
  31. package/dist/index.d.ts +1761 -430
  32. package/dist/index.d.ts.map +1 -1
  33. package/dist/index.js +7 -2
  34. package/dist/index2.cjs +4065 -60
  35. package/dist/index2.cjs.map +1 -1
  36. package/dist/index2.js +3955 -184
  37. package/dist/index2.js.map +1 -1
  38. package/package.json +1 -1
  39. package/src/index.ts +6 -0
  40. package/src/input/Input.vue +37 -0
  41. package/src/input/InputDataAttributes.ts +30 -0
  42. package/src/input/index.ts +4 -0
  43. package/src/meter/index.ts +16 -0
  44. package/src/meter/indicator/MeterIndicator.vue +65 -0
  45. package/src/meter/label/MeterLabel.vue +63 -0
  46. package/src/meter/root/MeterRoot.vue +131 -0
  47. package/src/meter/root/MeterRootContext.ts +41 -0
  48. package/src/meter/track/MeterTrack.vue +46 -0
  49. package/src/meter/value/MeterValue.vue +85 -0
  50. package/src/number-field/decrement/NumberFieldDecrement.vue +109 -0
  51. package/src/number-field/group/NumberFieldGroup.vue +47 -0
  52. package/src/number-field/increment/NumberFieldIncrement.vue +109 -0
  53. package/src/number-field/index.ts +42 -0
  54. package/src/number-field/input/NumberFieldInput.vue +455 -0
  55. package/src/number-field/root/NumberFieldRoot.vue +626 -0
  56. package/src/number-field/root/NumberFieldRootContext.ts +94 -0
  57. package/src/number-field/root/useNumberFieldButton.ts +171 -0
  58. package/src/number-field/scrub-area/NumberFieldScrubArea.vue +359 -0
  59. package/src/number-field/scrub-area/NumberFieldScrubAreaContext.ts +26 -0
  60. package/src/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.vue +75 -0
  61. package/src/number-field/utils/constants.ts +4 -0
  62. package/src/number-field/utils/getViewportRect.ts +34 -0
  63. package/src/number-field/utils/parse.ts +248 -0
  64. package/src/number-field/utils/stateAttributesMapping.ts +9 -0
  65. package/src/number-field/utils/subscribeToVisualViewportResize.ts +27 -0
  66. package/src/number-field/utils/types.ts +24 -0
  67. package/src/number-field/utils/validate.ts +120 -0
  68. package/src/otp-field/index.ts +22 -0
  69. package/src/otp-field/input/OtpFieldInput.vue +336 -0
  70. package/src/otp-field/root/OtpFieldRoot.vue +583 -0
  71. package/src/otp-field/root/OtpFieldRootContext.ts +81 -0
  72. package/src/otp-field/utils/otp.ts +135 -0
  73. package/src/otp-field/utils/stateAttributesMapping.ts +16 -0
  74. package/src/progress/index.ts +23 -0
  75. package/src/progress/indicator/ProgressIndicator.vue +74 -0
  76. package/src/progress/label/ProgressLabel.vue +63 -0
  77. package/src/progress/root/ProgressRoot.vue +160 -0
  78. package/src/progress/root/ProgressRootContext.ts +51 -0
  79. package/src/progress/root/ProgressRootDataAttributes.ts +14 -0
  80. package/src/progress/root/stateAttributesMapping.ts +18 -0
  81. package/src/progress/track/ProgressTrack.vue +48 -0
  82. package/src/progress/value/ProgressValue.vue +92 -0
  83. package/src/scroll-area/constants.ts +2 -0
  84. package/src/scroll-area/content/ScrollAreaContent.vue +87 -0
  85. package/src/scroll-area/corner/ScrollAreaCorner.vue +64 -0
  86. package/src/scroll-area/index.ts +25 -0
  87. package/src/scroll-area/root/ScrollAreaRoot.vue +297 -0
  88. package/src/scroll-area/root/ScrollAreaRootContext.ts +89 -0
  89. package/src/scroll-area/root/ScrollAreaRootCssVars.ts +4 -0
  90. package/src/scroll-area/root/ScrollAreaRootDataAttributes.ts +9 -0
  91. package/src/scroll-area/root/stateAttributes.ts +14 -0
  92. package/src/scroll-area/scrollbar/ScrollAreaScrollbar.vue +263 -0
  93. package/src/scroll-area/scrollbar/ScrollAreaScrollbarContext.ts +20 -0
  94. package/src/scroll-area/scrollbar/ScrollAreaScrollbarCssVars.ts +4 -0
  95. package/src/scroll-area/scrollbar/ScrollAreaScrollbarDataAttributes.ts +11 -0
  96. package/src/scroll-area/thumb/ScrollAreaThumb.vue +120 -0
  97. package/src/scroll-area/thumb/ScrollAreaThumbDataAttributes.ts +3 -0
  98. package/src/scroll-area/utils/getOffset.ts +34 -0
  99. package/src/scroll-area/viewport/ScrollAreaViewport.vue +379 -0
  100. package/src/scroll-area/viewport/ScrollAreaViewportContext.ts +20 -0
  101. package/src/scroll-area/viewport/ScrollAreaViewportCssVars.ts +6 -0
  102. package/src/scroll-area/viewport/ScrollAreaViewportDataAttributes.ts +9 -0
  103. package/src/utils/detectBrowser.ts +15 -0
  104. package/src/utils/formatNumber.ts +60 -2
  105. package/src/utils/scrollEdges.ts +33 -0
  106. package/src/utils/styles.ts +28 -0
  107. package/src/utils/useInterval.ts +45 -0
  108. package/src/utils/usePressAndHold.ts +260 -0
  109. package/src/utils/useValueChanged.ts +21 -0
package/dist/index.d.ts CHANGED
@@ -279,42 +279,42 @@ interface AccordionPanelProps extends BaseUIComponentProps<AccordionPanelState>
279
279
  }
280
280
  //#endregion
281
281
  //#region src/accordion/header/AccordionHeader.vue.d.ts
282
- declare var __VLS_1$34: {
282
+ declare var __VLS_1$54: {
283
283
  props: Record<string, any>;
284
284
  state: AccordionItemState<any>;
285
- }, __VLS_10$29: {
285
+ }, __VLS_10$45: {
286
286
  state: AccordionItemState<any>;
287
287
  };
288
- type __VLS_Slots$41 = {} & {
289
- default?: (props: typeof __VLS_1$34) => any;
288
+ type __VLS_Slots$67 = {} & {
289
+ default?: (props: typeof __VLS_1$54) => any;
290
290
  } & {
291
- default?: (props: typeof __VLS_10$29) => any;
291
+ default?: (props: typeof __VLS_10$45) => any;
292
292
  };
293
- declare const __VLS_base$41: vue.DefineComponent<AccordionHeaderProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AccordionHeaderProps> & Readonly<{}>, {
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$44: __VLS_WithSlots$41<typeof __VLS_base$41, __VLS_Slots$41>;
297
- declare const _default: typeof __VLS_export$44;
298
- type __VLS_WithSlots$41<T, S> = T & {
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$33: {
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$28: {
309
+ }, __VLS_10$44: {
310
310
  state: AccordionItemState<any>;
311
311
  };
312
- type __VLS_Slots$40 = {} & {
313
- default?: (props: typeof __VLS_1$33) => any;
312
+ type __VLS_Slots$66 = {} & {
313
+ default?: (props: typeof __VLS_1$53) => any;
314
314
  } & {
315
- default?: (props: typeof __VLS_10$28) => any;
315
+ default?: (props: typeof __VLS_10$44) => any;
316
316
  };
317
- declare const __VLS_base$40: vue.DefineComponent<AccordionItemProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & {
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$40: vue.DefineComponent<AccordionItemProps, {}, {}, {},
322
322
  disabled: boolean;
323
323
  as: string | vue.Component;
324
324
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
325
- declare const __VLS_export$43: __VLS_WithSlots$40<typeof __VLS_base$40, __VLS_Slots$40>;
326
- declare const _default$1: typeof __VLS_export$43;
327
- type __VLS_WithSlots$40<T, S> = T & {
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$32: {
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$27: {
348
+ }, __VLS_10$43: {
349
349
  state: AccordionPanelState;
350
350
  };
351
- type __VLS_Slots$39 = {} & {
352
- default?: (props: typeof __VLS_1$32) => any;
351
+ type __VLS_Slots$65 = {} & {
352
+ default?: (props: typeof __VLS_1$52) => any;
353
353
  } & {
354
- default?: (props: typeof __VLS_10$27) => any;
354
+ default?: (props: typeof __VLS_10$43) => any;
355
355
  };
356
- declare const __VLS_base$39: vue.DefineComponent<AccordionPanelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AccordionPanelProps> & Readonly<{}>, {
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$42: __VLS_WithSlots$39<typeof __VLS_base$39, __VLS_Slots$39>;
360
- declare const _default$2: typeof __VLS_export$42;
361
- type __VLS_WithSlots$39<T, S> = T & {
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$39<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$5: {
369
+ declare var __VLS_8$6: {
370
370
  props: Record<string, any>;
371
371
  state: AccordionRootState<any>;
372
- }, __VLS_16$2: {
372
+ }, __VLS_16$4: {
373
373
  state: AccordionRootState<any>;
374
374
  };
375
- type __VLS_Slots$38 = {} & {
376
- default?: (props: typeof __VLS_8$5) => any;
375
+ type __VLS_Slots$64 = {} & {
376
+ default?: (props: typeof __VLS_8$6) => any;
377
377
  } & {
378
- default?: (props: typeof __VLS_16$2) => any;
378
+ default?: (props: typeof __VLS_16$4) => any;
379
379
  };
380
- declare const __VLS_base$38: vue.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & {
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$38: 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$41: __VLS_WithSlots$38<typeof __VLS_base$38, __VLS_Slots$38>;
394
- declare const _default$3: typeof __VLS_export$41;
395
- type __VLS_WithSlots$38<T, S> = T & {
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$31: {
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$26: {
433
+ }, __VLS_10$42: {
434
434
  state: vue.Ref<AccordionItemState<any>, AccordionItemState<any>>;
435
435
  };
436
- type __VLS_Slots$37 = {} & {
437
- default?: (props: typeof __VLS_1$31) => any;
436
+ type __VLS_Slots$63 = {} & {
437
+ default?: (props: typeof __VLS_1$51) => any;
438
438
  } & {
439
- default?: (props: typeof __VLS_10$26) => any;
439
+ default?: (props: typeof __VLS_10$42) => any;
440
440
  };
441
- declare const __VLS_base$37: vue.DefineComponent<AccordionTriggerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AccordionTriggerProps> & Readonly<{}>, {
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$40: __VLS_WithSlots$37<typeof __VLS_base$37, __VLS_Slots$37>;
446
- declare const _default$4: typeof __VLS_export$40;
447
- type __VLS_WithSlots$37<T, S> = T & {
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$30: {
459
+ declare var __VLS_1$50: {
460
460
  props: Record<string, any>;
461
461
  state: AvatarRootState;
462
- }, __VLS_10$25: {
462
+ }, __VLS_10$41: {
463
463
  state: AvatarRootState;
464
464
  };
465
- type __VLS_Slots$36 = {} & {
466
- default?: (props: typeof __VLS_1$30) => any;
465
+ type __VLS_Slots$62 = {} & {
466
+ default?: (props: typeof __VLS_1$50) => any;
467
467
  } & {
468
- default?: (props: typeof __VLS_10$25) => any;
468
+ default?: (props: typeof __VLS_10$41) => any;
469
469
  };
470
- declare const __VLS_base$36: vue.DefineComponent<AvatarRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AvatarRootProps> & Readonly<{}>, {
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$39: __VLS_WithSlots$36<typeof __VLS_base$36, __VLS_Slots$36>;
474
- declare const _default$7: typeof __VLS_export$39;
475
- type __VLS_WithSlots$36<T, S> = T & {
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$29: {
489
+ declare var __VLS_1$49: {
490
490
  props: Record<string, any>;
491
491
  state: AvatarFallbackState;
492
- }, __VLS_10$24: {
492
+ }, __VLS_10$40: {
493
493
  state: AvatarFallbackState;
494
494
  };
495
- type __VLS_Slots$35 = {} & {
496
- default?: (props: typeof __VLS_1$29) => any;
495
+ type __VLS_Slots$61 = {} & {
496
+ default?: (props: typeof __VLS_1$49) => any;
497
497
  } & {
498
- default?: (props: typeof __VLS_10$24) => any;
498
+ default?: (props: typeof __VLS_10$40) => any;
499
499
  };
500
- declare const __VLS_base$35: vue.DefineComponent<AvatarFallbackProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<AvatarFallbackProps> & Readonly<{}>, {
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$38: __VLS_WithSlots$35<typeof __VLS_base$35, __VLS_Slots$35>;
504
- declare const _default$5: typeof __VLS_export$38;
505
- type __VLS_WithSlots$35<T, S> = T & {
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$28: {
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$23: {
527
+ }, __VLS_10$39: {
528
528
  state: AvatarImageState;
529
529
  };
530
- type __VLS_Slots$34 = {} & {
531
- default?: (props: typeof __VLS_1$28) => any;
530
+ type __VLS_Slots$60 = {} & {
531
+ default?: (props: typeof __VLS_1$48) => any;
532
532
  } & {
533
- default?: (props: typeof __VLS_10$23) => any;
533
+ default?: (props: typeof __VLS_10$39) => any;
534
534
  };
535
- declare const __VLS_base$34: vue.DefineComponent<AvatarImageProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & {
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$37: __VLS_WithSlots$34<typeof __VLS_base$34, __VLS_Slots$34>;
543
- declare const _default$6: typeof __VLS_export$37;
544
- type __VLS_WithSlots$34<T, S> = T & {
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$27: {
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$22: {
593
+ }, __VLS_10$38: {
594
594
  state: {
595
595
  disabled: boolean;
596
596
  };
597
597
  };
598
- type __VLS_Slots$33 = {} & {
599
- default?: (props: typeof __VLS_1$27) => any;
598
+ type __VLS_Slots$59 = {} & {
599
+ default?: (props: typeof __VLS_1$47) => any;
600
600
  } & {
601
- default?: (props: typeof __VLS_10$22) => any;
601
+ default?: (props: typeof __VLS_10$38) => any;
602
602
  };
603
- declare const __VLS_base$33: vue.DefineComponent<ButtonProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ButtonProps> & Readonly<{}>, {
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$36: __VLS_WithSlots$33<typeof __VLS_base$33, __VLS_Slots$33>;
610
- declare const _default$8: typeof __VLS_export$36;
611
- type __VLS_WithSlots$33<T, S> = T & {
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$26: {
730
+ declare var __VLS_1$46: {
731
731
  props: Record<string, any>;
732
732
  state: FieldRootState;
733
- }, __VLS_10$21: {
733
+ }, __VLS_10$37: {
734
734
  state: FieldRootState;
735
735
  };
736
- type __VLS_Slots$32 = {} & {
737
- default?: (props: typeof __VLS_1$26) => any;
736
+ type __VLS_Slots$58 = {} & {
737
+ default?: (props: typeof __VLS_1$46) => any;
738
738
  } & {
739
- default?: (props: typeof __VLS_10$21) => any;
739
+ default?: (props: typeof __VLS_10$37) => any;
740
740
  };
741
- declare const __VLS_base$32: vue.DefineComponent<FieldRootProps, FieldRootExpose, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldRootProps> & Readonly<{}>, {
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$32: vue.DefineComponent<FieldRootProps, FieldRootExpose
746
746
  invalid: boolean;
747
747
  validationDebounceTime: number;
748
748
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
749
- declare const __VLS_export$35: __VLS_WithSlots$32<typeof __VLS_base$32, __VLS_Slots$32>;
750
- declare const _default$22: typeof __VLS_export$35;
751
- type __VLS_WithSlots$32<T, S> = T & {
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$25: {
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$1: {
855
+ }, __VLS_9$2: {
856
856
  state: CheckboxRootState;
857
857
  };
858
- type __VLS_Slots$31 = {} & {
859
- default?: (props: typeof __VLS_1$25) => any;
858
+ type __VLS_Slots$57 = {} & {
859
+ default?: (props: typeof __VLS_1$45) => any;
860
860
  } & {
861
- default?: (props: typeof __VLS_9$1) => any;
861
+ default?: (props: typeof __VLS_9$2) => any;
862
862
  };
863
- declare const __VLS_base$31: vue.DefineComponent<CheckboxRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
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$31: vue.DefineComponent<CheckboxRootProps, {}, {}, {},
890
890
  nativeButton: boolean;
891
891
  as: string | vue.Component;
892
892
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
893
- declare const __VLS_export$34: __VLS_WithSlots$31<typeof __VLS_base$31, __VLS_Slots$31>;
894
- declare const _default$12: typeof __VLS_export$34;
895
- type __VLS_WithSlots$31<T, S> = T & {
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$24: {
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$20: {
916
+ }, __VLS_10$36: {
917
917
  state: CheckboxIndicatorState;
918
918
  };
919
- type __VLS_Slots$30 = {} & {
920
- default?: (props: typeof __VLS_1$24) => any;
919
+ type __VLS_Slots$56 = {} & {
920
+ default?: (props: typeof __VLS_1$44) => any;
921
921
  } & {
922
- default?: (props: typeof __VLS_10$20) => any;
922
+ default?: (props: typeof __VLS_10$36) => any;
923
923
  };
924
- declare const __VLS_base$30: vue.DefineComponent<CheckboxIndicatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CheckboxIndicatorProps> & Readonly<{}>, {
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$33: __VLS_WithSlots$30<typeof __VLS_base$30, __VLS_Slots$30>;
929
- declare const _default$11: typeof __VLS_export$33;
930
- type __VLS_WithSlots$30<T, S> = T & {
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$23: {
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$19: {
1233
+ }, __VLS_10$35: {
1234
1234
  state: CheckboxGroupState;
1235
1235
  };
1236
- type __VLS_Slots$29 = {} & {
1237
- default?: (props: typeof __VLS_1$23) => any;
1236
+ type __VLS_Slots$55 = {} & {
1237
+ default?: (props: typeof __VLS_1$43) => any;
1238
1238
  } & {
1239
- default?: (props: typeof __VLS_10$19) => any;
1239
+ default?: (props: typeof __VLS_10$35) => any;
1240
1240
  };
1241
- declare const __VLS_base$29: vue.DefineComponent<CheckboxGroupProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
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$29: vue.DefineComponent<CheckboxGroupProps, {}, {}, {},
1263
1263
  as: string | vue.Component;
1264
1264
  defaultValue: string[];
1265
1265
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1266
- declare const __VLS_export$32: __VLS_WithSlots$29<typeof __VLS_base$29, __VLS_Slots$29>;
1267
- declare const _default$10: typeof __VLS_export$32;
1268
- type __VLS_WithSlots$29<T, S> = T & {
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$22: {
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$18: {
1396
+ }, __VLS_10$34: {
1397
1397
  state: CollapsiblePanelState;
1398
1398
  };
1399
- type __VLS_Slots$28 = {} & {
1400
- default?: (props: typeof __VLS_1$22) => any;
1399
+ type __VLS_Slots$54 = {} & {
1400
+ default?: (props: typeof __VLS_1$42) => any;
1401
1401
  } & {
1402
- default?: (props: typeof __VLS_10$18) => any;
1402
+ default?: (props: typeof __VLS_10$34) => any;
1403
1403
  };
1404
- declare const __VLS_base$28: vue.DefineComponent<CollapsiblePanelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CollapsiblePanelProps> & Readonly<{}>, {
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$31: __VLS_WithSlots$28<typeof __VLS_base$28, __VLS_Slots$28>;
1410
- declare const _default$13: typeof __VLS_export$31;
1411
- type __VLS_WithSlots$28<T, S> = T & {
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$21: {
1418
+ declare var __VLS_1$41: {
1419
1419
  props: Record<string, any>;
1420
1420
  state: CollapsibleRootState;
1421
- }, __VLS_10$17: {
1421
+ }, __VLS_10$33: {
1422
1422
  state: CollapsibleRootState;
1423
1423
  };
1424
- type __VLS_Slots$27 = {} & {
1425
- default?: (props: typeof __VLS_1$21) => any;
1424
+ type __VLS_Slots$53 = {} & {
1425
+ default?: (props: typeof __VLS_1$41) => any;
1426
1426
  } & {
1427
- default?: (props: typeof __VLS_10$17) => any;
1427
+ default?: (props: typeof __VLS_10$33) => any;
1428
1428
  };
1429
- declare const __VLS_base$27: vue.DefineComponent<CollapsibleRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & {
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$27: vue.DefineComponent<CollapsibleRootProps, {}, {}, {
1435
1435
  as: string | vue.Component;
1436
1436
  defaultOpen: boolean;
1437
1437
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1438
- declare const __VLS_export$30: __VLS_WithSlots$27<typeof __VLS_base$27, __VLS_Slots$27>;
1439
- declare const _default$14: typeof __VLS_export$30;
1440
- type __VLS_WithSlots$27<T, S> = T & {
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$20: {
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$16: {
1506
+ }, __VLS_10$32: {
1507
1507
  state: vue.Ref<CollapsibleRootState, CollapsibleRootState>;
1508
1508
  };
1509
- type __VLS_Slots$26 = {} & {
1510
- default?: (props: typeof __VLS_1$20) => any;
1509
+ type __VLS_Slots$52 = {} & {
1510
+ default?: (props: typeof __VLS_1$40) => any;
1511
1511
  } & {
1512
- default?: (props: typeof __VLS_10$16) => any;
1512
+ default?: (props: typeof __VLS_10$32) => any;
1513
1513
  };
1514
- declare const __VLS_base$26: vue.DefineComponent<CollapsibleTriggerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CollapsibleTriggerProps> & Readonly<{}>, {
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$29: __VLS_WithSlots$26<typeof __VLS_base$26, __VLS_Slots$26>;
1519
- declare const _default$15: typeof __VLS_export$29;
1520
- type __VLS_WithSlots$26<T, S> = T & {
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$19: {};
1549
- type __VLS_Slots$25 = {} & {
1550
- default?: (props: typeof __VLS_1$19) => any;
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$25: vue.DefineComponent<CSPProviderProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CSPProviderProps> & Readonly<{}>, {
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$28: __VLS_WithSlots$25<typeof __VLS_base$25, __VLS_Slots$25>;
1556
- declare const _default$9: typeof __VLS_export$28;
1557
- type __VLS_WithSlots$25<T, S> = T & {
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$18: {};
1565
- type __VLS_Slots$24 = {} & {
1566
- default?: (props: typeof __VLS_1$18) => any;
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$24: vue.DefineComponent<DirectionProviderProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<DirectionProviderProps> & Readonly<{}>, {
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$27: __VLS_WithSlots$24<typeof __VLS_base$24, __VLS_Slots$24>;
1572
- declare const _default$16: typeof __VLS_export$27;
1573
- type __VLS_WithSlots$24<T, S> = T & {
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$17: {
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$23 = {} & {
1604
- default?: (props: typeof __VLS_1$17) => any;
1603
+ type __VLS_Slots$49 = {} & {
1604
+ default?: (props: typeof __VLS_1$37) => any;
1605
1605
  };
1606
- declare const __VLS_base$23: vue.DefineComponent<FieldControlProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
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$23: vue.DefineComponent<FieldControlProps, {}, {}, {},
1612
1612
  as: string | vue.Component;
1613
1613
  autofocus: boolean;
1614
1614
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1615
- declare const __VLS_export$26: __VLS_WithSlots$23<typeof __VLS_base$23, __VLS_Slots$23>;
1616
- declare const _default$17: typeof __VLS_export$26;
1617
- type __VLS_WithSlots$23<T, S> = T & {
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$16: {
1663
+ declare var __VLS_1$36: {
1664
1664
  props: Record<string, any>;
1665
1665
  state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
1666
- }, __VLS_10$15: {
1666
+ }, __VLS_10$31: {
1667
1667
  state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
1668
1668
  };
1669
- type __VLS_Slots$22 = {} & {
1670
- default?: (props: typeof __VLS_1$16) => any;
1669
+ type __VLS_Slots$48 = {} & {
1670
+ default?: (props: typeof __VLS_1$36) => any;
1671
1671
  } & {
1672
- default?: (props: typeof __VLS_10$15) => any;
1672
+ default?: (props: typeof __VLS_10$31) => any;
1673
1673
  };
1674
- declare const __VLS_base$22: vue.DefineComponent<FieldDescriptionProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldDescriptionProps> & Readonly<{}>, {
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$25: __VLS_WithSlots$22<typeof __VLS_base$22, __VLS_Slots$22>;
1678
- declare const _default$18: typeof __VLS_export$25;
1679
- type __VLS_WithSlots$22<T, S> = T & {
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
  };
@@ -1688,333 +1688,1667 @@ interface FieldErrorState extends FieldRootState {
1688
1688
  }
1689
1689
  interface FieldErrorProps extends BaseUIComponentProps<FieldErrorState> {
1690
1690
  /**
1691
- * The `id` attribute of the error element.
1691
+ * The `id` attribute of the error element.
1692
+ */
1693
+ id?: string;
1694
+ /**
1695
+ * Determines whether to show the error message.
1696
+ * Can be `true` (always show), a `ValidityState` key, or unset
1697
+ * (show when field is invalid).
1698
+ */
1699
+ match?: boolean | keyof ValidityState;
1700
+ }
1701
+ declare var __VLS_1$35: {
1702
+ ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
1703
+ props: Record<string, any>;
1704
+ state: FieldErrorState;
1705
+ message: string | string[];
1706
+ }, __VLS_10$30: {};
1707
+ type __VLS_Slots$47 = {} & {
1708
+ default?: (props: typeof __VLS_1$35) => any;
1709
+ } & {
1710
+ default?: (props: typeof __VLS_10$30) => any;
1711
+ };
1712
+ declare const __VLS_base$47: vue.DefineComponent<FieldErrorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldErrorProps> & Readonly<{}>, {
1713
+ as: string | vue.Component;
1714
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
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
+ new (): {
1719
+ $slots: S;
1720
+ };
1721
+ }; //# sourceMappingURL=FieldError.vue.d.ts.map
1722
+ //#endregion
1723
+ //#region src/field/item/FieldItem.vue.d.ts
1724
+ type FieldItemState = FieldRootState;
1725
+ interface FieldItemProps extends BaseUIComponentProps<FieldItemState> {
1726
+ /**
1727
+ * Whether the wrapped control should ignore user interaction.
1728
+ * The `disabled` prop on `<FieldRoot>` takes precedence over this.
1729
+ * @default false
1730
+ */
1731
+ disabled?: boolean;
1732
+ }
1733
+ declare var __VLS_8$5: {
1734
+ props: Record<string, any>;
1735
+ state: FieldRootState;
1736
+ }, __VLS_16$3: {
1737
+ state: FieldRootState;
1738
+ };
1739
+ type __VLS_Slots$46 = {} & {
1740
+ default?: (props: typeof __VLS_8$5) => any;
1741
+ } & {
1742
+ default?: (props: typeof __VLS_16$3) => any;
1743
+ };
1744
+ declare const __VLS_base$46: vue.DefineComponent<FieldItemProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldItemProps> & Readonly<{}>, {
1745
+ disabled: boolean;
1746
+ as: string | vue.Component;
1747
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
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
+ new (): {
1752
+ $slots: S;
1753
+ };
1754
+ }; //# sourceMappingURL=FieldItem.vue.d.ts.map
1755
+ //#endregion
1756
+ //#region src/field/item/FieldItemContext.d.ts
1757
+ interface FieldItemContext {
1758
+ disabled: Ref<boolean>;
1759
+ }
1760
+ declare const fieldItemContextKey: InjectionKey<FieldItemContext>;
1761
+ declare function useFieldItemContext(): FieldItemContext;
1762
+ //#endregion
1763
+ //#region src/field/label/FieldLabel.vue.d.ts
1764
+ type FieldLabelState = FieldRootState;
1765
+ interface FieldLabelProps extends BaseUIComponentProps<FieldLabelState> {
1766
+ /**
1767
+ * The `id` attribute of the label element.
1768
+ */
1769
+ id?: string;
1770
+ /**
1771
+ * Whether the component renders a native `<label>` element.
1772
+ * @default true
1773
+ */
1774
+ nativeLabel?: boolean;
1775
+ }
1776
+ declare var __VLS_1$34: {
1777
+ props: Record<string, any>;
1778
+ state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
1779
+ }, __VLS_10$29: {
1780
+ state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
1781
+ };
1782
+ type __VLS_Slots$45 = {} & {
1783
+ default?: (props: typeof __VLS_1$34) => any;
1784
+ } & {
1785
+ default?: (props: typeof __VLS_10$29) => any;
1786
+ };
1787
+ declare const __VLS_base$45: vue.DefineComponent<FieldLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldLabelProps> & Readonly<{}>, {
1788
+ as: string | vue.Component;
1789
+ nativeLabel: boolean;
1790
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
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
+ new (): {
1795
+ $slots: S;
1796
+ };
1797
+ }; //# sourceMappingURL=FieldLabel.vue.d.ts.map
1798
+ //#endregion
1799
+ //#region src/field/root/FieldRootContext.d.ts
1800
+ interface FieldRootContext {
1801
+ invalid: Readonly<Ref<boolean | undefined>>;
1802
+ name: Readonly<Ref<string | undefined>>;
1803
+ validityData: Readonly<Ref<FieldValidityData>>;
1804
+ setValidityData: (data: FieldValidityData) => void;
1805
+ disabled: Readonly<Ref<boolean>>;
1806
+ touched: Readonly<Ref<boolean>>;
1807
+ setTouched: (value: boolean) => void;
1808
+ dirty: Readonly<Ref<boolean>>;
1809
+ setDirty: (value: boolean) => void;
1810
+ filled: Readonly<Ref<boolean>>;
1811
+ setFilled: (value: boolean) => void;
1812
+ focused: Readonly<Ref<boolean>>;
1813
+ setFocused: (value: boolean) => void;
1814
+ validate: (value: unknown, formValues: Record<string, unknown>) => string | string[] | null | Promise<string | string[] | null>;
1815
+ validationMode: Readonly<Ref<FormValidationMode>>;
1816
+ validationDebounceTime: Readonly<Ref<number>>;
1817
+ shouldValidateOnChange: () => boolean;
1818
+ state: Readonly<Ref<FieldRootState>>;
1819
+ markedDirtyRef: Ref<boolean>;
1820
+ validation: UseFieldValidationReturnValue;
1821
+ }
1822
+ declare const fieldRootContextKey: InjectionKey<FieldRootContext>;
1823
+ declare function useFieldRootContext(optional?: true): FieldRootContext;
1824
+ declare function useFieldRootContext(optional: false): FieldRootContext;
1825
+ //#endregion
1826
+ //#region src/field/validity/FieldValidity.vue.d.ts
1827
+ interface FieldValidityState extends Omit<FieldValidityData, 'state'> {
1828
+ validity: FieldValidityData['state'];
1829
+ transitionStatus: TransitionStatus;
1830
+ }
1831
+ declare var __VLS_1$33: {
1832
+ validity: FieldValidityData["state"];
1833
+ transitionStatus: TransitionStatus;
1834
+ value: unknown;
1835
+ error: string;
1836
+ errors: string[];
1837
+ initialValue: unknown;
1838
+ };
1839
+ type __VLS_Slots$44 = {} & {
1840
+ default?: (props: typeof __VLS_1$33) => any;
1841
+ };
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
+ new (): {
1847
+ $slots: S;
1848
+ };
1849
+ }; //# sourceMappingURL=FieldValidity.vue.d.ts.map
1850
+ //#endregion
1851
+ //#region src/fieldset/legend/FieldsetLegend.vue.d.ts
1852
+ interface FieldsetLegendState {
1853
+ /**
1854
+ * Whether the component should ignore user interaction.
1855
+ */
1856
+ disabled: boolean;
1857
+ }
1858
+ interface FieldsetLegendProps extends BaseUIComponentProps<FieldsetLegendState> {
1859
+ /**
1860
+ * The `id` attribute of the legend element.
1861
+ * When set, overrides the auto-generated id.
1862
+ */
1863
+ id?: string;
1864
+ }
1865
+ declare var __VLS_1$32: {
1866
+ props: Record<string, any>;
1867
+ state: FieldsetLegendState;
1868
+ }, __VLS_10$28: {
1869
+ state: FieldsetLegendState;
1870
+ };
1871
+ type __VLS_Slots$43 = {} & {
1872
+ default?: (props: typeof __VLS_1$32) => any;
1873
+ } & {
1874
+ default?: (props: typeof __VLS_10$28) => any;
1875
+ };
1876
+ declare const __VLS_base$43: vue.DefineComponent<FieldsetLegendProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldsetLegendProps> & Readonly<{}>, {
1877
+ as: string | vue.Component;
1878
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
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
+ new (): {
1883
+ $slots: S;
1884
+ };
1885
+ }; //# sourceMappingURL=FieldsetLegend.vue.d.ts.map
1886
+ //#endregion
1887
+ //#region src/fieldset/root/FieldsetRoot.vue.d.ts
1888
+ interface FieldsetRootState {
1889
+ /**
1890
+ * Whether the component should ignore user interaction.
1891
+ */
1892
+ disabled: boolean;
1893
+ }
1894
+ interface FieldsetRootProps extends BaseUIComponentProps<FieldsetRootState> {
1895
+ /**
1896
+ * Whether the component should ignore user interaction.
1897
+ * @default false
1898
+ */
1899
+ disabled?: boolean;
1900
+ }
1901
+ declare var __VLS_1$31: {
1902
+ props: Record<string, any>;
1903
+ state: FieldsetRootState;
1904
+ }, __VLS_10$27: {
1905
+ state: FieldsetRootState;
1906
+ };
1907
+ type __VLS_Slots$42 = {} & {
1908
+ default?: (props: typeof __VLS_1$31) => any;
1909
+ } & {
1910
+ default?: (props: typeof __VLS_10$27) => any;
1911
+ };
1912
+ declare const __VLS_base$42: vue.DefineComponent<FieldsetRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldsetRootProps> & Readonly<{}>, {
1913
+ disabled: boolean;
1914
+ as: string | vue.Component;
1915
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
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
+ new (): {
1920
+ $slots: S;
1921
+ };
1922
+ }; //# sourceMappingURL=FieldsetRoot.vue.d.ts.map
1923
+ //#endregion
1924
+ //#region src/fieldset/root/FieldsetRootContext.d.ts
1925
+ interface FieldsetRootContext {
1926
+ legendId: Ref<string | undefined>;
1927
+ setLegendId: (id: string | undefined) => void;
1928
+ disabled: Ref<boolean>;
1929
+ }
1930
+ declare const fieldsetRootContextKey: InjectionKey<FieldsetRootContext>;
1931
+ declare function useFieldsetRootContext(optional: true): FieldsetRootContext | undefined;
1932
+ declare function useFieldsetRootContext(optional?: false): FieldsetRootContext;
1933
+ //#endregion
1934
+ //#region src/form/Form.vue.d.ts
1935
+ interface FormActions {
1936
+ validate: (fieldName?: string) => void;
1937
+ }
1938
+ interface FormState {}
1939
+ interface FormProps extends BaseUIComponentProps<FormState> {
1940
+ /**
1941
+ * Determines when the form should be validated.
1942
+ *
1943
+ * - `onSubmit` (default): validates on submit, re-validates on change after submission.
1944
+ * - `onBlur`: validates when a control loses focus.
1945
+ * - `onChange`: validates on every change.
1946
+ *
1947
+ * @default 'onSubmit'
1948
+ */
1949
+ validationMode?: FormValidationMode;
1950
+ /**
1951
+ * Validation errors returned externally (e.g. from a server).
1952
+ * Keys correspond to the `name` attribute on `<FieldRoot>`.
1953
+ */
1954
+ errors?: FormErrors;
1955
+ /**
1956
+ * Whether native form validation is disabled.
1957
+ * @default true
1958
+ */
1959
+ noValidate?: boolean;
1960
+ }
1961
+ declare var __VLS_1$30: {
1962
+ props: Record<string, any>;
1963
+ state: FormState;
1964
+ actions: {
1965
+ validate: (fieldName?: string) => void;
1966
+ };
1967
+ }, __VLS_10$26: {
1968
+ state: FormState;
1969
+ actions: {
1970
+ validate: (fieldName?: string) => void;
1971
+ };
1972
+ };
1973
+ type __VLS_Slots$41 = {} & {
1974
+ default?: (props: typeof __VLS_1$30) => any;
1975
+ } & {
1976
+ default?: (props: typeof __VLS_10$26) => any;
1977
+ };
1978
+ declare const __VLS_base$41: vue.DefineComponent<FormProps, {
1979
+ actions: {
1980
+ validate: (fieldName?: string) => void;
1981
+ };
1982
+ }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1983
+ formSubmit: (formValues: Record<string, unknown>, event: Event) => any;
1984
+ }, string, vue.PublicProps, Readonly<FormProps> & Readonly<{
1985
+ onFormSubmit?: ((formValues: Record<string, unknown>, event: Event) => any) | undefined;
1986
+ }>, {
1987
+ as: string | vue.Component;
1988
+ validationMode: FormValidationMode;
1989
+ noValidate: boolean;
1990
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
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
+ new (): {
1995
+ $slots: S;
1996
+ };
1997
+ }; //# sourceMappingURL=Form.vue.d.ts.map
1998
+ //#endregion
1999
+ //#region src/input/Input.vue.d.ts
2000
+ type InputState = FieldControlState;
2001
+ interface InputProps extends FieldControlProps {}
2002
+ declare var __VLS_11: {
2003
+ ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
2004
+ props: Record<string, any>;
2005
+ state: FieldRootState;
2006
+ };
2007
+ type __VLS_Slots$40 = {} & {
2008
+ default?: (props: typeof __VLS_11) => any;
2009
+ };
2010
+ declare const __VLS_base$40: vue.DefineComponent<InputProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2011
+ valueChange: (value: string, event: Event) => any;
2012
+ }, string, vue.PublicProps, Readonly<InputProps> & Readonly<{
2013
+ onValueChange?: ((value: string, event: Event) => any) | undefined;
2014
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2015
+ declare const __VLS_export$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
+ new (): {
2019
+ $slots: S;
2020
+ };
2021
+ }; //# sourceMappingURL=Input.vue.d.ts.map
2022
+ //#endregion
2023
+ //#region src/input/InputDataAttributes.d.ts
2024
+ declare enum InputDataAttributes {
2025
+ /**
2026
+ * Present when the input is disabled.
2027
+ */
2028
+ disabled = "data-disabled",
2029
+ /**
2030
+ * Present when the input is in a valid state (when wrapped in FieldRoot).
2031
+ */
2032
+ valid = "data-valid",
2033
+ /**
2034
+ * Present when the input is in an invalid state (when wrapped in FieldRoot).
2035
+ */
2036
+ invalid = "data-invalid",
2037
+ /**
2038
+ * Present when the input has been touched (when wrapped in FieldRoot).
2039
+ */
2040
+ touched = "data-touched",
2041
+ /**
2042
+ * Present when the input's value has changed (when wrapped in FieldRoot).
2043
+ */
2044
+ dirty = "data-dirty",
2045
+ /**
2046
+ * Present when the input is filled (when wrapped in FieldRoot).
2047
+ */
2048
+ filled = "data-filled",
2049
+ /**
2050
+ * Present when the input is focused (when wrapped in FieldRoot).
2051
+ */
2052
+ focused = "data-focused"
2053
+ }
2054
+ //#endregion
2055
+ //#region src/merge-props/mergeProps.d.ts
2056
+ declare function makeEventPreventable<T extends Event>(event: T): BaseUIEvent<T>;
2057
+ declare function mergeClasses(ourClass: string | undefined, theirClass: string | undefined): string | undefined;
2058
+ declare function mergeObjects<A extends object | undefined, B extends object | undefined>(a: A, b: B): NonNullable<A> | NonNullable<B> | (A & B) | undefined;
2059
+ /**
2060
+ * Merges Vue prop/attr objects using Base UI Vue semantics.
2061
+ *
2062
+ * Later props overwrite earlier ones, except for:
2063
+ * - Event listeners: merged so the rightmost listener runs first and can prevent earlier listeners.
2064
+ * - `class`: merged in rightmost-first order.
2065
+ * - `style`: merged using Vue's native style merging.
2066
+ */
2067
+ declare function mergeProps(...args: (Record<string, any> | undefined)[]): Record<string, any>;
2068
+ /**
2069
+ * Merges an array of Vue prop/attr objects using the same semantics as {@link mergeProps}.
2070
+ *
2071
+ * Useful when prop layers are assembled dynamically before being bound with `v-bind`.
2072
+ */
2073
+ declare function mergePropsN(props: readonly (Record<string, any> | undefined)[]): Record<string, any>;
2074
+ //#endregion
2075
+ //#region src/meter/root/MeterRoot.vue.d.ts
2076
+ interface MeterRootState {}
2077
+ interface MeterRootProps extends BaseUIComponentProps<MeterRootState> {
2078
+ /**
2079
+ * A string value that provides a user-friendly name for `aria-valuenow`,
2080
+ * the current value of the meter.
2081
+ */
2082
+ ariaValuetext?: string;
2083
+ /**
2084
+ * Options to format the value.
2085
+ */
2086
+ format?: Intl.NumberFormatOptions;
2087
+ /**
2088
+ * A function that returns a string value that provides a human-readable
2089
+ * text alternative for `aria-valuenow`, the current value of the meter.
2090
+ */
2091
+ getAriaValueText?: (formattedValue: string, value: number) => string;
2092
+ /**
2093
+ * The locale used by `Intl.NumberFormat` when formatting the value.
2094
+ * Defaults to the user's runtime locale.
2095
+ */
2096
+ locale?: Intl.LocalesArgument;
2097
+ /**
2098
+ * The maximum value.
2099
+ * @default 100
2100
+ */
2101
+ max?: number;
2102
+ /**
2103
+ * The minimum value.
2104
+ * @default 0
2105
+ */
2106
+ min?: number;
2107
+ /**
2108
+ * The current value.
2109
+ */
2110
+ value: number;
2111
+ }
2112
+ declare var __VLS_1$29: {
2113
+ props: Record<string, any>;
2114
+ state: MeterRootState;
2115
+ }, __VLS_10$25: {
2116
+ state: MeterRootState;
2117
+ };
2118
+ type __VLS_Slots$39 = {} & {
2119
+ default?: (props: typeof __VLS_1$29) => any;
2120
+ } & {
2121
+ default?: (props: typeof __VLS_10$25) => any;
2122
+ };
2123
+ declare const __VLS_base$39: vue.DefineComponent<MeterRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterRootProps> & Readonly<{}>, {
2124
+ as: string | vue.Component;
2125
+ min: number;
2126
+ max: number;
2127
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2128
+ declare const __VLS_export$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
+ new (): {
2132
+ $slots: S;
2133
+ };
2134
+ }; //# sourceMappingURL=MeterRoot.vue.d.ts.map
2135
+ //#endregion
2136
+ //#region src/meter/indicator/MeterIndicator.vue.d.ts
2137
+ interface MeterIndicatorState extends MeterRootState {}
2138
+ interface MeterIndicatorProps extends BaseUIComponentProps<MeterIndicatorState> {}
2139
+ declare var __VLS_1$28: {
2140
+ props: Record<string, any>;
2141
+ state: MeterIndicatorState;
2142
+ }, __VLS_10$24: {
2143
+ state: MeterIndicatorState;
2144
+ };
2145
+ type __VLS_Slots$38 = {} & {
2146
+ default?: (props: typeof __VLS_1$28) => any;
2147
+ } & {
2148
+ default?: (props: typeof __VLS_10$24) => any;
2149
+ };
2150
+ declare const __VLS_base$38: vue.DefineComponent<MeterIndicatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterIndicatorProps> & Readonly<{}>, {
2151
+ as: string | vue.Component;
2152
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2153
+ declare const __VLS_export$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
+ new (): {
2157
+ $slots: S;
2158
+ };
2159
+ }; //# sourceMappingURL=MeterIndicator.vue.d.ts.map
2160
+ //#endregion
2161
+ //#region src/meter/label/MeterLabel.vue.d.ts
2162
+ interface MeterLabelState extends MeterRootState {}
2163
+ interface MeterLabelProps extends BaseUIComponentProps<MeterLabelState> {
2164
+ /**
2165
+ * The id of the label element. When provided, it overrides the automatically
2166
+ * generated one.
2167
+ */
2168
+ id?: string;
2169
+ }
2170
+ declare var __VLS_1$27: {
2171
+ props: Record<string, any>;
2172
+ state: MeterLabelState;
2173
+ }, __VLS_10$23: {
2174
+ state: MeterLabelState;
2175
+ };
2176
+ type __VLS_Slots$37 = {} & {
2177
+ default?: (props: typeof __VLS_1$27) => any;
2178
+ } & {
2179
+ default?: (props: typeof __VLS_10$23) => any;
2180
+ };
2181
+ declare const __VLS_base$37: vue.DefineComponent<MeterLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterLabelProps> & Readonly<{}>, {
2182
+ as: string | vue.Component;
2183
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2184
+ declare const __VLS_export$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
+ new (): {
2188
+ $slots: S;
2189
+ };
2190
+ }; //# sourceMappingURL=MeterLabel.vue.d.ts.map
2191
+ //#endregion
2192
+ //#region src/meter/root/MeterRootContext.d.ts
2193
+ interface MeterRootContext {
2194
+ /**
2195
+ * The formatted current value of the meter.
2196
+ */
2197
+ formattedValue: Ref<string>;
2198
+ /**
2199
+ * The maximum allowed value of the meter.
2200
+ */
2201
+ max: Ref<number>;
2202
+ /**
2203
+ * The minimum allowed value of the meter.
2204
+ */
2205
+ min: Ref<number>;
2206
+ /**
2207
+ * The raw current value of the meter.
2208
+ */
2209
+ value: Ref<number>;
2210
+ /**
2211
+ * Registers the DOM id of the `<MeterLabel>` for `aria-labelledby`.
2212
+ */
2213
+ setLabelId: (id: string | undefined) => void;
2214
+ }
2215
+ declare const meterRootContextKey: InjectionKey<MeterRootContext>;
2216
+ declare function useMeterRootContext(optional: true): MeterRootContext | undefined;
2217
+ declare function useMeterRootContext(optional?: false): MeterRootContext;
2218
+ //#endregion
2219
+ //#region src/meter/track/MeterTrack.vue.d.ts
2220
+ interface MeterTrackState extends MeterRootState {}
2221
+ interface MeterTrackProps extends BaseUIComponentProps<MeterTrackState> {}
2222
+ declare var __VLS_1$26: {
2223
+ props: Record<string, any>;
2224
+ state: MeterTrackState;
2225
+ }, __VLS_10$22: {
2226
+ state: MeterTrackState;
2227
+ };
2228
+ type __VLS_Slots$36 = {} & {
2229
+ default?: (props: typeof __VLS_1$26) => any;
2230
+ } & {
2231
+ default?: (props: typeof __VLS_10$22) => any;
2232
+ };
2233
+ declare const __VLS_base$36: vue.DefineComponent<MeterTrackProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterTrackProps> & Readonly<{}>, {
2234
+ as: string | vue.Component;
2235
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2236
+ declare const __VLS_export$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
+ new (): {
2240
+ $slots: S;
2241
+ };
2242
+ }; //# sourceMappingURL=MeterTrack.vue.d.ts.map
2243
+ //#endregion
2244
+ //#region src/meter/value/MeterValue.vue.d.ts
2245
+ interface MeterValueState extends MeterRootState {}
2246
+ interface MeterValueProps extends BaseUIComponentProps<MeterValueState> {}
2247
+ interface MeterValueSlotProps {
2248
+ formattedValue: string;
2249
+ value: number;
2250
+ }
2251
+ interface MeterValueRenderlessSlotProps extends MeterValueSlotProps {
2252
+ props: Record<string, unknown>;
2253
+ state: MeterValueState;
2254
+ }
2255
+ type __VLS_Slots$35 = {
2256
+ default?: (props: MeterValueSlotProps | MeterValueRenderlessSlotProps) => unknown;
2257
+ };
2258
+ declare const __VLS_base$35: vue.DefineComponent<MeterValueProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<MeterValueProps> & Readonly<{}>, {
2259
+ as: string | vue.Component;
2260
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2261
+ declare const __VLS_export$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
+ new (): {
2265
+ $slots: S;
2266
+ };
2267
+ }; //# sourceMappingURL=MeterValue.vue.d.ts.map
2268
+ //#endregion
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 {
2329
+ /**
2330
+ * The raw numeric value of the field.
2331
+ */
2332
+ value: number | null;
2333
+ /**
2334
+ * The formatted string value presented in the input element.
2335
+ */
2336
+ inputValue: string;
2337
+ /**
2338
+ * Whether the user must enter a value before submitting a form.
2339
+ */
2340
+ required: boolean;
2341
+ /**
2342
+ * Whether the component should ignore user interaction.
2343
+ */
2344
+ disabled: boolean;
2345
+ /**
2346
+ * Whether the user should be unable to change the field value.
2347
+ */
2348
+ readOnly: boolean;
2349
+ /**
2350
+ * Whether the user is currently scrubbing the field.
2351
+ */
2352
+ scrubbing: boolean;
2353
+ }
2354
+ interface NumberFieldRootProps extends BaseUIComponentProps<NumberFieldRootState> {
2355
+ /**
2356
+ * The id of the input element.
2357
+ */
2358
+ id?: string;
2359
+ /**
2360
+ * The minimum value of the input element.
2361
+ */
2362
+ min?: number;
2363
+ /**
2364
+ * The maximum value of the input element.
2365
+ */
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;
2447
+ }
2448
+ declare var __VLS_7$1: {
2449
+ state: NumberFieldRootState;
2450
+ }, __VLS_9$1: {
2451
+ ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
2452
+ props: Record<string, any>;
2453
+ state: NumberFieldRootState;
2454
+ };
2455
+ type __VLS_Slots$34 = {} & {
2456
+ default?: (props: typeof __VLS_7$1) => any;
2457
+ } & {
2458
+ default?: (props: typeof __VLS_9$1) => any;
2459
+ };
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;
2470
+ as: string | vue.Component;
2471
+ step: number | "any";
2472
+ allowOutOfRange: boolean;
2473
+ smallStep: number;
2474
+ largeStep: number;
2475
+ allowWheelScrub: boolean;
2476
+ snapOnStep: boolean;
2477
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
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 & {
2481
+ new (): {
2482
+ $slots: S;
2483
+ };
2484
+ }; //# sourceMappingURL=NumberFieldRoot.vue.d.ts.map
2485
+ //#endregion
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;
2493
+ props: Record<string, any>;
2494
+ state: NumberFieldRootState;
2495
+ }, __VLS_10$21: {
2496
+ state: NumberFieldRootState;
2497
+ };
2498
+ type __VLS_Slots$33 = {} & {
2499
+ default?: (props: typeof __VLS_1$25) => any;
2500
+ } & {
2501
+ default?: (props: typeof __VLS_10$21) => any;
2502
+ };
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;
2506
+ as: string | vue.Component;
2507
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
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 & {
2511
+ new (): {
2512
+ $slots: S;
2513
+ };
2514
+ }; //# sourceMappingURL=NumberFieldDecrement.vue.d.ts.map
2515
+ //#endregion
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;
2987
+ }
2988
+ declare var __VLS_1$17: {
2989
+ props: Record<string, any>;
2990
+ state: ProgressRootState;
2991
+ }, __VLS_10$15: {
2992
+ state: ProgressRootState;
2993
+ };
2994
+ type __VLS_Slots$23 = {} & {
2995
+ default?: (props: typeof __VLS_1$17) => any;
2996
+ } & {
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`.
1692
3099
  */
1693
- id?: string;
3100
+ formattedValue: string | 'indeterminate';
1694
3101
  /**
1695
- * Determines whether to show the error message.
1696
- * Can be `true` (always show), a `ValidityState` key, or unset
1697
- * (show when field is invalid).
3102
+ * Raw numeric value, or `null` when indeterminate.
1698
3103
  */
1699
- match?: boolean | keyof ValidityState;
3104
+ value: number | null;
1700
3105
  }
1701
- declare var __VLS_1$15: {
1702
- ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
1703
- props: Record<string, any>;
1704
- state: FieldErrorState;
1705
- message: string | string[];
1706
- }, __VLS_10$14: {};
1707
- type __VLS_Slots$21 = {} & {
1708
- default?: (props: typeof __VLS_1$15) => any;
1709
- } & {
1710
- default?: (props: typeof __VLS_10$14) => any;
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;
1711
3112
  };
1712
- declare const __VLS_base$21: vue.DefineComponent<FieldErrorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldErrorProps> & Readonly<{}>, {
3113
+ declare const __VLS_base$21: vue.DefineComponent<ProgressValueProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ProgressValueProps> & Readonly<{}>, {
1713
3114
  as: string | vue.Component;
1714
3115
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1715
3116
  declare const __VLS_export$24: __VLS_WithSlots$21<typeof __VLS_base$21, __VLS_Slots$21>;
1716
- declare const _default$19: typeof __VLS_export$24;
3117
+ declare const _default$46: typeof __VLS_export$24;
1717
3118
  type __VLS_WithSlots$21<T, S> = T & {
1718
3119
  new (): {
1719
3120
  $slots: S;
1720
3121
  };
1721
- }; //# sourceMappingURL=FieldError.vue.d.ts.map
3122
+ }; //# sourceMappingURL=ProgressValue.vue.d.ts.map
1722
3123
  //#endregion
1723
- //#region src/field/item/FieldItem.vue.d.ts
1724
- type FieldItemState = FieldRootState;
1725
- interface FieldItemProps extends BaseUIComponentProps<FieldItemState> {
1726
- /**
1727
- * Whether the wrapped control should ignore user interaction.
1728
- * The `disabled` prop on `<FieldRoot>` takes precedence over this.
1729
- * @default false
1730
- */
1731
- disabled?: boolean;
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;
1732
3134
  }
1733
- declare var __VLS_8$4: {
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;
1734
3141
  props: Record<string, any>;
1735
- state: FieldRootState;
1736
- }, __VLS_16$1: {
1737
- state: FieldRootState;
1738
- };
3142
+ state: ScrollAreaRootState;
3143
+ }, __VLS_10$13: {};
1739
3144
  type __VLS_Slots$20 = {} & {
1740
- default?: (props: typeof __VLS_8$4) => any;
3145
+ default?: (props: typeof __VLS_1$15) => any;
1741
3146
  } & {
1742
- default?: (props: typeof __VLS_16$1) => any;
3147
+ default?: (props: typeof __VLS_10$13) => any;
1743
3148
  };
1744
- declare const __VLS_base$20: vue.DefineComponent<FieldItemProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldItemProps> & Readonly<{}>, {
1745
- disabled: boolean;
3149
+ declare const __VLS_base$20: vue.DefineComponent<ScrollAreaContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaContentProps> & Readonly<{}>, {
1746
3150
  as: string | vue.Component;
1747
3151
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1748
3152
  declare const __VLS_export$23: __VLS_WithSlots$20<typeof __VLS_base$20, __VLS_Slots$20>;
1749
- declare const _default$20: typeof __VLS_export$23;
3153
+ declare const _default$47: typeof __VLS_export$23;
1750
3154
  type __VLS_WithSlots$20<T, S> = T & {
1751
3155
  new (): {
1752
3156
  $slots: S;
1753
3157
  };
1754
- }; //# sourceMappingURL=FieldItem.vue.d.ts.map
1755
- //#endregion
1756
- //#region src/field/item/FieldItemContext.d.ts
1757
- interface FieldItemContext {
1758
- disabled: Ref<boolean>;
1759
- }
1760
- declare const fieldItemContextKey: InjectionKey<FieldItemContext>;
1761
- declare function useFieldItemContext(): FieldItemContext;
3158
+ }; //# sourceMappingURL=ScrollAreaContent.vue.d.ts.map
1762
3159
  //#endregion
1763
- //#region src/field/label/FieldLabel.vue.d.ts
1764
- type FieldLabelState = FieldRootState;
1765
- interface FieldLabelProps extends BaseUIComponentProps<FieldLabelState> {
1766
- /**
1767
- * The `id` attribute of the label element.
1768
- */
1769
- id?: string;
1770
- /**
1771
- * Whether the component renders a native `<label>` element.
1772
- * @default true
1773
- */
1774
- nativeLabel?: boolean;
1775
- }
3160
+ //#region src/scroll-area/corner/ScrollAreaCorner.vue.d.ts
3161
+ interface ScrollAreaCornerState {}
3162
+ interface ScrollAreaCornerProps extends BaseUIComponentProps<ScrollAreaCornerState> {}
1776
3163
  declare var __VLS_1$14: {
1777
- props: Record<string, any>;
1778
- state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
1779
- }, __VLS_10$13: {
1780
- state: Readonly<vue.Ref<FieldRootState, FieldRootState>>;
1781
- };
3164
+ ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
3165
+ props: Record<string, any>;
3166
+ state: ScrollAreaCornerState;
3167
+ };
1782
3168
  type __VLS_Slots$19 = {} & {
1783
3169
  default?: (props: typeof __VLS_1$14) => any;
1784
- } & {
1785
- default?: (props: typeof __VLS_10$13) => any;
1786
3170
  };
1787
- declare const __VLS_base$19: vue.DefineComponent<FieldLabelProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldLabelProps> & Readonly<{}>, {
3171
+ declare const __VLS_base$19: vue.DefineComponent<ScrollAreaCornerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaCornerProps> & Readonly<{}>, {
1788
3172
  as: string | vue.Component;
1789
- nativeLabel: boolean;
1790
3173
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1791
3174
  declare const __VLS_export$22: __VLS_WithSlots$19<typeof __VLS_base$19, __VLS_Slots$19>;
1792
- declare const _default$21: typeof __VLS_export$22;
3175
+ declare const _default$48: typeof __VLS_export$22;
1793
3176
  type __VLS_WithSlots$19<T, S> = T & {
1794
3177
  new (): {
1795
3178
  $slots: S;
1796
3179
  };
1797
- }; //# sourceMappingURL=FieldLabel.vue.d.ts.map
1798
- //#endregion
1799
- //#region src/field/root/FieldRootContext.d.ts
1800
- interface FieldRootContext {
1801
- invalid: Readonly<Ref<boolean | undefined>>;
1802
- name: Readonly<Ref<string | undefined>>;
1803
- validityData: Readonly<Ref<FieldValidityData>>;
1804
- setValidityData: (data: FieldValidityData) => void;
1805
- disabled: Readonly<Ref<boolean>>;
1806
- touched: Readonly<Ref<boolean>>;
1807
- setTouched: (value: boolean) => void;
1808
- dirty: Readonly<Ref<boolean>>;
1809
- setDirty: (value: boolean) => void;
1810
- filled: Readonly<Ref<boolean>>;
1811
- setFilled: (value: boolean) => void;
1812
- focused: Readonly<Ref<boolean>>;
1813
- setFocused: (value: boolean) => void;
1814
- validate: (value: unknown, formValues: Record<string, unknown>) => string | string[] | null | Promise<string | string[] | null>;
1815
- validationMode: Readonly<Ref<FormValidationMode>>;
1816
- validationDebounceTime: Readonly<Ref<number>>;
1817
- shouldValidateOnChange: () => boolean;
1818
- state: Readonly<Ref<FieldRootState>>;
1819
- markedDirtyRef: Ref<boolean>;
1820
- validation: UseFieldValidationReturnValue;
1821
- }
1822
- declare const fieldRootContextKey: InjectionKey<FieldRootContext>;
1823
- declare function useFieldRootContext(optional?: true): FieldRootContext;
1824
- declare function useFieldRootContext(optional: false): FieldRootContext;
3180
+ }; //# sourceMappingURL=ScrollAreaCorner.vue.d.ts.map
1825
3181
  //#endregion
1826
- //#region src/field/validity/FieldValidity.vue.d.ts
1827
- interface FieldValidityState extends Omit<FieldValidityData, 'state'> {
1828
- validity: FieldValidityData['state'];
1829
- transitionStatus: TransitionStatus;
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
+ }>;
1830
3190
  }
1831
3191
  declare var __VLS_1$13: {
1832
- validity: FieldValidityData["state"];
1833
- transitionStatus: TransitionStatus;
1834
- value: unknown;
1835
- error: string;
1836
- errors: string[];
1837
- initialValue: unknown;
1838
- };
3192
+ ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
3193
+ props: Record<string, any>;
3194
+ state: ScrollAreaRootState;
3195
+ }, __VLS_10$12: {};
1839
3196
  type __VLS_Slots$18 = {} & {
1840
3197
  default?: (props: typeof __VLS_1$13) => any;
3198
+ } & {
3199
+ default?: (props: typeof __VLS_10$12) => any;
1841
3200
  };
1842
- declare const __VLS_base$18: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
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>;
1843
3204
  declare const __VLS_export$21: __VLS_WithSlots$18<typeof __VLS_base$18, __VLS_Slots$18>;
1844
- declare const _default$23: typeof __VLS_export$21;
3205
+ declare const _default$49: typeof __VLS_export$21;
1845
3206
  type __VLS_WithSlots$18<T, S> = T & {
1846
3207
  new (): {
1847
3208
  $slots: S;
1848
3209
  };
1849
- }; //# sourceMappingURL=FieldValidity.vue.d.ts.map
3210
+ }; //# sourceMappingURL=ScrollAreaRoot.vue.d.ts.map
1850
3211
  //#endregion
1851
- //#region src/fieldset/legend/FieldsetLegend.vue.d.ts
1852
- interface FieldsetLegendState {
1853
- /**
1854
- * Whether the component should ignore user interaction.
1855
- */
1856
- disabled: boolean;
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"
1857
3216
  }
1858
- interface FieldsetLegendProps extends BaseUIComponentProps<FieldsetLegendState> {
1859
- /**
1860
- * The `id` attribute of the legend element.
1861
- * When set, overrides the auto-generated id.
1862
- */
1863
- id?: string;
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;
1864
3238
  }
1865
3239
  declare var __VLS_1$12: {
3240
+ ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
1866
3241
  props: Record<string, any>;
1867
- state: FieldsetLegendState;
1868
- }, __VLS_10$12: {
1869
- state: FieldsetLegendState;
1870
- };
3242
+ state: ScrollAreaScrollbarState;
3243
+ }, __VLS_10$11: {};
1871
3244
  type __VLS_Slots$17 = {} & {
1872
3245
  default?: (props: typeof __VLS_1$12) => any;
1873
3246
  } & {
1874
- default?: (props: typeof __VLS_10$12) => any;
3247
+ default?: (props: typeof __VLS_10$11) => any;
1875
3248
  };
1876
- declare const __VLS_base$17: vue.DefineComponent<FieldsetLegendProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldsetLegendProps> & Readonly<{}>, {
3249
+ declare const __VLS_base$17: vue.DefineComponent<ScrollAreaScrollbarProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaScrollbarProps> & Readonly<{}>, {
1877
3250
  as: string | vue.Component;
3251
+ keepMounted: boolean;
3252
+ orientation: "vertical" | "horizontal";
1878
3253
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1879
3254
  declare const __VLS_export$20: __VLS_WithSlots$17<typeof __VLS_base$17, __VLS_Slots$17>;
1880
- declare const _default$24: typeof __VLS_export$20;
3255
+ declare const _default$50: typeof __VLS_export$20;
1881
3256
  type __VLS_WithSlots$17<T, S> = T & {
1882
3257
  new (): {
1883
3258
  $slots: S;
1884
3259
  };
1885
- }; //# sourceMappingURL=FieldsetLegend.vue.d.ts.map
3260
+ }; //# sourceMappingURL=ScrollAreaScrollbar.vue.d.ts.map
1886
3261
  //#endregion
1887
- //#region src/fieldset/root/FieldsetRoot.vue.d.ts
1888
- interface FieldsetRootState {
1889
- /**
1890
- * Whether the component should ignore user interaction.
1891
- */
1892
- disabled: boolean;
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"
1893
3266
  }
1894
- interface FieldsetRootProps extends BaseUIComponentProps<FieldsetRootState> {
1895
- /**
1896
- * Whether the component should ignore user interaction.
1897
- * @default false
1898
- */
1899
- disabled?: boolean;
3267
+ //#endregion
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"
3279
+ }
3280
+ //#endregion
3281
+ //#region src/scroll-area/thumb/ScrollAreaThumb.vue.d.ts
3282
+ interface ScrollAreaThumbState {
3283
+ orientation?: 'horizontal' | 'vertical';
1900
3284
  }
3285
+ interface ScrollAreaThumbProps extends BaseUIComponentProps<ScrollAreaThumbState> {}
1901
3286
  declare var __VLS_1$11: {
1902
- props: Record<string, any>;
1903
- state: FieldsetRootState;
1904
- }, __VLS_10$11: {
1905
- state: FieldsetRootState;
1906
- };
3287
+ ref: ((el: Element | ComponentPublicInstance | null) => void) | undefined;
3288
+ props: Record<string, any>;
3289
+ state: ScrollAreaThumbState;
3290
+ };
1907
3291
  type __VLS_Slots$16 = {} & {
1908
3292
  default?: (props: typeof __VLS_1$11) => any;
1909
- } & {
1910
- default?: (props: typeof __VLS_10$11) => any;
1911
3293
  };
1912
- declare const __VLS_base$16: vue.DefineComponent<FieldsetRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<FieldsetRootProps> & Readonly<{}>, {
1913
- disabled: boolean;
3294
+ declare const __VLS_base$16: vue.DefineComponent<ScrollAreaThumbProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaThumbProps> & Readonly<{}>, {
1914
3295
  as: string | vue.Component;
1915
3296
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1916
3297
  declare const __VLS_export$19: __VLS_WithSlots$16<typeof __VLS_base$16, __VLS_Slots$16>;
1917
- declare const _default$25: typeof __VLS_export$19;
3298
+ declare const _default$51: typeof __VLS_export$19;
1918
3299
  type __VLS_WithSlots$16<T, S> = T & {
1919
3300
  new (): {
1920
3301
  $slots: S;
1921
3302
  };
1922
- }; //# sourceMappingURL=FieldsetRoot.vue.d.ts.map
3303
+ }; //# sourceMappingURL=ScrollAreaThumb.vue.d.ts.map
1923
3304
  //#endregion
1924
- //#region src/fieldset/root/FieldsetRootContext.d.ts
1925
- interface FieldsetRootContext {
1926
- legendId: Ref<string | undefined>;
1927
- setLegendId: (id: string | undefined) => void;
1928
- disabled: Ref<boolean>;
3305
+ //#region src/scroll-area/thumb/ScrollAreaThumbDataAttributes.d.ts
3306
+ declare enum ScrollAreaThumbDataAttributes {
3307
+ orientation = "data-orientation"
1929
3308
  }
1930
- declare const fieldsetRootContextKey: InjectionKey<FieldsetRootContext>;
1931
- declare function useFieldsetRootContext(optional: true): FieldsetRootContext | undefined;
1932
- declare function useFieldsetRootContext(optional?: false): FieldsetRootContext;
1933
3309
  //#endregion
1934
- //#region src/form/Form.vue.d.ts
1935
- interface FormActions {
1936
- validate: (fieldName?: string) => void;
1937
- }
1938
- interface FormState {}
1939
- interface FormProps extends BaseUIComponentProps<FormState> {
1940
- /**
1941
- * Determines when the form should be validated.
1942
- *
1943
- * - `onSubmit` (default): validates on submit, re-validates on change after submission.
1944
- * - `onBlur`: validates when a control loses focus.
1945
- * - `onChange`: validates on every change.
1946
- *
1947
- * @default 'onSubmit'
1948
- */
1949
- validationMode?: FormValidationMode;
1950
- /**
1951
- * Validation errors returned externally (e.g. from a server).
1952
- * Keys correspond to the `name` attribute on `<FieldRoot>`.
1953
- */
1954
- errors?: FormErrors;
1955
- /**
1956
- * Whether native form validation is disabled.
1957
- * @default true
1958
- */
1959
- noValidate?: boolean;
1960
- }
3310
+ //#region src/scroll-area/viewport/ScrollAreaViewport.vue.d.ts
3311
+ type ScrollAreaViewportState = ScrollAreaRootState;
3312
+ interface ScrollAreaViewportProps extends BaseUIComponentProps<ScrollAreaViewportState> {}
1961
3313
  declare var __VLS_1$10: {
3314
+ ref: ((el: Element | vue.ComponentPublicInstance | null) => void) | undefined;
1962
3315
  props: Record<string, any>;
1963
- state: FormState;
1964
- actions: {
1965
- validate: (fieldName?: string) => void;
1966
- };
1967
- }, __VLS_10$10: {
1968
- state: FormState;
1969
- actions: {
1970
- validate: (fieldName?: string) => void;
1971
- };
1972
- };
3316
+ state: ScrollAreaRootState;
3317
+ }, __VLS_10$10: {};
1973
3318
  type __VLS_Slots$15 = {} & {
1974
3319
  default?: (props: typeof __VLS_1$10) => any;
1975
3320
  } & {
1976
3321
  default?: (props: typeof __VLS_10$10) => any;
1977
3322
  };
1978
- declare const __VLS_base$15: vue.DefineComponent<FormProps, {
1979
- actions: {
1980
- validate: (fieldName?: string) => void;
1981
- };
1982
- }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1983
- formSubmit: (formValues: Record<string, unknown>, event: Event) => any;
1984
- }, string, vue.PublicProps, Readonly<FormProps> & Readonly<{
1985
- onFormSubmit?: ((formValues: Record<string, unknown>, event: Event) => any) | undefined;
1986
- }>, {
3323
+ declare const __VLS_base$15: vue.DefineComponent<ScrollAreaViewportProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ScrollAreaViewportProps> & Readonly<{}>, {
1987
3324
  as: string | vue.Component;
1988
- validationMode: FormValidationMode;
1989
- noValidate: boolean;
1990
3325
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1991
3326
  declare const __VLS_export$18: __VLS_WithSlots$15<typeof __VLS_base$15, __VLS_Slots$15>;
1992
- declare const _default$26: typeof __VLS_export$18;
3327
+ declare const _default$52: typeof __VLS_export$18;
1993
3328
  type __VLS_WithSlots$15<T, S> = T & {
1994
3329
  new (): {
1995
3330
  $slots: S;
1996
3331
  };
1997
- }; //# sourceMappingURL=Form.vue.d.ts.map
3332
+ }; //# sourceMappingURL=ScrollAreaViewport.vue.d.ts.map
1998
3333
  //#endregion
1999
- //#region src/merge-props/mergeProps.d.ts
2000
- declare function makeEventPreventable<T extends Event>(event: T): BaseUIEvent<T>;
2001
- declare function mergeClasses(ourClass: string | undefined, theirClass: string | undefined): string | undefined;
2002
- declare function mergeObjects<A extends object | undefined, B extends object | undefined>(a: A, b: B): NonNullable<A> | NonNullable<B> | (A & B) | undefined;
2003
- /**
2004
- * Merges Vue prop/attr objects using Base UI Vue semantics.
2005
- *
2006
- * Later props overwrite earlier ones, except for:
2007
- * - Event listeners: merged so the rightmost listener runs first and can prevent earlier listeners.
2008
- * - `class`: merged in rightmost-first order.
2009
- * - `style`: merged using Vue's native style merging.
2010
- */
2011
- declare function mergeProps(...args: (Record<string, any> | undefined)[]): Record<string, any>;
2012
- /**
2013
- * Merges an array of Vue prop/attr objects using the same semantics as {@link mergeProps}.
2014
- *
2015
- * Useful when prop layers are assembled dynamically before being bound with `v-bind`.
2016
- */
2017
- declare function mergePropsN(props: readonly (Record<string, any> | undefined)[]): Record<string, any>;
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
+ }
2018
3352
  //#endregion
2019
3353
  //#region src/separator/Separator.vue.d.ts
2020
3354
  interface SeparatorState {
@@ -2047,7 +3381,7 @@ declare const __VLS_base$14: vue.DefineComponent<SeparatorProps, {}, {}, {}, {},
2047
3381
  orientation: Orientation;
2048
3382
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2049
3383
  declare const __VLS_export$17: __VLS_WithSlots$14<typeof __VLS_base$14, __VLS_Slots$14>;
2050
- declare const _default$27: typeof __VLS_export$17;
3384
+ declare const _default$53: typeof __VLS_export$17;
2051
3385
  type __VLS_WithSlots$14<T, S> = T & {
2052
3386
  new (): {
2053
3387
  $slots: S;
@@ -2227,17 +3561,17 @@ declare const __VLS_base$13: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vu
2227
3561
  }>, {
2228
3562
  disabled: boolean;
2229
3563
  as: string | vue.Component;
2230
- orientation: Orientation;
2231
3564
  min: number;
2232
3565
  max: number;
2233
3566
  step: number;
2234
- minStepsBetweenValues: number;
3567
+ orientation: Orientation;
2235
3568
  largeStep: number;
3569
+ minStepsBetweenValues: number;
2236
3570
  thumbAlignment: "center" | "edge" | "edge-client-only";
2237
3571
  thumbCollisionBehavior: "push" | "swap" | "none";
2238
3572
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2239
3573
  declare const __VLS_export$16: __VLS_WithSlots$13<typeof __VLS_base$13, __VLS_Slots$13>;
2240
- declare const _default$31: typeof __VLS_export$16;
3574
+ declare const _default$57: typeof __VLS_export$16;
2241
3575
  type __VLS_WithSlots$13<T, S> = T & {
2242
3576
  new (): {
2243
3577
  $slots: S;
@@ -2261,7 +3595,7 @@ declare const __VLS_base$12: vue.DefineComponent<SliderControlProps, {}, {}, {},
2261
3595
  as: string | vue.Component;
2262
3596
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2263
3597
  declare const __VLS_export$15: __VLS_WithSlots$12<typeof __VLS_base$12, __VLS_Slots$12>;
2264
- declare const _default$28: typeof __VLS_export$15;
3598
+ declare const _default$54: typeof __VLS_export$15;
2265
3599
  type __VLS_WithSlots$12<T, S> = T & {
2266
3600
  new (): {
2267
3601
  $slots: S;
@@ -2322,7 +3656,7 @@ declare const __VLS_base$11: vue.DefineComponent<SliderIndicatorProps, {}, {}, {
2322
3656
  as: string | vue.Component;
2323
3657
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2324
3658
  declare const __VLS_export$14: __VLS_WithSlots$11<typeof __VLS_base$11, __VLS_Slots$11>;
2325
- declare const _default$29: typeof __VLS_export$14;
3659
+ declare const _default$55: typeof __VLS_export$14;
2326
3660
  type __VLS_WithSlots$11<T, S> = T & {
2327
3661
  new (): {
2328
3662
  $slots: S;
@@ -2383,7 +3717,7 @@ declare const __VLS_base$10: vue.DefineComponent<SliderLabelProps, {}, {}, {}, {
2383
3717
  as: string | vue.Component;
2384
3718
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2385
3719
  declare const __VLS_export$13: __VLS_WithSlots$10<typeof __VLS_base$10, __VLS_Slots$10>;
2386
- declare const _default$30: typeof __VLS_export$13;
3720
+ declare const _default$56: typeof __VLS_export$13;
2387
3721
  type __VLS_WithSlots$10<T, S> = T & {
2388
3722
  new (): {
2389
3723
  $slots: S;
@@ -2473,7 +3807,7 @@ declare const __VLS_base$9: vue.DefineComponent<SliderThumbProps, {}, {}, {}, {}
2473
3807
  as: string | vue.Component;
2474
3808
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2475
3809
  declare const __VLS_export$12: __VLS_WithSlots$9<typeof __VLS_base$9, __VLS_Slots$9>;
2476
- declare const _default$32: typeof __VLS_export$12;
3810
+ declare const _default$58: typeof __VLS_export$12;
2477
3811
  type __VLS_WithSlots$9<T, S> = T & {
2478
3812
  new (): {
2479
3813
  $slots: S;
@@ -2667,7 +4001,7 @@ declare const __VLS_base$8: vue.DefineComponent<SliderTrackProps, {}, {}, {}, {}
2667
4001
  as: string | vue.Component;
2668
4002
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2669
4003
  declare const __VLS_export$11: __VLS_WithSlots$8<typeof __VLS_base$8, __VLS_Slots$8>;
2670
- declare const _default$33: typeof __VLS_export$11;
4004
+ declare const _default$59: typeof __VLS_export$11;
2671
4005
  type __VLS_WithSlots$8<T, S> = T & {
2672
4006
  new (): {
2673
4007
  $slots: S;
@@ -2711,7 +4045,7 @@ declare const __VLS_base$7: vue.DefineComponent<SliderValueProps, {}, {}, {}, {}
2711
4045
  ariaLive: "off" | "polite" | "assertive";
2712
4046
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2713
4047
  declare const __VLS_export$10: __VLS_WithSlots$7<typeof __VLS_base$7, __VLS_Slots$7>;
2714
- declare const _default$34: typeof __VLS_export$10;
4048
+ declare const _default$60: typeof __VLS_export$10;
2715
4049
  type __VLS_WithSlots$7<T, S> = T & {
2716
4050
  new (): {
2717
4051
  $slots: S;
@@ -2881,7 +4215,7 @@ declare const __VLS_base$6: vue.DefineComponent<SwitchRootProps, {
2881
4215
  as: string | vue.Component;
2882
4216
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2883
4217
  declare const __VLS_export$9: __VLS_WithSlots$6<typeof __VLS_base$6, __VLS_Slots$6>;
2884
- declare const _default$35: typeof __VLS_export$9;
4218
+ declare const _default$61: typeof __VLS_export$9;
2885
4219
  type __VLS_WithSlots$6<T, S> = T & {
2886
4220
  new (): {
2887
4221
  $slots: S;
@@ -2961,7 +4295,7 @@ declare const __VLS_base$5: vue.DefineComponent<SwitchThumbProps, {}, {}, {}, {}
2961
4295
  as: string | vue.Component;
2962
4296
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
2963
4297
  declare const __VLS_export$8: __VLS_WithSlots$5<typeof __VLS_base$5, __VLS_Slots$5>;
2964
- declare const _default$36: typeof __VLS_export$8;
4298
+ declare const _default$62: typeof __VLS_export$8;
2965
4299
  type __VLS_WithSlots$5<T, S> = T & {
2966
4300
  new (): {
2967
4301
  $slots: S;
@@ -3092,7 +4426,7 @@ declare const __VLS_export$7: <Value extends string = string>(__VLS_props: NonNu
3092
4426
  }>) => vue.VNode & {
3093
4427
  __ctx?: Awaited<typeof __VLS_setup>;
3094
4428
  };
3095
- declare const _default$37: typeof __VLS_export$7;
4429
+ declare const _default$63: typeof __VLS_export$7;
3096
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
3097
4431
  //#endregion
3098
4432
  //#region src/toggle/ToggleDataAttributes.d.ts
@@ -3204,7 +4538,7 @@ declare const __VLS_export$6: <Value extends string = string>(__VLS_props: NonNu
3204
4538
  }>) => vue.VNode & {
3205
4539
  __ctx?: Awaited<typeof __VLS_setup>;
3206
4540
  };
3207
- declare const _default$38: typeof __VLS_export$6;
4541
+ declare const _default$64: typeof __VLS_export$6;
3208
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
3209
4543
  //#endregion
3210
4544
  //#region src/toggle-group/ToggleGroupContext.d.ts
@@ -3288,7 +4622,7 @@ declare const __VLS_base$4: vue.DefineComponent<ToolbarRootProps, {}, {}, {}, {}
3288
4622
  loopFocus: boolean;
3289
4623
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
3290
4624
  declare const __VLS_export$5: __VLS_WithSlots$4<typeof __VLS_base$4, __VLS_Slots$4>;
3291
- declare const _default$43: typeof __VLS_export$5;
4625
+ declare const _default$69: typeof __VLS_export$5;
3292
4626
  type __VLS_WithSlots$4<T, S> = T & {
3293
4627
  new (): {
3294
4628
  $slots: S;
@@ -3331,7 +4665,7 @@ declare const __VLS_base$3: vue.DefineComponent<ToolbarButtonProps, {}, {}, {},
3331
4665
  focusableWhenDisabled: boolean;
3332
4666
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
3333
4667
  declare const __VLS_export$4: __VLS_WithSlots$3<typeof __VLS_base$3, __VLS_Slots$3>;
3334
- declare const _default$39: typeof __VLS_export$4;
4668
+ declare const _default$65: typeof __VLS_export$4;
3335
4669
  type __VLS_WithSlots$3<T, S> = T & {
3336
4670
  new (): {
3337
4671
  $slots: S;
@@ -3381,7 +4715,7 @@ declare const __VLS_base$2: vue.DefineComponent<ToolbarGroupProps, {}, {}, {}, {
3381
4715
  as: string | vue.Component;
3382
4716
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
3383
4717
  declare const __VLS_export$3: __VLS_WithSlots$2<typeof __VLS_base$2, __VLS_Slots$2>;
3384
- declare const _default$40: typeof __VLS_export$3;
4718
+ declare const _default$66: typeof __VLS_export$3;
3385
4719
  type __VLS_WithSlots$2<T, S> = T & {
3386
4720
  new (): {
3387
4721
  $slots: S;
@@ -3438,7 +4772,7 @@ declare const __VLS_export$2: vue.DefineComponent<ToolbarInputProps, {}, {}, {},
3438
4772
  as: string | vue.Component;
3439
4773
  focusableWhenDisabled: boolean;
3440
4774
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
3441
- declare const _default$41: typeof __VLS_export$2;
4775
+ declare const _default$67: typeof __VLS_export$2;
3442
4776
  //#endregion
3443
4777
  //#region src/toolbar/input/ToolbarInputDataAttributes.d.ts
3444
4778
  declare enum ToolbarInputDataAttributes {
@@ -3475,7 +4809,7 @@ declare const __VLS_base$1: vue.DefineComponent<ToolbarLinkProps, {}, {}, {}, {}
3475
4809
  as: string | vue.Component;
3476
4810
  }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
3477
4811
  declare const __VLS_export$1: __VLS_WithSlots$1<typeof __VLS_base$1, __VLS_Slots$1>;
3478
- declare const _default$42: typeof __VLS_export$1;
4812
+ declare const _default$68: typeof __VLS_export$1;
3479
4813
  type __VLS_WithSlots$1<T, S> = T & {
3480
4814
  new (): {
3481
4815
  $slots: S;
@@ -3527,7 +4861,7 @@ type __VLS_Slots = {} & {
3527
4861
  };
3528
4862
  declare const __VLS_base: vue.DefineComponent<ToolbarSeparatorProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ToolbarSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
3529
4863
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
3530
- declare const _default$44: typeof __VLS_export;
4864
+ declare const _default$70: typeof __VLS_export;
3531
4865
  type __VLS_WithSlots<T, S> = T & {
3532
4866
  new (): {
3533
4867
  $slots: S;
@@ -3543,9 +4877,6 @@ declare enum ToolbarSeparatorDataAttributes {
3543
4877
  orientation = "data-orientation"
3544
4878
  }
3545
4879
  //#endregion
3546
- //#region src/utils/getStateAttributesProps.d.ts
3547
- type StateAttributesMapping<State> = { [Property in keyof State]?: (state: State[Property]) => Record<string, string> | null };
3548
- //#endregion
3549
4880
  //#region src/use-render/useRender.d.ts
3550
4881
  type UseRenderIntrinsicElement = keyof NativeElements;
3551
4882
  type UseRenderRef = Ref<HTMLElement | ComponentPublicInstance | null> | ((el: Element | ComponentPublicInstance | null) => void);
@@ -3636,5 +4967,5 @@ declare const Slot: Component;
3636
4967
  declare const name = "base-ui-vue";
3637
4968
  declare const version = "0.0.0";
3638
4969
  //#endregion
3639
- export { _default as AccordionHeader, AccordionHeaderProps, _default$1 as AccordionItem, AccordionItemChangeEventDetails, AccordionItemChangeEventReason, type AccordionItemContext, AccordionItemProps, AccordionItemState, _default$2 as AccordionPanel, AccordionPanelProps, AccordionPanelState, _default$3 as AccordionRoot, AccordionRootChangeEventDetails, AccordionRootChangeEventReason, type AccordionRootContext, AccordionRootProps, AccordionRootState, _default$4 as AccordionTrigger, AccordionTriggerProps, AccordionValue, _default$5 as AvatarFallback, type AvatarFallbackProps, type AvatarFallbackState, _default$6 as AvatarImage, AvatarImageDataAttributes, type AvatarImageProps, type AvatarImageState, _default$7 as AvatarRoot, type AvatarRootProps, type AvatarRootState, _default$8 as Button, ButtonProps, ButtonState, type CSPContextValue, _default$9 as CSPProvider, type CSPProviderProps, Checkbox, _default$10 as CheckboxGroup, type CheckboxGroupContext, CheckboxGroupDataAttributes, type CheckboxGroupProps, type CheckboxGroupState, _default$11 as CheckboxIndicator, CheckboxIndicatorDataAttributes, type CheckboxIndicatorProps, type CheckboxIndicatorState, _default$12 as CheckboxRoot, type CheckboxRootContext, CheckboxRootDataAttributes, type CheckboxRootProps, type CheckboxRootState, CollapsibleChangeEventDetails, CollapsibleChangeEventReason, _default$13 as CollapsiblePanel, CollapsiblePanelProps, CollapsiblePanelState, _default$14 as CollapsibleRoot, type CollapsibleRootContext, CollapsibleRootProps, CollapsibleRootState, _default$15 as CollapsibleTrigger, CollapsibleTriggerProps, _default$16 as DirectionProvider, type DirectionProviderProps, _default$17 as FieldControl, FieldControlDataAttributes, type FieldControlProps, type FieldControlState, _default$18 as FieldDescription, type FieldDescriptionProps, type FieldDescriptionState, _default$19 as FieldError, type FieldErrorProps, type FieldErrorState, _default$20 as FieldItem, type FieldItemContext, type FieldItemProps, type FieldItemState, _default$21 as FieldLabel, type FieldLabelProps, type FieldLabelState, _default$22 as FieldRoot, type FieldRootContext, type FieldRootExpose, type FieldRootProps, type FieldRootState, _default$23 as FieldValidity, type FieldValidityData, type FieldValidityState, _default$24 as FieldsetLegend, type FieldsetLegendProps, type FieldsetLegendState, _default$25 as FieldsetRoot, type FieldsetRootContext, type FieldsetRootProps, type FieldsetRootState, _default$26 as Form, type FormActions, type FormContext, type FormErrors, type FormField, type FormProps, type FormState, type FormValidationMode, type ImageLoadingStatus, _default$11 as Indicator, RenderRef, _default$12 as Root, _default$27 as Separator, SeparatorDataAttributes, type SeparatorProps, type SeparatorState, _default$28 as SliderControl, SliderControlDataAttributes, type SliderControlProps, type SliderControlState, _default$29 as SliderIndicator, SliderIndicatorDataAttributes, type SliderIndicatorProps, type SliderIndicatorState, _default$30 as SliderLabel, type SliderLabelProps, type SliderLabelState, _default$31 as SliderRoot, type SliderRootChangeEventDetails, type SliderRootChangeEventReason, type SliderRootCommitEventDetails, type SliderRootCommitEventReason, type SliderRootContext, SliderRootDataAttributes, type SliderRootProps, type SliderRootState, _default$32 as SliderThumb, SliderThumbDataAttributes, type SliderThumbProps, type SliderThumbState, _default$33 as SliderTrack, SliderTrackDataAttributes, type SliderTrackProps, type SliderTrackState, _default$34 as SliderValue, SliderValueDataAttributes, type SliderValueProps, type SliderValueState, Slot, _default$35 as SwitchRoot, type SwitchRootChangeEventDetails, type SwitchRootChangeEventReason, type SwitchRootContext, SwitchRootDataAttributes, type SwitchRootProps, type SwitchRootState, _default$36 as SwitchThumb, SwitchThumbDataAttributes, type SwitchThumbProps, type SwitchThumbState, type TextDirection, type ThumbMetadata, _default$37 as Toggle, ToggleDataAttributes, _default$38 as ToggleGroup, type ToggleGroupContext, ToggleGroupDataAttributes, type ToggleGroupProps, type ToggleGroupState, type ToggleProps, type ToggleState, _default$39 as ToolbarButton, ToolbarButtonDataAttributes, type ToolbarButtonProps, type ToolbarButtonState, _default$40 as ToolbarGroup, type ToolbarGroupContext, ToolbarGroupDataAttributes, type ToolbarGroupProps, type ToolbarGroupState, _default$41 as ToolbarInput, ToolbarInputDataAttributes, type ToolbarInputProps, type ToolbarInputState, _default$42 as ToolbarLink, ToolbarLinkDataAttributes, type ToolbarLinkProps, type ToolbarLinkState, _default$43 as ToolbarRoot, type ToolbarRootContext, ToolbarRootDataAttributes, type ToolbarRootItemMetadata, type ToolbarRootProps, type ToolbarRootState, _default$44 as ToolbarSeparator, ToolbarSeparatorDataAttributes, type ToolbarSeparatorProps, type ToolbarSeparatorState, type TransitionStatus, type UseCheckboxGroupParentParameters, type UseCheckboxGroupParentReturnValue, UseRenderComponentProps, UseRenderElementProps, UseRenderParams, UseRenderReturn, accordionItemContextKey, accordionRootContextKey, checkboxGroupContextKey, checkboxRootContextKey, collapsibleRootContextKey, fieldItemContextKey, fieldRootContextKey, fieldsetRootContextKey, formContextKey, makeEventPreventable, mergeClasses, mergeObjects, mergeProps, mergePropsN, name, sliderRootContextKey, switchRootContextKey, toggleGroupContextKey, toolbarGroupContextKey, toolbarRootContextKey, useAccordionItemContext, useAccordionRootContext, useCSPContext, useCheckboxGroupContext, useCheckboxRootContext, useCollapsibleRootContext, useDirection, useFieldItemContext, useFieldRootContext, useFieldsetRootContext, useFormContext, useRender, useSliderRootContext, useSwitchRootContext, useToggleGroupContext, useToolbarGroupContext, useToolbarRootContext, version };
4970
+ export { _default as AccordionHeader, AccordionHeaderProps, _default$1 as AccordionItem, AccordionItemChangeEventDetails, AccordionItemChangeEventReason, type AccordionItemContext, AccordionItemProps, AccordionItemState, _default$2 as AccordionPanel, AccordionPanelProps, AccordionPanelState, _default$3 as AccordionRoot, AccordionRootChangeEventDetails, AccordionRootChangeEventReason, type AccordionRootContext, AccordionRootProps, AccordionRootState, _default$4 as AccordionTrigger, AccordionTriggerProps, AccordionValue, _default$5 as AvatarFallback, type AvatarFallbackProps, type AvatarFallbackState, _default$6 as AvatarImage, AvatarImageDataAttributes, type AvatarImageProps, type AvatarImageState, _default$7 as AvatarRoot, type AvatarRootProps, type AvatarRootState, _default$8 as Button, ButtonProps, ButtonState, type CSPContextValue, _default$9 as CSPProvider, type CSPProviderProps, Checkbox, _default$10 as CheckboxGroup, type CheckboxGroupContext, CheckboxGroupDataAttributes, type CheckboxGroupProps, type CheckboxGroupState, _default$11 as CheckboxIndicator, CheckboxIndicatorDataAttributes, type CheckboxIndicatorProps, type CheckboxIndicatorState, _default$12 as CheckboxRoot, type CheckboxRootContext, CheckboxRootDataAttributes, type CheckboxRootProps, type CheckboxRootState, CollapsibleChangeEventDetails, CollapsibleChangeEventReason, _default$13 as CollapsiblePanel, CollapsiblePanelProps, CollapsiblePanelState, _default$14 as CollapsibleRoot, type CollapsibleRootContext, CollapsibleRootProps, CollapsibleRootState, _default$15 as CollapsibleTrigger, CollapsibleTriggerProps, _default$16 as DirectionProvider, type DirectionProviderProps, _default$17 as FieldControl, FieldControlDataAttributes, type FieldControlProps, type FieldControlState, _default$18 as FieldDescription, type FieldDescriptionProps, type FieldDescriptionState, _default$19 as FieldError, type FieldErrorProps, type FieldErrorState, _default$20 as FieldItem, type FieldItemContext, type FieldItemProps, type FieldItemState, _default$21 as FieldLabel, type FieldLabelProps, type FieldLabelState, _default$22 as FieldRoot, type FieldRootContext, type FieldRootExpose, type FieldRootProps, type FieldRootState, _default$23 as FieldValidity, type FieldValidityData, type FieldValidityState, _default$24 as FieldsetLegend, type FieldsetLegendProps, type FieldsetLegendState, _default$25 as FieldsetRoot, type FieldsetRootContext, type FieldsetRootProps, type FieldsetRootState, _default$26 as Form, type FormActions, type FormContext, type FormErrors, type FormField, type FormProps, type FormState, type FormValidationMode, type ImageLoadingStatus, _default$11 as Indicator, _default$27 as Input, InputDataAttributes, type InputMode, type InputProps, type InputState, _default$28 as MeterIndicator, type MeterIndicatorProps, type MeterIndicatorState, _default$29 as MeterLabel, type MeterLabelProps, type MeterLabelState, _default$30 as MeterRoot, type MeterRootContext, type MeterRootProps, type MeterRootState, _default$31 as MeterTrack, type MeterTrackProps, type MeterTrackState, _default$32 as MeterValue, type MeterValueProps, type MeterValueState, _default$33 as NumberFieldDecrement, type NumberFieldDecrementProps, type NumberFieldDecrementState, _default$34 as NumberFieldGroup, type NumberFieldGroupProps, type NumberFieldGroupState, _default$35 as NumberFieldIncrement, type NumberFieldIncrementProps, type NumberFieldIncrementState, _default$36 as NumberFieldInput, type NumberFieldInputProps, type NumberFieldInputState, _default$37 as NumberFieldRoot, type NumberFieldRootChangeEventDetails, type NumberFieldRootChangeEventReason, type NumberFieldRootCommitEventDetails, type NumberFieldRootCommitEventReason, type NumberFieldRootContext, type NumberFieldRootProps, type NumberFieldRootState, _default$38 as NumberFieldScrubArea, type NumberFieldScrubAreaContext, _default$39 as NumberFieldScrubAreaCursor, type NumberFieldScrubAreaCursorProps, type NumberFieldScrubAreaCursorState, type NumberFieldScrubAreaProps, type NumberFieldScrubAreaState, _default$40 as OtpFieldInput, type OtpFieldInputProps, type OtpFieldInputState, _default$41 as OtpFieldRoot, type OtpFieldRootChangeEventDetails, type OtpFieldRootChangeEventReason, type OtpFieldRootCompleteEventDetails, type OtpFieldRootCompleteEventReason, type OtpFieldRootContext, type OtpFieldRootInvalidEventDetails, type OtpFieldRootInvalidEventReason, type OtpFieldRootProps, type OtpFieldRootState, type OtpValidationType, _default$42 as ProgressIndicator, type ProgressIndicatorProps, type ProgressIndicatorState, _default$43 as ProgressLabel, type ProgressLabelProps, type ProgressLabelState, _default$44 as ProgressRoot, type ProgressRootContext, ProgressRootDataAttributes, type ProgressRootProps, type ProgressRootState, type ProgressStatus, _default$45 as ProgressTrack, type ProgressTrackProps, type ProgressTrackState, _default$46 as ProgressValue, type ProgressValueProps, type ProgressValueRenderlessSlotProps, type ProgressValueSlotProps, type ProgressValueState, RenderRef, _default$12 as Root, _default$47 as ScrollAreaContent, type ScrollAreaContentProps, type ScrollAreaContentState, _default$48 as ScrollAreaCorner, type ScrollAreaCornerProps, type ScrollAreaCornerState, _default$49 as ScrollAreaRoot, ScrollAreaRootCssVars, ScrollAreaRootDataAttributes, type ScrollAreaRootProps, type ScrollAreaRootState, _default$50 as ScrollAreaScrollbar, ScrollAreaScrollbarCssVars, ScrollAreaScrollbarDataAttributes, type ScrollAreaScrollbarProps, type ScrollAreaScrollbarState, _default$51 as ScrollAreaThumb, ScrollAreaThumbDataAttributes, type ScrollAreaThumbProps, type ScrollAreaThumbState, _default$52 as ScrollAreaViewport, ScrollAreaViewportCssVars, ScrollAreaViewportDataAttributes, type ScrollAreaViewportProps, type ScrollAreaViewportState, _default$53 as Separator, SeparatorDataAttributes, type SeparatorProps, type SeparatorState, _default$54 as SliderControl, SliderControlDataAttributes, type SliderControlProps, type SliderControlState, _default$55 as SliderIndicator, SliderIndicatorDataAttributes, type SliderIndicatorProps, type SliderIndicatorState, _default$56 as SliderLabel, type SliderLabelProps, type SliderLabelState, _default$57 as SliderRoot, type SliderRootChangeEventDetails, type SliderRootChangeEventReason, type SliderRootCommitEventDetails, type SliderRootCommitEventReason, type SliderRootContext, SliderRootDataAttributes, type SliderRootProps, type SliderRootState, _default$58 as SliderThumb, SliderThumbDataAttributes, type SliderThumbProps, type SliderThumbState, _default$59 as SliderTrack, SliderTrackDataAttributes, type SliderTrackProps, type SliderTrackState, _default$60 as SliderValue, SliderValueDataAttributes, type SliderValueProps, type SliderValueState, Slot, _default$61 as SwitchRoot, type SwitchRootChangeEventDetails, type SwitchRootChangeEventReason, type SwitchRootContext, SwitchRootDataAttributes, type SwitchRootProps, type SwitchRootState, _default$62 as SwitchThumb, SwitchThumbDataAttributes, type SwitchThumbProps, type SwitchThumbState, type TextDirection, type ThumbMetadata, _default$63 as Toggle, ToggleDataAttributes, _default$64 as ToggleGroup, type ToggleGroupContext, ToggleGroupDataAttributes, type ToggleGroupProps, type ToggleGroupState, type ToggleProps, type ToggleState, _default$65 as ToolbarButton, ToolbarButtonDataAttributes, type ToolbarButtonProps, type ToolbarButtonState, _default$66 as ToolbarGroup, type ToolbarGroupContext, ToolbarGroupDataAttributes, type ToolbarGroupProps, type ToolbarGroupState, _default$67 as ToolbarInput, ToolbarInputDataAttributes, type ToolbarInputProps, type ToolbarInputState, _default$68 as ToolbarLink, ToolbarLinkDataAttributes, type ToolbarLinkProps, type ToolbarLinkState, _default$69 as ToolbarRoot, type ToolbarRootContext, ToolbarRootDataAttributes, type ToolbarRootItemMetadata, type ToolbarRootProps, type ToolbarRootState, _default$70 as ToolbarSeparator, ToolbarSeparatorDataAttributes, type ToolbarSeparatorProps, type ToolbarSeparatorState, type TransitionStatus, type UseCheckboxGroupParentParameters, type UseCheckboxGroupParentReturnValue, UseRenderComponentProps, UseRenderElementProps, UseRenderParams, UseRenderReturn, accordionItemContextKey, accordionRootContextKey, checkboxGroupContextKey, checkboxRootContextKey, collapsibleRootContextKey, fieldItemContextKey, fieldRootContextKey, fieldsetRootContextKey, formContextKey, 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 };
3640
4971
  //# sourceMappingURL=index.d.ts.map