@joker.front/datav 1.0.2 → 1.0.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/dist/index.css +1 -1
- package/dist/index.mjs +202 -197
- package/dist/index.umd.js +1 -1
- package/dist_lowcode/index.css +1 -1
- package/dist_lowcode/index.lowcode.mjs +30 -25
- package/dist_lowcode/index.lowcode.umd.js +1 -1
- package/package.json +6 -6
- package/shims.d.ts +5 -0
package/dist/index.mjs
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
var ue = Object.defineProperty;
|
2
2
|
var be = (e, l, o) => l in e ? ue(e, l, { enumerable: !0, configurable: !0, writable: !0, value: o }) : e[l] = o;
|
3
3
|
var t = (e, l, o) => be(e, typeof l != "symbol" ? l + "" : l, o);
|
4
|
-
import { Component as ye, VNode as Re, SCOPE_ID as d,
|
4
|
+
import { Component as ye, VNode as Re, SCOPE_ID as d, combinedReply as ve, registerGlobalComponent as Ce } from "@joker.front/core";
|
5
5
|
function c(e = 32) {
|
6
6
|
let l = [], o = [
|
7
7
|
"0",
|
@@ -47,10 +47,10 @@ function c(e = 32) {
|
|
47
47
|
}
|
48
48
|
return l.join("");
|
49
49
|
}
|
50
|
-
function
|
50
|
+
function ke(e, l = "-") {
|
51
51
|
return e = e || "", e.split(/(?=[A-Z])/).map((i) => i.toLowerCase()).join(l);
|
52
52
|
}
|
53
|
-
function
|
53
|
+
function Se(e, l, o = {}) {
|
54
54
|
let i, r = !1, n = 0, s = () => {
|
55
55
|
i && clearTimeout(i);
|
56
56
|
}, g = (h) => {
|
@@ -70,21 +70,19 @@ function ke(e, l, o = {}) {
|
|
70
70
|
}
|
71
71
|
return m.cancel = g, m;
|
72
72
|
}
|
73
|
-
function
|
74
|
-
return
|
73
|
+
function Le(e, l, o = !1) {
|
74
|
+
return Se(e, l, { debounceMode: o !== !1 });
|
75
75
|
}
|
76
76
|
class a extends ye {
|
77
77
|
constructor(...o) {
|
78
78
|
super(...o);
|
79
79
|
t(this, "container");
|
80
|
-
t(this, "debounceInitWHFun",
|
80
|
+
t(this, "debounceInitWHFun", Le(100, this.initSize.bind(this)));
|
81
81
|
t(this, "resize");
|
82
82
|
t(this, "domObserver");
|
83
83
|
this.model.width = 0, this.model.height = 0, this.$on("mounted", () => {
|
84
|
-
|
85
|
-
|
86
|
-
this.container = this.$rootVNode.first((r) => r instanceof Re.Element).output, this.container && (this.initSize(), (i = this.resize) == null || i.call(this), this.bindDomResizeCallback());
|
87
|
-
});
|
84
|
+
var i;
|
85
|
+
this.container = this.$rootVNode.first((r) => r instanceof Re.Element).output, this.container && (this.initSize(), (i = this.resize) == null || i.call(this), this.bindDomResizeCallback());
|
88
86
|
}), this.$on("beforeDestroy", () => {
|
89
87
|
this.unbindDomResizeCallback();
|
90
88
|
});
|
@@ -94,22 +92,26 @@ class a extends ye {
|
|
94
92
|
this.container && (this.model.width = this.container.clientWidth, this.model.height = this.container.clientHeight, (o = this.resize) == null || o.call(this));
|
95
93
|
}
|
96
94
|
bindDomResizeCallback() {
|
97
|
-
this.container && (this.domObserver =
|
95
|
+
this.container && (this.domObserver = xe(this.container, this.debounceInitWHFun), window.addEventListener("resize", this.debounceInitWHFun));
|
98
96
|
}
|
99
97
|
unbindDomResizeCallback() {
|
100
98
|
this.container && (this.domObserver && (this.domObserver.disconnect(), this.domObserver.takeRecords()), window.removeEventListener("resize", this.debounceInitWHFun));
|
101
99
|
}
|
102
100
|
fade(o, i) {
|
101
|
+
if (o.startsWith("rgba"))
|
102
|
+
return o;
|
103
103
|
o = o.replace("#", "");
|
104
104
|
let r = parseInt(o.substring(0, 2), 16), n = parseInt(o.substring(2, 4), 16), s = parseInt(o.substring(4, 6), 16);
|
105
|
+
if (isNaN(r))
|
106
|
+
debugger;
|
105
107
|
return `rgba(${r},${n},${s},${i / 100})`;
|
106
108
|
}
|
107
109
|
}
|
108
|
-
function
|
110
|
+
function xe(e, l) {
|
109
111
|
let o = new MutationObserver(l);
|
110
112
|
return o.observe(e, { attributes: !0, attributeFilter: ["style"], attributeOldValue: !0 }), o;
|
111
113
|
}
|
112
|
-
class
|
114
|
+
class Ae extends a {
|
113
115
|
constructor() {
|
114
116
|
super(...arguments);
|
115
117
|
t(this, "propsOption", {
|
@@ -119,20 +121,20 @@ class xe extends a {
|
|
119
121
|
t(this, "border", ["left-top", "right-top", "left-bottom", "right-bottom"]);
|
120
122
|
}
|
121
123
|
}
|
122
|
-
let
|
124
|
+
let Ie = { render: function(e) {
|
123
125
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "border", width: "@model.width", height: "@model.height" }, [e.createElement("polygon", { fill: "@props.backgroundColor", points: "10, 27 10, @(model.height - 27) 13, @(model.height - 24) 13, @(model.height - 21) 24, @(model.height - 11) 38, @(model.height - 11) 41, @(model.height - 8) 73, @(model.height - 8) 75, @(model.height-10) 81, @(model.height - 10) 85, @(model.height - 6) @(model.width - 85), @(model.height - 6) @(model.width - 81), @(model.height - 10) @(model.width - 75), @(model.height - 10) @(model.width - 73), @(model.height - 8) @(model.width - 41), @(model.height - 8) @(model.width-38), @(model.height - 11) @(model.width - 24), @(model.height - 11) @(model.width - 13), @(model.height - 21) @(model.width -13), @(model.height - 24) @(model.width - 10), @(model.height - 27) @(model.width - 10), 27 @(model.width - 13), 25 @(model.width -13), 21 @(model.width - 24), 11 @(model.width - 38), 11 @(model.width - 41), 8 @(model.width - 73), 8 @(model.width -75), 10 @(model.width - 81), 10 @(model.width -85), 6 85, 6 81, 10 75, 10 73, 8 41, 8 38, 11 24, 11 13, 21 13, 24" }, [])]), e.createCommand("for", "let item of border", [e.createElement("svg", { width: "150px", height: "150px", class: "@item border" }, [e.createElement("polygon", { fill: "@(props.colors[0])", points: "6,66 6,18 12,12 18,12 24,6 27,6 30,9 36,9 39,6 84,6 81,9 75,9 73.2,7 40.8,7 37.8,10.2 24,10.2 12,21 12,24 9,27 9,51 7.8,54 7.8,63" }, [e.createElement("animate", { attributeName: "fill", values: "@(props.colors[0]);@(props.colors[1]);@(props.colors[0])", dur: "0.5s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("polygon", { fill: "@(props.colors[1])", points: "27.599999999999998,4.8 38.4,4.8 35.4,7.8 30.599999999999998,7.8" }, [e.createElement("animate", { attributeName: "fill", values: "@(props.colors[1]);@(props.colors[0]);@(props.colors[1])", dur: "0.5s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("polygon", { fill: "@(props.colors[0])", points: "9,54 9,63 7.199999999999999,66 7.199999999999999,75 7.8,78 7.8,110 8.4,110 8.4,66 9.6,66 9.6,54" }, [e.createElement("animate", { attributeName: "fill", values: "@(props.colors[0]);@(props.colors[1]);transparent", dur: "1s", begin: "0s", repeatCount: "indefinite" }, [])])])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
124
|
-
} },
|
125
|
-
component:
|
126
|
+
} }, Pe = {
|
127
|
+
component: Ae
|
126
128
|
};
|
127
129
|
var v, C;
|
128
|
-
let
|
130
|
+
let Te = class extends (C = Pe.component, v = d, C) {
|
129
131
|
constructor() {
|
130
132
|
super(...arguments);
|
131
133
|
t(this, v, "2b4d949b");
|
132
|
-
t(this, "template",
|
134
|
+
t(this, "template", Ie.render);
|
133
135
|
}
|
134
136
|
};
|
135
|
-
class
|
137
|
+
class Ne extends a {
|
136
138
|
constructor() {
|
137
139
|
super(...arguments);
|
138
140
|
t(this, "propsOption", {
|
@@ -141,20 +143,20 @@ class Te extends a {
|
|
141
143
|
});
|
142
144
|
}
|
143
145
|
}
|
144
|
-
let
|
146
|
+
let Oe = { render: function(e) {
|
145
147
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("polygon", { fill: "@props.backgroundColor", points: "7, 7 @(model.width-7), 7 @(model.width-7), @(model.height-7) 7, @(model.height-7)" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "2, 2 @(model.width-2) ,2 @(model.width-2), @(model.height-2) 2, @(model.height-2) 2, 2" }, []), e.createElement("polyline", { stroke: "@props.colors[1]", points: "6, 6 @(model.width-6), 6 @(model.width-6), @(model.height-6) 6, @(model.height-6) 6, 6" }, []), e.createElement("circle", { fill: "@props.colors[0]", cx: "11", cy: "11", r: "1" }, []), e.createElement("circle", { fill: "@props.colors[0]", cx: "@(model.width - 11)", cy: "11", r: "1" }, []), e.createElement("circle", { fill: "@props.colors[0]", cx: "@(model.width - 11)", cy: "@(model.height - 11)", r: "1" }, []), e.createElement("circle", { fill: "@props.colors[0]", cx: "11", cy: "@(model.height - 11)", r: "1" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
146
|
-
} },
|
147
|
-
component:
|
148
|
+
} }, $e = {
|
149
|
+
component: Ne
|
148
150
|
};
|
149
151
|
var k, S;
|
150
|
-
let
|
152
|
+
let Me = class extends (S = $e.component, k = d, S) {
|
151
153
|
constructor() {
|
152
154
|
super(...arguments);
|
153
155
|
t(this, k, "3b9d3fa6");
|
154
|
-
t(this, "template",
|
156
|
+
t(this, "template", Oe.render);
|
155
157
|
}
|
156
158
|
};
|
157
|
-
class
|
159
|
+
class De extends a {
|
158
160
|
constructor() {
|
159
161
|
super(...arguments);
|
160
162
|
t(this, "propsOption", {
|
@@ -163,20 +165,20 @@ class Me extends a {
|
|
163
165
|
});
|
164
166
|
}
|
165
167
|
}
|
166
|
-
let
|
168
|
+
let Fe = { render: function(e) {
|
167
169
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("polygon", { fill: "@props.backgroundColor", points: "23, 23 @(model.width-24), 23 @(model.width-24), @(model.height-24) 23, @(model.height-24)" }, []), e.createElement("polyline", { class: "dv-bb3-line1", stroke: "@props.colors[0]", points: "4, 4 @(model.width-22) ,4 @(model.width-22), @(model.height-22) 4, @(model.height-22) 4, 4" }, []), e.createElement("polyline", { class: "dv-bb3-line2", stroke: "@props.colors[1]", points: "10, 10 @(model.width-16), 10 @(model.width-16), @(model.height-16) 10, @(model.height-16) 10, 10" }, []), e.createElement("polyline", { class: "dv-bb3-line2", stroke: "@props.colors[1]", points: "16, 16 @(model.width-10), 16 @(model.width-10), @(model.height-10) 16, @(model.height-10) 16, 16" }, []), e.createElement("polyline", { class: "dv-bb3-line2", stroke: "@props.colors[1]", points: "22, 22 @(model.width-4), 22 @(model.width-4), @(model.height-4) 22, @(model.height-4) 22, 22" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
168
|
-
} },
|
169
|
-
component:
|
170
|
+
} }, Je = {
|
171
|
+
component: De
|
170
172
|
};
|
171
173
|
var L, x;
|
172
|
-
let
|
174
|
+
let Ke = class extends (x = Je.component, L = d, x) {
|
173
175
|
constructor() {
|
174
176
|
super(...arguments);
|
175
177
|
t(this, L, "113d37b6");
|
176
|
-
t(this, "template",
|
178
|
+
t(this, "template", Fe.render);
|
177
179
|
}
|
178
180
|
};
|
179
|
-
class
|
181
|
+
class We extends a {
|
180
182
|
constructor() {
|
181
183
|
super(...arguments);
|
182
184
|
t(this, "propsOption", {
|
@@ -185,20 +187,20 @@ class Ke extends a {
|
|
185
187
|
});
|
186
188
|
}
|
187
189
|
}
|
188
|
-
let
|
190
|
+
let He = { render: function(e) {
|
189
191
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container @(props.reverse && 'dv-reverse')", width: "@model.width", height: "@model.height" }, [e.createElement("polygon", { fill: "@props.backgroundColor", points: "@(model.width-15), 22 170, 22 150, 7 40, 7 28, 21 32, 24 16, 42 16, @(model.height-32) 41, @(model.height-7) @(model.width-15), @(model.height-7)" }, []), e.createElement("polyline", { class: "dv-bb4-line-1", stroke: "@props.colors[0]", points: "145, @(model.height-5) 40, @(model.height-5) 10, @(model.height-35) 10, 40 40, 5 150, 5 170, 20 @(model.width-15), 20" }, []), e.createElement("polyline", { stroke: "@props.colors[1]", class: "dv-bb4-line-2", points: "245, @(model.height-1) 36, @(model.height-1) 14,@(model.height-23) 14, @(model.height-100)" }, []), e.createElement("polyline", { class: "dv-bb4-line-3", stroke: "@props.colors[0]", points: "7, @(model.height-40) 7, @(model.height-75)" }, []), e.createElement("polyline", { class: "dv-bb4-line-4", stroke: "@props.colors[0]", points: "28, 24 13, 41 13, 64" }, []), e.createElement("polyline", { class: "dv-bb4-line-5", stroke: "@props.colors[0]", points: "5, 45 5, 140" }, []), e.createElement("polyline", { class: "dv-bb4-line-6", stroke: "@props.colors[1]", points: "14, 75 14, 180" }, []), e.createElement("polyline", { class: "dv-bb4-line-7", stroke: "@props.colors[1]", points: "55, 11 147, 11 167, 26 250, 26" }, []), e.createElement("polyline", { class: "dv-bb4-line-8", stroke: "@props.colors[1]", points: "158, 5 173, 16" }, []), e.createElement("polyline", { class: "dv-bb4-line-9", stroke: "@props.colors[0]", points: "200, 17 @(model.width-10), 17" }, []), e.createElement("polyline", { class: "dv-bb4-line-10", stroke: "@props.colors[1]", points: "385, 17 @(model.width-10), 17" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
190
|
-
} },
|
191
|
-
component:
|
192
|
+
} }, ze = {
|
193
|
+
component: We
|
192
194
|
};
|
193
195
|
var A, I;
|
194
|
-
let
|
196
|
+
let Be = class extends (I = ze.component, A = d, I) {
|
195
197
|
constructor() {
|
196
198
|
super(...arguments);
|
197
199
|
t(this, A, "237a53e4");
|
198
|
-
t(this, "template",
|
200
|
+
t(this, "template", He.render);
|
199
201
|
}
|
200
202
|
};
|
201
|
-
class
|
203
|
+
class Ge extends a {
|
202
204
|
constructor() {
|
203
205
|
super(...arguments);
|
204
206
|
t(this, "propsOption", {
|
@@ -207,20 +209,20 @@ class Be extends a {
|
|
207
209
|
});
|
208
210
|
}
|
209
211
|
}
|
210
|
-
let
|
212
|
+
let Xe = { render: function(e) {
|
211
213
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container @(props.reverse && 'dv-reverse')", width: "@model.width", height: "@model.height" }, [e.createElement("polygon", { fill: "@props.backgroundColor", points: "10, 22 @(model.width-22), 22 @(model.width-22), @(model.height-86) @(model.height-84), @(model.height-24) 10, @(model.height-24)" }, []), e.createElement("polyline", { class: "dv-bb5-line-1", stroke: "@props.colors[0]", points: "8, 5 @(model.width-5), 5 @(model.width-5), @(model.height-100) @(model.width-100), @(model.height-5) 8, @(model.height-5) 8, 5" }, []), e.createElement("polyline", { class: "dv-bb5-line-2", stroke: "@props.colors[1]", points: "3, 5 @(model.width-20), 5 @(model.width-20), @(model.height-60) @(model.width-74), @(model.height-5) 3, @(model.height-5) 3, 5" }, []), e.createElement("polyline", { class: "dv-bb5-line-3", stroke: "@props.colors[1]", points: "50, 13 @(model.width-35), 13" }, []), e.createElement("polyline", { class: "dv-bb5-line-4", stroke: "@props.colors[1]", points: "15, 20 @(model.width-35), 20" }, []), e.createElement("polyline", { class: "dv-bb5-line-5", stroke: "@props.colors[1]", points: "15, @(model.height-20) @(model.width-110), @(model.height-20)" }, []), e.createElement("polyline", { class: "dv-bb5-line-6", stroke: "@props.colors[1]", points: "15, @(model.height-13) @(model.width-110), @(model.height-13)" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
212
|
-
} },
|
213
|
-
component:
|
214
|
+
} }, Ue = {
|
215
|
+
component: Ge
|
214
216
|
};
|
215
217
|
var P, T;
|
216
|
-
let
|
218
|
+
let je = class extends (T = Ue.component, P = d, T) {
|
217
219
|
constructor() {
|
218
220
|
super(...arguments);
|
219
221
|
t(this, P, "6fd7b4d4");
|
220
|
-
t(this, "template",
|
222
|
+
t(this, "template", Xe.render);
|
221
223
|
}
|
222
224
|
};
|
223
|
-
class
|
225
|
+
class Qe extends a {
|
224
226
|
constructor() {
|
225
227
|
super(...arguments);
|
226
228
|
t(this, "propsOption", {
|
@@ -229,20 +231,20 @@ class je extends a {
|
|
229
231
|
});
|
230
232
|
}
|
231
233
|
}
|
232
|
-
let
|
234
|
+
let Ve = { render: function(e) {
|
233
235
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("polygon", { fill: "@props.backgroundColor", points: "9, 7 @(model.width-9), 7 @(model.width-9), @(model.height-7) 9, @(model.height-7)" }, []), e.createElement("circle", { fill: "@props.colors[1]", cx: "5", cy: "5", r: "2" }, []), e.createElement("circle", { fill: "@props.colors[1]", cx: "@(model.width - 5)", cy: "5", r: "2" }, []), e.createElement("circle", { fill: "@props.colors[1]", cx: "@(model.width - 5)", ":cy": "height - 5", r: "2" }, []), e.createElement("circle", { fill: "@props.colors[1]", cx: "5", cy: "@(model.height - 5)", r: "2" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "10, 4 @(model.width - 10), 4" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "10, @(model.height-4) @(model.width - 10), @(model.height-4)" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "5, 70 5, @(model.height-70)" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "@(model.width - 5), 70 @(model.width - 5), @(model.height-70)" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "3, 10, 3, 50" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "7, 30 7, 80" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "@(model.width - 3), 10 @(model.width - 3), 50" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "@(model.width - 7), 30 @(model.width - 7), 80" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "3, @(model.height-10) 3, @(model.height-50)" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "7, @(model.height-30) 7, @(model.height-80)" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "@(model.width-3), @(model.height-10) @(model.width-3), @(model.height-50)" }, []), e.createElement("polyline", { stroke: "@props.colors[0]", points: "@(model.width-7), @(model.height-30) @(model.width-7), @(model.height-80)" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
234
|
-
} },
|
235
|
-
component:
|
236
|
+
} }, qe = {
|
237
|
+
component: Qe
|
236
238
|
};
|
237
239
|
var N, O;
|
238
|
-
let
|
240
|
+
let Ze = class extends (O = qe.component, N = d, O) {
|
239
241
|
constructor() {
|
240
242
|
super(...arguments);
|
241
243
|
t(this, N, "ebdf6a26");
|
242
|
-
t(this, "template",
|
244
|
+
t(this, "template", Ve.render);
|
243
245
|
}
|
244
246
|
};
|
245
|
-
class
|
247
|
+
class Ye extends a {
|
246
248
|
constructor() {
|
247
249
|
super(...arguments);
|
248
250
|
t(this, "propsOption", {
|
@@ -251,20 +253,20 @@ class Ze extends a {
|
|
251
253
|
});
|
252
254
|
}
|
253
255
|
}
|
254
|
-
let
|
256
|
+
let et = { render: function(e) {
|
255
257
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "box-shadow: inset 0 0 40px @(props.colors[0]); border: 1px solid @(props.colors[0]); background-color: @(props.backgroundColor)" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("polyline", { class: "dv-bb7-line-width-2", stroke: "@props.colors[0]", points: "0, 25 0, 0 25, 0" }, []), e.createElement("polyline", { class: "dv-bb7-line-width-2", stroke: "@props.colors[0]", points: "@(model.width-25), 0 @(model.width), 0 @(model.width), 25" }, []), e.createElement("polyline", { class: "dv-bb7-line-width-2", stroke: "@props.colors[0]", points: "@(model.width-25), @(model.height) @(model.width), @(model.height) @(model.width), @(model.height-25)" }, []), e.createElement("polyline", { class: "dv-bb7-line-width-2", stroke: "@props.colors[0]", points: "0, @(model.height-25) 0, @(model.height) 25, @(model.height)" }, []), e.createElement("polyline", { class: "dv-bb7-line-width-5", stroke: "@props.colors[1]", points: "0, 10 0, 0 10, 0" }, []), e.createElement("polyline", { class: "dv-bb7-line-width-5", stroke: "@props.colors[1]", points: "@(model.width-10), 0 @(model.width), 0 @(model.width), 10" }, []), e.createElement("polyline", { class: "dv-bb7-line-width-5", stroke: "@props.colors[1]", points: "@(model.width-10), @(model.height) @(model.width), @(model.height) @(model.width), @(model.height-10)" }, []), e.createElement("polyline", { class: "dv-bb7-line-width-5", stroke: "@props.colors[1]", points: "0, @(model.height-10) 0, @(model.height) 10, @(model.height)" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
256
|
-
} },
|
257
|
-
component:
|
258
|
+
} }, tt = {
|
259
|
+
component: Ye
|
258
260
|
};
|
259
261
|
var $, M;
|
260
|
-
let
|
262
|
+
let ot = class extends (M = tt.component, $ = d, M) {
|
261
263
|
constructor() {
|
262
264
|
super(...arguments);
|
263
265
|
t(this, $, "44fa29fb");
|
264
|
-
t(this, "template",
|
266
|
+
t(this, "template", et.render);
|
265
267
|
}
|
266
268
|
};
|
267
|
-
class
|
269
|
+
class lt extends a {
|
268
270
|
constructor() {
|
269
271
|
super(...arguments);
|
270
272
|
t(this, "path", `border-box-8-path-${c()}`);
|
@@ -283,20 +285,20 @@ class ot extends a {
|
|
283
285
|
return this.props.reverse ? `M 2.5, 2.5 L 2.5, ${this.model.height - 2.5} L ${this.model.width - 2.5}, ${this.model.height - 2.5} L ${this.model.width - 2.5}, 2.5 L 2.5, 2.5` : `M2.5, 2.5 L${this.model.width - 2.5}, 2.5 L${this.model.width - 2.5}, ${this.model.height - 2.5} L2.5, ${this.model.height - 2.5} L2.5, 2.5`;
|
284
286
|
}
|
285
287
|
}
|
286
|
-
let
|
288
|
+
let it = { render: function(e) {
|
287
289
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("defs", {}, [e.createElement("path", { id: "@path", d: "@pathD", fill: "transparent" }, []), e.createElement("radialGradient", { id: "@gradient", cx: "50%", cy: "50%", r: "50%" }, [e.createElement("stop", { offset: "0%", "stop-color": "#fff", "stop-opacity": "1" }, []), e.createElement("stop", { offset: "100%", "stop-color": "#fff", "stop-opacity": "0" }, [])]), e.createElement("mask", { id: "@mask" }, [e.createElement("circle", { cx: "0", cy: "0", r: "150", fill: "url(#@(gradient))" }, [e.createElement("animateMotion", { dur: "@(props.dur)s", path: "@pathD", rotate: "auto", repeatCount: "indefinite" }, [])])])]), e.createElement("polygon", { fill: "@props.backgroundColor", points: "5, 5 @(model.width-5), 5 @(model.width-5) @(model.height-5) 5,@(model.height-5)" }, []), e.createElement("use", { stroke: "@props.colors[0]", "stroke-width": "1", "xlink:href": "#@(path)" }, []), e.createElement("use", { stroke: "@props.colors[1]", "stroke-width": "3", "xlink:href": "#@(path)", mask: "url(#@(mask))" }, [e.createElement("animate", { attributeName: "stroke-dasharray", from: "0, @(length)", to: "@length, 0", dur: "@(props.dur)s", repeatCount: "indefinite" }, [])])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
288
|
-
} },
|
289
|
-
component:
|
290
|
+
} }, rt = {
|
291
|
+
component: lt
|
290
292
|
};
|
291
293
|
var D, F;
|
292
|
-
let
|
294
|
+
let nt = class extends (F = rt.component, D = d, F) {
|
293
295
|
constructor() {
|
294
296
|
super(...arguments);
|
295
297
|
t(this, D, "df10b11e");
|
296
|
-
t(this, "template",
|
298
|
+
t(this, "template", it.render);
|
297
299
|
}
|
298
300
|
};
|
299
|
-
class
|
301
|
+
class st extends a {
|
300
302
|
constructor() {
|
301
303
|
super(...arguments);
|
302
304
|
t(this, "gradient", `border-box-9-gradient-${c()}`);
|
@@ -314,20 +316,20 @@ class nt extends a {
|
|
314
316
|
return this.props.reverse ? `M 2.5, 2.5 L 2.5, ${this.model.height - 2.5} L ${this.model.width - 2.5}, ${this.model.height - 2.5} L ${this.model.width - 2.5}, 2.5 L 2.5, 2.5` : `M2.5, 2.5 L${this.model.width - 2.5}, 2.5 L${this.model.width - 2.5}, ${this.model.height - 2.5} L2.5, ${this.model.height - 2.5} L2.5, 2.5`;
|
315
317
|
}
|
316
318
|
}
|
317
|
-
let
|
319
|
+
let dt = { render: function(e) {
|
318
320
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("defs", {}, [e.createElement("linearGradient", { id: "@gradient", x1: "0%", y1: "0%", x2: "100%", y2: "100%" }, [e.createElement("animate", { attributeName: "x1", values: "0%;100%;0%", dur: "10s", begin: "0s", repeatCount: "indefinite" }, []), e.createElement("animate", { attributeName: "x2", values: "100%;0%;100%", dur: "10s", begin: "0s", repeatCount: "indefinite" }, []), e.createElement("stop", { offset: "0%", "stop-color": "@props.colors[0]" }, [e.createElement("animate", { attributeName: "stop-color", values: "@(props.colors[0]);@(props.colors[1]);@(props.colors[0])", dur: "10s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("stop", { offset: "100%", "stop-color": "@(props.colors[1])" }, [e.createElement("animate", { attributeName: "stop-color", values: "`@(props.colors[1]);@(props.colors[0]);@(props.colors[1])", dur: "10s", begin: "0s", repeatCount: "indefinite" }, [])])]), e.createElement("mask", { id: "@mask" }, [e.createElement("polyline", { stroke: "#fff", "stroke-width": "3", fill: "transparent", points: "8, @(model.height*0.4) 8, 3, @(model.width*0.4+7), 3" }, []), e.createElement("polyline", { fill: "#fff", points: "8, @(model.height*0.15) 8, 3, @(model.width*0.1+7), 3 @(model.width*0.1), 8 14, 8 14, @(model.height*0.15-7)" }, []), e.createElement("polyline", { stroke: "#fff", "stroke-width": "3", fill: "transparent", points: "@(model.width*0.5), 3 @(model.width -3), 3, @(model.width -3), @(model.height*0.25)" }, []), e.createElement("polyline", { fill: "#fff", points: "@(model.width*0.52), 3 @(model.width*0.58), 3 @(model.width*0.58-7), 9 @(model.width*0.52-7), 9" }, []), e.createElement("polyline", { fill: "#fff", points: "@(model.width*0.9), 3 @(model.width -3), 3 @(model.width -3), @(model.height*0.1) @(model.width -9), @(model.height*0.1-7) @(model.width -9), 9 @(model.width *0.9+7), 9" }, []), e.createElement("polyline", { stroke: "#fff", "stroke-width": "3", fill: "transparent", points: "8, @(model.height*0.5) 8, @(model.height -3) @(model.width *0.3 + 7), @(model.height -3)" }, []), e.createElement("polyline", { fill: "#fff", points: "8, @(model.height*0.55) 8, @(model.height*0.7) 2,@(model.height*0.7-7) 2, @(model.height*0.55+7)" }, []), e.createElement("polyline", { stroke: "#fff", "stroke-width": "3", fill: "transparent", points: "@(model.width * 0.35), @(model.height - 3) @(model.width - 3), @(model.height - 3) @(model.width - 3), @(model.height*0.35)" }, []), e.createElement("polyline", { fill: "#fff", points: "@(model.width * 0.92), @(model.height - 3) @(model.width - 3), @(model.height - 3) @(model.width - 3), @(model.height *0.8) @(model.width - 9), @(model.height*0.8 + 7) @(model.width - 9), @(model.height - 9) @(model.width*0.92 +7), @(model.height - 9)" }, [])])]), e.createElement("polygon", { fill: "@props.backgroundColor", points: "15, 9 @(model.width * 0.1 + 1), 9 @(model.width * 0.1 + 4), 6 @(model.width * 0.52 + 2), 6 @(model.width * 0.52 + 6), 10 @(model.width * 0.58 - 7), 10 @(model.width * 0.58 - 2), 6 @(model.width * 0.9 + 2), 6 @(model.width * 0.9 + 6), 10 @(model.width - 10), 10 @(model.width - 10), @(model.height * 0.1 - 6) @(model.width - 6), @(model.height * 0.1 - 1) @(model.width - 6), @(model.height * 0.8 + 1) @(model.width - 10), @(model.height * 0.8 + 6) @(model.width - 10), @(model.height - 10) @(model.width * 0.92 + 7), @(model.height - 10) @(model.width * 0.92 + 2), @(model.height - 6) 11, @(model.height - 6) 11, @(model.height * 0.15 - 2) 15, @(model.height * 0.15 - 7)" }, []), e.createElement("rect", { x: "0", y: "0", width: "@model.width", height: "@model.height", fill: "url(#@(gradient))", mask: "url(#@(mask))" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
319
|
-
} },
|
320
|
-
component:
|
321
|
+
} }, at = {
|
322
|
+
component: st
|
321
323
|
};
|
322
324
|
var J, K;
|
323
|
-
let
|
325
|
+
let mt = class extends (K = at.component, J = d, K) {
|
324
326
|
constructor() {
|
325
327
|
super(...arguments);
|
326
328
|
t(this, J, "e4c62a5f");
|
327
|
-
t(this, "template",
|
329
|
+
t(this, "template", dt.render);
|
328
330
|
}
|
329
331
|
};
|
330
|
-
class
|
332
|
+
class pt extends a {
|
331
333
|
constructor() {
|
332
334
|
super(...arguments);
|
333
335
|
t(this, "propsOption", {
|
@@ -337,20 +339,20 @@ class mt extends a {
|
|
337
339
|
t(this, "border", ["left-top", "right-top", "left-bottom", "right-bottom"]);
|
338
340
|
}
|
339
341
|
}
|
340
|
-
let
|
342
|
+
let ct = { render: function(e) {
|
341
343
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "box-shadow: inset 0 0 25px 3px @(props.colors[0])" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("polygon", { fill: "@props.backgroundColor", points: "4, 0 @(model.width - 4), 0 @(model.width), 4 @(model.width), @(model.height - 4) @(model.width - 4), @(model.height) 4, @(model.height) 0, @(model.height - 4) 0, 4" }, [])]), e.createCommand("for", "let item of border", [e.createElement("svg", { width: "150px", height: "150px", class: "@item dv-border-svg-container" }, [e.createElement("polygon", { fill: "@(props.colors[1])", points: "40, 0 5, 0 0, 5 0, 16 3, 19 3, 7 7, 3 35, 3" }, [])])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
342
|
-
} },
|
343
|
-
component:
|
344
|
+
} }, ht = {
|
345
|
+
component: pt
|
344
346
|
};
|
345
347
|
var W, H;
|
346
|
-
let
|
348
|
+
let gt = class extends (H = ht.component, W = d, H) {
|
347
349
|
constructor() {
|
348
350
|
super(...arguments);
|
349
351
|
t(this, W, "c1b255d6");
|
350
|
-
t(this, "template",
|
352
|
+
t(this, "template", ct.render);
|
351
353
|
}
|
352
354
|
};
|
353
|
-
class
|
355
|
+
class Et extends a {
|
354
356
|
constructor() {
|
355
357
|
super(...arguments);
|
356
358
|
t(this, "propsOption", {
|
@@ -362,20 +364,20 @@ class gt extends a {
|
|
362
364
|
t(this, "filterId", `border-box-11-filterId-${c()}`);
|
363
365
|
}
|
364
366
|
}
|
365
|
-
let
|
367
|
+
let ft = { render: function(e) {
|
366
368
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("defs", {}, [e.createElement("filter", { id: "@filterId", height: "150%", width: "150%", x: "-25%", y: "-25%" }, [e.createElement("feMorphology", { operator: "dilate", radius: "2", in: "SourceAlpha", result: "thicken" }, []), e.createElement("feGaussianBlur", { in: "thicken", stdDeviation: "3", result: "blurred" }, []), e.createElement("feFlood", { "flood-color": "@(props.colors[1])", result: "glowColor" }, []), e.createElement("feComposite", { in: "glowColor", in2: "blurred", operator: "in", result: "softGlowColored" }, []), e.createElement("feMerge", {}, [e.createElement("feMergeNode", { in: "softGlowColored" }, []), e.createElement("feMergeNode", { in: "SourceGraphic" }, [])])])]), e.createElement("polygon", { fill: "@props.backgroundColor", points: "20, 32 @(model.width * 0.5 - props.titleWidth / 2), 32 @(model.width * 0.5 - props.titleWidth / 2 + 20), 53 @(model.width * 0.5 + props.titleWidth / 2 - 20), 53 @(model.width * 0.5 + props.titleWidth / 2), 32 @(model.width - 20), 32 @(model.width - 8), 48 @(model.width - 8), @(model.height - 25) @(model.width - 20), @(model.height - 8) 20, @(model.height - 8) 8, @(model.height - 25) 8, 50" }, []), e.createElement("polyline", { stroke: "@(props.colors[0])", filter: "url(#@(filterId))", points: "@((model.width - props.titleWidth) / 2), 30 20, 30 7, 50 7, @(50 + (model.height - 167) / 2) 13, @(55 + (model.height - 167) / 2) 13, @(135 + (model.height - 167) / 2) 7, @(140 + (model.height - 167) / 2) 7, @(model.height - 27) 20, @(model.height - 7) @(model.width - 20), @(model.height - 7) @(model.width - 7), @(model.height - 27) @(model.width - 7), @(140 + (model.height - 167) / 2) @(model.width - 13), @(135 + (model.height - 167) / 2) @(model.width - 13), @(55 + (model.height - 167) / 2) @(model.width - 7), @(50 + (model.height - 167) / 2) @(model.width - 7), 50 @(model.width - 20), 30 @((model.width + props.titleWidth) / 2), 30 @((model.width + props.titleWidth) / 2 - 20), 7 @((model.width - props.titleWidth) / 2 + 20), 7 @((model.width - props.titleWidth) / 2), 30 @((model.width - props.titleWidth) / 2 + 20), 52 @((model.width + props.titleWidth) / 2 - 20), 52 @((model.width + props.titleWidth) / 2), 30" }, []), e.createElement("polygon", { stroke: "@(props.colors[0])", fill: "transparent", points: "@((model.width + props.titleWidth) / 2 - 5), 30 @((model.width + props.titleWidth) / 2 - 21), 11 @((model.width + props.titleWidth) / 2 - 27), 11 @((model.width + props.titleWidth) / 2 - 8), 34" }, []), e.createElement("polygon", { stroke: "@(props.colors[0])", fill: "transparent", points: "@((model.width - props.titleWidth) / 2 + 5), 30 @((model.width - props.titleWidth) / 2 + 22), 49 @((model.width - props.titleWidth) / 2 + 28), 49 @((model.width - props.titleWidth) / 2 + 8), 26" }, []), e.createElement("polygon", { stroke: "@(props.colors[0])", fill: "@(fade(props.colors[1]), 30)", filter: "url(#@(filterId))", points: "@((model.width + props.titleWidth) / 2 - 11), 37 @((model.width + props.titleWidth) / 2 - 32), 11 @((model.width - props.titleWidth) / 2 + 23), 11 @((model.width - props.titleWidth) / 2 + 11), 23 @((model.width - props.titleWidth) / 2 + 33), 49 @((model.width + props.titleWidth) / 2 - 22), 49" }, []), e.createElement("polygon", { filter: "url(#@(filterId))", fill: "@(props.colors[0])", opacity: "1", points: "@((model.width - props.titleWidth) / 2 - 10), 37 @((model.width - props.titleWidth) / 2 - 31), 37 @((model.width - props.titleWidth) / 2 - 25), 46 @((model.width - props.titleWidth) / 2 - 4), 46" }, [e.createElement("animate", { attributeName: "opacity", values: "1;0.7;1", dur: "2s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("polygon", { filter: "url(#@(filterId))", fill: "@(props.colors[0])", opacity: "0.7", points: "@((model.width - props.titleWidth) / 2 - 40), 37 @((model.width - props.titleWidth) / 2 - 61), 37 @((model.width - props.titleWidth) / 2 - 55), 46 @((model.width - props.titleWidth) / 2 - 34), 46" }, [e.createElement("animate", { attributeName: "opacity", values: "0.7;0.4;0.7", dur: "2s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("polygon", { filter: "url(#@(filterId))", fill: "@(props.colors[0])", opacity: "0.5", points: "@((model.width - props.titleWidth) / 2 - 70), 37 @((model.width - props.titleWidth) / 2 - 91), 37 @((model.width - props.titleWidth) / 2 - 85), 46 @((model.width - props.titleWidth) / 2 - 64), 46" }, [e.createElement("animate", { attributeName: "opacity", values: "0.5;0.2;0.5", dur: "2s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("polygon", { filter: "url(#@(filterId))", fill: "@(props.colors[0])", opacity: "1", points: "@((model.width + props.titleWidth) / 2 + 30), 37 @((model.width + props.titleWidth) / 2 + 9), 37 @((model.width + props.titleWidth) / 2 + 3), 46 @((model.width + props.titleWidth) / 2 + 24), 46" }, [e.createElement("animate", { attributeName: "opacity", values: "1;0.7;1", dur: "2s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("polygon", { filter: "url(#@(filterId))", fill: "@(props.colors[0])", opacity: "0.7", points: "@((model.width + props.titleWidth) / 2 + 60), 37 @((model.width + props.titleWidth) / 2 + 39), 37 @((model.width + props.titleWidth) / 2 + 33), 46 @((model.width + props.titleWidth) / 2 + 54), 46" }, [e.createElement("animate", { attributeName: "opacity", values: "0.7;0.4;0.7", dur: "2s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("polygon", { filter: "url(#@(filterId))", fill: "@(props.colors[0])", opacity: "0.5", points: "@((model.width + props.titleWidth) / 2 + 90), 37 @((model.width + props.titleWidth) / 2 + 69), 37 @((model.width + props.titleWidth) / 2 + 63), 46 @((model.width + props.titleWidth) / 2 + 84), 46" }, [e.createElement("animate", { attributeName: "opacity", values: "0.5;0.2;0.5", dur: "2s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("text", { class: "dv-border-box-11-title", x: "@(model.width / 2)", y: "32", fill: "#fff", "font-size": "18", "text-anchor": "middle", "dominant-baseline": "middle" }, [e.createCodeFunction("props.title")]), e.createElement("polygon", { fill: "@(props.colors[0])", filter: "url(#@(filterId))", points: "7, @(53 + (model.height - 167) / 2) 11, @(57 + (model.height - 167) / 2) 11, @(133 + (model.height - 167) / 2) 7, @(137 + (model.height - 167) / 2)" }, []), e.createElement("polygon", { fill: "@(props.colors[0])", filter: "url(#@(filterId))", points: "@(model.width - 7), @(53 + (model.height - 167) / 2) @(model.width - 11), @(57 + (model.height - 167) / 2) @(model.width - 11), @(133 + (model.height - 167) / 2) @(model.width - 7), @(137 + (model.height - 167) / 2)" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
367
|
-
} },
|
368
|
-
component:
|
369
|
+
} }, _t = {
|
370
|
+
component: Et
|
369
371
|
};
|
370
372
|
var z, B;
|
371
|
-
let
|
373
|
+
let wt = class extends (B = _t.component, z = d, B) {
|
372
374
|
constructor() {
|
373
375
|
super(...arguments);
|
374
376
|
t(this, z, "639f3c2e");
|
375
|
-
t(this, "template",
|
377
|
+
t(this, "template", ft.render);
|
376
378
|
}
|
377
379
|
};
|
378
|
-
class
|
380
|
+
class ut extends a {
|
379
381
|
constructor() {
|
380
382
|
super(...arguments);
|
381
383
|
t(this, "propsOption", {
|
@@ -385,20 +387,20 @@ class wt extends a {
|
|
385
387
|
t(this, "filterId", `borderr-box-12-filterId-${c()}`);
|
386
388
|
}
|
387
389
|
}
|
388
|
-
let
|
390
|
+
let bt = { render: function(e) {
|
389
391
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("defs", {}, [e.createElement("filter", { id: "@filterId", height: "150%", width: "150%", x: "-25%", y: "-25%" }, [e.createElement("feMorphology", { operator: "dilate", radius: "1", in: "SourceAlpha", result: "thicken" }, []), e.createElement("feGaussianBlur", { in: "thicken", stdDeviation: "2", result: "blurred" }, []), e.createElement("feFlood", { "flood-color": "@(fade(props.colors[1]), 70)", result: "glowColor" }, [e.createElement("animate", { attributeName: "flood-color", values: "@(fade(props.colors[1], 70)); @(fade(props.colors[1], 30)); @(fade(props.colors[1], 70));", dur: "3s", begin: "0s", repeatCount: "indefinite" }, [])]), e.createElement("feComposite", { in: "glowColor", in2: "blurred", operator: "in", result: "softGlowColored" }, []), e.createElement("feMerge", {}, [e.createElement("feMergeNode", { in: "softGlowColored" }, []), e.createElement("feMergeNode", { in: "SourceGraphic" }, [])])])]), e.createElement("path", { "v-if": "width && height", fill: "@props.backgroundColor", "stroke-width": "2", stroke: "@(props.colors[0])", d: "M15 5 L @(model.width - 15) 5 Q @(model.width - 5) 5, @(model.width - 5) 15 L @(model.width - 5) @(model.height - 15) Q @(model.width - 5) @(model.height - 5), @(model.width - 15) @(model.height - 5) L 15, @(model.height - 5) Q 5 @(model.height - 5) 5 @(model.height - 15) L 5 15 Q 5 5 15 5" }, []), e.createElement("path", { "stroke-width": "2", fill: "transparent", "stroke-linecap": "round", filter: "url(#@(filterId))", stroke: "@(props.colors[1])", d: "M 20 5 L 15 5 Q 5 5 5 15 L 5 20" }, []), e.createElement("path", { "stroke-width": "2", fill: "transparent", "stroke-linecap": "round", filter: "url(#@(filterId))", stroke: "@(props.colors[1])", d: "M @(model.width - 20) 5 L @(model.width - 15) 5 Q @(model.width - 5) 5 @(model.width - 5) 15 L @(model.width - 5) 20" }, []), e.createElement("path", { "stroke-width": "2", fill: "transparent", "stroke-linecap": "round", filter: "url(#@(filterId))", stroke: "@(props.colors[1])", d: "M @(model.width - 20) @(model.height - 5) L @(model.width - 15) @(model.height - 5) Q @(model.width - 5) @(model.height - 5) @(model.width - 5) @(model.height - 15) L @(model.width - 5) @(model.height - 20)" }, []), e.createElement("path", { "stroke-width": "2", fill: "transparent", "stroke-linecap": "round", filter: "url(#@(filterId))", stroke: "@(props.colors[1])", d: "M 20 @(model.height - 5) L 15 @(model.height - 5) Q 5 @(model.height - 5) 5 @(model.height - 15) L 5 @(model.height - 20)" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createElement("slot", {}, [])])])];
|
390
|
-
} },
|
391
|
-
component:
|
392
|
+
} }, yt = {
|
393
|
+
component: ut
|
392
394
|
};
|
393
395
|
var G, X;
|
394
|
-
let
|
396
|
+
let Rt = class extends (X = yt.component, G = d, X) {
|
395
397
|
constructor() {
|
396
398
|
super(...arguments);
|
397
399
|
t(this, G, "9a8985f2");
|
398
|
-
t(this, "template",
|
400
|
+
t(this, "template", bt.render);
|
399
401
|
}
|
400
402
|
};
|
401
|
-
class
|
403
|
+
class vt extends a {
|
402
404
|
constructor() {
|
403
405
|
super(...arguments);
|
404
406
|
t(this, "propsOption", {
|
@@ -407,20 +409,20 @@ class Rt extends a {
|
|
407
409
|
});
|
408
410
|
}
|
409
411
|
}
|
410
|
-
let
|
412
|
+
let Ct = { render: function(e) {
|
411
413
|
return [e.createElement("div", { class: "@(['container', props.class])" }, [e.createElement("svg", { class: "dv-border-svg-container", width: "@model.width", height: "@model.height" }, [e.createElement("path", { fill: "@props.backgroundColor", stroke: "@(props.colors[0])", d: "M 5 20 L 5 10 L 12 3 L 60 3 L 68 10 L @(model.width - 20) 10 L @(model.width - 5) 25 L @(model.width - 5) @(model.height - 5) L 20 @(model.height - 5) L 5 @(model.height - 20) L 5 20" }, []), e.createElement("path", { fill: "transparent", "stroke-width": "3", "stroke-linecap": "round", "stroke-dasharray": "10, 5", stroke: "@(props.colors[0])", d: "M 16 9 L 61 9" }, []), e.createElement("path", { fill: "transparent", stroke: "@(props.colors[1])", d: "M 5 20 L 5 10 L 12 3 L 60 3 L 68 10" }, []), e.createElement("path", { fill: "transparent", stroke: "@(props.colors[1])", d: "M @(model.width - 5) @(model.height - 30) L @(model.width - 5) @(model.height - 5) L @(model.width - 30) @(model.height - 5)" }, [])]), e.createElement("div", { class: "border-box-content" }, [e.createCommand("RenderSection", "")])])];
|
412
|
-
} },
|
413
|
-
component:
|
414
|
+
} }, kt = {
|
415
|
+
component: vt
|
414
416
|
};
|
415
417
|
var U, j;
|
416
|
-
let
|
418
|
+
let St = class extends (j = kt.component, U = d, j) {
|
417
419
|
constructor() {
|
418
420
|
super(...arguments);
|
419
421
|
t(this, U, "9f1d0629");
|
420
|
-
t(this, "template",
|
422
|
+
t(this, "template", Ct.render);
|
421
423
|
}
|
422
424
|
};
|
423
|
-
class
|
425
|
+
class Lt extends a {
|
424
426
|
constructor() {
|
425
427
|
super(...arguments);
|
426
428
|
t(this, "propsOption", {
|
@@ -457,20 +459,20 @@ class St extends a {
|
|
457
459
|
this.model.svgScale = [this.model.width / o, this.model.height / i];
|
458
460
|
}
|
459
461
|
}
|
460
|
-
let
|
462
|
+
let xt = { render: function(e) {
|
461
463
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@(svgWH[0])px", height: "@(svgWH[1])px", style: "transform:scale(@(model.svgScale[0]),@(model.svgScale[1]));" }, [e.createCommand("for", "let point of model.points", [e.createCommand("if", "Math.random() > 0.6", [e.createElement("rect", { fill: "@(props.colors[0])", x: "@(point[0] - halfPointSideLength)", y: "@(point[1] - halfPointSideLength)", width: "@pointSideLength", height: "@pointSideLength" }, [e.createCommand("if", "Math.random() > 0.6", [e.createElement("animate", { attributeName: "fill", values: "@(props.colors[0]);transparent", dur: "1s", begin: "@(Math.random() * 2)", repeatCount: "indefinite" }, [])])])])]), e.createCommand("if", "model.rects[0]", [e.createElement("rect", { fill: "@(props.colors[1])", x: "@(model.rects[0][0] - pointSideLength)", y: "@(model.rects[0][1] - pointSideLength)", width: "@(pointSideLength * 2)", height: "@(pointSideLength * 2)" }, [e.createElement("animate", { attributeName: "width", values: "0;@(pointSideLength * 2)", dur: "2s", repeatCount: "indefinite" }, []), e.createElement("animate", { attributeName: "height", values: "0;@(pointSideLength * 2)", dur: "2s", repeatCount: "indefinite" }, []), e.createElement("animate", { attributeName: "x", values: "@(model.rects[0][0]);@(model.rects[0][0] - pointSideLength)", dur: "2s", repeatCount: "indefinite" }, []), e.createElement("animate", { attributeName: "y", values: "@(model.rects[0][1]);@(model.rects[0][1] - pointSideLength)", dur: "2s", repeatCount: "indefinite" }, [])])]), e.createCommand("if", "model.rects[1]", [e.createElement("rect", { fill: "@(props.colors[1])", x: "@(model.rects[1][0] - 40)", y: "@(model.rects[1][1] - pointSideLength)", width: "40", height: "@(pointSideLength * 2)" }, [e.createElement("animate", { attributeName: "width", values: "0;40;0", dur: "2s", repeatCount: "indefinite" }, []), e.createElement("animate", { attributeName: "x", values: "@(model.rects[1][0]);@(model.rects[1][0] - 40);@(model.rects[1][0])", dur: "2s", repeatCount: "indefinite" }, [])])])])])];
|
462
|
-
} },
|
463
|
-
component:
|
464
|
+
} }, At = {
|
465
|
+
component: Lt
|
464
466
|
};
|
465
467
|
var Q, V;
|
466
|
-
let
|
468
|
+
let It = class extends (V = At.component, Q = d, V) {
|
467
469
|
constructor() {
|
468
470
|
super(...arguments);
|
469
471
|
t(this, Q, "5d2cdceb");
|
470
|
-
t(this, "template",
|
472
|
+
t(this, "template", xt.render);
|
471
473
|
}
|
472
474
|
};
|
473
|
-
class
|
475
|
+
class Pt extends a {
|
474
476
|
constructor() {
|
475
477
|
super(...arguments);
|
476
478
|
t(this, "propsOption", {
|
@@ -493,20 +495,20 @@ class It extends a {
|
|
493
495
|
this.props.reverse ? (this.model.w = 1, this.model.h = this.model.height, this.model.x = this.model.width / 2, this.model.y = 0) : (this.model.w = this.model.width, this.model.h = 1, this.model.x = 0, this.model.y = this.model.height / 2);
|
494
496
|
}
|
495
497
|
}
|
496
|
-
let
|
498
|
+
let Tt = { render: function(e) {
|
497
499
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@(model.width)px", height: "@(model.height)px" }, [e.createElement("rect", { x: "@model.x", y: "@model.y", width: "@model.w", height: "@model.h", fill: "@(props.colors[0])" }, [e.createElement("animate", { attributeName: "@(props.reverse ? 'height' : 'width')", from: "0", to: "@(props.reverse ? model.height : model.width)", dur: "@(props.dur)s", calcMode: "spline", keyTimes: "0;1", keySplines: ".42,0,.58,1", repeatCount: "indefinite" }, [])]), e.createElement("rect", { x: "@model.x", y: "@model.y", width: "1", height: "1", fill: "@(props.colors[1])" }, [e.createElement("animate", { attributeName: "@(props.reverse ? 'y' : 'x')", from: "0", to: "@(props.reverse ? model.height : model.width)", dur: "@(props.dur)s", calcMode: "spline", keyTimes: "0;1", keySplines: "0.42,0,0.58,1", repeatCount: "indefinite" }, [])])])])];
|
498
|
-
} },
|
499
|
-
component:
|
500
|
+
} }, Nt = {
|
501
|
+
component: Pt
|
500
502
|
};
|
501
503
|
var q, Z;
|
502
|
-
let
|
504
|
+
let Ot = class extends (Z = Nt.component, q = d, Z) {
|
503
505
|
constructor() {
|
504
506
|
super(...arguments);
|
505
507
|
t(this, q, "2ceeebd3");
|
506
|
-
t(this, "template",
|
508
|
+
t(this, "template", Tt.render);
|
507
509
|
}
|
508
510
|
};
|
509
|
-
class
|
511
|
+
class $t extends a {
|
510
512
|
constructor() {
|
511
513
|
super(...arguments);
|
512
514
|
t(this, "propsOption", {
|
@@ -538,20 +540,20 @@ class Ot extends a {
|
|
538
540
|
this.model.svgScale = [this.model.width / o, this.model.height / i];
|
539
541
|
}
|
540
542
|
}
|
541
|
-
let
|
543
|
+
let Mt = { render: function(e) {
|
542
544
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@(svgWH[0])px", height: "@(svgWH[1])px", style: "transform:scale(@(model.svgScale[0]),@(model.svgScale[1]));" }, [e.createCommand("for", "let point of model.points", [e.createElement("rect", { fill: "@(props.colors[0])", x: "@(point[0] - halfPointSideLength)", y: "@(point[1] - halfPointSideLength)", width: "@pointSideLength", height: "@pointSideLength" }, [e.createElement("animate", { attributeName: "fill", values: "@(props.colors.join(';'))", dur: "@(Math.random() + 1)s", begin: "@(Math.random() * 2)", repeatCount: "indefinite" }, [])])])])])];
|
543
|
-
} },
|
544
|
-
component:
|
545
|
+
} }, Dt = {
|
546
|
+
component: $t
|
545
547
|
};
|
546
548
|
var Y, ee;
|
547
|
-
let
|
549
|
+
let Ft = class extends (ee = Dt.component, Y = d, ee) {
|
548
550
|
constructor() {
|
549
551
|
super(...arguments);
|
550
552
|
t(this, Y, "e4dd1f59");
|
551
|
-
t(this, "template",
|
553
|
+
t(this, "template", Mt.render);
|
552
554
|
}
|
553
555
|
};
|
554
|
-
class
|
556
|
+
class Jt extends a {
|
555
557
|
constructor() {
|
556
558
|
super(...arguments);
|
557
559
|
t(this, "propsOption", {
|
@@ -560,17 +562,17 @@ class Ft extends a {
|
|
560
562
|
});
|
561
563
|
}
|
562
564
|
}
|
563
|
-
let
|
565
|
+
let Kt = { render: function(e) {
|
564
566
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("div", { class: "container-bar @(props.reverse ? 'reverse' : 'normal')", style: "@({ width: props.reverse ? model.width + 'px' : '5px', height: props.reverse ? '5px' : model.height + 'px', animationDuration: props.dur + 's' })" }, [e.createElement("svg", { width: "@(props.reverse ? model.width : 5)", height: "@(props.reverse ? 5 : model.height)" }, [e.createElement("polyline", { stroke: "@(props.colors[0])", points: "@(props.reverse ? `0, 2.5 ${model.width}, 2.5` : `2.5, 0 2.5, ${model.height}`)" }, []), e.createElement("polyline", { class: "bold-line", stroke: "@(props.colors[1])", "stroke-width": "3", "stroke-dasharray": "20, 80", "stroke-dashoffset": "-30", points: "@(props.reverse ? `0, 2.5 ${model.width}, 2.5` : `2.5, 0 2.5, ${model.height}`)" }, [])])])])];
|
565
|
-
} },
|
566
|
-
component:
|
567
|
+
} }, Wt = {
|
568
|
+
component: Jt
|
567
569
|
};
|
568
570
|
var te, oe;
|
569
|
-
let
|
571
|
+
let Ht = class extends (oe = Wt.component, te = d, oe) {
|
570
572
|
constructor() {
|
571
573
|
super(...arguments);
|
572
574
|
t(this, te, "820e3df4");
|
573
|
-
t(this, "template",
|
575
|
+
t(this, "template", Kt.render);
|
574
576
|
}
|
575
577
|
};
|
576
578
|
function b(e) {
|
@@ -587,7 +589,7 @@ function y(e, l) {
|
|
587
589
|
function w(e, l, o, i) {
|
588
590
|
return [e + Math.cos(i) * o, l + Math.sin(i) * o];
|
589
591
|
}
|
590
|
-
class
|
592
|
+
class zt extends a {
|
591
593
|
constructor() {
|
592
594
|
super(...arguments);
|
593
595
|
t(this, "propsOption", {
|
@@ -625,20 +627,20 @@ class Ht extends a {
|
|
625
627
|
this.model.line1Points = r.map((m) => m.join(",")).join(" "), this.model.line2Points = n.map((m) => m.join(",")).join(" "), this.model.line1Length = s, this.model.line2Length = g;
|
626
628
|
}
|
627
629
|
}
|
628
|
-
let
|
630
|
+
let Bt = { render: function(e) {
|
629
631
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@model.width", height: "@model.height" }, [e.createElement("polyline", { fill: "transparent", stroke: "@(props.colors[0])", "stroke-width": "3", points: "@model.line1Points" }, [e.createElement("animate", { attributeName: "stroke-dasharray", attributeType: "XML", from: "0, @(model.line1Length / 2), 0, @(model.line1Length / 2)", to: "0, 0, @(model.line1Length), 0", dur: "@(props.dur)s", begin: "0s", calcMode: "spline", keyTimes: "0;1", keySplines: "0.4,1,0.49,0.98", repeatCount: "indefinite" }, [])]), e.createElement("polyline", { fill: "transparent", stroke: "@(props.colors[1])", "stroke-width": "2", points: "@model.line2Points" }, [e.createElement("animate", { attributeName: "stroke-dasharray", attributeType: "XML", from: "0, @(model.line2Length / 2), 0, @(model.line2Length / 2)", to: "0, 0, @(model.line2Length), 0", dur: "@(props.dur)s", begin: "0s", calcMode: "spline", keyTimes: "0;1", keySplines: ".4,1,.49,.98", repeatCount: "indefinite" }, [])])])])];
|
630
|
-
} },
|
631
|
-
component:
|
632
|
+
} }, Gt = {
|
633
|
+
component: zt
|
632
634
|
};
|
633
635
|
var le, ie;
|
634
|
-
let
|
636
|
+
let Xt = class extends (ie = Gt.component, le = d, ie) {
|
635
637
|
constructor() {
|
636
638
|
super(...arguments);
|
637
|
-
t(this, le, "
|
638
|
-
t(this, "template",
|
639
|
+
t(this, le, "919d71b1");
|
640
|
+
t(this, "template", Bt.render);
|
639
641
|
}
|
640
642
|
};
|
641
|
-
class
|
643
|
+
class Ut extends a {
|
642
644
|
constructor() {
|
643
645
|
super(...arguments);
|
644
646
|
t(this, "propsOption", {
|
@@ -663,32 +665,35 @@ class Xt extends a {
|
|
663
665
|
});
|
664
666
|
}
|
665
667
|
calcPointsPosition() {
|
666
|
-
let { svgWH: o, rowNum: i, rowPoints: r } = this, [n, s] = o, g = n / (r + 1), m = s / (i + 1)
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
668
|
+
let { svgWH: o, rowNum: i, rowPoints: r } = this, [n, s] = o, g = n / (r + 1), m = s / (i + 1);
|
669
|
+
ve(() => {
|
670
|
+
let h = new Array(i).fill(0).map(
|
671
|
+
(p, f) => new Array(r).fill(0).map((_, u) => [g * (u + 1), m * (f + 1)])
|
672
|
+
);
|
673
|
+
this.model.points = h.reduce((p, f) => [...p, ...f], []);
|
674
|
+
let E = this.model.heights = new Array(i * r).fill(0).map((p) => Math.random() > 0.8 ? y(0.7 * s, s) : y(0.2 * s, 0.5 * s));
|
675
|
+
this.model.minHeights = new Array(i * r).fill(0).map((p, f) => E[f] * Math.random()), this.model.randoms = new Array(i * r).fill(0).map((p) => Math.random() + 1.5);
|
676
|
+
});
|
672
677
|
}
|
673
678
|
calcScale() {
|
674
679
|
let [o, i] = this.svgWH;
|
675
680
|
this.model.svgScale = [this.model.width / o, this.model.height / i];
|
676
681
|
}
|
677
682
|
}
|
678
|
-
let
|
683
|
+
let jt = { render: function(e) {
|
679
684
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@(svgWH[0])px", height: "@(svgWH[1])px", style: "transform:scale(@(model.svgScale[0]),@(model.svgScale[1]));" }, [e.createCommand("for", "let (i,point) in model.points", [e.createElement("rect", { fill: "@(props.colors[Math.random() > 0.5 ? 0 : 1])", x: "@(point[0] - halfRectWidth)", y: "@(point[1] - model.heights[i] / 2)", width: "@rectWidth", height: "@(model.heights[i])" }, [e.createElement("animate", { attributeName: "y", values: "@(point[1] - model.minHeights[i] / 2);@(point[1] - model.heights[i] / 2);@(point[1] - model.minHeights[i] / 2)", dur: "@(model.randoms[i])s", keyTimes: "0;0.5;1", calcMode: "spline", keySplines: "0.42,0,0.58,1;0.42,0,0.58,1", begin: "0s", repeatCount: "indefinite" }, []), e.createElement("animate", { attributeName: "height", values: "@(model.minHeights[i]);@(model.heights[i]);@(model.minHeights[i])", dur: "@(model.randoms[i])s", keyTimes: "0;0.5;1", calcMode: "spline", keySplines: "0.42,0,0.58,1;0.42,0,0.58,1", begin: "0s", repeatCount: "indefinite" }, [])])])])])];
|
680
|
-
} },
|
681
|
-
component:
|
685
|
+
} }, Qt = {
|
686
|
+
component: Ut
|
682
687
|
};
|
683
688
|
var re, ne;
|
684
|
-
let
|
689
|
+
let Vt = class extends (ne = Qt.component, re = d, ne) {
|
685
690
|
constructor() {
|
686
691
|
super(...arguments);
|
687
|
-
t(this, re, "
|
688
|
-
t(this, "template",
|
692
|
+
t(this, re, "b2dd06a3");
|
693
|
+
t(this, "template", jt.render);
|
689
694
|
}
|
690
695
|
};
|
691
|
-
class
|
696
|
+
class qt extends a {
|
692
697
|
constructor() {
|
693
698
|
super(...arguments);
|
694
699
|
t(this, "propsOption", {
|
@@ -696,20 +701,20 @@ class Vt extends a {
|
|
696
701
|
});
|
697
702
|
}
|
698
703
|
}
|
699
|
-
let
|
704
|
+
let Zt = { render: function(e) {
|
700
705
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "21px", height: "20px" }, [e.createElement("polyline", { "stroke-width": "4", fill: "transparent", stroke: "@(props.colors[0])", points: "10, 0 19, 10 10, 20" }, []), e.createElement("polyline", { "stroke-width": "2", fill: "transparent", stroke: "@(props.colors[1])", points: "2, 0 11, 10 2, 20" }, [])]), e.createCommand("RenderSection", ""), e.createElement("svg", { width: "21px", height: "20px" }, [e.createElement("polyline", { "stroke-width": "4", fill: "transparent", stroke: "@(props.colors[0])", points: "11, 0 2, 10 11, 20" }, []), e.createElement("polyline", { "stroke-width": "2", fill: "transparent", stroke: "@(props.colors[1])", points: "19, 0 10, 10 19, 20" }, [])])])];
|
701
|
-
} },
|
702
|
-
component:
|
706
|
+
} }, Yt = {
|
707
|
+
component: qt
|
703
708
|
};
|
704
709
|
var se, de;
|
705
|
-
let
|
710
|
+
let eo = class extends (de = Yt.component, se = d, de) {
|
706
711
|
constructor() {
|
707
712
|
super(...arguments);
|
708
713
|
t(this, se, "6a75cfee");
|
709
|
-
t(this, "template",
|
714
|
+
t(this, "template", Zt.render);
|
710
715
|
}
|
711
716
|
};
|
712
|
-
class
|
717
|
+
class to extends a {
|
713
718
|
constructor() {
|
714
719
|
super(...arguments);
|
715
720
|
t(this, "propsOption", {
|
@@ -720,20 +725,20 @@ class eo extends a {
|
|
720
725
|
return this.props.reverse ? this.model.width - o : o;
|
721
726
|
}
|
722
727
|
}
|
723
|
-
let
|
728
|
+
let oo = { render: function(e) {
|
724
729
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@model.width", height: "@model.height" }, [e.createElement("polyline", { stroke: "@(props.colors[0])", "stroke-width": "2", fill: "transparent", points: "@xPos(0), 0 @xPos(30), @(model.height / 2)" }, []), e.createElement("polyline", { stroke: "@(props.colors[0])", "stroke-width": "2", fill: "transparent", points: "@xPos(20), 0 @xPos(50), @(model.height / 2) @xPos(model.width), @(model.height / 2)" }, []), e.createElement("polyline", { stroke: "@(props.colors[1])", fill: "transparent", "stroke-width": "3", points: "@xPos(0), @(model.height - 3), @xPos(200), @(model.height - 3)" }, [])])])];
|
725
|
-
} },
|
726
|
-
component:
|
730
|
+
} }, lo = {
|
731
|
+
component: to
|
727
732
|
};
|
728
733
|
var ae, me;
|
729
|
-
let
|
734
|
+
let io = class extends (me = lo.component, ae = d, me) {
|
730
735
|
constructor() {
|
731
736
|
super(...arguments);
|
732
737
|
t(this, ae, "597abf05");
|
733
|
-
t(this, "template",
|
738
|
+
t(this, "template", oo.render);
|
734
739
|
}
|
735
740
|
};
|
736
|
-
class
|
741
|
+
class ro extends a {
|
737
742
|
constructor() {
|
738
743
|
super(...arguments);
|
739
744
|
t(this, "model", {
|
@@ -756,20 +761,20 @@ class io extends a {
|
|
756
761
|
this.model.svgScale = [this.model.width / o, this.model.height / i];
|
757
762
|
}
|
758
763
|
}
|
759
|
-
let
|
764
|
+
let no = { render: function(e) {
|
760
765
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@(svgWH[0])px", height: "@(svgWH[1])px", style: "transform:scale(@(model.svgScale[0]),@(model.svgScale[1]));" }, [e.createElement("defs", {}, [e.createElement("polygon", { id: "@polygonId", points: "15, 46.5, 21, 47.5, 21, 52.5, 15, 53.5" }, [])]), e.createElement("circle", { cx: "50", cy: "50", r: "45", fill: "transparent", stroke: "@(props.colors[1])", "stroke-width": "10", "stroke-dasharray": "80, 100, 30, 100" }, [e.createElement("animateTransform", { attributeName: "transform", type: "rotate", values: "0 50 50;360 50 50", dur: "@(props.dur)s", repeatCount: "indefinite" }, [])]), e.createElement("circle", { cx: "50", cy: "50", r: "45", fill: "transparent", stroke: "@(props.colors[0])", "stroke-width": "6", "stroke-dasharray": "50, 66, 100, 66" }, [e.createElement("animateTransform", { attributeName: "transform", type: "rotate", values: "0 50 50;-360 50 50", dur: "@(props.dur)s", repeatCount: "indefinite" }, [])]), e.createElement("circle", { cx: "50", cy: "50", r: "38", fill: "transparent", stroke: "@(fade(props.colors[1], 30))", "stroke-width": "1", "stroke-dasharray": "5, 1" }, []), e.createCommand("for", "let i = 0; i < 20; i++", [e.createElement("use", { "xlink:href": "#@(polygonId)", stroke: "@(props.colors[1])", fill: "@(Math.random() > 0.4 ? 'transparent' : props.colors[0])" }, [e.createElement("animateTransform", { attributeName: "transform", type: "rotate", values: "0 50 50;360 50 50", dur: "@(props.dur)s", begin: "@(i * props.dur / 20)s", repeatCount: "indefinite" }, [])])]), e.createElement("circle", { cx: "50", cy: "50", r: "26", fill: "transparent", stroke: "@(fade(props.colors[1], 30))", "stroke-width": "1", "stroke-dasharray": "5, 1" }, [])]), e.createCommand("RenderSection", "")])];
|
761
|
-
} },
|
762
|
-
component:
|
766
|
+
} }, so = {
|
767
|
+
component: ro
|
763
768
|
};
|
764
769
|
var pe, ce;
|
765
|
-
let
|
770
|
+
let ao = class extends (ce = so.component, pe = d, ce) {
|
766
771
|
constructor() {
|
767
772
|
super(...arguments);
|
768
773
|
t(this, pe, "ed9a8703");
|
769
|
-
t(this, "template",
|
774
|
+
t(this, "template", no.render);
|
770
775
|
}
|
771
776
|
};
|
772
|
-
class
|
777
|
+
class mo extends a {
|
773
778
|
constructor() {
|
774
779
|
super(...arguments);
|
775
780
|
t(this, "animationId1", `d10ani1${c()}`);
|
@@ -784,20 +789,20 @@ class ao extends a {
|
|
784
789
|
});
|
785
790
|
}
|
786
791
|
}
|
787
|
-
let
|
792
|
+
let po = { render: function(e) {
|
788
793
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@model.width", height: "@model.height" }, [e.createElement("polyline", { stroke: "@(props.colors[1])", "stroke-width": "2", points: "0, @(model.height / 2) @(model.width), @(model.height / 2)" }, []), e.createElement("polyline", { stroke: "@(props.colors[0])", "stroke-width": "2", points: "5, @(model.height / 2) @(model.width * 0.2 - 3), @(model.height / 2)", "stroke-dasharray": "0, @(model.width * 0.2)", fill: "freeze" }, [e.createElement("animate", { id: "@animationId2", attributeName: "stroke-dasharray", values: "0, @(model.width * 0.2);@(model.width * 0.2), 0;", dur: "3s", begin: "@(animationId1).end", fill: "freeze" }, []), e.createElement("animate", { attributeName: "stroke-dasharray", values: "@(model.width * 0.2), 0;0, @(model.width * 0.2)", dur: "0.01s", begin: "@(animationId7).end", fill: "freeze" }, [])]), e.createElement("polyline", { stroke: "@(props.colors[0])", "stroke-width": "2", points: "@(model.width * 0.2 + 3), @(model.height / 2) @(model.width * 0.8 - 3), @(model.height / 2)", "stroke-dasharray": "0, @(model.width * 0.6)" }, [e.createElement("animate", { id: "@animationId4", attributeName: "stroke-dasharray", values: "0, @(model.width * 0.6);@(model.width * 0.6), 0", dur: "3s", begin: "@(animationId3).end + 1s", fill: "freeze" }, []), e.createElement("animate", { attributeName: "stroke-dasharray", values: "@(model.width * 0.6), 0;0, @(model.width * 0.6)", dur: "0.01s", begin: "@(animationId7).end", fill: "freeze" }, [])]), e.createElement("polyline", { stroke: "@(props.colors[0])", "stroke-width": "2", points: "@(model.width * 0.8 + 3), @(model.height / 2) @(model.width - 5), @(model.height / 2)", "stroke-dasharray": "0, @(model.width * 0.2)" }, [e.createElement("animate", { id: "@animationId6", attributeName: "stroke-dasharray", values: "0, @(model.width * 0.2);@(model.width * 0.2), 0", dur: "3s", begin: "@(animationId5).end + 1s", fill: "freeze" }, []), e.createElement("animate", { attributeName: "stroke-dasharray", values: "@(model.width * 0.2), 0;0, @(model.width * 0.3)", dur: "0.01s", begin: "@(animationId7).end", fill: "freeze" }, [])]), e.createElement("circle", { cx: "2", cy: "@(model.height / 2)", r: "2", fill: "@(props.colors[1])" }, [e.createElement("animate", { id: "@animationId1", attributeName: "fill", values: "@(props.colors[1]);@(props.colors[0])", begin: "0s;@(animationId7).end", dur: "0.3s", fill: "freeze" }, [])]), e.createElement("circle", { cx: "@(model.width * 0.2)", cy: "@(model.height / 2)", r: "2", fill: "@(props.colors[1])" }, [e.createElement("animate", { id: "@animationId3", attributeName: "fill", values: "@(props.colors[1]);@(props.colors[0])", begin: "@(animationId2).end", dur: "0.3s", fill: "freeze" }, []), e.createElement("animate", { attributeName: "fill", values: "@(props.colors[1]);@(props.colors[1])", dur: "0.01s", begin: "@(animationId7).end", fill: "freeze" }, [])]), e.createElement("circle", { cx: "@(model.width * 0.8)", cy: "@(model.height / 2)", r: "2", fill: "@(props.colors[1])" }, [e.createElement("animate", { id: "@animationId5", attributeName: "fill", values: "@(props.colors[1]);@(props.colors[0])", begin: "@(animationId4).end", dur: "0.3s", fill: "freeze" }, []), e.createElement("animate", { attributeName: "fill", values: "@(props.colors[1]);@(props.colors[1])", dur: "0.01s", begin: "@(animationId7).end", fill: "freeze" }, [])]), e.createElement("circle", { cx: "@(model.width - 2)", cy: "@(model.height / 2)", r: "2", fill: "@(props.colors[1])" }, [e.createElement("animate", { id: "@animationId7", attributeName: "fill", values: "@(props.colors[1]);@(props.colors[0])", begin: "@(animationId6).end", dur: "0.3s", fill: "freeze" }, []), e.createElement("animate", { attributeName: "fill", values: "@(props.colors[1]);@(props.colors[1])", dur: "0.01s", begin: "@(animationId7).end", fill: "freeze" }, [])])])])];
|
789
|
-
} },
|
790
|
-
component:
|
794
|
+
} }, co = {
|
795
|
+
component: mo
|
791
796
|
};
|
792
797
|
var he, ge;
|
793
|
-
let
|
798
|
+
let ho = class extends (ge = co.component, he = d, ge) {
|
794
799
|
constructor() {
|
795
800
|
super(...arguments);
|
796
801
|
t(this, he, "72693e04");
|
797
|
-
t(this, "template",
|
802
|
+
t(this, "template", po.render);
|
798
803
|
}
|
799
804
|
};
|
800
|
-
class
|
805
|
+
class go extends a {
|
801
806
|
constructor() {
|
802
807
|
super(...arguments);
|
803
808
|
t(this, "propsOption", {
|
@@ -805,20 +810,20 @@ class ho extends a {
|
|
805
810
|
});
|
806
811
|
}
|
807
812
|
}
|
808
|
-
let
|
813
|
+
let Eo = { render: function(e) {
|
809
814
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@model.width", height: "@model.height" }, [e.createElement("polygon", { fill: "@(fade(props.colors[1], 10))", stroke: "@(props.colors[1])", points: "20 10, 25 4, 55 4 60 10" }, []), e.createElement("polygon", { fill: "@(fade(props.colors[1], 10))", stroke: "@(props.colors[1])", points: "20 @(model.height - 10), 25 @(model.height - 4), 55 @(model.height - 4) 60 @(model.height - 10)" }, []), e.createElement("polygon", { fill: "@(fade(props.colors[1], 10))", stroke: "@(props.colors[1])", points: "@(model.width - 20) 10, @(model.width - 25) 4, @(model.width - 55) 4 @(model.width - 60) 10" }, []), e.createElement("polygon", { fill: "@(fade(props.colors[1], 10))", stroke: "@(props.colors[1])", points: "@(model.width - 20) @(model.height - 10), @(model.width - 25) @(model.height - 4), @(model.width - 55) @(model.height - 4) @(model.width - 60) @(model.height - 10)" }, []), e.createElement("polygon", { fill: "@(fade(props.colors[0] , 20))", stroke: "@(props.colors[0])", points: "20 10, 5 @(model.height / 2) 20 @(model.height - 10) @(model.width - 20) @(model.height - 10) @(model.width - 5) @(model.height / 2) @(model.width - 20) 10" }, []), e.createElement("polyline", { fill: "transparent", stroke: "@fade(props.colors[0] , 70)", points: "25 18, 15 @(model.height / 2) 25 @(model.height - 18)" }, []), e.createElement("polyline", { fill: "transparent", stroke: "@fade(props.colors[0] , 70)", points: "@(model.width - 25) 18, @(model.width - 15) @(model.height / 2) @(model.width - 25) @(model.height - 18)" }, [])]), e.createElement("div", { class: "decoration-content" }, [e.createCommand("RenderSection", "")])])];
|
810
|
-
} },
|
811
|
-
component:
|
815
|
+
} }, fo = {
|
816
|
+
component: go
|
812
817
|
};
|
813
818
|
var Ee, fe;
|
814
|
-
let
|
819
|
+
let _o = class extends (fe = fo.component, Ee = d, fe) {
|
815
820
|
constructor() {
|
816
821
|
super(...arguments);
|
817
822
|
t(this, Ee, "be570701");
|
818
|
-
t(this, "template",
|
823
|
+
t(this, "template", Eo.render);
|
819
824
|
}
|
820
825
|
};
|
821
|
-
class
|
826
|
+
class wo extends a {
|
822
827
|
constructor() {
|
823
828
|
super(...arguments);
|
824
829
|
t(this, "gId", `decoration-12-g-${c()}`);
|
@@ -881,48 +886,48 @@ class _o extends a {
|
|
881
886
|
});
|
882
887
|
}
|
883
888
|
}
|
884
|
-
let
|
889
|
+
let uo = { render: function(e) {
|
885
890
|
return [e.createElement("div", { class: "@(['container', props.class])", style: "@props.style" }, [e.createElement("svg", { width: "@model.width", height: "@model.height" }, [e.createElement("defs", {}, [e.createElement("g", { id: "@gId" }, [e.createCommand("for", "let (i,d) in model.pathD", [e.createElement("path", { stroke: "@(model.pathColor[i])", "stroke-width": "@(model.width / 2)", fill: "transparent", d: "@d" }, [])])]), e.createElement("radialGradient", { id: "@gradientId", cx: "50%", cy: "50%", r: "50%" }, [e.createElement("stop", { offset: "0%", "stop-color": "transparent", "stop-opacity": "1" }, []), e.createElement("stop", { offset: "100%", "stop-color": "@fade(props.colors[1], 30)", "stop-opacity": "1" }, [])])]), e.createCommand("for", "let r of model.circleR", [e.createElement("circle", { r: "@r", cx: "@x", cy: "@y", stroke: "@(props.colors[1])", "stroke-width": "0.5", fill: "transparent" }, [])]), e.createElement("circle", { r: "1", cx: "@x", cy: "@y", stroke: "transparent", fill: "url(#@(gradientId))" }, [e.createElement("animate", { attributeName: "r", values: "1;@(model.width / 2)", dur: "@(props.haloDur)s", repeatCount: "indefinite" }, []), e.createElement("animate", { attributeName: "opacity", values: "1;0", dur: "@(props.haloDur)s", repeatCount: "indefinite" }, [])]), e.createElement("circle", { r: "2", cx: "@x", cy: "@y", fill: "@(props.colors[1])" }, []), e.createElement("g", {}, [e.createCommand("for", "let p of model.splitLinePoints", [e.createElement("polyline", { points: "@p", stroke: "@(props.colors[1])", "stroke-width": "0.5", opacity: "0.5" }, [])])]), e.createCommand("for", "let d of model.arcD", [e.createElement("path", { d: "@d", stroke: "@(props.colors[1])", "stroke-width": "2", fill: "transparent" }, [])]), e.createElement("use", { "xlink:href": "#@gId" }, [e.createElement("animateTransform", { attributeName: "transform", type: "rotate", values: "0, @x @y;360, @x @y", dur: "@(props.scanDur)s", repeatCount: "indefinite" }, [])])]), e.createElement("div", { class: "decoration-content" }, [e.createCommand("RenderSection", "")])])];
|
886
|
-
} },
|
887
|
-
component:
|
891
|
+
} }, bo = {
|
892
|
+
component: wo
|
888
893
|
};
|
889
894
|
var _e, we;
|
890
|
-
let
|
895
|
+
let yo = class extends (we = bo.component, _e = d, we) {
|
891
896
|
constructor() {
|
892
897
|
super(...arguments);
|
893
898
|
t(this, _e, "b78c6be8");
|
894
|
-
t(this, "template",
|
899
|
+
t(this, "template", uo.render);
|
895
900
|
}
|
896
901
|
}, R = {
|
897
|
-
BorderBox1:
|
898
|
-
BorderBox2:
|
899
|
-
BorderBox3:
|
900
|
-
BorderBox4:
|
901
|
-
BorderBox5:
|
902
|
-
BorderBox6:
|
903
|
-
BorderBox7:
|
904
|
-
BorderBox8:
|
905
|
-
BorderBox9:
|
906
|
-
BorderBox10:
|
907
|
-
BorderBox11:
|
908
|
-
BorderBox12:
|
909
|
-
BorderBox13:
|
910
|
-
Decoration1:
|
911
|
-
Decoration2:
|
912
|
-
Decoration3:
|
913
|
-
Decoration4:
|
914
|
-
Decoration5:
|
915
|
-
Decoration6:
|
916
|
-
Decoration7:
|
917
|
-
Decoration8:
|
918
|
-
Decoration9:
|
919
|
-
Decoration10:
|
920
|
-
Decoration11:
|
921
|
-
Decoration12:
|
902
|
+
BorderBox1: Te,
|
903
|
+
BorderBox2: Me,
|
904
|
+
BorderBox3: Ke,
|
905
|
+
BorderBox4: Be,
|
906
|
+
BorderBox5: je,
|
907
|
+
BorderBox6: Ze,
|
908
|
+
BorderBox7: ot,
|
909
|
+
BorderBox8: nt,
|
910
|
+
BorderBox9: mt,
|
911
|
+
BorderBox10: gt,
|
912
|
+
BorderBox11: wt,
|
913
|
+
BorderBox12: Rt,
|
914
|
+
BorderBox13: St,
|
915
|
+
Decoration1: It,
|
916
|
+
Decoration2: Ot,
|
917
|
+
Decoration3: Ft,
|
918
|
+
Decoration4: Ht,
|
919
|
+
Decoration5: Xt,
|
920
|
+
Decoration6: Vt,
|
921
|
+
Decoration7: eo,
|
922
|
+
Decoration8: io,
|
923
|
+
Decoration9: ao,
|
924
|
+
Decoration10: ho,
|
925
|
+
Decoration11: _o,
|
926
|
+
Decoration12: yo
|
922
927
|
};
|
923
928
|
for (let e in R) {
|
924
|
-
let l = `dv-${
|
925
|
-
|
929
|
+
let l = `dv-${ke(e)}`;
|
930
|
+
Ce({
|
926
931
|
[l]: R[e]
|
927
932
|
});
|
928
933
|
}
|