@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.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
|
*/
|
|
@@ -9300,19 +9300,18 @@
|
|
|
9300
9300
|
vue.warn(`Unable to locate target ${_target}`);
|
|
9301
9301
|
return undefined;
|
|
9302
9302
|
}
|
|
9303
|
-
|
|
9304
|
-
|
|
9305
|
-
|
|
9306
|
-
|
|
9307
|
-
|
|
9303
|
+
let container = targetElement.querySelector('.v-overlay-container');
|
|
9304
|
+
if (!container) {
|
|
9305
|
+
container = document.createElement('div');
|
|
9306
|
+
container.className = 'v-overlay-container';
|
|
9307
|
+
targetElement.appendChild(container);
|
|
9308
9308
|
}
|
|
9309
|
-
return
|
|
9309
|
+
return container;
|
|
9310
9310
|
});
|
|
9311
9311
|
return {
|
|
9312
9312
|
teleportTarget
|
|
9313
9313
|
};
|
|
9314
9314
|
}
|
|
9315
|
-
useTeleport.cache = new WeakMap();
|
|
9316
9315
|
|
|
9317
9316
|
function defaultConditional() {
|
|
9318
9317
|
return true;
|
|
@@ -20075,7 +20074,7 @@
|
|
|
20075
20074
|
locale
|
|
20076
20075
|
};
|
|
20077
20076
|
}
|
|
20078
|
-
const version$1 = "3.1.2-
|
|
20077
|
+
const version$1 = "3.1.2-next-20230112.0";
|
|
20079
20078
|
createVuetify$1.version = version$1;
|
|
20080
20079
|
|
|
20081
20080
|
// Vue's inject() can only be used in setup
|
|
@@ -20088,7 +20087,7 @@
|
|
|
20088
20087
|
}
|
|
20089
20088
|
}
|
|
20090
20089
|
|
|
20091
|
-
const version = "3.1.2-
|
|
20090
|
+
const version = "3.1.2-next-20230112.0";
|
|
20092
20091
|
|
|
20093
20092
|
const createVuetify = function () {
|
|
20094
20093
|
let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|