@vuetify/nightly 3.7.5-master.2024-12-16 → 3.7.5-master.2024-12-17

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.5-master.2024-12-16
2
+ * Vuetify v3.7.5-master.2024-12-17
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -9187,16 +9187,22 @@
9187
9187
  color: isActive.value ? color.value ?? props.baseColor : props.baseColor,
9188
9188
  variant: props.variant
9189
9189
  }));
9190
+
9191
+ // useNestedItem doesn't call register until beforeMount,
9192
+ // so this can't be an immediate watcher as we don't know parent yet
9190
9193
  vue.watch(() => link.isActive?.value, val => {
9191
- if (val && parent.value != null) {
9194
+ if (!val) return;
9195
+ handleActiveLink();
9196
+ });
9197
+ vue.onBeforeMount(() => {
9198
+ if (link.isActive?.value) handleActiveLink();
9199
+ });
9200
+ function handleActiveLink() {
9201
+ if (parent.value != null) {
9192
9202
  root.open(parent.value, true);
9193
9203
  }
9194
- if (val) {
9195
- openOnSelect(val);
9196
- }
9197
- }, {
9198
- immediate: true
9199
- });
9204
+ openOnSelect(true);
9205
+ }
9200
9206
  const {
9201
9207
  themeClasses
9202
9208
  } = provideTheme(props);
@@ -28282,7 +28288,7 @@
28282
28288
  goTo
28283
28289
  };
28284
28290
  }
28285
- const version$1 = "3.7.5-master.2024-12-16";
28291
+ const version$1 = "3.7.5-master.2024-12-17";
28286
28292
  createVuetify$1.version = version$1;
28287
28293
 
28288
28294
  // Vue's inject() can only be used in setup
@@ -28307,7 +28313,7 @@
28307
28313
  ...options
28308
28314
  });
28309
28315
  };
28310
- const version = "3.7.5-master.2024-12-16";
28316
+ const version = "3.7.5-master.2024-12-17";
28311
28317
  createVuetify.version = version;
28312
28318
 
28313
28319
  exports.blueprints = index;