@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.esm.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
|
*/
|
@@ -162,6 +162,10 @@ function convertToUnit(str) {
|
|
162
162
|
function isObject(obj) {
|
163
163
|
return obj !== null && typeof obj === 'object' && !Array.isArray(obj);
|
164
164
|
}
|
165
|
+
function isPlainObject(obj) {
|
166
|
+
let proto;
|
167
|
+
return obj !== null && typeof obj === 'object' && ((proto = Object.getPrototypeOf(obj)) === Object.prototype || proto === null);
|
168
|
+
}
|
165
169
|
function refElement(obj) {
|
166
170
|
if (obj && '$el' in obj) {
|
167
171
|
const el = obj.$el;
|
@@ -357,12 +361,12 @@ function mergeDeep() {
|
|
357
361
|
const targetProperty = target[key];
|
358
362
|
|
359
363
|
// Only continue deep merging if
|
360
|
-
// both properties are objects
|
361
|
-
if (
|
364
|
+
// both properties are plain objects
|
365
|
+
if (isPlainObject(sourceProperty) && isPlainObject(targetProperty)) {
|
362
366
|
out[key] = mergeDeep(sourceProperty, targetProperty, arrayFn);
|
363
367
|
continue;
|
364
368
|
}
|
365
|
-
if (Array.isArray(sourceProperty) && Array.isArray(targetProperty)
|
369
|
+
if (arrayFn && Array.isArray(sourceProperty) && Array.isArray(targetProperty)) {
|
366
370
|
out[key] = arrayFn(sourceProperty, targetProperty);
|
367
371
|
continue;
|
368
372
|
}
|
@@ -30388,7 +30392,7 @@ function createVuetify$1() {
|
|
30388
30392
|
goTo
|
30389
30393
|
};
|
30390
30394
|
}
|
30391
|
-
const version$1 = "3.7.0-master.2024-08-
|
30395
|
+
const version$1 = "3.7.0-master.2024-08-27";
|
30392
30396
|
createVuetify$1.version = version$1;
|
30393
30397
|
|
30394
30398
|
// Vue's inject() can only be used in setup
|
@@ -30641,7 +30645,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
30641
30645
|
|
30642
30646
|
/* eslint-disable local-rules/sort-imports */
|
30643
30647
|
|
30644
|
-
const version = "3.7.0-master.2024-08-
|
30648
|
+
const version = "3.7.0-master.2024-08-27";
|
30645
30649
|
|
30646
30650
|
/* eslint-disable local-rules/sort-imports */
|
30647
30651
|
|