@vuetify/nightly 3.7.12-master.2025-02-14 → 3.7.12-master.2025-02-17

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 (41) hide show
  1. package/CHANGELOG.md +12 -3
  2. package/dist/json/attributes.json +2936 -2924
  3. package/dist/json/importMap-labs.json +16 -16
  4. package/dist/json/importMap.json +174 -174
  5. package/dist/json/tags.json +3 -0
  6. package/dist/json/web-types.json +5456 -5428
  7. package/dist/vuetify-labs.css +3803 -3795
  8. package/dist/vuetify-labs.d.ts +80 -29
  9. package/dist/vuetify-labs.esm.js +109 -46
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +109 -46
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +3706 -3706
  14. package/dist/vuetify.d.ts +86 -74
  15. package/dist/vuetify.esm.js +20 -13
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +20 -13
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +6 -6
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VDataTable/composables/sort.mjs +12 -8
  23. package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
  24. package/lib/components/VDatePicker/VDatePickerControls.mjs +1 -1
  25. package/lib/components/VDatePicker/VDatePickerControls.mjs.map +1 -1
  26. package/lib/components/VDatePicker/index.d.mts +27 -15
  27. package/lib/components/index.d.mts +27 -15
  28. package/lib/composables/calendar.mjs +4 -1
  29. package/lib/composables/calendar.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 +59 -59
  33. package/lib/labs/VCalendar/index.d.mts +8 -2
  34. package/lib/labs/VDateInput/index.d.mts +8 -2
  35. package/lib/labs/VNumberInput/VNumberInput.css +10 -2
  36. package/lib/labs/VNumberInput/VNumberInput.mjs +93 -35
  37. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  38. package/lib/labs/VNumberInput/VNumberInput.sass +12 -2
  39. package/lib/labs/VNumberInput/index.d.mts +37 -10
  40. package/lib/labs/components.d.mts +53 -14
  41. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.12-master.2025-02-14
2
+ * Vuetify v3.7.12-master.2025-02-17
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -19067,15 +19067,19 @@
19067
19067
  })) ?? [];
19068
19068
  const item = newSortBy.find(x => x.key === column.key);
19069
19069
  if (!item) {
19070
- if (multiSort.value) newSortBy = [...newSortBy, {
19071
- key: column.key,
19072
- order: 'asc'
19073
- }];else newSortBy = [{
19074
- key: column.key,
19075
- order: 'asc'
19076
- }];
19070
+ if (multiSort.value) {
19071
+ newSortBy.push({
19072
+ key: column.key,
19073
+ order: 'asc'
19074
+ });
19075
+ } else {
19076
+ newSortBy = [{
19077
+ key: column.key,
19078
+ order: 'asc'
19079
+ }];
19080
+ }
19077
19081
  } else if (item.order === 'desc') {
19078
- if (mustSort.value) {
19082
+ if (mustSort.value && newSortBy.length === 1) {
19079
19083
  item.order = 'asc';
19080
19084
  } else {
19081
19085
  newSortBy = newSortBy.filter(x => x.key !== column.key);
@@ -21700,7 +21704,7 @@
21700
21704
  },
21701
21705
  disabled: {
21702
21706
  type: [Boolean, String, Array],
21703
- default: false
21707
+ default: null
21704
21708
  },
21705
21709
  nextIcon: {
21706
21710
  type: IconValue,
@@ -21882,7 +21886,10 @@
21882
21886
  // Composables
21883
21887
  const makeCalendarProps = propsFactory({
21884
21888
  allowedDates: [Array, Function],
21885
- disabled: Boolean,
21889
+ disabled: {
21890
+ type: Boolean,
21891
+ default: null
21892
+ },
21886
21893
  displayValue: null,
21887
21894
  modelValue: Array,
21888
21895
  month: [Number, String],
@@ -28415,7 +28422,7 @@
28415
28422
  goTo
28416
28423
  };
28417
28424
  }
28418
- const version$1 = "3.7.12-master.2025-02-14";
28425
+ const version$1 = "3.7.12-master.2025-02-17";
28419
28426
  createVuetify$1.version = version$1;
28420
28427
 
28421
28428
  // Vue's inject() can only be used in setup
@@ -28440,7 +28447,7 @@
28440
28447
  ...options
28441
28448
  });
28442
28449
  };
28443
- const version = "3.7.12-master.2025-02-14";
28450
+ const version = "3.7.12-master.2025-02-17";
28444
28451
  createVuetify.version = version;
28445
28452
 
28446
28453
  exports.blueprints = index;