@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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.0-beta.0",
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": "0.0.11",
46
- "@tmagic/core": "1.1.0-beta.0",
47
- "@tmagic/form": "1.1.0-beta.0",
48
- "@tmagic/schema": "1.1.0-beta.0",
49
- "@tmagic/stage": "1.1.0-beta.0",
50
- "@tmagic/utils": "1.1.0-beta.0",
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.0",
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"
@@ -7,7 +7,7 @@
7
7
 
8
8
  <script lang="ts">
9
9
  import { Component, defineComponent, PropType, toRaw } from 'vue';
10
- import { Edit } from '@element-plus/icons';
10
+ import { Edit } from '@element-plus/icons-vue';
11
11
 
12
12
  export default defineComponent({
13
13
  name: 'm-icon',
@@ -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
 
@@ -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
 
@@ -13,7 +13,7 @@
13
13
 
14
14
  <script lang="ts">
15
15
  import { defineComponent, inject, toRaw } from 'vue';
16
- import { Plus } from '@element-plus/icons';
16
+ import { Plus } from '@element-plus/icons-vue';
17
17
 
18
18
  import { NodeType } from '@tmagic/schema';
19
19
 
@@ -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';