@tmagic/editor 1.3.0-alpha.3 → 1.3.0-alpha.4

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.3.0-alpha.3",
2
+ "version": "1.3.0-alpha.4",
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.3",
50
- "@tmagic/design": "1.3.0-alpha.3",
51
- "@tmagic/form": "1.3.0-alpha.3",
52
- "@tmagic/schema": "1.3.0-alpha.3",
53
- "@tmagic/stage": "1.3.0-alpha.3",
54
- "@tmagic/table": "1.3.0-alpha.3",
55
- "@tmagic/utils": "1.3.0-alpha.3",
49
+ "@tmagic/core": "1.3.0-alpha.4",
50
+ "@tmagic/design": "1.3.0-alpha.4",
51
+ "@tmagic/form": "1.3.0-alpha.4",
52
+ "@tmagic/schema": "1.3.0-alpha.4",
53
+ "@tmagic/stage": "1.3.0-alpha.4",
54
+ "@tmagic/table": "1.3.0-alpha.4",
55
+ "@tmagic/utils": "1.3.0-alpha.4",
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.3.4"
65
65
  },
66
66
  "peerDependencies": {
67
- "@tmagic/design": "1.3.0-alpha.3",
68
- "@tmagic/form": "1.3.0-alpha.3",
67
+ "@tmagic/design": "1.3.0-alpha.4",
68
+ "@tmagic/form": "1.3.0-alpha.4",
69
69
  "monaco-editor": "^0.34.0",
70
70
  "vue": "^3.3.4"
71
71
  },
@@ -36,6 +36,8 @@ const codeConfig = computed(() => ({
36
36
  type: 'group-list',
37
37
  name: 'hookData',
38
38
  enableToggleMode: false,
39
+ expandAll: true,
40
+ titleKey: 'codeId',
39
41
  items: [
40
42
  {
41
43
  type: 'code-select-col',
@@ -186,6 +186,7 @@ const actionsConfig = computed(() => ({
186
186
  {
187
187
  type: 'group-list',
188
188
  name: 'actions',
189
+ expandAll: true,
189
190
  enableToggleMode: false,
190
191
  items: [actionTypeConfig.value, targetCompConfig.value, compActionConfig.value, codeActionConfig.value],
191
192
  },