@vuetify/nightly 3.1.2-dev-20230112.0 → 3.1.2-next-20230112.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 v3.1.2-dev-20230112.0
2
+ * Vuetify v3.1.2-next-20230112.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -9296,19 +9296,18 @@ function useTeleport(target) {
9296
9296
  warn(`Unable to locate target ${_target}`);
9297
9297
  return undefined;
9298
9298
  }
9299
- if (!useTeleport.cache.has(targetElement)) {
9300
- const el = document.createElement('div');
9301
- el.className = 'v-overlay-container';
9302
- targetElement.appendChild(el);
9303
- useTeleport.cache.set(targetElement, el);
9299
+ let container = targetElement.querySelector('.v-overlay-container');
9300
+ if (!container) {
9301
+ container = document.createElement('div');
9302
+ container.className = 'v-overlay-container';
9303
+ targetElement.appendChild(container);
9304
9304
  }
9305
- return useTeleport.cache.get(targetElement);
9305
+ return container;
9306
9306
  });
9307
9307
  return {
9308
9308
  teleportTarget
9309
9309
  };
9310
9310
  }
9311
- useTeleport.cache = new WeakMap();
9312
9311
 
9313
9312
  function defaultConditional() {
9314
9313
  return true;
@@ -20071,7 +20070,7 @@ function createVuetify$1() {
20071
20070
  locale
20072
20071
  };
20073
20072
  }
20074
- const version$1 = "3.1.2-dev-20230112.0";
20073
+ const version$1 = "3.1.2-next-20230112.0";
20075
20074
  createVuetify$1.version = version$1;
20076
20075
 
20077
20076
  // Vue's inject() can only be used in setup
@@ -20084,7 +20083,7 @@ function inject(key) {
20084
20083
  }
20085
20084
  }
20086
20085
 
20087
- const version = "3.1.2-dev-20230112.0";
20086
+ const version = "3.1.2-next-20230112.0";
20088
20087
 
20089
20088
  const createVuetify = function () {
20090
20089
  let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};