@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.
- package/dist/json/attributes.json +99 -99
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +112 -112
- package/dist/json/web-types.json +193 -193
- package/dist/vuetify-labs.css +3258 -3258
- package/dist/vuetify-labs.esm.js +34 -31
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +34 -31
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3265 -3265
- package/dist/vuetify.d.ts +39 -39
- package/dist/vuetify.esm.js +6 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +2 -1
- package/lib/components/VDataTable/composables/paginate.mjs +4 -2
- package/lib/components/VDataTable/composables/paginate.mjs.map +1 -1
- package/lib/components/VField/_variables.scss +2 -1
- package/lib/components/VOverflowBtn/VOverflowBtn.sass +6 -5
- package/lib/components/VProgressLinear/_variables.scss +2 -1
- package/lib/components/VTable/_mixins.scss +2 -2
- package/lib/components/VTabs/VTabs.sass +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +39 -39
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +29 -28
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/styles/settings/_colors.scss +257 -256
- package/lib/styles/utilities/_display.sass +2 -1
- package/lib/styles/utilities/_elevation.scss +2 -1
- package/lib/styles/utilities/_screenreaders.sass +2 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
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
|
-
|
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.
|
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.
|
28270
|
+
const version = "3.7.3-dev.2024-10-17";
|
28269
28271
|
createVuetify.version = version;
|
28270
28272
|
|
28271
28273
|
exports.blueprints = index;
|