@vuetify/nightly 3.1.5-master-20230212.0 → 3.2.0-dev-20230214.0
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/CHANGELOG.md +13 -4
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +334 -324
- package/dist/vuetify-labs.d.ts +18 -0
- package/dist/vuetify-labs.esm.js +52 -16
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +52 -16
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +47 -46
- package/dist/vuetify.esm.js +5 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +57 -57
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VList/VListItem.css +2 -2
- package/lib/components/VList/VListItem.sass +0 -2
- package/lib/components/VOverlay/scrollStrategies.mjs +1 -1
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VToolbar/VToolbar.css +1 -0
- package/lib/components/VToolbar/VToolbar.sass +1 -0
- 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/labs/VDataTable/VDataTableFooter.css +9 -0
- package/lib/labs/VDataTable/VDataTableFooter.mjs +50 -12
- package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableFooter.sass +7 -0
- package/lib/labs/VDataTable/index.d.ts +18 -0
- package/lib/labs/components.d.ts +18 -0
- package/lib/util/defineComponent.mjs +1 -1
- package/lib/util/defineComponent.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.
|
|
2
|
+
* Vuetify v3.2.0-dev-20230214.0
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1025,7 +1025,7 @@
|
|
|
1025
1025
|
const componentDefaults = vue.computed(() => defaults.value[props._as ?? options.name]);
|
|
1026
1026
|
const _props = new Proxy(props, {
|
|
1027
1027
|
get(target, prop) {
|
|
1028
|
-
if (!propIsDefined(vm.vnode, prop)) {
|
|
1028
|
+
if (typeof prop === 'string' && !propIsDefined(vm.vnode, prop)) {
|
|
1029
1029
|
return componentDefaults.value?.[prop] ?? defaults.value.global?.[prop] ?? target[prop];
|
|
1030
1030
|
}
|
|
1031
1031
|
return Reflect.get(target, prop);
|
|
@@ -9019,7 +9019,7 @@
|
|
|
9019
9019
|
slow = time / (1000 / 60) > 2;
|
|
9020
9020
|
});
|
|
9021
9021
|
}
|
|
9022
|
-
ric = requestIdleCallback(() => {
|
|
9022
|
+
ric = (typeof requestIdleCallback === 'undefined' ? cb => cb() : requestIdleCallback)(() => {
|
|
9023
9023
|
scope.run(() => {
|
|
9024
9024
|
bindScroll(data.activatorEl.value ?? data.contentEl.value, e => {
|
|
9025
9025
|
if (slow) {
|
|
@@ -18143,7 +18143,7 @@
|
|
|
18143
18143
|
locale
|
|
18144
18144
|
};
|
|
18145
18145
|
}
|
|
18146
|
-
const version$1 = "3.
|
|
18146
|
+
const version$1 = "3.2.0-dev-20230214.0";
|
|
18147
18147
|
createVuetify$1.version = version$1;
|
|
18148
18148
|
|
|
18149
18149
|
// Vue's inject() can only be used in setup
|
|
@@ -18163,7 +18163,7 @@
|
|
|
18163
18163
|
...options
|
|
18164
18164
|
});
|
|
18165
18165
|
};
|
|
18166
|
-
const version = "3.
|
|
18166
|
+
const version = "3.2.0-dev-20230214.0";
|
|
18167
18167
|
createVuetify.version = version;
|
|
18168
18168
|
|
|
18169
18169
|
exports.components = components;
|