@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/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.0-master.2024-08-26
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 (isObject(sourceProperty) && isObject(targetProperty)) {
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) && arrayFn) {
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-26";
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-26";
28248
+ const version = "3.7.0-master.2024-08-27";
28245
28249
  createVuetify.version = version;
28246
28250
 
28247
28251
  exports.blueprints = index;