@vuetify/nightly 3.6.7-master.2024-05-27 → 3.6.7-master.2024-05-29

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 (39) hide show
  1. package/CHANGELOG.md +8 -2
  2. package/dist/json/attributes.json +39 -7
  3. package/dist/json/importMap-labs.json +12 -12
  4. package/dist/json/importMap.json +146 -146
  5. package/dist/json/tags.json +8 -0
  6. package/dist/json/web-types.json +84 -12
  7. package/dist/vuetify-labs.css +2617 -2614
  8. package/dist/vuetify-labs.d.ts +78 -18
  9. package/dist/vuetify-labs.esm.js +27 -8
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +27 -8
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +723 -720
  14. package/dist/vuetify.d.ts +85 -55
  15. package/dist/vuetify.esm.js +21 -8
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +21 -8
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +9 -9
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VDivider/VDivider.mjs +1 -1
  23. package/lib/components/VDivider/VDivider.mjs.map +1 -1
  24. package/lib/components/VSnackbar/VSnackbar.css +1 -1
  25. package/lib/components/VSnackbar/VSnackbar.sass +1 -1
  26. package/lib/components/VStepper/VStepper.mjs +18 -4
  27. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  28. package/lib/components/VStepper/VStepperItem.css +3 -0
  29. package/lib/components/VStepper/VStepperItem.sass +3 -0
  30. package/lib/components/VStepper/index.d.mts +43 -9
  31. package/lib/components/index.d.mts +39 -9
  32. package/lib/entry-bundler.mjs +1 -1
  33. package/lib/framework.mjs +1 -1
  34. package/lib/index.d.mts +46 -46
  35. package/lib/labs/VNumberInput/VNumberInput.mjs +7 -0
  36. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  37. package/lib/labs/VStepperVertical/index.d.mts +43 -9
  38. package/lib/labs/components.d.mts +3752 -3718
  39. package/package.json +1 -1
