@dpuse/dpuse-tool-d3 0.0.10 → 0.0.12

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 (44) hide show
  1. package/README.md +244 -208
  2. package/dist/axis-DbjL_93j.js +1621 -0
  3. package/dist/axis-DbjL_93j.js.map +1 -0
  4. package/dist/billboardJs-DHDJ97w1.js +7313 -0
  5. package/dist/billboardJs-DHDJ97w1.js.map +1 -0
  6. package/dist/bump-znhpCF6A.js +75 -0
  7. package/dist/bump-znhpCF6A.js.map +1 -0
  8. package/dist/dpuse-tool-d3.es.js +31 -18816
  9. package/dist/dpuse-tool-d3.es.js.map +1 -1
  10. package/dist/drag-B46QGUMq.js +173 -0
  11. package/dist/drag-B46QGUMq.js.map +1 -0
  12. package/dist/{erdDiagram-DNEvMuIA.js → erdDiagram-b-qDkEhY.js} +22 -20
  13. package/dist/erdDiagram-b-qDkEhY.js.map +1 -0
  14. package/dist/linear-J4iYa1Bf.js +34 -0
  15. package/dist/linear-J4iYa1Bf.js.map +1 -0
  16. package/dist/link-Dti9fi9g.js +33 -0
  17. package/dist/link-Dti9fi9g.js.map +1 -0
  18. package/dist/networkDiagram-QWVy8iRy.js +493 -0
  19. package/dist/networkDiagram-QWVy8iRy.js.map +1 -0
  20. package/dist/observablePlot-CNlbR_T4.js +7008 -0
  21. package/dist/observablePlot-CNlbR_T4.js.map +1 -0
  22. package/dist/path-Bt1sPr2f.js +65 -0
  23. package/dist/path-Bt1sPr2f.js.map +1 -0
  24. package/dist/sankeyDiagram-Dgf87Zt4.js +360 -0
  25. package/dist/sankeyDiagram-Dgf87Zt4.js.map +1 -0
  26. package/dist/{bump-S1d-3Q8P.js → select-BIuoFcZG.js} +161 -325
  27. package/dist/select-BIuoFcZG.js.map +1 -0
  28. package/dist/src-B7SGbtRQ.js +332 -0
  29. package/dist/src-B7SGbtRQ.js.map +1 -0
  30. package/dist/src-DnMaAyIP.js +1194 -0
  31. package/dist/src-DnMaAyIP.js.map +1 -0
  32. package/dist/sum-BAZU479z.js +36 -0
  33. package/dist/sum-BAZU479z.js.map +1 -0
  34. package/dist/treeDiagram-BJ_QF4os.js +277 -0
  35. package/dist/treeDiagram-BJ_QF4os.js.map +1 -0
  36. package/dist/types/src/{barChart.d.ts → billboardJs.d.ts} +2 -2
  37. package/dist/types/src/index.d.ts +9 -7
  38. package/dist/types/src/observablePlot.d.ts +8 -0
  39. package/package.json +1 -1
  40. package/dist/bump-S1d-3Q8P.js.map +0 -1
  41. package/dist/erdDiagram-DNEvMuIA.js.map +0 -1
  42. package/dist/types/src/plotBarChart.d.ts +0 -7
  43. /package/dist/types/tests/{barChart.test.d.ts → billboardJs.test.d.ts} +0 -0
  44. /package/dist/types/tests/{plotBarChart.test.d.ts → observablePlot.test.d.ts} +0 -0
