@web-utils/component 2.8.30 → 2.9.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/context-menu/index.mjs +17 -15
- package/custom-scrollbar/index.mjs +60 -111
- package/element-dialog/index.mjs +42 -26
- package/package.json +7 -2
- package/web-types.json +19 -19
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;
|
|
@@ -1,93 +1,42 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}, a = (t, e) => h(t, d(e));
|
|
13
|
-
import r from "overlayscrollbars";
|
|
14
|
-
import "overlayscrollbars/css/OverlayScrollbars.css";
|
|
15
|
-
import { n as f } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
16
|
-
var u = function() {
|
|
17
|
-
var t = this, e = t.$createElement, s = t._self._c || e;
|
|
18
|
-
return s("div", {
|
|
19
|
-
staticClass: "os-host"
|
|
20
|
-
}, [s("div", {
|
|
21
|
-
staticClass: "os-resize-observer-host"
|
|
22
|
-
}), s("div", {
|
|
23
|
-
staticClass: "os-padding"
|
|
24
|
-
}, [s("div", {
|
|
25
|
-
ref: "viewport",
|
|
26
|
-
staticClass: "os-viewport"
|
|
27
|
-
}, [s("div", {
|
|
28
|
-
ref: "content",
|
|
29
|
-
staticClass: "os-content"
|
|
30
|
-
}, [t._t("default")], 2)])]), t._m(0), t._m(1), s("div", {
|
|
31
|
-
staticClass: "os-scrollbar-corner"
|
|
32
|
-
})]);
|
|
33
|
-
}, m = [function() {
|
|
34
|
-
var t = this, e = t.$createElement, s = t._self._c || e;
|
|
35
|
-
return s("div", {
|
|
36
|
-
staticClass: "os-scrollbar os-scrollbar-horizontal "
|
|
37
|
-
}, [s("div", {
|
|
38
|
-
staticClass: "os-scrollbar-track"
|
|
39
|
-
}, [s("div", {
|
|
40
|
-
staticClass: "os-scrollbar-handle"
|
|
41
|
-
})])]);
|
|
42
|
-
}, function() {
|
|
43
|
-
var t = this, e = t.$createElement, s = t._self._c || e;
|
|
44
|
-
return s("div", {
|
|
45
|
-
staticClass: "os-scrollbar os-scrollbar-vertical"
|
|
46
|
-
}, [s("div", {
|
|
47
|
-
staticClass: "os-scrollbar-track"
|
|
48
|
-
}, [s("div", {
|
|
49
|
-
staticClass: "os-scrollbar-handle"
|
|
50
|
-
})])]);
|
|
51
|
-
}];
|
|
52
|
-
const _ = {
|
|
1
|
+
import "overlayscrollbars/overlayscrollbars.css";
|
|
2
|
+
import { OverlayScrollbars as r } from "overlayscrollbars";
|
|
3
|
+
import c from "lodash/defaults";
|
|
4
|
+
import { n as a } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
5
|
+
var h = function() {
|
|
6
|
+
var t = this, e = t.$createElement, o = t._self._c || e;
|
|
7
|
+
return o(t.element, {
|
|
8
|
+
tag: "Component"
|
|
9
|
+
}, [t._t("default")], 2);
|
|
10
|
+
}, p = [];
|
|
11
|
+
const u = {
|
|
53
12
|
name: "CustomScrollbar",
|
|
54
13
|
props: {
|
|
55
|
-
|
|
56
|
-
type:
|
|
57
|
-
default:
|
|
58
|
-
},
|
|
59
|
-
extensions: {
|
|
60
|
-
type: [String, Array, Object],
|
|
61
|
-
default: void 0
|
|
14
|
+
element: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "div"
|
|
62
17
|
},
|
|
18
|
+
options: Object,
|
|
63
19
|
theme: {
|
|
64
20
|
type: String,
|
|
65
|
-
default:
|
|
66
|
-
},
|
|
67
|
-
onLoadMore: {
|
|
68
|
-
type: Function,
|
|
69
|
-
default: null
|
|
70
|
-
},
|
|
71
|
-
onScroll: {
|
|
72
|
-
type: Function
|
|
73
|
-
},
|
|
74
|
-
reverse: {
|
|
75
|
-
type: Boolean,
|
|
76
|
-
default: !1
|
|
21
|
+
default: "os-theme-dark"
|
|
77
22
|
},
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
23
|
+
onLoadMore: Function,
|
|
24
|
+
onScroll: Function,
|
|
25
|
+
reverse: Boolean
|
|
26
|
+
},
|
|
27
|
+
data() {
|
|
28
|
+
return {
|
|
29
|
+
scrollTop: 0
|
|
30
|
+
};
|
|
82
31
|
},
|
|
83
32
|
computed: {
|
|
84
33
|
innerOptions() {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
34
|
+
return c(
|
|
35
|
+
{
|
|
36
|
+
scrollbars: { autoHide: "leave", autoHideDelay: 100, theme: this.theme }
|
|
37
|
+
},
|
|
38
|
+
this.options
|
|
39
|
+
);
|
|
91
40
|
}
|
|
92
41
|
},
|
|
93
42
|
watch: {
|
|
@@ -97,71 +46,71 @@ const _ = {
|
|
|
97
46
|
}
|
|
98
47
|
},
|
|
99
48
|
mounted() {
|
|
100
|
-
this.
|
|
101
|
-
this
|
|
102
|
-
this.
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
}
|
|
107
|
-
this.extensions
|
|
49
|
+
this.scroller = r(
|
|
50
|
+
this.$el,
|
|
51
|
+
this.innerOptions,
|
|
52
|
+
{
|
|
53
|
+
scroll: this.internalScroll,
|
|
54
|
+
initialized: this.initialized
|
|
55
|
+
}
|
|
108
56
|
);
|
|
109
57
|
},
|
|
110
58
|
activated() {
|
|
111
59
|
var t;
|
|
112
|
-
this
|
|
60
|
+
this.viewport.scrollTop = (t = this.scrollTop) != null ? t : 0;
|
|
113
61
|
},
|
|
114
62
|
deactivated() {
|
|
115
|
-
this.
|
|
63
|
+
this.scrollTop = this.viewport.scrollTop;
|
|
116
64
|
},
|
|
117
65
|
beforeDestroy() {
|
|
118
66
|
const t = this.scroller;
|
|
119
67
|
r.valid(t) && (t.destroy(), this.scroller = null);
|
|
120
68
|
},
|
|
121
69
|
methods: {
|
|
70
|
+
initialized(t) {
|
|
71
|
+
const { viewport: e } = t.elements();
|
|
72
|
+
this.viewport = e;
|
|
73
|
+
},
|
|
122
74
|
scrollBottom() {
|
|
123
|
-
this
|
|
75
|
+
this.viewport.scrollTop = this.viewport.scrollHeight;
|
|
124
76
|
},
|
|
125
77
|
getScroller() {
|
|
126
78
|
return this.scroller;
|
|
127
79
|
},
|
|
128
80
|
getScrollHeight() {
|
|
129
|
-
return this
|
|
81
|
+
return this.viewport.scrollHeight;
|
|
130
82
|
},
|
|
131
83
|
setScrollTop(t) {
|
|
132
|
-
this
|
|
133
|
-
},
|
|
134
|
-
getContentWrapper() {
|
|
135
|
-
return this.textarea ? this.$refs.content.querySelector("textarea") : this.$el;
|
|
84
|
+
this.viewport.scrollTop = t;
|
|
136
85
|
},
|
|
137
|
-
internalScroll(t) {
|
|
138
|
-
|
|
139
|
-
const
|
|
140
|
-
if (!this.reverse && Math.ceil(
|
|
141
|
-
this.onLoadMore
|
|
86
|
+
internalScroll(t, e) {
|
|
87
|
+
var l, i, s;
|
|
88
|
+
const o = this.viewport;
|
|
89
|
+
if ((l = this.onScroll) == null || l.call(this, e), !this.reverse && Math.ceil(o.clientHeight + o.scrollTop) >= o.scrollHeight) {
|
|
90
|
+
(i = this.onLoadMore) == null || i.call(this);
|
|
142
91
|
return;
|
|
143
92
|
}
|
|
144
|
-
this.reverse &&
|
|
93
|
+
this.reverse && o.scrollTop === 0 && ((s = this.onLoadMore) == null || s.call(this));
|
|
145
94
|
}
|
|
146
95
|
}
|
|
147
96
|
}, n = {};
|
|
148
|
-
var
|
|
149
|
-
_,
|
|
97
|
+
var d = /* @__PURE__ */ a(
|
|
150
98
|
u,
|
|
151
|
-
|
|
99
|
+
h,
|
|
100
|
+
p,
|
|
152
101
|
!1,
|
|
153
|
-
|
|
102
|
+
v,
|
|
154
103
|
null,
|
|
155
104
|
null,
|
|
156
105
|
null
|
|
157
106
|
);
|
|
158
|
-
function
|
|
107
|
+
function v(t) {
|
|
159
108
|
for (let e in n)
|
|
160
109
|
this[e] = n[e];
|
|
161
110
|
}
|
|
162
|
-
const
|
|
163
|
-
return
|
|
111
|
+
const g = /* @__PURE__ */ function() {
|
|
112
|
+
return d.exports;
|
|
164
113
|
}();
|
|
165
114
|
export {
|
|
166
|
-
|
|
115
|
+
g as default
|
|
167
116
|
};
|
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@web-utils/component",
|
|
3
3
|
"description": "Web Components",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.9.1",
|
|
5
5
|
"author": "Simple",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -13,5 +13,10 @@
|
|
|
13
13
|
},
|
|
14
14
|
"./*": "./*"
|
|
15
15
|
},
|
|
16
|
-
"web-types": "web-types.json"
|
|
16
|
+
"web-types": "web-types.json",
|
|
17
|
+
"sideEffects": [
|
|
18
|
+
"*.css",
|
|
19
|
+
"*.scss",
|
|
20
|
+
"*.sass"
|
|
21
|
+
]
|
|
17
22
|
}
|
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.
|
|
5
|
+
"version": "2.9.1",
|
|
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",
|
|
@@ -1027,20 +1035,20 @@
|
|
|
1027
1035
|
"description": "",
|
|
1028
1036
|
"attributes": [
|
|
1029
1037
|
{
|
|
1030
|
-
"name": "
|
|
1038
|
+
"name": "element",
|
|
1031
1039
|
"value": {
|
|
1032
1040
|
"kind": "expression",
|
|
1033
|
-
"type": "
|
|
1041
|
+
"type": "string"
|
|
1034
1042
|
},
|
|
1035
|
-
"default": "
|
|
1043
|
+
"default": "'div'"
|
|
1036
1044
|
},
|
|
1037
1045
|
{
|
|
1038
|
-
"name": "
|
|
1046
|
+
"name": "options",
|
|
1039
1047
|
"value": {
|
|
1040
1048
|
"kind": "expression",
|
|
1041
|
-
"type": "
|
|
1049
|
+
"type": "object"
|
|
1042
1050
|
},
|
|
1043
|
-
"default": "
|
|
1051
|
+
"default": ""
|
|
1044
1052
|
},
|
|
1045
1053
|
{
|
|
1046
1054
|
"name": "theme",
|
|
@@ -1048,7 +1056,7 @@
|
|
|
1048
1056
|
"kind": "expression",
|
|
1049
1057
|
"type": "string"
|
|
1050
1058
|
},
|
|
1051
|
-
"default": "
|
|
1059
|
+
"default": "'os-theme-dark'"
|
|
1052
1060
|
},
|
|
1053
1061
|
{
|
|
1054
1062
|
"name": "onLoadMore",
|
|
@@ -1056,7 +1064,7 @@
|
|
|
1056
1064
|
"kind": "expression",
|
|
1057
1065
|
"type": "func"
|
|
1058
1066
|
},
|
|
1059
|
-
"default": "
|
|
1067
|
+
"default": ""
|
|
1060
1068
|
},
|
|
1061
1069
|
{
|
|
1062
1070
|
"name": "onScroll",
|
|
@@ -1072,15 +1080,7 @@
|
|
|
1072
1080
|
"kind": "expression",
|
|
1073
1081
|
"type": "boolean"
|
|
1074
1082
|
},
|
|
1075
|
-
"default": "
|
|
1076
|
-
},
|
|
1077
|
-
{
|
|
1078
|
-
"name": "textarea",
|
|
1079
|
-
"value": {
|
|
1080
|
-
"kind": "expression",
|
|
1081
|
-
"type": "boolean"
|
|
1082
|
-
},
|
|
1083
|
-
"default": "false"
|
|
1083
|
+
"default": ""
|
|
1084
1084
|
}
|
|
1085
1085
|
],
|
|
1086
1086
|
"slots": [
|