@opentiny/tiny-engine-setting-events 2.5.0 → 2.5.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/index.js +16 -8
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -150,7 +150,8 @@ function un(f, o, a, e, r, _) {
|
|
|
150
150
|
default: E(() => o[0] || (o[0] = [
|
|
151
151
|
J("取 消")
|
|
152
152
|
])),
|
|
153
|
-
_: 1
|
|
153
|
+
_: 1,
|
|
154
|
+
__: [0]
|
|
154
155
|
}, 8, ["onClick"]),
|
|
155
156
|
u(b, {
|
|
156
157
|
type: "info",
|
|
@@ -159,7 +160,8 @@ function un(f, o, a, e, r, _) {
|
|
|
159
160
|
default: E(() => o[1] || (o[1] = [
|
|
160
161
|
J("确 定")
|
|
161
162
|
])),
|
|
162
|
-
_: 1
|
|
163
|
+
_: 1,
|
|
164
|
+
__: [1]
|
|
163
165
|
}, 8, ["onClick"])
|
|
164
166
|
])
|
|
165
167
|
]),
|
|
@@ -173,7 +175,8 @@ function un(f, o, a, e, r, _) {
|
|
|
173
175
|
(h(), O(_e(e.BindEventsDialogContent), { dialogVisible: e.dialogVisible }, null, 8, ["dialogVisible"]))
|
|
174
176
|
])
|
|
175
177
|
]),
|
|
176
|
-
_: 1
|
|
178
|
+
_: 1,
|
|
179
|
+
__: [2]
|
|
177
180
|
}, 8, ["visible", "onClose", "onOpened"]);
|
|
178
181
|
}
|
|
179
182
|
const fn = /* @__PURE__ */ H(cn, [["render", un], ["__scopeId", "data-v-db4b4d71"]]), vn = {
|
|
@@ -410,7 +413,8 @@ const fn = /* @__PURE__ */ H(cn, [["render", un], ["__scopeId", "data-v-db4b4d71
|
|
|
410
413
|
default: E(() => n[2] || (n[2] = [
|
|
411
414
|
J(" 取消")
|
|
412
415
|
])),
|
|
413
|
-
_: 1
|
|
416
|
+
_: 1,
|
|
417
|
+
__: [2]
|
|
414
418
|
}),
|
|
415
419
|
u(D(ee), {
|
|
416
420
|
type: "primary",
|
|
@@ -419,7 +423,8 @@ const fn = /* @__PURE__ */ H(cn, [["render", un], ["__scopeId", "data-v-db4b4d71
|
|
|
419
423
|
default: E(() => n[3] || (n[3] = [
|
|
420
424
|
J(" 确定")
|
|
421
425
|
])),
|
|
422
|
-
_: 1
|
|
426
|
+
_: 1,
|
|
427
|
+
__: [3]
|
|
423
428
|
})
|
|
424
429
|
])
|
|
425
430
|
]),
|
|
@@ -589,7 +594,8 @@ function wn(f, o, a, e, r, _) {
|
|
|
589
594
|
o[2] || (o[2] = t("span", null, "绑定事件", -1)),
|
|
590
595
|
u(b, { class: "icon-chevron-down bind-event-btn-icon" })
|
|
591
596
|
]),
|
|
592
|
-
_: 1
|
|
597
|
+
_: 1,
|
|
598
|
+
__: [2]
|
|
593
599
|
})
|
|
594
600
|
]),
|
|
595
601
|
default: E(() => [
|
|
@@ -619,7 +625,8 @@ function wn(f, o, a, e, r, _) {
|
|
|
619
625
|
}),
|
|
620
626
|
o[3] || (o[3] = t("span", { class: "custom-event-button-text" }, "添加新事件", -1))
|
|
621
627
|
]),
|
|
622
|
-
_: 1
|
|
628
|
+
_: 1,
|
|
629
|
+
__: [3]
|
|
623
630
|
})
|
|
624
631
|
]),
|
|
625
632
|
be(t("ul", Nn, [
|
|
@@ -1035,7 +1042,8 @@ function co(f, o, a, e, r, _) {
|
|
|
1035
1042
|
default: E(() => o[3] || (o[3] = [
|
|
1036
1043
|
J("扩展参数设置")
|
|
1037
1044
|
])),
|
|
1038
|
-
_: 1
|
|
1045
|
+
_: 1,
|
|
1046
|
+
__: [3]
|
|
1039
1047
|
}, 8, ["modelValue"]),
|
|
1040
1048
|
t("div", so, [
|
|
1041
1049
|
o[4] || (o[4] = t("div", null, "扩展参数:调用当前事件传入的真实参数,数组格式,追加在原有事件参数之后", -1)),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/tiny-engine-setting-events",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"homepage": "https://opentiny.design/tiny-engine",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@opentiny/tiny-engine-common": "2.5.
|
|
29
|
-
"@opentiny/tiny-engine-configurator": "2.5.
|
|
30
|
-
"@opentiny/tiny-engine-meta-register": "2.5.
|
|
31
|
-
"@opentiny/tiny-engine-utils": "2.5.
|
|
28
|
+
"@opentiny/tiny-engine-common": "2.5.1",
|
|
29
|
+
"@opentiny/tiny-engine-configurator": "2.5.1",
|
|
30
|
+
"@opentiny/tiny-engine-meta-register": "2.5.1",
|
|
31
|
+
"@opentiny/tiny-engine-utils": "2.5.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@opentiny/tiny-engine-vite-plugin-meta-comments": "2.5.
|
|
34
|
+
"@opentiny/tiny-engine-vite-plugin-meta-comments": "2.5.1",
|
|
35
35
|
"@vitejs/plugin-vue": "^5.1.2",
|
|
36
36
|
"@vitejs/plugin-vue-jsx": "^4.0.1",
|
|
37
37
|
"vite": "^5.4.2"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"@opentiny/vue-icon": "^3.20.0",
|
|
42
42
|
"vue": "^3.4.15"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "108fdf8b27cc1904c35cbb21b32be62fdbd86968"
|
|
45
45
|
}
|