@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.
- package/CHANGELOG.md +3 -2
- package/dist/json/importMap.json +12 -12
- package/dist/vuetify-labs.css +548 -548
- package/dist/vuetify-labs.esm.js +9 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +9 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +103 -103
- package/dist/vuetify.d.ts +3 -3
- package/dist/vuetify.esm.js +9 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +9 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +197 -195
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/teleport.mjs +6 -7
- package/lib/composables/teleport.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/vuetify-labs.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.1.2-
|
|
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
|
-
|
|
9300
|
-
|
|
9301
|
-
|
|
9302
|
-
|
|
9303
|
-
|
|
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
|
|
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-
|
|
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-
|
|
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] : {};
|