vuetify 3.4.0-beta.1 → 3.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 (41) hide show
  1. package/dist/json/attributes.json +275 -299
  2. package/dist/json/importMap.json +110 -110
  3. package/dist/json/tags.json +1 -7
  4. package/dist/json/web-types.json +577 -735
  5. package/dist/vuetify-labs.css +1149 -1151
  6. package/dist/vuetify-labs.d.ts +41 -134
  7. package/dist/vuetify-labs.esm.js +18 -14
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +18 -14
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +490 -492
  12. package/dist/vuetify.d.ts +74 -167
  13. package/dist/vuetify.esm.js +18 -14
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +18 -14
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +12 -12
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VBtn/VBtn.css +0 -1
  21. package/lib/components/VBtn/_variables.scss +1 -1
  22. package/lib/components/VBtnGroup/VBtnGroup.css +0 -1
  23. package/lib/components/VDataTable/VDataTableServer.mjs +2 -2
  24. package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
  25. package/lib/components/VDataTable/VDataTableVirtual.mjs +2 -2
  26. package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
  27. package/lib/components/VDataTable/index.d.mts +24 -24
  28. package/lib/components/VGrid/VSpacer.mjs +3 -0
  29. package/lib/components/VGrid/VSpacer.mjs.map +1 -1
  30. package/lib/components/VStepper/VStepperWindow.mjs +8 -6
  31. package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
  32. package/lib/components/VStepper/VStepperWindowItem.mjs +3 -1
  33. package/lib/components/VStepper/VStepperWindowItem.mjs.map +1 -1
  34. package/lib/components/VStepper/index.d.mts +18 -140
  35. package/lib/components/index.d.mts +41 -134
  36. package/lib/entry-bundler.mjs +1 -1
  37. package/lib/entry-bundler.mjs.map +1 -1
  38. package/lib/framework.mjs +1 -1
  39. package/lib/framework.mjs.map +1 -1
  40. package/lib/index.d.mts +33 -33
  41. package/package.json +3 -3
package/dist/vuetify.d.ts CHANGED
@@ -28216,11 +28216,11 @@ declare const VDataTableVirtual: {
28216
28216
  "onUpdate:expanded"?: ((value: any) => any) | undefined;
28217
28217
  "onUpdate:options"?: ((value: any) => any) | undefined;
28218
28218
  }, 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;
