@vuetify/nightly 3.9.0-master.2025-07-08 → 3.9.0-master.2025-07-10

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 (56) hide show
  1. package/CHANGELOG.md +22 -3
  2. package/dist/json/attributes.json +3735 -3735
  3. package/dist/json/importMap-labs.json +28 -28
  4. package/dist/json/importMap.json +188 -188
  5. package/dist/json/web-types.json +6238 -6238
  6. package/dist/vuetify-labs.cjs +38 -28
  7. package/dist/vuetify-labs.css +3384 -3384
  8. package/dist/vuetify-labs.d.ts +64 -64
  9. package/dist/vuetify-labs.esm.js +38 -28
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +38 -28
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +30 -20
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +3059 -3059
  16. package/dist/vuetify.d.ts +64 -64
  17. package/dist/vuetify.esm.js +30 -20
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +30 -20
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +491 -483
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VDataTable/VDataTableFooter.js +7 -7
  25. package/lib/components/VDataTable/VDataTableFooter.js.map +1 -1
  26. package/lib/components/VFileInput/VFileInput.js +1 -1
  27. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  28. package/lib/components/VList/VList.js +5 -1
  29. package/lib/components/VList/VList.js.map +1 -1
  30. package/lib/components/VOtpInput/VOtpInput.js +2 -2
  31. package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
  32. package/lib/components/VSnackbar/VSnackbar.js +1 -1
  33. package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
  34. package/lib/components/VTreeview/VTreeview.js +1 -1
  35. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  36. package/lib/composables/layout.js +2 -2
  37. package/lib/composables/layout.js.map +1 -1
  38. package/lib/composables/list-items.d.ts +5 -2
  39. package/lib/composables/list-items.js +9 -3
  40. package/lib/composables/list-items.js.map +1 -1
  41. package/lib/entry-bundler.js +1 -1
  42. package/lib/framework.d.ts +64 -64
  43. package/lib/framework.js +1 -1
  44. package/lib/labs/VColorInput/VColorInput.js +1 -1
  45. package/lib/labs/VColorInput/VColorInput.js.map +1 -1
  46. package/lib/labs/VDateInput/VDateInput.js +1 -1
  47. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  48. package/lib/labs/VFileUpload/VFileUpload.js +1 -1
  49. package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
  50. package/lib/labs/VStepperVertical/VStepperVertical.js +4 -4
  51. package/lib/labs/VStepperVertical/VStepperVertical.js.map +1 -1
  52. package/lib/labs/VStepperVertical/VStepperVerticalItem.js +1 -1
  53. package/lib/labs/VStepperVertical/VStepperVerticalItem.js.map +1 -1
  54. package/lib/util/helpers.d.ts +1 -1
  55. package/lib/util/helpers.js.map +1 -1
  56. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.0-master.2025-07-08
2
+ * Vuetify v3.9.0-master.2025-07-10
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -1935,7 +1935,7 @@
1935
1935
  };
1936
1936
  if (!isMounted.value) return styles;
1937
1937
  const item = items.value[index.value];
1938
- if (!item) throw new Error(`[Vuetify] Could not find layout item "${id}"`);
1938
+ if (!item) consoleWarn(`[Vuetify] Could not find layout item "${id}"`);
1939
1939
  const overlap = computedOverlaps.value.get(id);
1940
1940
  if (overlap) {
1941
1941
  item[overlap.position] += overlap.amount;
@@ -9915,12 +9915,16 @@
9915
9915
  returnObject: Boolean,
9916
9916
  valueComparator: Function
9917
9917
  }, 'list-items');
9918
+ const itemTypes$1 = new Set(['item', 'divider', 'subheader']);
9918
9919
  function transformItem$3(props, item) {
9919
9920
  const title = getPropertyFromItem(item, props.itemTitle, item);
9920
9921
  const value = getPropertyFromItem(item, props.itemValue, title);
9921
9922
  const children = getPropertyFromItem(item, props.itemChildren);
9922
- const type = getPropertyFromItem(item, props.itemType, 'item');
9923
9923
  const itemProps = props.itemProps === true ? typeof item === 'object' && item != null && !Array.isArray(item) ? 'children' in item ? omit(item, ['children']) : item : undefined : getPropertyFromItem(item, props.itemProps);
9924
+ let type = getPropertyFromItem(item, props.itemType, 'item');
9925
+ if (!itemTypes$1.has(type)) {
9926
+ type = 'item';
9927
+ }
9924
9928
  const _props = {
9925
9929
  title,
9926
9930
  value,
@@ -9935,8 +9939,10 @@
9935
9939
  raw: item
9936
9940
  };
9937
9941
  }
