lowcoder-comps 0.0.31 → 0.0.33
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/00bb478a.js +1102 -0
- package/02bef5a4.js +505 -0
- package/057d2a44.js +1127 -0
- package/0964fcc6.js +34 -0
- package/14220e98.js +1276 -0
- package/1c074fe4.js +25 -0
- package/250a6954.js +804 -0
- package/256b619e.js +92 -0
- package/2cd27cf0.js +2501 -0
- package/2f064957.js +64 -0
- package/2ff2c7a6.js +6 -0
- package/2ff7471d.js +9 -0
- package/30c4916b.js +8 -0
- package/36ec7270.js +915 -0
- package/38c14832.js +960 -0
- package/3ae34bed.js +819 -0
- package/3e2939fa.js +237 -0
- package/3f5f874f.js +86 -0
- package/3fb86fb9.js +447 -0
- package/415177f9.js +1579 -0
- package/47848c42.js +11636 -0
- package/4c6a0ece.js +162535 -0
- package/4db8e48b.js +2284 -0
- package/531065f1.js +1089 -0
- package/5a398ea8.js +881 -0
- package/5ab1614c.js +268 -0
- package/65bbb6ae.js +1536 -0
- package/777cd15c.js +48428 -0
- package/7dacfa82.js +220 -0
- package/800cf0d0.js +796 -0
- package/92e85b65.js +65 -0
- package/93e9bd3a.js +391 -0
- package/98622dfa.js +16582 -0
- package/a2e74e62.js +2967 -0
- package/a61c3bd3.js +5 -0
- package/b8f48ff4.js +769 -0
- package/bd0f5f65.js +319 -0
- package/bf4428f5.js +1269 -0
- package/cb1972f7.js +455 -0
- package/dfc10c94.js +818 -0
- package/ed2c9753.js +208 -0
- package/ef2833e6.js +927 -0
- package/f9637058.js +16 -0
- package/f9e72519.js +1284 -0
- package/fe063d15.js +19339 -0
- package/index.js +5 -0
- package/package.json +30 -3
- package/README.md +0 -120
- package/index.html +0 -26
- package/index.tsx +0 -21
- package/jest.config.js +0 -6
- package/src/__test__/allComp.test.tsx +0 -61
- package/src/app-env.d.ts +0 -3
- package/src/comps/calendarComp/calendarComp.tsx +0 -633
- package/src/comps/calendarComp/calendarConstants.tsx +0 -1048
- package/src/comps/calendarComp/errorBoundary.tsx +0 -30
- package/src/comps/chartComp/chartComp.tsx +0 -442
- package/src/comps/chartComp/chartConfigs/barChartConfig.tsx +0 -51
- package/src/comps/chartComp/chartConfigs/cartesianAxisConfig.tsx +0 -307
- package/src/comps/chartComp/chartConfigs/chartUrls.tsx +0 -9
- package/src/comps/chartComp/chartConfigs/legendConfig.tsx +0 -55
- package/src/comps/chartComp/chartConfigs/lineChartConfig.tsx +0 -96
- package/src/comps/chartComp/chartConfigs/pieChartConfig.tsx +0 -83
- package/src/comps/chartComp/chartConfigs/scatterChartConfig.tsx +0 -62
- package/src/comps/chartComp/chartConstants.tsx +0 -299
- package/src/comps/chartComp/chartPropertyView.tsx +0 -235
- package/src/comps/chartComp/chartUtils.ts +0 -291
- package/src/comps/chartComp/reactEcharts/core.tsx +0 -194
- package/src/comps/chartComp/reactEcharts/index.ts +0 -21
- package/src/comps/chartComp/reactEcharts/types.ts +0 -76
- package/src/comps/chartComp/seriesComp.tsx +0 -119
- package/src/comps/imageEditorComp/imageEditorClass.tsx +0 -52
- package/src/comps/imageEditorComp/imageEditorConstants.tsx +0 -109
- package/src/comps/imageEditorComp/index.tsx +0 -184
- package/src/comps/mermaidComp/index.tsx +0 -44
- package/src/comps/mermaidComp/mermaid.tsx +0 -29
- package/src/global.ts +0 -1
- package/src/i18n/comps/index.tsx +0 -29
- package/src/i18n/comps/locales/en.ts +0 -163
- package/src/i18n/comps/locales/enObj.tsx +0 -198
- package/src/i18n/comps/locales/index.ts +0 -7
- package/src/i18n/comps/locales/types.tsx +0 -10
- package/src/i18n/comps/locales/zh.ts +0 -156
- package/src/i18n/comps/locales/zhObj.tsx +0 -4
- package/src/index.ts +0 -11
- package/tsconfig.json +0 -22
- package/vite.config.js +0 -10
package/cb1972f7.js
ADDED
|
@@ -0,0 +1,455 @@
|
|
|
1
|
+
var C = (e, l, s) => new Promise((o, i) => {
|
|
2
|
+
var p = (c) => {
|
|
3
|
+
try {
|
|
4
|
+
a(s.next(c));
|
|
5
|
+
} catch (r) {
|
|
6
|
+
i(r);
|
|
7
|
+
}
|
|
8
|
+
}, f = (c) => {
|
|
9
|
+
try {
|
|
10
|
+
a(s.throw(c));
|
|
11
|
+
} catch (r) {
|
|
12
|
+
i(r);
|
|
13
|
+
}
|
|
14
|
+
}, a = (c) => c.done ? o(c.value) : Promise.resolve(c.value).then(p, f);
|
|
15
|
+
a((s = s.apply(e, l)).next());
|
|
16
|
+
});
|
|
17
|
+
import { G as F } from "./5a398ea8.js";
|
|
18
|
+
import { S as G, y as j, z as U, A as H, B as K, q as B, l as g, r as W, e as S, m as q, t as P, u as L, p as A, j as $, C as X, v as J, D as Q } from "./4c6a0ece.js";
|
|
19
|
+
import { r as Y } from "./93e9bd3a.js";
|
|
20
|
+
import { c as Z } from "./a61c3bd3.js";
|
|
21
|
+
function O(e) {
|
|
22
|
+
return typeof e == "string" ? new G([document.querySelectorAll(e)], [document.documentElement]) : new G([U(e)], j);
|
|
23
|
+
}
|
|
24
|
+
function fe(e, l) {
|
|
25
|
+
return !!e.children(l).length;
|
|
26
|
+
}
|
|
27
|
+
function ue(e) {
|
|
28
|
+
return N(e.v) + ":" + N(e.w) + ":" + N(e.name);
|
|
29
|
+
}
|
|
30
|
+
var ee = /:/g;
|
|
31
|
+
function N(e) {
|
|
32
|
+
return e ? String(e).replace(ee, "\\:") : "";
|
|
33
|
+
}
|
|
34
|
+
function te(e, l) {
|
|
35
|
+
l && e.attr("style", l);
|
|
36
|
+
}
|
|
37
|
+
function we(e, l, s) {
|
|
38
|
+
l && e.attr("class", l).attr("class", s + " " + e.attr("class"));
|
|
39
|
+
}
|
|
40
|
+
function he(e, l) {
|
|
41
|
+
var s = l.graph();
|
|
42
|
+
if (H(s)) {
|
|
43
|
+
var o = s.transition;
|
|
44
|
+
if (K(o))
|
|
45
|
+
return o(e);
|
|
46
|
+
}
|
|
47
|
+
return e;
|
|
48
|
+
}
|
|
49
|
+
function re(e, l) {
|
|
50
|
+
var s = e.append("foreignObject").attr("width", "100000"), o = s.append("xhtml:div");
|
|
51
|
+
o.attr("xmlns", "http://www.w3.org/1999/xhtml");
|
|
52
|
+
var i = l.label;
|
|
53
|
+
switch (typeof i) {
|
|
54
|
+
case "function":
|
|
55
|
+
o.insert(i);
|
|
56
|
+
break;
|
|
57
|
+
case "object":
|
|
58
|
+
o.insert(function() {
|
|
59
|
+
return i;
|
|
60
|
+
});
|
|
61
|
+
break;
|
|
62
|
+
default:
|
|
63
|
+
o.html(i);
|
|
64
|
+
}
|
|
65
|
+
te(o, l.labelStyle), o.style("display", "inline-block"), o.style("white-space", "nowrap");
|
|
66
|
+
var p = o.node().getBoundingClientRect();
|
|
67
|
+
return s.attr("width", p.width).attr("height", p.height), s;
|
|
68
|
+
}
|
|
69
|
+
const V = {}, le = function(e) {
|
|
70
|
+
const l = Object.keys(e);
|
|
71
|
+
for (const s of l)
|
|
72
|
+
V[s] = e[s];
|
|
73
|
+
}, M = function(e, l, s, o, i, p) {
|
|
74
|
+
return C(this, null, function* () {
|
|
75
|
+
const f = o.select(`[id="${s}"]`), a = Object.keys(e);
|
|
76
|
+
for (const c of a) {
|
|
77
|
+
const r = e[c];
|
|
78
|
+
let y = "default";
|
|
79
|
+
r.classes.length > 0 && (y = r.classes.join(" ")), y = y + " flowchart-label";
|
|
80
|
+
const w = B(r.styles);
|
|
81
|
+
let t = r.text !== void 0 ? r.text : r.id, d;
|
|
82
|
+
if (g.info("vertex", r, r.labelType), r.labelType === "markdown")
|
|
83
|
+
g.info("vertex", r, r.labelType);
|
|
84
|
+
else if (W(S().flowchart.htmlLabels))
|
|
85
|
+
d = re(f, {
|
|
86
|
+
label: t
|
|
87
|
+
}).node(), d.parentNode.removeChild(d);
|
|
88
|
+
else {
|
|
89
|
+
const k = i.createElementNS("http://www.w3.org/2000/svg", "text");
|
|
90
|
+
k.setAttribute("style", w.labelStyle.replace("color:", "fill:"));
|
|
91
|
+
const _ = t.split(q.lineBreakRegex);
|
|
92
|
+
for (const E of _) {
|
|
93
|
+
const v = i.createElementNS("http://www.w3.org/2000/svg", "tspan");
|
|
94
|
+
v.setAttributeNS("http://www.w3.org/XML/1998/namespace", "xml:space", "preserve"), v.setAttribute("dy", "1em"), v.setAttribute("x", "1"), v.textContent = E, k.appendChild(v);
|
|
95
|
+
}
|
|
96
|
+
d = k;
|
|
97
|
+
}
|
|
98
|
+
let b = 0, n = "";
|
|
99
|
+
switch (r.type) {
|
|
100
|
+
case "round":
|
|
101
|
+
b = 5, n = "rect";
|
|
102
|
+
break;
|
|
103
|
+
case "square":
|
|
104
|
+
n = "rect";
|
|
105
|
+
break;
|
|
106
|
+
case "diamond":
|
|
107
|
+
n = "question";
|
|
108
|
+
break;
|
|
109
|
+
case "hexagon":
|
|
110
|
+
n = "hexagon";
|
|
111
|
+
break;
|
|
112
|
+
case "odd":
|
|
113
|
+
n = "rect_left_inv_arrow";
|
|
114
|
+
break;
|
|
115
|
+
case "lean_right":
|
|
116
|
+
n = "lean_right";
|
|
117
|
+
break;
|
|
118
|
+
case "lean_left":
|
|
119
|
+
n = "lean_left";
|
|
120
|
+
break;
|
|
121
|
+
case "trapezoid":
|
|
122
|
+
n = "trapezoid";
|
|
123
|
+
break;
|
|
124
|
+
case "inv_trapezoid":
|
|
125
|
+
n = "inv_trapezoid";
|
|
126
|
+
break;
|
|
127
|
+
case "odd_right":
|
|
128
|
+
n = "rect_left_inv_arrow";
|
|
129
|
+
break;
|
|
130
|
+
case "circle":
|
|
131
|
+
n = "circle";
|
|
132
|
+
break;
|
|
133
|
+
case "ellipse":
|
|
134
|
+
n = "ellipse";
|
|
135
|
+
break;
|
|
136
|
+
case "stadium":
|
|
137
|
+
n = "stadium";
|
|
138
|
+
break;
|
|
139
|
+
case "subroutine":
|
|
140
|
+
n = "subroutine";
|
|
141
|
+
break;
|
|
142
|
+
case "cylinder":
|
|
143
|
+
n = "cylinder";
|
|
144
|
+
break;
|
|
145
|
+
case "group":
|
|
146
|
+
n = "rect";
|
|
147
|
+
break;
|
|
148
|
+
case "doublecircle":
|
|
149
|
+
n = "doublecircle";
|
|
150
|
+
break;
|
|
151
|
+
default:
|
|
152
|
+
n = "rect";
|
|
153
|
+
}
|
|
154
|
+
const T = yield P(t, S());
|
|
155
|
+
l.setNode(r.id, {
|
|
156
|
+
labelStyle: w.labelStyle,
|
|
157
|
+
shape: n,
|
|
158
|
+
labelText: T,
|
|
159
|
+
labelType: r.labelType,
|
|
160
|
+
rx: b,
|
|
161
|
+
ry: b,
|
|
162
|
+
class: y,
|
|
163
|
+
style: w.style,
|
|
164
|
+
id: r.id,
|
|
165
|
+
link: r.link,
|
|
166
|
+
linkTarget: r.linkTarget,
|
|
167
|
+
tooltip: p.db.getTooltip(r.id) || "",
|
|
168
|
+
domId: p.db.lookUpDomId(r.id),
|
|
169
|
+
haveCallback: r.haveCallback,
|
|
170
|
+
width: r.type === "group" ? 500 : void 0,
|
|
171
|
+
dir: r.dir,
|
|
172
|
+
type: r.type,
|
|
173
|
+
props: r.props,
|
|
174
|
+
padding: S().flowchart.padding
|
|
175
|
+
}), g.info("setNode", {
|
|
176
|
+
labelStyle: w.labelStyle,
|
|
177
|
+
labelType: r.labelType,
|
|
178
|
+
shape: n,
|
|
179
|
+
labelText: T,
|
|
180
|
+
rx: b,
|
|
181
|
+
ry: b,
|
|
182
|
+
class: y,
|
|
183
|
+
style: w.style,
|
|
184
|
+
id: r.id,
|
|
185
|
+
domId: p.db.lookUpDomId(r.id),
|
|
186
|
+
width: r.type === "group" ? 500 : void 0,
|
|
187
|
+
type: r.type,
|
|
188
|
+
dir: r.dir,
|
|
189
|
+
props: r.props,
|
|
190
|
+
padding: S().flowchart.padding
|
|
191
|
+
});
|
|
192
|
+
}
|
|
193
|
+
});
|
|
194
|
+
}, R = function(e, l, s) {
|
|
195
|
+
return C(this, null, function* () {
|
|
196
|
+
g.info("abc78 edges = ", e);
|
|
197
|
+
let o = 0, i = {}, p, f;
|
|
198
|
+
if (e.defaultStyle !== void 0) {
|
|
199
|
+
const a = B(e.defaultStyle);
|
|
200
|
+
p = a.style, f = a.labelStyle;
|
|
201
|
+
}
|
|
202
|
+
for (const a of e) {
|
|
203
|
+
o++;
|
|
204
|
+
const c = "L-" + a.start + "-" + a.end;
|
|
205
|
+
i[c] === void 0 ? (i[c] = 0, g.info("abc78 new entry", c, i[c])) : (i[c]++, g.info("abc78 new entry", c, i[c]));
|
|
206
|
+
let r = c + "-" + i[c];
|
|
207
|
+
g.info("abc78 new link id to be used is", c, r, i[c]);
|
|
208
|
+
const y = "LS-" + a.start, w = "LE-" + a.end, t = { style: "", labelStyle: "" };
|
|
209
|
+
switch (t.minlen = a.length || 1, a.type === "arrow_open" ? t.arrowhead = "none" : t.arrowhead = "normal", t.arrowTypeStart = "arrow_open", t.arrowTypeEnd = "arrow_open", a.type) {
|
|
210
|
+
case "double_arrow_cross":
|
|
211
|
+
t.arrowTypeStart = "arrow_cross";
|
|
212
|
+
case "arrow_cross":
|
|
213
|
+
t.arrowTypeEnd = "arrow_cross";
|
|
214
|
+
break;
|
|
215
|
+
case "double_arrow_point":
|
|
216
|
+
t.arrowTypeStart = "arrow_point";
|
|
217
|
+
case "arrow_point":
|
|
218
|
+
t.arrowTypeEnd = "arrow_point";
|
|
219
|
+
break;
|
|
220
|
+
case "double_arrow_circle":
|
|
221
|
+
t.arrowTypeStart = "arrow_circle";
|
|
222
|
+
case "arrow_circle":
|
|
223
|
+
t.arrowTypeEnd = "arrow_circle";
|
|
224
|
+
break;
|
|
225
|
+
}
|
|
226
|
+
let d = "", b = "";
|
|
227
|
+
switch (a.stroke) {
|
|
228
|
+
case "normal":
|
|
229
|
+
d = "fill:none;", p !== void 0 && (d = p), f !== void 0 && (b = f), t.thickness = "normal", t.pattern = "solid";
|
|
230
|
+
break;
|
|
231
|
+
case "dotted":
|
|
232
|
+
t.thickness = "normal", t.pattern = "dotted", t.style = "fill:none;stroke-width:2px;stroke-dasharray:3;";
|
|
233
|
+
break;
|
|
234
|
+
case "thick":
|
|
235
|
+
t.thickness = "thick", t.pattern = "solid", t.style = "stroke-width: 3.5px;fill:none;";
|
|
236
|
+
break;
|
|
237
|
+
case "invisible":
|
|
238
|
+
t.thickness = "invisible", t.pattern = "solid", t.style = "stroke-width: 0;fill:none;";
|
|
239
|
+
break;
|
|
240
|
+
}
|
|
241
|
+
if (a.style !== void 0) {
|
|
242
|
+
const n = B(a.style);
|
|
243
|
+
d = n.style, b = n.labelStyle;
|
|
244
|
+
}
|
|
245
|
+
t.style = t.style += d, t.labelStyle = t.labelStyle += b, a.interpolate !== void 0 ? t.curve = L(a.interpolate, A) : e.defaultInterpolate !== void 0 ? t.curve = L(e.defaultInterpolate, A) : t.curve = L(V.curve, A), a.text === void 0 ? a.style !== void 0 && (t.arrowheadStyle = "fill: #333") : (t.arrowheadStyle = "fill: #333", t.labelpos = "c"), t.labelType = a.labelType, t.label = yield P(a.text.replace(q.lineBreakRegex, `
|
|
246
|
+
`), S()), a.style === void 0 && (t.style = t.style || "stroke: #333; stroke-width: 1.5px;fill:none;"), t.labelStyle = t.labelStyle.replace("color:", "fill:"), t.id = r, t.classes = "flowchart-link " + y + " " + w, l.setEdge(a.start, a.end, t, o);
|
|
247
|
+
}
|
|
248
|
+
});
|
|
249
|
+
}, ae = function(e, l) {
|
|
250
|
+
return l.db.getClasses();
|
|
251
|
+
}, oe = function(e, l, s, o) {
|
|
252
|
+
return C(this, null, function* () {
|
|
253
|
+
g.info("Drawing flowchart");
|
|
254
|
+
let i = o.db.getDirection();
|
|
255
|
+
i === void 0 && (i = "TD");
|
|
256
|
+
const { securityLevel: p, flowchart: f } = S(), a = f.nodeSpacing || 50, c = f.rankSpacing || 50;
|
|
257
|
+
let r;
|
|
258
|
+
p === "sandbox" && (r = $("#i" + l));
|
|
259
|
+
const y = p === "sandbox" ? $(r.nodes()[0].contentDocument.body) : $("body"), w = p === "sandbox" ? r.nodes()[0].contentDocument : document, t = new F({
|
|
260
|
+
multigraph: !0,
|
|
261
|
+
compound: !0
|
|
262
|
+
}).setGraph({
|
|
263
|
+
rankdir: i,
|
|
264
|
+
nodesep: a,
|
|
265
|
+
ranksep: c,
|
|
266
|
+
marginx: 0,
|
|
267
|
+
marginy: 0
|
|
268
|
+
}).setDefaultEdgeLabel(function() {
|
|
269
|
+
return {};
|
|
270
|
+
});
|
|
271
|
+
let d;
|
|
272
|
+
const b = o.db.getSubGraphs();
|
|
273
|
+
g.info("Subgraphs - ", b);
|
|
274
|
+
for (let u = b.length - 1; u >= 0; u--)
|
|
275
|
+
d = b[u], g.info("Subgraph - ", d), o.db.addVertex(
|
|
276
|
+
d.id,
|
|
277
|
+
{ text: d.title, type: d.labelType },
|
|
278
|
+
"group",
|
|
279
|
+
void 0,
|
|
280
|
+
d.classes,
|
|
281
|
+
d.dir
|
|
282
|
+
);
|
|
283
|
+
const n = o.db.getVertices(), T = o.db.getEdges();
|
|
284
|
+
g.info("Edges", T);
|
|
285
|
+
let k = 0;
|
|
286
|
+
for (k = b.length - 1; k >= 0; k--) {
|
|
287
|
+
d = b[k], O("cluster").append("text");
|
|
288
|
+
for (let u = 0; u < d.nodes.length; u++)
|
|
289
|
+
g.info("Setting up subgraphs", d.nodes[u], d.id), t.setParent(d.nodes[u], d.id);
|
|
290
|
+
}
|
|
291
|
+
yield M(n, t, l, y, w, o), yield R(T, t);
|
|
292
|
+
const _ = y.select(`[id="${l}"]`), E = y.select("#" + l + " g");
|
|
293
|
+
if (yield Y(E, t, ["point", "circle", "cross"], "flowchart", l), X.insertTitle(_, "flowchartTitleText", f.titleTopMargin, o.db.getDiagramTitle()), J(t, _, f.diagramPadding, f.useMaxWidth), o.db.indexNodes("subGraph" + k), !f.htmlLabels) {
|
|
294
|
+
const u = w.querySelectorAll('[id="' + l + '"] .edgeLabel .label');
|
|
295
|
+
for (const x of u) {
|
|
296
|
+
const m = x.getBBox(), h = w.createElementNS("http://www.w3.org/2000/svg", "rect");
|
|
297
|
+
h.setAttribute("rx", 0), h.setAttribute("ry", 0), h.setAttribute("width", m.width), h.setAttribute("height", m.height), x.insertBefore(h, x.firstChild);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
Object.keys(n).forEach(function(u) {
|
|
301
|
+
const x = n[u];
|
|
302
|
+
if (x.link) {
|
|
303
|
+
const m = $("#" + l + ' [id="' + u + '"]');
|
|
304
|
+
if (m) {
|
|
305
|
+
const h = w.createElementNS("http://www.w3.org/2000/svg", "a");
|
|
306
|
+
h.setAttributeNS("http://www.w3.org/2000/svg", "class", x.classes.join(" ")), h.setAttributeNS("http://www.w3.org/2000/svg", "href", x.link), h.setAttributeNS("http://www.w3.org/2000/svg", "rel", "noopener"), p === "sandbox" ? h.setAttributeNS("http://www.w3.org/2000/svg", "target", "_top") : x.linkTarget && h.setAttributeNS("http://www.w3.org/2000/svg", "target", x.linkTarget);
|
|
307
|
+
const D = m.insert(function() {
|
|
308
|
+
return h;
|
|
309
|
+
}, ":first-child"), I = m.select(".label-container");
|
|
310
|
+
I && D.append(function() {
|
|
311
|
+
return I.node();
|
|
312
|
+
});
|
|
313
|
+
const z = m.select(".label");
|
|
314
|
+
z && D.append(function() {
|
|
315
|
+
return z.node();
|
|
316
|
+
});
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
});
|
|
320
|
+
});
|
|
321
|
+
}, ge = {
|
|
322
|
+
setConf: le,
|
|
323
|
+
addVertices: M,
|
|
324
|
+
addEdges: R,
|
|
325
|
+
getClasses: ae,
|
|
326
|
+
draw: oe
|
|
327
|
+
}, ne = (e, l) => {
|
|
328
|
+
const s = Z, o = s(e, "r"), i = s(e, "g"), p = s(e, "b");
|
|
329
|
+
return Q(o, i, p, l);
|
|
330
|
+
}, se = (e) => `.label {
|
|
331
|
+
font-family: ${e.fontFamily};
|
|
332
|
+
color: ${e.nodeTextColor || e.textColor};
|
|
333
|
+
}
|
|
334
|
+
.cluster-label text {
|
|
335
|
+
fill: ${e.titleColor};
|
|
336
|
+
}
|
|
337
|
+
.cluster-label span,p {
|
|
338
|
+
color: ${e.titleColor};
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.label text,span,p {
|
|
342
|
+
fill: ${e.nodeTextColor || e.textColor};
|
|
343
|
+
color: ${e.nodeTextColor || e.textColor};
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.node rect,
|
|
347
|
+
.node circle,
|
|
348
|
+
.node ellipse,
|
|
349
|
+
.node polygon,
|
|
350
|
+
.node path {
|
|
351
|
+
fill: ${e.mainBkg};
|
|
352
|
+
stroke: ${e.nodeBorder};
|
|
353
|
+
stroke-width: 1px;
|
|
354
|
+
}
|
|
355
|
+
.flowchart-label text {
|
|
356
|
+
text-anchor: middle;
|
|
357
|
+
}
|
|
358
|
+
// .flowchart-label .text-outer-tspan {
|
|
359
|
+
// text-anchor: middle;
|
|
360
|
+
// }
|
|
361
|
+
// .flowchart-label .text-inner-tspan {
|
|
362
|
+
// text-anchor: start;
|
|
363
|
+
// }
|
|
364
|
+
|
|
365
|
+
.node .katex path {
|
|
366
|
+
fill: #000;
|
|
367
|
+
stroke: #000;
|
|
368
|
+
stroke-width: 1px;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.node .label {
|
|
372
|
+
text-align: center;
|
|
373
|
+
}
|
|
374
|
+
.node.clickable {
|
|
375
|
+
cursor: pointer;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.arrowheadPath {
|
|
379
|
+
fill: ${e.arrowheadColor};
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.edgePath .path {
|
|
383
|
+
stroke: ${e.lineColor};
|
|
384
|
+
stroke-width: 2.0px;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.flowchart-link {
|
|
388
|
+
stroke: ${e.lineColor};
|
|
389
|
+
fill: none;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.edgeLabel {
|
|
393
|
+
background-color: ${e.edgeLabelBackground};
|
|
394
|
+
rect {
|
|
395
|
+
opacity: 0.5;
|
|
396
|
+
background-color: ${e.edgeLabelBackground};
|
|
397
|
+
fill: ${e.edgeLabelBackground};
|
|
398
|
+
}
|
|
399
|
+
text-align: center;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
/* For html labels only */
|
|
403
|
+
.labelBkg {
|
|
404
|
+
background-color: ${ne(e.edgeLabelBackground, 0.5)};
|
|
405
|
+
// background-color:
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.cluster rect {
|
|
409
|
+
fill: ${e.clusterBkg};
|
|
410
|
+
stroke: ${e.clusterBorder};
|
|
411
|
+
stroke-width: 1px;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.cluster text {
|
|
415
|
+
fill: ${e.titleColor};
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.cluster span,p {
|
|
419
|
+
color: ${e.titleColor};
|
|
420
|
+
}
|
|
421
|
+
/* .cluster div {
|
|
422
|
+
color: ${e.titleColor};
|
|
423
|
+
} */
|
|
424
|
+
|
|
425
|
+
div.mermaidTooltip {
|
|
426
|
+
position: absolute;
|
|
427
|
+
text-align: center;
|
|
428
|
+
max-width: 200px;
|
|
429
|
+
padding: 2px;
|
|
430
|
+
font-family: ${e.fontFamily};
|
|
431
|
+
font-size: 12px;
|
|
432
|
+
background: ${e.tertiaryColor};
|
|
433
|
+
border: 1px solid ${e.border2};
|
|
434
|
+
border-radius: 2px;
|
|
435
|
+
pointer-events: none;
|
|
436
|
+
z-index: 100;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.flowchartTitleText {
|
|
440
|
+
text-anchor: middle;
|
|
441
|
+
font-size: 18px;
|
|
442
|
+
fill: ${e.textColor};
|
|
443
|
+
}
|
|
444
|
+
`, ye = se;
|
|
445
|
+
export {
|
|
446
|
+
te as a,
|
|
447
|
+
re as b,
|
|
448
|
+
he as c,
|
|
449
|
+
we as d,
|
|
450
|
+
ue as e,
|
|
451
|
+
ge as f,
|
|
452
|
+
ye as g,
|
|
453
|
+
fe as i,
|
|
454
|
+
O as s
|
|
455
|
+
};
|