lowcoder-comps 0.0.29 → 0.0.31

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.
Files changed (86) hide show
  1. package/README.md +120 -0
  2. package/index.html +26 -0
  3. package/index.tsx +21 -0
  4. package/jest.config.js +6 -0
  5. package/package.json +3 -4
  6. package/src/__test__/allComp.test.tsx +61 -0
  7. package/src/app-env.d.ts +3 -0
  8. package/src/comps/calendarComp/calendarComp.tsx +633 -0
  9. package/src/comps/calendarComp/calendarConstants.tsx +1048 -0
  10. package/src/comps/calendarComp/errorBoundary.tsx +30 -0
  11. package/src/comps/chartComp/chartComp.tsx +442 -0
  12. package/src/comps/chartComp/chartConfigs/barChartConfig.tsx +51 -0
  13. package/src/comps/chartComp/chartConfigs/cartesianAxisConfig.tsx +307 -0
  14. package/src/comps/chartComp/chartConfigs/chartUrls.tsx +9 -0
  15. package/src/comps/chartComp/chartConfigs/legendConfig.tsx +55 -0
  16. package/src/comps/chartComp/chartConfigs/lineChartConfig.tsx +96 -0
  17. package/src/comps/chartComp/chartConfigs/pieChartConfig.tsx +83 -0
  18. package/src/comps/chartComp/chartConfigs/scatterChartConfig.tsx +62 -0
  19. package/src/comps/chartComp/chartConstants.tsx +299 -0
  20. package/src/comps/chartComp/chartPropertyView.tsx +235 -0
  21. package/src/comps/chartComp/chartUtils.ts +291 -0
  22. package/src/comps/chartComp/reactEcharts/core.tsx +194 -0
  23. package/src/comps/chartComp/reactEcharts/index.ts +21 -0
  24. package/src/comps/chartComp/reactEcharts/types.ts +76 -0
  25. package/src/comps/chartComp/seriesComp.tsx +119 -0
  26. package/src/comps/imageEditorComp/imageEditorClass.tsx +52 -0
  27. package/src/comps/imageEditorComp/imageEditorConstants.tsx +109 -0
  28. package/src/comps/imageEditorComp/index.tsx +184 -0
  29. package/src/comps/mermaidComp/index.tsx +44 -0
  30. package/src/comps/mermaidComp/mermaid.tsx +29 -0
  31. package/src/global.ts +1 -0
  32. package/src/i18n/comps/index.tsx +29 -0
  33. package/src/i18n/comps/locales/en.ts +163 -0
  34. package/src/i18n/comps/locales/enObj.tsx +198 -0
  35. package/src/i18n/comps/locales/index.ts +7 -0
  36. package/src/i18n/comps/locales/types.tsx +10 -0
  37. package/src/i18n/comps/locales/zh.ts +156 -0
  38. package/src/i18n/comps/locales/zhObj.tsx +4 -0
  39. package/src/index.ts +11 -0
  40. package/tsconfig.json +22 -0
  41. package/vite.config.js +10 -0
  42. package/2085da13.js +0 -960
  43. package/250691b5.js +0 -5
  44. package/256b619e.js +0 -92
  45. package/274f545c.js +0 -881
  46. package/289305a1.js +0 -208
  47. package/2eae45c2.js +0 -34
  48. package/2ff2c7a6.js +0 -6
  49. package/2ff7471d.js +0 -9
  50. package/335b22a2.js +0 -220
  51. package/38c826fe.js +0 -1127
  52. package/44011c1d.js +0 -818
  53. package/4fc06812.js +0 -64
  54. package/56a787cf.js +0 -915
  55. package/590941ff.js +0 -86
  56. package/6341867f.js +0 -804
  57. package/657fd065.js +0 -8
  58. package/78a5e50d.js +0 -1579
  59. package/820c3641.js +0 -25
  60. package/88b4e75a.js +0 -2967
  61. package/8d999722.js +0 -1102
  62. package/92e85b65.js +0 -65
  63. package/989caea2.js +0 -505
  64. package/99b984d1.js +0 -237
  65. package/9e5f02d6.js +0 -19104
  66. package/a40faea7.js +0 -11624
  67. package/abac9104.js +0 -1536
  68. package/af2f19b3.js +0 -819
  69. package/af5ee3de.js +0 -268
  70. package/b24707c2.js +0 -48428
  71. package/b68f8b69.js +0 -1276
  72. package/ba68ba65.js +0 -391
  73. package/bafb8599.js +0 -319
  74. package/bba60c35.js +0 -2501
  75. package/bd7c2a8e.js +0 -1089
  76. package/c71dadea.js +0 -455
  77. package/d05c1762.js +0 -933
  78. package/d073ab24.js +0 -134353
  79. package/d838cd10.js +0 -769
  80. package/dc36a6eb.js +0 -796
  81. package/ed143450.js +0 -1284
  82. package/ee8ec8f2.js +0 -2284
  83. package/f6755210.js +0 -1269
  84. package/f9637058.js +0 -16
  85. package/fba4c8e4.js +0 -447
  86. package/index.js +0 -5
