@vuetify/nightly 4.0.0-dev-20230206.0 → 4.0.0-master-20230206.0

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 v4.0.0-dev-20230206.0
2
+ * Vuetify v4.0.0-master-20230206.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -7463,7 +7463,8 @@
7463
7463
  };
7464
7464
  const useNestedItem = (id, isGroup) => {
7465
7465
  const parent = vue.inject(VNestedSymbol, emptyNested);
7466
- const computedId = vue.computed(() => id.value ?? Symbol(getUid()));
7466
+ const uidSymbol = Symbol(getUid());
7467
+ const computedId = vue.computed(() => id.value ?? uidSymbol);
7467
7468
  const item = {
7468
7469
  ...parent,
7469
7470
  id: computedId,
@@ -20218,7 +20219,7 @@
20218
20219
  locale
20219
20220
  };
20220
20221
  }
20221
- const version$1 = "4.0.0-dev-20230206.0";
20222
+ const version$1 = "4.0.0-master-20230206.0";
20222
20223
  createVuetify$1.version = version$1;
20223
20224
 
20224
20225
  // Vue's inject() can only be used in setup
@@ -20231,7 +20232,7 @@
20231
20232
  }
20232
20233
  }
20233
20234
 
20234
- const version = "4.0.0-dev-20230206.0";
20235
+ const version = "4.0.0-master-20230206.0";
20235
20236
 
20236
20237
  const createVuetify = function () {
20237
20238
  let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};