@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
@@ -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
  */
@@ -5280,7 +5280,8 @@
5280
5280
  'v-progress-linear--reverse': isReversed.value,
5281
5281
  'v-progress-linear--rounded': props.rounded,
5282
5282
  'v-progress-linear--rounded-bar': props.roundedBar,
5283
- 'v-progress-linear--striped': props.striped
5283
+ 'v-progress-linear--striped': props.striped,
5284
+ 'v-progress-linear--clickable': props.clickable
5284
5285
  }, roundedClasses.value, themeClasses.value, rtlClasses.value, props.class]),
5285
5286
  "style": vue.normalizeStyle([{
5286
5287
  bottom: props.location === 'bottom' ? 0 : undefined,
@@ -12365,7 +12366,7 @@
12365
12366
  if (!isFocused.value) focus();
12366
12367
  vue.nextTick(() => {
12367
12368
  if (inputRef.value !== document.activeElement) {
12368
- vue.nextTick(() => inputRef.value?.focus());
12369
+ inputRef.value?.focus();
12369
12370
  }
12370
12371
  });
12371
12372
  }
@@ -12468,7 +12469,7 @@
12468
12469
  "placeholder": props.placeholder,
12469
12470
  "size": 1,
12470
12471
  "type": props.type,
12471
- "onFocus": onFocus,
12472
+ "onFocus": focus,
12472
12473
  "onBlur": blur
12473
12474
  }, slotProps, inputAttrs), null), [[Intersect, {
12474
12475
  handler: onIntersect
@@ -17525,7 +17526,13 @@
17525
17526
  return weeks;
17526
17527
  }
17527
17528
  function startOfWeek(date, locale, firstDayOfWeek) {
17528
- const day = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
17529
+ let day = (firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0) % 7;
17530
+
17531
+ // prevent infinite loop
17532
+ if (![0, 1, 2, 3, 4, 5, 6].includes(day)) {
17533
+ consoleWarn('Invalid firstDayOfWeek, expected discrete number in range [0-6]');
17534
+ day = 0;
17535
+ }
17529
17536
  const d = new Date(date);
17530
17537
  while (d.getDay() !== day) {
17531
17538
  d.setDate(d.getDate() - 1);
@@ -21143,7 +21150,6 @@
21143
21150
  "appendIcon": appendIcon.value,
21144
21151
  "onClick:append": () => selectAll(!allSelected.value)
21145
21152
  }, {
21146
- ...slots,
21147
21153
  chip: props => vue.createVNode(VChip, {
21148
21154
  "onClick": props.item.raw?.sortable ? () => toggleSort(props.item.raw) : undefined,
21149
21155
  "onMousedown": e => {
@@ -30263,6 +30269,7 @@
30263
30269
  // Types
30264
30270
 
30265
30271
  const makeVTreeviewChildrenProps = propsFactory({
30272
+ fluid: Boolean,
30266
30273
  disabled: Boolean,
30267
30274
  loadChildren: Function,
30268
30275
  loadingIcon: {
@@ -30344,7 +30351,7 @@
30344
30351
  depth,
30345
30352
  isLast,
30346
30353
  isLastGroup: props.isLastGroup,
30347
- leafLinks: !props.hideActions,
30354
+ leafLinks: !props.hideActions && !props.fluid,
30348
30355
  separateRoots: props.separateRoots,
30349
30356
  parentIndentLines: props.parentIndentLines,
30350
30357
  variant: props.indentLinesVariant
@@ -30461,7 +30468,6 @@
30461
30468
  return flat;
30462
30469
  }
30463
30470
  const makeVTreeviewProps = propsFactory({
30464
- fluid: Boolean,
30465
30471
  openAll: Boolean,
30466
30472
  indentLines: [Boolean, String],
30467
30473
  search: String,
@@ -31753,7 +31759,7 @@
31753
31759
  "style": props.style
31754
31760
  }), {
31755
31761
  ...slots,
31756
- title: () => props?.title ?? props.file?.name,
31762
+ title: slots.title ?? (() => props?.title ?? props.file?.name),
31757
31763
  prepend: slotProps => vue.createElementVNode(vue.Fragment, null, [!slots.prepend ? vue.createVNode(VAvatar, {
31758
31764
  "icon": props.fileIcon,
31759
31765
  "image": preview.value,
@@ -33692,7 +33698,7 @@
33692
33698
  };
33693
33699
  });
33694
33700
  }
33695
- const version$1 = "3.9.2-master.2025-07-22";
33701
+ const version$1 = "3.9.2-master.2025-07-23";
33696
33702
  createVuetify$1.version = version$1;
33697
33703
 
33698
33704
  // Vue's inject() can only be used in setup
@@ -33990,7 +33996,7 @@
33990
33996
 
33991
33997
  /* eslint-disable local-rules/sort-imports */
33992
33998
 
33993
- const version = "3.9.2-master.2025-07-22";
33999
+ const version = "3.9.2-master.2025-07-23";
33994
34000
 
33995
34001
  /* eslint-disable local-rules/sort-imports */
33996
34002