@@ -0,0 +1,1194 @@
1
+ import { a as e, d as t, i as n, l as r, o as i, s as a, t as o } from "./select-BIuoFcZG.js";
2
+ //#region node_modules/d3-selection/src/sourceEvent.js
3
+ function s(e) {
4
+ let t;
5
+ for (; t = e.sourceEvent;) e = t;
6
+ return e;
7
+ }
8
+ //#endregion
9
+ //#region node_modules/d3-selection/src/pointer.js
10
+ function c(e, t) {
11
+ if (e = s(e), t === void 0 && (t = e.currentTarget), t) {
12
+ var n = t.ownerSVGElement || t;
13
+ if (n.createSVGPoint) {
14
+ var r = n.createSVGPoint();
15
+ return r.x = e.clientX, r.y = e.clientY, r = r.matrixTransform(t.getScreenCTM().inverse()), [r.x, r.y];
16
+ }
17
+ if (t.getBoundingClientRect) {
18
+ var i = t.getBoundingClientRect();
19
+ return [e.clientX - i.left - t.clientLeft, e.clientY - i.top - t.clientTop];
20
+ }
21
+ }
22
+ return [e.pageX, e.pageY];
23
+ }
24
+ //#endregion
25
+ //#region node_modules/d3-dispatch/src/dispatch.js
26
+ var l = { value: () => {} };
27
+ function u() {
28
+ for (var e = 0, t = arguments.length, n = {}, r; e < t; ++e) {
29
+ if (!(r = arguments[e] + "") || r in n || /[\s.]/.test(r)) throw Error("illegal type: " + r);
30
+ n[r] = [];
31
+ }
32
+ return new d(n);
33
+ }
34
+ function d(e) {
35
+ this._ = e;
36
+ }
37
+ function f(e, t) {
38
+ return e.trim().split(/^|\s+/).map(function(e) {
39
+ var n = "", r = e.indexOf(".");
40
+ if (r >= 0 && (n = e.slice(r + 1), e = e.slice(0, r)), e && !t.hasOwnProperty(e)) throw Error("unknown type: " + e);
41
+ return {
42
+ type: e,
43
+ name: n
44
+ };
45
+ });
46
+ }
47
+ d.prototype = u.prototype = {
48
+ constructor: d,
49
+ on: function(e, t) {
50
+ var n = this._, r = f(e + "", n), i, a = -1, o = r.length;
51
+ if (arguments.length < 2) {
52
+ for (; ++a < o;) if ((i = (e = r[a]).type) && (i = p(n[i], e.name))) return i;
53
+ return;
54
+ }
55
+ if (t != null && typeof t != "function") throw Error("invalid callback: " + t);
56
+ for (; ++a < o;) if (i = (e = r[a]).type) n[i] = m(n[i], e.name, t);
57
+ else if (t == null) for (i in n) n[i] = m(n[i], e.name, null);
58
+ return this;
59
+ },
60
+ copy: function() {
61
+ var e = {}, t = this._;
62
+ for (var n in t) e[n] = t[n].slice();
63
+ return new d(e);
64
+ },
65
+ call: function(e, t) {
66
+ if ((i = arguments.length - 2) > 0) for (var n = Array(i), r = 0, i, a; r < i; ++r) n[r] = arguments[r + 2];
67
+ if (!this._.hasOwnProperty(e)) throw Error("unknown type: " + e);
68
+ for (a = this._[e], r = 0, i = a.length; r < i; ++r) a[r].value.apply(t, n);
69
+ },
70
+ apply: function(e, t, n) {
71
+ if (!this._.hasOwnProperty(e)) throw Error("unknown type: " + e);
72
+ for (var r = this._[e], i = 0, a = r.length; i < a; ++i) r[i].value.apply(t, n);
73
+ }
74
+ };
75
+ function p(e, t) {
76
+ for (var n = 0, r = e.length, i; n < r; ++n) if ((i = e[n]).name === t) return i.value;
77
+ }
78
+ function m(e, t, n) {
79
+ for (var r = 0, i = e.length; r < i; ++r) if (e[r].name === t) {
80
+ e[r] = l, e = e.slice(0, r).concat(e.slice(r + 1));
81
+ break;
82
+ }
83
+ return n != null && e.push({
84
+ name: t,
85
+ value: n
86
+ }), e;
87
+ }
88
+ //#endregion
89
+ //#region node_modules/d3-drag/src/noevent.js
90
+ var ee = { passive: !1 }, h = {
91
+ capture: !0,
92
+ passive: !1
93
+ };
94
+ function te(e) {
95
+ e.stopImmediatePropagation();
96
+ }
97
+ function g(e) {
98
+ e.preventDefault(), e.stopImmediatePropagation();
99
+ }
100
+ //#endregion
101
+ //#region node_modules/d3-drag/src/nodrag.js
102
+ function ne(e) {
103
+ var t = e.document.documentElement, n = o(e).on("dragstart.drag", g, h);
104
+ "onselectstart" in t ? n.on("selectstart.drag", g, h) : (t.__noselect = t.style.MozUserSelect, t.style.MozUserSelect = "none");
105
+ }
106
+ function re(e, t) {
107
+ var n = e.document.documentElement, r = o(e).on("dragstart.drag", null);
108
+ t && (r.on("click.drag", g, h), setTimeout(function() {
109
+ r.on("click.drag", null);
110
+ }, 0)), "onselectstart" in n ? r.on("selectstart.drag", null) : (n.style.MozUserSelect = n.__noselect, delete n.__noselect);
111
+ }
112
+ //#endregion
113
+ //#region node_modules/d3-color/src/define.js
114
+ function _(e, t, n) {
115
+ e.prototype = t.prototype = n, n.constructor = e;
116
+ }
117
+ function v(e, t) {
118
+ var n = Object.create(e.prototype);
119
+ for (var r in t) n[r] = t[r];
120
+ return n;
121
+ }
122
+ //#endregion
123
+ //#region node_modules/d3-color/src/color.js
124
+ function y() {}
125
+ var b = .7, x = 1 / b, S = "\\s*([+-]?\\d+)\\s*", C = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*", w = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*", ie = /^#([0-9a-f]{3,8})$/, ae = RegExp(`^rgb\\(${S},${S},${S}\\)$`), oe = RegExp(`^rgb\\(${w},${w},${w}\\)$`), se = RegExp(`^rgba\\(${S},${S},${S},${C}\\)$`), ce = RegExp(`^rgba\\(${w},${w},${w},${C}\\)$`), le = RegExp(`^hsl\\(${C},${w},${w}\\)$`), ue = RegExp(`^hsla\\(${C},${w},${w},${C}\\)$`), de = {
126
+ aliceblue: 15792383,
127
+ antiquewhite: 16444375,
128
+ aqua: 65535,
129
+ aquamarine: 8388564,
130
+ azure: 15794175,
131
+ beige: 16119260,
132
+ bisque: 16770244,
133
+ black: 0,
134
+ blanchedalmond: 16772045,
135
+ blue: 255,
136
+ blueviolet: 9055202,
137
+ brown: 10824234,
138
+ burlywood: 14596231,
139
+ cadetblue: 6266528,
140
+ chartreuse: 8388352,
141
+ chocolate: 13789470,
142
+ coral: 16744272,
143
+ cornflowerblue: 6591981,
144
+ cornsilk: 16775388,
145
+ crimson: 14423100,
146
+ cyan: 65535,
147
+ darkblue: 139,
148
+ darkcyan: 35723,
149
+ darkgoldenrod: 12092939,
150
+ darkgray: 11119017,
151
+ darkgreen: 25600,
152
+ darkgrey: 11119017,
153
+ darkkhaki: 12433259,
154
+ darkmagenta: 9109643,
155
+ darkolivegreen: 5597999,
156
+ darkorange: 16747520,
157
+ darkorchid: 10040012,
158
+ darkred: 9109504,
159
+ darksalmon: 15308410,
160
+ darkseagreen: 9419919,
161
+ darkslateblue: 4734347,
162
+ darkslategray: 3100495,
163
+ darkslategrey: 3100495,
164
+ darkturquoise: 52945,
165
+ darkviolet: 9699539,
166
+ deeppink: 16716947,
167
+ deepskyblue: 49151,
168
+ dimgray: 6908265,
169
+ dimgrey: 6908265,
170
+ dodgerblue: 2003199,
171
+ firebrick: 11674146,
172
+ floralwhite: 16775920,
173
+ forestgreen: 2263842,
174
+ fuchsia: 16711935,
175
+ gainsboro: 14474460,
176
+ ghostwhite: 16316671,
177
+ gold: 16766720,
178
+ goldenrod: 14329120,
179
+ gray: 8421504,
180
+ green: 32768,
181
+ greenyellow: 11403055,
182
+ grey: 8421504,
183
+ honeydew: 15794160,
184
+ hotpink: 16738740,
185
+ indianred: 13458524,
186
+ indigo: 4915330,
187
+ ivory: 16777200,
188
+ khaki: 15787660,
189
+ lavender: 15132410,
190
+ lavenderblush: 16773365,
191
+ lawngreen: 8190976,
192
+ lemonchiffon: 16775885,
193
+ lightblue: 11393254,
194
+ lightcoral: 15761536,
195
+ lightcyan: 14745599,
196
+ lightgoldenrodyellow: 16448210,
197
+ lightgray: 13882323,
198
+ lightgreen: 9498256,
199
+ lightgrey: 13882323,
200
+ lightpink: 16758465,
201
+ lightsalmon: 16752762,
202
+ lightseagreen: 2142890,
203
+ lightskyblue: 8900346,
204
+ lightslategray: 7833753,
205
+ lightslategrey: 7833753,
206
+ lightsteelblue: 11584734,
207
+ lightyellow: 16777184,
208
+ lime: 65280,
209
+ limegreen: 3329330,
210
+ linen: 16445670,
211
+ magenta: 16711935,
212
+ maroon: 8388608,
213
+ mediumaquamarine: 6737322,
214
+ mediumblue: 205,
215
+ mediumorchid: 12211667,
216
+ mediumpurple: 9662683,
217
+ mediumseagreen: 3978097,
218
+ mediumslateblue: 8087790,
219
+ mediumspringgreen: 64154,
220
+ mediumturquoise: 4772300,
221
+ mediumvioletred: 13047173,
222
+ midnightblue: 1644912,
223
+ mintcream: 16121850,
224
+ mistyrose: 16770273,
225
+ moccasin: 16770229,
226
+ navajowhite: 16768685,
227
+ navy: 128,
228
+ oldlace: 16643558,
229
+ olive: 8421376,
230
+ olivedrab: 7048739,
231
+ orange: 16753920,
232
+ orangered: 16729344,
233
+ orchid: 14315734,
234
+ palegoldenrod: 15657130,
235
+ palegreen: 10025880,
236
+ paleturquoise: 11529966,
237
+ palevioletred: 14381203,
238
+ papayawhip: 16773077,
239
+ peachpuff: 16767673,
240
+ peru: 13468991,
241
+ pink: 16761035,
242
+ plum: 14524637,
243
+ powderblue: 11591910,
244
+ purple: 8388736,
245
+ rebeccapurple: 6697881,
246
+ red: 16711680,
247
+ rosybrown: 12357519,
248
+ royalblue: 4286945,
249
+ saddlebrown: 9127187,
250
+ salmon: 16416882,
251
+ sandybrown: 16032864,
252
+ seagreen: 3050327,
253
+ seashell: 16774638,
254
+ sienna: 10506797,
255
+ silver: 12632256,
256
+ skyblue: 8900331,
257
+ slateblue: 6970061,
258
+ slategray: 7372944,
259
+ slategrey: 7372944,
260
+ snow: 16775930,
261
+ springgreen: 65407,
262
+ steelblue: 4620980,
263
+ tan: 13808780,
264
+ teal: 32896,
265
+ thistle: 14204888,
266
+ tomato: 16737095,
267
+ turquoise: 4251856,
268
+ violet: 15631086,
269
+ wheat: 16113331,
270
+ white: 16777215,
271
+ whitesmoke: 16119285,
272
+ yellow: 16776960,
273
+ yellowgreen: 10145074
274
+ };
275
+ _(y, T, {
276
+ copy(e) {
277
+ return Object.assign(new this.constructor(), this, e);
278
+ },
279
+ displayable() {
280
+ return this.rgb().displayable();
281
+ },
282
+ hex: fe,
283
+ formatHex: fe,
284
+ formatHex8: pe,
285
+ formatHsl: me,
286
+ formatRgb: he,
287
+ toString: he
288
+ });
289
+ function fe() {
290
+ return this.rgb().formatHex();
291
+ }
292
+ function pe() {
293
+ return this.rgb().formatHex8();
294
+ }
295
+ function me() {
296
+ return Se(this).formatHsl();
297
+ }
298
+ function he() {
299
+ return this.rgb().formatRgb();
300
+ }
301
+ function T(e) {
302
+ var t, n;
303
+ return e = (e + "").trim().toLowerCase(), (t = ie.exec(e)) ? (n = t[1].length, t = parseInt(t[1], 16), n === 6 ? ge(t) : n === 3 ? new O(t >> 8 & 15 | t >> 4 & 240, t >> 4 & 15 | t & 240, (t & 15) << 4 | t & 15, 1) : n === 8 ? E(t >> 24 & 255, t >> 16 & 255, t >> 8 & 255, (t & 255) / 255) : n === 4 ? E(t >> 12 & 15 | t >> 8 & 240, t >> 8 & 15 | t >> 4 & 240, t >> 4 & 15 | t & 240, ((t & 15) << 4 | t & 15) / 255) : null) : (t = ae.exec(e)) ? new O(t[1], t[2], t[3], 1) : (t = oe.exec(e)) ? new O(t[1] * 255 / 100, t[2] * 255 / 100, t[3] * 255 / 100, 1) : (t = se.exec(e)) ? E(t[1], t[2], t[3], t[4]) : (t = ce.exec(e)) ? E(t[1] * 255 / 100, t[2] * 255 / 100, t[3] * 255 / 100, t[4]) : (t = le.exec(e)) ? xe(t[1], t[2] / 100, t[3] / 100, 1) : (t = ue.exec(e)) ? xe(t[1], t[2] / 100, t[3] / 100, t[4]) : de.hasOwnProperty(e) ? ge(de[e]) : e === "transparent" ? new O(NaN, NaN, NaN, 0) : null;
304
+ }
305
+ function ge(e) {
306
+ return new O(e >> 16 & 255, e >> 8 & 255, e & 255, 1);
307
+ }
308
+ function E(e, t, n, r) {
309
+ return r <= 0 && (e = t = n = NaN), new O(e, t, n, r);
310
+ }
311
+ function _e(e) {
312
+ return e instanceof y || (e = T(e)), e ? (e = e.rgb(), new O(e.r, e.g, e.b, e.opacity)) : new O();
313
+ }
314
+ function D(e, t, n, r) {
315
+ return arguments.length === 1 ? _e(e) : new O(e, t, n, r ?? 1);
316
+ }
317
+ function O(e, t, n, r) {
318
+ this.r = +e, this.g = +t, this.b = +n, this.opacity = +r;
319
+ }
320
+ _(O, D, v(y, {
321
+ brighter(e) {
322
+ return e = e == null ? x : x ** +e, new O(this.r * e, this.g * e, this.b * e, this.opacity);
323
+ },
324
+ darker(e) {
325
+ return e = e == null ? b : b ** +e, new O(this.r * e, this.g * e, this.b * e, this.opacity);
326
+ },
327
+ rgb() {
328
+ return this;
329
+ },
330
+ clamp() {
331
+ return new O(A(this.r), A(this.g), A(this.b), k(this.opacity));
332
+ },
333
+ displayable() {
334
+ return -.5 <= this.r && this.r < 255.5 && -.5 <= this.g && this.g < 255.5 && -.5 <= this.b && this.b < 255.5 && 0 <= this.opacity && this.opacity <= 1;
335
+ },
336
+ hex: ve,
337
+ formatHex: ve,
338
+ formatHex8: ye,
339
+ formatRgb: be,
340
+ toString: be
341
+ }));
342
+ function ve() {
343
+ return `#${j(this.r)}${j(this.g)}${j(this.b)}`;
344
+ }
345
+ function ye() {
346
+ return `#${j(this.r)}${j(this.g)}${j(this.b)}${j((isNaN(this.opacity) ? 1 : this.opacity) * 255)}`;
347
+ }
348
+ function be() {
349
+ let e = k(this.opacity);
350
+ return `${e === 1 ? "rgb(" : "rgba("}${A(this.r)}, ${A(this.g)}, ${A(this.b)}${e === 1 ? ")" : `, ${e})`}`;
351
+ }
352
+ function k(e) {
353
+ return isNaN(e) ? 1 : Math.max(0, Math.min(1, e));
354
+ }
355
+ function A(e) {
356
+ return Math.max(0, Math.min(255, Math.round(e) || 0));
357
+ }
358
+ function j(e) {
359
+ return e = A(e), (e < 16 ? "0" : "") + e.toString(16);
360
+ }
361
+ function xe(e, t, n, r) {
362
+ return r <= 0 ? e = t = n = NaN : n <= 0 || n >= 1 ? e = t = NaN : t <= 0 && (e = NaN), new M(e, t, n, r);
363
+ }
364
+ function Se(e) {
365
+ if (e instanceof M) return new M(e.h, e.s, e.l, e.opacity);
366
+ if (e instanceof y || (e = T(e)), !e) return new M();
367
+ if (e instanceof M) return e;
368
+ e = e.rgb();
369
+ var t = e.r / 255, n = e.g / 255, r = e.b / 255, i = Math.min(t, n, r), a = Math.max(t, n, r), o = NaN, s = a - i, c = (a + i) / 2;
370
+ return s ? (o = t === a ? (n - r) / s + (n < r) * 6 : n === a ? (r - t) / s + 2 : (t - n) / s + 4, s /= c < .5 ? a + i : 2 - a - i, o *= 60) : s = c > 0 && c < 1 ? 0 : o, new M(o, s, c, e.opacity);
371
+ }
372
+ function Ce(e, t, n, r) {
373
+ return arguments.length === 1 ? Se(e) : new M(e, t, n, r ?? 1);
374
+ }
375
+ function M(e, t, n, r) {
376
+ this.h = +e, this.s = +t, this.l = +n, this.opacity = +r;
377
+ }
378
+ _(M, Ce, v(y, {
379
+ brighter(e) {
380
+ return e = e == null ? x : x ** +e, new M(this.h, this.s, this.l * e, this.opacity);
381
+ },
382
+ darker(e) {
383
+ return e = e == null ? b : b ** +e, new M(this.h, this.s, this.l * e, this.opacity);
384
+ },
385
+ rgb() {
386
+ var e = this.h % 360 + (this.h < 0) * 360, t = isNaN(e) || isNaN(this.s) ? 0 : this.s, n = this.l, r = n + (n < .5 ? n : 1 - n) * t, i = 2 * n - r;
387
+ return new O(P(e >= 240 ? e - 240 : e + 120, i, r), P(e, i, r), P(e < 120 ? e + 240 : e - 120, i, r), this.opacity);
388
+ },
389
+ clamp() {
390
+ return new M(we(this.h), N(this.s), N(this.l), k(this.opacity));
391
+ },
392
+ displayable() {
393
+ return (0 <= this.s && this.s <= 1 || isNaN(this.s)) && 0 <= this.l && this.l <= 1 && 0 <= this.opacity && this.opacity <= 1;
394
+ },
395
+ formatHsl() {
396
+ let e = k(this.opacity);
397
+ return `${e === 1 ? "hsl(" : "hsla("}${we(this.h)}, ${N(this.s) * 100}%, ${N(this.l) * 100}%${e === 1 ? ")" : `, ${e})`}`;
398
+ }
399
+ }));
400
+ function we(e) {
401
+ return e = (e || 0) % 360, e < 0 ? e + 360 : e;
402
+ }
403
+ function N(e) {
404
+ return Math.max(0, Math.min(1, e || 0));
405
+ }
406
+ function P(e, t, n) {
407
+ return (e < 60 ? t + (n - t) * e / 60 : e < 180 ? n : e < 240 ? t + (n - t) * (240 - e) / 60 : t) * 255;
408
+ }
409
+ //#endregion
410
+ //#region node_modules/d3-interpolate/src/basis.js
411
+ function Te(e, t, n, r, i) {
412
+ var a = e * e, o = a * e;
413
+ return ((1 - 3 * e + 3 * a - o) * t + (4 - 6 * a + 3 * o) * n + (1 + 3 * e + 3 * a - 3 * o) * r + o * i) / 6;
414
+ }
415
+ function Ee(e) {
416
+ var t = e.length - 1;
417
+ return function(n) {
418
+ var r = n <= 0 ? n = 0 : n >= 1 ? (n = 1, t - 1) : Math.floor(n * t), i = e[r], a = e[r + 1], o = r > 0 ? e[r - 1] : 2 * i - a, s = r < t - 1 ? e[r + 2] : 2 * a - i;
419
+ return Te((n - r / t) * t, o, i, a, s);
420
+ };
421
+ }
422
+ //#endregion
423
+ //#region node_modules/d3-interpolate/src/constant.js
424
+ var F = (e) => () => e;
425
+ //#endregion
426
+ //#region node_modules/d3-interpolate/src/color.js
427
+ function De(e, t) {
428
+ return function(n) {
429
+ return e + n * t;
430
+ };
431
+ }
432
+ function Oe(e, t, n) {
433
+ return e **= +n, t = t ** +n - e, n = 1 / n, function(r) {
434
+ return (e + r * t) ** +n;
435
+ };
436
+ }
437
+ function ke(e, t) {
438
+ var n = t - e;
439
+ return n ? De(e, n > 180 || n < -180 ? n - 360 * Math.round(n / 360) : n) : F(isNaN(e) ? t : e);
440
+ }
441
+ function Ae(e) {
442
+ return (e = +e) == 1 ? I : function(t, n) {
443
+ return n - t ? Oe(t, n, e) : F(isNaN(t) ? n : t);
444
+ };
445
+ }
446
+ function I(e, t) {
447
+ var n = t - e;
448
+ return n ? De(e, n) : F(isNaN(e) ? t : e);
449
+ }
450
+ //#endregion
451
+ //#region node_modules/d3-interpolate/src/rgb.js
452
+ var L = (function e(t) {
453
+ var n = Ae(t);
454
+ function r(e, t) {
455
+ var r = n((e = D(e)).r, (t = D(t)).r), i = n(e.g, t.g), a = n(e.b, t.b), o = I(e.opacity, t.opacity);
456
+ return function(t) {
457
+ return e.r = r(t), e.g = i(t), e.b = a(t), e.opacity = o(t), e + "";
458
+ };
459
+ }
460
+ return r.gamma = e, r;
461
+ })(1);
462
+ function je(e) {
463
+ return function(t) {
464
+ var n = t.length, r = Array(n), i = Array(n), a = Array(n), o, s;
465
+ for (o = 0; o < n; ++o) s = D(t[o]), r[o] = s.r || 0, i[o] = s.g || 0, a[o] = s.b || 0;
466
+ return r = e(r), i = e(i), a = e(a), s.opacity = 1, function(e) {
467
+ return s.r = r(e), s.g = i(e), s.b = a(e), s + "";
468
+ };
469
+ };
470
+ }
471
+ var Me = je(Ee);
472
+ //#endregion
473
+ //#region node_modules/d3-interpolate/src/number.js
474
+ function R(e, t) {
475
+ return e = +e, t = +t, function(n) {
476
+ return e * (1 - n) + t * n;
477
+ };
478
+ }
479
+ //#endregion
480
+ //#region node_modules/d3-interpolate/src/string.js
481
+ var z = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g, Ne = new RegExp(z.source, "g");
482
+ function Pe(e) {
483
+ return function() {
484
+ return e;
485
+ };
486
+ }
487
+ function Fe(e) {
488
+ return function(t) {
489
+ return e(t) + "";
490
+ };
491
+ }
492
+ function Ie(e, t) {
493
+ var n = z.lastIndex = Ne.lastIndex = 0, r, i, a, o = -1, s = [], c = [];
494
+ for (e += "", t += ""; (r = z.exec(e)) && (i = Ne.exec(t));) (a = i.index) > n && (a = t.slice(n, a), s[o] ? s[o] += a : s[++o] = a), (r = r[0]) === (i = i[0]) ? s[o] ? s[o] += i : s[++o] = i : (s[++o] = null, c.push({
495
+ i: o,
496
+ x: R(r, i)
497
+ })), n = Ne.lastIndex;
498
+ return n < t.length && (a = t.slice(n), s[o] ? s[o] += a : s[++o] = a), s.length < 2 ? c[0] ? Fe(c[0].x) : Pe(t) : (t = c.length, function(e) {
499
+ for (var n = 0, r; n < t; ++n) s[(r = c[n]).i] = r.x(e);
500
+ return s.join("");
501
+ });
502
+ }
503
+ //#endregion
504
+ //#region node_modules/d3-interpolate/src/transform/decompose.js
505
+ var Le = 180 / Math.PI, Re = {
506
+ translateX: 0,
507
+ translateY: 0,
508
+ rotate: 0,
509
+ skewX: 0,
510
+ scaleX: 1,
511
+ scaleY: 1
512
+ };
513
+ function ze(e, t, n, r, i, a) {
514
+ var o, s, c;
515
+ return (o = Math.sqrt(e * e + t * t)) && (e /= o, t /= o), (c = e * n + t * r) && (n -= e * c, r -= t * c), (s = Math.sqrt(n * n + r * r)) && (n /= s, r /= s, c /= s), e * r < t * n && (e = -e, t = -t, c = -c, o = -o), {
516
+ translateX: i,
517
+ translateY: a,
518
+ rotate: Math.atan2(t, e) * Le,
519
+ skewX: Math.atan(c) * Le,
520
+ scaleX: o,
521
+ scaleY: s
522
+ };
523
+ }
524
+ //#endregion
525
+ //#region node_modules/d3-interpolate/src/transform/parse.js
526
+ var Be;
527
+ function Ve(e) {
528
+ let t = new (typeof DOMMatrix == "function" ? DOMMatrix : WebKitCSSMatrix)(e + "");
529
+ return t.isIdentity ? Re : ze(t.a, t.b, t.c, t.d, t.e, t.f);
530
+ }
531
+ function He(e) {
532
+ return e == null || (Be ||= document.createElementNS("http://www.w3.org/2000/svg", "g"), Be.setAttribute("transform", e), !(e = Be.transform.baseVal.consolidate())) ? Re : (e = e.matrix, ze(e.a, e.b, e.c, e.d, e.e, e.f));
533
+ }
534
+ //#endregion
535
+ //#region node_modules/d3-interpolate/src/transform/index.js
536
+ function Ue(e, t, n, r) {
537
+ function i(e) {
538
+ return e.length ? e.pop() + " " : "";
539
+ }
540
+ function a(e, r, i, a, o, s) {
541
+ if (e !== i || r !== a) {
542
+ var c = o.push("translate(", null, t, null, n);
543
+ s.push({
544
+ i: c - 4,
545
+ x: R(e, i)
546
+ }, {
547
+ i: c - 2,
548
+ x: R(r, a)
549
+ });
550
+ } else (i || a) && o.push("translate(" + i + t + a + n);
551
+ }
552
+ function o(e, t, n, a) {
553
+ e === t ? t && n.push(i(n) + "rotate(" + t + r) : (e - t > 180 ? t += 360 : t - e > 180 && (e += 360), a.push({
554
+ i: n.push(i(n) + "rotate(", null, r) - 2,
555
+ x: R(e, t)
556
+ }));
557
+ }
558
+ function s(e, t, n, a) {
559
+ e === t ? t && n.push(i(n) + "skewX(" + t + r) : a.push({
560
+ i: n.push(i(n) + "skewX(", null, r) - 2,
561
+ x: R(e, t)
562
+ });
563
+ }
564
+ function c(e, t, n, r, a, o) {
565
+ if (e !== n || t !== r) {
566
+ var s = a.push(i(a) + "scale(", null, ",", null, ")");
567
+ o.push({
568
+ i: s - 4,
569
+ x: R(e, n)
570
+ }, {
571
+ i: s - 2,
572
+ x: R(t, r)
573
+ });
574
+ } else (n !== 1 || r !== 1) && a.push(i(a) + "scale(" + n + "," + r + ")");
575
+ }
576
+ return function(t, n) {
577
+ var r = [], i = [];
578
+ return t = e(t), n = e(n), a(t.translateX, t.translateY, n.translateX, n.translateY, r, i), o(t.rotate, n.rotate, r, i), s(t.skewX, n.skewX, r, i), c(t.scaleX, t.scaleY, n.scaleX, n.scaleY, r, i), t = n = null, function(e) {
579
+ for (var t = -1, n = i.length, a; ++t < n;) r[(a = i[t]).i] = a.x(e);
580
+ return r.join("");
581
+ };
582
+ };
583
+ }
584
+ var We = Ue(Ve, "px, ", "px)", "deg)"), Ge = Ue(He, ", ", ")", ")"), B = 0, V = 0, Ke = 0, qe = 1e3, H, U, W = 0, G = 0, K = 0, q = typeof performance == "object" && performance.now ? performance : Date, Je = typeof window == "object" && window.requestAnimationFrame ? window.requestAnimationFrame.bind(window) : function(e) {
585
+ setTimeout(e, 17);
586
+ };
587
+ function Ye() {
588
+ return G ||= (Je(Xe), q.now() + K);
589
+ }
590
+ function Xe() {
591
+ G = 0;
592
+ }
593
+ function J() {
594
+ this._call = this._time = this._next = null;
595
+ }
596
+ J.prototype = Ze.prototype = {
597
+ constructor: J,
598
+ restart: function(e, t, n) {
599
+ if (typeof e != "function") throw TypeError("callback is not a function");
600
+ n = (n == null ? Ye() : +n) + (t == null ? 0 : +t), !this._next && U !== this && (U ? U._next = this : H = this, U = this), this._call = e, this._time = n, nt();
601
+ },
602
+ stop: function() {
603
+ this._call && (this._call = null, this._time = Infinity, nt());
604
+ }
605
+ };
606
+ function Ze(e, t, n) {
607
+ var r = new J();
608
+ return r.restart(e, t, n), r;
609
+ }
610
+ function Qe() {
611
+ Ye(), ++B;
612
+ for (var e = H, t; e;) (t = G - e._time) >= 0 && e._call.call(void 0, t), e = e._next;
613
+ --B;
614
+ }
615
+ function $e() {
616
+ G = (W = q.now()) + K, B = V = 0;
617
+ try {
618
+ Qe();
619
+ } finally {
620
+ B = 0, tt(), G = 0;
621
+ }
622
+ }
623
+ function et() {
624
+ var e = q.now(), t = e - W;
625
+ t > qe && (K -= t, W = e);
626
+ }
627
+ function tt() {
628
+ for (var e, t = H, n, r = Infinity; t;) t._call ? (r > t._time && (r = t._time), e = t, t = t._next) : (n = t._next, t._next = null, t = e ? e._next = n : H = n);
629
+ U = e, nt(r);
630
+ }
631
+ function nt(e) {
632
+ B || (V &&= clearTimeout(V), e - G > 24 ? (e < Infinity && (V = setTimeout($e, e - q.now() - K)), Ke &&= clearInterval(Ke)) : (Ke ||= (W = q.now(), setInterval(et, qe)), B = 1, Je($e)));
633
+ }
634
+ //#endregion
635
+ //#region node_modules/d3-timer/src/timeout.js
636
+ function rt(e, t, n) {
637
+ var r = new J();
638
+ return t = t == null ? 0 : +t, r.restart((n) => {
639
+ r.stop(), e(n + t);
640
+ }, t, n), r;
641
+ }
642
+ //#endregion
643
+ //#region node_modules/d3-transition/src/transition/schedule.js
644
+ var it = u("start", "end", "cancel", "interrupt"), at = [];
645
+ function Y(e, t, n, r, i, a) {
646
+ var o = e.__transition;
647
+ if (!o) e.__transition = {};
648
+ else if (n in o) return;
649
+ st(e, n, {
650
+ name: t,
651
+ index: r,
652
+ group: i,
653
+ on: it,
654
+ tween: at,
655
+ time: a.time,
656
+ delay: a.delay,
657
+ duration: a.duration,
658
+ ease: a.ease,
659
+ timer: null,
660
+ state: 0
661
+ });
662
+ }
663
+ function ot(e, t) {
664
+ var n = Z(e, t);
665
+ if (n.state > 0) throw Error("too late; already scheduled");
666
+ return n;
667
+ }
668
+ function X(e, t) {
669
+ var n = Z(e, t);
670
+ if (n.state > 3) throw Error("too late; already running");
671
+ return n;
672
+ }
673
+ function Z(e, t) {
674
+ var n = e.__transition;
675
+ if (!n || !(n = n[t])) throw Error("transition not found");
676
+ return n;
677
+ }
678
+ function st(e, t, n) {
679
+ var r = e.__transition, i;
680
+ r[t] = n, n.timer = Ze(a, 0, n.time);
681
+ function a(e) {
682
+ n.state = 1, n.timer.restart(o, n.delay, n.time), n.delay <= e && o(e - n.delay);
683
+ }
684
+ function o(a) {
685
+ var l, u, d, f;
686
+ if (n.state !== 1) return c();
687
+ for (l in r) if (f = r[l], f.name === n.name) {
688
+ if (f.state === 3) return rt(o);
689
+ f.state === 4 ? (f.state = 6, f.timer.stop(), f.on.call("interrupt", e, e.__data__, f.index, f.group), delete r[l]) : +l < t && (f.state = 6, f.timer.stop(), f.on.call("cancel", e, e.__data__, f.index, f.group), delete r[l]);
690
+ }
691
+ if (rt(function() {
692
+ n.state === 3 && (n.state = 4, n.timer.restart(s, n.delay, n.time), s(a));
693
+ }), n.state = 2, n.on.call("start", e, e.__data__, n.index, n.group), n.state === 2) {
694
+ for (n.state = 3, i = Array(d = n.tween.length), l = 0, u = -1; l < d; ++l) (f = n.tween[l].value.call(e, e.__data__, n.index, n.group)) && (i[++u] = f);
695
+ i.length = u + 1;
696
+ }
697
+ }
698
+ function s(t) {
699
+ for (var r = t < n.duration ? n.ease.call(null, t / n.duration) : (n.timer.restart(c), n.state = 5, 1), a = -1, o = i.length; ++a < o;) i[a].call(e, r);
700
+ n.state === 5 && (n.on.call("end", e, e.__data__, n.index, n.group), c());
701
+ }
702
+ function c() {
703
+ for (var i in n.state = 6, n.timer.stop(), delete r[t], r) return;
704
+ delete e.__transition;
705
+ }
706
+ }
707
+ //#endregion
708
+ //#region node_modules/d3-transition/src/interrupt.js
709
+ function ct(e, t) {
710
+ var n = e.__transition, r, i, a = !0, o;
711
+ if (n) {
712
+ for (o in t = t == null ? null : t + "", n) {
713
+ if ((r = n[o]).name !== t) {
714
+ a = !1;
715
+ continue;
716
+ }
717
+ i = r.state > 2 && r.state < 5, r.state = 6, r.timer.stop(), r.on.call(i ? "interrupt" : "cancel", e, e.__data__, r.index, r.group), delete n[o];
718
+ }
719
+ a && delete e.__transition;
720
+ }
721
+ }
722
+ //#endregion
723
+ //#region node_modules/d3-transition/src/selection/interrupt.js
724
+ function lt(e) {
725
+ return this.each(function() {
726
+ ct(this, e);
727
+ });
728
+ }
729
+ //#endregion
730
+ //#region node_modules/d3-transition/src/transition/tween.js
731
+ function ut(e, t) {
732
+ var n, r;
733
+ return function() {
734
+ var i = X(this, e), a = i.tween;
735
+ if (a !== n) {
736
+ r = n = a;
737
+ for (var o = 0, s = r.length; o < s; ++o) if (r[o].name === t) {
738
+ r = r.slice(), r.splice(o, 1);
739
+ break;
740
+ }
741
+ }
742
+ i.tween = r;
743
+ };
744
+ }
745
+ function dt(e, t, n) {
746
+ var r, i;
747
+ if (typeof n != "function") throw Error();
748
+ return function() {
749
+ var a = X(this, e), o = a.tween;
750
+ if (o !== r) {
751
+ i = (r = o).slice();
752
+ for (var s = {
753
+ name: t,
754
+ value: n
755
+ }, c = 0, l = i.length; c < l; ++c) if (i[c].name === t) {
756
+ i[c] = s;
757
+ break;
758
+ }
759
+ c === l && i.push(s);
760
+ }
761
+ a.tween = i;
762
+ };
763
+ }
764
+ function ft(e, t) {
765
+ var n = this._id;
766
+ if (e += "", arguments.length < 2) {
767
+ for (var r = Z(this.node(), n).tween, i = 0, a = r.length, o; i < a; ++i) if ((o = r[i]).name === e) return o.value;
768
+ return null;
769
+ }
770
+ return this.each((t == null ? ut : dt)(n, e, t));
771
+ }
772
+ function pt(e, t, n) {
773
+ var r = e._id;
774
+ return e.each(function() {
775
+ var e = X(this, r);
776
+ (e.value ||= {})[t] = n.apply(this, arguments);
777
+ }), function(e) {
778
+ return Z(e, r).value[t];
779
+ };
780
+ }
781
+ //#endregion
782
+ //#region node_modules/d3-transition/src/transition/interpolate.js
783
+ function mt(e, t) {
784
+ var n;
785
+ return (typeof t == "number" ? R : t instanceof T ? L : (n = T(t)) ? (t = n, L) : Ie)(e, t);
786
+ }
787
+ //#endregion
788
+ //#region node_modules/d3-transition/src/transition/attr.js
789
+ function ht(e) {
790
+ return function() {
791
+ this.removeAttribute(e);
792
+ };
793
+ }
794
+ function gt(e) {
795
+ return function() {
796
+ this.removeAttributeNS(e.space, e.local);
797
+ };
798
+ }
799
+ function _t(e, t, n) {
800
+ var r, i = n + "", a;
801
+ return function() {
802
+ var o = this.getAttribute(e);
803
+ return o === i ? null : o === r ? a : a = t(r = o, n);
804
+ };
805
+ }
806
+ function vt(e, t, n) {
807
+ var r, i = n + "", a;
808
+ return function() {
809
+ var o = this.getAttributeNS(e.space, e.local);
810
+ return o === i ? null : o === r ? a : a = t(r = o, n);
811
+ };
812
+ }
813
+ function yt(e, t, n) {
814
+ var r, i, a;
815
+ return function() {
816
+ var o, s = n(this), c;
817
+ return s == null ? void this.removeAttribute(e) : (o = this.getAttribute(e), c = s + "", o === c ? null : o === r && c === i ? a : (i = c, a = t(r = o, s)));
818
+ };
819
+ }
820
+ function bt(e, t, n) {
821
+ var r, i, a;
822
+ return function() {
823
+ var o, s = n(this), c;
824
+ return s == null ? void this.removeAttributeNS(e.space, e.local) : (o = this.getAttributeNS(e.space, e.local), c = s + "", o === c ? null : o === r && c === i ? a : (i = c, a = t(r = o, s)));
825
+ };
826
+ }
827
+ function xt(e, n) {
828
+ var r = t(e), i = r === "transform" ? Ge : mt;
829
+ return this.attrTween(e, typeof n == "function" ? (r.local ? bt : yt)(r, i, pt(this, "attr." + e, n)) : n == null ? (r.local ? gt : ht)(r) : (r.local ? vt : _t)(r, i, n));
830
+ }
831
+ //#endregion
832
+ //#region node_modules/d3-transition/src/transition/attrTween.js
833
+ function St(e, t) {
834
+ return function(n) {
835
+ this.setAttribute(e, t.call(this, n));
836
+ };
837
+ }
838
+ function Ct(e, t) {
839
+ return function(n) {
840
+ this.setAttributeNS(e.space, e.local, t.call(this, n));
841
+ };
842
+ }
843
+ function wt(e, t) {
844
+ var n, r;
845
+ function i() {
846
+ var i = t.apply(this, arguments);
847
+ return i !== r && (n = (r = i) && Ct(e, i)), n;
848
+ }
849
+ return i._value = t, i;
850
+ }
851
+ function Tt(e, t) {
852
+ var n, r;
853
+ function i() {
854
+ var i = t.apply(this, arguments);
855
+ return i !== r && (n = (r = i) && St(e, i)), n;
856
+ }
857
+ return i._value = t, i;
858
+ }
859
+ function Et(e, n) {
860
+ var r = "attr." + e;
861
+ if (arguments.length < 2) return (r = this.tween(r)) && r._value;
862
+ if (n == null) return this.tween(r, null);
863
+ if (typeof n != "function") throw Error();
864
+ var i = t(e);
865
+ return this.tween(r, (i.local ? wt : Tt)(i, n));
866
+ }
867
+ //#endregion
868
+ //#region node_modules/d3-transition/src/transition/delay.js
869
+ function Dt(e, t) {
870
+ return function() {
871
+ ot(this, e).delay = +t.apply(this, arguments);
872
+ };
873
+ }
874
+ function Ot(e, t) {
875
+ return t = +t, function() {
876
+ ot(this, e).delay = t;
877
+ };
878
+ }
879
+ function kt(e) {
880
+ var t = this._id;
881
+ return arguments.length ? this.each((typeof e == "function" ? Dt : Ot)(t, e)) : Z(this.node(), t).delay;
882
+ }
883
+ //#endregion
884
+ //#region node_modules/d3-transition/src/transition/duration.js
885
+ function At(e, t) {
886
+ return function() {
887
+ X(this, e).duration = +t.apply(this, arguments);
888
+ };
889
+ }
890
+ function jt(e, t) {
891
+ return t = +t, function() {
892
+ X(this, e).duration = t;
893
+ };
894
+ }
895
+ function Mt(e) {
896
+ var t = this._id;
897
+ return arguments.length ? this.each((typeof e == "function" ? At : jt)(t, e)) : Z(this.node(), t).duration;
898
+ }
899
+ //#endregion
900
+ //#region node_modules/d3-transition/src/transition/ease.js
901
+ function Nt(e, t) {
902
+ if (typeof t != "function") throw Error();
903
+ return function() {
904
+ X(this, e).ease = t;
905
+ };
906
+ }
907
+ function Pt(e) {
908
+ var t = this._id;
909
+ return arguments.length ? this.each(Nt(t, e)) : Z(this.node(), t).ease;
910
+ }
911
+ //#endregion
912
+ //#region node_modules/d3-transition/src/transition/easeVarying.js
913
+ function Ft(e, t) {
914
+ return function() {
915
+ var n = t.apply(this, arguments);
916
+ if (typeof n != "function") throw Error();
917
+ X(this, e).ease = n;
918
+ };
919
+ }
920
+ function It(e) {
921
+ if (typeof e != "function") throw Error();
922
+ return this.each(Ft(this._id, e));
923
+ }
924
+ //#endregion
925
+ //#region node_modules/d3-transition/src/transition/filter.js
926
+ function Lt(e) {
927
+ typeof e != "function" && (e = i(e));
928
+ for (var t = this._groups, n = t.length, r = Array(n), a = 0; a < n; ++a) for (var o = t[a], s = o.length, c = r[a] = [], l, u = 0; u < s; ++u) (l = o[u]) && e.call(l, l.__data__, u, o) && c.push(l);
929
+ return new Q(r, this._parents, this._name, this._id);
930
+ }
931
+ //#endregion
932
+ //#region node_modules/d3-transition/src/transition/merge.js
933
+ function Rt(e) {
934
+ if (e._id !== this._id) throw Error();
935
+ for (var t = this._groups, n = e._groups, r = t.length, i = n.length, a = Math.min(r, i), o = Array(r), s = 0; s < a; ++s) for (var c = t[s], l = n[s], u = c.length, d = o[s] = Array(u), f, p = 0; p < u; ++p) (f = c[p] || l[p]) && (d[p] = f);
936
+ for (; s < r; ++s) o[s] = t[s];
937
+ return new Q(o, this._parents, this._name, this._id);
938
+ }
939
+ //#endregion
940
+ //#region node_modules/d3-transition/src/transition/on.js
941
+ function zt(e) {
942
+ return (e + "").trim().split(/^|\s+/).every(function(e) {
943
+ var t = e.indexOf(".");
944
+ return t >= 0 && (e = e.slice(0, t)), !e || e === "start";
945
+ });
946
+ }
947
+ function Bt(e, t, n) {
948
+ var r, i, a = zt(t) ? ot : X;
949
+ return function() {
950
+ var o = a(this, e), s = o.on;
951
+ s !== r && (i = (r = s).copy()).on(t, n), o.on = i;
952
+ };
953
+ }
954
+ function Vt(e, t) {
955
+ var n = this._id;
956
+ return arguments.length < 2 ? Z(this.node(), n).on.on(e) : this.each(Bt(n, e, t));
957
+ }
958
+ //#endregion
959
+ //#region node_modules/d3-transition/src/transition/remove.js
960
+ function Ht(e) {
961
+ return function() {
962
+ var t = this.parentNode;
963
+ for (var n in this.__transition) if (+n !== e) return;
964
+ t && t.removeChild(this);
965
+ };
966
+ }
967
+ function Ut() {
968
+ return this.on("end.remove", Ht(this._id));
969
+ }
970
+ //#endregion
971
+ //#region node_modules/d3-transition/src/transition/select.js
972
+ function Wt(e) {
973
+ var t = this._name, n = this._id;
974
+ typeof e != "function" && (e = r(e));
975
+ for (var i = this._groups, a = i.length, o = Array(a), s = 0; s < a; ++s) for (var c = i[s], l = c.length, u = o[s] = Array(l), d, f, p = 0; p < l; ++p) (d = c[p]) && (f = e.call(d, d.__data__, p, c)) && ("__data__" in d && (f.__data__ = d.__data__), u[p] = f, Y(u[p], t, n, p, u, Z(d, n)));
976
+ return new Q(o, this._parents, t, n);
977
+ }
978
+ //#endregion
979
+ //#region node_modules/d3-transition/src/transition/selectAll.js
980
+ function Gt(e) {
981
+ var t = this._name, n = this._id;
982
+ typeof e != "function" && (e = a(e));
983
+ for (var r = this._groups, i = r.length, o = [], s = [], c = 0; c < i; ++c) for (var l = r[c], u = l.length, d, f = 0; f < u; ++f) if (d = l[f]) {
984
+ for (var p = e.call(d, d.__data__, f, l), m, ee = Z(d, n), h = 0, te = p.length; h < te; ++h) (m = p[h]) && Y(m, t, n, h, p, ee);
985
+ o.push(p), s.push(d);
986
+ }
987
+ return new Q(o, s, t, n);
988
+ }
989
+ //#endregion
990
+ //#region node_modules/d3-transition/src/transition/selection.js
991
+ var Kt = n.prototype.constructor;
992
+ function qt() {
993
+ return new Kt(this._groups, this._parents);
994
+ }
995
+ //#endregion
996
+ //#region node_modules/d3-transition/src/transition/style.js
997
+ function Jt(t, n) {
998
+ var r, i, a;
999
+ return function() {
1000
+ var o = e(this, t), s = (this.style.removeProperty(t), e(this, t));
1001
+ return o === s ? null : o === r && s === i ? a : a = n(r = o, i = s);
1002
+ };
1003
+ }
1004
+ function Yt(e) {
1005
+ return function() {
1006
+ this.style.removeProperty(e);
1007
+ };
1008
+ }
1009
+ function Xt(t, n, r) {
1010
+ var i, a = r + "", o;
1011
+ return function() {
1012
+ var s = e(this, t);
1013
+ return s === a ? null : s === i ? o : o = n(i = s, r);
1014
+ };
1015
+ }
1016
+ function Zt(t, n, r) {
1017
+ var i, a, o;
1018
+ return function() {
1019
+ var s = e(this, t), c = r(this), l = c + "";
1020
+ return c ?? (l = c = (this.style.removeProperty(t), e(this, t))), s === l ? null : s === i && l === a ? o : (a = l, o = n(i = s, c));
1021
+ };
1022
+ }
1023
+ function Qt(e, t) {
1024
+ var n, r, i, a = "style." + t, o = "end." + a, s;
1025
+ return function() {
1026
+ var c = X(this, e), l = c.on, u = c.value[a] == null ? s ||= Yt(t) : void 0;
1027
+ (l !== n || i !== u) && (r = (n = l).copy()).on(o, i = u), c.on = r;
1028
+ };
1029
+ }
1030
+ function $t(e, t, n) {
1031
+ var r = (e += "") == "transform" ? We : mt;
1032
+ return t == null ? this.styleTween(e, Jt(e, r)).on("end.style." + e, Yt(e)) : typeof t == "function" ? this.styleTween(e, Zt(e, r, pt(this, "style." + e, t))).each(Qt(this._id, e)) : this.styleTween(e, Xt(e, r, t), n).on("end.style." + e, null);
1033
+ }
1034
+ //#endregion
1035
+ //#region node_modules/d3-transition/src/transition/styleTween.js
1036
+ function en(e, t, n) {
1037
+ return function(r) {
1038
+ this.style.setProperty(e, t.call(this, r), n);
1039
+ };
1040
+ }
1041
+ function tn(e, t, n) {
1042
+ var r, i;
1043
+ function a() {
1044
+ var a = t.apply(this, arguments);
1045
+ return a !== i && (r = (i = a) && en(e, a, n)), r;
1046
+ }
1047
+ return a._value = t, a;
1048
+ }
1049
+ function nn(e, t, n) {
1050
+ var r = "style." + (e += "");
1051
+ if (arguments.length < 2) return (r = this.tween(r)) && r._value;
1052
+ if (t == null) return this.tween(r, null);
1053
+ if (typeof t != "function") throw Error();
1054
+ return this.tween(r, tn(e, t, n ?? ""));
1055
+ }
1056
+ //#endregion
1057
+ //#region node_modules/d3-transition/src/transition/text.js
1058
+ function rn(e) {
1059
+ return function() {
1060
+ this.textContent = e;
1061
+ };
1062
+ }
1063
+ function an(e) {
1064
+ return function() {
1065
+ var t = e(this);
1066
+ this.textContent = t ?? "";
1067
+ };
1068
+ }
1069
+ function on(e) {
1070
+ return this.tween("text", typeof e == "function" ? an(pt(this, "text", e)) : rn(e == null ? "" : e + ""));
1071
+ }
1072
+ //#endregion
1073
+ //#region node_modules/d3-transition/src/transition/textTween.js
1074
+ function sn(e) {
1075
+ return function(t) {
1076
+ this.textContent = e.call(this, t);
1077
+ };
1078
+ }
1079
+ function cn(e) {
1080
+ var t, n;
1081
+ function r() {
1082
+ var r = e.apply(this, arguments);
1083
+ return r !== n && (t = (n = r) && sn(r)), t;
1084
+ }
1085
+ return r._value = e, r;
1086
+ }
1087
+ function ln(e) {
1088
+ var t = "text";
1089
+ if (arguments.length < 1) return (t = this.tween(t)) && t._value;
1090
+ if (e == null) return this.tween(t, null);
1091
+ if (typeof e != "function") throw Error();
1092
+ return this.tween(t, cn(e));
1093
+ }
1094
+ //#endregion
1095
+ //#region node_modules/d3-transition/src/transition/transition.js
1096
+ function un() {
1097
+ for (var e = this._name, t = this._id, n = mn(), r = this._groups, i = r.length, a = 0; a < i; ++a) for (var o = r[a], s = o.length, c, l = 0; l < s; ++l) if (c = o[l]) {
1098
+ var u = Z(c, t);
1099
+ Y(c, e, n, l, o, {
1100
+ time: u.time + u.delay + u.duration,
1101
+ delay: 0,
1102
+ duration: u.duration,
1103
+ ease: u.ease
1104
+ });
1105
+ }
1106
+ return new Q(r, this._parents, e, n);
1107
+ }
1108
+ //#endregion
1109
+ //#region node_modules/d3-transition/src/transition/end.js
1110
+ function dn() {
1111
+ var e, t, n = this, r = n._id, i = n.size();
1112
+ return new Promise(function(a, o) {
1113
+ var s = { value: o }, c = { value: function() {
1114
+ --i === 0 && a();
1115
+ } };
1116
+ n.each(function() {
1117
+ var n = X(this, r), i = n.on;
1118
+ i !== e && (t = (e = i).copy(), t._.cancel.push(s), t._.interrupt.push(s), t._.end.push(c)), n.on = t;
1119
+ }), i === 0 && a();
1120
+ });
1121
+ }
1122
+ //#endregion
1123
+ //#region node_modules/d3-transition/src/transition/index.js
1124
+ var fn = 0;
1125
+ function Q(e, t, n, r) {
1126
+ this._groups = e, this._parents = t, this._name = n, this._id = r;
1127
+ }
1128
+ function pn(e) {
1129
+ return n().transition(e);
1130
+ }
1131
+ function mn() {
1132
+ return ++fn;
1133
+ }
1134
+ var $ = n.prototype;
1135
+ Q.prototype = pn.prototype = {
1136
+ constructor: Q,
1137
+ select: Wt,
1138
+ selectAll: Gt,
1139
+ selectChild: $.selectChild,
1140
+ selectChildren: $.selectChildren,
1141
+ filter: Lt,
1142
+ merge: Rt,
1143
+ selection: qt,
1144
+ transition: un,
1145
+ call: $.call,
1146
+ nodes: $.nodes,
1147
+ node: $.node,
1148
+ size: $.size,
1149
+ empty: $.empty,
1150
+ each: $.each,
1151
+ on: Vt,
1152
+ attr: xt,
1153
+ attrTween: Et,
1154
+ style: $t,
1155
+ styleTween: nn,
1156
+ text: on,
1157
+ textTween: ln,
1158
+ remove: Ut,
1159
+ tween: ft,
1160
+ delay: kt,
1161
+ duration: Mt,
1162
+ ease: Pt,
1163
+ easeVarying: It,
1164
+ end: dn,
1165
+ [Symbol.iterator]: $[Symbol.iterator]
1166
+ };
1167
+ //#endregion
1168
+ //#region node_modules/d3-ease/src/cubic.js
1169
+ function hn(e) {
1170
+ return ((e *= 2) <= 1 ? e * e * e : (e -= 2) * e * e + 2) / 2;
1171
+ }
1172
+ //#endregion
1173
+ //#region node_modules/d3-transition/src/selection/transition.js
1174
+ var gn = {
1175
+ time: null,
1176
+ delay: 0,
1177
+ duration: 250,
1178
+ ease: hn
1179
+ };
1180
+ function _n(e, t) {
1181
+ for (var n; !(n = e.__transition) || !(n = n[t]);) if (!(e = e.parentNode)) throw Error(`transition ${t} not found`);
1182
+ return n;
1183
+ }
1184
+ function vn(e) {
1185
+ var t, n;
1186
+ e instanceof Q ? (t = e._id, e = e._name) : (t = mn(), (n = gn).time = Ye(), e = e == null ? null : e + "");
1187
+ for (var r = this._groups, i = r.length, a = 0; a < i; ++a) for (var o = r[a], s = o.length, c, l = 0; l < s; ++l) (c = o[l]) && Y(c, e, t, l, o, n || _n(c, t));
1188
+ return new Q(r, this._parents, e, t);
1189
+ }
1190
+ n.prototype.interrupt = lt, n.prototype.transition = vn;
1191
+ //#endregion
1192
+ export { g as C, u as D, te as E, c as O, re as S, h as T, D as _, R as a, v as b, ke as c, y as d, O as f, Ce as g, b as h, Ie as i, I as l, T as m, ct as n, Me as o, x as p, Ze as r, L as s, pn as t, F as u, _e as v, ee as w, ne as x, _ as y };
1193
+
1194
+ //# sourceMappingURL=src-DnMaAyIP.js.map