@pdfme/ui 3.1.0 → 3.1.1-dev.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/.eslintrc.cjs +16 -0
- package/dist/__vite-browser-external-jWVCDlBL.js +4 -0
- package/dist/index.js +612 -760
- package/dist/path2d-polyfill.esm-yIGK7UQJ.js +214 -0
- package/dist/{index.css → style.css} +0 -1
- package/package.json +7 -6
- package/tsconfig.json +3 -3
- package/vite.config.ts +27 -0
- package/.eslintrc.js +0 -45
- package/dist/index.css.map +0 -7
- package/dist/index.js.map +0 -7
@@ -0,0 +1,214 @@
|
|
1
|
+
function F(n, a, r) {
|
2
|
+
if (r || arguments.length === 2)
|
3
|
+
for (var t = 0, o = a.length, l; t < o; t++)
|
4
|
+
(l || !(t in a)) && (l || (l = Array.prototype.slice.call(a, 0, t)), l[t] = a[t]);
|
5
|
+
return n.concat(l || Array.prototype.slice.call(a));
|
6
|
+
}
|
7
|
+
var q = {
|
8
|
+
a: 7,
|
9
|
+
c: 6,
|
10
|
+
h: 1,
|
11
|
+
l: 2,
|
12
|
+
m: 2,
|
13
|
+
q: 4,
|
14
|
+
s: 4,
|
15
|
+
t: 2,
|
16
|
+
v: 1,
|
17
|
+
z: 0
|
18
|
+
}, Z = /([astvzqmhlc])([^astvzqmhlc]*)/gi, _ = /-?[0-9]*\.?[0-9]+(?:e[-+]?\d+)?/gi;
|
19
|
+
function U(n) {
|
20
|
+
var a = n.match(_);
|
21
|
+
return a ? a.map(Number) : [];
|
22
|
+
}
|
23
|
+
function j(n) {
|
24
|
+
var a = [], r = String(n).trim();
|
25
|
+
return r[0] !== "M" && r[0] !== "m" || r.replace(Z, function(t, o, l) {
|
26
|
+
var s = U(l), u = o.toLowerCase(), h = o;
|
27
|
+
if (u === "m" && s.length > 2 && (a.push(F([h], s.splice(0, 2), !0)), u = "l", h = h === "m" ? "l" : "L"), s.length < q[u])
|
28
|
+
return "";
|
29
|
+
for (a.push(F([h], s.splice(0, q[u]), !0)); s.length >= q[u] && s.length && q[u]; )
|
30
|
+
a.push(F([h], s.splice(0, q[u]), !0));
|
31
|
+
return "";
|
32
|
+
}), a;
|
33
|
+
}
|
34
|
+
function B(n, a) {
|
35
|
+
var r = n.x * Math.cos(a) - n.y * Math.sin(a), t = n.y * Math.cos(a) + n.x * Math.sin(a);
|
36
|
+
n.x = r, n.y = t;
|
37
|
+
}
|
38
|
+
function J(n, a, r) {
|
39
|
+
n.x += a, n.y += r;
|
40
|
+
}
|
41
|
+
function H(n, a) {
|
42
|
+
n.x *= a, n.y *= a;
|
43
|
+
}
|
44
|
+
var L = (
|
45
|
+
/** @class */
|
46
|
+
function() {
|
47
|
+
function n(a) {
|
48
|
+
var r;
|
49
|
+
this.commands = [], a && a instanceof n ? (r = this.commands).push.apply(r, a.commands) : a && (this.commands = j(a));
|
50
|
+
}
|
51
|
+
return n.prototype.addPath = function(a) {
|
52
|
+
var r;
|
53
|
+
a && a instanceof n && (r = this.commands).push.apply(r, a.commands);
|
54
|
+
}, n.prototype.moveTo = function(a, r) {
|
55
|
+
this.commands.push(["M", a, r]);
|
56
|
+
}, n.prototype.lineTo = function(a, r) {
|
57
|
+
this.commands.push(["L", a, r]);
|
58
|
+
}, n.prototype.arc = function(a, r, t, o, l, s) {
|
59
|
+
this.commands.push(["AC", a, r, t, o, l, !!s]);
|
60
|
+
}, n.prototype.arcTo = function(a, r, t, o, l) {
|
61
|
+
this.commands.push(["AT", a, r, t, o, l]);
|
62
|
+
}, n.prototype.ellipse = function(a, r, t, o, l, s, u, h) {
|
63
|
+
this.commands.push(["E", a, r, t, o, l, s, u, !!h]);
|
64
|
+
}, n.prototype.closePath = function() {
|
65
|
+
this.commands.push(["Z"]);
|
66
|
+
}, n.prototype.bezierCurveTo = function(a, r, t, o, l, s) {
|
67
|
+
this.commands.push(["C", a, r, t, o, l, s]);
|
68
|
+
}, n.prototype.quadraticCurveTo = function(a, r, t, o) {
|
69
|
+
this.commands.push(["Q", a, r, t, o]);
|
70
|
+
}, n.prototype.rect = function(a, r, t, o) {
|
71
|
+
this.commands.push(["R", a, r, t, o]);
|
72
|
+
}, n.prototype.roundRect = function(a, r, t, o, l) {
|
73
|
+
typeof l > "u" ? this.commands.push(["RR", a, r, t, o, 0]) : this.commands.push(["RR", a, r, t, o, l]);
|
74
|
+
}, n;
|
75
|
+
}()
|
76
|
+
);
|
77
|
+
function N(n, a) {
|
78
|
+
var r = 0, t = 0, o, l, s, u, h, v, P, C, I, A, S, G, D, p, f, z, d, b, m, E, Q, g = null, R = null, y = null, T = null, M = null, k = null;
|
79
|
+
n.beginPath();
|
80
|
+
for (var i = 0; i < a.length; ++i) {
|
81
|
+
b = a[i][0], b !== "S" && b !== "s" && b !== "C" && b !== "c" && (g = null, R = null), b !== "T" && b !== "t" && b !== "Q" && b !== "q" && (y = null, T = null);
|
82
|
+
var e = void 0;
|
83
|
+
switch (b) {
|
84
|
+
case "m":
|
85
|
+
case "M":
|
86
|
+
e = a[i], b === "m" ? (r += e[1], t += e[2]) : (r = e[1], t = e[2]), (b === "M" || !M) && (M = { x: r, y: t }), n.moveTo(r, t);
|
87
|
+
break;
|
88
|
+
case "l":
|
89
|
+
e = a[i], r += e[1], t += e[2], n.lineTo(r, t);
|
90
|
+
break;
|
91
|
+
case "L":
|
92
|
+
e = a[i], r = e[1], t = e[2], n.lineTo(r, t);
|
93
|
+
break;
|
94
|
+
case "H":
|
95
|
+
e = a[i], r = e[1], n.lineTo(r, t);
|
96
|
+
break;
|
97
|
+
case "h":
|
98
|
+
e = a[i], r += e[1], n.lineTo(r, t);
|
99
|
+
break;
|
100
|
+
case "V":
|
101
|
+
e = a[i], t = e[1], n.lineTo(r, t);
|
102
|
+
break;
|
103
|
+
case "v":
|
104
|
+
e = a[i], t += e[1], n.lineTo(r, t);
|
105
|
+
break;
|
106
|
+
case "a":
|
107
|
+
case "A":
|
108
|
+
if (e = a[i], k === null)
|
109
|
+
throw new Error("This should never happen");
|
110
|
+
b === "a" ? (r += e[6], t += e[7]) : (r = e[6], t = e[7]), p = e[1], f = e[2], P = e[3] * Math.PI / 180, s = !!e[4], u = !!e[5], h = { x: r, y: t }, v = {
|
111
|
+
x: (k.x - h.x) / 2,
|
112
|
+
y: (k.y - h.y) / 2
|
113
|
+
}, B(v, -P), C = v.x * v.x / (p * p) + v.y * v.y / (f * f), C > 1 && (C = Math.sqrt(C), p *= C, f *= C), m = {
|
114
|
+
x: p * v.y / f,
|
115
|
+
y: -(f * v.x) / p
|
116
|
+
}, I = p * p * f * f, A = p * p * v.y * v.y + f * f * v.x * v.x, u !== s ? H(m, Math.sqrt((I - A) / A) || 0) : H(m, -Math.sqrt((I - A) / A) || 0), l = Math.atan2((v.y - m.y) / f, (v.x - m.x) / p), o = Math.atan2(-(v.y + m.y) / f, -(v.x + m.x) / p), B(m, P), J(m, (h.x + k.x) / 2, (h.y + k.y) / 2), n.save(), n.translate(m.x, m.y), n.rotate(P), n.scale(p, f), n.arc(0, 0, 1, l, o, !u), n.restore();
|
117
|
+
break;
|
118
|
+
case "C":
|
119
|
+
e = a[i], g = e[3], R = e[4], r = e[5], t = e[6], n.bezierCurveTo(e[1], e[2], g, R, r, t);
|
120
|
+
break;
|
121
|
+
case "c":
|
122
|
+
e = a[i], n.bezierCurveTo(e[1] + r, e[2] + t, e[3] + r, e[4] + t, e[5] + r, e[6] + t), g = e[3] + r, R = e[4] + t, r += e[5], t += e[6];
|
123
|
+
break;
|
124
|
+
case "S":
|
125
|
+
e = a[i], (g === null || R === null) && (g = r, R = t), n.bezierCurveTo(2 * r - g, 2 * t - R, e[1], e[2], e[3], e[4]), g = e[1], R = e[2], r = e[3], t = e[4];
|
126
|
+
break;
|
127
|
+
case "s":
|
128
|
+
e = a[i], (g === null || R === null) && (g = r, R = t), n.bezierCurveTo(2 * r - g, 2 * t - R, e[1] + r, e[2] + t, e[3] + r, e[4] + t), g = e[1] + r, R = e[2] + t, r += e[3], t += e[4];
|
129
|
+
break;
|
130
|
+
case "Q":
|
131
|
+
e = a[i], y = e[1], T = e[2], r = e[3], t = e[4], n.quadraticCurveTo(y, T, r, t);
|
132
|
+
break;
|
133
|
+
case "q":
|
134
|
+
e = a[i], y = e[1] + r, T = e[2] + t, r += e[3], t += e[4], n.quadraticCurveTo(y, T, r, t);
|
135
|
+
break;
|
136
|
+
case "T":
|
137
|
+
e = a[i], (y === null || T === null) && (y = r, T = t), y = 2 * r - y, T = 2 * t - T, r = e[1], t = e[2], n.quadraticCurveTo(y, T, r, t);
|
138
|
+
break;
|
139
|
+
case "t":
|
140
|
+
e = a[i], (y === null || T === null) && (y = r, T = t), y = 2 * r - y, T = 2 * t - T, r += e[1], t += e[2], n.quadraticCurveTo(y, T, r, t);
|
141
|
+
break;
|
142
|
+
case "z":
|
143
|
+
case "Z":
|
144
|
+
M && (r = M.x, t = M.y), M = null, n.closePath();
|
145
|
+
break;
|
146
|
+
case "AC":
|
147
|
+
e = a[i], r = e[1], t = e[2], D = e[3], l = e[4], o = e[5], E = e[6], n.arc(r, t, D, l, o, E);
|
148
|
+
break;
|
149
|
+
case "AT":
|
150
|
+
e = a[i], S = e[1], G = e[2], r = e[3], t = e[4], D = e[5], n.arcTo(S, G, r, t, D);
|
151
|
+
break;
|
152
|
+
case "E":
|
153
|
+
e = a[i], r = e[1], t = e[2], p = e[3], f = e[4], P = e[5], l = e[6], o = e[7], E = e[8], n.save(), n.translate(r, t), n.rotate(P), n.scale(p, f), n.arc(0, 0, 1, l, o, E), n.restore();
|
154
|
+
break;
|
155
|
+
case "R":
|
156
|
+
e = a[i], r = e[1], t = e[2], z = e[3], d = e[4], M = { x: r, y: t }, n.rect(r, t, z, d);
|
157
|
+
break;
|
158
|
+
case "RR":
|
159
|
+
e = a[i], r = e[1], t = e[2], z = e[3], d = e[4], Q = e[5], M = { x: r, y: t }, n.roundRect(r, t, z, d, Q);
|
160
|
+
break;
|
161
|
+
}
|
162
|
+
k ? (k.x = r, k.y = t) : k = { x: r, y: t };
|
163
|
+
}
|
164
|
+
}
|
165
|
+
function K(n) {
|
166
|
+
if (!(!n || !n.CanvasRenderingContext2D || n.Path2D)) {
|
167
|
+
var a = n.CanvasRenderingContext2D, r = a.prototype.fill, t = a.prototype.stroke, o = a.prototype.isPointInPath;
|
168
|
+
a.prototype.fill = function() {
|
169
|
+
for (var s = [], u = 0; u < arguments.length; u++)
|
170
|
+
s[u] = arguments[u];
|
171
|
+
if (s[0] instanceof L) {
|
172
|
+
var h = s[0], v = s[1] || "nonzero";
|
173
|
+
N(this, h.commands), r.apply(this, [v]);
|
174
|
+
} else {
|
175
|
+
var v = s[0] || "nonzero";
|
176
|
+
return r.apply(this, [v]);
|
177
|
+
}
|
178
|
+
}, a.prototype.stroke = function(s) {
|
179
|
+
s && N(this, s.commands), t.apply(this);
|
180
|
+
}, a.prototype.isPointInPath = function() {
|
181
|
+
for (var s = [], u = 0; u < arguments.length; u++)
|
182
|
+
s[u] = arguments[u];
|
183
|
+
if (s[0] instanceof L) {
|
184
|
+
var h = s[0], v = s[1], P = s[2], C = s[3] || "nonzero";
|
185
|
+
return N(this, h.commands), o.apply(this, [v, P, C]);
|
186
|
+
} else
|
187
|
+
return o.apply(this, s);
|
188
|
+
}, n.Path2D = L;
|
189
|
+
}
|
190
|
+
}
|
191
|
+
function V(n, a, r, t, o) {
|
192
|
+
var l = this;
|
193
|
+
if (o === void 0 && (o = 0), typeof o == "number" && (o = [o]), Array.isArray(o)) {
|
194
|
+
if (o.length === 0 || o.length > 4)
|
195
|
+
throw new RangeError("Failed to execute 'roundRect' on '".concat(this.constructor.name, "': ").concat(o.length, " radii provided. Between one and four radii are necessary."));
|
196
|
+
o.forEach(function(C) {
|
197
|
+
if (C < 0)
|
198
|
+
throw new RangeError("Failed to execute 'roundRect' on '".concat(l.constructor.name, "': Radius value ").concat(C, " is negative."));
|
199
|
+
});
|
200
|
+
} else
|
201
|
+
return;
|
202
|
+
if (o.length === 1 && o[0] === 0)
|
203
|
+
return this.rect(n, a, r, t);
|
204
|
+
var s = Math.min(r, t) / 2, u, h, v, P = u = h = v = Math.min(s, o[0]);
|
205
|
+
o.length === 2 && (u = v = Math.min(s, o[1])), o.length === 3 && (u = v = Math.min(s, o[1]), h = Math.min(s, o[2])), o.length === 4 && (u = Math.min(s, o[1]), h = Math.min(s, o[2]), v = Math.min(s, o[3])), this.moveTo(n, a + t - v), this.arcTo(n, a, n + P, a, P), this.arcTo(n + r, a, n + r, a + u, u), this.arcTo(n + r, a + t, n + r - h, a + t, h), this.arcTo(n, a + t, n, a + t - v, v), this.moveTo(n, a);
|
206
|
+
}
|
207
|
+
function O(n) {
|
208
|
+
if (!(!n || !n.CanvasRenderingContext2D)) {
|
209
|
+
var a = n.CanvasRenderingContext2D, r = n.Path2D;
|
210
|
+
a && !a.prototype.roundRect && (a.prototype.roundRect = V), r && !r.prototype.roundRect && (r.prototype.roundRect = V);
|
211
|
+
}
|
212
|
+
}
|
213
|
+
K(window);
|
214
|
+
O(window);
|
@@ -1,2 +1 @@
|
|
1
1
|
.fr-inline-field{display:inline-block;margin-right:16px}.fr-inline-container{display:inline-flex;flex-wrap:wrap}.ant-form-item-optional-hide{padding:0 8px}.ant-form-item-optional-hide .ant-form-item-label>label{font-size:16px;font-weight:#000000d9;font-weight:600}.fr-desc{word-break:break-all;color:#00000073;line-height:22px;margin-left:5px;font-weight:400;font-size:14px}.fr-hide-label>.ant-form-item-row>.ant-form-item-label{visibility:hidden}.fr-field .ant-form-item-row{flex-wrap:nowrap}.fr-field .ant-form-item-control-input-content{display:flex}.fr-field-visibility{width:0;height:0;visibility:hidden}.fr-form .ant-form-item-control{width:0}.fr-form .fr-inline-field .ant-form-item-control{width:auto}.rc-color-picker-panel-inner{position:relative;border-radius:4px;box-shadow:0 1px 5px #ccc;border:1px solid #ccc;padding-bottom:8px}.rc-color-picker-panel-wrap{margin:5px 0 0;height:30px;width:100%;position:relative}.rc-color-picker-panel-wrap-preview{position:absolute;right:8px}.rc-color-picker-panel-wrap-ribbon{position:absolute;left:8px;top:0;right:43px;height:30px}.rc-color-picker-panel-wrap-alpha{position:absolute;left:8px;right:43px;bottom:0;height:12.5px}.rc-color-picker-panel-wrap-has-alpha .rc-color-picker-panel-wrap-ribbon{height:12.5px}.rc-color-picker-trigger{border:1px solid #999;display:inline-block;padding:2px;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:20px;height:20px;cursor:pointer;box-shadow:0 0 0 2px #fff inset}.rc-color-picker-trigger-open{box-shadow:0 0 3px #999}.rc-color-picker-panel{width:218px;background-color:#fff;box-sizing:border-box;outline:none;z-index:9;border-radius:4px;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.rc-color-picker-panel *{box-sizing:border-box}.rc-color-picker-panel-open{display:block}.rc-color-picker-panel-close{display:none}.rc-color-picker-panel-preview{height:30px;width:30px;overflow:hidden;border-radius:2px;background-image:url(data:image/png;base64,R0lGODdhCgAKAPAAAOXl5f///ywAAAAACgAKAEACEIQdqXt9GxyETrI279OIgwIAOw==)}.rc-color-picker-panel-preview span{box-shadow:0 0 2px gray inset}.rc-color-picker-panel-preview span,.rc-color-picker-panel-preview input[type=color]{position:absolute;display:block;height:100%;width:30px;border-radius:2px}.rc-color-picker-panel-preview input[type=color]{opacity:0}.rc-color-picker-panel-board{position:relative;font-size:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin:8px 8px 0}.rc-color-picker-panel-board span{position:absolute;border-radius:10px;border:1px solid #fff;width:9px;height:9px;margin:-4px 0 0 -4px;left:-999px;top:-999px;box-shadow:0 0 1px #787878b3;z-index:2}.rc-color-picker-panel-board-hsv{width:200px;height:150px;position:relative;z-index:1;border-radius:2px}.rc-color-picker-panel-board-value{border-radius:2px;position:absolute;width:100%;height:100%;left:0;top:0;z-index:2;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigwLDAsMCkiIHN0b3Atb3BhY2l0eT0iMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);background-image:-webkit-linear-gradient(top,transparent 0%,#000000 100%);background-image:-moz-linear-gradient(top,transparent 0%,#000000 100%);background-image:-o-linear-gradient(top,transparent 0%,#000000 100%);background-image:linear-gradient(to bottom,transparent 0%,#000000 100%)}.rc-color-picker-panel-board-saturation{border-radius:2px;position:absolute;width:100%;height:100%;left:0;top:0;z-index:1;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDAsMCwwKSIgc3RvcC1vcGFjaXR5PSIwIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);background-image:-webkit-linear-gradient(left,#ffffff 0%,transparent 100%);background-image:-moz-linear-gradient(left,#ffffff 0%,transparent 100%);background-image:-o-linear-gradient(left,#ffffff 0%,transparent 100%);background-image:linear-gradient(to right,#ffffff 0%,transparent 100%)}.rc-color-picker-panel-board-handler{box-shadow:0 0 2px gray inset;border-radius:2px;cursor:crosshair;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:3}.rc-color-picker-panel-ribbon{position:relative;height:100%;border-radius:2px;box-shadow:0 0 2px gray inset;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZjAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAlIiBzdG9wLWNvbG9yPSIjZmY5OTAwIiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjIwJSIgc3RvcC1jb2xvcj0iI2NkZmYwMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIzMCUiIHN0b3AtY29sb3I9IiMzNWZmMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iNDAlIiBzdG9wLWNvbG9yPSIjMDBmZjY2IiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwZmZmZCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiMwMDY2ZmYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjMzIwMGZmIiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2NkMDBmZiIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSI5MCUiIHN0b3AtY29sb3I9IiNmZjAwOTkiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmMDAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);background-image:-webkit-linear-gradient(left,#ff0000 0%,#ff9900 10%,#cdff00 20%,#35ff00 30%,#00ff66 40%,#00fffd 50%,#0066ff 60%,#3200ff 70%,#cd00ff 80%,#ff0099 90%,#ff0000 100%);background-image:-moz-linear-gradient(left,#ff0000 0%,#ff9900 10%,#cdff00 20%,#35ff00 30%,#00ff66 40%,#00fffd 50%,#0066ff 60%,#3200ff 70%,#cd00ff 80%,#ff0099 90%,#ff0000 100%);background-image:-o-linear-gradient(left,#ff0000 0%,#ff9900 10%,#cdff00 20%,#35ff00 30%,#00ff66 40%,#00fffd 50%,#0066ff 60%,#3200ff 70%,#cd00ff 80%,#ff0099 90%,#ff0000 100%);background-image:linear-gradient(to right,#ff0000 0%,#ff9900 10%,#cdff00 20%,#35ff00 30%,#00ff66 40%,#00fffd 50%,#0066ff 60%,#3200ff 70%,#cd00ff 80%,#ff0099 90%,#ff0000 100%)}.rc-color-picker-panel-ribbon span{position:absolute;top:0;height:100%;width:4px;border:1px solid #000000;padding:1px 0;margin-left:-2px;background-color:#fff;border-radius:3px}.rc-color-picker-panel-ribbon-handler{position:absolute;width:104%;height:100%;left:-2%;cursor:pointer}.rc-color-picker-panel-alpha{position:relative;height:100%;width:100%;border-radius:2px;background-image:url(data:image/png;base64,R0lGODdhCgAKAPAAAOXl5f///ywAAAAACgAKAEACEIQdqXt9GxyETrI279OIgwIAOw==);background-repeat:repeat;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rc-color-picker-panel-alpha-bg{position:absolute;width:100%;height:100%;border-radius:2px;box-shadow:0 0 2px gray inset}.rc-color-picker-panel-alpha span{position:absolute;top:0;height:100%;width:4px;border:1px solid #000000;padding:1px 0;margin-left:-2px;background-color:#fff;border-radius:3px}.rc-color-picker-panel-alpha-handler{position:absolute;width:104%;height:100%;left:-2%;cursor:pointer}.rc-color-picker-panel-params{font-size:12px}.rc-color-picker-panel-params-input{overflow:hidden;padding:2px 8px}.rc-color-picker-panel-params input{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;text-align:center;padding:1px;margin:0;float:left;border-radius:2px;border:1px solid #CACACA;font-family:Helvetica Neue,Helvetica,sans-serif}.rc-color-picker-panel-params-hex{width:52px}.rc-color-picker-panel-params input[type=number]{margin-left:5px;width:44px}.rc-color-picker-panel-params input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}.rc-color-picker-panel-params-lable{padding:2px 8px;height:22px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rc-color-picker-panel-params-lable label{float:left;text-align:center}.rc-color-picker-panel-params-lable-hex{width:52px}.rc-color-picker-panel-params-lable-number,.rc-color-picker-panel-params-lable-alpha{margin-left:5px;width:44px;text-transform:uppercase}.rc-color-picker-panel-params-lable-number:hover{border-radius:2px;background-color:#eee;box-shadow:0 0 0 1px #ccc inset;cursor:pointer}.rc-color-picker-panel-params-has-alpha input[type=number],.rc-color-picker-panel-params-has-alpha .rc-color-picker-panel-params-lable-number,.rc-color-picker-panel-params-has-alpha .rc-color-picker-panel-params-lable-alpha{width:32px}.rc-color-picker{position:absolute;left:-9999px;top:-9999px;z-index:1000}.rc-color-picker-wrap{display:inline-block}.rc-color-picker-slide-up-enter,.rc-color-picker-slide-up-appear{animation-duration:.3s;animation-fill-mode:both;transform-origin:0 0;display:block!important;opacity:0;animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-play-state:paused}.rc-color-picker-slide-up-leave{animation-duration:.3s;animation-fill-mode:both;transform-origin:0 0;display:block!important;opacity:1;animation-timing-function:cubic-bezier(.6,.04,.98,.34);animation-play-state:paused}.rc-color-picker-slide-up-enter.rc-color-picker-slide-up-enter-active.rc-color-picker-placement-bottomLeft,.rc-color-picker-slide-up-enter.rc-color-picker-slide-up-enter-active.rc-color-picker-placement-bottomRight,.rc-color-picker-slide-up-appear.rc-color-picker-slide-up-appear-active.rc-color-picker-placement-bottomLeft,.rc-color-picker-slide-up-appear.rc-color-picker-slide-up-appear-active.rc-color-picker-placement-bottomRight{animation-name:rcColorPickerSlideUpIn;animation-play-state:running}.rc-color-picker-slide-up-enter.rc-color-picker-slide-up-enter-active.rc-color-picker-placement-topLeft,.rc-color-picker-slide-up-enter.rc-color-picker-slide-up-enter-active.rc-color-picker-placement-topRight,.rc-color-picker-slide-up-appear.rc-color-picker-slide-up-appear-active.rc-color-picker-placement-topLeft,.rc-color-picker-slide-up-appear.rc-color-picker-slide-up-appear-active.rc-color-picker-placement-topRight{animation-name:rcColorPickerSlideDownIn;animation-play-state:running}.rc-color-picker-slide-up-leave.rc-color-picker-slide-up-leave-active.rc-color-picker-placement-bottomLeft,.rc-color-picker-slide-up-leave.rc-color-picker-slide-up-leave-active.rc-color-picker-placement-bottomRight{animation-name:rcColorPickerSlideUpOut;animation-play-state:running}.rc-color-picker-slide-up-leave.rc-color-picker-slide-up-leave-active.rc-color-picker-placement-topLeft,.rc-color-picker-slide-up-leave.rc-color-picker-slide-up-leave-active.rc-color-picker-placement-topRight{animation-name:rcColorPickerSlideDownOut;animation-play-state:running}@keyframes rcColorPickerSlideUpIn{0%{opacity:0;transform-origin:0% 0%;transform:scaleY(0)}to{opacity:1;transform-origin:0% 0%;transform:scaleY(1)}}@keyframes rcColorPickerSlideUpOut{0%{opacity:1;transform-origin:0% 0%;transform:scaleY(1)}to{opacity:0;transform-origin:0% 0%;transform:scaleY(0)}}@keyframes rcColorPickerSlideDownIn{0%{opacity:0;transform-origin:100% 100%;transform:scaleY(0)}to{opacity:1;transform-origin:100% 100%;transform:scaleY(1)}}@keyframes rcColorPickerSlideDownOut{0%{opacity:1;transform-origin:100% 100%;transform:scaleY(1)}to{opacity:0;transform-origin:100% 100%;transform:scaleY(0)}}.fr-color-picker{width:100%;display:flex;flex-direction:row;align-items:center;color:#666}.fr-color-picker .rc-color-picker-trigger{margin-right:12px;height:32px;width:60px;border:1px solid #e5e5e5}.fr-color-picker>p{margin:0;font-size:14px;line-height:28px}.fr-color-picker .rc-color-picker-wrap{display:flex}.fr-preview-image{width:160px}.fr-preview{position:relative;cursor:pointer}.fr-slider{display:flex;width:100%;align-items:center}.fr-upload-mod,.fr-upload-file{display:flex}.fr-upload-mod{align-items:center}.fr-upload-mod .fr-upload-preview{margin:0 12px}.fr-upload-file .ant-upload-list-item{margin:5px 0 0 8px}.fr-upload-file .ant-upload-list-item-name{margin-right:6px}.fr-upload-file .ant-upload-list-item-info{cursor:pointer}.fr-upload-file .next-upload-list-text .next-upload-list-item-done,.fr-upload-file .next-upload-list-text .next-upload-list-item .next-icon{height:28px;line-height:28px;margin-left:12px}.fr-upload-file .next-upload-list-item-name-wrap{margin-top:-4px}.fr-panel-bordered{border-radius:4px;border:1px solid #f4f4f4;padding:52px 24px 0;margin-bottom:24px}.fr-obj-card{border-radius:4px;border-color:#f4f4f4;margin-bottom:24px!important}.fr-obj-card .ant-card-head{border:none}.fr-obj-card .ant-card-body{padding:12px 24px!important}.fr-obj-card .fr-header-desc{word-break:break-all;color:#00000073;margin-left:6px;font-weight:400}.fr-obj-collapse{border-radius:4px;border:1px solid #f1f1f1;margin-bottom:24px}.fr-obj-collapse .collapse-title{height:24px;color:#000000e0;font-weight:600;font-size:16px;line-height:24px}.fr-obj-collapse .fr-header-desc{word-break:break-all;color:#00000073;margin-left:6px;font-weight:400}.fr-obj-collapse .header-item-label{height:14px;margin-left:30px;color:#000;font-weight:600;font-size:14px;line-height:14px}.fr-obj-collapse .header-item-label span{color:#141414}.fr-obj-collapse .expand-icon-desc{margin-left:4px}.fr-obj-collapse .ant-collapse-header{display:flex;align-items:center!important;padding:16px!important;background-color:#fff;border-radius:4px!important}.fr-obj-collapse .ant-collapse-header-text{display:flex;align-items:center}.fr-obj-collapse .tag-no-data{color:#000000a6}.fr-obj-collapse .ant-collapse-content-box{padding:12px 24px!important}.fr-obj-collapse .ant-collapse-content-box .ant-skeleton-title,.fr-obj-collapse .ant-collapse-content-box .ant-skeleton-paragraph>li{animation:none!important}.fr-obj-subinline-label-hidden>.ant-form-item-row>.ant-form-item-label{visibility:hidden}.fr-obj-subinline-background>.ant-form-item-row>.ant-form-item-control{background-color:#f6f6f6;padding:24px 24px 0;border-radius:4px}.fr-obj-subinline .ant-form-item-row{flex-wrap:nowrap}.fr-obj-line-title .fr-obj-header{line-height:36px;border-bottom:1px solid #e9e9e9}.fr-obj-line-title .fr-header-title{color:#000000e0;font-size:16px;font-weight:600}.fr-obj-line-title .fr-header-desc{word-break:break-all;color:#00000073;margin-left:6px;font-weight:400}.fr-obj-line-title .fr-obj-content{padding:24px 0 0}.fr-list-simple{display:inline-block}.fr-list-simple .fr-inline-field{min-width:220px;margin-bottom:24px!important}.fr-list-simple .fr-list-item{display:flex;align-items:flex-start;position:relative}.fr-list-simple .fr-list-item-operate{height:32px;gap:0!important}.fr-list-simple-background{padding:24px 24px 0;background-color:#f6f6f6;border-radius:4px}.fr-list-simple-background .add-btn{margin-bottom:24px}.fr-list-simple-column .fr-list-item{align-items:center}.fr-list-card{margin-bottom:24px}.fr-list-card .fr-list-item{display:flex;align-items:flex-start;position:relative}.fr-list-card .fr-list-item-operate{padding:0 20px;height:32px;gap:0!important}.fr-list-card .fr-list-item-operate-fixed{position:absolute;right:8px}.fr-list-card .fr-list-add-btn{padding:0 8px}.fr-table-list{margin-bottom:24px}.fr-table-list .ant-form-item{margin-bottom:0}.fr-table-list .ant-form-item-label,.fr-table-list .ant-form-item-explain-error{display:none}.fr-table-list .fr-list-item-operate{gap:0!important}.fr-table-list-no-popover .ant-table-tbody .ant-table-cell{padding:24px 8px 0!important}.fr-table-list-no-popover .ant-form-item{margin-bottom:24px}.fr-table-list-no-popover .ant-form-item-explain-error{display:block;font-size:10px}.fr-list-drawer{margin-bottom:24px}.fr-list-drawer-table-header{width:100%;display:flex;justify-content:right;align-items:center;margin-bottom:10px}.fr-list-drawer .ant-form-item{margin-bottom:0}.fr-list-drawer .fr-list-item-operate{gap:0!important}.fr-virtual-list{margin-bottom:12px}.fr-virtual-list .ant-form-item{margin-bottom:0}.fr-virtual-list .ant-form-item-label,.fr-virtual-list .ant-form-item-explain-error{display:none}.fr-virtual-list .fr-list-item-operate{gap:0!important}.fr-popover-error .ant-popover-inner-content{color:#ff4d4f!important}.fr-virtual-list-no-popover .ant-table-tbody .ant-table-cell{padding:24px 8px 0!important}.fr-virtual-list-no-popover .ant-form-item{margin-bottom:24px}.fr-virtual-list-no-popover .ant-form-item-explain-error{display:block;font-size:10px}.fr-void-title{height:24px;color:#000000e0;font-weight:600;font-size:16px;line-height:24px}.fr-search{width:100%;background:#fff;padding:24px 24px 0 0;margin-bottom:16px;box-sizing:border-box;position:relative}.fr-search .search-action-col{flex:1;display:flex;justify-content:flex-end;align-items:baseline;height:56px}.fr-search .search-action-fixed{position:absolute;right:0;bottom:0;background-color:#fff;padding-right:24px!important}.fr-search .search-action-column{height:auto}.fr-search .search-action-column-fixed{height:86px;padding-top:30px}.fr-search .fr-form>.ant-row{align-items:center}.fr-column-search{padding-left:24px}
|
2
|
-
/*# sourceMappingURL=index.css.map */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pdfme/ui",
|
3
|
-
"version": "3.1.
|
3
|
+
"version": "3.1.1-dev.1",
|
4
4
|
"sideEffects": false,
|
5
5
|
"author": "hand-dot",
|
6
6
|
"license": "MIT",
|
@@ -32,12 +32,10 @@
|
|
32
32
|
"develop": "npm-run-all --parallel devBuild:watch devBuildType:watch",
|
33
33
|
"devBuild:watch": "esbuild src/index.ts --bundle --outfile=dist/index.js --format=esm --watch",
|
34
34
|
"devBuildType:watch": "tsc --emitDeclarationOnly --watch",
|
35
|
-
"build": "
|
35
|
+
"build": "vite build && tsc --emitDeclarationOnly",
|
36
36
|
"clean": "rimraf dist",
|
37
|
-
"lint": "
|
37
|
+
"lint": "eslint --ext .ts,.tsx src",
|
38
38
|
"test": "jest",
|
39
|
-
"lint:watch": "tsc -w --noEmit",
|
40
|
-
"test:watch": "jest --coverage --watch",
|
41
39
|
"prune": "ts-prune src",
|
42
40
|
"prettier": "prettier --write 'src/**/*.{ts,tsx}'"
|
43
41
|
},
|
@@ -62,6 +60,7 @@
|
|
62
60
|
"@testing-library/react": "^12.1.2",
|
63
61
|
"@types/react": "^17.0.52",
|
64
62
|
"@types/react-dom": "^17.0.18",
|
63
|
+
"@vitejs/plugin-react": "^4.2.0",
|
65
64
|
"css-loader": "^6.8.1",
|
66
65
|
"csstype": "^3.1.2",
|
67
66
|
"esbuild": "^0.19.5",
|
@@ -69,7 +68,9 @@
|
|
69
68
|
"eslint-plugin-react-hooks": "^4.3.0",
|
70
69
|
"jest-canvas-mock": "^2.3.1",
|
71
70
|
"process": "^0.11.10",
|
72
|
-
"
|
71
|
+
"vite": "^5.0.0",
|
72
|
+
"vite-plugin-top-level-await": "^1.3.1",
|
73
|
+
"vite-tsconfig-paths": "^4.2.1"
|
73
74
|
},
|
74
75
|
"peerDependencies": {
|
75
76
|
"@pdfme/common": "latest",
|
package/tsconfig.json
CHANGED
@@ -25,13 +25,13 @@
|
|
25
25
|
"../node_modules/@types"
|
26
26
|
],
|
27
27
|
"sourceMap": true,
|
28
|
-
"baseUrl": "
|
28
|
+
"baseUrl": ".",
|
29
29
|
"paths": {
|
30
30
|
"@pdfme/common": [
|
31
|
-
"packages/common/src"
|
31
|
+
"packages/common/dist/esm/src"
|
32
32
|
],
|
33
33
|
"@pdfme/schemas": [
|
34
|
-
"packages/schemas/src"
|
34
|
+
"packages/schemas/dist/esm/src"
|
35
35
|
]
|
36
36
|
},
|
37
37
|
"skipLibCheck": true,
|
package/vite.config.ts
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
import { defineConfig } from 'vite';
|
2
|
+
import react from '@vitejs/plugin-react';
|
3
|
+
import tsconfigPaths from 'vite-tsconfig-paths';
|
4
|
+
import topLevelAwait from 'vite-plugin-top-level-await';
|
5
|
+
|
6
|
+
export default defineConfig({
|
7
|
+
plugins: [
|
8
|
+
react(),
|
9
|
+
tsconfigPaths(),
|
10
|
+
topLevelAwait({
|
11
|
+
promiseExportName: '__tla',
|
12
|
+
promiseImportName: (i) => `__tla_${i}`,
|
13
|
+
}),
|
14
|
+
],
|
15
|
+
build: {
|
16
|
+
lib: {
|
17
|
+
entry: 'src/index.ts',
|
18
|
+
name: '@pdfme/ui',
|
19
|
+
fileName: () => `index.js`,
|
20
|
+
formats: ['es'],
|
21
|
+
},
|
22
|
+
},
|
23
|
+
optimizeDeps: {
|
24
|
+
include: ['react', 'react-dom', 'pdfjs-dist', 'antd'],
|
25
|
+
exclude: ['@pdfme/common', '@pdfme/schemas'],
|
26
|
+
},
|
27
|
+
});
|
package/.eslintrc.js
DELETED
@@ -1,45 +0,0 @@
|
|
1
|
-
module.exports = {
|
2
|
-
root: true,
|
3
|
-
env: {
|
4
|
-
browser: true,
|
5
|
-
es6: true,
|
6
|
-
node: true,
|
7
|
-
},
|
8
|
-
overrides: [
|
9
|
-
{
|
10
|
-
files: ['*.ts', '*.tsx'], // Your TypeScript files extension
|
11
|
-
parserOptions: {
|
12
|
-
project: ['./tsconfig.json'], // Specify it only for TypeScript files
|
13
|
-
},
|
14
|
-
},
|
15
|
-
],
|
16
|
-
parser: '@typescript-eslint/parser',
|
17
|
-
plugins: ['prettier', 'react', 'react-hooks', '@typescript-eslint'],
|
18
|
-
rules: {
|
19
|
-
'no-use-before-define': 'off',
|
20
|
-
'dot-notation': 'warn',
|
21
|
-
'@typescript-eslint/no-use-before-define': ['error'],
|
22
|
-
'@typescript-eslint/explicit-function-return-type': 'off',
|
23
|
-
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
24
|
-
'react-hooks/rules-of-hooks': 'error',
|
25
|
-
'react-hooks/exhaustive-deps': 'warn',
|
26
|
-
},
|
27
|
-
extends: [
|
28
|
-
'plugin:@typescript-eslint/recommended',
|
29
|
-
'prettier',
|
30
|
-
'plugin:react/recommended',
|
31
|
-
'plugin:react-hooks/recommended',
|
32
|
-
'plugin:prettier/recommended',
|
33
|
-
],
|
34
|
-
parserOptions: {
|
35
|
-
parser: 'typescript-eslint-parser',
|
36
|
-
ecmaVersion: 2018,
|
37
|
-
sourceType: 'module',
|
38
|
-
project: 'tsconfig.json',
|
39
|
-
},
|
40
|
-
settings: {
|
41
|
-
react: {
|
42
|
-
version: 'detect',
|
43
|
-
},
|
44
|
-
},
|
45
|
-
};
|
package/dist/index.css.map
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 3,
|
3
|
-
"sources": ["../../../node_modules/form-render/es/render-core/index.css", "../../../node_modules/form-render/es/form-core/index.css", "../../../node_modules/rc-color-picker/assets/index.css", "../../../node_modules/form-render/es/widgets/fields/color/index.css", "../../../node_modules/form-render/es/widgets/fields/imageInput/index.css", "../../../node_modules/form-render/es/widgets/fields/slider/index.css", "../../../node_modules/form-render/es/widgets/fields/upload/index.css", "../../../node_modules/form-render/es/widgets/components/PanelView/index.css", "../../../node_modules/form-render/es/widgets/boxcard/index.css", "../../../node_modules/form-render/es/widgets/boxCollapse/index.css", "../../../node_modules/form-render/es/widgets/boxSubInline/index.css", "../../../node_modules/form-render/es/widgets/boxLineTitle/index.css", "../../../node_modules/form-render/es/widgets/listSimple/index.css", "../../../node_modules/form-render/es/widgets/listCard/index.css", "../../../node_modules/form-render/es/widgets/listTable/index.css", "../../../node_modules/form-render/es/widgets/listDrawer/index.css", "../../../node_modules/form-render/es/widgets/listVirtual/index.css", "../../../node_modules/form-render/es/widgets/voidTitle/index.css", "../../../node_modules/form-render/es/derivative/SearchForm/index.css"],
|
4
|
-
"sourcesContent": [".fr-inline-field {\n display: inline-block;\n margin-right: 16px;\n}\n.fr-inline-container {\n display: inline-flex;\n flex-wrap: wrap;\n}\n.ant-form-item-optional-hide {\n padding: 0 8px;\n}\n.ant-form-item-optional-hide .ant-form-item-label > label {\n font-size: 16px;\n font-weight: #000000d9;\n font-weight: 600;\n}\n.fr-desc {\n word-break: break-all;\n color: rgba(0, 0, 0, 0.45);\n line-height: 22px;\n margin-left: 5px;\n font-weight: normal;\n font-size: 14px;\n}\n", ".fr-hide-label > .ant-form-item-row > .ant-form-item-label {\n visibility: hidden;\n}\n.fr-field .ant-form-item-row {\n flex-wrap: nowrap;\n}\n.fr-field .ant-form-item-control-input-content {\n display: flex;\n}\n.fr-field-visibility {\n width: 0;\n height: 0;\n visibility: hidden;\n}\n.fr-form .ant-form-item-control {\n width: 0;\n}\n.fr-form .fr-inline-field .ant-form-item-control {\n width: auto;\n}\n", ".rc-color-picker-panel-inner {\n position: relative;\n border-radius: 4px;\n box-shadow: 0 1px 5px #ccc;\n border: 1px solid #ccc;\n padding-bottom: 8px;\n}\n.rc-color-picker-panel-wrap {\n margin: 5px 0 0;\n height: 30px;\n width: 100%;\n position: relative;\n}\n.rc-color-picker-panel-wrap-preview {\n position: absolute;\n right: 8px;\n}\n.rc-color-picker-panel-wrap-ribbon {\n position: absolute;\n left: 8px;\n top: 0;\n right: 43px;\n height: 30px;\n}\n.rc-color-picker-panel-wrap-alpha {\n position: absolute;\n left: 8px;\n right: 43px;\n bottom: 0;\n height: 12.5px;\n}\n.rc-color-picker-panel-wrap-has-alpha .rc-color-picker-panel-wrap-ribbon {\n height: 12.5px;\n}\n.rc-color-picker-trigger {\n border: 1px solid #999;\n display: inline-block;\n padding: 2px;\n border-radius: 2px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n width: 20px;\n height: 20px;\n cursor: pointer;\n box-shadow: 0 0 0 2px #fff inset;\n}\n.rc-color-picker-trigger-open {\n box-shadow: 0px 0px 3px #999;\n}\n.rc-color-picker-panel {\n width: 218px;\n background-color: #fff;\n box-sizing: border-box;\n outline: none;\n z-index: 9;\n border-radius: 4px;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.rc-color-picker-panel * {\n box-sizing: border-box;\n}\n.rc-color-picker-panel-open {\n display: block;\n}\n.rc-color-picker-panel-close {\n display: none;\n}\n.rc-color-picker-panel-preview {\n height: 30px;\n width: 30px;\n overflow: hidden;\n border-radius: 2px;\n background-image: url('data:image/png;base64,R0lGODdhCgAKAPAAAOXl5f///ywAAAAACgAKAEACEIQdqXt9GxyETrI279OIgwIAOw==');\n}\n.rc-color-picker-panel-preview span {\n box-shadow: 0 0 2px #808080 inset;\n}\n.rc-color-picker-panel-preview span,\n.rc-color-picker-panel-preview input[type=color] {\n position: absolute;\n display: block;\n height: 100%;\n width: 30px;\n border-radius: 2px;\n}\n.rc-color-picker-panel-preview input[type=color] {\n opacity: 0;\n}\n.rc-color-picker-panel-board {\n position: relative;\n font-size: 0;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n margin: 8px 8px 0px;\n}\n.rc-color-picker-panel-board span {\n position: absolute;\n border-radius: 10px;\n border: 1px solid #fff;\n width: 9px;\n height: 9px;\n margin: -4px 0 0 -4px;\n left: -999px;\n top: -999px;\n box-shadow: 0 0 1px rgba(120, 120, 120, 0.7);\n z-index: 2;\n}\n.rc-color-picker-panel-board-hsv {\n width: 200px;\n height: 150px;\n position: relative;\n z-index: 1;\n border-radius: 2px;\n}\n.rc-color-picker-panel-board-value {\n border-radius: 2px;\n position: absolute;\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n z-index: 2;\n background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigwLDAsMCkiIHN0b3Atb3BhY2l0eT0iMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);\n background-image: -webkit-linear-gradient(top, transparent 0%, #000000 100%);\n background-image: -moz-linear-gradient(top, transparent 0%, #000000 100%);\n background-image: -o-linear-gradient(top, transparent 0%, #000000 100%);\n background-image: linear-gradient(to bottom, transparent 0%, #000000 100%);\n}\n.rc-color-picker-panel-board-saturation {\n border-radius: 2px;\n position: absolute;\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n z-index: 1;\n background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDAsMCwwKSIgc3RvcC1vcGFjaXR5PSIwIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);\n background-image: -webkit-linear-gradient(left, #ffffff 0%, transparent 100%);\n background-image: -moz-linear-gradient(left, #ffffff 0%, transparent 100%);\n background-image: -o-linear-gradient(left, #ffffff 0%, transparent 100%);\n background-image: linear-gradient(to right, #ffffff 0%, transparent 100%);\n}\n.rc-color-picker-panel-board-handler {\n box-shadow: 0 0 2px #808080 inset;\n border-radius: 2px;\n cursor: crosshair;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 3;\n}\n.rc-color-picker-panel-ribbon {\n position: relative;\n height: 100%;\n border-radius: 2px;\n box-shadow: 0 0 2px #808080 inset;\n background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZjAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAlIiBzdG9wLWNvbG9yPSIjZmY5OTAwIiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjIwJSIgc3RvcC1jb2xvcj0iI2NkZmYwMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIzMCUiIHN0b3AtY29sb3I9IiMzNWZmMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iNDAlIiBzdG9wLWNvbG9yPSIjMDBmZjY2IiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwZmZmZCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiMwMDY2ZmYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjMzIwMGZmIiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2NkMDBmZiIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSI5MCUiIHN0b3AtY29sb3I9IiNmZjAwOTkiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmMDAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);\n background-image: -webkit-linear-gradient(left, #ff0000 0%, #ff9900 10%, #cdff00 20%, #35ff00 30%, #00ff66 40%, #00fffd 50%, #0066ff 60%, #3200ff 70%, #cd00ff 80%, #ff0099 90%, #ff0000 100%);\n background-image: -moz-linear-gradient(left, #ff0000 0%, #ff9900 10%, #cdff00 20%, #35ff00 30%, #00ff66 40%, #00fffd 50%, #0066ff 60%, #3200ff 70%, #cd00ff 80%, #ff0099 90%, #ff0000 100%);\n background-image: -o-linear-gradient(left, #ff0000 0%, #ff9900 10%, #cdff00 20%, #35ff00 30%, #00ff66 40%, #00fffd 50%, #0066ff 60%, #3200ff 70%, #cd00ff 80%, #ff0099 90%, #ff0000 100%);\n background-image: linear-gradient(to right, #ff0000 0%, #ff9900 10%, #cdff00 20%, #35ff00 30%, #00ff66 40%, #00fffd 50%, #0066ff 60%, #3200ff 70%, #cd00ff 80%, #ff0099 90%, #ff0000 100%);\n}\n.rc-color-picker-panel-ribbon span {\n position: absolute;\n top: 0;\n height: 100%;\n width: 4px;\n border: 1px solid #000000;\n padding: 1px 0;\n margin-left: -2px;\n background-color: #fff;\n border-radius: 3px;\n}\n.rc-color-picker-panel-ribbon-handler {\n position: absolute;\n width: 104%;\n height: 100%;\n left: -2%;\n cursor: pointer;\n}\n.rc-color-picker-panel-alpha {\n position: relative;\n height: 100%;\n width: 100%;\n border-radius: 2px;\n background-image: url('data:image/png;base64,R0lGODdhCgAKAPAAAOXl5f///ywAAAAACgAKAEACEIQdqXt9GxyETrI279OIgwIAOw==');\n background-repeat: repeat;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.rc-color-picker-panel-alpha-bg {\n position: absolute;\n width: 100%;\n height: 100%;\n border-radius: 2px;\n box-shadow: 0 0 2px #808080 inset;\n}\n.rc-color-picker-panel-alpha span {\n position: absolute;\n top: 0;\n height: 100%;\n width: 4px;\n border: 1px solid #000000;\n padding: 1px 0;\n margin-left: -2px;\n background-color: #fff;\n border-radius: 3px;\n}\n.rc-color-picker-panel-alpha-handler {\n position: absolute;\n width: 104%;\n height: 100%;\n left: -2%;\n cursor: pointer;\n}\n.rc-color-picker-panel-params {\n font-size: 12px;\n}\n.rc-color-picker-panel-params-input {\n overflow: hidden;\n padding: 2px 8px;\n}\n.rc-color-picker-panel-params input {\n -webkit-user-select: text;\n -moz-user-select: text;\n -ms-user-select: text;\n user-select: text;\n text-align: center;\n padding: 1px;\n margin: 0;\n float: left;\n border-radius: 2px;\n border: 1px solid #CACACA;\n font-family: 'Helvetica Neue', Helvetica, sans-serif;\n}\n.rc-color-picker-panel-params-hex {\n width: 52px;\n}\n.rc-color-picker-panel-params input[type=number] {\n margin-left: 5px;\n width: 44px;\n}\n.rc-color-picker-panel-params input[type=number]::-webkit-inner-spin-button {\n -webkit-appearance: none;\n}\n.rc-color-picker-panel-params-lable {\n padding: 2px 8px;\n height: 22px;\n line-height: 18px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.rc-color-picker-panel-params-lable label {\n float: left;\n text-align: center;\n}\n.rc-color-picker-panel-params-lable-hex {\n width: 52px;\n}\n.rc-color-picker-panel-params-lable-number,\n.rc-color-picker-panel-params-lable-alpha {\n margin-left: 5px;\n width: 44px;\n text-transform: uppercase;\n}\n.rc-color-picker-panel-params-lable-number:hover {\n border-radius: 2px;\n background-color: #eee;\n box-shadow: 0 0 0 1px #ccc inset;\n cursor: pointer;\n}\n.rc-color-picker-panel-params-has-alpha input[type=number] {\n width: 32px;\n}\n.rc-color-picker-panel-params-has-alpha .rc-color-picker-panel-params-lable-number,\n.rc-color-picker-panel-params-has-alpha .rc-color-picker-panel-params-lable-alpha {\n width: 32px;\n}\n.rc-color-picker {\n position: absolute;\n left: -9999px;\n top: -9999px;\n z-index: 1000;\n}\n.rc-color-picker-wrap {\n display: inline-block;\n}\n.rc-color-picker-slide-up-enter {\n animation-duration: .3s;\n animation-fill-mode: both;\n transform-origin: 0 0;\n display: block !important;\n opacity: 0;\n animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);\n animation-play-state: paused;\n}\n.rc-color-picker-slide-up-appear {\n animation-duration: .3s;\n animation-fill-mode: both;\n transform-origin: 0 0;\n display: block !important;\n opacity: 0;\n animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);\n animation-play-state: paused;\n}\n.rc-color-picker-slide-up-leave {\n animation-duration: .3s;\n animation-fill-mode: both;\n transform-origin: 0 0;\n display: block !important;\n opacity: 1;\n animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);\n animation-play-state: paused;\n}\n.rc-color-picker-slide-up-enter.rc-color-picker-slide-up-enter-active.rc-color-picker-placement-bottomLeft,\n.rc-color-picker-slide-up-enter.rc-color-picker-slide-up-enter-active.rc-color-picker-placement-bottomRight,\n.rc-color-picker-slide-up-appear.rc-color-picker-slide-up-appear-active.rc-color-picker-placement-bottomLeft,\n.rc-color-picker-slide-up-appear.rc-color-picker-slide-up-appear-active.rc-color-picker-placement-bottomRight {\n animation-name: rcColorPickerSlideUpIn;\n animation-play-state: running;\n}\n.rc-color-picker-slide-up-enter.rc-color-picker-slide-up-enter-active.rc-color-picker-placement-topLeft,\n.rc-color-picker-slide-up-enter.rc-color-picker-slide-up-enter-active.rc-color-picker-placement-topRight,\n.rc-color-picker-slide-up-appear.rc-color-picker-slide-up-appear-active.rc-color-picker-placement-topLeft,\n.rc-color-picker-slide-up-appear.rc-color-picker-slide-up-appear-active.rc-color-picker-placement-topRight {\n animation-name: rcColorPickerSlideDownIn;\n animation-play-state: running;\n}\n.rc-color-picker-slide-up-leave.rc-color-picker-slide-up-leave-active.rc-color-picker-placement-bottomLeft,\n.rc-color-picker-slide-up-leave.rc-color-picker-slide-up-leave-active.rc-color-picker-placement-bottomRight {\n animation-name: rcColorPickerSlideUpOut;\n animation-play-state: running;\n}\n.rc-color-picker-slide-up-leave.rc-color-picker-slide-up-leave-active.rc-color-picker-placement-topLeft,\n.rc-color-picker-slide-up-leave.rc-color-picker-slide-up-leave-active.rc-color-picker-placement-topRight {\n animation-name: rcColorPickerSlideDownOut;\n animation-play-state: running;\n}\n@keyframes rcColorPickerSlideUpIn {\n 0% {\n opacity: 0;\n transform-origin: 0% 0%;\n transform: scaleY(0);\n }\n 100% {\n opacity: 1;\n transform-origin: 0% 0%;\n transform: scaleY(1);\n }\n}\n@keyframes rcColorPickerSlideUpOut {\n 0% {\n opacity: 1;\n transform-origin: 0% 0%;\n transform: scaleY(1);\n }\n 100% {\n opacity: 0;\n transform-origin: 0% 0%;\n transform: scaleY(0);\n }\n}\n@keyframes rcColorPickerSlideDownIn {\n 0% {\n opacity: 0;\n transform-origin: 100% 100%;\n transform: scaleY(0);\n }\n 100% {\n opacity: 1;\n transform-origin: 100% 100%;\n transform: scaleY(1);\n }\n}\n@keyframes rcColorPickerSlideDownOut {\n 0% {\n opacity: 1;\n transform-origin: 100% 100%;\n transform: scaleY(1);\n }\n 100% {\n opacity: 0;\n transform-origin: 100% 100%;\n transform: scaleY(0);\n }\n}\n", ".fr-color-picker {\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n color: #666;\n}\n.fr-color-picker .rc-color-picker-trigger {\n margin-right: 12px;\n height: 32px;\n width: 60px;\n border: 1px solid #e5e5e5;\n}\n.fr-color-picker > p {\n margin: 0;\n font-size: 14px;\n line-height: 28px;\n}\n.fr-color-picker .rc-color-picker-wrap {\n display: flex;\n}\n", ".fr-preview-image {\n width: 160px;\n}\n.fr-preview {\n position: relative;\n cursor: pointer;\n}\n", ".fr-slider {\n display: flex;\n width: 100%;\n align-items: center;\n}\n", ".fr-upload-mod,\n.fr-upload-file {\n display: flex;\n}\n.fr-upload-mod {\n align-items: center;\n}\n.fr-upload-mod .fr-upload-preview {\n margin: 0 12px;\n}\n.fr-upload-file .ant-upload-list-item {\n margin: 5px 0 0 8px;\n}\n.fr-upload-file .ant-upload-list-item-name {\n margin-right: 6px;\n}\n.fr-upload-file .ant-upload-list-item-info {\n cursor: pointer;\n}\n.fr-upload-file .next-upload-list-text .next-upload-list-item-done,\n.fr-upload-file .next-upload-list-text .next-upload-list-item .next-icon {\n height: 28px;\n line-height: 28px;\n margin-left: 12px;\n}\n.fr-upload-file .next-upload-list-item-name-wrap {\n margin-top: -4px;\n}\n", ".fr-panel-bordered {\n border-radius: 4px;\n border: 1px solid #f4f4f4;\n padding: 52px 24px 0px 24px;\n margin-bottom: 24px;\n}\n", ".fr-obj-card {\n border-radius: 4px;\n border-color: #f4f4f4;\n margin-bottom: 24px !important;\n}\n.fr-obj-card .ant-card-head {\n border: none;\n}\n.fr-obj-card .ant-card-body {\n padding: 12px 24px !important;\n}\n.fr-obj-card .fr-header-desc {\n word-break: break-all;\n color: rgba(0, 0, 0, 0.45);\n margin-left: 6px;\n font-weight: normal;\n}\n", ".fr-obj-collapse {\n border-radius: 4px;\n border: 1px solid #f1f1f1;\n margin-bottom: 24px;\n}\n.fr-obj-collapse .collapse-title {\n height: 24px;\n color: #000000e0;\n font-weight: 600;\n font-size: 16px;\n line-height: 24px;\n}\n.fr-obj-collapse .fr-header-desc {\n word-break: break-all;\n color: rgba(0, 0, 0, 0.45);\n margin-left: 6px;\n font-weight: normal;\n}\n.fr-obj-collapse .header-item-label {\n height: 14px;\n margin-left: 30px;\n color: black;\n font-weight: 600;\n font-size: 14px;\n line-height: 14px;\n}\n.fr-obj-collapse .header-item-label span {\n color: #141414;\n}\n.fr-obj-collapse .expand-icon-desc {\n margin-left: 4px;\n}\n.fr-obj-collapse .ant-collapse-header {\n display: flex;\n align-items: center !important;\n padding: 16px !important;\n background-color: #fff;\n border-radius: 4px !important;\n}\n.fr-obj-collapse .ant-collapse-header-text {\n display: flex;\n align-items: center;\n}\n.fr-obj-collapse .tag-no-data {\n color: rgba(0, 0, 0, 0.65);\n}\n.fr-obj-collapse .ant-collapse-content-box {\n padding: 12px 24px !important;\n}\n.fr-obj-collapse .ant-collapse-content-box .ant-skeleton-title,\n.fr-obj-collapse .ant-collapse-content-box .ant-skeleton-paragraph > li {\n animation: none !important;\n}\n", ".fr-obj-subinline-label-hidden > .ant-form-item-row > .ant-form-item-label {\n visibility: hidden;\n}\n.fr-obj-subinline-background > .ant-form-item-row > .ant-form-item-control {\n background-color: #f6f6f6;\n padding: 24px 24px 0 24px;\n border-radius: 4px;\n}\n.fr-obj-subinline .ant-form-item-row {\n flex-wrap: nowrap;\n}\n", ".fr-obj-line-title .fr-obj-header {\n line-height: 36px;\n border-bottom: 1px solid #e9e9e9;\n}\n.fr-obj-line-title .fr-header-title {\n color: #000000e0;\n font-size: 16px;\n font-weight: 600;\n}\n.fr-obj-line-title .fr-header-desc {\n word-break: break-all;\n color: rgba(0, 0, 0, 0.45);\n margin-left: 6px;\n font-weight: normal;\n}\n.fr-obj-line-title .fr-obj-content {\n padding: 24px 0 0 0;\n}\n", ".fr-list-simple {\n display: inline-block;\n}\n.fr-list-simple .fr-inline-field {\n min-width: 220px;\n margin-bottom: 24px !important;\n}\n.fr-list-simple .fr-list-item {\n display: flex;\n align-items: flex-start;\n position: relative;\n}\n.fr-list-simple .fr-list-item-operate {\n height: 32px;\n gap: 0 !important;\n}\n.fr-list-simple-background {\n padding: 24px 24px 0 24px;\n background-color: #f6f6f6;\n border-radius: 4px;\n}\n.fr-list-simple-background .add-btn {\n margin-bottom: 24px;\n}\n.fr-list-simple-column .fr-list-item {\n align-items: center;\n}\n", ".fr-list-card {\n margin-bottom: 24px;\n}\n.fr-list-card .fr-list-item {\n display: flex;\n align-items: flex-start;\n position: relative;\n}\n.fr-list-card .fr-list-item-operate {\n padding: 0 20px;\n height: 32px;\n gap: 0 !important;\n}\n.fr-list-card .fr-list-item-operate-fixed {\n position: absolute;\n right: 8px;\n}\n.fr-list-card .fr-list-add-btn {\n padding: 0 8px;\n}\n", ".fr-table-list {\n margin-bottom: 24px;\n}\n.fr-table-list .ant-form-item {\n margin-bottom: 0;\n}\n.fr-table-list .ant-form-item-label {\n display: none;\n}\n.fr-table-list .ant-form-item-explain-error {\n display: none;\n}\n.fr-table-list .fr-list-item-operate {\n gap: 0 !important;\n}\n.fr-popover-error .ant-popover-inner-content {\n color: #ff4d4f !important;\n}\n.fr-table-list-no-popover .ant-table-tbody .ant-table-cell {\n padding: 24px 8px 0px 8px !important;\n}\n.fr-table-list-no-popover .ant-form-item {\n margin-bottom: 24px;\n}\n.fr-table-list-no-popover .ant-form-item-explain-error {\n display: block;\n font-size: 10px;\n}\n", ".fr-list-drawer {\n margin-bottom: 24px;\n}\n.fr-list-drawer-table-header {\n width: 100%;\n display: flex;\n justify-content: right;\n align-items: center;\n margin-bottom: 10px;\n}\n.fr-list-drawer .ant-form-item {\n margin-bottom: 0;\n}\n.fr-list-drawer .fr-list-item-operate {\n gap: 0 !important;\n}\n", ".fr-virtual-list {\n margin-bottom: 12px;\n}\n.fr-virtual-list .ant-form-item {\n margin-bottom: 0;\n}\n.fr-virtual-list .ant-form-item-label {\n display: none;\n}\n.fr-virtual-list .ant-form-item-explain-error {\n display: none;\n}\n.fr-virtual-list .fr-list-item-operate {\n gap: 0 !important;\n}\n.fr-popover-error .ant-popover-inner-content {\n color: #ff4d4f !important;\n}\n.fr-virtual-list-no-popover .ant-table-tbody .ant-table-cell {\n padding: 24px 8px 0px 8px !important;\n}\n.fr-virtual-list-no-popover .ant-form-item {\n margin-bottom: 24px;\n}\n.fr-virtual-list-no-popover .ant-form-item-explain-error {\n display: block;\n font-size: 10px;\n}\n", ".fr-void-title {\n height: 24px;\n color: #000000e0;\n font-weight: 600;\n font-size: 16px;\n line-height: 24px;\n}\n", ".fr-search {\n width: 100%;\n background: #fff;\n padding: 24px 24px 0 0;\n margin-bottom: 16px;\n box-sizing: border-box;\n position: relative;\n}\n.fr-search .search-action-col {\n flex: 1;\n display: flex;\n justify-content: flex-end;\n align-items: baseline;\n height: 56px;\n}\n.fr-search .search-action-fixed {\n position: absolute;\n right: 0;\n bottom: 0;\n background-color: #fff;\n padding-right: 24px !important;\n}\n.fr-search .search-action-column {\n height: auto;\n}\n.fr-search .search-action-column-fixed {\n height: 86px;\n padding-top: 30px;\n}\n.fr-search .fr-form > .ant-row {\n align-items: center;\n}\n.fr-column-search {\n padding-left: 24px;\n}\n"],
|
5
|
-
"mappings": "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",
|
6
|
-
"names": []
|
7
|
-
}
|