@orbcharts/plugins-basic 3.0.0-beta.10 → 3.0.0-beta.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 (99) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +179 -178
  3. package/dist/orbcharts-plugins-basic.umd.js +28 -28
  4. package/lib/core-types.ts +7 -7
  5. package/lib/core.ts +6 -6
  6. package/lib/plugins-basic-types.ts +6 -6
  7. package/package.json +44 -44
  8. package/src/base/BaseBars.ts +765 -765
  9. package/src/base/BaseBarsTriangle.ts +676 -676
  10. package/src/base/BaseDots.ts +464 -464
  11. package/src/base/BaseGroupAxis.ts +679 -679
  12. package/src/base/BaseLegend.ts +684 -684
  13. package/src/base/BaseLineAreas.ts +629 -629
  14. package/src/base/BaseLines.ts +706 -706
  15. package/src/base/BaseStackedBar.ts +782 -782
  16. package/src/base/BaseTooltip.ts +385 -385
  17. package/src/base/BaseValueAxis.ts +583 -583
  18. package/src/base/types.ts +2 -2
  19. package/src/const.ts +30 -30
  20. package/src/grid/defaults.ts +246 -246
  21. package/src/grid/gridObservables.ts +554 -554
  22. package/src/grid/index.ts +16 -16
  23. package/src/grid/plugins/Bars.ts +69 -69
  24. package/src/grid/plugins/BarsPN.ts +66 -66
  25. package/src/grid/plugins/BarsTriangle.ts +73 -73
  26. package/src/grid/plugins/Dots.ts +68 -68
  27. package/src/grid/plugins/GridLegend.ts +107 -107
  28. package/src/grid/plugins/GridTooltip.ts +66 -66
  29. package/src/grid/plugins/GridZoom.ts +218 -218
  30. package/src/grid/plugins/GroupAux.ts +1103 -1103
  31. package/src/grid/plugins/GroupAxis.ts +97 -97
  32. package/src/grid/plugins/LineAreas.ts +65 -65
  33. package/src/grid/plugins/Lines.ts +59 -59
  34. package/src/grid/plugins/StackedBar.ts +64 -64
  35. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  36. package/src/grid/plugins/ValueAxis.ts +94 -94
  37. package/src/index.ts +6 -6
  38. package/src/multiGrid/defaults.ts +224 -224
  39. package/src/multiGrid/index.ts +14 -14
  40. package/src/multiGrid/multiGridObservables.ts +49 -49
  41. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  42. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  43. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  44. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  45. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  46. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  47. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  48. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  49. package/src/multiGrid/plugins/MultiStackedBar.ts +106 -106
  50. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  51. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  52. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +299 -299
  53. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  54. package/src/multiValue/defaults.ts +166 -166
  55. package/src/multiValue/index.ts +8 -8
  56. package/src/multiValue/multiValueObservables.ts +297 -297
  57. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  58. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  59. package/src/multiValue/plugins/Scatter.ts +426 -426
  60. package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
  61. package/src/multiValue/plugins/XYAux.ts +681 -681
  62. package/src/multiValue/plugins/XYAxes.ts +684 -684
  63. package/src/multiValue/plugins/XYZoom.ts +299 -299
  64. package/src/noneData/defaults.ts +102 -102
  65. package/src/noneData/index.ts +3 -3
  66. package/src/noneData/plugins/Container.ts +27 -27
  67. package/src/noneData/plugins/Tooltip.ts +373 -373
  68. package/src/relationship/defaults.ts +196 -195
  69. package/src/relationship/index.ts +5 -5
  70. package/src/relationship/plugins/ForceDirected.ts +1168 -1166
  71. package/src/relationship/plugins/ForceDirectedBubbles.ts +1395 -1390
  72. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  73. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  74. package/src/relationship/relationshipObservables.ts +49 -49
  75. package/src/series/defaults.ts +207 -206
  76. package/src/series/index.ts +9 -9
  77. package/src/series/plugins/Bubbles.ts +606 -606
  78. package/src/series/plugins/Pie.ts +623 -623
  79. package/src/series/plugins/PieEventTexts.ts +284 -284
  80. package/src/series/plugins/PieLabels.ts +640 -640
  81. package/src/series/plugins/Rose.ts +516 -516
  82. package/src/series/plugins/RoseLabels.ts +600 -600
  83. package/src/series/plugins/SeriesLegend.ts +107 -107
  84. package/src/series/plugins/SeriesTooltip.ts +66 -66
  85. package/src/series/seriesObservables.ts +145 -145
  86. package/src/series/seriesUtils.ts +51 -51
  87. package/src/tree/defaults.ts +78 -78
  88. package/src/tree/index.ts +4 -4
  89. package/src/tree/plugins/TreeLegend.ts +100 -100
  90. package/src/tree/plugins/TreeMap.ts +333 -333
  91. package/src/tree/plugins/TreeTooltip.ts +66 -66
  92. package/src/utils/commonUtils.ts +21 -21
  93. package/src/utils/d3Graphics.ts +174 -174
  94. package/src/utils/d3Utils.ts +74 -74
  95. package/src/utils/observables.ts +14 -14
  96. package/src/utils/orbchartsUtils.ts +115 -115
  97. package/tsconfig.base.json +13 -13
  98. package/tsconfig.json +2 -2
  99. package/vite.config.js +22 -22
@@ -777,7 +777,7 @@ var N2 = function(t) {
777
777
  return function() {
778
778
  t(this), this.name = "ObjectUnsubscribedError", this.message = "object unsubscribed";
779
779
  };
780
- }), Q = function(t) {
780
+ }), J = function(t) {
781
781
  Ue(e, t);
782
782
  function e() {
783
783
  var n = t.call(this) || this;
@@ -875,7 +875,7 @@ var N2 = function(t) {
875
875
  var r, i;
876
876
  return (i = (r = this.source) === null || r === void 0 ? void 0 : r.subscribe(n)) !== null && i !== void 0 ? i : $m;
877
877
  }, e;
878
- }(Q), Df = function(t) {
878
+ }(J), Df = function(t) {
879
879
  Ue(e, t);
880
880
  function e(n) {
881
881
  var r = t.call(this) || this;
@@ -898,7 +898,7 @@ var N2 = function(t) {
898
898
  }, e.prototype.next = function(n) {
899
899
  t.prototype.next.call(this, this._value = n);
900
900
  }, e;
901
- }(Q), Cf = {
901
+ }(J), Cf = {
902
902
  now: function() {
903
903
  return (Cf.delegate || Date).now();
904
904
  },
@@ -926,7 +926,7 @@ var N2 = function(t) {
926
926
  u && o.splice(0, u + 1);
927
927
  }
928
928
  }, e;
929
- }(Q), O2 = function(t) {
929
+ }(J), O2 = function(t) {
930
930
  Ue(e, t);
931
931
  function e(n, r) {
932
932
  return t.call(this) || this;
@@ -1548,7 +1548,7 @@ function Pw(t) {
1548
1548
  }));
1549
1549
  });
1550
1550
  }
