@tmagic/editor 1.4.0 → 1.4.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
CHANGED
|
@@ -8247,9 +8247,11 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
8247
8247
|
renderSlot(_ctx.$slots, "data-source-panel-search")
|
|
8248
8248
|
]),
|
|
8249
8249
|
createVNode(_sfc_main$i, {
|
|
8250
|
+
ref_key: "dataSourceList",
|
|
8251
|
+
ref: dataSourceList,
|
|
8250
8252
|
onEdit: editHandler,
|
|
8251
8253
|
onRemove: removeHandler
|
|
8252
|
-
})
|
|
8254
|
+
}, null, 512)
|
|
8253
8255
|
]),
|
|
8254
8256
|
_: 3
|
|
8255
8257
|
}),
|
|
@@ -8252,9 +8252,11 @@
|
|
|
8252
8252
|
vue.renderSlot(_ctx.$slots, "data-source-panel-search")
|
|
8253
8253
|
]),
|
|
8254
8254
|
vue.createVNode(_sfc_main$i, {
|
|
8255
|
+
ref_key: "dataSourceList",
|
|
8256
|
+
ref: dataSourceList,
|
|
8255
8257
|
onEdit: editHandler,
|
|
8256
8258
|
onRemove: removeHandler
|
|
8257
|
-
})
|
|
8259
|
+
}, null, 512)
|
|
8258
8260
|
]),
|
|
8259
8261
|
_: 3
|
|
8260
8262
|
}),
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.4.
|
|
2
|
+
"version": "1.4.1",
|
|
3
3
|
"name": "@tmagic/editor",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": [
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@babel/core": "^7.18.0",
|
|
44
44
|
"@element-plus/icons-vue": "^2.3.1",
|
|
45
|
-
"@tmagic/core": "1.4.
|
|
46
|
-
"@tmagic/dep": "1.4.
|
|
47
|
-
"@tmagic/design": "1.4.
|
|
48
|
-
"@tmagic/form": "1.4.
|
|
49
|
-
"@tmagic/schema": "1.4.
|
|
50
|
-
"@tmagic/stage": "1.4.
|
|
51
|
-
"@tmagic/table": "1.4.
|
|
52
|
-
"@tmagic/utils": "1.4.
|
|
45
|
+
"@tmagic/core": "1.4.1",
|
|
46
|
+
"@tmagic/dep": "1.4.1",
|
|
47
|
+
"@tmagic/design": "1.4.1",
|
|
48
|
+
"@tmagic/form": "1.4.1",
|
|
49
|
+
"@tmagic/schema": "1.4.1",
|
|
50
|
+
"@tmagic/stage": "1.4.1",
|
|
51
|
+
"@tmagic/table": "1.4.1",
|
|
52
|
+
"@tmagic/utils": "1.4.1",
|
|
53
53
|
"buffer": "^6.0.3",
|
|
54
54
|
"color": "^3.1.3",
|
|
55
55
|
"emmet-monaco-es": "^5.3.0",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"vue": "^3.4.21"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@tmagic/design": "1.4.
|
|
67
|
-
"@tmagic/form": "1.4.
|
|
66
|
+
"@tmagic/design": "1.4.1",
|
|
67
|
+
"@tmagic/form": "1.4.1",
|
|
68
68
|
"monaco-editor": "^0.47.0",
|
|
69
69
|
"vue": "^3.4.21"
|
|
70
70
|
},
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
</div>
|
|
26
26
|
|
|
27
27
|
<!-- 数据源列表 -->
|
|
28
|
-
<DataSourceList @edit="editHandler" @remove="removeHandler"></DataSourceList>
|
|
28
|
+
<DataSourceList ref="dataSourceList" @edit="editHandler" @remove="removeHandler"></DataSourceList>
|
|
29
29
|
</TMagicScrollbar>
|
|
30
30
|
|
|
31
31
|
<DataSourceConfigPanel
|