@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/CHANGELOG.md +3 -3
- package/dist/json/attributes.json +2 -2
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +106 -106
- package/dist/json/web-types.json +3 -3
- package/dist/vuetify-labs.css +6077 -6077
- package/dist/vuetify-labs.esm.js +61 -64
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +61 -64
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1090 -1090
- package/dist/vuetify.d.ts +36 -36
- package/dist/vuetify.esm.js +11 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -14
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +7 -2
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/composables/teleport.mjs +2 -2
- package/lib/composables/teleport.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +36 -36
- package/lib/labs/VNumberInput/VNumberInput.mjs +48 -55
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVertical.mjs +2 -0
- package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.
|
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
|
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(
|
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.
|
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.
|
28129
|
+
const version = "3.6.11-master.2024-07-03";
|
28128
28130
|
createVuetify.version = version;
|
28129
28131
|
|
28130
28132
|
exports.blueprints = index;
|