@tmagic/editor 1.2.0-beta.10 → 1.2.0-beta.11
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/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.2.0-beta.
|
|
2
|
+
"version": "1.2.0-beta.11",
|
|
3
3
|
"name": "@tmagic/editor",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"dist/*",
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@babel/core": "^7.18.0",
|
|
47
47
|
"@element-plus/icons-vue": "^2.0.9",
|
|
48
|
-
"@tmagic/core": "1.2.0-beta.
|
|
49
|
-
"@tmagic/design": "1.2.0-beta.
|
|
50
|
-
"@tmagic/form": "1.2.0-beta.
|
|
51
|
-
"@tmagic/schema": "1.2.0-beta.
|
|
52
|
-
"@tmagic/stage": "1.2.0-beta.
|
|
53
|
-
"@tmagic/utils": "1.2.0-beta.
|
|
48
|
+
"@tmagic/core": "1.2.0-beta.11",
|
|
49
|
+
"@tmagic/design": "1.2.0-beta.11",
|
|
50
|
+
"@tmagic/form": "1.2.0-beta.11",
|
|
51
|
+
"@tmagic/schema": "1.2.0-beta.11",
|
|
52
|
+
"@tmagic/stage": "1.2.0-beta.11",
|
|
53
|
+
"@tmagic/utils": "1.2.0-beta.11",
|
|
54
54
|
"buffer": "^6.0.3",
|
|
55
55
|
"color": "^3.1.3",
|
|
56
56
|
"events": "^3.3.0",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"vue": "^3.2.37"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"@tmagic/design": "1.2.0-beta.
|
|
66
|
-
"@tmagic/form": "1.2.0-beta.
|
|
65
|
+
"@tmagic/design": "1.2.0-beta.11",
|
|
66
|
+
"@tmagic/form": "1.2.0-beta.11",
|
|
67
67
|
"monaco-editor": "^0.34.0",
|
|
68
68
|
"vue": "^3.2.37"
|
|
69
69
|
},
|
package/src/index.ts
CHANGED
|
@@ -48,7 +48,7 @@ export { default as PropsPanel } from './layouts/PropsPanel.vue';
|
|
|
48
48
|
export { default as ToolButton } from './components/ToolButton.vue';
|
|
49
49
|
export { default as ContentMenu } from './components/ContentMenu.vue';
|
|
50
50
|
export { default as Icon } from './components/Icon.vue';
|
|
51
|
-
export { default as
|
|
51
|
+
export { default as LayoutContainer } from './components/Layout.vue';
|
|
52
52
|
|
|
53
53
|
const defaultInstallOpt: InstallOptions = {
|
|
54
54
|
// @todo, 自定义图片上传方法等编辑器依赖的外部选项
|
package/types/index.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export { default as PropsPanel } from './layouts/PropsPanel.vue';
|
|
|
21
21
|
export { default as ToolButton } from './components/ToolButton.vue';
|
|
22
22
|
export { default as ContentMenu } from './components/ContentMenu.vue';
|
|
23
23
|
export { default as Icon } from './components/Icon.vue';
|
|
24
|
-
export { default as
|
|
24
|
+
export { default as LayoutContainer } from './components/Layout.vue';
|
|
25
25
|
declare const _default: {
|
|
26
26
|
install: (app: App, opt?: InstallOptions) => void;
|
|
27
27
|
};
|