@@ -58818,7 +58818,7 @@ declare const VStepper: {
58818
58818
  style: vue.StyleValue;
58819
58819
  disabled: boolean;
58820
58820
  tag: string;
58821
- mobile: boolean;
58821
+ mobile: boolean | null;
58822
58822
  items: readonly StepperItem[];
58823
58823
  mandatory: NonNullable<boolean | "force">;
58824
58824
  multiple: boolean;
@@ -58838,6 +58838,7 @@ declare const VStepper: {
58838
58838
  height?: string | number | undefined;
58839
58839
  theme?: string | undefined;
58840
58840
  color?: string | undefined;
58841
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58841
58842
  border?: string | number | boolean | undefined;
58842
58843
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58843
58844
  modelValue?: any;
@@ -58850,6 +58851,9 @@ declare const VStepper: {
58850
58851
  location?: Anchor | undefined;
58851
58852
  max?: number | undefined;
58852
58853
  bgColor?: string | undefined;
58854
+ completeIcon?: string | undefined;
58855
+ editIcon?: string | undefined;
58856
+ errorIcon?: string | undefined;
58853
58857
  } & {
58854
58858
  $children?: vue.VNodeChild | {
58855
58859
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58904,7 +58908,7 @@ declare const VStepper: {
58904
58908
  style: vue.StyleValue;
58905
58909
  disabled: boolean;
58906
58910
  tag: string;
58907
- mobile: boolean;
58911
+ mobile: boolean | null;
58908
58912
  items: readonly StepperItem[];
58909
58913
  mandatory: NonNullable<boolean | "force">;
58910
58914
  multiple: boolean;
@@ -58924,6 +58928,7 @@ declare const VStepper: {
58924
58928
  height?: string | number | undefined;
58925
58929
  theme?: string | undefined;
58926
58930
  color?: string | undefined;
58931
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58927
58932
  border?: string | number | boolean | undefined;
58928
58933
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58929
58934
  modelValue?: any;
@@ -58936,6 +58941,9 @@ declare const VStepper: {
58936
58941
  location?: Anchor | undefined;
58937
58942
  max?: number | undefined;
58938
58943
  bgColor?: string | undefined;
58944
+ completeIcon?: string | undefined;
58945
+ editIcon?: string | undefined;
58946
+ errorIcon?: string | undefined;
58939
58947
  } & {
58940
58948
  $children?: vue.VNodeChild | {
58941
58949
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58985,7 +58993,7 @@ declare const VStepper: {
58985
58993
  style: vue.StyleValue;
58986
58994
  disabled: boolean;
58987
58995
  tag: string;
58988
- mobile: boolean;
58996
+ mobile: boolean | null;
58989
58997
  modelValue: any;
58990
58998
  rounded: string | number | boolean;
58991
58999
  items: readonly StepperItem[];
@@ -59050,7 +59058,7 @@ declare const VStepper: {
59050
59058
  style: vue.StyleValue;
59051
59059
  disabled: boolean;
59052
59060
  tag: string;
59053
- mobile: boolean;
59061
+ mobile: boolean | null;
59054
59062
  items: readonly StepperItem[];
59055
59063
  mandatory: NonNullable<boolean | "force">;
59056
59064
  multiple: boolean;
@@ -59070,6 +59078,7 @@ declare const VStepper: {
59070
59078
  height?: string | number | undefined;
59071
59079
  theme?: string | undefined;
59072
59080
  color?: string | undefined;
59081
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
59073
59082
  border?: string | number | boolean | undefined;
59074
59083
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
59075
59084
  modelValue?: any;
@@ -59082,6 +59091,9 @@ declare const VStepper: {
59082
59091
  location?: Anchor | undefined;
59083
59092
  max?: number | undefined;
59084
59093
  bgColor?: string | undefined;
59094
+ completeIcon?: string | undefined;
59095
+ editIcon?: string | undefined;
59096
+ errorIcon?: string | undefined;
59085
59097
  } & {
59086
59098
  $children?: vue.VNodeChild | {
59087
59099
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -59134,7 +59146,7 @@ declare const VStepper: {
59134
59146
  style: vue.StyleValue;
59135
59147
  disabled: boolean;
59136
59148
  tag: string;
59137
- mobile: boolean;
59149
+ mobile: boolean | null;
59138
59150
  modelValue: any;
59139
59151
  rounded: string | number | boolean;
59140
59152
  items: readonly StepperItem[];
@@ -59159,7 +59171,7 @@ declare const VStepper: {
59159
59171
  style: vue.StyleValue;
59160
59172
  disabled: boolean;
59161
59173
  tag: string;
59162
- mobile: boolean;
59174
+ mobile: boolean | null;
59163
59175
  items: readonly StepperItem[];
59164
59176
  mandatory: NonNullable<boolean | "force">;
59165
59177
  multiple: boolean;
@@ -59179,6 +59191,7 @@ declare const VStepper: {
59179
59191
  height?: string | number | undefined;
59180
59192
  theme?: string | undefined;
59181
59193
  color?: string | undefined;
59194
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
59182
59195
  border?: string | number | boolean | undefined;
59183
59196
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
59184
59197
  modelValue?: any;
@@ -59191,6 +59204,9 @@ declare const VStepper: {
59191
59204
  location?: Anchor | undefined;
59192
59205
  max?: number | undefined;
59193
59206
  bgColor?: string | undefined;
59207
+ completeIcon?: string | undefined;
59208
+ editIcon?: string | undefined;
59209
+ errorIcon?: string | undefined;
59194
59210
  } & {
59195
59211
  $children?: vue.VNodeChild | {
59196
59212
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -59245,7 +59261,7 @@ declare const VStepper: {
59245
59261
  style: vue.StyleValue;
59246
59262
  disabled: boolean;
59247
59263
  tag: string;
59248
- mobile: boolean;
59264
+ mobile: boolean | null;
59249
59265
  modelValue: any;
59250
59266
  rounded: string | number | boolean;
59251
59267
  items: readonly StepperItem[];
@@ -59354,9 +59370,17 @@ declare const VStepper: {
59354
59370
  default: string;
59355
59371
  };
59356
59372
  disabled: BooleanConstructor;
59373
+ mobile: {
59374
+ type: PropType<boolean | null>;
59375
+ default: boolean;
59376
+ };
59377
+ mobileBreakpoint: PropType<number | DisplayBreakpoint>;
59357
59378
  altLabels: BooleanConstructor;
59358
59379
  bgColor: StringConstructor;
59380
+ completeIcon: StringConstructor;
59381
+ editIcon: StringConstructor;
59359
59382
  editable: BooleanConstructor;
59383
+ errorIcon: StringConstructor;
59360
59384
  hideActions: BooleanConstructor;
59361
59385
  items: {
59362
59386
  type: PropType<readonly StepperItem[]>;
@@ -59370,7 +59394,6 @@ declare const VStepper: {
59370
59394
  type: StringConstructor;
59371
59395
  default: string;
59372
59396
  };
59373
- mobile: BooleanConstructor;
59374
59397
  nonLinear: BooleanConstructor;
59375
59398
  flat: BooleanConstructor;
59376
59399
  }, vue.ExtractPropTypes<{
@@ -59429,9 +59452,17 @@ declare const VStepper: {
59429
59452
  default: string;
59430
59453
  };
59431
59454
  disabled: BooleanConstructor;
59455
+ mobile: {
59456
+ type: PropType<boolean | null>;
59457
+ default: boolean;
59458
+ };
59459
+ mobileBreakpoint: PropType<number | DisplayBreakpoint>;
59432
59460
  altLabels: BooleanConstructor;
59433
59461
  bgColor: StringConstructor;
59462
+ completeIcon: StringConstructor;
59463
+ editIcon: StringConstructor;
59434
59464
  editable: BooleanConstructor;
59465
+ errorIcon: StringConstructor;
59435
59466
  hideActions: BooleanConstructor;
59436
59467
  items: {
59437
59468
  type: PropType<readonly StepperItem[]>;
@@ -59445,7 +59476,6 @@ declare const VStepper: {
59445
59476
  type: StringConstructor;
59446
59477
  default: string;
59447
59478
  };
59448
- mobile: BooleanConstructor;
59449
59479
  nonLinear: BooleanConstructor;
59450
59480
  flat: BooleanConstructor;
59451
59481
  }>>;
@@ -77298,7 +77328,7 @@ declare const VStepperVertical: {
77298
77328
  style: vue.StyleValue;
77299
77329
  disabled: boolean;
77300
77330
  tag: string;
77301
- mobile: boolean;
77331
+ mobile: boolean | null;
77302
77332
  readonly: boolean;
77303
77333
  variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77304
77334
  items: readonly StepperItem[];
@@ -77327,12 +77357,16 @@ declare const VStepperVertical: {
77327
77357
  value?: any;
77328
77358
  theme?: string | undefined;
77329
77359
  color?: string | undefined;
77360
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
77330
77361
  modelValue?: any;
77331
77362
  rounded?: string | number | boolean | undefined;
77332
77363
  elevation?: string | number | undefined;
77333
77364
  max?: number | undefined;
77334
77365
  selectedClass?: string | undefined;
77335
77366
  bgColor?: string | undefined;
77367
+ completeIcon?: string | undefined;
77368
+ editIcon?: string | undefined;
77369
+ errorIcon?: string | undefined;
77336
77370
  } & {
77337
77371
  $children?: vue.VNodeChild | {
77338
77372
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -77386,7 +77420,7 @@ declare const VStepperVertical: {
77386
77420
  style: vue.StyleValue;
77387
77421
  disabled: boolean;
77388
77422
  tag: string;
77389
- mobile: boolean;
77423
+ mobile: boolean | null;
77390
77424
  readonly: boolean;
77391
77425
  variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77392
77426
  items: readonly StepperItem[];
@@ -77415,12 +77449,16 @@ declare const VStepperVertical: {
77415
77449
  value?: any;
77416
77450
  theme?: string | undefined;
77417
77451
  color?: string | undefined;
77452
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
77418
77453
  modelValue?: any;
77419
77454
  rounded?: string | number | boolean | undefined;
77420
77455
  elevation?: string | number | undefined;
77421
77456
  max?: number | undefined;
77422
77457
  selectedClass?: string | undefined;
77423
77458
  bgColor?: string | undefined;
77459
+ completeIcon?: string | undefined;
77460
+ editIcon?: string | undefined;
77461
+ errorIcon?: string | undefined;
77424
77462
  } & {
77425
77463
  $children?: vue.VNodeChild | {
77426
77464
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -77472,7 +77510,7 @@ declare const VStepperVertical: {
77472
77510
  style: vue.StyleValue;
77473
77511
  disabled: boolean;
77474
77512
  tag: string;
77475
- mobile: boolean;
77513
+ mobile: boolean | null;
77476
77514
  readonly: boolean;
77477
77515
  modelValue: any;
77478
77516
  rounded: string | number | boolean;
@@ -77541,7 +77579,7 @@ declare const VStepperVertical: {
77541
77579
  style: vue.StyleValue;
77542
77580
  disabled: boolean;
77543
77581
  tag: string;
77544
- mobile: boolean;
77582
+ mobile: boolean | null;
77545
77583
  readonly: boolean;
77546
77584
  variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77547
77585
  items: readonly StepperItem[];
@@ -77570,12 +77608,16 @@ declare const VStepperVertical: {
77570
77608
  value?: any;
77571
77609
  theme?: string | undefined;
77572
77610
  color?: string | undefined;
77611
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
77573
77612
  modelValue?: any;
77574
77613
  rounded?: string | number | boolean | undefined;
77575
77614
  elevation?: string | number | undefined;
77576
77615
  max?: number | undefined;
77577
77616
  selectedClass?: string | undefined;
77578
77617
  bgColor?: string | undefined;
77618
+ completeIcon?: string | undefined;
77619
+ editIcon?: string | undefined;
77620
+ errorIcon?: string | undefined;
77579
77621
  } & {
77580
77622
  $children?: vue.VNodeChild | {
77581
77623
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -77627,7 +77669,7 @@ declare const VStepperVertical: {
77627
77669
  style: vue.StyleValue;
77628
77670
  disabled: boolean;
77629
77671
  tag: string;
77630
- mobile: boolean;
77672
+ mobile: boolean | null;
77631
77673
  readonly: boolean;
77632
77674
  modelValue: any;
77633
77675
  rounded: string | number | boolean;
@@ -77660,7 +77702,7 @@ declare const VStepperVertical: {
77660
77702
  style: vue.StyleValue;
77661
77703
  disabled: boolean;
77662
77704
  tag: string;
77663
- mobile: boolean;
77705
+ mobile: boolean | null;
77664
77706
  readonly: boolean;
77665
77707
  variant: NonNullable<"default" | "inset" | "accordion" | "popout">;
77666
77708
  items: readonly StepperItem[];
@@ -77689,12 +77731,16 @@ declare const VStepperVertical: {
77689
77731
  value?: any;
77690
77732
  theme?: string | undefined;
77691
77733
  color?: string | undefined;
77734
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
77692
77735
  modelValue?: any;
77693
77736
  rounded?: string | number | boolean | undefined;
77694
77737
  elevation?: string | number | undefined;
77695
77738
  max?: number | undefined;
77696
77739
  selectedClass?: string | undefined;
77697
77740
  bgColor?: string | undefined;
77741
+ completeIcon?: string | undefined;
77742
+ editIcon?: string | undefined;
77743
+ errorIcon?: string | undefined;
77698
77744
  } & {
77699
77745
  $children?: vue.VNodeChild | {
77700
77746
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -77748,7 +77794,7 @@ declare const VStepperVertical: {
77748
77794
  style: vue.StyleValue;
77749
77795
  disabled: boolean;
77750
77796
  tag: string;
77751
- mobile: boolean;
77797
+ mobile: boolean | null;
77752
77798
  readonly: boolean;
77753
77799
  modelValue: any;
77754
77800
  rounded: string | number | boolean;
@@ -77869,8 +77915,16 @@ declare const VStepperVertical: {
77869
77915
  };
77870
77916
  hideActions: BooleanConstructor;
77871
77917
  focusable: BooleanConstructor;
77918
+ mobile: {
77919
+ type: vue.PropType<boolean | null>;
77920
+ default: boolean;
77921
+ };
77922
+ mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
77872
77923
  altLabels: BooleanConstructor;
77924
+ completeIcon: StringConstructor;
77925
+ editIcon: StringConstructor;
77873
77926
  editable: BooleanConstructor;
77927
+ errorIcon: StringConstructor;
77874
77928
  items: {
77875
77929
  type: vue.PropType<readonly StepperItem[]>;
77876
77930
  default: () => never[];
@@ -77883,7 +77937,6 @@ declare const VStepperVertical: {
77883
77937
  type: StringConstructor;
77884
77938
  default: string;
77885
77939
  };
77886
- mobile: BooleanConstructor;
77887
77940
  nonLinear: BooleanConstructor;
77888
77941
  prevText: {
77889
77942
  type: StringConstructor;
@@ -77957,8 +78010,16 @@ declare const VStepperVertical: {
77957
78010
  };
77958
78011
  hideActions: BooleanConstructor;
77959
78012
  focusable: BooleanConstructor;
78013
+ mobile: {
78014
+ type: vue.PropType<boolean | null>;
78015
+ default: boolean;
78016
+ };
78017
+ mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
77960
78018
  altLabels: BooleanConstructor;
78019
+ completeIcon: StringConstructor;
78020
+ editIcon: StringConstructor;
77961
78021
  editable: BooleanConstructor;
78022
+ errorIcon: StringConstructor;
77962
78023
  items: {
77963
78024
  type: vue.PropType<readonly StepperItem[]>;
77964
78025
  default: () => never[];
@@ -77971,7 +78032,6 @@ declare const VStepperVertical: {
77971
78032
  type: StringConstructor;
77972
78033
  default: string;
77973
78034
  };
77974
- mobile: BooleanConstructor;
77975
78035
  nonLinear: BooleanConstructor;
77976
78036
  prevText: {
77977
78037
  type: StringConstructor;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.7-master.2024-05-27
2
+ * Vuetify v3.6.7-master.2024-05-29
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -9110,7 +9110,7 @@ const VDivider = genericComponent()({
9110
9110
  const dividerStyles = computed(() => {
9111
9111
  const styles = {};
9112
9112
  if (props.length) {
9113
- styles[props.vertical ? 'maxHeight' : 'maxWidth'] = convertToUnit(props.length);
9113
+ styles[props.vertical ? 'height' : 'width'] = convertToUnit(props.length);
9114
9114
  }
9115
9115
  if (props.thickness) {
9116
9116
  styles[props.vertical ? 'borderRightWidth' : 'borderTopWidth'] = convertToUnit(props.thickness);
@@ -26040,7 +26040,10 @@ const VStepperWindowItem = genericComponent()({
26040
26040
  const makeStepperProps = propsFactory({
26041
26041
  altLabels: Boolean,
26042
26042
  bgColor: String,
26043
+ completeIcon: String,
26044
+ editIcon: String,
26043
26045
  editable: Boolean,
26046
+ errorIcon: String,
26044
26047
  hideActions: Boolean,
26045
26048
  items: {
26046
26049
  type: Array,
@@ -26054,9 +26057,9 @@ const makeStepperProps = propsFactory({
26054
26057
  type: String,
26055
26058
  default: 'value'
26056
26059
  },
26057
- mobile: Boolean,
26058
26060
  nonLinear: Boolean,
26059
- flat: Boolean
26061
+ flat: Boolean,
26062
+ ...makeDisplayProps()
26060
26063
  }, 'Stepper');
26061
26064
  const makeVStepperProps = propsFactory({
26062
26065
  ...makeStepperProps(),
@@ -26084,6 +26087,13 @@ const VStepper = genericComponent()({
26084
26087
  selected
26085
26088
  } = useGroup(props, VStepperSymbol);
26086
26089
  const {
26090
+ displayClasses,
26091
+ mobile
26092
+ } = useDisplay(props);
26093
+ const {
26094
+ completeIcon,
26095
+ editIcon,
26096
+ errorIcon,
26087
26097
  color,
26088
26098
  editable,
26089
26099
  prevText,
@@ -26110,6 +26120,9 @@ const VStepper = genericComponent()({
26110
26120
  provideDefaults({
26111
26121
  VStepperItem: {
26112
26122
  editable,
26123
+ errorIcon,
26124
+ completeIcon,
26125
+ editIcon,
26113
26126
  prevText,
26114
26127
  nextText
26115
26128
  },
@@ -26131,8 +26144,8 @@ const VStepper = genericComponent()({
26131
26144
  'v-stepper--alt-labels': props.altLabels,
26132
26145
  'v-stepper--flat': props.flat,
26133
26146
  'v-stepper--non-linear': props.nonLinear,
26134
- 'v-stepper--mobile': props.mobile
26135
- }, props.class],
26147
+ 'v-stepper--mobile': mobile.value
26148
+ }, displayClasses.value, props.class],
26136
26149
  "style": props.style
26137
26150
  }), {
26138
26151
  default: () => [hasHeader && createVNode(VStepperHeader, {
@@ -27975,15 +27988,20 @@ const VNumberInput = genericComponent()({
27975
27988
  const model = useProxiedModel(props, 'modelValue');
27976
27989
  const stepDecimals = computed(() => getDecimals(props.step));
27977
27990
  const modelDecimals = computed(() => model.value != null ? getDecimals(model.value) : 0);
27991
+ const form = useForm();
27992
+ const controlsDisabled = computed(() => props.disabled || props.readonly || form?.isReadonly.value);
27978
27993
  const canIncrease = computed(() => {
27994
+ if (controlsDisabled.value) return false;
27979
27995
  if (model.value == null) return true;
27980
27996
  return model.value + props.step <= props.max;
27981
27997
  });
27982
27998
  const canDecrease = computed(() => {
27999
+ if (controlsDisabled.value) return false;
27983
28000
  if (model.value == null) return true;
27984
28001
  return model.value - props.step >= props.min;
27985
28002
  });
27986
28003
  watchEffect(() => {
28004
+ if (controlsDisabled.value) return;
27987
28005
  if (model.value != null && (model.value < props.min || model.value > props.max)) {
27988
28006
  model.value = clamp(model.value, props.min, props.max);
27989
28007
  }
@@ -27999,6 +28017,7 @@ const VNumberInput = genericComponent()({
27999
28017
  }));
28000
28018
  function toggleUpDown() {
28001
28019
  let increment = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
28020
+ if (controlsDisabled.value) return;
28002
28021
  if (model.value == null) {
28003
28022
  model.value = 0;
28004
28023
  return;
@@ -30129,7 +30148,7 @@ function createVuetify$1() {
30129
30148
  goTo
30130
30149
  };
30131
30150
  }
30132
- const version$1 = "3.6.7-master.2024-05-27";
30151
+ const version$1 = "3.6.7-master.2024-05-29";
30133
30152
  createVuetify$1.version = version$1;
30134
30153
 
30135
30154
  // Vue's inject() can only be used in setup
@@ -30382,7 +30401,7 @@ var index = /*#__PURE__*/Object.freeze({
30382
30401
 
30383
30402
  /* eslint-disable local-rules/sort-imports */
30384
30403
 
30385
- const version = "3.6.7-master.2024-05-27";
30404
+ const version = "3.6.7-master.2024-05-29";
30386
30405
 
30387
30406
  /* eslint-disable local-rules/sort-imports */
30388
30407