@tmagic/editor 1.1.0-beta.0 → 1.1.0-beta.1
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/tmagic-editor.es.js +1 -1
- package/dist/tmagic-editor.es.js.map +1 -1
- package/dist/tmagic-editor.umd.js +32 -32
- package/dist/tmagic-editor.umd.js.map +1 -1
- package/package.json +8 -8
- package/src/components/Icon.vue +1 -1
- package/src/components/ToolButton.vue +1 -1
- package/src/fields/UISelect.vue +1 -1
- package/src/layouts/AddPageBox.vue +1 -1
- package/src/layouts/sidebar/LayerMenu.vue +1 -1
- package/src/layouts/sidebar/TabPane.vue +1 -1
- package/src/layouts/workspace/PageBar.vue +1 -1
- package/src/layouts/workspace/ViewerMenu.vue +1 -1
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.1.0-beta.
|
|
2
|
+
"version": "1.1.0-beta.1",
|
|
3
3
|
"name": "@tmagic/editor",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"dist/*",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@babel/core": "^7.18.0",
|
|
45
|
-
"@element-plus/icons": "
|
|
46
|
-
"@tmagic/core": "1.1.0-beta.
|
|
47
|
-
"@tmagic/form": "1.1.0-beta.
|
|
48
|
-
"@tmagic/schema": "1.1.0-beta.
|
|
49
|
-
"@tmagic/stage": "1.1.0-beta.
|
|
50
|
-
"@tmagic/utils": "1.1.0-beta.
|
|
45
|
+
"@element-plus/icons-vue": "^2.0.6",
|
|
46
|
+
"@tmagic/core": "1.1.0-beta.1",
|
|
47
|
+
"@tmagic/form": "1.1.0-beta.1",
|
|
48
|
+
"@tmagic/schema": "1.1.0-beta.1",
|
|
49
|
+
"@tmagic/stage": "1.1.0-beta.1",
|
|
50
|
+
"@tmagic/utils": "1.1.0-beta.1",
|
|
51
51
|
"buffer": "^6.0.3",
|
|
52
52
|
"color": "^3.1.3",
|
|
53
53
|
"element-plus": "^2.2.6",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"vue": "^3.2.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@tmagic/form": "1.1.0-beta.
|
|
63
|
+
"@tmagic/form": "1.1.0-beta.1",
|
|
64
64
|
"element-plus": "^2.2.6",
|
|
65
65
|
"monaco-editor": "^0.32.1",
|
|
66
66
|
"vue": "^3.2.0"
|
package/src/components/Icon.vue
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
|
|
53
53
|
<script lang="ts">
|
|
54
54
|
import { computed, defineComponent, inject, markRaw, PropType } from 'vue';
|
|
55
|
-
import { ArrowDown, Back, Delete, Grid, Right, ScaleToOriginal, ZoomIn, ZoomOut } from '@element-plus/icons';
|
|
55
|
+
import { ArrowDown, Back, Delete, Grid, Right, ScaleToOriginal, ZoomIn, ZoomOut } from '@element-plus/icons-vue';
|
|
56
56
|
|
|
57
57
|
import { NodeType } from '@tmagic/schema';
|
|
58
58
|
|
package/src/fields/UISelect.vue
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<script lang="ts">
|
|
16
16
|
import { computed, defineComponent, inject, markRaw, ref } from 'vue';
|
|
17
|
-
import { Close, Delete, Pointer } from '@element-plus/icons';
|
|
17
|
+
import { Close, Delete, Pointer } from '@element-plus/icons-vue';
|
|
18
18
|
|
|
19
19
|
import { FormState } from '@tmagic/form';
|
|
20
20
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
<script lang="ts">
|
|
6
6
|
import { computed, defineComponent, inject, markRaw, ref } from 'vue';
|
|
7
|
-
import { Delete, DocumentCopy, Files, Plus } from '@element-plus/icons';
|
|
7
|
+
import { Delete, DocumentCopy, Files, Plus } from '@element-plus/icons-vue';
|
|
8
8
|
|
|
9
9
|
import { NodeType } from '@tmagic/schema';
|
|
10
10
|
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
<script lang="ts">
|
|
29
29
|
import { computed, defineComponent, PropType } from 'vue';
|
|
30
|
-
import { Coin, Files } from '@element-plus/icons';
|
|
30
|
+
import { Coin, Files } from '@element-plus/icons-vue';
|
|
31
31
|
|
|
32
32
|
import MIcon from '@editor/components/Icon.vue';
|
|
33
33
|
import { SideComponent, SideItem } from '@editor/type';
|
|
@@ -70,7 +70,7 @@ import {
|
|
|
70
70
|
toRaw,
|
|
71
71
|
watch,
|
|
72
72
|
} from 'vue';
|
|
73
|
-
import { ArrowLeftBold, ArrowRightBold, CaretBottom, Delete, DocumentCopy, Plus } from '@element-plus/icons';
|
|
73
|
+
import { ArrowLeftBold, ArrowRightBold, CaretBottom, Delete, DocumentCopy, Plus } from '@element-plus/icons-vue';
|
|
74
74
|
|
|
75
75
|
import type { MApp, MPage } from '@tmagic/schema';
|
|
76
76
|
import { NodeType } from '@tmagic/schema';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
<script lang="ts">
|
|
6
6
|
import { computed, defineComponent, inject, markRaw, onMounted, reactive, ref, watch } from 'vue';
|
|
7
|
-
import { Bottom, Delete, DocumentCopy, Top } from '@element-plus/icons';
|
|
7
|
+
import { Bottom, Delete, DocumentCopy, Top } from '@element-plus/icons-vue';
|
|
8
8
|
|
|
9
9
|
import { NodeType } from '@tmagic/schema';
|
|
10
10
|
import type StageCore from '@tmagic/stage';
|