@tmagic/editor 1.3.0-alpha.0 → 1.3.0-alpha.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.js +1 -1
- package/dist/tmagic-editor.js.map +1 -1
- package/dist/tmagic-editor.umd.cjs +1 -0
- package/dist/tmagic-editor.umd.cjs.map +1 -1
- package/package.json +10 -10
- package/src/index.ts +1 -0
- package/types/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.3.0-alpha.
|
|
2
|
+
"version": "1.3.0-alpha.1",
|
|
3
3
|
"name": "@tmagic/editor",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": [
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@babel/core": "^7.18.0",
|
|
48
48
|
"@element-plus/icons-vue": "^2.0.9",
|
|
49
|
-
"@tmagic/core": "1.3.0-alpha.
|
|
50
|
-
"@tmagic/design": "1.3.0-alpha.
|
|
51
|
-
"@tmagic/form": "1.3.0-alpha.
|
|
52
|
-
"@tmagic/schema": "1.3.0-alpha.
|
|
53
|
-
"@tmagic/stage": "1.3.0-alpha.
|
|
54
|
-
"@tmagic/table": "1.3.0-alpha.
|
|
55
|
-
"@tmagic/utils": "1.3.0-alpha.
|
|
49
|
+
"@tmagic/core": "1.3.0-alpha.1",
|
|
50
|
+
"@tmagic/design": "1.3.0-alpha.1",
|
|
51
|
+
"@tmagic/form": "1.3.0-alpha.1",
|
|
52
|
+
"@tmagic/schema": "1.3.0-alpha.1",
|
|
53
|
+
"@tmagic/stage": "1.3.0-alpha.1",
|
|
54
|
+
"@tmagic/table": "1.3.0-alpha.1",
|
|
55
|
+
"@tmagic/utils": "1.3.0-alpha.1",
|
|
56
56
|
"buffer": "^6.0.3",
|
|
57
57
|
"color": "^3.1.3",
|
|
58
58
|
"events": "^3.3.0",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"vue": "^3.2.37"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
|
-
"@tmagic/design": "1.3.0-alpha.
|
|
68
|
-
"@tmagic/form": "1.3.0-alpha.
|
|
67
|
+
"@tmagic/design": "1.3.0-alpha.1",
|
|
68
|
+
"@tmagic/form": "1.3.0-alpha.1",
|
|
69
69
|
"monaco-editor": "^0.34.0",
|
|
70
70
|
"vue": "^3.2.37"
|
|
71
71
|
},
|
package/src/index.ts
CHANGED
|
@@ -42,6 +42,7 @@ export { default as propsService } from './services/props';
|
|
|
42
42
|
export { default as historyService } from './services/history';
|
|
43
43
|
export { default as storageService } from './services/storage';
|
|
44
44
|
export { default as eventsService } from './services/events';
|
|
45
|
+
export { default as dataSourceService } from './services/dataSource';
|
|
45
46
|
export { default as uiService } from './services/ui';
|
|
46
47
|
export { default as codeBlockService } from './services/codeBlock';
|
|
47
48
|
export { default as depService } from './services/dep';
|
package/types/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export { default as propsService } from './services/props';
|
|
|
11
11
|
export { default as historyService } from './services/history';
|
|
12
12
|
export { default as storageService } from './services/storage';
|
|
13
13
|
export { default as eventsService } from './services/events';
|
|
14
|
+
export { default as dataSourceService } from './services/dataSource';
|
|
14
15
|
export { default as uiService } from './services/ui';
|
|
15
16
|
export { default as codeBlockService } from './services/codeBlock';
|
|
16
17
|
export { default as depService } from './services/dep';
|