@vuetify/nightly 3.7.0-master.2024-08-26 → 3.7.0-master.2024-08-27
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/importMap-labs.json +16 -16
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +7 -7
- package/dist/vuetify-labs.css +2497 -2497
- package/dist/vuetify-labs.esm.js +10 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -6
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1639 -1639
- package/dist/vuetify.d.ts +55 -55
- package/dist/vuetify.esm.js +10 -6
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -6
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1058 -1057
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAvatar/VAvatar.css +1 -1
- package/lib/components/VAvatar/_variables.scss +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +55 -55
- package/lib/util/helpers.mjs +7 -3
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.0-master.2024-08-
|
2
|
+
* Vuetify v3.7.0-master.2024-08-27
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -95,6 +95,10 @@
|
|
95
95
|
function isObject(obj) {
|
96
96
|
return obj !== null && typeof obj === 'object' && !Array.isArray(obj);
|
97
97
|
}
|
98
|
+
function isPlainObject(obj) {
|
99
|
+
let proto;
|
100
|
+
return obj !== null && typeof obj === 'object' && ((proto = Object.getPrototypeOf(obj)) === Object.prototype || proto === null);
|
101
|
+
}
|
98
102
|
function refElement(obj) {
|
99
103
|
if (obj && '$el' in obj) {
|
100
104
|
const el = obj.$el;
|
@@ -284,12 +288,12 @@
|
|
284
288
|
const targetProperty = target[key];
|
285
289
|
|
286
290
|
// Only continue deep merging if
|
287
|
-
// both properties are objects
|
288
|
-
if (
|
291
|
+
// both properties are plain objects
|
292
|
+
if (isPlainObject(sourceProperty) && isPlainObject(targetProperty)) {
|
289
293
|
out[key] = mergeDeep(sourceProperty, targetProperty, arrayFn);
|
290
294
|
continue;
|
291
295
|
}
|
292
|
-
if (Array.isArray(sourceProperty) && Array.isArray(targetProperty)
|
296
|
+
if (arrayFn && Array.isArray(sourceProperty) && Array.isArray(targetProperty)) {
|
293
297
|
out[key] = arrayFn(sourceProperty, targetProperty);
|
294
298
|
continue;
|
295
299
|
}
|
@@ -28216,7 +28220,7 @@
|
|
28216
28220
|
goTo
|
28217
28221
|
};
|
28218
28222
|
}
|
28219
|
-
const version$1 = "3.7.0-master.2024-08-
|
28223
|
+
const version$1 = "3.7.0-master.2024-08-27";
|
28220
28224
|
createVuetify$1.version = version$1;
|
28221
28225
|
|
28222
28226
|
// Vue's inject() can only be used in setup
|
@@ -28241,7 +28245,7 @@
|
|
28241
28245
|
...options
|
28242
28246
|
});
|
28243
28247
|
};
|
28244
|
-
const version = "3.7.0-master.2024-08-
|
28248
|
+
const version = "3.7.0-master.2024-08-27";
|
28245
28249
|
createVuetify.version = version;
|
28246
28250
|
|
28247
28251
|
exports.blueprints = index;
|