@vuetify/nightly 3.7.5-master.2024-12-12 → 3.7.5-master.2024-12-16

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 (36) hide show
  1. package/dist/json/attributes.json +2816 -2816
  2. package/dist/json/importMap-labs.json +32 -32
  3. package/dist/json/importMap.json +184 -184
  4. package/dist/json/web-types.json +5212 -5212
  5. package/dist/vuetify-labs.css +2838 -2838
  6. package/dist/vuetify-labs.esm.js +22 -13
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +22 -13
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +2064 -2064
  11. package/dist/vuetify.d.ts +69 -69
  12. package/dist/vuetify.esm.js +15 -9
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +15 -9
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +33 -33
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VAutocomplete/VAutocomplete.mjs +2 -1
  20. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  21. package/lib/components/VCombobox/VCombobox.mjs +2 -1
  22. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  23. package/lib/components/VSelect/VSelect.mjs +2 -1
  24. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  25. package/lib/components/VVirtualScroll/VVirtualScroll.mjs +1 -1
  26. package/lib/components/VVirtualScroll/VVirtualScroll.mjs.map +1 -1
  27. package/lib/composables/nested/nested.mjs +4 -2
  28. package/lib/composables/nested/nested.mjs.map +1 -1
  29. package/lib/composables/virtual.mjs +3 -2
  30. package/lib/composables/virtual.mjs.map +1 -1
  31. package/lib/entry-bundler.mjs +1 -1
  32. package/lib/framework.mjs +1 -1
  33. package/lib/index.d.mts +69 -69
  34. package/lib/labs/VNumberInput/VNumberInput.mjs +7 -4
  35. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  36. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.5-master.2024-12-12
2
+ * Vuetify v3.7.5-master.2024-12-16
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -8951,7 +8951,9 @@
8951
8951
  isLeaf: vue.computed(() => !parent.root.children.value.get(computedId.value)),
8952
8952
  isGroupActivator: parent.isGroupActivator
8953
8953
  };
8954
- !parent.isGroupActivator && parent.root.register(computedId.value, parent.id.value, isGroup);
8954
+ vue.onBeforeMount(() => {
8955
+ !parent.isGroupActivator && parent.root.register(computedId.value, parent.id.value, isGroup);
8956
+ });
8955
8957
  vue.onBeforeUnmount(() => {
8956
8958
  !parent.isGroupActivator && parent.root.unregister(computedId.value);
8957
8959
  });
@@ -12378,7 +12380,8 @@
12378
12380
  const computedItems = vue.computed(() => {
12379
12381
  return items.value.slice(first.value, last.value).map((item, index) => ({
12380
12382
  raw: item,
12381
- index: index + first.value
12383
+ index: index + first.value,
12384
+ key: isObject(item) && 'value' in item ? item.value : index + first.value
12382
12385
  }));
12383
12386
  });
12384
12387
  vue.watch(items, () => {
@@ -12493,7 +12496,7 @@
12493
12496
  });
12494
12497
  useRender(() => {
12495
12498
  const children = computedItems.value.map(item => vue.createVNode(VVirtualScrollItem, {
12496
- "key": item.index,
12499
+ "key": item.key,
12497
12500
  "renderless": props.renderless,
12498
12501
  "onUpdate:height": height => handleItemResize(item.index, height)
12499
12502
  }, {
@@ -12892,6 +12895,7 @@
12892
12895
  "color": props.itemColor ?? props.color
12893
12896
  }, listEvents, props.listProps), {
12894
12897
  default: () => [slots['prepend-item']?.(), !displayItems.value.length && !props.hideNoData && (slots['no-data']?.() ?? vue.createVNode(VListItem, {
12898
+ "key": "no-data",
12895
12899
  "title": t(props.noDataText)
12896
12900
  }, null)), vue.createVNode(VVirtualScroll, {
12897
12901
  "ref": vVirtualScrollRef,
@@ -12906,7 +12910,7 @@
12906
12910
  } = _ref2;
12907
12911
  const itemProps = vue.mergeProps(item.props, {
12908
12912
  ref: itemRef,
12909
- key: index,
12913
+ key: item.value,
12910
12914
  onClick: () => select(item, null)
12911
12915
  });
12912
12916
  return slots.item?.({
@@ -13466,6 +13470,7 @@
13466
13470
  "color": props.itemColor ?? props.color
13467
13471
  }, listEvents, props.listProps), {
13468
13472
  default: () => [slots['prepend-item']?.(), !displayItems.value.length && !props.hideNoData && (slots['no-data']?.() ?? vue.createVNode(VListItem, {
13473
+ "key": "no-data",
13469
13474
  "title": t(props.noDataText)
13470
13475
  }, null)), vue.createVNode(VVirtualScroll, {
13471
13476
  "ref": vVirtualScrollRef,
@@ -13480,7 +13485,7 @@
13480
13485
  } = _ref4;
13481
13486
  const itemProps = vue.mergeProps(item.props, {
13482
13487
  ref: itemRef,
13483
- key: index,
13488
+ key: item.value,
13484
13489
  active: highlightFirst.value && index === 0 ? true : undefined,
13485
13490
  onClick: () => select(item, null)
13486
13491
  });
@@ -17345,6 +17350,7 @@
17345
17350
  "color": props.itemColor ?? props.color
17346
17351
  }, listEvents, props.listProps), {
17347
17352
  default: () => [slots['prepend-item']?.(), !displayItems.value.length && !props.hideNoData && (slots['no-data']?.() ?? vue.createVNode(VListItem, {
17353
+ "key": "no-data",
17348
17354
  "title": t(props.noDataText)
17349
17355
  }, null)), vue.createVNode(VVirtualScroll, {
17350
17356
  "ref": vVirtualScrollRef,
@@ -17359,7 +17365,7 @@
17359
17365
  } = _ref4;
17360
17366
  const itemProps = vue.mergeProps(item.props, {
17361
17367
  ref: itemRef,
17362
- key: index,
17368
+ key: item.value,
17363
17369
  active: highlightFirst.value && index === 0 ? true : undefined,
17364
17370
  onClick: () => select(item, null)
17365
17371
  });
@@ -28276,7 +28282,7 @@
28276
28282
  goTo
28277
28283
  };
28278
28284
  }
28279
- const version$1 = "3.7.5-master.2024-12-12";
28285
+ const version$1 = "3.7.5-master.2024-12-16";
28280
28286
  createVuetify$1.version = version$1;
28281
28287
 
28282
28288
  // Vue's inject() can only be used in setup
@@ -28301,7 +28307,7 @@
28301
28307
  ...options
28302
28308
  });
28303
28309
  };
28304
- const version = "3.7.5-master.2024-12-12";
28310
+ const version = "3.7.5-master.2024-12-16";
28305
28311
  createVuetify.version = version;
28306
28312
 
28307
28313
  exports.blueprints = index;