@vuetify/nightly 3.4.0-beta.1-dev.2023-11-08 → 3.4.0-dev.2023-12-01

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 (49) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/attributes.json +2066 -2074
  3. package/dist/json/importMap.json +96 -96
  4. package/dist/json/tags.json +5 -7
  5. package/dist/json/web-types.json +3991 -4113
  6. package/dist/vuetify-labs.css +1886 -1885
  7. package/dist/vuetify-labs.d.ts +89 -136
  8. package/dist/vuetify-labs.esm.js +125 -112
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +124 -111
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +161 -160
  13. package/dist/vuetify.d.ts +118 -165
  14. package/dist/vuetify.esm.js +125 -112
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +124 -111
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +141 -140
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VBtn/VBtn.css +0 -1
  22. package/lib/components/VBtn/_variables.scss +1 -1
  23. package/lib/components/VBtnGroup/VBtnGroup.css +0 -1
  24. package/lib/components/VCarousel/index.d.mts +24 -1
  25. package/lib/components/VDataTable/VDataTableServer.mjs +2 -2
  26. package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
  27. package/lib/components/VDataTable/VDataTableVirtual.mjs +2 -2
  28. package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
  29. package/lib/components/VDataTable/index.d.mts +24 -24
  30. package/lib/components/VGrid/VSpacer.mjs +3 -0
  31. package/lib/components/VGrid/VSpacer.mjs.map +1 -1
  32. package/lib/components/VImg/VImg.css +3 -0
  33. package/lib/components/VImg/VImg.mjs +14 -3
  34. package/lib/components/VImg/VImg.mjs.map +1 -1
  35. package/lib/components/VImg/VImg.sass +3 -0
  36. package/lib/components/VImg/_variables.scss +3 -0
  37. package/lib/components/VImg/index.d.mts +24 -1
  38. package/lib/components/VStepper/VStepperWindow.mjs +8 -6
  39. package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
  40. package/lib/components/VStepper/VStepperWindowItem.mjs +3 -1
  41. package/lib/components/VStepper/VStepperWindowItem.mjs.map +1 -1
  42. package/lib/components/VStepper/index.d.mts +18 -140
  43. package/lib/components/index.d.mts +89 -136
  44. package/lib/entry-bundler.mjs +1 -1
  45. package/lib/entry-bundler.mjs.map +1 -1
  46. package/lib/framework.mjs +1 -1
  47. package/lib/framework.mjs.map +1 -1
  48. package/lib/index.d.mts +29 -29
  49. package/package.json +2 -2
