@vuetify/nightly 3.7.2-master.2024-10-15 → 3.7.3-dev.2024-10-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 (38) hide show
  1. package/dist/json/attributes.json +99 -99
  2. package/dist/json/importMap-labs.json +12 -12
  3. package/dist/json/importMap.json +112 -112
  4. package/dist/json/web-types.json +193 -193
  5. package/dist/vuetify-labs.css +3258 -3258
  6. package/dist/vuetify-labs.esm.js +34 -31
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +34 -31
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +3265 -3265
  11. package/dist/vuetify.d.ts +39 -39
  12. package/dist/vuetify.esm.js +6 -4
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +6 -4
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +4 -4
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VBottomSheet/VBottomSheet.sass +2 -1
  20. package/lib/components/VDataTable/composables/paginate.mjs +4 -2
  21. package/lib/components/VDataTable/composables/paginate.mjs.map +1 -1
  22. package/lib/components/VField/_variables.scss +2 -1
  23. package/lib/components/VOverflowBtn/VOverflowBtn.sass +6 -5
  24. package/lib/components/VProgressLinear/_variables.scss +2 -1
  25. package/lib/components/VTable/_mixins.scss +2 -2
  26. package/lib/components/VTabs/VTabs.sass +1 -1
  27. package/lib/entry-bundler.mjs +1 -1
  28. package/lib/entry-bundler.mjs.map +1 -1
  29. package/lib/framework.mjs +1 -1
  30. package/lib/framework.mjs.map +1 -1
  31. package/lib/index.d.mts +39 -39
  32. package/lib/labs/VTreeview/VTreeviewChildren.mjs +29 -28
  33. package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
  34. package/lib/styles/settings/_colors.scss +257 -256
  35. package/lib/styles/utilities/_display.sass +2 -1
  36. package/lib/styles/utilities/_elevation.scss +2 -1
  37. package/lib/styles/utilities/_screenreaders.sass +2 -1
  38. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.2-master.2024-10-15
2
+ * Vuetify v3.7.3-dev.2024-10-17
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18627,7 +18627,9 @@
18627
18627
  if (itemsPerPage.value === -1 || itemsLength.value === 0) return 1;
18628
18628
  return Math.ceil(itemsLength.value / itemsPerPage.value);
18629
18629
  });
18630
- vue.watchEffect(() => {
18630
+
18631
+ // Don't run immediately, items may not have been loaded yet: #17966
18632
+ vue.watch([page, pageCount], () => {
18631
18633
  if (page.value > pageCount.value) {
18632
18634
  page.value = pageCount.value;
18633
18635
  }
@@ -28240,7 +28242,7 @@
28240
28242
  goTo
28241
28243
  };
28242
28244
  }
28243
- const version$1 = "3.7.2-master.2024-10-15";
28245
+ const version$1 = "3.7.3-dev.2024-10-17";
28244
28246
  createVuetify$1.version = version$1;
28245
28247
 
28246
28248
  // Vue's inject() can only be used in setup
@@ -28265,7 +28267,7 @@
28265
28267
  ...options
28266
28268
  });
28267
28269
  };
28268
- const version = "3.7.2-master.2024-10-15";
28270
+ const version = "3.7.3-dev.2024-10-17";
28269
28271
  createVuetify.version = version;
28270
28272
 
28271
28273
  exports.blueprints = index;