@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
package/dist/vuetify.js CHANGED
@@ -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
  */
@@ -9347,7 +9347,7 @@
9347
9347
  const dividerStyles = vue.computed(() => {
9348
9348
  const styles = {};
9349
9349
  if (props.length) {
9350
- styles[props.vertical ? 'maxHeight' : 'maxWidth'] = convertToUnit(props.length);
9350
+ styles[props.vertical ? 'height' : 'width'] = convertToUnit(props.length);
9351
9351
  }
9352
9352
  if (props.thickness) {
9353
9353
  styles[props.vertical ? 'borderRightWidth' : 'borderTopWidth'] = convertToUnit(props.thickness);
@@ -26277,7 +26277,10 @@
26277
26277
  const makeStepperProps = propsFactory({
26278
26278
  altLabels: Boolean,
26279
26279
  bgColor: String,
26280
+ completeIcon: String,
26281
+ editIcon: String,
26280
26282
  editable: Boolean,
26283
+ errorIcon: String,
26281
26284
  hideActions: Boolean,
26282
26285
  items: {
26283
26286
  type: Array,
@@ -26291,9 +26294,9 @@
26291
26294
  type: String,
26292
26295
  default: 'value'
26293
26296
  },
26294
- mobile: Boolean,
26295
26297
  nonLinear: Boolean,
26296
- flat: Boolean
26298
+ flat: Boolean,
26299
+ ...makeDisplayProps()
26297
26300
  }, 'Stepper');
26298
26301
  const makeVStepperProps = propsFactory({
26299
26302
  ...makeStepperProps(),
@@ -26321,6 +26324,13 @@
26321
26324
  selected
26322
26325
  } = useGroup(props, VStepperSymbol);
26323
26326
  const {
26327
+ displayClasses,
26328
+ mobile
26329
+ } = useDisplay(props);
26330
+ const {
26331
+ completeIcon,
26332
+ editIcon,
26333
+ errorIcon,
26324
26334
  color,
26325
26335
  editable,
26326
26336
  prevText,
@@ -26347,6 +26357,9 @@
26347
26357
  provideDefaults({
26348
26358
  VStepperItem: {
26349
26359
  editable,
26360
+ errorIcon,
26361
+ completeIcon,
26362
+ editIcon,
26350
26363
  prevText,
26351
26364
  nextText
26352
26365
  },
@@ -26368,8 +26381,8 @@
26368
26381
  'v-stepper--alt-labels': props.altLabels,
26369
26382
  'v-stepper--flat': props.flat,
26370
26383
  'v-stepper--non-linear': props.nonLinear,
26371
- 'v-stepper--mobile': props.mobile
26372
- }, props.class],
26384
+ 'v-stepper--mobile': mobile.value
26385
+ }, displayClasses.value, props.class],
26373
26386
  "style": props.style
26374
26387
  }), {
26375
26388
  default: () => [hasHeader && vue.createVNode(VStepperHeader, {
@@ -28043,7 +28056,7 @@
28043
28056
  goTo
28044
28057
  };
28045
28058
  }
28046
- const version$1 = "3.6.7-master.2024-05-27";
28059
+ const version$1 = "3.6.7-master.2024-05-29";
28047
28060
  createVuetify$1.version = version$1;
28048
28061
 
28049
28062
  // Vue's inject() can only be used in setup
@@ -28068,7 +28081,7 @@
28068
28081
  ...options
28069
28082
  });
28070
28083
  };
28071
- const version = "3.6.7-master.2024-05-27";
28084
+ const version = "3.6.7-master.2024-05-29";
28072
28085
  createVuetify.version = version;
28073
28086
 
28074
28087
  exports.blueprints = index;