@vuetify/nightly 3.6.10-master.2024-06-27 → 3.6.11-master.2024-07-03

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.6.10-master.2024-06-27
2
+ * Vuetify v3.6.11-master.2024-07-03
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -10837,12 +10837,9 @@
10837
10837
  }
10838
10838
 
10839
10839
  // Utilities
10840
-
10841
- // Types
10842
-
10843
10840
  function useTeleport(target) {
10844
10841
  const teleportTarget = vue.computed(() => {
10845
- const _target = target.value;
10842
+ const _target = target();
10846
10843
  if (_target === true || !IN_BROWSER) return undefined;
10847
10844
  const targetElement = _target === false ? document.body : typeof _target === 'string' ? document.querySelector(_target) : _target;
10848
10845
  if (targetElement == null) {
@@ -11063,10 +11060,15 @@
11063
11060
  isActive,
11064
11061
  isTop: localTop
11065
11062
  });
11066
- const potentialShadowDomRoot = vue.computed(() => activatorEl?.value?.getRootNode());
11067
11063
  const {
11068
11064
  teleportTarget
11069
- } = useTeleport(vue.computed(() => props.attach || props.contained || potentialShadowDomRoot.value instanceof ShadowRoot ? potentialShadowDomRoot.value ?? true : false));
11065
+ } = useTeleport(() => {
11066
+ const target = props.attach || props.contained;
11067
+ if (target) return target;
11068
+ const rootNode = activatorEl?.value?.getRootNode();
11069
+ if (rootNode instanceof ShadowRoot) return rootNode;
11070
+ return false;
11071
+ });
11070
11072
  const {
11071
11073
  dimensionStyles
11072
11074
  } = useDimension(props);
@@ -28099,7 +28101,7 @@
28099
28101
  goTo
28100
28102
  };
28101
28103
  }
28102
- const version$1 = "3.6.10-master.2024-06-27";
28104
+ const version$1 = "3.6.11-master.2024-07-03";
28103
28105
  createVuetify$1.version = version$1;
28104
28106
 
28105
28107
  // Vue's inject() can only be used in setup
@@ -28124,7 +28126,7 @@
28124
28126
  ...options
28125
28127
  });
28126
28128
  };
28127
- const version = "3.6.10-master.2024-06-27";
28129
+ const version = "3.6.11-master.2024-07-03";
28128
28130
  createVuetify.version = version;
28129
28131
 
28130
28132
  exports.blueprints = index;