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
@@ -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[];
@@ -64695,28 +64695,17 @@ declare const VStepperWindow: {
64695
64695
  style: vue.StyleValue;
64696
64696
  disabled: boolean;
64697
64697
  tag: string;
64698
- mandatory: NonNullable<boolean | "force">;
64699
- touch: boolean | TouchHandlers;
64700
64698
  selectedClass: string;
64701
- continuous: boolean;
64702
- nextIcon: IconValue;
64703
- prevIcon: IconValue;
64704
64699
  }> & Omit<{
64705
64700
  reverse: boolean;
64706
64701
  direction: "horizontal" | "vertical";
64707
64702
  style: vue.StyleValue;
64708
64703
  disabled: boolean;
64709
64704
  tag: string;
64710
- mandatory: NonNullable<boolean | "force">;
64711
64705
  selectedClass: string;
64712
- continuous: boolean;
64713
- nextIcon: IconValue;
64714
- prevIcon: IconValue;
64715
64706
  class?: any;
64716
- touch?: boolean | TouchHandlers | undefined;
64717
64707
  theme?: string | undefined;
64718
64708
  modelValue?: any;
64719
- showArrows?: string | boolean | undefined;
64720
64709
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64721
64710
  default?: (() => vue.VNodeChild) | undefined;
64722
64711
  };
@@ -64731,17 +64720,11 @@ declare const VStepperWindow: {
64731
64720
  style: vue.StyleValue;
64732
64721
  disabled: boolean;
64733
64722
  tag: string;
64734
- mandatory: NonNullable<boolean | "force">;
64735
64723
  selectedClass: string;
64736
- continuous: boolean;
64737
- nextIcon: IconValue;
64738
- prevIcon: IconValue;
64739
64724
  } & {
64740
64725
  class?: any;
64741
- touch?: boolean | TouchHandlers | undefined;
64742
64726
  theme?: string | undefined;
64743
64727
  modelValue?: any;
64744
- showArrows?: string | boolean | undefined;
64745
64728
  } & {
64746
64729
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64747
64730
  default?: (() => vue.VNodeChild) | undefined;
@@ -64753,7 +64736,7 @@ declare const VStepperWindow: {
64753
64736
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
64754
64737
  } & {
64755
64738
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
64756
- }, "reverse" | "direction" | "style" | "disabled" | "tag" | "mandatory" | "touch" | "selectedClass" | "continuous" | "nextIcon" | "prevIcon">;
64739
+ }, "reverse" | "direction" | "style" | "disabled" | "tag" | "selectedClass">;
64757
64740
  $attrs: {
64758
64741
  [x: string]: unknown;
64759
64742
  };
