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

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 (42) hide show
  1. package/CHANGELOG.md +2 -2
  2. package/dist/json/attributes.json +275 -299
  3. package/dist/json/importMap.json +44 -44
  4. package/dist/json/tags.json +1 -7
  5. package/dist/json/web-types.json +577 -735
  6. package/dist/vuetify-labs.css +245 -247
  7. package/dist/vuetify-labs.d.ts +41 -134
  8. package/dist/vuetify-labs.esm.js +18 -14
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +18 -14
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +137 -139
  13. package/dist/vuetify.d.ts +52 -145
  14. package/dist/vuetify.esm.js +18 -14
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +18 -14
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +12 -12
  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/VDataTable/VDataTableServer.mjs +2 -2
  25. package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
  26. package/lib/components/VDataTable/VDataTableVirtual.mjs +2 -2
  27. package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
  28. package/lib/components/VDataTable/index.d.mts +24 -24
  29. package/lib/components/VGrid/VSpacer.mjs +3 -0
  30. package/lib/components/VGrid/VSpacer.mjs.map +1 -1
  31. package/lib/components/VStepper/VStepperWindow.mjs +8 -6
  32. package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
  33. package/lib/components/VStepper/VStepperWindowItem.mjs +3 -1
  34. package/lib/components/VStepper/VStepperWindowItem.mjs.map +1 -1
  35. package/lib/components/VStepper/index.d.mts +18 -140
  36. package/lib/components/index.d.mts +41 -134
  37. package/lib/entry-bundler.mjs +1 -1
  38. package/lib/entry-bundler.mjs.map +1 -1
  39. package/lib/framework.mjs +1 -1
  40. package/lib/framework.mjs.map +1 -1
  41. package/lib/index.d.mts +11 -11
  42. package/package.json +2 -2
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
 
@@ -80134,22 +80041,22 @@ declare module '@vue/runtime-core' {
80134
80041
 
80135
80042
  export interface GlobalComponents {
80136
80043
  VApp: typeof import('vuetify/components')['VApp']
80044
+ VAlert: typeof import('vuetify/components')['VAlert']
80045
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
80137
80046
  VAppBar: typeof import('vuetify/components')['VAppBar']
80138
80047
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
80139
80048
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
80140
- VAlert: typeof import('vuetify/components')['VAlert']
80141
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
80142
80049
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
80143
80050
  VAvatar: typeof import('vuetify/components')['VAvatar']
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
80053
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
80150
80054
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
80151
80055
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
80152
80056
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
80057
+ VBanner: typeof import('vuetify/components')['VBanner']
80058
+ VBannerActions: typeof import('vuetify/components')['VBannerActions']
80059
+ VBannerText: typeof import('vuetify/components')['VBannerText']
80153
80060
  VBtn: typeof import('vuetify/components')['VBtn']
80154
80061
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
80155
80062
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
@@ -80175,12 +80082,6 @@ declare module '@vue/runtime-core' {
80175
80082
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
80176
80083
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
80177
80084
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
80178
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
80179
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
80180
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
80181
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
80182
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
80183
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
80184
80085
  VDialog: typeof import('vuetify/components')['VDialog']
80185
80086
  VDivider: typeof import('vuetify/components')['VDivider']
80186
80087
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
@@ -80289,6 +80190,12 @@ declare module '@vue/runtime-core' {
80289
80190
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
80290
80191
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
80291
80192
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
80193
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
80194
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
80195
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
80196
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
80197
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
80198
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
80292
80199
  VPicker: typeof import('vuetify/labs/components')['VPicker']
80293
80200
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
80294
80201
  VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.4.0-beta.1-dev.2023-11-08
2
+ * Vuetify v3.4.0-dev.2023-11-09
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-dev.2023-11-08";
25106
+ const version$1 = "3.4.0-dev.2023-11-09";
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-dev.2023-11-08";
25131
+ const version = "3.4.0-dev.2023-11-09";
25128
25132
  createVuetify.version = version;
25129
25133
 
25130
25134
  export { components, createVuetify, directives, useDate, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };