@web-utils/component 2.9.0 → 2.9.2
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/context-menu/index.mjs +17 -15
- package/element-dialog/index.mjs +42 -26
- package/fy-form-design/index.mjs +22 -19
- package/fy-input-map/index.mjs +5 -4
- package/fy-tree/index.mjs +5 -2
- package/monaco-editor/index.mjs +13 -13
- package/package.json +1 -1
- package/web-types.json +10 -2
package/context-menu/index.mjs
CHANGED
|
@@ -68,7 +68,7 @@ var d = function() {
|
|
|
68
68
|
}, [e("div", {
|
|
69
69
|
class: t.secondLeft ? "cm-left" : "",
|
|
70
70
|
on: {
|
|
71
|
-
click: function(
|
|
71
|
+
click: function(o) {
|
|
72
72
|
return t.onItemClick(n, [l, r]);
|
|
73
73
|
}
|
|
74
74
|
}
|
|
@@ -90,22 +90,22 @@ var d = function() {
|
|
|
90
90
|
staticClass: "cm-ul cm-ul-3 easy-cm-ul",
|
|
91
91
|
class: t.underline ? "cm-underline" : "",
|
|
92
92
|
style: t.thirdBorderCheck(l, r)
|
|
93
|
-
}, t._l(n.children, function(
|
|
93
|
+
}, t._l(n.children, function(o, h) {
|
|
94
94
|
return e("li", {
|
|
95
|
-
key:
|
|
95
|
+
key: h,
|
|
96
96
|
style: t.liStyle
|
|
97
97
|
}, [e("div", {
|
|
98
98
|
on: {
|
|
99
|
-
click: function(
|
|
100
|
-
return t.onItemClick(
|
|
99
|
+
click: function(p) {
|
|
100
|
+
return t.onItemClick(o, [l, r, h]);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
}, [e("i", {
|
|
104
104
|
staticClass: "cm-item-icon",
|
|
105
|
-
class:
|
|
105
|
+
class: o.icon
|
|
106
106
|
}), e("span", {
|
|
107
107
|
staticClass: "cm-item-label"
|
|
108
|
-
}, [t._v(t._s(
|
|
108
|
+
}, [t._v(t._s(o.text))])])]);
|
|
109
109
|
}), 0) : t._e()]);
|
|
110
110
|
}), 0) : t._e()]);
|
|
111
111
|
}), 0)]) : t._e();
|
|
@@ -118,10 +118,8 @@ const m = {
|
|
|
118
118
|
required: !0
|
|
119
119
|
},
|
|
120
120
|
// 是否开启下划线
|
|
121
|
-
underline:
|
|
122
|
-
|
|
123
|
-
default: !1
|
|
124
|
-
},
|
|
121
|
+
underline: Boolean,
|
|
122
|
+
appendToBody: Boolean,
|
|
125
123
|
// 是否开启箭头
|
|
126
124
|
arrow: {
|
|
127
125
|
type: Boolean,
|
|
@@ -205,6 +203,10 @@ const m = {
|
|
|
205
203
|
}
|
|
206
204
|
}
|
|
207
205
|
},
|
|
206
|
+
destroyed() {
|
|
207
|
+
var t;
|
|
208
|
+
this.appendToBody && ((t = this.$el) != null && t.parentNode) && this.$el.parentNode.removeChild(this.$el);
|
|
209
|
+
},
|
|
208
210
|
methods: {
|
|
209
211
|
secondBorderCheck(t) {
|
|
210
212
|
const i = document.body.offsetWidth, e = document.body.offsetHeight, s = this.axis.y + (t + this.list[t].children.length) * this.itemHeight;
|
|
@@ -221,7 +223,7 @@ const m = {
|
|
|
221
223
|
};
|
|
222
224
|
},
|
|
223
225
|
show(t) {
|
|
224
|
-
document.addEventListener("click", this.hide, !0), this.axis = { x: t.clientX, y: t.clientY }, this.rendered = !0, this.visible = !0;
|
|
226
|
+
document.addEventListener("click", this.hide, !0), this.axis = { x: t.clientX, y: t.clientY }, this.rendered = !0, this.visible = !0, this.appendToBody && document.body.appendChild(this.$el);
|
|
225
227
|
},
|
|
226
228
|
hide() {
|
|
227
229
|
this.visible = !1, document.removeEventListener("click", this.hide);
|
|
@@ -230,7 +232,7 @@ const m = {
|
|
|
230
232
|
this.$emit("on-item-click", t, i);
|
|
231
233
|
}
|
|
232
234
|
}
|
|
233
|
-
},
|
|
235
|
+
}, c = {};
|
|
234
236
|
var f = /* @__PURE__ */ a(
|
|
235
237
|
m,
|
|
236
238
|
d,
|
|
@@ -242,8 +244,8 @@ var f = /* @__PURE__ */ a(
|
|
|
242
244
|
null
|
|
243
245
|
);
|
|
244
246
|
function y(t) {
|
|
245
|
-
for (let i in
|
|
246
|
-
this[i] =
|
|
247
|
+
for (let i in c)
|
|
248
|
+
this[i] = c[i];
|
|
247
249
|
}
|
|
248
250
|
const _ = /* @__PURE__ */ function() {
|
|
249
251
|
return f.exports;
|
package/element-dialog/index.mjs
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
var r = (e, l, t) => new Promise((i, n) => {
|
|
2
|
+
var c = (o) => {
|
|
3
|
+
try {
|
|
4
|
+
a(t.next(o));
|
|
5
|
+
} catch (s) {
|
|
6
|
+
n(s);
|
|
7
|
+
}
|
|
8
|
+
}, p = (o) => {
|
|
9
|
+
try {
|
|
10
|
+
a(t.throw(o));
|
|
11
|
+
} catch (s) {
|
|
12
|
+
n(s);
|
|
13
|
+
}
|
|
14
|
+
}, a = (o) => o.done ? i(o.value) : Promise.resolve(o.value).then(c, p);
|
|
15
|
+
a((t = t.apply(e, l)).next());
|
|
16
|
+
});
|
|
17
|
+
import d from "element-ui/lib/dialog";
|
|
18
|
+
import { dialogDrag as h } from "@web-utils/vue/directives/dialog-drag";
|
|
19
|
+
import { n as f } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
20
|
+
var m = function() {
|
|
5
21
|
var e = this, l = e.$createElement, t = e._self._c || l;
|
|
6
22
|
return t("Transition", {
|
|
7
23
|
attrs: {
|
|
@@ -28,8 +44,8 @@ var r = function() {
|
|
|
28
44
|
}],
|
|
29
45
|
staticClass: "el-dialog__wrapper",
|
|
30
46
|
on: {
|
|
31
|
-
click: function(
|
|
32
|
-
return
|
|
47
|
+
click: function(i) {
|
|
48
|
+
return i.target !== i.currentTarget ? null : e.handleWrapperClick.apply(null, arguments);
|
|
33
49
|
}
|
|
34
50
|
}
|
|
35
51
|
}, [t("div", {
|
|
@@ -88,8 +104,8 @@ var r = function() {
|
|
|
88
104
|
}, [e._t("footer", null, {
|
|
89
105
|
handleClose: e.handleClose
|
|
90
106
|
})], 2) : e._e()])])]);
|
|
91
|
-
},
|
|
92
|
-
const
|
|
107
|
+
}, g = [];
|
|
108
|
+
const y = {
|
|
93
109
|
props: {
|
|
94
110
|
visible: {
|
|
95
111
|
type: Boolean,
|
|
@@ -124,12 +140,12 @@ const u = {
|
|
|
124
140
|
default: "76vh"
|
|
125
141
|
}
|
|
126
142
|
}
|
|
127
|
-
},
|
|
143
|
+
}, _ = {
|
|
128
144
|
name: "ElementDialog",
|
|
129
145
|
directives: {
|
|
130
|
-
dialogDrag:
|
|
146
|
+
dialogDrag: h
|
|
131
147
|
},
|
|
132
|
-
mixins: [...
|
|
148
|
+
mixins: [...d.mixins || d.default.mixins, y],
|
|
133
149
|
props: {
|
|
134
150
|
title: {
|
|
135
151
|
type: String,
|
|
@@ -194,9 +210,9 @@ const u = {
|
|
|
194
210
|
},
|
|
195
211
|
watch: {
|
|
196
212
|
visible(e) {
|
|
197
|
-
|
|
198
|
-
this.$refs.dialog.scrollTop = 0;
|
|
199
|
-
})
|
|
213
|
+
return r(this, null, function* () {
|
|
214
|
+
e ? (this.closed = !1, this.$emit("open"), this.$el.addEventListener("scroll", this.updatePopper), yield this.$nextTick(), this.$refs.dialog.scrollTop = 0, this.appendToBody && document.body.appendChild(this.$el)) : (this.$el.removeEventListener("scroll", this.updatePopper), this.closed || this.$emit("close"));
|
|
215
|
+
});
|
|
200
216
|
}
|
|
201
217
|
},
|
|
202
218
|
mounted() {
|
|
@@ -238,24 +254,24 @@ const u = {
|
|
|
238
254
|
this.exitFullScreen(), this.$emit("closed");
|
|
239
255
|
}
|
|
240
256
|
}
|
|
241
|
-
},
|
|
242
|
-
var
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
257
|
+
}, u = {};
|
|
258
|
+
var v = /* @__PURE__ */ f(
|
|
259
|
+
_,
|
|
260
|
+
m,
|
|
261
|
+
g,
|
|
246
262
|
!1,
|
|
247
|
-
|
|
263
|
+
C,
|
|
248
264
|
null,
|
|
249
265
|
null,
|
|
250
266
|
null
|
|
251
267
|
);
|
|
252
|
-
function
|
|
253
|
-
for (let l in
|
|
254
|
-
this[l] =
|
|
268
|
+
function C(e) {
|
|
269
|
+
for (let l in u)
|
|
270
|
+
this[l] = u[l];
|
|
255
271
|
}
|
|
256
|
-
const
|
|
257
|
-
return
|
|
272
|
+
const B = /* @__PURE__ */ function() {
|
|
273
|
+
return v.exports;
|
|
258
274
|
}();
|
|
259
275
|
export {
|
|
260
|
-
|
|
276
|
+
B as default
|
|
261
277
|
};
|
package/fy-form-design/index.mjs
CHANGED
|
@@ -1739,7 +1739,7 @@ function Le(e) {
|
|
|
1739
1739
|
const Ge = /* @__PURE__ */ function() {
|
|
1740
1740
|
return Ve.exports;
|
|
1741
1741
|
}();
|
|
1742
|
-
var
|
|
1742
|
+
var He = function() {
|
|
1743
1743
|
var e = this, l = e.$createElement, t = e._self._c || l;
|
|
1744
1744
|
return t("div", [t("ElFormItem", {
|
|
1745
1745
|
attrs: {
|
|
@@ -1822,7 +1822,7 @@ var Ue = function() {
|
|
|
1822
1822
|
expression: "data.maxRows"
|
|
1823
1823
|
}
|
|
1824
1824
|
})], 1)], 1);
|
|
1825
|
-
},
|
|
1825
|
+
}, Ue = [];
|
|
1826
1826
|
const Je = {
|
|
1827
1827
|
name: "ConfigTextarea",
|
|
1828
1828
|
props: {
|
|
@@ -1831,8 +1831,8 @@ const Je = {
|
|
|
1831
1831
|
}, W = {};
|
|
1832
1832
|
var Ye = /* @__PURE__ */ c(
|
|
1833
1833
|
Je,
|
|
1834
|
-
Ue,
|
|
1835
1834
|
He,
|
|
1835
|
+
Ue,
|
|
1836
1836
|
!1,
|
|
1837
1837
|
Xe,
|
|
1838
1838
|
null,
|
|
@@ -3718,7 +3718,7 @@ function Lt(e) {
|
|
|
3718
3718
|
const Gt = /* @__PURE__ */ function() {
|
|
3719
3719
|
return Vt.exports;
|
|
3720
3720
|
}();
|
|
3721
|
-
var
|
|
3721
|
+
var Ht = function() {
|
|
3722
3722
|
var e = this, l = e.$createElement, t = e._self._c || l;
|
|
3723
3723
|
return t("div", [e.data.type.indexOf("range") !== -1 ? [t("ElFormItem", {
|
|
3724
3724
|
attrs: {
|
|
@@ -3817,7 +3817,7 @@ var Ut = function() {
|
|
|
3817
3817
|
expression: "data.unlinkPanels"
|
|
3818
3818
|
}
|
|
3819
3819
|
})], 1) : e._e()], 2);
|
|
3820
|
-
},
|
|
3820
|
+
}, Ut = [];
|
|
3821
3821
|
const Jt = {
|
|
3822
3822
|
name: "ConfigDate",
|
|
3823
3823
|
props: {
|
|
@@ -3826,8 +3826,8 @@ const Jt = {
|
|
|
3826
3826
|
}, K = {};
|
|
3827
3827
|
var Yt = /* @__PURE__ */ c(
|
|
3828
3828
|
Jt,
|
|
3829
|
-
Ut,
|
|
3830
3829
|
Ht,
|
|
3830
|
+
Ut,
|
|
3831
3831
|
!1,
|
|
3832
3832
|
Xt,
|
|
3833
3833
|
null,
|
|
@@ -4918,7 +4918,7 @@ const Ba = {
|
|
|
4918
4918
|
options: ["100", "200", "300", "400", "500", "600", "700", "800", "900", "blod", "bloder", "inherit", "initial", "lighter", "normal", "revert", "unset"]
|
|
4919
4919
|
};
|
|
4920
4920
|
}
|
|
4921
|
-
},
|
|
4921
|
+
}, H = {};
|
|
4922
4922
|
var Wa = /* @__PURE__ */ c(
|
|
4923
4923
|
Ba,
|
|
4924
4924
|
Aa,
|
|
@@ -4930,8 +4930,8 @@ var Wa = /* @__PURE__ */ c(
|
|
|
4930
4930
|
null
|
|
4931
4931
|
);
|
|
4932
4932
|
function Ta(e) {
|
|
4933
|
-
for (let l in
|
|
4934
|
-
this[l] =
|
|
4933
|
+
for (let l in H)
|
|
4934
|
+
this[l] = H[l];
|
|
4935
4935
|
}
|
|
4936
4936
|
const Ma = /* @__PURE__ */ function() {
|
|
4937
4937
|
return Wa.exports;
|
|
@@ -5077,7 +5077,7 @@ const Pa = {
|
|
|
5077
5077
|
});
|
|
5078
5078
|
});
|
|
5079
5079
|
}
|
|
5080
|
-
},
|
|
5080
|
+
}, U = {};
|
|
5081
5081
|
var ja = /* @__PURE__ */ c(
|
|
5082
5082
|
Pa,
|
|
5083
5083
|
za,
|
|
@@ -5089,8 +5089,8 @@ var ja = /* @__PURE__ */ c(
|
|
|
5089
5089
|
null
|
|
5090
5090
|
);
|
|
5091
5091
|
function Da(e) {
|
|
5092
|
-
for (let l in
|
|
5093
|
-
this[l] =
|
|
5092
|
+
for (let l in U)
|
|
5093
|
+
this[l] = U[l];
|
|
5094
5094
|
}
|
|
5095
5095
|
const Qa = /* @__PURE__ */ function() {
|
|
5096
5096
|
return ja.exports;
|
|
@@ -5439,10 +5439,10 @@ function Ga(e) {
|
|
|
5439
5439
|
for (let l in J)
|
|
5440
5440
|
this[l] = J[l];
|
|
5441
5441
|
}
|
|
5442
|
-
const
|
|
5442
|
+
const Ha = /* @__PURE__ */ function() {
|
|
5443
5443
|
return La.exports;
|
|
5444
5444
|
}();
|
|
5445
|
-
var
|
|
5445
|
+
var Ua = function() {
|
|
5446
5446
|
var e = this, l = e.$createElement, t = e._self._c || l;
|
|
5447
5447
|
return t("div", [t("ElFormItem", {
|
|
5448
5448
|
attrs: {
|
|
@@ -5729,7 +5729,7 @@ var Ha = function() {
|
|
|
5729
5729
|
}, Ja = [];
|
|
5730
5730
|
const Ya = {
|
|
5731
5731
|
name: "ConfigTable",
|
|
5732
|
-
components: { MonacoEditor: b, AfdColumn:
|
|
5732
|
+
components: { MonacoEditor: b, AfdColumn: Ha },
|
|
5733
5733
|
props: {
|
|
5734
5734
|
data: Object
|
|
5735
5735
|
},
|
|
@@ -5828,7 +5828,7 @@ const Ya = {
|
|
|
5828
5828
|
}, Y = {};
|
|
5829
5829
|
var Xa = /* @__PURE__ */ c(
|
|
5830
5830
|
Ya,
|
|
5831
|
-
|
|
5831
|
+
Ua,
|
|
5832
5832
|
Ja,
|
|
5833
5833
|
!1,
|
|
5834
5834
|
Za,
|
|
@@ -7174,11 +7174,14 @@ const dl = {
|
|
|
7174
7174
|
maxStep: 20,
|
|
7175
7175
|
steps: [yield this.transAvueOptionsToFormDesigner(p(p({}, this.widgetForm), e))],
|
|
7176
7176
|
storage: this.storage
|
|
7177
|
-
}), this.undoRedo && window.addEventListener("keydown", (
|
|
7178
|
-
|
|
7179
|
-
}
|
|
7177
|
+
}), this.undoRedo && (window.addEventListener("keydown", this.undoRedoHandler, !1), this.$once("hook:beforeDestroy", () => {
|
|
7178
|
+
document.removeEventListener("click", this.undoRedoHandler);
|
|
7179
|
+
}));
|
|
7180
7180
|
});
|
|
7181
7181
|
},
|
|
7182
|
+
undoRedoHandler(e) {
|
|
7183
|
+
(e.metaKey && !e.shiftKey && e.keyCode === 90 || e.ctrlKey && !e.shiftKey && e.keyCode === 90) && (this.widgetForm = this.handleUndo()), (e.metaKey && e.shiftKey && e.keyCode === 90 || e.ctrlKey && e.shiftKey && e.keyCode === 90 || e.ctrlKey && e.keyCode === 89) && (this.widgetForm = this.handleRedo());
|
|
7184
|
+
},
|
|
7182
7185
|
// 加载icon
|
|
7183
7186
|
handleLoadCss() {
|
|
7184
7187
|
const e = document.getElementsByTagName("head")[0], l = document.createElement("link");
|
package/fy-input-map/index.mjs
CHANGED
|
@@ -211,7 +211,8 @@ const f = {
|
|
|
211
211
|
});
|
|
212
212
|
},
|
|
213
213
|
handleClose() {
|
|
214
|
-
|
|
214
|
+
var e;
|
|
215
|
+
(e = this.poiPicker) == null || e.clearSearchResults();
|
|
215
216
|
},
|
|
216
217
|
addClick() {
|
|
217
218
|
this.map.on("click", (e) => {
|
|
@@ -244,7 +245,7 @@ const f = {
|
|
|
244
245
|
});
|
|
245
246
|
},
|
|
246
247
|
poiPickerReady(e) {
|
|
247
|
-
|
|
248
|
+
this.poiPicker = e, e.on("poiPicked", (t) => {
|
|
248
249
|
this.clearMarker();
|
|
249
250
|
const s = t.source, i = t.item;
|
|
250
251
|
this.poi = Object.assign(i, {
|
|
@@ -270,9 +271,9 @@ function g(e) {
|
|
|
270
271
|
for (let t in l)
|
|
271
272
|
this[t] = l[t];
|
|
272
273
|
}
|
|
273
|
-
const
|
|
274
|
+
const w = /* @__PURE__ */ function() {
|
|
274
275
|
return k.exports;
|
|
275
276
|
}();
|
|
276
277
|
export {
|
|
277
|
-
|
|
278
|
+
w as default
|
|
278
279
|
};
|
package/fy-tree/index.mjs
CHANGED
|
@@ -293,12 +293,15 @@ const v = {
|
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
295
|
mounted() {
|
|
296
|
-
document.addEventListener("click", (
|
|
297
|
-
|
|
296
|
+
document.addEventListener("click", this.hideClient), this.$once("hook:beforeDestroy", () => {
|
|
297
|
+
document.removeEventListener("click", this.hideClient);
|
|
298
298
|
}), this.initFun();
|
|
299
299
|
},
|
|
300
300
|
methods: {
|
|
301
301
|
optVal: l,
|
|
302
|
+
hideClient(e) {
|
|
303
|
+
this.$el.contains(e.target) || (this.client.show = !1);
|
|
304
|
+
},
|
|
302
305
|
menuIcon(e) {
|
|
303
306
|
return l(this.option[`${e}Text`], e);
|
|
304
307
|
},
|
package/monaco-editor/index.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
var c = Object.defineProperty;
|
|
2
|
-
var
|
|
2
|
+
var d = Object.getOwnPropertySymbols;
|
|
3
3
|
var f = Object.prototype.hasOwnProperty, g = Object.prototype.propertyIsEnumerable;
|
|
4
|
-
var
|
|
4
|
+
var r = (t, e, i) => e in t ? c(t, e, { enumerable: !0, configurable: !0, writable: !0, value: i }) : t[e] = i, h = (t, e) => {
|
|
5
5
|
for (var i in e || (e = {}))
|
|
6
|
-
f.call(e, i) &&
|
|
7
|
-
if (
|
|
8
|
-
for (var i of
|
|
9
|
-
g.call(e, i) &&
|
|
6
|
+
f.call(e, i) && r(t, i, e[i]);
|
|
7
|
+
if (d)
|
|
8
|
+
for (var i of d(e))
|
|
9
|
+
g.call(e, i) && r(t, i, e[i]);
|
|
10
10
|
return t;
|
|
11
11
|
};
|
|
12
12
|
import * as o from "monaco-editor/esm/vs/editor/editor.api";
|
|
@@ -106,17 +106,17 @@ const p = {
|
|
|
106
106
|
}, t.classList.add("editor-fullscreen"), this.editor.layout({
|
|
107
107
|
height: document.body.clientHeight,
|
|
108
108
|
width: document.body.clientWidth
|
|
109
|
-
}), document.addEventListener("keyup",
|
|
110
|
-
|
|
111
|
-
|
|
109
|
+
}), document.addEventListener("keyup", this.handleEsc);
|
|
110
|
+
},
|
|
111
|
+
handleEsc(t) {
|
|
112
|
+
t.keyCode === 27 && this.minEditor();
|
|
112
113
|
},
|
|
113
114
|
// 缩小
|
|
114
115
|
minEditor() {
|
|
115
116
|
this.isMaximum = !1, this.$el.classList.remove("editor-fullscreen"), this.editor.layout({
|
|
116
117
|
height: this.originSize.height,
|
|
117
118
|
width: this.originSize.width
|
|
118
|
-
}), document.removeEventListener("keyup",
|
|
119
|
-
});
|
|
119
|
+
}), document.removeEventListener("keyup", this.handleEsc);
|
|
120
120
|
},
|
|
121
121
|
_getEditor() {
|
|
122
122
|
return this.editor ? this.diffEditor ? this.editor.modifiedEditor : this.editor : null;
|
|
@@ -179,12 +179,12 @@ var M = /* @__PURE__ */ m(
|
|
|
179
179
|
_,
|
|
180
180
|
y,
|
|
181
181
|
!1,
|
|
182
|
-
|
|
182
|
+
E,
|
|
183
183
|
null,
|
|
184
184
|
null,
|
|
185
185
|
null
|
|
186
186
|
);
|
|
187
|
-
function
|
|
187
|
+
function E(t) {
|
|
188
188
|
for (let e in u)
|
|
189
189
|
this[e] = u[e];
|
|
190
190
|
}
|
package/package.json
CHANGED
package/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@web-utils/component",
|
|
5
|
-
"version": "2.9.
|
|
5
|
+
"version": "2.9.2",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"description-markup": "markdown",
|
|
@@ -889,7 +889,15 @@
|
|
|
889
889
|
"kind": "expression",
|
|
890
890
|
"type": "boolean"
|
|
891
891
|
},
|
|
892
|
-
"default": "
|
|
892
|
+
"default": ""
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"name": "appendToBody",
|
|
896
|
+
"value": {
|
|
897
|
+
"kind": "expression",
|
|
898
|
+
"type": "boolean"
|
|
899
|
+
},
|
|
900
|
+
"default": ""
|
|
893
901
|
},
|
|
894
902
|
{
|
|
895
903
|
"name": "arrow",
|