@vuetify/nightly 3.7.10-next.2025-02-04 → 3.7.10-next.2025-02-06

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 (38) hide show
  1. package/CHANGELOG.md +6 -3
  2. package/dist/json/attributes.json +3632 -3632
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +174 -174
  5. package/dist/json/web-types.json +6553 -6517
  6. package/dist/vuetify-labs.css +3094 -3095
  7. package/dist/vuetify-labs.d.ts +295 -688
  8. package/dist/vuetify-labs.esm.js +32 -13
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +32 -13
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +4486 -4487
  13. package/dist/vuetify.d.ts +350 -743
  14. package/dist/vuetify.esm.js +32 -13
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +32 -13
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +10 -10
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/VAutocomplete.d.ts +18 -9
  22. package/lib/components/VAutocomplete/VAutocomplete.js +6 -3
  23. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  24. package/lib/components/VCombobox/VCombobox.d.ts +18 -9
  25. package/lib/components/VCombobox/VCombobox.js +6 -3
  26. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  27. package/lib/components/VForm/VForm.d.ts +111 -531
  28. package/lib/components/VForm/VForm.js +11 -1
  29. package/lib/components/VForm/VForm.js.map +1 -1
  30. package/lib/components/VSelect/VSelect.d.ts +18 -9
  31. package/lib/components/VSelect/VSelect.js +6 -3
  32. package/lib/components/VSelect/VSelect.js.map +1 -1
  33. package/lib/entry-bundler.js +1 -1
  34. package/lib/framework.d.ts +61 -61
  35. package/lib/framework.js +1 -1
  36. package/lib/styles/generic/_reset.scss +0 -1
  37. package/lib/styles/main.css +0 -1
  38. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.10-next.2025-02-04
2
+ * Vuetify v3.7.10-next.2025-02-06
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -12784,7 +12784,8 @@ const VSelect = genericComponent()({
12784
12784
  onClick: () => select(item, null)
12785
12785
  });
12786
12786
  return slots.item?.({
12787
- item,
12787
+ item: item.raw,
12788
+ internalItem: item,
12788
12789
  index,
12789
12790
  props: itemProps
12790
12791
  }) ?? createVNode(VListItem, mergeProps(itemProps, {
@@ -12832,11 +12833,13 @@ const VSelect = genericComponent()({
12832
12833
  };
12833
12834
  const hasSlot = hasChips ? !!slots.chip : !!slots.selection;
12834
12835
  const slotContent = hasSlot ? ensureValidVNode(hasChips ? slots.chip({
12835
- item,
12836
+ item: item.raw,
12837
+ internalItem: item,
12836
12838
  index,
12837
12839
  props: slotProps
12838
12840
  }) : slots.selection({
12839
- item,
12841
+ item: item.raw,
12842
+ internalItem: item,
12840
12843
  index
12841
12844
  })) : undefined;
12842
12845
  if (hasSlot && !slotContent) return undefined;
@@ -13372,7 +13375,8 @@ const VAutocomplete = genericComponent()({
13372
13375
  onClick: () => select(item, null)
13373
13376
  });
13374
13377
  return slots.item?.({
13375
- item,
13378
+ item: item.raw,
13379
+ internalItem: item,
13376
13380
  index,
13377
13381
  props: itemProps
13378
13382
  }) ?? createVNode(VListItem, mergeProps(itemProps, {
@@ -13423,11 +13427,13 @@ const VAutocomplete = genericComponent()({
13423
13427
  };
13424
13428
  const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
13425
13429
  const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
13426
- item,
13430
+ item: item.raw,
13431
+ internalItem: item,
13427
13432
  index,
13428
13433
  props: slotProps
13429
13434
  }) : slots.selection({
13430
- item,
13435
+ item: item.raw,
13436
+ internalItem: item,
13431
13437
  index
13432
13438
  })) : undefined;
13433
13439
  if (hasSlot && !slotContent) return undefined;
@@ -17284,7 +17290,8 @@ const VCombobox = genericComponent()({
17284
17290
  onClick: () => select(item, null)
17285
17291
  });
17286
17292
  return slots.item?.({
17287
- item,
17293
+ item: item.raw,
17294
+ internalItem: item,
17288
17295
  index,
17289
17296
  props: itemProps
17290
17297
  }) ?? createVNode(VListItem, mergeProps(itemProps, {
@@ -17335,11 +17342,13 @@ const VCombobox = genericComponent()({
17335
17342
  };
17336
17343
  const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
17337
17344
  const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
17338
- item,
17345
+ item: item.raw,
17346
+ internalItem: item,
17339
17347
  index,
17340
17348
  props: slotProps
17341
17349
  }) : slots.selection({
17342
- item,
17350
+ item: item.raw,
17351
+ internalItem: item,
17343
17352
  index
17344
17353
  })) : undefined;
17345
17354
  if (hasSlot && !slotContent) return undefined;
@@ -23322,7 +23331,17 @@ const VForm = genericComponent()({
23322
23331
  "novalidate": true,
23323
23332
  "onReset": onReset,
23324
23333
  "onSubmit": onSubmit
23325
- }, [slots.default?.(form)]));
23334
+ }, [slots.default?.({
23335
+ errors: form.errors.value,
23336
+ isDisabled: form.isDisabled.value,
23337
+ isReadonly: form.isReadonly.value,
23338
+ isValidating: form.isValidating.value,
23339
+ isValid: form.isValid.value,
23340
+ items: form.items.value,
23341
+ validate: form.validate,
23342
+ reset: form.reset,
23343
+ resetValidation: form.resetValidation
23344
+ })]));
23326
23345
  return forwardRefs(form, formRef);
23327
23346
  }
23328
23347
  });
@@ -30954,7 +30973,7 @@ function createVuetify$1() {
30954
30973
  };
30955
30974
  });
30956
30975
  }
30957
- const version$1 = "3.7.10-next.2025-02-04";
30976
+ const version$1 = "3.7.10-next.2025-02-06";
30958
30977
  createVuetify$1.version = version$1;
30959
30978
 
30960
30979
  // Vue's inject() can only be used in setup
@@ -31207,7 +31226,7 @@ var index = /*#__PURE__*/Object.freeze({
31207
31226
 
31208
31227
  /* eslint-disable local-rules/sort-imports */
31209
31228
 
31210
- const version = "3.7.10-next.2025-02-04";
31229
+ const version = "3.7.10-next.2025-02-06";
31211
31230
 
31212
31231
  /* eslint-disable local-rules/sort-imports */
31213
31232