@vuetify/nightly 3.7.12-master.2025-02-13 → 3.7.12-master.2025-02-14

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.12-master.2025-02-13
2
+ * Vuetify v3.7.12-master.2025-02-14
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -8957,7 +8957,22 @@
8957
8957
  parents: parents.value,
8958
8958
  event
8959
8959
  });
8960
- newActivated && (activated.value = newActivated);
8960
+ if (newActivated.size !== activated.value.size) {
8961
+ activated.value = newActivated;
8962
+ } else {
8963
+ for (const value of newActivated) {
8964
+ if (!activated.value.has(value)) {
8965
+ activated.value = newActivated;
8966
+ return;
8967
+ }
8968
+ }
8969
+ for (const value of activated.value) {
8970
+ if (!newActivated.has(value)) {
8971
+ activated.value = newActivated;
8972
+ return;
8973
+ }
8974
+ }
8975
+ }
8961
8976
  },
8962
8977
  children,
8963
8978
  parents,
@@ -28400,7 +28415,7 @@
28400
28415
  goTo
28401
28416
  };
28402
28417
  }
28403
- const version$1 = "3.7.12-master.2025-02-13";
28418
+ const version$1 = "3.7.12-master.2025-02-14";
28404
28419
  createVuetify$1.version = version$1;
28405
28420
 
28406
28421
  // Vue's inject() can only be used in setup
@@ -28425,7 +28440,7 @@
28425
28440
  ...options
28426
28441
  });
28427
28442
  };
28428
- const version = "3.7.12-master.2025-02-13";
28443
+ const version = "3.7.12-master.2025-02-14";
28429
28444
  createVuetify.version = version;
28430
28445
 
28431
28446
  exports.blueprints = index;