@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.
@@ -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
  */
@@ -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 (isObject(sourceProperty) && isObject(targetProperty)) {
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) && arrayFn) {
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-26";
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-26";
30652
+ const version = "3.7.0-master.2024-08-27";
30649
30653
 
30650
30654
  /* eslint-disable local-rules/sort-imports */
30651
30655