@vuetify/nightly 3.7.7-master.2025-01-25 → 3.7.8-master.2025-01-28

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 +3 -46
  2. package/dist/json/attributes.json +3233 -3233
  3. package/dist/json/importMap-labs.json +14 -14
  4. package/dist/json/importMap.json +156 -156
  5. package/dist/json/web-types.json +5933 -5933
  6. package/dist/vuetify-labs.css +4338 -4326
  7. package/dist/vuetify-labs.d.ts +0 -17
  8. package/dist/vuetify-labs.esm.js +16 -10
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +16 -10
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +3262 -3250
  13. package/dist/vuetify.d.ts +54 -71
  14. package/dist/vuetify.esm.js +16 -10
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +16 -10
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +6 -9
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VDataIterator/index.d.mts +0 -1
  22. package/lib/components/VDataTable/index.d.mts +0 -17
  23. package/lib/components/VDataTable/types.mjs.map +1 -1
  24. package/lib/components/VFab/VFab.css +5 -1
  25. package/lib/components/VFab/VFab.mjs +1 -2
  26. package/lib/components/VFab/VFab.mjs.map +1 -1
  27. package/lib/components/VFab/VFab.sass +5 -1
  28. package/lib/components/VField/VField.css +8 -0
  29. package/lib/components/VField/VField.sass +10 -2
  30. package/lib/components/VPagination/VPagination.mjs +1 -1
  31. package/lib/components/VPagination/VPagination.mjs.map +1 -1
  32. package/lib/components/index.d.mts +0 -17
  33. package/lib/composables/display.mjs +11 -4
  34. package/lib/composables/display.mjs.map +1 -1
  35. package/lib/entry-bundler.mjs +1 -1
  36. package/lib/framework.mjs +1 -1
  37. package/lib/index.d.mts +54 -54
  38. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.7-master.2025-01-25
2
+ * Vuetify v3.7.8-master.2025-01-28
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -7210,10 +7210,17 @@
7210
7210
  const display = vue.inject(DisplaySymbol);
7211
7211
  if (!display) throw new Error('Could not find Vuetify display injection');
7212
7212
  const mobile = vue.computed(() => {
7213
- if (props.mobile != null) return props.mobile;
7214
- if (!props.mobileBreakpoint) return display.mobile.value;
7215
- const breakpointValue = typeof props.mobileBreakpoint === 'number' ? props.mobileBreakpoint : display.thresholds.value[props.mobileBreakpoint];
7216
- return display.width.value < breakpointValue;
7213
+ if (props.mobile) {
7214
+ return true;
7215
+ } else if (typeof props.mobileBreakpoint === 'number') {
7216
+ return display.width.value < props.mobileBreakpoint;
7217
+ } else if (props.mobileBreakpoint) {
7218
+ return display.width.value < display.thresholds.value[props.mobileBreakpoint];
7219
+ } else if (props.mobile === null) {
7220
+ return display.mobile.value;
7221
+ } else {
7222
+ return false;
7223
+ }
7217
7224
  });
7218
7225
  const displayClasses = vue.computed(() => {
7219
7226
  if (!name) return {};
@@ -19240,7 +19247,7 @@
19240
19247
  const rangeStart = length.value - rangeLength + start.value;
19241
19248
  return [start.value, props.ellipsis, ...createRange(rangeLength, rangeStart)];
19242
19249
  } else {
19243
- const rangeLength = Math.max(1, totalVisible.value - 3);
19250
+ const rangeLength = Math.max(1, totalVisible.value - 2);
19244
19251
  const rangeStart = rangeLength === 1 ? page.value : page.value - Math.ceil(rangeLength / 2) + start.value;
19245
19252
  return [start.value, props.ellipsis, ...createRange(rangeLength, rangeStart), props.ellipsis, length.value];
19246
19253
  }
@@ -22838,8 +22845,7 @@
22838
22845
  "style": [props.app ? {
22839
22846
  ...layoutItemStyles.value
22840
22847
  } : {
22841
- height: 'inherit',
22842
- width: undefined
22848
+ height: props.absolute ? '100%' : 'inherit'
22843
22849
  }, props.style]
22844
22850
  }, [vue.createVNode("div", {
22845
22851
  "class": "v-fab__container"
@@ -30798,7 +30804,7 @@
30798
30804
  goTo
30799
30805
  };
30800
30806
  }
30801
- const version$1 = "3.7.7-master.2025-01-25";
30807
+ const version$1 = "3.7.8-master.2025-01-28";
30802
30808
  createVuetify$1.version = version$1;
30803
30809
 
30804
30810
  // Vue's inject() can only be used in setup
@@ -31051,7 +31057,7 @@
31051
31057
 
31052
31058
  /* eslint-disable local-rules/sort-imports */
31053
31059
 
31054
- const version = "3.7.7-master.2025-01-25";
31060
+ const version = "3.7.8-master.2025-01-28";
31055
31061
 
31056
31062
  /* eslint-disable local-rules/sort-imports */
31057
31063