@vuetify/nightly 4.0.0-dev-20230515.0 → 4.0.0-dev-20230516.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 (120) hide show
  1. package/CHANGELOG.md +5 -4
  2. package/dist/json/attributes.json +14 -14
  3. package/dist/json/importMap.json +4 -4
  4. package/dist/json/web-types.json +21 -17
  5. package/dist/vuetify-labs.css +7 -3
  6. package/dist/vuetify-labs.d.ts +6549 -1557
  7. package/dist/vuetify-labs.esm.js +42 -21
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +42 -21
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +204 -200
  12. package/dist/vuetify.d.ts +4883 -968
  13. package/dist/vuetify.esm.js +42 -21
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +42 -21
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +182 -180
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VAlert/index.d.mts +58 -0
  21. package/lib/components/VApp/index.d.mts +15 -0
  22. package/lib/components/VAppBar/index.d.mts +81 -0
  23. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  24. package/lib/components/VAutocomplete/index.d.mts +68 -10
  25. package/lib/components/VAvatar/index.d.mts +15 -0
  26. package/lib/components/VBadge/index.d.mts +19 -0
  27. package/lib/components/VBanner/index.d.mts +57 -0
  28. package/lib/components/VBottomNavigation/index.d.mts +15 -0
  29. package/lib/components/VBreadcrumbs/index.d.mts +37 -3
  30. package/lib/components/VBtn/index.d.mts +27 -0
  31. package/lib/components/VBtnGroup/index.d.mts +15 -0
  32. package/lib/components/VBtnToggle/index.d.mts +15 -0
  33. package/lib/components/VCard/index.d.mts +142 -0
  34. package/lib/components/VCarousel/index.d.mts +158 -0
  35. package/lib/components/VCheckbox/VCheckboxBtn.mjs +3 -3
  36. package/lib/components/VCheckbox/VCheckboxBtn.mjs.map +1 -1
  37. package/lib/components/VCheckbox/index.d.mts +92 -6
  38. package/lib/components/VChip/VChip.css +4 -2
  39. package/lib/components/VChip/VChip.sass +3 -2
  40. package/lib/components/VChip/index.d.mts +63 -0
  41. package/lib/components/VChipGroup/index.d.mts +39 -0
  42. package/lib/components/VCode/index.d.mts +15 -0
  43. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  44. package/lib/components/VCombobox/index.d.mts +68 -10
  45. package/lib/components/VCounter/index.d.mts +15 -0
  46. package/lib/components/VDefaultsProvider/index.d.mts +15 -0
  47. package/lib/components/VDialog/index.d.mts +129 -3
  48. package/lib/components/VDivider/index.d.mts +15 -0
  49. package/lib/components/VExpansionPanel/index.d.mts +72 -0
  50. package/lib/components/VField/index.d.mts +22 -3
  51. package/lib/components/VFileInput/index.d.mts +180 -24
  52. package/lib/components/VFooter/index.d.mts +15 -0
  53. package/lib/components/VForm/index.d.mts +201 -8
  54. package/lib/components/VGrid/index.d.mts +60 -0
  55. package/lib/components/VHover/index.d.mts +27 -0
  56. package/lib/components/VIcon/index.d.mts +30 -0
  57. package/lib/components/VImg/index.d.mts +27 -0
  58. package/lib/components/VInput/VInput.mjs +1 -1
  59. package/lib/components/VInput/VInput.mjs.map +1 -1
  60. package/lib/components/VInput/index.d.mts +40 -9
  61. package/lib/components/VItemGroup/index.d.mts +82 -0
  62. package/lib/components/VKbd/index.d.mts +15 -0
  63. package/lib/components/VLabel/index.d.mts +15 -0
  64. package/lib/components/VLayout/index.d.mts +30 -0
  65. package/lib/components/VLazy/index.d.mts +15 -0
  66. package/lib/components/VList/index.d.mts +159 -3
  67. package/lib/components/VLocaleProvider/index.d.mts +15 -0
  68. package/lib/components/VMain/index.d.mts +15 -0
  69. package/lib/components/VMenu/index.d.mts +129 -3
  70. package/lib/components/VMessages/index.d.mts +15 -0
  71. package/lib/components/VNavigationDrawer/VNavigationDrawer.css +2 -0
  72. package/lib/components/VNavigationDrawer/VNavigationDrawer.sass +2 -0
  73. package/lib/components/VNavigationDrawer/index.d.mts +27 -0
  74. package/lib/components/VOverlay/index.d.mts +39 -0
  75. package/lib/components/VPagination/index.d.mts +31 -0
  76. package/lib/components/VParallax/index.d.mts +27 -0
  77. package/lib/components/VProgressCircular/index.d.mts +23 -0
  78. package/lib/components/VProgressLinear/index.d.mts +27 -0
  79. package/lib/components/VRadio/index.d.mts +35 -0
  80. package/lib/components/VRadioGroup/index.d.mts +57 -6
  81. package/lib/components/VRangeSlider/index.d.mts +49 -6
  82. package/lib/components/VRating/index.d.mts +19 -0
  83. package/lib/components/VResponsive/index.d.mts +19 -0
  84. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  85. package/lib/components/VSelect/index.d.mts +68 -10
  86. package/lib/components/VSelectionControl/index.d.mts +7 -3
  87. package/lib/components/VSelectionControlGroup/index.d.mts +15 -0
  88. package/lib/components/VSheet/index.d.mts +15 -0
  89. package/lib/components/VSlideGroup/index.d.mts +58 -0
  90. package/lib/components/VSlider/index.d.mts +49 -6
  91. package/lib/components/VSnackbar/index.d.mts +125 -3
  92. package/lib/components/VSwitch/index.d.mts +61 -6
  93. package/lib/components/VSystemBar/index.d.mts +15 -0
  94. package/lib/components/VTable/index.d.mts +27 -0
  95. package/lib/components/VTabs/index.d.mts +30 -0
  96. package/lib/components/VTextField/index.d.mts +167 -27
  97. package/lib/components/VTextarea/index.d.mts +156 -24
  98. package/lib/components/VThemeProvider/index.d.mts +15 -0
  99. package/lib/components/VTimeline/index.d.mts +38 -0
  100. package/lib/components/VToolbar/index.d.mts +69 -0
  101. package/lib/components/VTooltip/index.d.mts +129 -3
  102. package/lib/components/VValidation/index.d.mts +96 -25
  103. package/lib/components/VVirtualScroll/index.d.mts +7 -3
  104. package/lib/components/VWindow/index.d.mts +74 -0
  105. package/lib/components/index.d.mts +4673 -758
  106. package/lib/components/transitions/index.d.mts +240 -0
  107. package/lib/composables/form.mjs +2 -3
  108. package/lib/composables/form.mjs.map +1 -1
  109. package/lib/composables/validation.mjs +34 -12
  110. package/lib/composables/validation.mjs.map +1 -1
  111. package/lib/entry-bundler.mjs +1 -1
  112. package/lib/framework.mjs +1 -1
  113. package/lib/index.d.mts +1 -1
  114. package/lib/labs/VDataTable/index.d.mts +1056 -25
  115. package/lib/labs/VInfiniteScroll/index.d.mts +31 -0
  116. package/lib/labs/VSkeletonLoader/index.d.mts +15 -0
  117. package/lib/labs/components.d.mts +1099 -22
  118. package/lib/styles/settings/_variables.scss +3 -3
  119. package/lib/util/defineComponent.mjs.map +1 -1
  120. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  import * as vue from 'vue';