@@ -64775,17 +64758,11 @@ declare const VStepperWindow: {
64775
64758
  style: vue.StyleValue;
64776
64759
  disabled: boolean;
64777
64760
  tag: string;
64778
- mandatory: NonNullable<boolean | "force">;
64779
64761
  selectedClass: string;
64780
- continuous: boolean;
64781
- nextIcon: IconValue;
64782
- prevIcon: IconValue;
64783
64762
  } & {
64784
64763
  class?: any;
64785
- touch?: boolean | TouchHandlers | undefined;
64786
64764
  theme?: string | undefined;
64787
64765
  modelValue?: any;
64788
- showArrows?: string | boolean | undefined;
64789
64766
  } & {
64790
64767
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64791
64768
  default?: (() => vue.VNodeChild) | undefined;
@@ -64805,12 +64782,7 @@ declare const VStepperWindow: {
64805
64782
  style: vue.StyleValue;
64806
64783
  disabled: boolean;
64807
64784
  tag: string;
64808
- mandatory: NonNullable<boolean | "force">;
64809
- touch: boolean | TouchHandlers;
64810
64785
  selectedClass: string;
64811
- continuous: boolean;
64812
- nextIcon: IconValue;
64813
- prevIcon: IconValue;
64814
64786
  }, {}, string, vue.SlotsType<Partial<{
64815
64787
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
64816
64788
  [key: string]: any;
@@ -64841,17 +64813,11 @@ declare const VStepperWindow: {
64841
64813
  style: vue.StyleValue;
64842
64814
  disabled: boolean;
64843
64815
  tag: string;
64844
- mandatory: NonNullable<boolean | "force">;
64845
64816
  selectedClass: string;
64846
- continuous: boolean;
64847
- nextIcon: IconValue;
64848
- prevIcon: IconValue;
64849
64817
  } & {
64850
64818
  class?: any;
64851
- touch?: boolean | TouchHandlers | undefined;
64852
64819
  theme?: string | undefined;
64853
64820
  modelValue?: any;
64854
- showArrows?: string | boolean | undefined;
64855
64821
  } & {
64856
64822
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64857
64823
  default?: (() => vue.VNodeChild) | undefined;
@@ -64873,17 +64839,11 @@ declare const VStepperWindow: {
64873
64839
  style: vue.StyleValue;
64874
64840
  disabled: boolean;
64875
64841
  tag: string;
64876
- mandatory: NonNullable<boolean | "force">;
64877
64842
  selectedClass: string;
64878
- continuous: boolean;
64879
- nextIcon: IconValue;
64880
- prevIcon: IconValue;
64881
64843
  } & {
64882
64844
  class?: any;
64883
- touch?: boolean | TouchHandlers | undefined;
64884
64845
  theme?: string | undefined;
64885
64846
  modelValue?: any;
64886
- showArrows?: string | boolean | undefined;
64887
64847
  } & {
64888
64848
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
64889
64849
  default?: (() => vue.VNodeChild) | undefined;
@@ -64903,108 +64863,55 @@ declare const VStepperWindow: {
64903
64863
  style: vue.StyleValue;
64904
64864
  disabled: boolean;
64905
64865
  tag: string;
64906
- mandatory: NonNullable<boolean | "force">;
64907
- touch: boolean | TouchHandlers;
64908
64866
  selectedClass: string;
64909
- continuous: boolean;
64910
- nextIcon: IconValue;
64911
- prevIcon: IconValue;
64912
64867
  }, {}, string, vue.SlotsType<Partial<{
64913
64868
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
64914
64869
  [key: string]: any;
64915
64870
  }>[];
64916
64871
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
64917
- theme: StringConstructor;
64918
- tag: {
64919
- type: StringConstructor;
64872
+ reverse: BooleanConstructor;
64873
+ direction: {
64874
+ type: vue.PropType<"horizontal" | "vertical">;
64920
64875
  default: string;
64921
64876
  };
64922
- class: vue.PropType<any>;
64923
64877
  style: {
64924
64878
  type: vue.PropType<vue.StyleValue>;
64925
64879
  default: null;
64926
64880
  };
64927
- continuous: BooleanConstructor;
64928
- nextIcon: {
64929
- type: vue.PropType<IconValue>;
64930
- default: string;
64931
- };
64932
- prevIcon: {
64933
- type: vue.PropType<IconValue>;
64934
- default: string;
64935
- };
64936
- reverse: BooleanConstructor;
64937
- showArrows: {
64938
- type: (StringConstructor | BooleanConstructor)[];
64939
- validator: (v: any) => boolean;
64940
- };
64941
- touch: {
64942
- type: vue.PropType<boolean | TouchHandlers>;
64943
- default: undefined;
64944
- };
64945
- direction: {
64946
- type: vue.PropType<"horizontal" | "vertical">;
64881
+ disabled: BooleanConstructor;
64882
+ class: vue.PropType<any>;
64883
+ tag: {
64884
+ type: StringConstructor;
64947
64885
  default: string;
64948
64886
  };
64887
+ theme: StringConstructor;
64949
64888
  modelValue: null;
64950
- disabled: BooleanConstructor;
64951
64889
  selectedClass: {
64952
64890
  type: StringConstructor;
64953
64891
  default: string;
64954
64892
  };
64955
- mandatory: Omit<{
64956
- type: vue.PropType<boolean | "force">;
64957
- default: "force";
64958
- }, "type" | "default"> & {
64959
- type: vue.PropType<NonNullable<boolean | "force">>;
64960
- default: NonNullable<boolean | "force">;
64961
- };
64962
64893
  }, vue.ExtractPropTypes<{
64963
- theme: StringConstructor;
64964
- tag: {
64965
- type: StringConstructor;
64894
+ reverse: BooleanConstructor;
64895
+ direction: {
64896
+ type: vue.PropType<"horizontal" | "vertical">;
64966
64897
  default: string;
64967
64898
  };
64968
- class: vue.PropType<any>;
64969
64899
  style: {
64970
64900
  type: vue.PropType<vue.StyleValue>;
64971
64901
  default: null;
64972
64902
  };
64973
- continuous: BooleanConstructor;
64974
- nextIcon: {
64975
- type: vue.PropType<IconValue>;
64976
- default: string;
64977
- };
64978
- prevIcon: {
64979
- type: vue.PropType<IconValue>;
64980
- default: string;
64981
- };
64982
- reverse: BooleanConstructor;
64983
- showArrows: {
64984
- type: (StringConstructor | BooleanConstructor)[];
64985
- validator: (v: any) => boolean;
64986
- };
64987
- touch: {
64988
- type: vue.PropType<boolean | TouchHandlers>;
64989
- default: undefined;
64990
- };
64991
- direction: {
64992
- type: vue.PropType<"horizontal" | "vertical">;
64903
+ disabled: BooleanConstructor;
64904
+ class: vue.PropType<any>;
64905
+ tag: {
64906
+ type: StringConstructor;
64993
64907
  default: string;
64994
64908
  };
64909
+ theme: StringConstructor;
64995
64910
  modelValue: null;
64996
- disabled: BooleanConstructor;
64997
64911
  selectedClass: {
64998
64912
  type: StringConstructor;
64999
64913
  default: string;
65000
64914
  };
65001
- mandatory: Omit<{
65002
- type: vue.PropType<boolean | "force">;
65003
- default: "force";
65004
- }, "type" | "default"> & {
65005
- type: vue.PropType<NonNullable<boolean | "force">>;
65006
- default: NonNullable<boolean | "force">;
65007
- };
65008
64915
  }>>;
65009
64916
  type VStepperWindow = InstanceType<typeof VStepperWindow>;
65010
64917
 
@@ -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
  });
@@ -25174,7 +25178,7 @@ function createVuetify$1() {
25174
25178
  date
25175
25179
  };
25176
25180
  }
25177
- const version$1 = "3.4.0-beta.1";
25181
+ const version$1 = "3.4.0";
25178
25182
  createVuetify$1.version = version$1;
25179
25183
 
25180
25184
  // Vue's inject() can only be used in setup
@@ -25188,7 +25192,7 @@ function inject(key) {
25188
25192
 
25189
25193
  /* eslint-disable local-rules/sort-imports */
25190
25194
 
25191
- const version = "3.4.0-beta.1";
25195
+ const version = "3.4.0";
25192
25196
 
25193
25197
  /* eslint-disable local-rules/sort-imports */
25194
25198