9942
+ transformItem$3.neededProps = ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'itemType'];
9938
9943
  function transformItems$3(props, items) {
9939
- const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'itemType', 'returnObject', 'valueComparator']);
9944
+ // avoid reactive access in the loop
9945
+ const _props = pick(props, transformItem$3.neededProps);
9940
9946
  const array = [];
9941
9947
  for (const item of items) {
9942
9948
  array.push(transformItem$3(_props, item));
@@ -9978,7 +9984,7 @@
9978
9984
  const _returnObject = props.returnObject;
9979
9985
  const hasValueComparator = !!props.valueComparator;
9980
9986
  const valueComparator = props.valueComparator || deepEqual;
9981
- const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'itemType', 'returnObject', 'valueComparator']);
9987
+ const _props = pick(props, transformItem$3.neededProps);
9982
9988
  const returnValue = [];
9983
9989
  main: for (const v of value) {
9984
9990
  // When the model value is null, return an InternalItem
@@ -10037,12 +10043,16 @@
10037
10043
 
10038
10044
  // Types
10039
10045
 
10046
+ const itemTypes = new Set(['item', 'divider', 'subheader']);
10040
10047
  function transformItem$2(props, item) {
10041
- const type = getPropertyFromItem(item, props.itemType, 'item');
10042
10048
  const title = isPrimitive(item) ? item : getPropertyFromItem(item, props.itemTitle);
10043
10049
  const value = isPrimitive(item) ? item : getPropertyFromItem(item, props.itemValue, undefined);
10044
10050
  const children = getPropertyFromItem(item, props.itemChildren);
10045
10051
  const itemProps = props.itemProps === true ? omit(item, ['children']) : getPropertyFromItem(item, props.itemProps);
10052
+ let type = getPropertyFromItem(item, props.itemType, 'item');
10053
+ if (!itemTypes.has(type)) {
10054
+ type = 'item';
10055
+ }
10046
10056
  const _props = {
10047
10057
  title,
10048
10058
  value,
@@ -20586,7 +20596,7 @@
20586
20596
  "onUpdate:modelValue": v => setItemsPerPage(Number(v)),
20587
20597
  "density": "compact",
20588
20598
  "variant": "outlined",
20589
- "hide-details": true
20599
+ "hideDetails": true
20590
20600
  }, null)]), vue.createElementVNode("div", {
20591
20601
  "class": "v-data-table-footer__info"
20592
20602
  }, [vue.createElementVNode("div", null, [t(props.pageText, !itemsLength.value ? 0 : startIndex.value + 1, stopIndex.value, itemsLength.value)])]), vue.createElementVNode("div", {
@@ -20595,14 +20605,14 @@
20595
20605
  "modelValue": page.value,
20596
20606
  "onUpdate:modelValue": $event => page.value = $event,
20597
20607
  "density": "comfortable",
20598
- "first-aria-label": props.firstPageLabel,
20599
- "last-aria-label": props.lastPageLabel,
20608
+ "firstAriaLabel": props.firstPageLabel,
20609
+ "lastAriaLabel": props.lastPageLabel,
20600
20610
  "length": pageCount.value,
20601
- "next-aria-label": props.nextPageLabel,
20602
- "previous-aria-label": props.prevPageLabel,
20611
+ "nextAriaLabel": props.nextPageLabel,
20612
+ "previousAriaLabel": props.prevPageLabel,
20603
20613
  "rounded": true,
20604
- "show-first-last-page": true,
20605
- "total-visible": props.showCurrentPage ? 1 : 0,
20614
+ "showFirstLastPage": true,
20615
+ "totalVisible": props.showCurrentPage ? 1 : 0,
20606
20616
  "variant": "plain"
20607
20617
  }, paginationProps), null)])]);
20608
20618
  });
@@ -24273,7 +24283,7 @@
24273
24283
  } = _ref3;