2
2
  import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, PropType, JSXComponent, Ref, ComputedRef, nextTick } from 'vue';
3
3
 
4
- type SlotsToProps<U extends RawSlots, T = U extends Record<string, any[]> ? MakeSlots<U> : U> = {
4
+ type SlotsToProps<U extends RawSlots, Generic extends boolean = false, T = U extends Record<string, any[]> ? MakeSlots<U> : U> = {
5
5
  $children?: (VNodeChild | (T extends {
6
6
  default: infer V;
7
7
  } ? V : {}) | {
@@ -12,14 +12,18 @@ type SlotsToProps<U extends RawSlots, T = U extends Record<string, any[]> ? Make
12
12
  };
13
13
  } & {
14
14
  [K in keyof T as `v-slot:${K & string}`]?: T[K] | false;
15
- };
15
+ } & (Generic extends false ? {
16
+ $slots?: {
17
+ [K in keyof T]?: T[K];
18
+ };
19
+ } : {});
16
20
  type RawSlots = Record<string, any[]> | Record<string, Slot>;
17
21
  type Slot<T extends any[] = any[]> = (...args: T) => VNodeChild;
18
22
  type MakeSlots<T extends RawSlots> = {
19
23
  [K in keyof T]: T[K] extends any[] ? Slot<T[K]> : T[K];
20
24
  };
21
25
  type GenericProps<Props, Slots extends Record<string, any[]>> = {
22
- $props: Props & SlotsToProps<Slots>;
26
+ $props: Props & SlotsToProps<Slots, true>;
23
27
  $slots: MakeSlots<Slots>;
24
28
  };
25
29
  interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
@@ -166,6 +170,22 @@ declare const VTextField: {
166
170
  default?: false | (() => vue.VNodeChild) | undefined;
167
171
  counter?: false | ((args_0: VCounterSlot) => vue.VNodeChild) | undefined;
168
172
  } | undefined;
173
+ $slots?: {
174
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
175
+ clear?: (() => vue.VNodeChild) | undefined;
176
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
177
+ label?: ((args_0: DefaultInputSlot & {
178
+ label: string | undefined;
179
+ props: Record<string, any>;
180
+ }) => vue.VNodeChild) | undefined;
181
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
182
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
183
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
184
+ 'prepend-inner'?: ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
185
+ 'append-inner'?: ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
186
+ default?: (() => vue.VNodeChild) | undefined;
187
+ counter?: ((args_0: VCounterSlot) => vue.VNodeChild) | undefined;
188
+ } | undefined;
169
189
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
170
190
  [key: string]: any;
171
191
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -229,7 +249,7 @@ declare const VTextField: {
229
249
  "v-slot:prepend-inner"?: false | ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
230
250
  "v-slot:append-inner"?: false | ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
231
251
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
232
- validateOn?: "input" | "blur" | "submit" | undefined;
252
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
233
253
  validationValue?: any;
234
254
  hint?: string | undefined;
235
255
  hideDetails?: boolean | "auto" | undefined;
@@ -340,7 +360,7 @@ declare const VTextField: {
340
360
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
341
361
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
342
362
  baseColor?: string | undefined;
343
- validateOn?: "input" | "blur" | "submit" | undefined;
363
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
344
364
  validationValue?: any;
345
365
  hint?: string | undefined;
346
366
  hideDetails?: boolean | "auto" | undefined;
@@ -395,6 +415,23 @@ declare const VTextField: {
395
415
  "v-slot:append-inner"?: false | ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
396
416
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
397
417
  "v-slot:counter"?: false | ((args_0: VCounterSlot) => vue.VNodeChild) | undefined;
418
+ } & {
419
+ $slots?: {
420
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
421
+ clear?: (() => vue.VNodeChild) | undefined;
422
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
423
+ label?: ((args_0: DefaultInputSlot & {
424
+ label: string | undefined;
425
+ props: Record<string, any>;
426
+ }) => vue.VNodeChild) | undefined;
427
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
428
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
429
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
430
+ 'prepend-inner'?: ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
431
+ 'append-inner'?: ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
432
+ default?: (() => vue.VNodeChild) | undefined;
433
+ counter?: ((args_0: VCounterSlot) => vue.VNodeChild) | undefined;
434
+ } | undefined;
398
435
  } & {
399
436
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
400
437
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -439,6 +476,13 @@ declare const VTextField: {
439
476
  details?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
440
477
  message?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
441
478
  } | undefined;
479
+ $slots?: {
480
+ default?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
481
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
482
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
483
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
484
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
485
+ } | undefined;
442
486
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
443
487
  [key: string]: any;
444
488
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -487,7 +531,7 @@ declare const VTextField: {
487
531
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
488
532
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
489
533
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
490
- validateOn?: "input" | "blur" | "submit" | undefined;
534
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
491
535
  validationValue?: any;
492
536
  hint?: string | undefined;
493
537
  hideDetails?: boolean | "auto" | undefined;
@@ -544,7 +588,7 @@ declare const VTextField: {
544
588
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
545
589
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
546
590
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
547
- validateOn?: "input" | "blur" | "submit" | undefined;
591
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
548
592
  validationValue?: any;
549
593
  hint?: string | undefined;
550
594
  hideDetails?: boolean | "auto" | undefined;
@@ -569,12 +613,20 @@ declare const VTextField: {
569
613
  "v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
570
614
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
571
615
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
616
+ } & {
617
+ $slots?: {
618
+ default?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
619
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
620
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
621
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
622
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
623
+ } | undefined;
572
624
  } & {
573
625
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
574
626
  }, {
575
627
  reset: () => void;
576
628
  resetValidation: () => void;
577
- validate: () => Promise<string[]>;
629
+ validate: (silent?: boolean) => Promise<string[]>;
578
630
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
579
631
  'update:modelValue': (val: any) => true;
580
632
  }, string, {
@@ -650,7 +702,7 @@ declare const VTextField: {
650
702
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
651
703
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
652
704
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
653
- validateOn?: "input" | "blur" | "submit" | undefined;
705
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
654
706
  validationValue?: any;
655
707
  hint?: string | undefined;
656
708
  hideDetails?: boolean | "auto" | undefined;
@@ -675,13 +727,21 @@ declare const VTextField: {
675
727
  "v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
676
728
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
677
729
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
730
+ } & {
731
+ $slots?: {
732
+ default?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
733
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
734
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
735
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
736
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
737
+ } | undefined;
678
738
  } & {
679
739
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
680
740
  } & vue.ShallowUnwrapRef<{
681
741
  reset: () => void;
682
742
  resetValidation: () => void;
683
- validate: () => Promise<string[]>;
684
- }> & {} & vue.ComponentCustomProperties & {}, "key" | "id" | "name" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "v-slot:default" | "v-slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "v-slot:message" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`> & Omit<Omit<{
743
+ validate: (silent?: boolean) => Promise<string[]>;
744
+ }> & {} & vue.ComponentCustomProperties & {}, "key" | "id" | "name" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "v-slot:default" | "v-slots" | "$slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "v-slot:message" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`> & Omit<Omit<{
685
745
  $: vue.ComponentInternalInstance;
686
746
  $data: {};
687
747
  $props: {
@@ -1063,7 +1123,7 @@ declare const VTextField: {
1063
1123
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1064
1124
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
1065
1125
  baseColor?: string | undefined;
1066
- validateOn?: "input" | "blur" | "submit" | undefined;
1126
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
1067
1127
  validationValue?: any;
1068
1128
  hint?: string | undefined;
1069
1129
  hideDetails?: boolean | "auto" | undefined;
@@ -1118,6 +1178,23 @@ declare const VTextField: {
1118
1178
  "v-slot:append-inner"?: false | ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
1119
1179
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
1120
1180
  "v-slot:counter"?: false | ((args_0: VCounterSlot) => vue.VNodeChild) | undefined;
1181
+ } & {
1182
+ $slots?: {
1183
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1184
+ clear?: (() => vue.VNodeChild) | undefined;
1185
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1186
+ label?: ((args_0: DefaultInputSlot & {
1187
+ label: string | undefined;
1188
+ props: Record<string, any>;
1189
+ }) => vue.VNodeChild) | undefined;
1190
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1191
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1192
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
1193
+ 'prepend-inner'?: ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
1194
+ 'append-inner'?: ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
1195
+ default?: (() => vue.VNodeChild) | undefined;
1196
+ counter?: ((args_0: VCounterSlot) => vue.VNodeChild) | undefined;
1197
+ } | undefined;
1121
1198
  } & {
1122
1199
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
1123
1200
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -1162,6 +1239,13 @@ declare const VTextField: {
1162
1239
  details?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1163
1240
  message?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1164
1241
  } | undefined;
1242
+ $slots?: {
1243
+ default?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1244
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1245
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1246
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1247
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1248
+ } | undefined;
1165
1249
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
1166
1250
  [key: string]: any;
1167
1251
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -1210,7 +1294,7 @@ declare const VTextField: {
1210
1294
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1211
1295
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
1212
1296
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1213
- validateOn?: "input" | "blur" | "submit" | undefined;
1297
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
1214
1298
  validationValue?: any;
1215
1299
  hint?: string | undefined;
1216
1300
  hideDetails?: boolean | "auto" | undefined;
@@ -1267,7 +1351,7 @@ declare const VTextField: {
1267
1351
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1268
1352
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1269
1353
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
1270
- validateOn?: "input" | "blur" | "submit" | undefined;
1354
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
1271
1355
  validationValue?: any;
1272
1356
  hint?: string | undefined;
1273
1357
  hideDetails?: boolean | "auto" | undefined;
@@ -1292,12 +1376,20 @@ declare const VTextField: {
1292
1376
  "v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1293
1377
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1294
1378
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1379
+ } & {
1380
+ $slots?: {
1381
+ default?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1382
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1383
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1384
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1385
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1386
+ } | undefined;
1295
1387
  } & {
1296
1388
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
1297
1389
  }, {
1298
1390
  reset: () => void;
1299
1391
  resetValidation: () => void;
1300
- validate: () => Promise<string[]>;
1392
+ validate: (silent?: boolean) => Promise<string[]>;
1301
1393
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1302
1394
  'update:modelValue': (val: any) => true;
1303
1395
  }, string, {
@@ -1373,7 +1465,7 @@ declare const VTextField: {
1373
1465
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1374
1466
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1375
1467
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
1376
- validateOn?: "input" | "blur" | "submit" | undefined;
1468
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
1377
1469
  validationValue?: any;
1378
1470
  hint?: string | undefined;
1379
1471
  hideDetails?: boolean | "auto" | undefined;
@@ -1398,13 +1490,21 @@ declare const VTextField: {
1398
1490
  "v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1399
1491
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1400
1492
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1493
+ } & {
1494
+ $slots?: {
1495
+ default?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1496
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1497
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1498
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1499
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1500
+ } | undefined;
1401
1501
  } & {
1402
1502
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
1403
1503
  } & vue.ShallowUnwrapRef<{
1404
1504
  reset: () => void;
1405
1505
  resetValidation: () => void;
1406
- validate: () => Promise<string[]>;
1407
- }> & {} & vue.ComponentCustomProperties & {}, "key" | "id" | "name" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "v-slot:default" | "v-slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "v-slot:message" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`> & Omit<Omit<{
1506
+ validate: (silent?: boolean) => Promise<string[]>;
1507
+ }> & {} & vue.ComponentCustomProperties & {}, "key" | "id" | "name" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "v-slot:default" | "v-slots" | "$slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "v-slot:message" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`> & Omit<Omit<{
1408
1508
  $: vue.ComponentInternalInstance;
1409
1509
  $data: {};
1410
1510
  $props: {
@@ -1701,7 +1801,7 @@ declare const VTextField: {
1701
1801
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1702
1802
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
1703
1803
  baseColor?: string | undefined;
1704
- validateOn?: "input" | "blur" | "submit" | undefined;
1804
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
1705
1805
  validationValue?: any;
1706
1806
  hint?: string | undefined;
1707
1807
  hideDetails?: boolean | "auto" | undefined;
@@ -1756,6 +1856,23 @@ declare const VTextField: {
1756
1856
  "v-slot:append-inner"?: false | ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
1757
1857
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
1758
1858
  "v-slot:counter"?: false | ((args_0: VCounterSlot) => vue.VNodeChild) | undefined;
1859
+ } & {
1860
+ $slots?: {
1861
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1862
+ clear?: (() => vue.VNodeChild) | undefined;
1863
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1864
+ label?: ((args_0: DefaultInputSlot & {
1865
+ label: string | undefined;
1866
+ props: Record<string, any>;
1867
+ }) => vue.VNodeChild) | undefined;
1868
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1869
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1870
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
1871
+ 'prepend-inner'?: ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
1872
+ 'append-inner'?: ((args_0: DefaultInputSlot) => vue.VNodeChild) | undefined;
1873
+ default?: (() => vue.VNodeChild) | undefined;
1874
+ counter?: ((args_0: VCounterSlot) => vue.VNodeChild) | undefined;
1875
+ } | undefined;
1759
1876
  } & {
1760
1877
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
1761
1878
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -1800,6 +1917,13 @@ declare const VTextField: {
1800
1917
  details?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1801
1918
  message?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1802
1919
  } | undefined;
1920
+ $slots?: {
1921
+ default?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1922
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1923
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1924
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1925
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1926
+ } | undefined;
1803
1927
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
1804
1928
  [key: string]: any;
1805
1929
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -1848,7 +1972,7 @@ declare const VTextField: {
1848
1972
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1849
1973
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
1850
1974
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
1851
- validateOn?: "input" | "blur" | "submit" | undefined;
1975
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
1852
1976
  validationValue?: any;
1853
1977
  hint?: string | undefined;
1854
1978
  hideDetails?: boolean | "auto" | undefined;
@@ -1905,7 +2029,7 @@ declare const VTextField: {
1905
2029
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1906
2030
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
1907
2031
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
1908
- validateOn?: "input" | "blur" | "submit" | undefined;
2032
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
1909
2033
  validationValue?: any;
1910
2034
  hint?: string | undefined;
1911
2035
  hideDetails?: boolean | "auto" | undefined;
@@ -1930,12 +2054,20 @@ declare const VTextField: {
1930
2054
  "v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1931
2055
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
1932
2056
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
2057
+ } & {
2058
+ $slots?: {
2059
+ default?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2060
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2061
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2062
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2063
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
2064
+ } | undefined;
1933
2065
  } & {
1934
2066
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
1935
2067
  }, {
1936
2068
  reset: () => void;
1937
2069
  resetValidation: () => void;
1938
- validate: () => Promise<string[]>;
2070
+ validate: (silent?: boolean) => Promise<string[]>;
1939
2071
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1940
2072
  'update:modelValue': (val: any) => true;
1941
2073
  }, string, {
@@ -2011,7 +2143,7 @@ declare const VTextField: {
2011
2143
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2012
2144
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2013
2145
  'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
2014
- validateOn?: "input" | "blur" | "submit" | undefined;
2146
+ validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
2015
2147
  validationValue?: any;
2016
2148
  hint?: string | undefined;
2017
2149
  hideDetails?: boolean | "auto" | undefined;
@@ -2036,13 +2168,21 @@ declare const VTextField: {
2036
2168
  "v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2037
2169
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2038
2170
  "v-slot:message"?: false | ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
2171
+ } & {
2172
+ $slots?: {
2173
+ default?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2174
+ prepend?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2175
+ append?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2176
+ details?: ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2177
+ message?: ((args_0: VMessageSlot) => vue.VNodeChild) | undefined;
2178
+ } | undefined;
2039
2179
  } & {
2040
2180
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
2041
2181
  } & vue.ShallowUnwrapRef<{
2042
2182
  reset: () => void;
2043
2183
  resetValidation: () => void;
2044
- validate: () => Promise<string[]>;
2045
- }> & {} & vue.ComponentCustomProperties & {}, "key" | "id" | "name" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "v-slot:default" | "v-slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "v-slot:message" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`> & Omit<Omit<{
2184
+ validate: (silent?: boolean) => Promise<string[]>;
2185
+ }> & {} & vue.ComponentCustomProperties & {}, "key" | "id" | "name" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "v-slot:default" | "v-slots" | "$slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "v-slot:message" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`> & Omit<Omit<{
2046
2186
  $: vue.ComponentInternalInstance;
2047
2187
  $data: {};
2048
2188
  $props: {
@@ -2409,7 +2549,7 @@ declare const VTextField: {
2409
2549
  default: () => never[];
2410
2550
  };
2411
2551
  modelValue: null;
2412
- validateOn: PropType<"input" | "blur" | "submit" | undefined>;
2552
+ validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
2413
2553
  validationValue: null;
2414
2554
  density: {
2415
2555
  type: PropType<Density>;
@@ -2502,7 +2642,7 @@ declare const VTextField: {
2502
2642
  default: () => never[];
2503
2643
  };
2504
2644
  modelValue: null;
2505
- validateOn: PropType<"input" | "blur" | "submit" | undefined>;
2645
+ validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
2506
2646
  validationValue: null;
2507
2647
  density: {
2508
2648
  type: PropType<Density>;