package/f9637058.js DELETED
@@ -1,16 +0,0 @@
1
- function t(e, a) {
2
- switch (arguments.length) {
3
- case 0:
4
- break;
5
- case 1:
6
- this.range(e);
7
- break;
8
- default:
9
- this.range(a).domain(e);
10
- break;
11
- }
12
- return this;
13
- }
14
- export {
15
- t as i
16
- };
package/fba4c8e4.js DELETED
@@ -1,447 +0,0 @@
1
- import { _ as un, $ as I, a0 as U, a1 as Y, a2 as fn } from "./d073ab24.js";
2
- import { i as cn } from "./f9637058.js";
3
- function F(n, t) {
4
- return n == null || t == null ? NaN : n < t ? -1 : n > t ? 1 : n >= t ? 0 : NaN;
5
- }
6
- function hn(n, t) {
7
- return n == null || t == null ? NaN : t < n ? -1 : t > n ? 1 : t >= n ? 0 : NaN;
8
- }
9
- function W(n) {
10
- let t, e, r;
11
- n.length !== 2 ? (t = F, e = (u, c) => F(n(u), c), r = (u, c) => n(u) - c) : (t = n === F || n === hn ? n : mn, e = n, r = n);
12
- function i(u, c, o = 0, l = u.length) {
13
- if (o < l) {
14
- if (t(c, c) !== 0)
15
- return l;
16
- do {
17
- const h = o + l >>> 1;
18
- e(u[h], c) < 0 ? o = h + 1 : l = h;
19
- } while (o < l);
20
- }
21
- return o;
22
- }
23
- function f(u, c, o = 0, l = u.length) {
24
- if (o < l) {
25
- if (t(c, c) !== 0)
26
- return l;
27
- do {
28
- const h = o + l >>> 1;
29
- e(u[h], c) <= 0 ? o = h + 1 : l = h;
30
- } while (o < l);
31
- }
32
- return o;
33
- }
34
- function a(u, c, o = 0, l = u.length) {
35
- const h = i(u, c, o, l - 1);
36
- return h > o && r(u[h - 1], c) > -r(u[h], c) ? h - 1 : h;
37
- }
38
- return { left: i, center: a, right: f };
39
- }
40
- function mn() {
41
- return 0;
42
- }
43
- function sn(n) {
44
- return n === null ? NaN : +n;
45
- }
46
- const ln = W(F), dn = ln.right;
47
- W(sn).center;
48
- const gn = dn, yn = Math.sqrt(50), Mn = Math.sqrt(10), pn = Math.sqrt(2);
49
- function R(n, t, e) {
50
- const r = (t - n) / Math.max(0, e), i = Math.floor(Math.log10(r)), f = r / Math.pow(10, i), a = f >= yn ? 10 : f >= Mn ? 5 : f >= pn ? 2 : 1;
51
- let u, c, o;
52
- return i < 0 ? (o = Math.pow(10, -i) / a, u = Math.round(n * o), c = Math.round(t * o), u / o < n && ++u, c / o > t && --c, o = -o) : (o = Math.pow(10, i) * a, u = Math.round(n / o), c = Math.round(t / o), u * o < n && ++u, c * o > t && --c), c < u && 0.5 <= e && e < 2 ? R(n, t, e * 2) : [u, c, o];
53
- }
54
- function wn(n, t, e) {
55
- if (t = +t, n = +n, e = +e, !(e > 0))
56
- return [];
57
- if (n === t)
58
- return [n];
59
- const r = t < n, [i, f, a] = r ? R(t, n, e) : R(n, t, e);
60
- if (!(f >= i))
61
- return [];
62
- const u = f - i + 1, c = new Array(u);
63
- if (r)
64
- if (a < 0)
65
- for (let o = 0; o < u; ++o)
66
- c[o] = (f - o) / -a;
67
- else
68
- for (let o = 0; o < u; ++o)
69
- c[o] = (f - o) * a;
70
- else if (a < 0)
71
- for (let o = 0; o < u; ++o)
72
- c[o] = (i + o) / -a;
73
- else
74
- for (let o = 0; o < u; ++o)
75
- c[o] = (i + o) * a;
76
- return c;
77
- }
78
- function L(n, t, e) {
79
- return t = +t, n = +n, e = +e, R(n, t, e)[2];
80
- }
81
- function Nn(n, t, e) {
82
- t = +t, n = +n, e = +e;
83
- const r = t < n, i = r ? L(t, n, e) : L(n, t, e);
84
- return (r ? -1 : 1) * (i < 0 ? 1 / -i : i);
85
- }
86
- function kn(n, t) {
87
- t || (t = []);
88
- var e = n ? Math.min(t.length, n.length) : 0, r = t.slice(), i;
89
- return function(f) {
90
- for (i = 0; i < e; ++i)
91
- r[i] = n[i] * (1 - f) + t[i] * f;
92
- return r;
93
- };
94
- }
95
- function xn(n) {
96
- return ArrayBuffer.isView(n) && !(n instanceof DataView);
97
- }
98
- function An(n, t) {
99
- var e = t ? t.length : 0, r = n ? Math.min(e, n.length) : 0, i = new Array(r), f = new Array(e), a;
100
- for (a = 0; a < r; ++a)
101
- i[a] = C(n[a], t[a]);
102
- for (; a < e; ++a)
103
- f[a] = t[a];
104
- return function(u) {
105
- for (a = 0; a < r; ++a)
106
- f[a] = i[a](u);
107
- return f;
108
- };
109
- }
110
- function vn(n, t) {
111
- var e = /* @__PURE__ */ new Date();
112
- return n = +n, t = +t, function(r) {
113
- return e.setTime(n * (1 - r) + t * r), e;
114
- };
115
- }
116
- function Sn(n, t) {
117
- var e = {}, r = {}, i;
118
- (n === null || typeof n != "object") && (n = {}), (t === null || typeof t != "object") && (t = {});
119
- for (i in t)
120
- i in n ? e[i] = C(n[i], t[i]) : r[i] = t[i];
121
- return function(f) {
122
- for (i in e)
123
- r[i] = e[i](f);
124
- return r;
125
- };
126
- }
127
- function C(n, t) {
128
- var e = typeof t, r;
129
- return t == null || e === "boolean" ? un(t) : (e === "number" ? I : e === "string" ? (r = U(t)) ? (t = r, Y) : fn : t instanceof U ? Y : t instanceof Date ? vn : xn(t) ? kn : Array.isArray(t) ? An : typeof t.valueOf != "function" && typeof t.toString != "function" || isNaN(t) ? Sn : I)(n, t);
130
- }
131
- function bn(n, t) {
132
- return n = +n, t = +t, function(e) {
133
- return Math.round(n * (1 - e) + t * e);
134
- };
135
- }
136
- function jn(n) {
137
- return Math.abs(n = Math.round(n)) >= 1e21 ? n.toLocaleString("en").replace(/,/g, "") : n.toString(10);
138
- }
139
- function E(n, t) {
140
- if ((e = (n = t ? n.toExponential(t - 1) : n.toExponential()).indexOf("e")) < 0)
141
- return null;
142
- var e, r = n.slice(0, e);
143
- return [
144
- r.length > 1 ? r[0] + r.slice(2) : r,
145
- +n.slice(e + 1)
146
- ];
147
- }
148
- function v(n) {
149
- return n = E(Math.abs(n)), n ? n[1] : NaN;
150
- }
151
- function Pn(n, t) {
152
- return function(e, r) {
153
- for (var i = e.length, f = [], a = 0, u = n[0], c = 0; i > 0 && u > 0 && (c + u + 1 > r && (u = Math.max(1, r - c)), f.push(e.substring(i -= u, i + u)), !((c += u + 1) > r)); )
154
- u = n[a = (a + 1) % n.length];
155
- return f.reverse().join(t);
156
- };
157
- }
158
- function zn(n) {
159
- return function(t) {
160
- return t.replace(/[0-9]/g, function(e) {
161
- return n[+e];
162
- });
163
- };
164
- }
165
- var $n = /^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;
166
- function D(n) {
167
- if (!(t = $n.exec(n)))
168
- throw new Error("invalid format: " + n);
169
- var t;
170
- return new B({
171
- fill: t[1],
172
- align: t[2],
173
- sign: t[3],
174
- symbol: t[4],
175
- zero: t[5],
176
- width: t[6],
177
- comma: t[7],
178
- precision: t[8] && t[8].slice(1),
179
- trim: t[9],
180
- type: t[10]
181
- });
182
- }
183
- D.prototype = B.prototype;
184
- function B(n) {
185
- this.fill = n.fill === void 0 ? " " : n.fill + "", this.align = n.align === void 0 ? ">" : n.align + "", this.sign = n.sign === void 0 ? "-" : n.sign + "", this.symbol = n.symbol === void 0 ? "" : n.symbol + "", this.zero = !!n.zero, this.width = n.width === void 0 ? void 0 : +n.width, this.comma = !!n.comma, this.precision = n.precision === void 0 ? void 0 : +n.precision, this.trim = !!n.trim, this.type = n.type === void 0 ? "" : n.type + "";
186
- }
187
- B.prototype.toString = function() {
188
- return this.fill + this.align + this.sign + this.symbol + (this.zero ? "0" : "") + (this.width === void 0 ? "" : Math.max(1, this.width | 0)) + (this.comma ? "," : "") + (this.precision === void 0 ? "" : "." + Math.max(0, this.precision | 0)) + (this.trim ? "~" : "") + this.type;
189
- };
190
- function Fn(n) {
191
- n:
192
- for (var t = n.length, e = 1, r = -1, i; e < t; ++e)
193
- switch (n[e]) {
194
- case ".":
195
- r = i = e;
196
- break;
197
- case "0":
198
- r === 0 && (r = e), i = e;
199
- break;
200
- default:
201
- if (!+n[e])
202
- break n;
203
- r > 0 && (r = 0);
204
- break;
205
- }
206
- return r > 0 ? n.slice(0, r) + n.slice(i + 1) : n;
207
- }
208
- var nn;
209
- function Rn(n, t) {
210
- var e = E(n, t);
211
- if (!e)
212
- return n + "";
213
- var r = e[0], i = e[1], f = i - (nn = Math.max(-8, Math.min(8, Math.floor(i / 3))) * 3) + 1, a = r.length;
214
- return f === a ? r : f > a ? r + new Array(f - a + 1).join("0") : f > 0 ? r.slice(0, f) + "." + r.slice(f) : "0." + new Array(1 - f).join("0") + E(n, Math.max(0, t + f - 1))[0];
215
- }
216
- function Z(n, t) {
217
- var e = E(n, t);
218
- if (!e)
219
- return n + "";
220
- var r = e[0], i = e[1];
221
- return i < 0 ? "0." + new Array(-i).join("0") + r : r.length > i + 1 ? r.slice(0, i + 1) + "." + r.slice(i + 1) : r + new Array(i - r.length + 2).join("0");
222
- }
223
- const _ = {
224
- "%": (n, t) => (n * 100).toFixed(t),
225
- b: (n) => Math.round(n).toString(2),
226
- c: (n) => n + "",
227
- d: jn,
228
- e: (n, t) => n.toExponential(t),
229
- f: (n, t) => n.toFixed(t),
230
- g: (n, t) => n.toPrecision(t),
231
- o: (n) => Math.round(n).toString(8),
232
- p: (n, t) => Z(n * 100, t),
233
- r: Z,
234
- s: Rn,
235
- X: (n) => Math.round(n).toString(16).toUpperCase(),
236
- x: (n) => Math.round(n).toString(16)
237
- };
238
- function H(n) {
239
- return n;
240
- }
241
- var J = Array.prototype.map, K = ["y", "z", "a", "f", "p", "n", "µ", "m", "", "k", "M", "G", "T", "P", "E", "Z", "Y"];
242
- function En(n) {
243
- var t = n.grouping === void 0 || n.thousands === void 0 ? H : Pn(J.call(n.grouping, Number), n.thousands + ""), e = n.currency === void 0 ? "" : n.currency[0] + "", r = n.currency === void 0 ? "" : n.currency[1] + "", i = n.decimal === void 0 ? "." : n.decimal + "", f = n.numerals === void 0 ? H : zn(J.call(n.numerals, String)), a = n.percent === void 0 ? "%" : n.percent + "", u = n.minus === void 0 ? "−" : n.minus + "", c = n.nan === void 0 ? "NaN" : n.nan + "";
244
- function o(h) {
245
- h = D(h);
246
- var s = h.fill, p = h.align, y = h.sign, S = h.symbol, k = h.zero, b = h.width, T = h.comma, w = h.precision, G = h.trim, d = h.type;
247
- d === "n" ? (T = !0, d = "g") : _[d] || (w === void 0 && (w = 12), G = !0, d = "g"), (k || s === "0" && p === "=") && (k = !0, s = "0", p = "=");
248
- var en = S === "$" ? e : S === "#" && /[boxX]/.test(d) ? "0" + d.toLowerCase() : "", on = S === "$" ? r : /[%p]/.test(d) ? a : "", O = _[d], an = /[defgprs%]/.test(d);
249
- w = w === void 0 ? 6 : /[gprs]/.test(d) ? Math.max(1, Math.min(21, w)) : Math.max(0, Math.min(20, w));
250
- function V(m) {
251
- var N = en, g = on, x, X, j;
252
- if (d === "c")
253
- g = O(m) + g, m = "";
254
- else {
255
- m = +m;
256
- var P = m < 0 || 1 / m < 0;
257
- if (m = isNaN(m) ? c : O(Math.abs(m), w), G && (m = Fn(m)), P && +m == 0 && y !== "+" && (P = !1), N = (P ? y === "(" ? y : u : y === "-" || y === "(" ? "" : y) + N, g = (d === "s" ? K[8 + nn / 3] : "") + g + (P && y === "(" ? ")" : ""), an) {
258
- for (x = -1, X = m.length; ++x < X; )
259
- if (j = m.charCodeAt(x), 48 > j || j > 57) {
260
- g = (j === 46 ? i + m.slice(x + 1) : m.slice(x)) + g, m = m.slice(0, x);
261
- break;
262
- }
263
- }
264
- }
265
- T && !k && (m = t(m, 1 / 0));
266
- var z = N.length + m.length + g.length, M = z < b ? new Array(b - z + 1).join(s) : "";
267
- switch (T && k && (m = t(M + m, M.length ? b - g.length : 1 / 0), M = ""), p) {
268
- case "<":
269
- m = N + m + g + M;
270
- break;
271
- case "=":
272
- m = N + M + m + g;
273
- break;
274
- case "^":
275
- m = M.slice(0, z = M.length >> 1) + N + m + g + M.slice(z);
276
- break;
277
- default:
278
- m = M + N + m + g;
279
- break;
280
- }
281
- return f(m);
282
- }
283
- return V.toString = function() {
284
- return h + "";
285
- }, V;
286
- }
287
- function l(h, s) {
288
- var p = o((h = D(h), h.type = "f", h)), y = Math.max(-8, Math.min(8, Math.floor(v(s) / 3))) * 3, S = Math.pow(10, -y), k = K[8 + y / 3];
289
- return function(b) {
290
- return p(S * b) + k;
291
- };
292
- }
293
- return {
294
- format: o,
295
- formatPrefix: l
296
- };
297
- }
298
- var $, tn, rn;
299
- Dn({
300
- thousands: ",",
301
- grouping: [3],
302
- currency: ["$", ""]
303
- });
304
- function Dn(n) {
305
- return $ = En(n), tn = $.format, rn = $.formatPrefix, $;
306
- }
307
- function Tn(n) {
308
- return Math.max(0, -v(Math.abs(n)));
309
- }
310
- function In(n, t) {
311
- return Math.max(0, Math.max(-8, Math.min(8, Math.floor(v(t) / 3))) * 3 - v(Math.abs(n)));
312
- }
313
- function Ln(n, t) {
314
- return n = Math.abs(n), t = Math.abs(t) - n, Math.max(0, v(t) - v(n)) + 1;
315
- }
316
- function qn(n) {
317
- return function() {
318
- return n;
319
- };
320
- }
321
- function Cn(n) {
322
- return +n;
323
- }
324
- var Q = [0, 1];
325
- function A(n) {
326
- return n;
327
- }
328
- function q(n, t) {
329
- return (t -= n = +n) ? function(e) {
330
- return (e - n) / t;
331
- } : qn(isNaN(t) ? NaN : 0.5);
332
- }
333
- function Bn(n, t) {
334
- var e;
335
- return n > t && (e = n, n = t, t = e), function(r) {
336
- return Math.max(n, Math.min(t, r));
337
- };
338
- }
339
- function Gn(n, t, e) {
340
- var r = n[0], i = n[1], f = t[0], a = t[1];
341
- return i < r ? (r = q(i, r), f = e(a, f)) : (r = q(r, i), f = e(f, a)), function(u) {
342
- return f(r(u));
343
- };
344
- }
345
- function On(n, t, e) {
346
- var r = Math.min(n.length, t.length) - 1, i = new Array(r), f = new Array(r), a = -1;
347
- for (n[r] < n[0] && (n = n.slice().reverse(), t = t.slice().reverse()); ++a < r; )
348
- i[a] = q(n[a], n[a + 1]), f[a] = e(t[a], t[a + 1]);
349
- return function(u) {
350
- var c = gn(n, u, 1, r) - 1;
351
- return f[c](i[c](u));
352
- };
353
- }
354
- function Vn(n, t) {
355
- return t.domain(n.domain()).range(n.range()).interpolate(n.interpolate()).clamp(n.clamp()).unknown(n.unknown());
356
- }
357
- function Xn() {
358
- var n = Q, t = Q, e = C, r, i, f, a = A, u, c, o;
359
- function l() {
360
- var s = Math.min(n.length, t.length);
361
- return a !== A && (a = Bn(n[0], n[s - 1])), u = s > 2 ? On : Gn, c = o = null, h;
362
- }
363
- function h(s) {
364
- return s == null || isNaN(s = +s) ? f : (c || (c = u(n.map(r), t, e)))(r(a(s)));
365
- }
366
- return h.invert = function(s) {
367
- return a(i((o || (o = u(t, n.map(r), I)))(s)));
368
- }, h.domain = function(s) {
369
- return arguments.length ? (n = Array.from(s, Cn), l()) : n.slice();
370
- }, h.range = function(s) {
371
- return arguments.length ? (t = Array.from(s), l()) : t.slice();
372
- }, h.rangeRound = function(s) {
373
- return t = Array.from(s), e = bn, l();
374
- }, h.clamp = function(s) {
375
- return arguments.length ? (a = s ? !0 : A, l()) : a !== A;
376
- }, h.interpolate = function(s) {
377
- return arguments.length ? (e = s, l()) : e;
378
- }, h.unknown = function(s) {
379
- return arguments.length ? (f = s, h) : f;
380
- }, function(s, p) {
381
- return r = s, i = p, l();
382
- };
383
- }
384
- function Un() {
385
- return Xn()(A, A);
386
- }
387
- function Yn(n, t, e, r) {
388
- var i = Nn(n, t, e), f;
389
- switch (r = D(r == null ? ",f" : r), r.type) {
390
- case "s": {
391
- var a = Math.max(Math.abs(n), Math.abs(t));
392
- return r.precision == null && !isNaN(f = In(i, a)) && (r.precision = f), rn(r, a);
393
- }
394
- case "":
395
- case "e":
396
- case "g":
397
- case "p":
398
- case "r": {
399
- r.precision == null && !isNaN(f = Ln(i, Math.max(Math.abs(n), Math.abs(t)))) && (r.precision = f - (r.type === "e"));
400
- break;
401
- }
402
- case "f":
403
- case "%": {
404
- r.precision == null && !isNaN(f = Tn(i)) && (r.precision = f - (r.type === "%") * 2);
405
- break;
406
- }
407
- }
408
- return tn(r);
409
- }
410
- function Zn(n) {
411
- var t = n.domain;
412
- return n.ticks = function(e) {
413
- var r = t();
414
- return wn(r[0], r[r.length - 1], e == null ? 10 : e);
415
- }, n.tickFormat = function(e, r) {
416
- var i = t();
417
- return Yn(i[0], i[i.length - 1], e == null ? 10 : e, r);
418
- }, n.nice = function(e) {
419
- e == null && (e = 10);
420
- var r = t(), i = 0, f = r.length - 1, a = r[i], u = r[f], c, o, l = 10;
421
- for (u < a && (o = a, a = u, u = o, o = i, i = f, f = o); l-- > 0; ) {
422
- if (o = L(a, u, e), o === c)
423
- return r[i] = a, r[f] = u, t(r);
424
- if (o > 0)
425
- a = Math.floor(a / o) * o, u = Math.ceil(u / o) * o;
426
- else if (o < 0)
427
- a = Math.ceil(a * o) / o, u = Math.floor(u * o) / o;
428
- else
429
- break;
430
- c = o;
431
- }
432
- return n;
433
- }, n;
434
- }
435
- function _n() {
436
- var n = Un();
437
- return n.copy = function() {
438
- return Vn(n, _n());
439
- }, cn.apply(n, arguments), Zn(n);
440
- }
441
- export {
442
- Vn as a,
443
- W as b,
444
- Un as c,
445
- _n as l,
446
- Nn as t
447
- };
package/index.js DELETED
@@ -1,5 +0,0 @@
1
- (function(){"use strict";try{if(typeof document!="undefined"){var e=document.createElement("style");e.id="lowcoder-comps-0.0.29",e.appendChild(document.createTextNode("")),document.head.appendChild(e)}}catch(c){console.error("vite-plugin-css-injected-by-js",c)}})();
2
- import { b8 as f } from "./d073ab24.js";
3
- export {
4
- f as default
5
- };