@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
package/dist/vuetify.js CHANGED
@@ -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
  */
@@ -12062,11 +12062,6 @@
12062
12062
  };
12063
12063
  }
12064
12064
  });
12065
- // TODO: this is kinda slow, might be better to implicitly inherit props instead
12066
- function filterFieldProps(attrs) {
12067
- const keys = Object.keys(VField.props).filter(k => !isOn(k) && k !== 'class' && k !== 'style');
12068
- return pick(attrs, keys);
12069
- }
12070
12065
 
12071
12066
  // Types
12072
12067
 
@@ -12174,7 +12169,7 @@
12174
12169
  modelValue: _,
12175
12170
  ...inputProps
12176
12171
  } = VInput.filterProps(props);
12177
- const fieldProps = filterFieldProps(props);
12172
+ const fieldProps = VField.filterProps(props);
12178
12173
  return vue.createVNode(VInput, vue.mergeProps({
12179
12174
  "ref": vInputRef,
12180
12175
  "modelValue": model.value,
@@ -21788,30 +21783,30 @@
21788
21783
  "class": ['v-date-picker-controls']
21789
21784
  }, [vue.createVNode(VBtn, {
21790
21785
  "class": "v-date-picker-controls__month-btn",
21786
+ "data-testid": "month-btn",
21791
21787
  "disabled": disableMonth.value,
21792
21788
  "text": props.text,
21793
21789
  "variant": "text",
21794
21790
  "rounded": true,
21795
21791
  "onClick": onClickMonth
21796
21792
  }, null), vue.createVNode(VBtn, {
21797
- "key": "mode-btn",
21798
21793
  "class": "v-date-picker-controls__mode-btn",
21794
+ "data-testid": "year-btn",
21799
21795
  "disabled": disableYear.value,
21800
21796
  "density": "comfortable",
21801
21797
  "icon": props.modeIcon,
21802
21798
  "variant": "text",
21803
21799
  "onClick": onClickYear
21804
- }, null), vue.createVNode(VSpacer, {
21805
- "key": "mode-spacer"
21806
- }, null), vue.createVNode("div", {
21807
- "key": "month-buttons",
21800
+ }, null), vue.createVNode(VSpacer, null, null), vue.createVNode("div", {
21808
21801
  "class": "v-date-picker-controls__month"
21809
21802
  }, [vue.createVNode(VBtn, {
21803
+ "data-testid": "prev-month",
21810
21804
  "disabled": disablePrev.value,
21811
21805
  "icon": props.prevIcon,
21812
21806
  "variant": "text",
21813
21807
  "onClick": onClickPrev
21814
21808
  }, null), vue.createVNode(VBtn, {
21809
+ "data-testid": "next-month",
21815
21810
  "disabled": disableNext.value,
21816
21811
  "icon": props.nextIcon,
21817
21812
  "variant": "text",
@@ -23344,7 +23339,7 @@
23344
23339
  modelValue: _,
23345
23340
  ...inputProps
23346
23341
  } = VInput.filterProps(props);
23347
- const fieldProps = filterFieldProps(props);
23342
+ const fieldProps = VField.filterProps(props);
23348
23343
  return vue.createVNode(VInput, vue.mergeProps({
23349
23344
  "ref": vInputRef,
23350
23345
  "modelValue": props.multiple ? model.value : model.value[0],
@@ -27479,7 +27474,7 @@
27479
27474
  modelValue: _,
27480
27475
  ...inputProps
27481
27476
  } = VInput.filterProps(props);
27482
- const fieldProps = filterFieldProps(props);
27477
+ const fieldProps = VField.filterProps(props);
27483
27478
  return vue.createVNode(VInput, vue.mergeProps({
27484
27479
  "ref": vInputRef,
27485
27480
  "modelValue": model.value,
@@ -28453,7 +28448,7 @@
28453
28448
  goTo
28454
28449
  };
28455
28450
  }
28456
- const version$1 = "3.7.16-master.2025-03-12";
28451
+ const version$1 = "3.7.16-master.2025-03-13";
28457
28452
  createVuetify$1.version = version$1;
28458
28453
 
28459
28454
  // Vue's inject() can only be used in setup
@@ -28478,7 +28473,7 @@
28478
28473
  ...options
28479
28474
  });
28480
28475
  };
28481
- const version = "3.7.16-master.2025-03-12";
28476
+ const version = "3.7.16-master.2025-03-13";
28482
28477
  createVuetify.version = version;
28483
28478
 
28484
28479
  exports.blueprints = index;