1551
- function J(t, e) {
1551
+ function Q(t, e) {
1552
1552
  return e === void 0 && (e = Si), t = t ?? Dw, ge(function(n, r) {
1553
1553
  var i, o = !0;
1554
1554
  n.subscribe(le(r, function(a) {
@@ -1584,7 +1584,7 @@ function mo(t, e) {
1584
1584
  function Lw(t) {
1585
1585
  t === void 0 && (t = {});
1586
1586
  var e = t.connector, n = e === void 0 ? function() {
1587
- return new Q();
1587
+ return new J();
1588
1588
  } : e, r = t.resetOnError, i = r === void 0 ? !0 : r, o = t.resetOnComplete, a = o === void 0 ? !0 : o, s = t.resetOnRefCountZero, l = s === void 0 ? !0 : s;
1589
1589
  return function(u) {
1590
1590
  var c, f, h, p = 0, d = !1, m = !1, g = function() {
@@ -17237,7 +17237,7 @@ const Ar = ({ selection: t, pluginName: e, clipPathID: n, seriesLabels$: r, grid
17237
17237
  graphicGSelection$: p
17238
17238
  };
17239
17239
  }, $$ = ({ fullDataFormatter$: t, gridAxesSize$: e, computedData$: n, fullChartParams$: r, gridContainerPosition$: i, layout$: o }) => {
17240
- const a = new Q(), s = Y({
17240
+ const a = new J(), s = Y({
17241
17241
  fullDataFormatter: t,
17242
17242
  gridAxesSize: e,
17243
17243
  computedData: n
@@ -17262,10 +17262,10 @@ const Ar = ({ selection: t, pluginName: e, clipPathID: n, seriesLabels$: r, grid
17262
17262
  R((h) => h.groupLabels.filter((p, d) => d >= h.groupScaleDomain[0] && d <= h.groupScaleDomain[1]))
17263
17263
  ), c = i.pipe(
17264
17264
  R((h) => h.reduce((d, m) => m.columnIndex > d ? m.columnIndex : d, 0) + 1),
17265
- J()
17265
+ Q()
17266
17266
  ), f = i.pipe(
17267
17267
  R((h) => h.reduce((d, m) => m.rowIndex > d ? m.rowIndex : d, 0) + 1),
17268
- J()
17268
+ Q()
17269
17269
  );
17270
17270
  return new pt((h) => {
17271
17271
  Y({
@@ -17343,10 +17343,10 @@ const Ar = ({ selection: t, pluginName: e, clipPathID: n, seriesLabels$: r, grid
17343
17343
  }))
17344
17344
  ), p = o.pipe(
17345
17345
  R((b) => b.reduce((x, w) => w.columnIndex > x ? w.columnIndex : x, 0) + 1),
17346
- J()
17346
+ Q()
17347
17347
  ), d = o.pipe(
17348
17348
  R((b) => b.reduce((x, w) => w.rowIndex > x ? w.rowIndex : x, 0) + 1),
17349
- J()
17349
+ Q()
17350
17350
  ), m = Y({
17351
17351
  fullDataFormatter: e,
17352
17352
  fullChartParams: i,
@@ -17461,7 +17461,7 @@ const w$ = (t, {
17461
17461
  layout$: b,
17462
17462
  event$: v
17463
17463
  }) => {
17464
- const x = new Q(), w = Se(t, "clipPath-box"), A = q(t, "path"), {
17464
+ const x = new J(), w = Se(t, "clipPath-box"), A = q(t, "path"), {
17465
17465
  seriesSelection$: _,
17466
17466
  axesSelection$: P,
17467
17467
  defsSelection$: C,
@@ -17487,10 +17487,10 @@ const w$ = (t, {
17487
17487
  };
17488
17488
  }), k = f.pipe(
17489
17489
  R((z) => z.transitionDuration),
17490
- J()
17490
+ Q()
17491
17491
  ), M = f.pipe(
17492
17492
  R((z) => z.transitionEase),
17493
- J()
17493
+ Q()
17494
17494
  );
17495
17495
  Y({
17496
17496
  defsSelection: C,
@@ -17535,7 +17535,7 @@ const w$ = (t, {
17535
17535
  }), D = f.pipe(
17536
17536
  L(x),
17537
17537
  R((z) => z.highlightTarget),
17538
- J()
17538
+ Q()
17539
17539
  ), F = Y({
17540
17540
  graphicGSelection: B,
17541
17541
  visibleComputedLayoutData: o,
@@ -17683,7 +17683,7 @@ const w$ = (t, {
17683
17683
  }
17684
17684
  })
17685
17685
  }, tz = ue(JI)(({ selection: t, rootSelection: e, name: n, observer: r, subject: i }) => {
17686
- const o = new Q(), a = w$(A$, {
17686
+ const o = new J(), a = w$(A$, {
17687
17687
  selection: t,
17688
17688
  computedData$: r.computedData$,
17689
17689
  computedLayoutData$: r.computedLayoutData$,
@@ -17790,7 +17790,7 @@ const P$ = (t, {
17790
17790
  layout$: y,
17791
17791
  event$: b
17792
17792
  }) => {
17793
- const v = new Q(), x = Se(t, "clipPath-box"), w = q(t, "path"), {
17793
+ const v = new J(), x = Se(t, "clipPath-box"), w = q(t, "path"), {
17794
17794
  seriesSelection$: A,
17795
17795
  axesSelection$: _,
17796
17796
  defsSelection$: P,
@@ -17821,10 +17821,10 @@ const P$ = (t, {
17821
17821
  };
17822
17822
  }), k = f.pipe(
17823
17823
  R((E) => E.transitionDuration),
17824
- J()
17824
+ Q()
17825
17825
  ), M = f.pipe(
17826
17826
  R((E) => E.transitionEase),
17827
- J()
17827
+ Q()
17828
17828
  );
17829
17829
  Y({
17830
17830
  defsSelection: P,
@@ -17869,7 +17869,7 @@ const P$ = (t, {
17869
17869
  }), D = f.pipe(
17870
17870
  L(v),
17871
17871
  R((E) => E.highlightTarget),
17872
- J()
17872
+ Q()
17873
17873
  ), F = a.pipe(
17874
17874
  L(v),
17875
17875
  R((E) => E.map((N, I) => Se(t, `lineargradient-${N}`)))
@@ -18025,7 +18025,7 @@ const P$ = (t, {
18025
18025
  }
18026
18026
  })
18027
18027
  }, ez = ue(aE)(({ selection: t, name: e, observer: n, subject: r }) => {
18028
- const i = new Q(), o = P$(D$, {
18028
+ const i = new J(), o = P$(D$, {
18029
18029
  selection: t,
18030
18030
  computedData$: n.computedData$,
18031
18031
  visibleComputedData$: n.visibleComputedData$,
@@ -18116,7 +18116,7 @@ const $p = (t, {
18116
18116
  isSeriesSeprate$: y,
18117
18117
  event$: b
18118
18118
  }) => {
18119
- const v = new Q(), x = Se(t, "clipPath-box"), w = q(t, "rect"), {
18119
+ const v = new J(), x = Se(t, "clipPath-box"), w = q(t, "rect"), {
18120
18120
  seriesSelection$: A,
18121
18121
  axesSelection$: _,
18122
18122
  defsSelection$: P,
@@ -18132,7 +18132,7 @@ const $p = (t, {
18132
18132
  }), B = o.pipe(
18133
18133
  L(v),
18134
18134
  R((N) => N.map((I) => I[0] ? I[0].axisY - I[0].axisYFromZero : 0)),
18135
- J()
18135
+ Q()
18136
18136
  ), $ = Y({
18137
18137
  computedData: n,
18138
18138
  visibleComputedData: i,
@@ -18155,7 +18155,7 @@ const $p = (t, {
18155
18155
  barPadding: N.params.barPadding,
18156
18156
  barGroupPadding: N.params.barGroupPadding
18157
18157
  })),
18158
- J()
18158
+ Q()
18159
18159
  ), k = Y({
18160
18160
  computedData: n,
18161
18161
  // gridGraphicTransform: gridGraphicTransform$,
@@ -18200,7 +18200,7 @@ const $p = (t, {
18200
18200
  ), S = c.pipe(
18201
18201
  L(v),
18202
18202
  R((N) => N.transitionDuration),
18203
- J()
18203
+ Q()
18204
18204
  ), D = new pt((N) => {
18205
18205
  Y({
18206
18206
  groupLabels: M,
@@ -18213,7 +18213,7 @@ const $p = (t, {
18213
18213
  });
18214
18214
  }).pipe(
18215
18215
  L(v),
18216
- J()
18216
+ Q()
18217
18217
  ), F = new pt((N) => {
18218
18218
  Y({
18219
18219
  groupLabels: M,
@@ -18226,7 +18226,7 @@ const $p = (t, {
18226
18226
  });
18227
18227
  }).pipe(
18228
18228
  L(v),
18229
- J()
18229
+ Q()
18230
18230
  );
18231
18231
  Y({
18232
18232
  defsSelection: P,
@@ -18248,7 +18248,7 @@ const $p = (t, {
18248
18248
  const z = c.pipe(
18249
18249
  L(v),
18250
18250
  R((N) => N.highlightTarget),
18251
- J()
18251
+ Q()
18252
18252
  ), E = Y({
18253
18253
  graphicGSelection: C,
18254
18254
  visibleComputedLayoutData: o,
@@ -18399,7 +18399,7 @@ const $p = (t, {
18399
18399
  }
18400
18400
  })
18401
18401
  }, nz = ue(pE)(({ selection: t, name: e, subject: n, observer: r }) => {
18402
- const i = new Q(), o = $p(M$, {
18402
+ const i = new J(), o = $p(M$, {
18403
18403
  selection: t,
18404
18404
  computedData$: r.computedData$,
18405
18405
  computedLayoutData$: r.computedLayoutData$,
@@ -18441,7 +18441,7 @@ const $p = (t, {
18441
18441
  }
18442
18442
  })
18443
18443
  }, rz = ue(dE)(({ selection: t, name: e, subject: n, observer: r }) => {
18444
- const i = new Q(), o = $p(L$, {
18444
+ const i = new J(), o = $p(L$, {
18445
18445
  selection: t,
18446
18446
  computedData$: r.computedData$,
18447
18447
  computedLayoutData$: r.computedLayoutData$,
@@ -18530,7 +18530,7 @@ const R$ = (t, {
18530
18530
  isSeriesSeprate$: b,
18531
18531
  event$: v
18532
18532
  }) => {
18533
- const x = new Q(), w = Se(t, "clipPath-box"), A = q(t, "rect"), {
18533
+ const x = new J(), w = Se(t, "clipPath-box"), A = q(t, "rect"), {
18534
18534
  seriesSelection$: _,
18535
18535
  axesSelection$: P,
18536
18536
  defsSelection$: C,
@@ -18546,7 +18546,7 @@ const R$ = (t, {
18546
18546
  }), $ = o.pipe(
18547
18547
  L(x),
18548
18548
  R((W) => W[0] && W[0][0] ? W[0][0].axisY - W[0][0].axisYFromZero : 0),
18549
- J()
18549
+ Q()
18550
18550
  ), k = Y({
18551
18551
  computedData: n,
18552
18552
  // visibleComputedData: visibleComputedData$,
@@ -18561,7 +18561,7 @@ const R$ = (t, {
18561
18561
  groupAmount: W.computedData[0] ? W.computedData[0].length : 0,
18562
18562
  barGroupPadding: W.params.barGroupPadding
18563
18563
  })),
18564
- J()
18564
+ Q()
18565
18565
  ), M = Y({
18566
18566
  computedData: n,
18567
18567
  // gridGraphicTransform: gridGraphicTransform$,
@@ -18592,7 +18592,7 @@ const R$ = (t, {
18592
18592
  ), S = f.pipe(
18593
18593
  L(x),
18594
18594
  R((W) => W.transitionDuration),
18595
- J()
18595
+ Q()
18596
18596
  ), D = new pt((W) => {
18597
18597
  Y({
18598
18598
  groupLabels: T,
@@ -18605,7 +18605,7 @@ const R$ = (t, {
18605
18605
  });
18606
18606
  }).pipe(
18607
18607
  L(x),
18608
- J()
18608
+ Q()
18609
18609
  ), F = new pt((W) => {
18610
18610
  Y({
18611
18611
  groupLabels: T,
@@ -18618,7 +18618,7 @@ const R$ = (t, {
18618
18618
  });
18619
18619
  }).pipe(
18620
18620
  L(x),
18621
- J()
18621
+ Q()
18622
18622
  ), z = Y({
18623
18623
  computedData: n,
18624
18624
  dataFormatter: c
@@ -18694,7 +18694,7 @@ const R$ = (t, {
18694
18694
  const j = f.pipe(
18695
18695
  L(x),
18696
18696
  R((W) => W.highlightTarget),
18697
- J()
18697
+ Q()
18698
18698
  ), rt = Y({
18699
18699
  graphicGSelection: B,
18700
18700
  graphicData: O,
@@ -18838,7 +18838,7 @@ const R$ = (t, {
18838
18838
  }
18839
18839
  })
18840
18840
  }, iz = ue($E)(({ selection: t, name: e, subject: n, observer: r }) => {
18841
- const i = new Q(), o = R$(I$, {
18841
+ const i = new J(), o = R$(I$, {
18842
18842
  selection: t,
18843
18843
  computedData$: r.computedData$,
18844
18844
  computedLayoutData$: r.computedLayoutData$,
@@ -18955,7 +18955,7 @@ const B$ = (t, {
18955
18955
  isSeriesSeprate$: y,
18956
18956
  event$: b
18957
18957
  }) => {
18958
- const v = new Q(), x = Se(t, "clipPath-box"), w = q(t, "pathG"), A = q(t, "path"), {
18958
+ const v = new J(), x = Se(t, "clipPath-box"), w = q(t, "pathG"), A = q(t, "path"), {
18959
18959
  seriesSelection$: _,
18960
18960
  axesSelection$: P,
18961
18961
  defsSelection$: C,
@@ -18978,7 +18978,7 @@ const B$ = (t, {
18978
18978
  // ? d[0][0].axisY - d[0][0].axisYFromZero
18979
18979
  // : 0),
18980
18980
  R((I) => I.map((O) => O[0] ? O[0].axisY - O[0].axisYFromZero : 0)),
18981
- J()
18981
+ Q()
18982
18982
  ), k = Y({
18983
18983
  computedData: n,
18984
18984
  visibleComputedData: i,
@@ -19026,7 +19026,7 @@ const B$ = (t, {
19026
19026
  }), S = f.pipe(
19027
19027
  L(v),
19028
19028
  R((I) => I.transitionDuration),
19029
- J()
19029
+ Q()
19030
19030
  ), D = new pt((I) => {
19031
19031
  Y({
19032
19032
  groupLabels: M,
@@ -19039,7 +19039,7 @@ const B$ = (t, {
19039
19039
  });
19040
19040
  }).pipe(
19041
19041
  L(v),
19042
- J()
19042
+ Q()
19043
19043
  ), F = new pt((I) => {
19044
19044
  Y({
19045
19045
  groupLabels: M,
@@ -19052,7 +19052,7 @@ const B$ = (t, {
19052
19052
  });
19053
19053
  }).pipe(
19054
19054
  L(v),
19055
- J()
19055
+ Q()
19056
19056
  );
19057
19057
  Y({
19058
19058
  defsSelection: C,
@@ -19074,7 +19074,7 @@ const B$ = (t, {
19074
19074
  const z = f.pipe(
19075
19075
  L(v),
19076
19076
  R((I) => I.highlightTarget),
19077
- J()
19077
+ Q()
19078
19078
  ), E = s.pipe(
19079
19079
  L(v),
19080
19080
  R((I) => I.map((O, j) => Se(t, `lineargradient-${O}`)))
@@ -19232,7 +19232,7 @@ const B$ = (t, {
19232
19232
  }
19233
19233
  })
19234
19234
  }, oz = ue(CE)(({ selection: t, name: e, subject: n, observer: r }) => {
19235
- const i = new Q(), o = B$(N$, {
19235
+ const i = new J(), o = B$(N$, {
19236
19236
  selection: t,
19237
19237
  computedData$: r.computedData$,
19238
19238
  computedLayoutData$: r.computedLayoutData$,
@@ -19313,7 +19313,7 @@ const F$ = (t, {
19313
19313
  gridContainerPosition$: g,
19314
19314
  event$: y
19315
19315
  }) => {
19316
- const b = new Q(), v = Se(t, "clipPath-box"), x = q(t, "circleG"), w = q(t, "circle"), {
19316
+ const b = new J(), v = Se(t, "clipPath-box"), x = q(t, "circleG"), w = q(t, "circle"), {
19317
19317
  seriesSelection$: A,
19318
19318
  axesSelection$: _,
19319
19319
  defsSelection$: P,
@@ -19357,7 +19357,7 @@ const F$ = (t, {
19357
19357
  const $ = c.pipe(
19358
19358
  L(b),
19359
19359
  R((T) => T.highlightTarget),
19360
- J()
19360
+ Q()
19361
19361
  ), k = Y({
19362
19362
  graphicGSelection: C,
19363
19363
  visibleComputedLayoutData: o,
@@ -19460,7 +19460,7 @@ const F$ = (t, {
19460
19460
  const M = u.pipe(
19461
19461
  L(b),
19462
19462
  R((T) => T.onlyShowHighlighted),
19463
- J()
19463
+ Q()
19464
19464
  );
19465
19465
  return Y({
19466
19466
  graphicSelection: k,
@@ -19509,7 +19509,7 @@ const F$ = (t, {
19509
19509
  }
19510
19510
  })
19511
19511
  }, az = ue(RE)(({ selection: t, name: e, subject: n, observer: r }) => {
19512
- const i = new Q(), o = F$(z$, {
19512
+ const i = new J(), o = F$(z$, {
19513
19513
  selection: t,
19514
19514
  computedData$: r.computedData$,
19515
19515
  computedLayoutData$: r.computedLayoutData$,
@@ -19548,7 +19548,7 @@ const Ii = (t, {
19548
19548
  fullChartParams$: o,
19549
19549
  textSizePx$: a
19550
19550
  }) => {
19551
- const s = q(t, "root-position"), l = q(t, "legend-card"), u = q(t, "legend-list"), c = q(t, "legend-item"), f = new Q(), h = Y({
19551
+ const s = q(t, "root-position"), l = q(t, "legend-card"), u = q(t, "legend-list"), c = q(t, "legend-item"), f = new J(), h = Y({
19552
19552
  legendLabels: n,
19553
19553
  fullChartParams: o
19554
19554
  }).pipe(
@@ -19576,17 +19576,17 @@ const Ii = (t, {
19576
19576
  ), d = r.pipe(
19577
19577
  L(f),
19578
19578
  R(($) => $.placement === "top" || $.placement === "top-start" || $.placement === "top-end" ? "top" : $.placement === "bottom" || $.placement === "bottom-start" || $.placement === "bottom-end" ? "bottom" : $.placement === "left" || $.placement === "left-start" || $.placement === "left-end" ? "left" : "right"),
19579
- J(($, k) => $ === k),
19579
+ Q(($, k) => $ === k),
19580
19580
  ht(1)
19581
19581
  ), m = r.pipe(
19582
19582
  L(f),
19583
19583
  R(($) => $.placement === "top-start" || $.placement === "bottom-start" || $.placement === "left-start" || $.placement === "right-start" ? "start" : $.placement === "top-end" || $.placement === "bottom-end" || $.placement === "left-end" || $.placement === "right-end" ? "end" : ($.placement === "top" || $.placement === "bottom" || $.placement === "left" || $.placement === "right", "center")),
19584
- J(($, k) => $ === k),
19584
+ Q(($, k) => $ === k),
19585
19585
  ht(1)
19586
19586
  ), g = d.pipe(
19587
19587
  L(f),
19588
19588
  R(($) => $ === "bottom" || $ === "top" ? "row" : "column"),
19589
- J(($, k) => $ === k),
19589
+ Q(($, k) => $ === k),
19590
19590
  ht(1)
19591
19591
  ), y = Y({
19592
19592
  fullParams: r,
@@ -19824,7 +19824,7 @@ const Ii = (t, {
19824
19824
  }
19825
19825
  })
19826
19826
  }, sz = ue(BE)(({ selection: t, rootSelection: e, observer: n, subject: r }) => {
19827
- const i = new Q(), o = n.SeriesDataMap$.pipe(
19827
+ const i = new J(), o = n.SeriesDataMap$.pipe(
19828
19828
  L(i),
19829
19829
  R((l) => Array.from(l.keys()))
19830
19830
  ), a = n.fullParams$.pipe(
@@ -19983,9 +19983,9 @@ const W$ = (t, {
19983
19983
  isSeriesSeprate$: c,
19984
19984
  textSizePx$: f
19985
19985
  }) => {
19986
- const h = new Q(), p = q(t, "container"), d = q(t, "xAxisG"), m = q(t, "xAxis"), g = q(t, "groupingLabel"), y = Y({
19986
+ const h = new J(), p = q(t, "container"), d = q(t, "xAxisG"), m = q(t, "xAxis"), g = q(t, "groupingLabel"), y = Y({
19987
19987
  computedData: n.pipe(
19988
- J(($, k) => $.length === k.length)
19988
+ Q(($, k) => $.length === k.length)
19989
19989
  ),
19990
19990
  isSeriesSeprate: c
19991
19991
  }).pipe(
@@ -20027,7 +20027,7 @@ const W$ = (t, {
20027
20027
  const k = `rotateX(${$.gridAxesReverseTransform.rotateX}deg) rotateY(${$.gridAxesReverseTransform.rotateY}deg)`, M = `rotate(${$.gridAxesReverseTransform.rotate}deg)`, T = `scale(${1 / $.gridContainerPosition[0].scale[0]}, ${1 / $.gridContainerPosition[0].scale[1]})`;
20028
20028
  return `${k} ${M} ${T}`;
20029
20029
  }),
20030
- J()
20030
+ Q()
20031
20031
  ), x = Y({
20032
20032
  textReverseTransform: v,
20033
20033
  fullParams: r
@@ -20181,7 +20181,7 @@ const W$ = (t, {
20181
20181
  }
20182
20182
  })
20183
20183
  }, lz = ue(GE)(({ selection: t, name: e, observer: n, subject: r }) => {
20184
- const i = new Q(), o = W$(X$, {
20184
+ const i = new J(), o = W$(X$, {
20185
20185
  selection: t,
20186
20186
  computedData$: n.computedData$,
20187
20187
  fullParams$: n.fullParams$,
@@ -20231,9 +20231,9 @@ const Ei = (t, {
20231
20231
  gridContainerPosition$: c,
20232
20232
  isSeriesSeprate$: f
20233
20233
  }) => {
20234
- const h = new Q(), p = q(t, "container"), d = q(t, "yAxisG"), m = q(t, "yAxis"), g = q(t, "text"), y = Y({
20234
+ const h = new J(), p = q(t, "container"), d = q(t, "yAxisG"), m = q(t, "yAxis"), g = q(t, "text"), y = Y({
20235
20235
  computedData: n.pipe(
20236
- J((P, C) => P.length === C.length)
20236
+ Q((P, C) => P.length === C.length)
20237
20237
  ),
20238
20238
  isSeriesSeprate: f
20239
20239
  }).pipe(
@@ -20275,7 +20275,7 @@ const Ei = (t, {
20275
20275
  const C = `rotateX(${P.gridAxesReverseTransform.rotateX}deg) rotateY(${P.gridAxesReverseTransform.rotateY}deg)`, B = `rotate(${P.gridAxesReverseTransform.rotate}deg)`, $ = `scale(${1 / P.gridContainerPosition[0].scale[0]}, ${1 / P.gridContainerPosition[0].scale[1]})`;
20276
20276
  return `${C} ${B} ${$}`;
20277
20277
  }),
20278
- J()
20278
+ Q()
20279
20279
  ), x = Y({
20280
20280
  textReverseTransform: v,
20281
20281
  fullParams: i
@@ -20415,7 +20415,7 @@ const Ei = (t, {
20415
20415
  }
20416
20416
  })
20417
20417
  }, uz = ue(VE)(({ selection: t, name: e, observer: n, subject: r }) => {
20418
- const i = new Q(), o = Ei(V$, {
20418
+ const i = new J(), o = Ei(V$, {
20419
20419
  selection: t,
20420
20420
  computedData$: n.computedData$,
20421
20421
  filteredMinMaxValue$: n.filteredMinMaxValue$,
@@ -20478,7 +20478,7 @@ const Ei = (t, {
20478
20478
  }
20479
20479
  })
20480
20480
  }, cz = ue(HE)(({ selection: t, name: e, observer: n, subject: r }) => {
20481
- const i = new Q(), o = Ei(H$, {
20481
+ const i = new J(), o = Ei(H$, {
20482
20482
  selection: t,
20483
20483
  computedData$: n.computedStackedData$,
20484
20484
  // 計算疊加value的資料
@@ -20529,7 +20529,7 @@ const Bi = (t, {
20529
20529
  layout$: i,
20530
20530
  event$: o
20531
20531
  }) => {
20532
- const a = new Q(), s = q(t, "g"), l = q(t, "box"), u = o.pipe(
20532
+ const a = new J(), s = q(t, "g"), l = q(t, "box"), u = o.pipe(
20533
20533
  L(a),
20534
20534
  Qr((b) => b.eventName === "mouseover" || b.eventName === "mousemove")
20535
20535
  // distinctUntilChanged((prev, current) => prev.eventName === current.eventName)
@@ -20600,7 +20600,7 @@ const Bi = (t, {
20600
20600
  R((b) => "")
20601
20601
  ), g = uc(d, m).pipe(
20602
20602
  L(a),
20603
- J((b, v) => b === v)
20603
+ Q((b, v) => b === v)
20604
20604
  ), y = uc(u, c).pipe(
20605
20605
  L(a),
20606
20606
  // filter(d => {
@@ -20661,7 +20661,7 @@ const Bi = (t, {
20661
20661
  }
20662
20662
  })
20663
20663
  }, fz = ue(UE)(({ selection: t, rootSelection: e, name: n, subject: r, observer: i }) => {
20664
- const o = new Q(), a = Bi(j$, {
20664
+ const o = new J(), a = Bi(j$, {
20665
20665
  rootSelection: e,
20666
20666
  fullParams$: i.fullParams$,
20667
20667
  fullChartParams$: i.fullChartParams$,
@@ -20681,7 +20681,7 @@ const Bi = (t, {
20681
20681
  expectToBe: ""
20682
20682
  })
20683
20683
  }, hz = ue(ZE)(({ selection: t, rootSelection: e, name: n, observer: r, subject: i }) => {
20684
- const o = new Q();
20684
+ const o = new J();
20685
20685
  let a = {
20686
20686
  k: 1,
20687
20687
  x: 0,
@@ -20689,7 +20689,7 @@ const Bi = (t, {
20689
20689
  };
20690
20690
  const s = r.computedData$.pipe(
20691
20691
  R((c) => c[0] ? c[0].length - 1 : 0),
20692
- J()
20692
+ Q()
20693
20693
  ), l = r.fullDataFormatter$.pipe(
20694
20694
  R((c) => c.groupAxis),
20695
20695
  // 只用第一次資料來計算scale才不會造成每次變動都受到影響
@@ -20845,7 +20845,7 @@ function rB(t) {
20845
20845
  t.selectAll(`g.${bf}`).data([]).exit().remove();
20846
20846
  }
20847
20847
  const pz = ue(KE)(({ selection: t, rootSelection: e, name: n, subject: r, observer: i }) => {
20848
- const o = new Q();
20848
+ const o = new J();
20849
20849
  let a = !1;
20850
20850
  const s = e.insert("rect", "g").classed(q(al, "rect"), !0).attr("opacity", 0), {
20851
20851
  seriesSelection$: l,
@@ -20885,7 +20885,7 @@ const pz = ue(KE)(({ selection: t, rootSelection: e, name: n, subject: r, observ
20885
20885
  ), p = i.fullChartParams$.pipe(
20886
20886
  L(o),
20887
20887
  R((w) => w.highlightTarget),
20888
- J()
20888
+ Q()
20889
20889
  ), d = Wo(e, "mousemove").pipe(
20890
20890
  L(o)
20891
20891
  ), m = Y({
@@ -20898,7 +20898,7 @@ const pz = ue(KE)(({ selection: t, rootSelection: e, name: n, subject: r, observ
20898
20898
  const A = `rotateX(${w.gridAxesReverseTransform.rotateX}deg) rotateY(${w.gridAxesReverseTransform.rotateY}deg)`, _ = `rotate(${w.gridAxesReverseTransform.rotate}deg)`, P = `scale(${1 / w.gridContainerPosition[0].scale[0]}, ${1 / w.gridContainerPosition[0].scale[1]})`;
20899
20899
  return `${A} ${_} ${P}`;
20900
20900
  }),
20901
- J()
20901
+ Q()
20902
20902
  ), g = Y({
20903
20903
  textReverseTransform: m,
20904
20904
  fullParams: i.fullParams$
@@ -20909,11 +20909,11 @@ const pz = ue(KE)(({ selection: t, rootSelection: e, name: n, subject: r, observ
20909
20909
  ), y = i.gridContainerPosition$.pipe(
20910
20910
  L(o),
20911
20911
  R((w) => w.reduce((_, P) => P.columnIndex > _ ? P.columnIndex : _, 0) + 1),
20912
- J()
20912
+ Q()
20913
20913
  ), b = i.gridContainerPosition$.pipe(
20914
20914
  L(o),
20915
20915
  R((w) => w.reduce((_, P) => P.rowIndex > _ ? P.rowIndex : _, 0) + 1),
20916
- J()
20916
+ Q()
20917
20917
  ), v = jI({
20918
20918
  rootSelection: e,
20919
20919
  fullDataFormatter$: i.fullDataFormatter$,
@@ -21309,7 +21309,7 @@ const K$ = "MultiGridLegend", hB = {
21309
21309
  return n;
21310
21310
  }
21311
21311
  }, gz = me(hB)(({ selection: t, rootSelection: e, observer: n, subject: r }) => {
21312
- const i = new Q(), o = n.multiGridEachDetail$.pipe(
21312
+ const i = new J(), o = n.multiGridEachDetail$.pipe(
21313
21313
  L(i),
21314
21314
  R((u) => u.map((f, h) => f.SeriesDataMap$.pipe(
21315
21315
  // grid內的seriesLabels
@@ -21356,7 +21356,7 @@ const K$ = "MultiGridLegend", hB = {
21356
21356
  }), Ne = (t) => {
21357
21357
  const e = t.fullParams$.pipe(
21358
21358
  R((n) => n.gridIndexes),
21359
- J(),
21359
+ Q(),
21360
21360
  ht(1)
21361
21361
  );
21362
21362
  return Y({
@@ -21388,7 +21388,7 @@ const K$ = "MultiGridLegend", hB = {
21388
21388
  }
21389
21389
  })
21390
21390
  }, mz = me(pB)(({ selection: t, name: e, subject: n, observer: r }) => {
21391
- const i = new Q(), o = [];
21391
+ const i = new J(), o = [];
21392
21392
  return Ne(r).pipe(
21393
21393
  L(i)
21394
21394
  ).subscribe((s) => {
@@ -21396,7 +21396,7 @@ const K$ = "MultiGridLegend", hB = {
21396
21396
  const f = V(c[u]), h = l.dataFormatter$.pipe(
21397
21397
  L(i),
21398
21398
  R((p) => p.separateSeries),
21399
- J(),
21399
+ Q(),
21400
21400
  ht(1)
21401
21401
  );
21402
21402
  o[u] = $p(Sp, {
@@ -21443,7 +21443,7 @@ const K$ = "MultiGridLegend", hB = {
21443
21443
  }
21444
21444
  })
21445
21445
  }, yz = me(dB)(({ selection: t, name: e, subject: n, observer: r }) => {
21446
- const i = new Q(), o = [];
21446
+ const i = new J(), o = [];
21447
21447
  return Ne(r).pipe(
21448
21448
  L(i)
21449
21449
  ).subscribe((s) => {
@@ -21451,7 +21451,7 @@ const K$ = "MultiGridLegend", hB = {
21451
21451
  const f = V(c[u]), h = l.dataFormatter$.pipe(
21452
21452
  L(i),
21453
21453
  R((p) => p.separateSeries),
21454
- J(),
21454
+ Q(),
21455
21455
  ht(1)
21456
21456
  );
21457
21457
  o[u] = R$(Tp, {
@@ -21503,7 +21503,7 @@ const K$ = "MultiGridLegend", hB = {
21503
21503
  }
21504
21504
  })
21505
21505
  }, bz = me(gB)(({ selection: t, name: e, subject: n, observer: r }) => {
21506
- const i = new Q(), o = [];
21506
+ const i = new J(), o = [];
21507
21507
  return Ne(r).pipe(
21508
21508
  L(i)
21509
21509
  ).subscribe((s) => {
@@ -21511,7 +21511,7 @@ const K$ = "MultiGridLegend", hB = {
21511
21511
  const f = V(c[u]), h = l.dataFormatter$.pipe(
21512
21512
  L(i),
21513
21513
  R((p) => p.separateSeries),
21514
- J(),
21514
+ Q(),
21515
21515
  ht(1)
21516
21516
  );
21517
21517
  o[u] = B$(Ap, {
@@ -21555,7 +21555,7 @@ const K$ = "MultiGridLegend", hB = {
21555
21555
  }
21556
21556
  })
21557
21557
  }, xz = me(mB)(({ selection: t, rootSelection: e, name: n, subject: r, observer: i }) => {
21558
- const o = new Q(), a = [], s = i.multiGridContainerPosition$.pipe(
21558
+ const o = new J(), a = [], s = i.multiGridContainerPosition$.pipe(
21559
21559
  L(o),
21560
21560
  R((u) => u.flat())
21561
21561
  );
@@ -21607,7 +21607,7 @@ const K$ = "MultiGridLegend", hB = {
21607
21607
  }
21608
21608
  })
21609
21609
  }, vz = me(yB)(({ selection: t, name: e, subject: n, observer: r }) => {
21610
- const i = new Q(), o = [], a = r.multiGridContainerPosition$.pipe(
21610
+ const i = new J(), o = [], a = r.multiGridContainerPosition$.pipe(
21611
21611
  L(i),
21612
21612
  R((l) => l.flat())
21613
21613
  );
@@ -21670,7 +21670,7 @@ const K$ = "MultiGridLegend", hB = {
21670
21670
  }
21671
21671
  })
21672
21672
  }, $z = me(bB)(({ selection: t, name: e, subject: n, observer: r }) => {
21673
- const i = new Q(), o = [];
21673
+ const i = new J(), o = [];
21674
21674
  return Ne(r).pipe(
21675
21675
  L(i)
21676
21676
  ).subscribe((s) => {
@@ -21751,7 +21751,7 @@ const K$ = "MultiGridLegend", hB = {
21751
21751
  }
21752
21752
  })
21753
21753
  }, wz = me(xB)(({ selection: t, name: e, subject: n, observer: r }) => {
21754
- const i = new Q(), o = [];
21754
+ const i = new J(), o = [];
21755
21755
  return Ne(r).pipe(
21756
21756
  L(i)
21757
21757
  ).subscribe((s) => {
@@ -21759,7 +21759,7 @@ const K$ = "MultiGridLegend", hB = {
21759
21759
  const f = V(c[u]), h = l.dataFormatter$.pipe(
21760
21760
  L(i),
21761
21761
  R((p) => p.separateSeries),
21762
- J(),
21762
+ Q(),
21763
21763
  ht(1)
21764
21764
  );
21765
21765
  o[u] = W$(Mp, {
@@ -21830,7 +21830,7 @@ const K$ = "MultiGridLegend", hB = {
21830
21830
  }
21831
21831
  })
21832
21832
  }, _z = me(vB)(({ selection: t, name: e, subject: n, observer: r }) => {
21833
- const i = new Q(), o = [];
21833
+ const i = new J(), o = [];
21834
21834
  return Ne(r).pipe(
21835
21835
  L(i)
21836
21836
  ).subscribe((s) => {
@@ -21838,7 +21838,7 @@ const K$ = "MultiGridLegend", hB = {
21838
21838
  const f = V(c[u]), h = l.dataFormatter$.pipe(
21839
21839
  L(i),
21840
21840
  R((p) => p.separateSeries),
21841
- J(),
21841
+ Q(),
21842
21842
  ht(1)
21843
21843
  );
21844
21844
  o[u] = Ei(Lp, {
@@ -21887,7 +21887,7 @@ const K$ = "MultiGridLegend", hB = {
21887
21887
  }
21888
21888
  })
21889
21889
  }, Sz = me($B)(({ selection: t, rootSelection: e, name: n, subject: r, observer: i }) => {
21890
- const o = new Q(), a = Bi(Q$, {
21890
+ const o = new J(), a = Bi(Q$, {
21891
21891
  rootSelection: e,
21892
21892
  fullParams$: i.fullParams$,
21893
21893
  fullChartParams$: i.fullChartParams$,
@@ -21948,7 +21948,7 @@ const K$ = "MultiGridLegend", hB = {
21948
21948
  }
21949
21949
  })
21950
21950
  }, Tz = me(wB)(({ selection: t, name: e, subject: n, observer: r }) => {
21951
- const i = new Q(), o = [];
21951
+ const i = new J(), o = [];
21952
21952
  return Ne(r).pipe(
21953
21953
  L(i)
21954
21954
  ).subscribe((s) => {
@@ -21956,7 +21956,7 @@ const K$ = "MultiGridLegend", hB = {
21956
21956
  const f = V(c[u]), h = l.dataFormatter$.pipe(
21957
21957
  L(i),
21958
21958
  R((p) => p.separateSeries),
21959
- J(),
21959
+ Q(),
21960
21960
  ht(1)
21961
21961
  );
21962
21962
  o[u] = Ei(kp, {
@@ -22089,7 +22089,7 @@ const K$ = "MultiGridLegend", hB = {
22089
22089
  return n;
22090
22090
  }
22091
22091
  }, Az = me(_B)(({ selection: t, name: e, subject: n, observer: r }) => {
22092
- const i = new Q(), o = [], a = r.fullParams$.pipe(
22092
+ const i = new J(), o = [], a = r.fullParams$.pipe(
22093
22093
  L(i),
22094
22094
  R((c) => c.gridIndexes[0])
22095
22095
  ), s = r.fullParams$.pipe(
@@ -22290,7 +22290,7 @@ const K$ = "MultiGridLegend", hB = {
22290
22290
  return n;
22291
22291
  }
22292
22292
  }, Pz = me(SB)(({ selection: t, name: e, subject: n, observer: r }) => {
22293
- const i = new Q(), o = [], a = r.fullParams$.pipe(
22293
+ const i = new J(), o = [], a = r.fullParams$.pipe(
22294
22294
  L(i),
22295
22295
  R((c) => c.gridIndexes[0])
22296
22296
  ), s = r.fullParams$.pipe(
@@ -22560,7 +22560,7 @@ const DB = {}, t2 = "MultiValueLegend", CB = {
22560
22560
  }
22561
22561
  })
22562
22562
  }, Dz = yr(CB)(({ selection: t, rootSelection: e, observer: n, subject: r }) => {
22563
- const i = new Q(), o = n.CategoryDataMap$.pipe(
22563
+ const i = new J(), o = n.CategoryDataMap$.pipe(
22564
22564
  L(i),
22565
22565
  R((l) => Array.from(l.keys()))
22566
22566
  ), a = n.fullParams$.pipe(
@@ -22618,7 +22618,7 @@ const DB = {}, t2 = "MultiValueLegend", CB = {
22618
22618
  }
22619
22619
  })
22620
22620
  }, Cz = yr(MB)(({ selection: t, rootSelection: e, name: n, subject: r, observer: i }) => {
22621
- const o = new Q(), a = Bi(e2, {
22621
+ const o = new J(), a = Bi(e2, {
22622
22622
  rootSelection: e,
22623
22623
  fullParams$: i.fullParams$,
22624
22624
  fullChartParams$: i.fullChartParams$,
@@ -22685,11 +22685,11 @@ const DB = {}, t2 = "MultiValueLegend", CB = {
22685
22685
  // 避免過度頻繁觸發,實測時沒加電腦容易卡頓
22686
22686
  ), a = r.pipe(
22687
22687
  R((c) => c.reduce((h, p) => p.columnIndex > h ? p.columnIndex : h, 0) + 1),
22688
- J(),
22688
+ Q(),
22689
22689
  ht(1)
22690
22690
  ), s = r.pipe(
22691
22691
  R((c) => c.reduce((h, p) => p.rowIndex > h ? p.rowIndex : h, 0) + 1),
22692
- J(),
22692
+ Q(),
22693
22693
  ht(1)
22694
22694
  ), l = new pt((c) => {
22695
22695
  Y({
@@ -22809,7 +22809,7 @@ function EB({ defsSelection: t, clipPathData: e }) {
22809
22809
  });
22810
22810
  }
22811
22811
  const Mz = yr(kB)(({ selection: t, name: e, subject: n, observer: r }) => {
22812
- const i = new Q(), o = Se(rn, "clipPath-box"), a = q(rn, "circleG"), s = q(rn, "circle"), {
22812
+ const i = new J(), o = Se(rn, "clipPath-box"), a = q(rn, "circleG"), s = q(rn, "circle"), {
22813
22813
  categorySelection$: l,
22814
22814
  axesSelection$: u,
22815
22815
  defsSelection$: c,
@@ -22867,7 +22867,7 @@ const Mz = yr(kB)(({ selection: t, name: e, subject: n, observer: r }) => {
22867
22867
  ), d = r.fullChartParams$.pipe(
22868
22868
  L(i),
22869
22869
  R((m) => m.highlightTarget),
22870
- J()
22870
+ Q()
22871
22871
  );
22872
22872
  return Y({
22873
22873
  graphicSelection: p,
@@ -23017,7 +23017,7 @@ function OB({ defsSelection: t, clipPathData: e }) {
23017
23017
  });
23018
23018
  }
23019
23019
  const Lz = yr(NB)(({ selection: t, name: e, subject: n, observer: r }) => {
23020
- const i = new Q(), o = Se(on, "clipPath-box"), a = q(on, "circleG"), s = q(on, "circle"), {
23020
+ const i = new J(), o = Se(on, "clipPath-box"), a = q(on, "circleG"), s = q(on, "circle"), {
23021
23021
  categorySelection$: l,
23022
23022
  axesSelection$: u,
23023
23023
  defsSelection$: c,
@@ -23137,7 +23137,7 @@ const Lz = yr(NB)(({ selection: t, name: e, subject: n, observer: r }) => {
23137
23137
  ), A = r.fullChartParams$.pipe(
23138
23138
  L(i),
23139
23139
  R((_) => _.highlightTarget),
23140
- J()
23140
+ Q()
23141
23141
  );
23142
23142
  return Y({
23143
23143
  graphicSelection: w,
@@ -23399,7 +23399,7 @@ function jB(t) {
23399
23399
  t.selectAll(`g.${xf}`).data([]).exit().remove();
23400
23400
  }
23401
23401
  const kz = yr(GB)(({ selection: t, rootSelection: e, name: n, subject: r, observer: i }) => {
23402
- const o = new Q(), a = e.insert("rect", "g").classed(q(sl, "rect"), !0).attr("opacity", 0), {
23402
+ const o = new J(), a = e.insert("rect", "g").classed(q(sl, "rect"), !0).attr("opacity", 0), {
23403
23403
  categorySelection$: s,
23404
23404
  axesSelection$: l,
23405
23405
  defsSelection$: u,
@@ -23428,15 +23428,15 @@ const kz = yr(GB)(({ selection: t, rootSelection: e, name: n, subject: r, observ
23428
23428
  });
23429
23429
  const f = i.multiValueContainerPosition$.pipe(
23430
23430
  R((g) => g.reduce((b, v) => v.columnIndex > b ? v.columnIndex : b, 0) + 1),
23431
- J()
23431
+ Q()
23432
23432
  ), h = i.multiValueContainerPosition$.pipe(
23433
23433
  R((g) => g.reduce((b, v) => v.rowIndex > b ? v.rowIndex : b, 0) + 1),
23434
- J()
23434
+ Q()
23435
23435
  ), p = i.multiValueContainerPosition$.pipe(
23436
23436
  L(o),
23437
23437
  G(async (g) => g),
23438
23438
  R((g) => `${`scale(${1 / g[0].scale[0]}, ${1 / g[0].scale[1]})`}`),
23439
- J()
23439
+ Q()
23440
23440
  ), d = LB({
23441
23441
  rootSelection: e,
23442
23442
  fullDataFormatter$: i.fullDataFormatter$,
@@ -23652,9 +23652,9 @@ function aN({ selection: t, yAxisClassName: e, fullParams: n, layout: r, fullDat
23652
23652
  return h.selectAll("line").style("fill", "none").style("stroke", n.yAxis.tickLineVisible == !0 ? yt(n.yAxis.tickColorType, o) : "none").style("stroke-dasharray", n.yAxis.tickFullLineDasharray).attr("pointer-events", "none"), h.selectAll("path").style("fill", "none").style("stroke", n.yAxis.axisLineVisible == !0 ? yt(n.yAxis.axisLineColorType, o) : "none").style("shape-rendering", "crispEdges"), u.selectAll("text").attr("font-size", o.styles.textSize).style("color", yt(n.yAxis.tickTextColorType, o)).attr("text-anchor", QB).attr("dominant-baseline", JB).attr("x", -c).attr("dy", 0).style("transform", s), u;
23653
23653
  }
23654
23654
  const Rz = yr(nN)(({ selection: t, name: e, observer: n, subject: r }) => {
23655
- const i = new Q(), o = q(Yn, "container"), a = q(Yn, "xAxis"), s = q(Yn, "yAxisG"), l = q(Yn, "yAxis"), u = q(Yn, "xLabel"), c = q(Yn, "yLabel"), f = Y({
23655
+ const i = new J(), o = q(Yn, "container"), a = q(Yn, "xAxis"), s = q(Yn, "yAxisG"), l = q(Yn, "yAxis"), u = q(Yn, "xLabel"), c = q(Yn, "yLabel"), f = Y({
23656
23656
  computedData: n.computedData$.pipe(
23657
- J((g, y) => g.length === y.length)
23657
+ Q((g, y) => g.length === y.length)
23658
23658
  ),
23659
23659
  isCategorySeprate: n.isCategorySeprate$
23660
23660
  }).pipe(
@@ -23682,7 +23682,7 @@ const Rz = yr(nN)(({ selection: t, name: e, observer: n, subject: r }) => {
23682
23682
  L(i),
23683
23683
  G(async (g) => g),
23684
23684
  R((g) => `${`scale(${1 / g[0].scale[0]}, ${1 / g[0].scale[1]})`}`),
23685
- J()
23685
+ Q()
23686
23686
  ), d = new pt((g) => {
23687
23687
  Y({
23688
23688
  fullDataFormatter: n.fullDataFormatter$,
@@ -23802,7 +23802,7 @@ const Rz = yr(nN)(({ selection: t, name: e, observer: n, subject: r }) => {
23802
23802
  expectToBe: ""
23803
23803
  })
23804
23804
  }, Iz = yr(lN)(({ selection: t, rootSelection: e, name: n, observer: r, subject: i }) => {
23805
- const o = new Q();
23805
+ const o = new J();
23806
23806
  let a = {
23807
23807
  k: 1,
23808
23808
  x: 0,
@@ -23999,7 +23999,7 @@ const ca = {
23999
23999
  styleFn: (t) => ""
24000
24000
  },
24001
24001
  arrowLabel: {
24002
- colorType: "secondary",
24002
+ colorType: "primary",
24003
24003
  sizeFixed: !1,
24004
24004
  styleFn: (t) => ""
24005
24005
  },
@@ -24030,8 +24030,8 @@ ca.arrow.styleFn.toString = () => "(node) => ''";
24030
24030
  ca.arrowLabel.styleFn.toString = () => "(node) => ''";
24031
24031
  const fa = {
24032
24032
  bubble: {
24033
- radiusMin: 30,
24034
- radiusMax: 60,
24033
+ radiusMin: 15,
24034
+ radiusMax: 45,
24035
24035
  arcScaleType: "area",
24036
24036
  fillColorType: "label",
24037
24037
  strokeColorType: "label",
@@ -24039,9 +24039,10 @@ const fa = {
24039
24039
  styleFn: (t) => ""
24040
24040
  },
24041
24041
  bubbleLabel: {
24042
- fillRate: 0.8,
24042
+ fillRate: 0.9,
24043
24043
  lineHeight: 1,
24044
- lineLengthMin: 4,
24044
+ maxLineLength: 6,
24045
+ wordBreakAll: !0,
24045
24046
  colorType: "primary",
24046
24047
  styleFn: (t) => ""
24047
24048
  },
@@ -24054,14 +24055,14 @@ const fa = {
24054
24055
  styleFn: (t) => ""
24055
24056
  },
24056
24057
  arrowLabel: {
24057
- colorType: "secondary",
24058
+ colorType: "primary",
24058
24059
  sizeFixed: !1,
24059
24060
  styleFn: (t) => ""
24060
24061
  },
24061
24062
  force: {
24062
24063
  nodeStrength: -500,
24063
24064
  // 泡泡引力
24064
- linkDistance: 200,
24065
+ linkDistance: 130,
24065
24066
  // 連結長度
24066
24067
  velocityDecay: 0.1,
24067
24068
  // 衰減數
@@ -24292,13 +24293,13 @@ function $N(t, e) {
24292
24293
  ).attr("markerWidth", (n) => n.arrow.pointerWidth).attr("markerHeight", (n) => n.arrow.pointerHeight).attr("refX", (n) => (n.dot.radius + e.dot.strokeWidth / 2) / n.arrow.strokeWidth - 1).attr("refY", 0);
24293
24294
  }
24294
24295
  function wN(t, e) {
24295
- function n(o) {
24296
- o.active || t.alphaTarget(0.3).restart(), o.subject.fx = o.subject.x, o.subject.fy = o.subject.y, e.next("start");
24296
+ function n(o, a) {
24297
+ o.active || t.alphaTarget(0.3).restart(), o.subject.fx = o.x, o.subject.fy = o.y, e.next("start");
24297
24298
  }
24298
- function r(o) {
24299
+ function r(o, a) {
24299
24300
  o.subject.fx = o.x, o.subject.fy = o.y, e.next("drag");
24300
24301
  }
24301
- function i(o) {
24302
+ function i(o, a) {
24302
24303
  o.active || t.alphaTarget(0), o.subject.fx = null, o.subject.fy = null, e.next("end");
24303
24304
  }
24304
24305
  return Tl().on("start", n).on("drag", r).on("end", i);
@@ -24372,7 +24373,7 @@ function MN({ edgeLabelGSelection: t, fullParams: e, fullChartParams: n }) {
24372
24373
  }), t.select(`text.${tm}`);
24373
24374
  }
24374
24375
  function LN({ nodeGSelection: t, edgeGSelection: e, highlightIds: n, fullChartParams: r }) {
24375
- if (t.interrupt("highlight"), !n.length) {
24376
+ if (t.interrupt("highlight"), e.interrupt("highlight"), !n.length) {
24376
24377
  t.transition("highlight").style("opacity", 1), e.transition("highlight").style("opacity", 1);
24377
24378
  return;
24378
24379
  }
@@ -24382,9 +24383,9 @@ function LN({ nodeGSelection: t, edgeGSelection: e, highlightIds: n, fullChartPa
24382
24383
  });
24383
24384
  }
24384
24385
  const Bz = ml(mN)(({ selection: t, rootSelection: e, name: n, observer: r, subject: i }) => {
24385
- const o = new Q(), a = t.append("g").classed(fN, !0), s = a.append("defs"), l = a.append("g").classed(hN, !0), u = a.append("g").classed(dN, !0);
24386
+ const o = new J(), a = t.append("g").classed(fN, !0), s = a.append("defs"), l = a.append("g").classed(hN, !0), u = a.append("g").classed(dN, !0);
24386
24387
  let c, f, h, p, d, m, g, y;
24387
- const b = new Df("end"), v = new Q();
24388
+ const b = new Df("end"), v = new J();
24388
24389
  r.fullParams$.pipe(
24389
24390
  L(o),
24390
24391
  R((_) => $N(s, _))
@@ -24462,7 +24463,7 @@ const Bz = ml(mN)(({ selection: t, rootSelection: e, name: n, observer: r, subje
24462
24463
  nodeGSelection: c,
24463
24464
  fullParams: _.fullParams,
24464
24465
  fullChartParams: _.fullChartParams
24465
- }), f.call(wN(_.simulation, b)), h = TN({
24466
+ }), c.call(wN(_.simulation, b)), h = TN({
24466
24467
  nodeGSelection: c,
24467
24468
  fullParams: _.fullParams
24468
24469
  }), p = AN({
@@ -24538,6 +24539,7 @@ const Bz = ml(mN)(({ selection: t, rootSelection: e, name: n, observer: r, subje
24538
24539
  });
24539
24540
  });
24540
24541
  }), b.pipe(
24542
+ Q((_, P) => _ === P),
24541
24543
  // 只有沒有托曳時才執行
24542
24544
  G((_) => Vo(() => _ === "end", v, ul))
24543
24545
  ).subscribe((_) => {
@@ -24632,7 +24634,7 @@ const Bz = ml(mN)(({ selection: t, rootSelection: e, name: n, observer: r, subje
24632
24634
  lineHeight: {
24633
24635
  toBeTypes: ["number"]
24634
24636
  },
24635
- lineLengthMin: {
24637
+ maxLineLength: {
24636
24638
  toBeTypes: ["number"]
24637
24639
  },
24638
24640
  colorType: {
@@ -24759,13 +24761,13 @@ function WN({ defsSelection: t, markerParams: e, markerData: n }) {
24759
24761
  ).attr("id", (r) => r.id).attr("markerWidth", e.pointerWidth).attr("markerHeight", e.pointerHeight).attr("refX", (r) => r.refX).attr("refY", 0);
24760
24762
  }
24761
24763
  function XN(t, e) {
24762
- function n(o) {
24764
+ function n(o, a) {
24763
24765
  o.active || t.alphaTarget(0.3).restart(), o.subject.fx = o.subject.x, o.subject.fy = o.subject.y, e.next("start");
24764
24766
  }
24765
- function r(o) {
24767
+ function r(o, a) {
24766
24768
  o.subject.fx = o.x, o.subject.fy = o.y, e.next("drag");
24767
24769
  }
24768
- function i(o) {
24770
+ function i(o, a) {
24769
24771
  o.active || t.alphaTarget(0), o.subject.fx = null, o.subject.fy = null, e.next("end");
24770
24772
  }
24771
24773
  return Tl().on("start", n).on("drag", r).on("end", i);
@@ -24785,13 +24787,11 @@ function HN({ nodeGSelection: t, fullParams: e, fullChartParams: n }) {
24785
24787
  (s) => s.remove()
24786
24788
  ).attr("r", (s) => s.r).attr("fill", (s) => Dt({ datum: s, colorType: e.bubble.fillColorType, fullChartParams: n })).attr("stroke", (s) => Dt({ datum: s, colorType: e.bubble.strokeColorType, fullChartParams: n })).attr("stroke-width", e.bubble.strokeWidth).attr("style", (s) => e.bubble.styleFn(s));
24787
24789
  }).attr("text-anchor", "middle").attr("font-size", im).each((r, i, o) => {
24788
- const a = V(o[i]);
24789
- let s = !0;
24790
- r.label.length <= e.bubbleLabel.lineLengthMin && (s = !1), a.call(G$, {
24790
+ V(o[i]).call(G$, {
24791
24791
  text: r.label,
24792
24792
  radius: r.r * e.bubbleLabel.fillRate,
24793
24793
  lineHeight: im * e.bubbleLabel.lineHeight,
24794
- isBreakAll: s
24794
+ isBreakAll: r.label.length <= e.bubbleLabel.maxLineLength ? !1 : e.bubbleLabel.wordBreakAll
24795
24795
  });
24796
24796
  }), t.select("text").attr("pointer-events", "none").attr("style", (r) => e.bubbleLabel.styleFn(r)), t.select(`circle.${um}`);
24797
24797
  }
@@ -24830,7 +24830,7 @@ function ZN({ edgeLabelGSelection: t, fullParams: e, fullChartParams: n }) {
24830
24830
  }), t.select(`text.${lm}`);
24831
24831
  }
24832
24832
  function KN({ nodeGSelection: t, edgeGSelection: e, highlightIds: n, fullChartParams: r }) {
24833
- if (t.interrupt("highlight"), !n.length) {
24833
+ if (t.interrupt("highlight"), e.interrupt("highlight"), !n.length) {
24834
24834
  t.transition("highlight").style("opacity", 1), e.transition("highlight").style("opacity", 1);
24835
24835
  return;
24836
24836
  }
@@ -24840,9 +24840,9 @@ function KN({ nodeGSelection: t, edgeGSelection: e, highlightIds: n, fullChartPa
24840
24840
  });
24841
24841
  }
24842
24842
  const Nz = ml(FN)(({ selection: t, rootSelection: e, name: n, observer: r, subject: i }) => {
24843
- const o = new Q(), a = t.append("g").classed(kN, !0), s = a.append("defs"), l = a.append("g").classed(IN, !0), u = a.append("g").classed(BN, !0);
24843
+ const o = new J(), a = t.append("g").classed(kN, !0), s = a.append("defs"), l = a.append("g").classed(IN, !0), u = a.append("g").classed(BN, !0);
24844
24844
  let c, f, h, p, d, m;
24845
- const g = new Df("end"), y = new Q(), b = r.fullParams$.pipe(
24845
+ const g = new Df("end"), y = new J(), b = r.fullParams$.pipe(
24846
24846
  L(o),
24847
24847
  // map(d => d.scaleExtent),
24848
24848
  // distinctUntilChanged((a, b) => String(a) === String(b)),
@@ -25030,7 +25030,7 @@ const Nz = ml(FN)(({ selection: t, rootSelection: e, name: n, observer: r, subje
25030
25030
  nodeGSelection: c,
25031
25031
  fullParams: S.fullParams,
25032
25032
  fullChartParams: S.fullChartParams
25033
- }), f.call(XN(S.simulation, g)), h = jN({
25033
+ }), c.call(XN(S.simulation, g)), h = jN({
25034
25034
  edgeListGSelection: l,
25035
25035
  edges: S.renderData.edges
25036
25036
  }), p = UN({
@@ -25099,6 +25099,7 @@ const Nz = ml(FN)(({ selection: t, rootSelection: e, name: n, observer: r, subje
25099
25099
  });
25100
25100
  });
25101
25101
  }), g.pipe(
25102
+ Q((S, D) => S === D),
25102
25103
  // 只有沒有托曳時才執行
25103
25104
  G((S) => Vo(() => S === "end", y, ul))
25104
25105
  ).subscribe((S) => {
@@ -25174,7 +25175,7 @@ const Nz = ml(FN)(({ selection: t, rootSelection: e, name: n, observer: r, subje
25174
25175
  }
25175
25176
  })
25176
25177
  }, Fz = ml(QN)(({ selection: t, rootSelection: e, observer: n, subject: r }) => {
25177
- const i = new Q(), o = n.fullParams$.pipe(
25178
+ const i = new J(), o = n.fullParams$.pipe(
25178
25179
  L(i),
25179
25180
  R((s) => {
25180
25181
  const l = [
@@ -25229,7 +25230,7 @@ const Nz = ml(FN)(({ selection: t, rootSelection: e, name: n, observer: r, subje
25229
25230
  }
25230
25231
  })
25231
25232
  }, zz = ml(JN)(({ selection: t, rootSelection: e, name: n, subject: r, observer: i }) => {
25232
- const o = new Q(), a = Bi(a2, {
25233
+ const o = new J(), a = Bi(a2, {
25233
25234
  rootSelection: e,
25234
25235
  fullParams$: i.fullParams$,
25235
25236
  fullChartParams$: i.fullChartParams$,
@@ -25251,7 +25252,8 @@ const Nz = ml(FN)(({ selection: t, rootSelection: e, name: n, observer: r, subje
25251
25252
  bubbleLabel: {
25252
25253
  fillRate: 0.6,
25253
25254
  lineHeight: 1,
25254
- lineLengthMin: 4
25255
+ maxLineLength: 6,
25256
+ wordBreakAll: !0
25255
25257
  },
25256
25258
  // highlightRIncrease: 0,
25257
25259
  arcScaleType: "area"
@@ -25445,7 +25447,7 @@ const iF = "Bubbles", cm = 12, oF = {
25445
25447
  lineHeight: {
25446
25448
  toBeTypes: ["number"]
25447
25449
  },
25448
- lineLengthMin: {
25450
+ maxLineLength: {
25449
25451
  toBeTypes: ["number"]
25450
25452
  }
25451
25453
  });
@@ -25495,13 +25497,12 @@ function lF({ selection: t, bubblesData: e, fullParams: n, sumSeries: r }) {
25495
25497
  (a) => a.remove()
25496
25498
  ).attr("transform", (a) => `translate(${a.x},${a.y})`), o = r ? "seriesLabel" : "label";
25497
25499
  return i.select("circle").transition().duration(200).attr("r", (a) => a.r).attr("fill", (a) => a.color), i.each((a, s, l) => {
25498
- const u = V(l[s]);
25499
- let c = !0;
25500
- a[o].length <= n.bubbleLabel.lineLengthMin && (c = !1), u.call(G$, {
25501
- text: a[o],
25500
+ const u = V(l[s]), c = a[o] ?? "";
25501
+ u.call(G$, {
25502
+ text: c,
25502
25503
  radius: a.r * n.bubbleLabel.fillRate,
25503
25504
  lineHeight: cm * n.bubbleLabel.lineHeight,
25504
- isBreakAll: c
25505
+ isBreakAll: c.length <= n.bubbleLabel.maxLineLength ? !1 : n.bubbleLabel.wordBreakAll
25505
25506
  });
25506
25507
  }), i;
25507
25508
  }
@@ -25528,15 +25529,15 @@ function fF({ bubblesSelection: t, highlightIds: e, fullChartParams: n }) {
25528
25529
  });
25529
25530
  }
25530
25531
  const Oz = Rn(oF)(({ selection: t, name: e, observer: n, subject: r }) => {
25531
- const i = new Q();
25532
+ const i = new J();
25532
25533
  let o = /* @__PURE__ */ new Map();
25533
25534
  const a = n.fullDataFormatter$.pipe(
25534
25535
  R((f) => f.sumSeries),
25535
- J()
25536
+ Q()
25536
25537
  ), s = n.fullParams$.pipe(
25537
25538
  L(i),
25538
25539
  R((f) => f.arcScaleType),
25539
- J()
25540
+ Q()
25540
25541
  ), l = Y({
25541
25542
  layout: n.layout$,
25542
25543
  SeriesContainerPositionMap: n.SeriesContainerPositionMap$,
@@ -25561,7 +25562,7 @@ const Oz = Rn(oF)(({ selection: t, name: e, observer: n, subject: r }) => {
25561
25562
  const u = n.fullChartParams$.pipe(
25562
25563
  L(i),
25563
25564
  R((f) => f.highlightTarget),
25564
- J()
25565
+ Q()
25565
25566
  ), c = Y({
25566
25567
  bubblesData: l,
25567
25568
  fullParams: n.fullParams$,
@@ -25704,7 +25705,7 @@ const ha = ({ selection: t, pluginName: e, separateSeries$: n, seriesLabels$: r,
25704
25705
  }).pipe(
25705
25706
  G(async (a) => a),
25706
25707
  // selection數量相同的時候才執行
25707
- J((a, s) => a.seriesContainerPosition.length === s.seriesContainerPosition.length)
25708
+ Q((a, s) => a.seriesContainerPosition.length === s.seriesContainerPosition.length)
25708
25709
  ).subscribe((a) => {
25709
25710
  a.seriesCenterSelection.attr("transform", (s, l) => {
25710
25711
  const u = a.seriesContainerPosition[l] ?? a.seriesContainerPosition[0];
@@ -25809,12 +25810,12 @@ function gF({ pathSelection: t, ids: e, fullChartParams: n, arc: r, arcHighlight
25809
25810
  });
25810
25811
  }
25811
25812
  function mF(t, e) {
25812
- const n = new Q(), r = q(t, "path");
25813
+ const n = new J(), r = q(t, "path");
25813
25814
  let i = [], o = [];
25814
25815
  const a = e.seriesContainerPosition$.pipe(
25815
25816
  L(n),
25816
25817
  R((h) => h.width < h.height ? h.width : h.height),
25817
- J()
25818
+ Q()
25818
25819
  ), s = new pt((h) => {
25819
25820
  Y({
25820
25821
  containerVisibleComputedLayoutData: e.containerVisibleComputedLayoutData$,
@@ -25868,7 +25869,7 @@ function mF(t, e) {
25868
25869
  }), c = e.fullChartParams$.pipe(
25869
25870
  L(n),
25870
25871
  R((h) => h.highlightTarget),
25871
- J()
25872
+ Q()
25872
25873
  ), f = new pt((h) => {
25873
25874
  Y({
25874
25875
  pieData: s,
@@ -26016,7 +26017,7 @@ function mF(t, e) {
26016
26017
  };
26017
26018
  }
26018
26019
  const Gz = Rn(pF)(({ selection: t, name: e, subject: n, observer: r }) => {
26019
- const i = new Q(), { seriesCenterSelection$: o } = ha({
26020
+ const i = new J(), { seriesCenterSelection$: o } = ha({
26020
26021
  selection: t,
26021
26022
  pluginName: vf,
26022
26023
  separateSeries$: r.separateSeries$,
@@ -26085,12 +26086,12 @@ function ic({ eventData: t, renderFn: e, textAttrs: n, textStyles: r }) {
26085
26086
  }));
26086
26087
  }
26087
26088
  function bF(t, e) {
26088
- const n = new Q();
26089
+ const n = new J();
26089
26090
  let r;
26090
26091
  const i = e.fullChartParams$.pipe(
26091
26092
  L(n),
26092
26093
  R((o) => o.highlightTarget),
26093
- J()
26094
+ Q()
26094
26095
  );
26095
26096
  return Y({
26096
26097
  computedData: e.computedData$,
@@ -26160,7 +26161,7 @@ function bF(t, e) {
26160
26161
  };
26161
26162
  }
26162
26163
  const Yz = Rn(yF)(({ selection: t, name: e, observer: n, subject: r }) => {
26163
- const i = new Q(), { seriesCenterSelection$: o } = ha({
26164
+ const i = new J(), { seriesCenterSelection$: o } = ha({
26164
26165
  selection: t,
26165
26166
  pluginName: ll,
26166
26167
  separateSeries$: n.separateSeries$,
@@ -26325,18 +26326,18 @@ function PF({ textSelection: t, lineSelection: e, ids: n, fullChartParams: r })
26325
26326
  });
26326
26327
  }
26327
26328
  function DF(t, e) {
26328
- const n = new Q();
26329
+ const n = new J();
26329
26330
  e.containerSelection.selectAll("g").remove();
26330
26331
  const r = e.containerSelection.append("g");
26331
26332
  r.classed(vF, !0);
26332
26333
  const i = e.containerSelection.append("g");
26333
26334
  i.classed(xF, !0);
26334
- const o = new Q(), a = new Q();
26335
+ const o = new J(), a = new J();
26335
26336
  let s = [];
26336
26337
  const l = e.seriesContainerPosition$.pipe(
26337
26338
  L(n),
26338
26339
  R((c) => c.width < c.height ? c.width : c.height),
26339
- J()
26340
+ Q()
26340
26341
  ), u = e.fullParams$.pipe(
26341
26342
  L(n),
26342
26343
  R((c) => c.labelCentroid >= pm ? pm : c.labelCentroid)
@@ -26412,7 +26413,7 @@ function DF(t, e) {
26412
26413
  };
26413
26414
  }
26414
26415
  const Wz = Rn(wF)(({ selection: t, observer: e, subject: n }) => {
26415
- const r = new Q(), { seriesCenterSelection$: i } = ha({
26416
+ const r = new J(), { seriesCenterSelection$: i } = ha({
26416
26417
  selection: t,
26417
26418
  pluginName: wi,
26418
26419
  separateSeries$: e.separateSeries$,
@@ -26500,12 +26501,12 @@ function kF({ pathSelection: t, ids: e, fullParams: n, fullChartParams: r, tween
26500
26501
  });
26501
26502
  }
26502
26503
  function RF(t, e) {
26503
- const n = new Q(), r = q(t, "path");
26504
+ const n = new J(), r = q(t, "path");
26504
26505
  let i = [];
26505
26506
  const o = e.seriesContainerPosition$.pipe(
26506
26507
  L(n),
26507
26508
  R((p) => p.width < p.height ? p.width : p.height),
26508
- J()
26509
+ Q()
26509
26510
  ), a = Y({
26510
26511
  containerVisibleComputedLayoutData: e.containerVisibleComputedLayoutData$,
26511
26512
  fullParams: e.fullParams$
@@ -26528,10 +26529,10 @@ function RF(t, e) {
26528
26529
  ), s = e.fullChartParams$.pipe(
26529
26530
  L(n),
26530
26531
  R((p) => p.highlightTarget),
26531
- J()
26532
+ Q()
26532
26533
  ), l = e.visibleComputedLayoutData$.pipe(
26533
26534
  R((p) => Math.max(...p.flat().map((d) => d.value))),
26534
- J()
26535
+ Q()
26535
26536
  ), u = Y({
26536
26537
  fullParams: e.fullParams$,
26537
26538
  axisWidth: o,
@@ -26550,7 +26551,7 @@ function RF(t, e) {
26550
26551
  ), c = e.fullChartParams$.pipe(
26551
26552
  L(n),
26552
26553
  R((p) => p.transitionDuration),
26553
- J()
26554
+ Q()
26554
26555
  ), f = new Df(!1), h = new pt((p) => {
26555
26556
  Y({
26556
26557
  pieData: a,
@@ -26667,7 +26668,7 @@ function RF(t, e) {
26667
26668
  };
26668
26669
  }
26669
26670
  const Xz = Rn(MF)(({ selection: t, name: e, subject: n, observer: r }) => {
26670
- const i = new Q(), { seriesCenterSelection$: o } = ha({
26671
+ const i = new J(), { seriesCenterSelection$: o } = ha({
26671
26672
  selection: t,
26672
26673
  pluginName: wf,
26673
26674
  separateSeries$: r.separateSeries$,
@@ -26830,21 +26831,21 @@ function YF({ textSelection: t, lineSelection: e, ids: n, fullChartParams: r })
26830
26831
  });
26831
26832
  }
26832
26833
  function WF(t, e) {
26833
- const n = new Q();
26834
+ const n = new J();
26834
26835
  e.containerSelection.selectAll("g").remove();
26835
26836
  const r = e.containerSelection.append("g");
26836
26837
  r.classed(EF, !0);
26837
26838
  const i = e.containerSelection.append("g");
26838
26839
  i.classed(IF, !0);
26839
- const o = new Q(), a = new Q();
26840
+ const o = new J(), a = new J();
26840
26841
  let s = [];
26841
26842
  const l = e.seriesContainerPosition$.pipe(
26842
26843
  L(n),
26843
26844
  R((f) => f.width < f.height ? f.width : f.height),
26844
- J()
26845
+ Q()
26845
26846
  ), u = e.visibleComputedLayoutData$.pipe(
26846
26847
  R((f) => Math.max(...f.flat().map((h) => h.value))),
26847
- J()
26848
+ Q()
26848
26849
  ), c = e.fullParams$.pipe(
26849
26850
  L(n),
26850
26851
  R((f) => f.labelCentroid >= dm ? dm : f.labelCentroid)
@@ -26916,7 +26917,7 @@ function WF(t, e) {
26916
26917
  };
26917
26918
  }
26918
26919
  const Vz = Rn(NF)(({ selection: t, observer: e, subject: n }) => {
26919
- const r = new Q(), { seriesCenterSelection$: i } = ha({
26920
+ const r = new J(), { seriesCenterSelection$: i } = ha({
26920
26921
  selection: t,
26921
26922
  pluginName: _i,
26922
26923
  separateSeries$: e.separateSeries$,
@@ -26999,7 +27000,7 @@ const Vz = Rn(NF)(({ selection: t, observer: e, subject: n }) => {
26999
27000
  }
27000
27001
  })
27001
27002
  }, Hz = Rn(XF)(({ selection: t, rootSelection: e, observer: n, subject: r }) => {
27002
- const i = new Q(), o = n.SeriesDataMap$.pipe(
27003
+ const i = new J(), o = n.SeriesDataMap$.pipe(
27003
27004
  L(i),
27004
27005
  R((l) => Array.from(l.keys()))
27005
27006
  ), a = n.fullParams$.pipe(
@@ -27057,7 +27058,7 @@ const Vz = Rn(NF)(({ selection: t, observer: e, subject: n }) => {
27057
27058
  }
27058
27059
  })
27059
27060
  }, jz = Rn(VF)(({ selection: t, rootSelection: e, name: n, subject: r, observer: i }) => {
27060
- const o = new Q(), a = Bi(p2, {
27061
+ const o = new J(), a = Bi(p2, {
27061
27062
  rootSelection: e,
27062
27063
  fullParams$: i.fullParams$,
27063
27064
  fullChartParams$: i.fullChartParams$,
@@ -27157,7 +27158,7 @@ const m2 = "TreeLegend", jF = {
27157
27158
  }
27158
27159
  })
27159
27160
  }, Uz = Uf(jF)(({ selection: t, rootSelection: e, observer: n, subject: r }) => {
27160
- const i = new Q(), o = n.fullParams$.pipe(
27161
+ const i = new J(), o = n.fullParams$.pipe(
27161
27162
  L(i),
27162
27163
  R((s) => {
27163
27164
  const l = [
@@ -27231,7 +27232,7 @@ function ZF({ selection: t, ids: e, fullChartParams: n }) {
27231
27232
  });
27232
27233
  }
27233
27234
  const qz = Uf(UF)(({ selection: t, name: e, subject: n, observer: r }) => {
27234
- const i = new Q(), o = Y({
27235
+ const i = new J(), o = Y({
27235
27236
  layout: r.layout$,
27236
27237
  visibleComputedData: r.visibleComputedData$,
27237
27238
  fullParams: r.fullParams$,
@@ -27263,7 +27264,7 @@ const qz = Uf(UF)(({ selection: t, name: e, subject: n, observer: r }) => {
27263
27264
  ), s = r.fullChartParams$.pipe(
27264
27265
  L(i),
27265
27266
  R((l) => l.highlightTarget),
27266
- J()
27267
+ Q()
27267
27268
  );
27268
27269
  return Y({
27269
27270
  cellSelection: a,
@@ -27377,7 +27378,7 @@ const qz = Uf(UF)(({ selection: t, name: e, subject: n, observer: r }) => {
27377
27378
  }
27378
27379
  })
27379
27380
  }, Zz = Uf(KF)(({ selection: t, rootSelection: e, name: n, subject: r, observer: i }) => {
27380
- const o = new Q(), a = Bi(y2, {
27381
+ const o = new J(), a = Bi(y2, {
27381
27382
  rootSelection: e,
27382
27383
  fullParams$: i.fullParams$,
27383
27384
  fullChartParams$: i.fullChartParams$,