28219
+ 'update:modelValue': (value: any[]) => boolean;
28220
+ 'update:sortBy': (value: any) => boolean;
28221
+ 'update:options': (value: any) => boolean;
28222
+ 'update:groupBy': (value: any) => boolean;
28223
+ 'update:expanded': (value: any) => boolean;
28224
28224
  }, string, {
28225
28225
  style: vue.StyleValue;
28226
28226
  expanded: readonly string[];
@@ -28934,11 +28934,11 @@ declare const VDataTableVirtual: {
28934
28934
  "onUpdate:expanded"?: ((value: any) => any) | undefined;
28935
28935
  "onUpdate:options"?: ((value: any) => any) | undefined;
28936
28936
  }, 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;
28937
+ 'update:modelValue': (value: any[]) => boolean;
28938
+ 'update:sortBy': (value: any) => boolean;
28939
+ 'update:options': (value: any) => boolean;
28940
+ 'update:groupBy': (value: any) => boolean;
28941
+ 'update:expanded': (value: any) => boolean;
28942
28942
  }, string, {
28943
28943
  style: vue.StyleValue;
28944
28944
  expanded: readonly string[];
@@ -30415,13 +30415,13 @@ declare const VDataTableServer: {
30415
30415
  "onUpdate:itemsPerPage"?: ((page: number) => any) | undefined;
30416
30416
  "onUpdate:options"?: ((options: any) => any) | undefined;
30417
30417
  }, 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;
30418
+ 'update:modelValue': (value: any[]) => boolean;
30419
+ 'update:page': (page: number) => boolean;
30420
+ 'update:itemsPerPage': (page: number) => boolean;
30421
+ 'update:sortBy': (sortBy: any) => boolean;
30422
+ 'update:options': (options: any) => boolean;
30423
+ 'update:expanded': (options: any) => boolean;
30424
+ 'update:groupBy': (value: any) => boolean;
30425
30425
  }, string, {
30426
30426
  style: vue.StyleValue;
30427
30427
  expanded: readonly string[];
@@ -31226,13 +31226,13 @@ declare const VDataTableServer: {
31226
31226
  "onUpdate:itemsPerPage"?: ((page: number) => any) | undefined;
31227
31227
  "onUpdate:options"?: ((options: any) => any) | undefined;
31228
31228
  }, 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;
31229
+ 'update:modelValue': (value: any[]) => boolean;
31230
+ 'update:page': (page: number) => boolean;
31231
+ 'update:itemsPerPage': (page: number) => boolean;
31232
+ 'update:sortBy': (sortBy: any) => boolean;
31233
+ 'update:options': (options: any) => boolean;
31234
+ 'update:expanded': (options: any) => boolean;
31235
+ 'update:groupBy': (value: any) => boolean;
31236
31236
  }, string, {
31237
31237
  style: vue.StyleValue;
31238
31238
  expanded: readonly string[];
@@ -64327,28 +64327,17 @@ declare const VStepperWindow: {
64327
64327
  style: vue.StyleValue;
64328
64328
  disabled: boolean;
64329
64329
  tag: string;
64330
- mandatory: NonNullable<boolean | "force">;
64331
- touch: boolean | TouchHandlers;
64332
64330
  selectedClass: string;
64333
- continuous: boolean;
64334
- nextIcon: IconValue;
64335
- prevIcon: IconValue;
64336
64331
  }> & Omit<{
64337
64332
  reverse: boolean;
64338
64333
  direction: "horizontal" | "vertical";
64339
64334
  style: vue.StyleValue;
64340
64335
  disabled: boolean;
64341
64336
  tag: string;
64342
- mandatory: NonNullable<boolean | "force">;
64343
64337
  selectedClass: string;
64344
- continuous: boolean;
64345
- nextIcon: IconValue;
64346
- prevIcon: IconValue;
64347
64338
  class?: any;
64348
- touch?: boolean | TouchHandlers | undefined;
64349
64339
  theme?: string | undefined;
64350
64340
  modelValue?: any;
64351
- showArrows?: string | boolean | undefined;
64352
64341
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64353
64342
  default?: (() => vue.VNodeChild) | undefined;
64354
64343
  };
@@ -64363,17 +64352,11 @@ declare const VStepperWindow: {
64363
64352
  style: vue.StyleValue;
64364
64353
  disabled: boolean;
64365
64354
  tag: string;
64366
- mandatory: NonNullable<boolean | "force">;
64367
64355
  selectedClass: string;
64368
- continuous: boolean;
64369
- nextIcon: IconValue;
64370
- prevIcon: IconValue;
64371
64356
  } & {
64372
64357
  class?: any;
64373
- touch?: boolean | TouchHandlers | undefined;
64374
64358
  theme?: string | undefined;
64375
64359
  modelValue?: any;
64376
- showArrows?: string | boolean | undefined;
64377
64360
  } & {
64378
64361
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64379
64362
  default?: (() => vue.VNodeChild) | undefined;
@@ -64385,7 +64368,7 @@ declare const VStepperWindow: {
64385
64368
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
64386
64369
  } & {
64387
64370
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
64388
- }, "reverse" | "direction" | "style" | "disabled" | "tag" | "mandatory" | "touch" | "selectedClass" | "continuous" | "nextIcon" | "prevIcon">;
64371
+ }, "reverse" | "direction" | "style" | "disabled" | "tag" | "selectedClass">;
64389
64372
  $attrs: {
64390
64373
  [x: string]: unknown;
64391
64374
  };
@@ -64407,17 +64390,11 @@ declare const VStepperWindow: {
64407
64390
  style: vue.StyleValue;
64408
64391
  disabled: boolean;
64409
64392
  tag: string;
64410
- mandatory: NonNullable<boolean | "force">;
64411
64393
  selectedClass: string;
64412
- continuous: boolean;
64413
- nextIcon: IconValue;
64414
- prevIcon: IconValue;
64415
64394
  } & {
64416
64395
  class?: any;
64417
- touch?: boolean | TouchHandlers | undefined;
64418
64396
  theme?: string | undefined;
64419
64397
  modelValue?: any;
64420
- showArrows?: string | boolean | undefined;
64421
64398
  } & {
64422
64399
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64423
64400
  default?: (() => vue.VNodeChild) | undefined;
@@ -64437,12 +64414,7 @@ declare const VStepperWindow: {
64437
64414
  style: vue.StyleValue;
64438
64415
  disabled: boolean;
64439
64416
  tag: string;
64440
- mandatory: NonNullable<boolean | "force">;
64441
- touch: boolean | TouchHandlers;
64442
64417
  selectedClass: string;
64443
- continuous: boolean;
64444
- nextIcon: IconValue;
64445
- prevIcon: IconValue;
64446
64418
  }, {}, string, vue.SlotsType<Partial<{
64447
64419
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
64448
64420
  [key: string]: any;
@@ -64473,17 +64445,11 @@ declare const VStepperWindow: {
64473
64445
  style: vue.StyleValue;
64474
64446
  disabled: boolean;
64475
64447
  tag: string;
64476
- mandatory: NonNullable<boolean | "force">;
64477
64448
  selectedClass: string;
64478
- continuous: boolean;
64479
- nextIcon: IconValue;
64480
- prevIcon: IconValue;
64481
64449
  } & {
64482
64450
  class?: any;
64483
- touch?: boolean | TouchHandlers | undefined;
64484
64451
  theme?: string | undefined;
64485
64452
  modelValue?: any;
64486
- showArrows?: string | boolean | undefined;
64487
64453
  } & {
64488
64454
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64489
64455
  default?: (() => vue.VNodeChild) | undefined;
@@ -64505,17 +64471,11 @@ declare const VStepperWindow: {
64505
64471
  style: vue.StyleValue;
64506
64472
  disabled: boolean;
64507
64473
  tag: string;
64508
- mandatory: NonNullable<boolean | "force">;
64509
64474
  selectedClass: string;
64510
- continuous: boolean;
64511
- nextIcon: IconValue;
64512
- prevIcon: IconValue;
64513
64475
  } & {
64514
64476
  class?: any;
64515
- touch?: boolean | TouchHandlers | undefined;
64516
64477
  theme?: string | undefined;
64517
64478
  modelValue?: any;
64518
- showArrows?: string | boolean | undefined;
64519
64479
  } & {
64520
64480
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64521
64481
  default?: (() => vue.VNodeChild) | undefined;
@@ -64535,108 +64495,55 @@ declare const VStepperWindow: {
64535
64495
  style: vue.StyleValue;
64536
64496
  disabled: boolean;
64537
64497
  tag: string;
64538
- mandatory: NonNullable<boolean | "force">;
64539
- touch: boolean | TouchHandlers;
64540
64498
  selectedClass: string;
64541
- continuous: boolean;
64542
- nextIcon: IconValue;
64543
- prevIcon: IconValue;
64544
64499
  }, {}, string, vue.SlotsType<Partial<{
64545
64500
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
64546
64501
  [key: string]: any;
64547
64502
  }>[];
64548
64503
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
64549
- theme: StringConstructor;
64550
- tag: {
64551
- type: StringConstructor;
64504
+ reverse: BooleanConstructor;
64505
+ direction: {
64506
+ type: vue.PropType<"horizontal" | "vertical">;
64552
64507
  default: string;
64553
64508
  };
64554
- class: vue.PropType<any>;
64555
64509
  style: {
64556
64510
  type: vue.PropType<vue.StyleValue>;
64557
64511
  default: null;
64558
64512
  };
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">;
64513
+ disabled: BooleanConstructor;
64514
+ class: vue.PropType<any>;
64515
+ tag: {
64516
+ type: StringConstructor;
64579
64517
  default: string;
64580
64518
  };
64519
+ theme: StringConstructor;
64581
64520
  modelValue: null;
64582
- disabled: BooleanConstructor;
64583
64521
  selectedClass: {
64584
64522
  type: StringConstructor;
64585
64523
  default: string;
64586
64524
  };
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
64525
  }, vue.ExtractPropTypes<{
64595
- theme: StringConstructor;
64596
- tag: {
64597
- type: StringConstructor;
64526
+ reverse: BooleanConstructor;
64527
+ direction: {
64528
+ type: vue.PropType<"horizontal" | "vertical">;
64598
64529
  default: string;
64599
64530
  };
64600
- class: vue.PropType<any>;
64601
64531
  style: {
64602
64532
  type: vue.PropType<vue.StyleValue>;
64603
64533
  default: null;
64604
64534
  };
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">;
64535
+ disabled: BooleanConstructor;
64536
+ class: vue.PropType<any>;
64537
+ tag: {
64538
+ type: StringConstructor;
64625
64539
  default: string;
64626
64540
  };
64541
+ theme: StringConstructor;
64627
64542
  modelValue: null;
64628
- disabled: BooleanConstructor;
64629
64543
  selectedClass: {
64630
64544
  type: StringConstructor;
64631
64545
  default: string;
64632
64546
  };
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
64547
  }>>;
64641
64548
  type VStepperWindow = InstanceType<typeof VStepperWindow>;
64642
64549
 
@@ -80133,64 +80040,64 @@ declare module '@vue/runtime-core' {
80133
80040
  }
80134
80041
 
80135
80042
  export interface GlobalComponents {
80136
- VApp: typeof import('vuetify/components')['VApp']
80137
80043
  VAppBar: typeof import('vuetify/components')['VAppBar']
80138
80044
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
80139
80045
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
80140
- VAlert: typeof import('vuetify/components')['VAlert']
80141
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
80046
+ VApp: typeof import('vuetify/components')['VApp']
80142
80047
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
80143
80048
  VAvatar: typeof import('vuetify/components')['VAvatar']
80049
+ VAlert: typeof import('vuetify/components')['VAlert']
80050
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
80144
80051
  VBadge: typeof import('vuetify/components')['VBadge']
80145
- VBanner: typeof import('vuetify/components')['VBanner']
80146
- VBannerActions: typeof import('vuetify/components')['VBannerActions']
80147
- VBannerText: typeof import('vuetify/components')['VBannerText']
80148
80052
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
80149
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
80150
80053
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
80151
80054
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
80152
80055
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
80153
- VBtn: typeof import('vuetify/components')['VBtn']
80154
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
80056
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
80057
+ VBanner: typeof import('vuetify/components')['VBanner']
80058
+ VBannerActions: typeof import('vuetify/components')['VBannerActions']
80059
+ VBannerText: typeof import('vuetify/components')['VBannerText']
80155
80060
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
80061
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
80156
80062
  VCard: typeof import('vuetify/components')['VCard']
80157
80063
  VCardActions: typeof import('vuetify/components')['VCardActions']
80158
80064
  VCardItem: typeof import('vuetify/components')['VCardItem']
80159
80065
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
80160
80066
  VCardText: typeof import('vuetify/components')['VCardText']
80161
80067
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
80068
+ VBtn: typeof import('vuetify/components')['VBtn']
80069
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
80162
80070
  VCarousel: typeof import('vuetify/components')['VCarousel']
80163
80071
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
80072
+ VCode: typeof import('vuetify/components')['VCode']
80073
+ VChip: typeof import('vuetify/components')['VChip']
80164
80074
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
80165
80075
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
80166
- VChip: typeof import('vuetify/components')['VChip']
80167
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
80168
- VCode: typeof import('vuetify/components')['VCode']
80169
80076
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
80170
80077
  VCombobox: typeof import('vuetify/components')['VCombobox']
80171
- VCounter: typeof import('vuetify/components')['VCounter']
80172
80078
  VDataTable: typeof import('vuetify/components')['VDataTable']
80173
80079
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
80174
80080
  VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
80175
80081
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
80176
80082
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
80177
80083
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
80084
+ VCounter: typeof import('vuetify/components')['VCounter']
80085
+ VDialog: typeof import('vuetify/components')['VDialog']
80178
80086
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
80179
80087
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
80180
80088
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
80181
80089
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
80182
80090
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
80183
80091
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
80184
- VDialog: typeof import('vuetify/components')['VDialog']
80185
80092
  VDivider: typeof import('vuetify/components')['VDivider']
80093
+ VField: typeof import('vuetify/components')['VField']
80094
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
80095
+ VFooter: typeof import('vuetify/components')['VFooter']
80186
80096
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
80187
80097
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
80188
80098
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
80189
80099
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
80190
- VField: typeof import('vuetify/components')['VField']
80191
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
80192
80100
  VFileInput: typeof import('vuetify/components')['VFileInput']
80193
- VFooter: typeof import('vuetify/components')['VFooter']
80194
80101
  VIcon: typeof import('vuetify/components')['VIcon']
80195
80102
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
80196
80103
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
@@ -80198,11 +80105,9 @@ declare module '@vue/runtime-core' {
80198
80105
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
80199
80106
  VImg: typeof import('vuetify/components')['VImg']
80200
80107
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
80201
- VInput: typeof import('vuetify/components')['VInput']
80202
80108
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
80203
80109
  VItem: typeof import('vuetify/components')['VItem']
80204
- VKbd: typeof import('vuetify/components')['VKbd']
80205
- VLabel: typeof import('vuetify/components')['VLabel']
80110
+ VInput: typeof import('vuetify/components')['VInput']
80206
80111
  VList: typeof import('vuetify/components')['VList']
80207
80112
  VListGroup: typeof import('vuetify/components')['VListGroup']
80208
80113
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -80212,25 +80117,27 @@ declare module '@vue/runtime-core' {
80212
80117
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
80213
80118
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
80214
80119
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
80215
- VMain: typeof import('vuetify/components')['VMain']
80120
+ VKbd: typeof import('vuetify/components')['VKbd']
80121
+ VLabel: typeof import('vuetify/components')['VLabel']
80216
80122
  VMenu: typeof import('vuetify/components')['VMenu']
80217
- VMessages: typeof import('vuetify/components')['VMessages']
80123
+ VMain: typeof import('vuetify/components')['VMain']
80218
80124
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
80125
+ VMessages: typeof import('vuetify/components')['VMessages']
80219
80126
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
80127
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
80220
80128
  VOverlay: typeof import('vuetify/components')['VOverlay']
80221
80129
  VPagination: typeof import('vuetify/components')['VPagination']
80222
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
80223
80130
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
80224
80131
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
80225
80132
  VRating: typeof import('vuetify/components')['VRating']
80226
80133
  VSelect: typeof import('vuetify/components')['VSelect']
80227
80134
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
80228
80135
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
80229
- VSheet: typeof import('vuetify/components')['VSheet']
80230
80136
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
80137
+ VSheet: typeof import('vuetify/components')['VSheet']
80138
+ VSlider: typeof import('vuetify/components')['VSlider']
80231
80139
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
80232
80140
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
80233
- VSlider: typeof import('vuetify/components')['VSlider']
80234
80141
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
80235
80142
  VStepper: typeof import('vuetify/components')['VStepper']
80236
80143
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
@@ -80238,33 +80145,33 @@ declare module '@vue/runtime-core' {
80238
80145
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
80239
80146
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
80240
80147
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
80241
- VSwitch: typeof import('vuetify/components')['VSwitch']
80242
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
80243
80148
  VTabs: typeof import('vuetify/components')['VTabs']
80244
80149
  VTab: typeof import('vuetify/components')['VTab']
80245
- VTable: typeof import('vuetify/components')['VTable']
80246
- VTextarea: typeof import('vuetify/components')['VTextarea']
80150
+ VSwitch: typeof import('vuetify/components')['VSwitch']
80151
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
80247
80152
  VTextField: typeof import('vuetify/components')['VTextField']
80153
+ VTable: typeof import('vuetify/components')['VTable']
80248
80154
  VTimeline: typeof import('vuetify/components')['VTimeline']
80249
80155
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
80156
+ VTooltip: typeof import('vuetify/components')['VTooltip']
80157
+ VTextarea: typeof import('vuetify/components')['VTextarea']
80250
80158
  VToolbar: typeof import('vuetify/components')['VToolbar']
80251
80159
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
80252
80160
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
80253
- VTooltip: typeof import('vuetify/components')['VTooltip']
80254
80161
  VWindow: typeof import('vuetify/components')['VWindow']
80255
80162
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
80256
80163
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
80257
- VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
80258
- VForm: typeof import('vuetify/components')['VForm']
80259
80164
  VContainer: typeof import('vuetify/components')['VContainer']
80260
80165
  VCol: typeof import('vuetify/components')['VCol']
80261
80166
  VRow: typeof import('vuetify/components')['VRow']
80262
80167
  VSpacer: typeof import('vuetify/components')['VSpacer']
80168
+ VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
80169
+ VForm: typeof import('vuetify/components')['VForm']
80263
80170
  VHover: typeof import('vuetify/components')['VHover']
80264
80171
  VLayout: typeof import('vuetify/components')['VLayout']
80265
80172
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
80266
- VLazy: typeof import('vuetify/components')['VLazy']
80267
80173
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
80174
+ VLazy: typeof import('vuetify/components')['VLazy']
80268
80175
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
80269
80176
  VParallax: typeof import('vuetify/components')['VParallax']
80270
80177
  VRadio: typeof import('vuetify/components')['VRadio']
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.4.0-beta.1
2
+ * Vuetify v3.4.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18402,7 +18402,7 @@ const VDataTableVirtual = genericComponent()({
18402
18402
  },
18403
18403
  setup(props, _ref) {
18404
18404
  let {
18405
- emit,
18405
+ attrs,
18406
18406
  slots
18407
18407
  } = _ref;
18408
18408
  const {
@@ -18550,7 +18550,7 @@ const VDataTableVirtual = genericComponent()({
18550
18550
  height: 0,
18551
18551
  border: 0
18552
18552
  }
18553
- }, null)]), slots['body.prepend']?.(slotProps.value), createVNode(VDataTableRows, mergeProps(dataTableRowsProps, {
18553
+ }, null)]), slots['body.prepend']?.(slotProps.value), createVNode(VDataTableRows, mergeProps(attrs, dataTableRowsProps, {
18554
18554
  "items": displayItems.value
18555
18555
  }), {
18556
18556
  ...slots,
@@ -18615,7 +18615,7 @@ const VDataTableServer = genericComponent()({
18615
18615
  },
18616
18616
  setup(props, _ref) {
18617
18617
  let {
18618
- emit,
18618
+ attrs,
18619
18619
  slots
18620
18620
  } = _ref;
18621
18621
  const {
@@ -18748,7 +18748,7 @@ const VDataTableServer = genericComponent()({
18748
18748
  }), slots)]), slots.thead?.(slotProps.value), createVNode("tbody", {
18749
18749
  "class": "v-data-table__tbody",
18750
18750
  "role": "rowgroup"
18751
- }, [slots['body.prepend']?.(slotProps.value), slots.body ? slots.body(slotProps.value) : createVNode(VDataTableRows, mergeProps(dataTableRowsProps, {
18751
+ }, [slots['body.prepend']?.(slotProps.value), slots.body ? slots.body(slotProps.value) : createVNode(VDataTableRows, mergeProps(attrs, dataTableRowsProps, {
18752
18752
  "items": flatItems.value
18753
18753
  }), slots), slots['body.append']?.(slotProps.value)]), slots.tbody?.(slotProps.value), slots.tfoot?.(slotProps.value)]),
18754
18754
  bottom: () => slots.bottom ? slots.bottom(slotProps.value) : createVNode(VDataTableFooter, dataTableFooterProps, {
@@ -19027,7 +19027,7 @@ const VRow = genericComponent()({
19027
19027
  }
19028
19028
  });
19029
19029
 
19030
- // Utilities
19030
+ // Styles
19031
19031
  const VSpacer = createSimpleFunctional('v-spacer', 'div', 'VSpacer');
19032
19032
 
19033
19033
  // Types
@@ -23504,9 +23504,7 @@ const VStepperItem = genericComponent()({
23504
23504
 
23505
23505
  const VStepperSymbol$1 = Symbol.for('vuetify:v-stepper');
23506
23506
  const makeVStepperWindowProps = propsFactory({
23507
- ...makeVWindowProps({
23508
- mandatory: false
23509
- })
23507
+ ...omit(makeVWindowProps(), ['continuous', 'nextIcon', 'prevIcon', 'showArrows', 'touch', 'mandatory'])
23510
23508
  }, 'VStepperWindow');
23511
23509
  const VStepperWindow = genericComponent()({
23512
23510
  name: 'VStepperWindow',
@@ -23536,10 +23534,14 @@ const VStepperWindow = genericComponent()({
23536
23534
  });
23537
23535
  useRender(() => {
23538
23536
  const windowProps = VWindow.filterProps(props);
23539
- return createVNode(VWindow, mergeProps(windowProps, {
23537
+ return createVNode(VWindow, mergeProps({
23538
+ "_as": "VStepperWindow"
23539
+ }, windowProps, {
23540
23540
  "modelValue": model.value,
23541
23541
  "onUpdate:modelValue": $event => model.value = $event,
23542
- "class": "v-stepper-window"
23542
+ "class": "v-stepper-window",
23543
+ "mandatory": false,
23544
+ "touch": false
23543
23545
  }), slots);
23544
23546
  });
23545
23547
  return {};
@@ -23558,7 +23560,9 @@ const VStepperWindowItem = genericComponent()({
23558
23560
  } = _ref;
23559
23561
  useRender(() => {
23560
23562
  const windowItemProps = VWindowItem.filterProps(props);
23561
- return createVNode(VWindowItem, mergeProps(windowItemProps, {
23563
+ return createVNode(VWindowItem, mergeProps({
23564
+ "_as": "VStepperWindowItem"
23565
+ }, windowItemProps, {
23562
23566
  "class": "v-stepper-window-item"
23563
23567
  }), slots);
23564
23568
  });
@@ -25099,7 +25103,7 @@ function createVuetify$1() {
25099
25103
  date
25100
25104
  };
25101
25105
  }
25102
- const version$1 = "3.4.0-beta.1";
25106
+ const version$1 = "3.4.0";
25103
25107
  createVuetify$1.version = version$1;
25104
25108
 
25105
25109
  // Vue's inject() can only be used in setup
@@ -25124,7 +25128,7 @@ const createVuetify = function () {
25124
25128
  ...options
25125
25129
  });
25126
25130
  };
25127
- const version = "3.4.0-beta.1";
25131
+ const version = "3.4.0";
25128
25132
  createVuetify.version = version;
25129
25133
 
25130
25134
  export { components, createVuetify, directives, useDate, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };