@vuetify/nightly 3.9.2-master.2025-07-22 → 3.9.2-master.2025-07-23

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 (53) hide show
  1. package/CHANGELOG.md +24 -3
  2. package/dist/json/attributes.json +3644 -3644
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +148 -148
  5. package/dist/json/web-types.json +6340 -6351
  6. package/dist/vuetify-labs.cjs +17 -11
  7. package/dist/vuetify-labs.css +5188 -5180
  8. package/dist/vuetify-labs.d.ts +63 -69
  9. package/dist/vuetify-labs.esm.js +17 -11
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +17 -11
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +16 -10
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +3960 -3953
  16. package/dist/vuetify.d.ts +63 -69
  17. package/dist/vuetify.esm.js +16 -10
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +16 -10
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +17 -16
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VCarousel/VCarousel.d.ts +7 -13
  25. package/lib/components/VCarousel/VCarousel.js.map +1 -1
  26. package/lib/components/VColorPicker/VColorPicker.css +1 -0
  27. package/lib/components/VColorPicker/VColorPicker.sass +1 -0
  28. package/lib/components/VDataTable/VDataTableHeaders.js +0 -1
  29. package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
  30. package/lib/components/VFileInput/VFileInput.css +3 -0
  31. package/lib/components/VFileInput/VFileInput.sass +3 -0
  32. package/lib/components/VProgressLinear/VProgressLinear.css +4 -1
  33. package/lib/components/VProgressLinear/VProgressLinear.js +2 -1
  34. package/lib/components/VProgressLinear/VProgressLinear.js.map +1 -1
  35. package/lib/components/VProgressLinear/VProgressLinear.sass +5 -2
  36. package/lib/components/VTextField/VTextField.js +2 -2
  37. package/lib/components/VTextField/VTextField.js.map +1 -1
  38. package/lib/components/VTreeview/VTreeview.d.ts +7 -7
  39. package/lib/components/VTreeview/VTreeview.js +0 -1
  40. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  41. package/lib/components/VTreeview/VTreeviewChildren.d.ts +13 -0
  42. package/lib/components/VTreeview/VTreeviewChildren.js +2 -1
  43. package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
  44. package/lib/composables/date/adapters/vuetify.js +8 -2
  45. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  46. package/lib/entry-bundler.js +1 -1
  47. package/lib/framework.d.ts +54 -54
  48. package/lib/framework.js +1 -1
  49. package/lib/labs/VFileUpload/VFileUploadItem.js +1 -1
  50. package/lib/labs/VFileUpload/VFileUploadItem.js.map +1 -1
  51. package/lib/labs/VStepperVertical/VStepperVerticalItem.css +1 -0
  52. package/lib/labs/VStepperVertical/VStepperVerticalItem.sass +1 -0
  53. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.2-master.2025-07-22
2
+ * Vuetify v3.9.2-master.2025-07-23
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -5558,7 +5558,8 @@
5558
5558
  'v-progress-linear--reverse': isReversed.value,
5559
5559
  'v-progress-linear--rounded': props.rounded,
5560
5560
  'v-progress-linear--rounded-bar': props.roundedBar,
5561
- 'v-progress-linear--striped': props.striped
5561
+ 'v-progress-linear--striped': props.striped,
5562
+ 'v-progress-linear--clickable': props.clickable
5562
5563
  }, roundedClasses.value, themeClasses.value, rtlClasses.value, props.class]),
5563
5564
  "style": vue.normalizeStyle([{
5564
5565
  bottom: props.location === 'bottom' ? 0 : undefined,
@@ -12643,7 +12644,7 @@
12643
12644
  if (!isFocused.value) focus();
12644
12645
  vue.nextTick(() => {
12645
12646
  if (inputRef.value !== document.activeElement) {
12646
- vue.nextTick(() => inputRef.value?.focus());
12647
+ inputRef.value?.focus();
12647
12648
  }
12648
12649
  });
12649
12650
  }
@@ -12746,7 +12747,7 @@
12746
12747
  "placeholder": props.placeholder,
12747
12748
  "size": 1,
12748
12749
  "type": props.type,
12749
- "onFocus": onFocus,
12750
+ "onFocus": focus,
12750
12751
  "onBlur": blur
12751
12752
  }, slotProps, inputAttrs), null), [[Intersect, {
12752
12753
  handler: onIntersect
@@ -17803,7 +17804,13 @@
17803
17804
  return weeks;
17804
17805
  }
17805
17806
  function startOfWeek(date, locale, firstDayOfWeek) {
17806
- const day = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
17807
+ let day = (firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0) % 7;
17808
+
17809
+ // prevent infinite loop
17810
+ if (![0, 1, 2, 3, 4, 5, 6].includes(day)) {
17811
+ consoleWarn('Invalid firstDayOfWeek, expected discrete number in range [0-6]');
17812
+ day = 0;
17813
+ }
17807
17814
  const d = new Date(date);
17808
17815
  while (d.getDay() !== day) {
17809
17816
  d.setDate(d.getDate() - 1);
@@ -21421,7 +21428,6 @@
21421
21428
  "appendIcon": appendIcon.value,
21422
21429
  "onClick:append": () => selectAll(!allSelected.value)
21423
21430
  }, {
21424
- ...slots,
21425
21431
  chip: props => vue.createVNode(VChip, {
21426
21432
  "onClick": props.item.raw?.sortable ? () => toggleSort(props.item.raw) : undefined,
21427
21433
  "onMousedown": e => {
@@ -30541,6 +30547,7 @@
30541
30547
  // Types
30542
30548
 
30543
30549
  const makeVTreeviewChildrenProps = propsFactory({
30550
+ fluid: Boolean,
30544
30551
  disabled: Boolean,
30545
30552
  loadChildren: Function,
30546
30553
  loadingIcon: {
@@ -30622,7 +30629,7 @@
30622
30629
  depth,
30623
30630
  isLast,
30624
30631
  isLastGroup: props.isLastGroup,
30625
- leafLinks: !props.hideActions,
30632
+ leafLinks: !props.hideActions && !props.fluid,
30626
30633
  separateRoots: props.separateRoots,
30627
30634
  parentIndentLines: props.parentIndentLines,
30628
30635
  variant: props.indentLinesVariant
@@ -30739,7 +30746,6 @@
30739
30746
  return flat;
30740
30747
  }
30741
30748
  const makeVTreeviewProps = propsFactory({
30742
- fluid: Boolean,
30743
30749
  openAll: Boolean,
30744
30750
  indentLines: [Boolean, String],
30745
30751
  search: String,
@@ -31388,7 +31394,7 @@
31388
31394
  };
31389
31395
  });
31390
31396
  }
31391
- const version$1 = "3.9.2-master.2025-07-22";
31397
+ const version$1 = "3.9.2-master.2025-07-23";
31392
31398
  createVuetify$1.version = version$1;
31393
31399
 
31394
31400
  // Vue's inject() can only be used in setup
@@ -31413,7 +31419,7 @@
31413
31419
  ...options
31414
31420
  });
31415
31421
  };
31416
- const version = "3.9.2-master.2025-07-22";
31422
+ const version = "3.9.2-master.2025-07-23";
31417
31423
  createVuetify.version = version;
31418
31424
 
31419
31425
  exports.blueprints = index;