@vuetify/nightly 3.7.16-master.2025-03-12 → 3.7.16-master.2025-03-14

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 (39) hide show
  1. package/CHANGELOG.md +18 -3
  2. package/dist/json/attributes.json +3637 -3637
  3. package/dist/json/importMap-labs.json +30 -30
  4. package/dist/json/importMap.json +150 -150
  5. package/dist/json/web-types.json +6776 -6776
  6. package/dist/vuetify-labs.css +3586 -3586
  7. package/dist/vuetify-labs.esm.js +12 -17
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +12 -17
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +6281 -6281
  12. package/dist/vuetify.d.ts +53 -53
  13. package/dist/vuetify.esm.js +11 -16
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +11 -16
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +334 -335
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VDatePicker/VDatePickerControls.mjs +5 -5
  21. package/lib/components/VDatePicker/VDatePickerControls.mjs.map +1 -1
  22. package/lib/components/VDialog/__test__/VDialog.spec.browser.mjs +50 -0
  23. package/lib/components/VDialog/__test__/VDialog.spec.browser.mjs.map +1 -0
  24. package/lib/components/VField/VField.mjs +1 -6
  25. package/lib/components/VField/VField.mjs.map +1 -1
  26. package/lib/components/VFileInput/VFileInput.mjs +2 -2
  27. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  28. package/lib/components/VTextField/VTextField.mjs +2 -2
  29. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  30. package/lib/components/VTextarea/VTextarea.mjs +2 -2
  31. package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
  32. package/lib/entry-bundler.mjs +1 -1
  33. package/lib/framework.mjs +1 -1
  34. package/lib/index.d.mts +53 -53
  35. package/lib/labs/VDateInput/VDateInput.mjs +1 -1
  36. package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
  37. package/package.json +1 -1
  38. package/lib/components/VDialog/__test__/VDialog.spec.cy.mjs +0 -39
  39. package/lib/components/VDialog/__test__/VDialog.spec.cy.mjs.map +0 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.16-master.2025-03-12
2
+ * Vuetify v3.7.16-master.2025-03-14
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -11825,11 +11825,6 @@ const VField = genericComponent()({
11825
11825
  };
11826
11826
  }
11827
11827
  });
11828
- // TODO: this is kinda slow, might be better to implicitly inherit props instead
11829
- function filterFieldProps(attrs) {
11830
- const keys = Object.keys(VField.props).filter(k => !isOn(k) && k !== 'class' && k !== 'style');
11831
- return pick(attrs, keys);
11832
- }
11833
11828
 
11834
11829
  // Types
11835
11830
 
@@ -11937,7 +11932,7 @@ const VTextField = genericComponent()({
11937
11932
  modelValue: _,
11938
11933
  ...inputProps
11939
11934
  } = VInput.filterProps(props);
11940
- const fieldProps = filterFieldProps(props);
11935
+ const fieldProps = VField.filterProps(props);
11941
11936
  return createVNode(VInput, mergeProps({
11942
11937
  "ref": vInputRef,
11943
11938
  "modelValue": model.value,
@@ -21551,30 +21546,30 @@ const VDatePickerControls = genericComponent()({
21551
21546
  "class": ['v-date-picker-controls']
21552
21547
  }, [createVNode(VBtn, {
21553
21548
  "class": "v-date-picker-controls__month-btn",
21549
+ "data-testid": "month-btn",
21554
21550
  "disabled": disableMonth.value,
21555
21551
  "text": props.text,
21556
21552
  "variant": "text",
21557
21553
  "rounded": true,
21558
21554
  "onClick": onClickMonth
21559
21555
  }, null), createVNode(VBtn, {
21560
- "key": "mode-btn",
21561
21556
  "class": "v-date-picker-controls__mode-btn",
21557
+ "data-testid": "year-btn",
21562
21558
  "disabled": disableYear.value,
21563
21559
  "density": "comfortable",
21564
21560
  "icon": props.modeIcon,
21565
21561
  "variant": "text",
21566
21562
  "onClick": onClickYear
21567
- }, null), createVNode(VSpacer, {
21568
- "key": "mode-spacer"
21569
- }, null), createVNode("div", {
21570
- "key": "month-buttons",
21563
+ }, null), createVNode(VSpacer, null, null), createVNode("div", {
21571
21564
  "class": "v-date-picker-controls__month"
21572
21565
  }, [createVNode(VBtn, {
21566
+ "data-testid": "prev-month",
21573
21567
  "disabled": disablePrev.value,
21574
21568
  "icon": props.prevIcon,
21575
21569
  "variant": "text",
21576
21570
  "onClick": onClickPrev
21577
21571
  }, null), createVNode(VBtn, {
21572
+ "data-testid": "next-month",
21578
21573
  "disabled": disableNext.value,
21579
21574
  "icon": props.nextIcon,
21580
21575
  "variant": "text",
@@ -23107,7 +23102,7 @@ const VFileInput = genericComponent()({
23107
23102
  modelValue: _,
23108
23103
  ...inputProps
23109
23104
  } = VInput.filterProps(props);
23110
- const fieldProps = filterFieldProps(props);
23105
+ const fieldProps = VField.filterProps(props);
23111
23106
  return createVNode(VInput, mergeProps({
23112
23107
  "ref": vInputRef,
23113
23108
  "modelValue": props.multiple ? model.value : model.value[0],
@@ -27242,7 +27237,7 @@ const VTextarea = genericComponent()({
27242
27237
  modelValue: _,
27243
27238
  ...inputProps
27244
27239
  } = VInput.filterProps(props);
27245
- const fieldProps = filterFieldProps(props);
27240
+ const fieldProps = VField.filterProps(props);
27246
27241
  return createVNode(VInput, mergeProps({
27247
27242
  "ref": vInputRef,
27248
27243
  "modelValue": model.value,
@@ -28293,7 +28288,7 @@ const VDateInput = genericComponent()({
28293
28288
  return;
28294
28289
  }
28295
28290
  const target = e.target;
28296
- model.value = target.value;
28291
+ model.value = target.value === '' ? null : target.value;
28297
28292
  }
28298
28293
  function onClick(e) {
28299
28294
  e.preventDefault();
@@ -31077,7 +31072,7 @@ function createVuetify$1() {
31077
31072
  goTo
31078
31073
  };
31079
31074
  }
31080
- const version$1 = "3.7.16-master.2025-03-12";
31075
+ const version$1 = "3.7.16-master.2025-03-14";
31081
31076
  createVuetify$1.version = version$1;
31082
31077
 
31083
31078
  // Vue's inject() can only be used in setup
@@ -31330,7 +31325,7 @@ var index = /*#__PURE__*/Object.freeze({
31330
31325
 
31331
31326
  /* eslint-disable local-rules/sort-imports */
31332
31327
 
31333
- const version = "3.7.16-master.2025-03-12";
31328
+ const version = "3.7.16-master.2025-03-14";
31334
31329
 
31335
31330
  /* eslint-disable local-rules/sort-imports */
31336
31331