24274
24284
  return vue.createVNode(VField, vue.mergeProps({
24275
24285
  "ref": vFieldRef,
24276
- "prepend-icon": props.prependIcon,
24286
+ "prependIcon": props.prependIcon,
24277
24287
  "onMousedown": onControlMousedown,
24278
24288
  "onClick": onControlClick,
24279
24289
  "onClick:clear": onClear,
@@ -26306,8 +26316,8 @@
26306
26316
  "value": model.value.join('')
26307
26317
  }), null), vue.createVNode(VOverlay, {
26308
26318
  "contained": true,
26309
- "content-class": "v-otp-input__loader",
26310
- "model-value": !!props.loading,
26319
+ "contentClass": "v-otp-input__loader",
26320
+ "modelValue": !!props.loading,
26311
26321
  "persistent": true
26312
26322
  }, {
26313
26323
  default: () => [slots.loader?.() ?? vue.createVNode(VProgressCircular, {
@@ -27282,7 +27292,7 @@
27282
27292
  "ref": timerRef,
27283
27293
  "color": typeof props.timer === 'string' ? props.timer : 'info',
27284
27294
  "max": props.timeout,
27285
- "model-value": countdown.time.value
27295
+ "modelValue": countdown.time.value
27286
27296
  }, null)]), hasContent && vue.createElementVNode("div", {
27287
27297
  "key": "content",
27288
27298
  "class": "v-snackbar__content",
@@ -30575,7 +30585,7 @@
30575
30585
  "class": ['v-treeview', {
30576
30586
  'v-treeview--fluid': props.fluid
30577
30587
  }, props.class],
30578
- "open-strategy": "multiple",
30588
+ "openStrategy": "multiple",
30579
30589
  "style": props.style,
30580
30590
  "opened": opened.value,
30581
30591
  "activated": activated.value,
@@ -31290,7 +31300,7 @@
31290
31300
  "modelValue": menu.value,
31291
31301
  "onUpdate:modelValue": $event => menu.value = $event,
31292
31302
  "activator": "parent",
31293
- "min-width": "0",
31303
+ "minWidth": "0",
31294
31304
  "closeOnContentClick": false,
31295
31305
  "openOnClick": false
31296
31306
  }, {
@@ -31638,7 +31648,7 @@
31638
31648
  "modelValue": menu.value,
31639
31649
  "onUpdate:modelValue": $event => menu.value = $event,
31640
31650
  "activator": "parent",
31641
- "min-width": "0",
31651
+ "minWidth": "0",
31642
31652
  "eager": isFocused.value,
31643
31653
  "location": props.location,
31644
31654
  "closeOnContentClick": false,
@@ -31962,7 +31972,7 @@
31962
31972
  })]), props.subtitle && vue.createElementVNode("div", {
31963
31973
  "class": "v-file-upload-subtitle"
31964
31974
  }, [props.subtitle])]), vue.createVNode(VOverlay, {
31965
- "model-value": isDragging.value,
31975
+ "modelValue": isDragging.value,
31966
31976
  "contained": true,
31967
31977
  "scrim": props.scrim
31968
31978
  }, null), slots.input?.({
@@ -32522,7 +32532,7 @@
32522
32532
  "readonly": !props.editable,
32523
32533
  "style": props.style,
32524
32534
  "color": "",
32525
- "hide-actions": false,
32535
+ "hideActions": false,
32526
32536
  "value": step.value
32527
32537
  }), {
32528
32538
  title: () => vue.createElementVNode(vue.Fragment, null, [vue.createVNode(VAvatar, {
@@ -32613,13 +32623,13 @@
32613
32623
  color,
32614
32624
  eager,
32615
32625
  editable,
32616
- prevText,
32617
- nextText,
32618
32626
  hideActions,
32619
32627
  static: true
32620
32628
  },
32621
- VStepperActions: {
32622
- color
32629
+ VStepperVerticalActions: {
32630
+ color,
32631
+ nextText,
32632
+ prevText
32623
32633
  }
32624
32634
  });
32625
32635
  useRender(() => {
@@ -33676,7 +33686,7 @@
33676
33686
  };
33677
33687
  });
33678
33688
  }
33679
- const version$1 = "3.9.0-master.2025-07-08";
33689
+ const version$1 = "3.9.0-master.2025-07-10";
33680
33690
  createVuetify$1.version = version$1;
33681
33691
 
33682
33692
  // Vue's inject() can only be used in setup
@@ -33974,7 +33984,7 @@
33974
33984
 
33975
33985
  /* eslint-disable local-rules/sort-imports */
33976
33986
 
33977
- const version = "3.9.0-master.2025-07-08";
33987
+ const version = "3.9.0-master.2025-07-10";
33978
33988
 
33979
33989
  /* eslint-disable local-rules/sort-imports */
33980
33990