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