@vuetify/nightly 3.10.5-dev.2025-10-09 → 3.10.5-dev.2025-10-17

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/CHANGELOG.md +9 -3
  2. package/dist/json/attributes.json +3564 -3572
  3. package/dist/json/importMap-labs.json +22 -22
  4. package/dist/json/importMap.json +140 -140
  5. package/dist/json/tags.json +2 -4
  6. package/dist/json/web-types.json +6306 -6322
  7. package/dist/vuetify-labs.cjs +12 -8
  8. package/dist/vuetify-labs.css +5108 -5100
  9. package/dist/vuetify-labs.d.ts +79 -71
  10. package/dist/vuetify-labs.esm.js +12 -8
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +12 -8
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +8 -4
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3183 -3175
  17. package/dist/vuetify.d.ts +79 -51
  18. package/dist/vuetify.esm.js +8 -4
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +8 -4
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +5 -5
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAppBar/VAppBar.d.ts +25 -0
  26. package/lib/components/VToolbar/VToolbar.css +8 -0
  27. package/lib/components/VToolbar/VToolbar.d.ts +25 -0
  28. package/lib/components/VToolbar/VToolbar.js +5 -1
  29. package/lib/components/VToolbar/VToolbar.js.map +1 -1
  30. package/lib/components/VToolbar/VToolbar.sass +9 -1
  31. package/lib/entry-bundler.js +1 -1
  32. package/lib/framework.d.ts +51 -51
  33. package/lib/framework.js +1 -1
  34. package/lib/labs/VColorInput/VColorInput.d.ts +0 -40
  35. package/lib/labs/VColorInput/VColorInput.js +2 -2
  36. package/lib/labs/VColorInput/VColorInput.js.map +1 -1
  37. package/lib/labs/VDateInput/VDateInput.js +1 -1
  38. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  39. package/lib/labs/VMaskInput/VMaskInput.js +1 -1
  40. package/lib/labs/VMaskInput/VMaskInput.js.map +1 -1
  41. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.10.5-dev.2025-10-09
2
+ * Vuetify v3.10.5-dev.2025-10-17
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -3989,6 +3989,10 @@
3989
3989
  const makeVToolbarProps = propsFactory({
3990
3990
  absolute: Boolean,
3991
3991
  collapse: Boolean,
3992
+ collapsePosition: {
3993
+ type: String,
3994
+ default: 'start'
3995
+ },
3992
3996
  color: String,
3993
3997
  density: {
3994
3998
  type: String,
@@ -4060,7 +4064,7 @@
4060
4064
  const extension = slots.extension?.();
4061
4065
  isExtended.value = props.extended === null ? !!extension : props.extended;
4062
4066
  return vue.createVNode(props.tag, {
4063
- "class": vue.normalizeClass(['v-toolbar', {
4067
+ "class": vue.normalizeClass(['v-toolbar', `v-toolbar--collapse-${props.collapsePosition}`, {
4064
4068
  'v-toolbar--absolute': props.absolute,
4065
4069
  'v-toolbar--collapse': props.collapse,
4066
4070
  'v-toolbar--flat': props.flat,
@@ -34369,7 +34373,7 @@
34369
34373
  ...makeFocusProps(),
34370
34374
  ...makeVConfirmEditProps(),
34371
34375
  ...makeVTextFieldProps(),
34372
- ...omit(makeVColorPickerProps(), ['width'])
34376
+ ...omit(makeVColorPickerProps(), ['location', 'height', 'minHeight', 'maxHeight'])
34373
34377
  }, 'VColorInput');
34374
34378
  const VColorInput = genericComponent()({
34375
34379
  name: 'VColorInput',
@@ -34408,7 +34412,7 @@
34408
34412
  }
34409
34413
  useRender(() => {
34410
34414
  const confirmEditProps = VConfirmEdit.filterProps(props);
34411
- const colorPickerProps = VColorPicker.filterProps(omit(props, ['active', 'color']));
34415
+ const colorPickerProps = VColorPicker.filterProps(omit(props, ['active', 'bgColor', 'color', 'rounded', 'maxWidth', 'minWidth', 'width']));
34412
34416
  const textFieldProps = VTextField.filterProps(props);
34413
34417
  const slotWithPip = props.hidePip ? undefined : {
34414
34418
  [props.pipLocation]: arg => vue.createElementVNode(vue.Fragment, null, [vue.createVNode(VAvatar, {
@@ -34768,7 +34772,7 @@
34768
34772
  }
34769
34773
  useRender(() => {
34770
34774
  const confirmEditProps = VConfirmEdit.filterProps(props);
34771
- const datePickerProps = VDatePicker.filterProps(omit(props, ['active', 'bgColor', 'location', 'rounded', 'maxWidth', 'minWidth', 'width']));
34775
+ const datePickerProps = VDatePicker.filterProps(omit(props, ['active', 'bgColor', 'color', 'location', 'rounded', 'maxWidth', 'minWidth', 'width']));
34772
34776
  const datePickerSlots = pick(slots, ['title', 'header', 'day', 'month', 'year']);
34773
34777
  const textFieldProps = VTextField.filterProps(omit(props, ['placeholder']));
34774
34778
  return vue.createVNode(VTextField, vue.mergeProps({
@@ -35213,7 +35217,7 @@
35213
35217
  // Always display masked value in input when mask is applied
35214
35218
  val => props.mask ? mask.mask(mask.unmask(val)) : val, val => {
35215
35219
  if (props.mask) {
35216
- const valueWithoutDelimiters = removeMaskDelimiters(val);
35220
+ const valueWithoutDelimiters = val ? removeMaskDelimiters(val) : '';
35217
35221
 
35218
35222
  // E.g. mask is #-# and the input value is '2-23'
35219
35223
  // model-value should be enforced to '2-2'
@@ -38071,7 +38075,7 @@
38071
38075
  };
38072
38076
  });
38073
38077
  }
38074
- const version$1 = "3.10.5-dev.2025-10-09";
38078
+ const version$1 = "3.10.5-dev.2025-10-17";
38075
38079
  createVuetify$1.version = version$1;
38076
38080
 
38077
38081
  // Vue's inject() can only be used in setup
@@ -38369,7 +38373,7 @@
38369
38373
 
38370
38374
  /* eslint-disable local-rules/sort-imports */
38371
38375
 
38372
- const version = "3.10.5-dev.2025-10-09";
38376
+ const version = "3.10.5-dev.2025-10-17";
38373
38377
 
38374
38378
  /* eslint-disable local-rules/sort-imports */
38375
38379