@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-labs.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
|
*/
|
@@ -166,6 +166,10 @@
|
|
166
166
|
function isObject(obj) {
|
167
167
|
return obj !== null && typeof obj === 'object' && !Array.isArray(obj);
|
168
168
|
}
|
169
|
+
function isPlainObject(obj) {
|
170
|
+
let proto;
|
171
|
+
return obj !== null && typeof obj === 'object' && ((proto = Object.getPrototypeOf(obj)) === Object.prototype || proto === null);
|
172
|
+
}
|
169
173
|
function refElement(obj) {
|
170
174
|
if (obj && '$el' in obj) {
|
171
175
|
const el = obj.$el;
|
@@ -361,12 +365,12 @@
|
|
361
365
|
const targetProperty = target[key];
|
362
366
|
|
363
367
|
// Only continue deep merging if
|
364
|
-
// both properties are objects
|
365
|
-
if (
|
368
|
+
// both properties are plain objects
|
369
|
+
if (isPlainObject(sourceProperty) && isPlainObject(targetProperty)) {
|
366
370
|
out[key] = mergeDeep(sourceProperty, targetProperty, arrayFn);
|
367
371
|
continue;
|
368
372
|
}
|
369
|
-
if (Array.isArray(sourceProperty) && Array.isArray(targetProperty)
|
373
|
+
if (arrayFn && Array.isArray(sourceProperty) && Array.isArray(targetProperty)) {
|
370
374
|
out[key] = arrayFn(sourceProperty, targetProperty);
|
371
375
|
continue;
|
372
376
|
}
|
@@ -30392,7 +30396,7 @@
|
|
30392
30396
|
goTo
|
30393
30397
|
};
|
30394
30398
|
}
|
30395
|
-
const version$1 = "3.7.0-master.2024-08-
|
30399
|
+
const version$1 = "3.7.0-master.2024-08-27";
|
30396
30400
|
createVuetify$1.version = version$1;
|
30397
30401
|
|
30398
30402
|
// Vue's inject() can only be used in setup
|
@@ -30645,7 +30649,7 @@
|
|
30645
30649
|
|
30646
30650
|
/* eslint-disable local-rules/sort-imports */
|
30647
30651
|
|
30648
|
-
const version = "3.7.0-master.2024-08-
|
30652
|
+
const version = "3.7.0-master.2024-08-27";
|
30649
30653
|
|
30650
30654
|
/* eslint-disable local-rules/sort-imports */
|
30651
30655
|
|