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

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 +1607 -1607
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +168 -168
  5. package/dist/json/web-types.json +3006 -2970
  6. package/dist/vuetify-labs.css +3416 -3417
  7. package/dist/vuetify-labs.d.ts +258 -651
  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 +3986 -3987
  13. package/dist/vuetify.d.ts +347 -740
  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 +58 -58
  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-05
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -12788,7 +12788,8 @@
12788
12788
  onClick: () => select(item, null)
12789
12789
  });
12790
12790
  return slots.item?.({
12791
- item,
12791
+ item: item.raw,
12792
+ internalItem: item,
12792
12793
  index,
12793
12794
  props: itemProps
12794
12795
  }) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
@@ -12836,11 +12837,13 @@
12836
12837
  };
12837
12838
  const hasSlot = hasChips ? !!slots.chip : !!slots.selection;
12838
12839
  const slotContent = hasSlot ? ensureValidVNode(hasChips ? slots.chip({
12839
- item,
12840
+ item: item.raw,
12841
+ internalItem: item,
12840
12842
  index,
12841
12843
  props: slotProps
12842
12844
  }) : slots.selection({
12843
- item,
12845
+ item: item.raw,
12846
+ internalItem: item,
12844
12847
  index
12845
12848
  })) : undefined;
12846
12849
  if (hasSlot && !slotContent) return undefined;
@@ -13376,7 +13379,8 @@
13376
13379
  onClick: () => select(item, null)
13377
13380
  });
13378
13381
  return slots.item?.({
13379
- item,
13382
+ item: item.raw,
13383
+ internalItem: item,
13380
13384
  index,
13381
13385
  props: itemProps
13382
13386
  }) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
@@ -13427,11 +13431,13 @@
13427
13431
  };
13428
13432
  const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
13429
13433
  const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
13430
- item,
13434
+ item: item.raw,
13435
+ internalItem: item,
13431
13436
  index,
13432
13437
  props: slotProps
13433
13438
  }) : slots.selection({
13434
- item,
13439
+ item: item.raw,
13440
+ internalItem: item,
13435
13441
  index
13436
13442
  })) : undefined;
13437
13443
  if (hasSlot && !slotContent) return undefined;
@@ -17288,7 +17294,8 @@
17288
17294
  onClick: () => select(item, null)
17289
17295
  });
17290
17296
  return slots.item?.({
17291
- item,
17297
+ item: item.raw,
17298
+ internalItem: item,
17292
17299
  index,
17293
17300
  props: itemProps
17294
17301
  }) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
@@ -17339,11 +17346,13 @@
17339
17346
  };
17340
17347
  const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
17341
17348
  const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
17342
- item,
17349
+ item: item.raw,
17350
+ internalItem: item,
17343
17351
  index,
17344
17352
  props: slotProps
17345
17353
  }) : slots.selection({
17346
- item,
17354
+ item: item.raw,
17355
+ internalItem: item,
17347
17356
  index
17348
17357
  })) : undefined;
17349
17358
  if (hasSlot && !slotContent) return undefined;
@@ -23326,7 +23335,17 @@
23326
23335
  "novalidate": true,
23327
23336
  "onReset": onReset,
23328
23337
  "onSubmit": onSubmit
23329
- }, [slots.default?.(form)]));
23338
+ }, [slots.default?.({
23339
+ errors: form.errors.value,
23340
+ isDisabled: form.isDisabled.value,
23341
+ isReadonly: form.isReadonly.value,
23342
+ isValidating: form.isValidating.value,
23343
+ isValid: form.isValid.value,
23344
+ items: form.items.value,
23345
+ validate: form.validate,
23346
+ reset: form.reset,
23347
+ resetValidation: form.resetValidation
23348
+ })]));
23330
23349
  return forwardRefs(form, formRef);
23331
23350
  }
23332
23351
  });
@@ -30958,7 +30977,7 @@
30958
30977
  };
30959
30978
  });
30960
30979
  }
30961
- const version$1 = "3.7.10-next.2025-02-04";
30980
+ const version$1 = "3.7.10-next.2025-02-05";
30962
30981
  createVuetify$1.version = version$1;
30963
30982
 
30964
30983
  // Vue's inject() can only be used in setup
@@ -31211,7 +31230,7 @@
31211
31230
 
31212
31231
  /* eslint-disable local-rules/sort-imports */
31213
31232
 
31214
- const version = "3.7.10-next.2025-02-04";
31233
+ const version = "3.7.10-next.2025-02-05";
31215
31234
 
31216
31235
  /* eslint-disable local-rules/sort-imports */
31217
31236