package/dist/vuetify.d.ts CHANGED
@@ -14719,6 +14719,7 @@ declare const VImg: {
14719
14719
  options: IntersectionObserverInit;
14720
14720
  cover: boolean;
14721
14721
  src: string | srcObject;
14722
+ rounded: string | number | boolean;
14722
14723
  }> & Omit<{
14723
14724
  inline: boolean;
14724
14725
  transition: string | boolean | (vue.TransitionProps & {
@@ -14732,6 +14733,7 @@ declare const VImg: {
14732
14733
  height?: string | number | undefined;
14733
14734
  width?: string | number | undefined;
14734
14735
  aspectRatio?: string | number | undefined;
14736
+ color?: string | undefined;
14735
14737
  maxHeight?: string | number | undefined;
14736
14738
  maxWidth?: string | number | undefined;
14737
14739
  minHeight?: string | number | undefined;
@@ -14745,6 +14747,7 @@ declare const VImg: {
14745
14747
  sizes?: string | undefined;
14746
14748
  srcset?: string | undefined;
14747
14749
  contentClass?: string | undefined;
14750
+ rounded?: string | number | boolean | undefined;
14748
14751
  gradient?: string | undefined;
14749
14752
  lazySrc?: string | undefined;
14750
14753
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -14780,6 +14783,7 @@ declare const VImg: {
14780
14783
  height?: string | number | undefined;
14781
14784
  width?: string | number | undefined;
14782
14785
  aspectRatio?: string | number | undefined;
14786
+ color?: string | undefined;
14783
14787
  maxHeight?: string | number | undefined;
14784
14788
  maxWidth?: string | number | undefined;
14785
14789
  minHeight?: string | number | undefined;
@@ -14793,6 +14797,7 @@ declare const VImg: {
14793
14797
  sizes?: string | undefined;
14794
14798
  srcset?: string | undefined;
14795
14799
  contentClass?: string | undefined;
14800
+ rounded?: string | number | boolean | undefined;
14796
14801
  gradient?: string | undefined;
14797
14802
  lazySrc?: string | undefined;
14798
14803
  } & {
@@ -14817,7 +14822,7 @@ declare const VImg: {
14817
14822
  onError?: ((value: string | undefined) => any) | undefined;
14818
14823
  onLoad?: ((value: string | undefined) => any) | undefined;
14819
14824
  onLoadstart?: ((value: string | undefined) => any) | undefined;
14820
- }, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src">;
14825
+ }, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src" | "rounded">;
14821
14826
  $attrs: {
14822
14827
  [x: string]: unknown;
14823
14828
  };
@@ -14856,6 +14861,7 @@ declare const VImg: {
14856
14861
  height?: string | number | undefined;
14857
14862
  width?: string | number | undefined;
14858
14863
  aspectRatio?: string | number | undefined;
14864
+ color?: string | undefined;
14859
14865
  maxHeight?: string | number | undefined;
14860
14866
  maxWidth?: string | number | undefined;
14861
14867
  minHeight?: string | number | undefined;
@@ -14869,6 +14875,7 @@ declare const VImg: {
14869
14875
  sizes?: string | undefined;
14870
14876
  srcset?: string | undefined;
14871
14877
  contentClass?: string | undefined;
14878
+ rounded?: string | number | boolean | undefined;
14872
14879
  gradient?: string | undefined;
14873
14880
  lazySrc?: string | undefined;
14874
14881
  } & {
@@ -14914,6 +14921,7 @@ declare const VImg: {
14914
14921
  options: IntersectionObserverInit;
14915
14922
  cover: boolean;
14916
14923
  src: string | srcObject;
14924
+ rounded: string | number | boolean;
14917
14925
  }, {}, string, vue.SlotsType<Partial<{
14918
14926
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
14919
14927
  [key: string]: any;
@@ -14961,6 +14969,7 @@ declare const VImg: {
14961
14969
  height?: string | number | undefined;
14962
14970
  width?: string | number | undefined;
14963
14971
  aspectRatio?: string | number | undefined;
14972
+ color?: string | undefined;
14964
14973
  maxHeight?: string | number | undefined;
14965
14974
  maxWidth?: string | number | undefined;
14966
14975
  minHeight?: string | number | undefined;
@@ -14974,6 +14983,7 @@ declare const VImg: {
14974
14983
  sizes?: string | undefined;
14975
14984
  srcset?: string | undefined;
14976
14985
  contentClass?: string | undefined;
14986
+ rounded?: string | number | boolean | undefined;
14977
14987
  gradient?: string | undefined;
14978
14988
  lazySrc?: string | undefined;
14979
14989
  } & {
@@ -15022,6 +15032,7 @@ declare const VImg: {
15022
15032
  height?: string | number | undefined;
15023
15033
  width?: string | number | undefined;
15024
15034
  aspectRatio?: string | number | undefined;
15035
+ color?: string | undefined;
15025
15036
  maxHeight?: string | number | undefined;
15026
15037
  maxWidth?: string | number | undefined;
15027
15038
  minHeight?: string | number | undefined;
@@ -15035,6 +15046,7 @@ declare const VImg: {
15035
15046
  sizes?: string | undefined;
15036
15047
  srcset?: string | undefined;
15037
15048
  contentClass?: string | undefined;
15049
+ rounded?: string | number | boolean | undefined;
15038
15050
  gradient?: string | undefined;
15039
15051
  lazySrc?: string | undefined;
15040
15052
  } & {
@@ -15080,6 +15092,7 @@ declare const VImg: {
15080
15092
  options: IntersectionObserverInit;
15081
15093
  cover: boolean;
15082
15094
  src: string | srcObject;
15095
+ rounded: string | number | boolean;
15083
15096
  }, {}, string, vue.SlotsType<Partial<{
15084
15097
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
15085
15098
  [key: string]: any;
@@ -15101,6 +15114,10 @@ declare const VImg: {
15101
15114
  default: string;
15102
15115
  validator: (val: unknown) => boolean;
15103
15116
  };
15117
+ rounded: {
15118
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
15119
+ default: undefined;
15120
+ };
15104
15121
  class: PropType<any>;
15105
15122
  style: {
15106
15123
  type: PropType<vue.StyleValue>;
@@ -15117,6 +15134,7 @@ declare const VImg: {
15117
15134
  inline: BooleanConstructor;
15118
15135
  alt: StringConstructor;
15119
15136
  cover: BooleanConstructor;
15137
+ color: StringConstructor;
15120
15138
  draggable: {
15121
15139
  type: PropType<boolean | "false" | "true">;
15122
15140
  default: undefined;
@@ -15149,6 +15167,10 @@ declare const VImg: {
15149
15167
  default: string;
15150
15168
  validator: (val: unknown) => boolean;
15151
15169
  };
15170
+ rounded: {
15171
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
15172
+ default: undefined;
15173
+ };
15152
15174
  class: PropType<any>;
15153
15175
  style: {
15154
15176
  type: PropType<vue.StyleValue>;
@@ -15165,6 +15187,7 @@ declare const VImg: {
15165
15187
  inline: BooleanConstructor;
15166
15188
  alt: StringConstructor;
15167
15189
  cover: BooleanConstructor;
15190
+ color: StringConstructor;
15168
15191
  draggable: {
15169
15192
  type: PropType<boolean | "false" | "true">;
15170
15193
  default: undefined;
@@ -15206,6 +15229,7 @@ declare const VCarouselItem: {
15206
15229
  options: IntersectionObserverInit;
15207
15230
  cover: boolean;
15208
15231
  src: string | srcObject;
15232
+ rounded: string | number | boolean;
15209
15233
  reverseTransition: string | boolean;
15210
15234
  }> & Omit<{
15211
15235
  inline: boolean;
@@ -15218,6 +15242,7 @@ declare const VCarouselItem: {
15218
15242
  height?: string | number | undefined;
15219
15243
  width?: string | number | undefined;
15220
15244
  aspectRatio?: string | number | undefined;
15245
+ color?: string | undefined;
15221
15246
  maxHeight?: string | number | undefined;
15222
15247
  maxWidth?: string | number | undefined;
15223
15248
  minHeight?: string | number | undefined;
@@ -15233,6 +15258,7 @@ declare const VCarouselItem: {
15233
15258
  sizes?: string | undefined;
15234
15259
  srcset?: string | undefined;
15235
15260
  contentClass?: string | undefined;
15261
+ rounded?: string | number | boolean | undefined;
15236
15262
  gradient?: string | undefined;
15237
15263
  lazySrc?: string | undefined;
15238
15264
  selectedClass?: string | undefined;
@@ -15265,6 +15291,7 @@ declare const VCarouselItem: {
15265
15291
  height?: string | number | undefined;
15266
15292
  width?: string | number | undefined;
15267
15293
  aspectRatio?: string | number | undefined;
15294
+ color?: string | undefined;
15268
15295
  maxHeight?: string | number | undefined;
15269
15296
  maxWidth?: string | number | undefined;
15270
15297
  minHeight?: string | number | undefined;
@@ -15280,6 +15307,7 @@ declare const VCarouselItem: {
15280
15307
  sizes?: string | undefined;
15281
15308
  srcset?: string | undefined;
15282
15309
  contentClass?: string | undefined;
15310
+ rounded?: string | number | boolean | undefined;
15283
15311
  gradient?: string | undefined;
15284
15312
  lazySrc?: string | undefined;
15285
15313
  selectedClass?: string | undefined;
@@ -15302,7 +15330,7 @@ declare const VCarouselItem: {
15302
15330
  "v-slot:placeholder"?: false | (() => vue.VNodeChild) | undefined;
15303
15331
  "v-slot:error"?: false | (() => vue.VNodeChild) | undefined;
15304
15332
  "v-slot:sources"?: false | (() => vue.VNodeChild) | undefined;
15305
- }, "inline" | "transition" | "style" | "draggable" | "eager" | "disabled" | "options" | "cover" | "src" | "reverseTransition">;
15333
+ }, "inline" | "transition" | "style" | "draggable" | "eager" | "disabled" | "options" | "cover" | "src" | "rounded" | "reverseTransition">;
15306
15334
  $attrs: {
15307
15335
  [x: string]: unknown;
15308
15336
  };
@@ -15339,6 +15367,7 @@ declare const VCarouselItem: {
15339
15367
  height?: string | number | undefined;
15340
15368
  width?: string | number | undefined;
15341
15369
  aspectRatio?: string | number | undefined;
15370
+ color?: string | undefined;
15342
15371
  maxHeight?: string | number | undefined;
15343
15372
  maxWidth?: string | number | undefined;
15344
15373
  minHeight?: string | number | undefined;
@@ -15354,6 +15383,7 @@ declare const VCarouselItem: {
15354
15383
  sizes?: string | undefined;
15355
15384
  srcset?: string | undefined;
15356
15385
  contentClass?: string | undefined;
15386
+ rounded?: string | number | boolean | undefined;
15357
15387
  gradient?: string | undefined;
15358
15388
  lazySrc?: string | undefined;
15359
15389
  selectedClass?: string | undefined;
@@ -15386,6 +15416,7 @@ declare const VCarouselItem: {
15386
15416
  options: IntersectionObserverInit;
15387
15417
  cover: boolean;
15388
15418
  src: string | srcObject;
15419
+ rounded: string | number | boolean;
15389
15420
  reverseTransition: string | boolean;
15390
15421
  }, {}, string, vue.SlotsType<Partial<{
15391
15422
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -15432,6 +15463,7 @@ declare const VCarouselItem: {
15432
15463
  height?: string | number | undefined;
15433
15464
  width?: string | number | undefined;
15434
15465
  aspectRatio?: string | number | undefined;
15466
+ color?: string | undefined;
15435
15467
  maxHeight?: string | number | undefined;
15436
15468
  maxWidth?: string | number | undefined;
15437
15469
  minHeight?: string | number | undefined;
@@ -15447,6 +15479,7 @@ declare const VCarouselItem: {
15447
15479
  sizes?: string | undefined;
15448
15480
  srcset?: string | undefined;
15449
15481
  contentClass?: string | undefined;
15482
+ rounded?: string | number | boolean | undefined;
15450
15483
  gradient?: string | undefined;
15451
15484
  lazySrc?: string | undefined;
15452
15485
  selectedClass?: string | undefined;
@@ -15485,6 +15518,7 @@ declare const VCarouselItem: {
15485
15518
  height?: string | number | undefined;
15486
15519
  width?: string | number | undefined;
15487
15520
  aspectRatio?: string | number | undefined;
15521
+ color?: string | undefined;
15488
15522
  maxHeight?: string | number | undefined;
15489
15523
  maxWidth?: string | number | undefined;
15490
15524
  minHeight?: string | number | undefined;
@@ -15500,6 +15534,7 @@ declare const VCarouselItem: {
15500
15534
  sizes?: string | undefined;
15501
15535
  srcset?: string | undefined;
15502
15536
  contentClass?: string | undefined;
15537
+ rounded?: string | number | boolean | undefined;
15503
15538
  gradient?: string | undefined;
15504
15539
  lazySrc?: string | undefined;
15505
15540
  selectedClass?: string | undefined;
@@ -15532,6 +15567,7 @@ declare const VCarouselItem: {
15532
15567
  options: IntersectionObserverInit;
15533
15568
  cover: boolean;
15534
15569
  src: string | srcObject;
15570
+ rounded: string | number | boolean;
15535
15571
  reverseTransition: string | boolean;
15536
15572
  }, {}, string, vue.SlotsType<Partial<{
15537
15573
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -15564,6 +15600,10 @@ declare const VCarouselItem: {
15564
15600
  type: (StringConstructor | BooleanConstructor)[];
15565
15601
  default: undefined;
15566
15602
  };
15603
+ rounded: {
15604
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
15605
+ default: undefined;
15606
+ };
15567
15607
  height: (StringConstructor | NumberConstructor)[];
15568
15608
  maxHeight: (StringConstructor | NumberConstructor)[];
15569
15609
  maxWidth: (StringConstructor | NumberConstructor)[];
@@ -15575,6 +15615,7 @@ declare const VCarouselItem: {
15575
15615
  inline: BooleanConstructor;
15576
15616
  alt: StringConstructor;
15577
15617
  cover: BooleanConstructor;
15618
+ color: StringConstructor;
15578
15619
  draggable: {
15579
15620
  type: vue.PropType<boolean | "false" | "true">;
15580
15621
  default: undefined;
@@ -15616,6 +15657,10 @@ declare const VCarouselItem: {
15616
15657
  type: (StringConstructor | BooleanConstructor)[];
15617
15658
  default: undefined;
15618
15659
  };
15660
+ rounded: {
15661
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
15662
+ default: undefined;
15663
+ };
15619
15664
  height: (StringConstructor | NumberConstructor)[];
15620
15665
  maxHeight: (StringConstructor | NumberConstructor)[];
15621
15666
  maxWidth: (StringConstructor | NumberConstructor)[];
@@ -15627,6 +15672,7 @@ declare const VCarouselItem: {
15627
15672
  inline: BooleanConstructor;
15628
15673
  alt: StringConstructor;
15629
15674
  cover: BooleanConstructor;
15675
+ color: StringConstructor;
15630
15676
  draggable: {
15631
15677
  type: vue.PropType<boolean | "false" | "true">;
15632
15678
  default: undefined;
@@ -28216,11 +28262,11 @@ declare const VDataTableVirtual: {
28216
28262
  "onUpdate:expanded"?: ((value: any) => any) | undefined;
28217
28263
  "onUpdate:options"?: ((value: any) => any) | undefined;
28218
28264
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
28219
- 'update:modelValue': (value: any[]) => true;
28220
- 'update:sortBy': (value: any) => true;
28221
- 'update:options': (value: any) => true;
28222
- 'update:groupBy': (value: any) => true;
28223
- 'update:expanded': (value: any) => true;
28265
+ 'update:modelValue': (value: any[]) => boolean;
28266
+ 'update:sortBy': (value: any) => boolean;
28267
+ 'update:options': (value: any) => boolean;
28268
+ 'update:groupBy': (value: any) => boolean;
28269
+ 'update:expanded': (value: any) => boolean;
28224
28270
  }, string, {
28225
28271
  style: vue.StyleValue;
28226
28272
  expanded: readonly string[];
@@ -28934,11 +28980,11 @@ declare const VDataTableVirtual: {
28934
28980
  "onUpdate:expanded"?: ((value: any) => any) | undefined;
28935
28981
  "onUpdate:options"?: ((value: any) => any) | undefined;
28936
28982
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
28937
- 'update:modelValue': (value: any[]) => true;
28938
- 'update:sortBy': (value: any) => true;
28939
- 'update:options': (value: any) => true;
28940
- 'update:groupBy': (value: any) => true;
28941
- 'update:expanded': (value: any) => true;
28983
+ 'update:modelValue': (value: any[]) => boolean;
28984
+ 'update:sortBy': (value: any) => boolean;
28985
+ 'update:options': (value: any) => boolean;
28986
+ 'update:groupBy': (value: any) => boolean;
28987
+ 'update:expanded': (value: any) => boolean;
28942
28988
  }, string, {
28943
28989
  style: vue.StyleValue;
28944
28990
  expanded: readonly string[];
@@ -30415,13 +30461,13 @@ declare const VDataTableServer: {
30415
30461
  "onUpdate:itemsPerPage"?: ((page: number) => any) | undefined;
30416
30462
  "onUpdate:options"?: ((options: any) => any) | undefined;
30417
30463
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
30418
- 'update:modelValue': (value: any[]) => true;
30419
- 'update:page': (page: number) => true;
30420
- 'update:itemsPerPage': (page: number) => true;
30421
- 'update:sortBy': (sortBy: any) => true;
30422
- 'update:options': (options: any) => true;
30423
- 'update:expanded': (options: any) => true;
30424
- 'update:groupBy': (value: any) => true;
30464
+ 'update:modelValue': (value: any[]) => boolean;
30465
+ 'update:page': (page: number) => boolean;
30466
+ 'update:itemsPerPage': (page: number) => boolean;
30467
+ 'update:sortBy': (sortBy: any) => boolean;
30468
+ 'update:options': (options: any) => boolean;
30469
+ 'update:expanded': (options: any) => boolean;
30470
+ 'update:groupBy': (value: any) => boolean;
30425
30471
  }, string, {
30426
30472
  style: vue.StyleValue;
30427
30473
  expanded: readonly string[];
@@ -31226,13 +31272,13 @@ declare const VDataTableServer: {
31226
31272
  "onUpdate:itemsPerPage"?: ((page: number) => any) | undefined;
31227
31273
  "onUpdate:options"?: ((options: any) => any) | undefined;
31228
31274
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
31229
- 'update:modelValue': (value: any[]) => true;
31230
- 'update:page': (page: number) => true;
31231
- 'update:itemsPerPage': (page: number) => true;
31232
- 'update:sortBy': (sortBy: any) => true;
31233
- 'update:options': (options: any) => true;
31234
- 'update:expanded': (options: any) => true;
31235
- 'update:groupBy': (value: any) => true;
31275
+ 'update:modelValue': (value: any[]) => boolean;
31276
+ 'update:page': (page: number) => boolean;
31277
+ 'update:itemsPerPage': (page: number) => boolean;
31278
+ 'update:sortBy': (sortBy: any) => boolean;
31279
+ 'update:options': (options: any) => boolean;
31280
+ 'update:expanded': (options: any) => boolean;
31281
+ 'update:groupBy': (value: any) => boolean;
31236
31282
  }, string, {
31237
31283
  style: vue.StyleValue;
31238
31284
  expanded: readonly string[];
@@ -64327,28 +64373,17 @@ declare const VStepperWindow: {
64327
64373
  style: vue.StyleValue;
64328
64374
  disabled: boolean;
64329
64375
  tag: string;
64330
- mandatory: NonNullable<boolean | "force">;
64331
- touch: boolean | TouchHandlers;
64332
64376
  selectedClass: string;
64333
- continuous: boolean;
64334
- nextIcon: IconValue;
64335
- prevIcon: IconValue;
64336
64377
  }> & Omit<{
64337
64378
  reverse: boolean;
64338
64379
  direction: "horizontal" | "vertical";
64339
64380
  style: vue.StyleValue;
64340
64381
  disabled: boolean;
64341
64382
  tag: string;
64342
- mandatory: NonNullable<boolean | "force">;
64343
64383
  selectedClass: string;
64344
- continuous: boolean;
64345
- nextIcon: IconValue;
64346
- prevIcon: IconValue;
64347
64384
  class?: any;
64348
- touch?: boolean | TouchHandlers | undefined;
64349
64385
  theme?: string | undefined;
64350
64386
  modelValue?: any;
64351
- showArrows?: string | boolean | undefined;
64352
64387
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64353
64388
  default?: (() => vue.VNodeChild) | undefined;
64354
64389
  };
@@ -64363,17 +64398,11 @@ declare const VStepperWindow: {
64363
64398
  style: vue.StyleValue;
64364
64399
  disabled: boolean;
64365
64400
  tag: string;
64366
- mandatory: NonNullable<boolean | "force">;
64367
64401
  selectedClass: string;
64368
- continuous: boolean;
64369
- nextIcon: IconValue;
64370
- prevIcon: IconValue;
64371
64402
  } & {
64372
64403
  class?: any;
64373
- touch?: boolean | TouchHandlers | undefined;
64374
64404
  theme?: string | undefined;
64375
64405
  modelValue?: any;
64376
- showArrows?: string | boolean | undefined;
64377
64406
  } & {
64378
64407
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64379
64408
  default?: (() => vue.VNodeChild) | undefined;
@@ -64385,7 +64414,7 @@ declare const VStepperWindow: {
64385
64414
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
64386
64415
  } & {
64387
64416
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
64388
- }, "reverse" | "direction" | "style" | "disabled" | "tag" | "mandatory" | "touch" | "selectedClass" | "continuous" | "nextIcon" | "prevIcon">;
64417
+ }, "reverse" | "direction" | "style" | "disabled" | "tag" | "selectedClass">;
64389
64418
  $attrs: {
64390
64419
  [x: string]: unknown;
64391
64420
  };
@@ -64407,17 +64436,11 @@ declare const VStepperWindow: {
64407
64436
  style: vue.StyleValue;
64408
64437
  disabled: boolean;
64409
64438
  tag: string;
64410
- mandatory: NonNullable<boolean | "force">;
64411
64439
  selectedClass: string;
64412
- continuous: boolean;
64413
- nextIcon: IconValue;
64414
- prevIcon: IconValue;
64415
64440
  } & {
64416
64441
  class?: any;
64417
- touch?: boolean | TouchHandlers | undefined;
64418
64442
  theme?: string | undefined;
64419
64443
  modelValue?: any;
64420
- showArrows?: string | boolean | undefined;
64421
64444
  } & {
64422
64445
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64423
64446
  default?: (() => vue.VNodeChild) | undefined;
@@ -64437,12 +64460,7 @@ declare const VStepperWindow: {
64437
64460
  style: vue.StyleValue;
64438
64461
  disabled: boolean;
64439
64462
  tag: string;
64440
- mandatory: NonNullable<boolean | "force">;
64441
- touch: boolean | TouchHandlers;
64442
64463
  selectedClass: string;
64443
- continuous: boolean;
64444
- nextIcon: IconValue;
64445
- prevIcon: IconValue;
64446
64464
  }, {}, string, vue.SlotsType<Partial<{
64447
64465
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
64448
64466
  [key: string]: any;
@@ -64473,17 +64491,11 @@ declare const VStepperWindow: {
64473
64491
  style: vue.StyleValue;
64474
64492
  disabled: boolean;
64475
64493
  tag: string;
64476
- mandatory: NonNullable<boolean | "force">;
64477
64494
  selectedClass: string;
64478
- continuous: boolean;
64479
- nextIcon: IconValue;
64480
- prevIcon: IconValue;
64481
64495
  } & {
64482
64496
  class?: any;
64483
- touch?: boolean | TouchHandlers | undefined;
64484
64497
  theme?: string | undefined;
64485
64498
  modelValue?: any;
64486
- showArrows?: string | boolean | undefined;
64487
64499
  } & {
64488
64500
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64489
64501
  default?: (() => vue.VNodeChild) | undefined;
@@ -64505,17 +64517,11 @@ declare const VStepperWindow: {
64505
64517
  style: vue.StyleValue;
64506
64518
  disabled: boolean;
64507
64519
  tag: string;
64508
- mandatory: NonNullable<boolean | "force">;
64509
64520
  selectedClass: string;
64510
- continuous: boolean;
64511
- nextIcon: IconValue;
64512
- prevIcon: IconValue;
64513
64521
  } & {
64514
64522
  class?: any;
64515
- touch?: boolean | TouchHandlers | undefined;
64516
64523
  theme?: string | undefined;
64517
64524
  modelValue?: any;
64518
- showArrows?: string | boolean | undefined;
64519
64525
  } & {
64520
64526
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64521
64527
  default?: (() => vue.VNodeChild) | undefined;
@@ -64535,108 +64541,55 @@ declare const VStepperWindow: {
64535
64541
  style: vue.StyleValue;
64536
64542
  disabled: boolean;
64537
64543
  tag: string;
64538
- mandatory: NonNullable<boolean | "force">;
64539
- touch: boolean | TouchHandlers;
64540
64544
  selectedClass: string;
64541
- continuous: boolean;
64542
- nextIcon: IconValue;
64543
- prevIcon: IconValue;
64544
64545
  }, {}, string, vue.SlotsType<Partial<{
64545
64546
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
64546
64547
  [key: string]: any;
64547
64548
  }>[];
64548
64549
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
64549
- theme: StringConstructor;
64550
- tag: {
64551
- type: StringConstructor;
64550
+ reverse: BooleanConstructor;
64551
+ direction: {
64552
+ type: vue.PropType<"horizontal" | "vertical">;
64552
64553
  default: string;
64553
64554
  };
64554
- class: vue.PropType<any>;
64555
64555
  style: {
64556
64556
  type: vue.PropType<vue.StyleValue>;
64557
64557
  default: null;
64558
64558
  };
64559
- continuous: BooleanConstructor;
64560
- nextIcon: {
64561
- type: vue.PropType<IconValue>;
64562
- default: string;
64563
- };
64564
- prevIcon: {
64565
- type: vue.PropType<IconValue>;
64566
- default: string;
64567
- };
64568
- reverse: BooleanConstructor;
64569
- showArrows: {
64570
- type: (StringConstructor | BooleanConstructor)[];
64571
- validator: (v: any) => boolean;
64572
- };
64573
- touch: {
64574
- type: vue.PropType<boolean | TouchHandlers>;
64575
- default: undefined;
64576
- };
64577
- direction: {
64578
- type: vue.PropType<"horizontal" | "vertical">;
64559
+ disabled: BooleanConstructor;
64560
+ class: vue.PropType<any>;
64561
+ tag: {
64562
+ type: StringConstructor;
64579
64563
  default: string;
64580
64564
  };
64565
+ theme: StringConstructor;
64581
64566
  modelValue: null;
64582
- disabled: BooleanConstructor;
64583
64567
  selectedClass: {
64584
64568
  type: StringConstructor;
64585
64569
  default: string;
64586
64570
  };
64587
- mandatory: Omit<{
64588
- type: vue.PropType<boolean | "force">;
64589
- default: "force";
64590
- }, "type" | "default"> & {
64591
- type: vue.PropType<NonNullable<boolean | "force">>;
64592
- default: NonNullable<boolean | "force">;
64593
- };
64594
64571
  }, vue.ExtractPropTypes<{
64595
- theme: StringConstructor;
64596
- tag: {
64597
- type: StringConstructor;
64572
+ reverse: BooleanConstructor;
64573
+ direction: {
64574
+ type: vue.PropType<"horizontal" | "vertical">;
64598
64575
  default: string;
64599
64576
  };
64600
- class: vue.PropType<any>;
64601
64577
  style: {
64602
64578
  type: vue.PropType<vue.StyleValue>;
64603
64579
  default: null;
64604
64580
  };
64605
- continuous: BooleanConstructor;
64606
- nextIcon: {
64607
- type: vue.PropType<IconValue>;
64608
- default: string;
64609
- };
64610
- prevIcon: {
64611
- type: vue.PropType<IconValue>;
64612
- default: string;
64613
- };
64614
- reverse: BooleanConstructor;
64615
- showArrows: {
64616
- type: (StringConstructor | BooleanConstructor)[];
64617
- validator: (v: any) => boolean;
64618
- };
64619
- touch: {
64620
- type: vue.PropType<boolean | TouchHandlers>;
64621
- default: undefined;
64622
- };
64623
- direction: {
64624
- type: vue.PropType<"horizontal" | "vertical">;
64581
+ disabled: BooleanConstructor;
64582
+ class: vue.PropType<any>;
64583
+ tag: {
64584
+ type: StringConstructor;
64625
64585
  default: string;
64626
64586
  };
64587
+ theme: StringConstructor;
64627
64588
  modelValue: null;
64628
- disabled: BooleanConstructor;
64629
64589
  selectedClass: {
64630
64590
  type: StringConstructor;
64631
64591
  default: string;
64632
64592
  };
64633
- mandatory: Omit<{
64634
- type: vue.PropType<boolean | "force">;
64635
- default: "force";
64636
- }, "type" | "default"> & {
64637
- type: vue.PropType<NonNullable<boolean | "force">>;
64638
- default: NonNullable<boolean | "force">;
64639
- };
64640
64593
  }>>;
64641
64594
  type VStepperWindow = InstanceType<typeof VStepperWindow>;
64642
64595
 
@@ -80133,41 +80086,40 @@ declare module '@vue/runtime-core' {
80133
80086
  }
80134
80087
 
80135
80088
  export interface GlobalComponents {
80136
- VApp: typeof import('vuetify/components')['VApp']
80137
80089
  VAppBar: typeof import('vuetify/components')['VAppBar']
80138
80090
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
80139
80091
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
80092
+ VApp: typeof import('vuetify/components')['VApp']
80093
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
80140
80094
  VAlert: typeof import('vuetify/components')['VAlert']
80141
80095
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
80142
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
80143
- VAvatar: typeof import('vuetify/components')['VAvatar']
80144
80096
  VBadge: typeof import('vuetify/components')['VBadge']
80097
+ VAvatar: typeof import('vuetify/components')['VAvatar']
80098
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
80145
80099
  VBanner: typeof import('vuetify/components')['VBanner']
80146
80100
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
80147
80101
  VBannerText: typeof import('vuetify/components')['VBannerText']
80148
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
80149
80102
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
80150
80103
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
80151
80104
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
80152
80105
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
80153
80106
  VBtn: typeof import('vuetify/components')['VBtn']
80154
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
80155
80107
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
80108
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
80109
+ VCarousel: typeof import('vuetify/components')['VCarousel']
80110
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
80111
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
80112
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
80113
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
80156
80114
  VCard: typeof import('vuetify/components')['VCard']
80157
80115
  VCardActions: typeof import('vuetify/components')['VCardActions']
80158
80116
  VCardItem: typeof import('vuetify/components')['VCardItem']
80159
80117
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
80160
80118
  VCardText: typeof import('vuetify/components')['VCardText']
80161
80119
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
80162
- VCarousel: typeof import('vuetify/components')['VCarousel']
80163
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
80164
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
80165
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
80166
- VChip: typeof import('vuetify/components')['VChip']
80167
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
80168
80120
  VCode: typeof import('vuetify/components')['VCode']
80121
+ VChip: typeof import('vuetify/components')['VChip']
80169
80122
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
80170
- VCombobox: typeof import('vuetify/components')['VCombobox']
80171
80123
  VCounter: typeof import('vuetify/components')['VCounter']
80172
80124
  VDataTable: typeof import('vuetify/components')['VDataTable']
80173
80125
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -80175,13 +80127,14 @@ declare module '@vue/runtime-core' {
80175
80127
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
80176
80128
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
80177
80129
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
80130
+ VDialog: typeof import('vuetify/components')['VDialog']
80131
+ VCombobox: typeof import('vuetify/components')['VCombobox']
80178
80132
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
80179
80133
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
80180
80134
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
80181
80135
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
80182
80136
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
80183
80137
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
80184
- VDialog: typeof import('vuetify/components')['VDialog']
80185
80138
  VDivider: typeof import('vuetify/components')['VDivider']
80186
80139
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
80187
80140
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
@@ -80189,20 +80142,21 @@ declare module '@vue/runtime-core' {
80189
80142
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
80190
80143
  VField: typeof import('vuetify/components')['VField']
80191
80144
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
80192
- VFileInput: typeof import('vuetify/components')['VFileInput']
80193
80145
  VFooter: typeof import('vuetify/components')['VFooter']
80194
80146
  VIcon: typeof import('vuetify/components')['VIcon']
80195
80147
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
80196
80148
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
80197
80149
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
80198
80150
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
80151
+ VFileInput: typeof import('vuetify/components')['VFileInput']
80199
80152
  VImg: typeof import('vuetify/components')['VImg']
80200
80153
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
80201
80154
  VInput: typeof import('vuetify/components')['VInput']
80155
+ VLabel: typeof import('vuetify/components')['VLabel']
80202
80156
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
80203
80157
  VItem: typeof import('vuetify/components')['VItem']
80204
80158
  VKbd: typeof import('vuetify/components')['VKbd']
80205
- VLabel: typeof import('vuetify/components')['VLabel']
80159
+ VMain: typeof import('vuetify/components')['VMain']
80206
80160
  VList: typeof import('vuetify/components')['VList']
80207
80161
  VListGroup: typeof import('vuetify/components')['VListGroup']
80208
80162
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -80212,7 +80166,6 @@ declare module '@vue/runtime-core' {
80212
80166
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
80213
80167
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
80214
80168
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
80215
- VMain: typeof import('vuetify/components')['VMain']
80216
80169
  VMenu: typeof import('vuetify/components')['VMenu']
80217
80170
  VMessages: typeof import('vuetify/components')['VMessages']
80218
80171
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
@@ -80220,37 +80173,37 @@ declare module '@vue/runtime-core' {
80220
80173
  VOverlay: typeof import('vuetify/components')['VOverlay']
80221
80174
  VPagination: typeof import('vuetify/components')['VPagination']
80222
80175
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
80223
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
80224
80176
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
80177
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
80225
80178
  VRating: typeof import('vuetify/components')['VRating']
80226
80179
  VSelect: typeof import('vuetify/components')['VSelect']
80227
80180
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
80228
80181
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
80229
- VSheet: typeof import('vuetify/components')['VSheet']
80230
80182
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
80183
+ VSlider: typeof import('vuetify/components')['VSlider']
80184
+ VSheet: typeof import('vuetify/components')['VSheet']
80185
+ VSwitch: typeof import('vuetify/components')['VSwitch']
80231
80186
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
80232
80187
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
80233
- VSlider: typeof import('vuetify/components')['VSlider']
80234
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
80188
+ VTable: typeof import('vuetify/components')['VTable']
80235
80189
  VStepper: typeof import('vuetify/components')['VStepper']
80236
80190
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
80237
80191
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
80238
80192
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
80239
80193
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
80240
80194
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
80241
- VSwitch: typeof import('vuetify/components')['VSwitch']
80195
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
80196
+ VTextField: typeof import('vuetify/components')['VTextField']
80242
80197
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
80243
- VTabs: typeof import('vuetify/components')['VTabs']
80244
- VTab: typeof import('vuetify/components')['VTab']
80245
- VTable: typeof import('vuetify/components')['VTable']
80246
80198
  VTextarea: typeof import('vuetify/components')['VTextarea']
80247
- VTextField: typeof import('vuetify/components')['VTextField']
80248
80199
  VTimeline: typeof import('vuetify/components')['VTimeline']
80249
80200
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
80201
+ VTooltip: typeof import('vuetify/components')['VTooltip']
80202
+ VTabs: typeof import('vuetify/components')['VTabs']
80203
+ VTab: typeof import('vuetify/components')['VTab']
80250
80204
  VToolbar: typeof import('vuetify/components')['VToolbar']
80251
80205
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
80252
80206
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
80253
- VTooltip: typeof import('vuetify/components')['VTooltip']
80254
80207
  VWindow: typeof import('vuetify/components')['VWindow']
80255
80208
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
80256
80209
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
@@ -80266,12 +80219,11 @@ declare module '@vue/runtime-core' {
80266
80219
  VLazy: typeof import('vuetify/components')['VLazy']
80267
80220
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
80268
80221
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
80269
- VParallax: typeof import('vuetify/components')['VParallax']
80270
- VRadio: typeof import('vuetify/components')['VRadio']
80271
80222
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
80223
+ VRadio: typeof import('vuetify/components')['VRadio']
80224
+ VParallax: typeof import('vuetify/components')['VParallax']
80272
80225
  VResponsive: typeof import('vuetify/components')['VResponsive']
80273
80226
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
80274
- VValidation: typeof import('vuetify/components')['VValidation']
80275
80227
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
80276
80228
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
80277
80229
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
@@ -80289,6 +80241,7 @@ declare module '@vue/runtime-core' {
80289
80241
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
80290
80242
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
80291
80243
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
80244
+ VValidation: typeof import('vuetify/components')['VValidation']
80292
80245
  VPicker: typeof import('vuetify/labs/components')['VPicker']
80293
80246
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
80294
80247
  VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']