@overlastic/vue 0.8.3 → 0.8.7
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/index.global.js +2 -2
- package/package.json +2 -2
package/dist/index.global.js
CHANGED
|
@@ -16659,8 +16659,8 @@ ${codeFrame}` : message);
|
|
|
16659
16659
|
const deferred = createDeferred();
|
|
16660
16660
|
const name = defineName(options3.id, options3.autoIncrement);
|
|
16661
16661
|
const index = getIndex(options3.id);
|
|
16662
|
-
const root =
|
|
16663
|
-
const container = defineGlobalElement(name, root);
|
|
16662
|
+
const root = options3.root ? options3.root : document.body;
|
|
16663
|
+
const container = globalContainer !== false ? defineGlobalElement(name, root) : void 0;
|
|
16664
16664
|
mount(instance, props, Object.assign(options3, {
|
|
16665
16665
|
position: context2.position,
|
|
16666
16666
|
id: name,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@overlastic/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.7",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/hairyf/overlastic#readme",
|
|
7
7
|
"repository": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"pascal-case": "3.1.2",
|
|
30
30
|
"vue": "^3.3.2",
|
|
31
31
|
"vue-demi": ">=0.14.10",
|
|
32
|
-
"@overlastic/core": "^0.8.
|
|
32
|
+
"@overlastic/core": "^0.8.7"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "tsup src/index.ts",
|