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

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 (35) hide show
  1. package/CHANGELOG.md +15 -3
  2. package/dist/json/attributes.json +1889 -1889
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +172 -172
  5. package/dist/json/web-types.json +3956 -3956
  6. package/dist/vuetify-labs.css +3606 -3606
  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 +5481 -5481
  12. package/dist/vuetify.d.ts +65 -65
  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/VField/VField.mjs +1 -6
  23. package/lib/components/VField/VField.mjs.map +1 -1
  24. package/lib/components/VFileInput/VFileInput.mjs +2 -2
  25. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  26. package/lib/components/VTextField/VTextField.mjs +2 -2
  27. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  28. package/lib/components/VTextarea/VTextarea.mjs +2 -2
  29. package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
  30. package/lib/entry-bundler.mjs +1 -1
  31. package/lib/framework.mjs +1 -1
  32. package/lib/index.d.mts +65 -65
  33. package/lib/labs/VDateInput/VDateInput.mjs +1 -1
  34. package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
  35. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.16-master.2025-03-12
2
+ * Vuetify v3.7.16-master.2025-03-13
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -11829,11 +11829,6 @@
11829
11829
  };
11830
11830
  }
11831
11831
  });
11832
- // TODO: this is kinda slow, might be better to implicitly inherit props instead
11833
- function filterFieldProps(attrs) {
11834
- const keys = Object.keys(VField.props).filter(k => !isOn(k) && k !== 'class' && k !== 'style');
11835
- return pick(attrs, keys);
11836
- }
11837
11832
 
11838
11833
  // Types
11839
11834
 
@@ -11941,7 +11936,7 @@
11941
11936
  modelValue: _,
11942
11937
  ...inputProps
11943
11938
  } = VInput.filterProps(props);
11944
- const fieldProps = filterFieldProps(props);
11939
+ const fieldProps = VField.filterProps(props);
11945
11940
  return vue.createVNode(VInput, vue.mergeProps({
11946
11941
  "ref": vInputRef,
11947
11942
  "modelValue": model.value,
@@ -21555,30 +21550,30 @@
21555
21550
  "class": ['v-date-picker-controls']
21556
21551
  }, [vue.createVNode(VBtn, {
21557
21552
  "class": "v-date-picker-controls__month-btn",
21553
+ "data-testid": "month-btn",
21558
21554
  "disabled": disableMonth.value,
21559
21555
  "text": props.text,
21560
21556
  "variant": "text",
21561
21557
  "rounded": true,
21562
21558
  "onClick": onClickMonth
21563
21559
  }, null), vue.createVNode(VBtn, {
21564
- "key": "mode-btn",
21565
21560
  "class": "v-date-picker-controls__mode-btn",
21561
+ "data-testid": "year-btn",
21566
21562
  "disabled": disableYear.value,
21567
21563
  "density": "comfortable",
21568
21564
  "icon": props.modeIcon,
21569
21565
  "variant": "text",
21570
21566
  "onClick": onClickYear
21571
- }, null), vue.createVNode(VSpacer, {
21572
- "key": "mode-spacer"
21573
- }, null), vue.createVNode("div", {
21574
- "key": "month-buttons",
21567
+ }, null), vue.createVNode(VSpacer, null, null), vue.createVNode("div", {
21575
21568
  "class": "v-date-picker-controls__month"
21576
21569
  }, [vue.createVNode(VBtn, {
21570
+ "data-testid": "prev-month",
21577
21571
  "disabled": disablePrev.value,
21578
21572
  "icon": props.prevIcon,
21579
21573
  "variant": "text",
21580
21574
  "onClick": onClickPrev
21581
21575
  }, null), vue.createVNode(VBtn, {
21576
+ "data-testid": "next-month",
21582
21577
  "disabled": disableNext.value,
21583
21578
  "icon": props.nextIcon,
21584
21579
  "variant": "text",
@@ -23111,7 +23106,7 @@
23111
23106
  modelValue: _,
23112
23107
  ...inputProps
23113
23108
  } = VInput.filterProps(props);
23114
- const fieldProps = filterFieldProps(props);
23109
+ const fieldProps = VField.filterProps(props);
23115
23110
  return vue.createVNode(VInput, vue.mergeProps({
23116
23111
  "ref": vInputRef,
23117
23112
  "modelValue": props.multiple ? model.value : model.value[0],
@@ -27246,7 +27241,7 @@
27246
27241
  modelValue: _,
27247
27242
  ...inputProps
27248
27243
  } = VInput.filterProps(props);
27249
- const fieldProps = filterFieldProps(props);
27244
+ const fieldProps = VField.filterProps(props);
27250
27245
  return vue.createVNode(VInput, vue.mergeProps({
27251
27246
  "ref": vInputRef,
27252
27247
  "modelValue": model.value,
@@ -28297,7 +28292,7 @@
28297
28292
  return;
28298
28293
  }
28299
28294
  const target = e.target;
28300
- model.value = target.value;
28295
+ model.value = target.value === '' ? null : target.value;
28301
28296
  }
28302
28297
  function onClick(e) {
28303
28298
  e.preventDefault();
@@ -31081,7 +31076,7 @@
31081
31076
  goTo
31082
31077
  };
31083
31078
  }
31084
- const version$1 = "3.7.16-master.2025-03-12";
31079
+ const version$1 = "3.7.16-master.2025-03-13";
31085
31080
  createVuetify$1.version = version$1;
31086
31081
 
31087
31082
  // Vue's inject() can only be used in setup
@@ -31334,7 +31329,7 @@
31334
31329
 
31335
31330
  /* eslint-disable local-rules/sort-imports */
31336
31331
 
31337
- const version = "3.7.16-master.2025-03-12";
31332
+ const version = "3.7.16-master.2025-03-13";
31338
31333
 
31339
31334
  /* eslint-disable local-rules/sort-imports */
31340
31335