@semcore/d3-chart 17.2.0 → 17.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/lib/cjs/Area.js +11 -11
- package/lib/cjs/Axis.js +16 -16
- package/lib/cjs/Bar.js +16 -16
- package/lib/cjs/Bubble.js +14 -14
- package/lib/cjs/CompactHorizontalBar.js +16 -16
- package/lib/cjs/Donut.js +9 -9
- package/lib/cjs/Dots.js +8 -8
- package/lib/cjs/HorizontalBar.js +16 -16
- package/lib/cjs/Hover.js +3 -3
- package/lib/cjs/Line.js +9 -9
- package/lib/cjs/Plot.js +2 -2
- package/lib/cjs/Radar.js +20 -20
- package/lib/cjs/Radar.js.map +1 -1
- package/lib/cjs/RadialTree.js +12 -12
- package/lib/cjs/Reference.js +12 -12
- package/lib/cjs/ScatterPlot.js +9 -9
- package/lib/cjs/Tooltip.js +9 -9
- package/lib/cjs/Venn.js +9 -9
- package/lib/cjs/a11y/PlotA11yModule.js +2 -2
- package/lib/cjs/a11y/PlotA11yView.js +2 -2
- package/lib/cjs/a11y/serialize.js +6 -1
- package/lib/cjs/a11y/serialize.js.map +1 -1
- package/lib/cjs/component/Chart/AbstractChart.js +85 -11
- package/lib/cjs/component/Chart/AbstractChart.js.map +1 -1
- package/lib/cjs/component/Chart/AbstractChart.type.js.map +1 -1
- package/lib/cjs/component/Chart/AreaChart.js +6 -2
- package/lib/cjs/component/Chart/AreaChart.js.map +1 -1
- package/lib/cjs/component/Chart/BarChart.js +8 -4
- package/lib/cjs/component/Chart/BarChart.js.map +1 -1
- package/lib/cjs/component/Chart/BubbleChart.js +6 -2
- package/lib/cjs/component/Chart/BubbleChart.js.map +1 -1
- package/lib/cjs/component/Chart/CigaretteChart.js +22 -12
- package/lib/cjs/component/Chart/CigaretteChart.js.map +1 -1
- package/lib/cjs/component/Chart/CompactHorizontalBarChart.js +7 -3
- package/lib/cjs/component/Chart/CompactHorizontalBarChart.js.map +1 -1
- package/lib/cjs/component/Chart/HistogramChart.js +8 -4
- package/lib/cjs/component/Chart/HistogramChart.js.map +1 -1
- package/lib/cjs/component/Chart/LineChart.js +7 -3
- package/lib/cjs/component/Chart/LineChart.js.map +1 -1
- package/lib/cjs/component/Chart/ScatterPlotChart.js +6 -2
- package/lib/cjs/component/Chart/ScatterPlotChart.js.map +1 -1
- package/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
- package/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +17 -17
- package/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +6 -6
- package/lib/cjs/style/abstract-chart.shadow.css +7 -0
- package/lib/es6/Area.js +11 -11
- package/lib/es6/Axis.js +16 -16
- package/lib/es6/Bar.js +16 -16
- package/lib/es6/Bubble.js +14 -14
- package/lib/es6/CompactHorizontalBar.js +16 -16
- package/lib/es6/Donut.js +9 -9
- package/lib/es6/Dots.js +8 -8
- package/lib/es6/HorizontalBar.js +16 -16
- package/lib/es6/Hover.js +3 -3
- package/lib/es6/Line.js +9 -9
- package/lib/es6/Plot.js +2 -2
- package/lib/es6/Radar.js +20 -20
- package/lib/es6/Radar.js.map +1 -1
- package/lib/es6/RadialTree.js +12 -12
- package/lib/es6/Reference.js +12 -12
- package/lib/es6/ScatterPlot.js +9 -9
- package/lib/es6/Tooltip.js +9 -9
- package/lib/es6/Venn.js +9 -9
- package/lib/es6/a11y/PlotA11yModule.js +2 -2
- package/lib/es6/a11y/PlotA11yView.js +2 -2
- package/lib/es6/a11y/serialize.js +6 -1
- package/lib/es6/a11y/serialize.js.map +1 -1
- package/lib/es6/component/Chart/AbstractChart.js +85 -11
- package/lib/es6/component/Chart/AbstractChart.js.map +1 -1
- package/lib/es6/component/Chart/AbstractChart.type.js.map +1 -1
- package/lib/es6/component/Chart/AreaChart.js +6 -2
- package/lib/es6/component/Chart/AreaChart.js.map +1 -1
- package/lib/es6/component/Chart/BarChart.js +8 -4
- package/lib/es6/component/Chart/BarChart.js.map +1 -1
- package/lib/es6/component/Chart/BubbleChart.js +6 -2
- package/lib/es6/component/Chart/BubbleChart.js.map +1 -1
- package/lib/es6/component/Chart/CigaretteChart.js +22 -12
- package/lib/es6/component/Chart/CigaretteChart.js.map +1 -1
- package/lib/es6/component/Chart/CompactHorizontalBarChart.js +7 -3
- package/lib/es6/component/Chart/CompactHorizontalBarChart.js.map +1 -1
- package/lib/es6/component/Chart/HistogramChart.js +8 -4
- package/lib/es6/component/Chart/HistogramChart.js.map +1 -1
- package/lib/es6/component/Chart/LineChart.js +7 -3
- package/lib/es6/component/Chart/LineChart.js.map +1 -1
- package/lib/es6/component/Chart/ScatterPlotChart.js +6 -2
- package/lib/es6/component/Chart/ScatterPlotChart.js.map +1 -1
- package/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
- package/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +17 -17
- package/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +6 -6
- package/lib/es6/style/abstract-chart.shadow.css +7 -0
- package/lib/esm/Area.mjs +12 -12
- package/lib/esm/Axis.mjs +17 -17
- package/lib/esm/Bar.mjs +17 -17
- package/lib/esm/Bubble.mjs +15 -15
- package/lib/esm/CompactHorizontalBar.mjs +17 -17
- package/lib/esm/Donut.mjs +10 -10
- package/lib/esm/Dots.mjs +9 -9
- package/lib/esm/HorizontalBar.mjs +17 -17
- package/lib/esm/Hover.mjs +4 -4
- package/lib/esm/Line.mjs +10 -10
- package/lib/esm/Plot.mjs +3 -3
- package/lib/esm/Radar.mjs +21 -21
- package/lib/esm/RadialTree.mjs +13 -13
- package/lib/esm/Reference.mjs +13 -13
- package/lib/esm/ScatterPlot.mjs +10 -10
- package/lib/esm/Tooltip.mjs +10 -10
- package/lib/esm/Venn.mjs +10 -10
- package/lib/esm/a11y/PlotA11yModule.mjs +3 -3
- package/lib/esm/a11y/PlotA11yView.mjs +3 -3
- package/lib/esm/a11y/serialize.mjs +6 -1
- package/lib/esm/component/Chart/AbstractChart.mjs +86 -12
- package/lib/esm/component/Chart/AreaChart.mjs +6 -2
- package/lib/esm/component/Chart/BarChart.mjs +8 -4
- package/lib/esm/component/Chart/BubbleChart.mjs +6 -2
- package/lib/esm/component/Chart/CigaretteChart.mjs +22 -12
- package/lib/esm/component/Chart/CompactHorizontalBarChart.mjs +7 -3
- package/lib/esm/component/Chart/HistogramChart.mjs +8 -4
- package/lib/esm/component/Chart/LineChart.mjs +7 -3
- package/lib/esm/component/Chart/ScatterPlotChart.mjs +6 -2
- package/lib/esm/component/ChartLegend/LegendFlex/LegendFlex.mjs +5 -5
- package/lib/esm/component/ChartLegend/LegendItem/LegendItem.mjs +18 -18
- package/lib/esm/component/ChartLegend/LegendTable/LegendTable.mjs +7 -7
- package/lib/esm/style/abstract-chart.shadow.css +7 -0
- package/lib/types/component/Chart/AbstractChart.d.ts +14 -0
- package/lib/types/component/Chart/AbstractChart.type.d.ts +11 -2
- package/package.json +15 -15
- package/vitest.config.mts +17 -0
package/lib/esm/Area.mjs
CHANGED
|
@@ -16,21 +16,21 @@ const style = (
|
|
|
16
16
|
/*__reshadow_css_start__*/
|
|
17
17
|
(sstyled.insert(
|
|
18
18
|
/*__inner_css_start__*/
|
|
19
|
-
".
|
|
19
|
+
".___SArea_lyg97_gg_{fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));fill-opacity:.2}.___SArea_lyg97_gg_.__color_lyg97_gg_{fill:var(--color_lyg97)}.___SArea_lyg97_gg_.__pattern_lyg97_gg_{fill:var(--pattern_lyg97);fill-opacity:.7}.___SArea_lyg97_gg_.__transparent_lyg97_gg_{opacity:.3}.___SAreaLine_lyg97_gg_{stroke:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));stroke-width:3;fill:#0000}.___SAreaLine_lyg97_gg_.__color_lyg97_gg_{stroke:var(--color_lyg97)}.___SAreaLine_lyg97_gg_.__transparent_lyg97_gg_{opacity:.3}.___SAreaLine_lyg97_gg_,.___SArea_lyg97_gg_{transition-property:d;transition-duration:var(--duration_lyg97);transition-timing-function:ease-in-out}.___SNull_lyg97_gg_{fill:#0000;stroke:var(--intergalactic-chart-grid-x-axis,oklch(.88 .002 175.6));stroke-dasharray:4}.___SNull_lyg97_gg_.__hide_lyg97_gg_{display:none}",
|
|
20
20
|
/*__inner_css_end__*/
|
|
21
|
-
"
|
|
21
|
+
"lyg97_gg_"
|
|
22
22
|
), /*__reshadow_css_end__*/
|
|
23
23
|
{
|
|
24
|
-
"__SArea": "
|
|
25
|
-
"_color": "
|
|
26
|
-
"--color": "--
|
|
27
|
-
"_pattern": "
|
|
28
|
-
"--pattern": "--
|
|
29
|
-
"_transparent": "
|
|
30
|
-
"__SAreaLine": "
|
|
31
|
-
"--duration": "--
|
|
32
|
-
"__SNull": "
|
|
33
|
-
"_hide": "
|
|
24
|
+
"__SArea": "___SArea_lyg97_gg_",
|
|
25
|
+
"_color": "__color_lyg97_gg_",
|
|
26
|
+
"--color": "--color_lyg97",
|
|
27
|
+
"_pattern": "__pattern_lyg97_gg_",
|
|
28
|
+
"--pattern": "--pattern_lyg97",
|
|
29
|
+
"_transparent": "__transparent_lyg97_gg_",
|
|
30
|
+
"__SAreaLine": "___SAreaLine_lyg97_gg_",
|
|
31
|
+
"--duration": "--duration_lyg97",
|
|
32
|
+
"__SNull": "___SNull_lyg97_gg_",
|
|
33
|
+
"_hide": "__hide_lyg97_gg_"
|
|
34
34
|
})
|
|
35
35
|
);
|
|
36
36
|
class AreaRoot extends Component {
|
package/lib/esm/Axis.mjs
CHANGED
|
@@ -9,26 +9,26 @@ const style = (
|
|
|
9
9
|
/*__reshadow_css_start__*/
|
|
10
10
|
(sstyled.insert(
|
|
11
11
|
/*__inner_css_start__*/
|
|
12
|
-
".
|
|
12
|
+
".___SAxis_ba1eh_gg_{stroke:var(--intergalactic-chart-grid-x-axis,oklch(.88 .002 175.6))}.___SAxis_ba1eh_gg_.__hide_ba1eh_gg_{display:none}.___STick_ba1eh_gg_{font-size:var(--intergalactic-fs-100,12px);fill:var(--intergalactic-chart-grid-text-label,#00030095)}@media (color-gamut:p3){.___STick_ba1eh_gg_{fill:var(--intergalactic-chart-grid-text-label,oklch(.088 .026 147.7/.583))}}.___STick_ba1eh_gg_.__primaryText_ba1eh_gg_{fill:var(--intergalactic-text-primary,oklch(.1 .03 137/.899))}.___STick_ba1eh_gg_.__hide_ba1eh_gg_{display:none}.___SGrid_ba1eh_gg_{fill:#0000;stroke:var(--intergalactic-border-secondary,#00151012)}@media (color-gamut:p3){.___SGrid_ba1eh_gg_{stroke:var(--intergalactic-border-secondary,oklch(.176 .033 175.7/.07))}}.___STitle_ba1eh_gg_{font-size:var(--intergalactic-fs-100,12px);fill:var(--intergalactic-text-hint,#00030095);transform-origin:var(--transform-origin_ba1eh)}@media (color-gamut:p3){.___STitle_ba1eh_gg_{fill:var(--intergalactic-text-hint,oklch(.088 .026 147.7/.583))}}.___STitle_ba1eh_gg_._position_top_ba1eh_gg_{text-anchor:middle}.___STitle_ba1eh_gg_._position_bottom_ba1eh_gg_{text-anchor:middle;dominant-baseline:hanging}.___STitle_ba1eh_gg_._position_left_ba1eh_gg_,.___STitle_ba1eh_gg_._position_right_ba1eh_gg_{transform:rotate(-90deg);dominant-baseline:middle;text-anchor:middle}.___STitle_ba1eh_gg_._position_left_ba1eh_gg_.__verticalWritingMode_ba1eh_gg_,.___STitle_ba1eh_gg_._position_right_ba1eh_gg_.__verticalWritingMode_ba1eh_gg_{writing-mode:vertical-rl;transform:none}.___STick_ba1eh_gg_._position_top_ba1eh_gg_{transform:translateY(-12px);text-anchor:middle}.___STick_ba1eh_gg_._position_bottom_ba1eh_gg_{transform:translateY(12px);text-anchor:middle;dominant-baseline:hanging}.___STick_ba1eh_gg_._position_bottom_ba1eh_gg_ tspan{dominant-baseline:hanging}.___STick_ba1eh_gg_._position_right_ba1eh_gg_{transform:translateX(16px);dominant-baseline:middle}.___STick_ba1eh_gg_._position_right_ba1eh_gg_ tspan{dominant-baseline:middle}.___STick_ba1eh_gg_._position_right_ba1eh_gg_.__multiline_ba1eh_gg_,.___STick_ba1eh_gg_._position_right_ba1eh_gg_.__multiline_ba1eh_gg_ tspan{dominant-baseline:auto}.___STick_ba1eh_gg_._position_left_ba1eh_gg_{transform:translateX(-16px);text-anchor:end;dominant-baseline:middle}.___STick_ba1eh_gg_._position_left_ba1eh_gg_ tspan{dominant-baseline:middle}.___STick_ba1eh_gg_._position_left_ba1eh_gg_.__multiline_ba1eh_gg_,.___STick_ba1eh_gg_._position_left_ba1eh_gg_.__multiline_ba1eh_gg_ tspan{dominant-baseline:auto}.___STick_ba1eh_gg_._position_custom_0_ba1eh_gg_{transform:translateY(12px);text-anchor:middle;dominant-baseline:hanging}.___STick_ba1eh_gg_._position_custom_0_ba1eh_gg_ tspan{dominant-baseline:hanging}.___STick_ba1eh_gg_._position_custom_1_ba1eh_gg_{transform:translateX(-16px);text-anchor:end;dominant-baseline:middle}.___STick_ba1eh_gg_._position_custom_1_ba1eh_gg_ tspan{dominant-baseline:middle}",
|
|
13
13
|
/*__inner_css_end__*/
|
|
14
|
-
"
|
|
14
|
+
"ba1eh_gg_"
|
|
15
15
|
), /*__reshadow_css_end__*/
|
|
16
16
|
{
|
|
17
|
-
"__SAxis": "
|
|
18
|
-
"_hide": "
|
|
19
|
-
"__STick": "
|
|
20
|
-
"_primaryText": "
|
|
21
|
-
"__SGrid": "
|
|
22
|
-
"__STitle": "
|
|
23
|
-
"--transform-origin": "--transform-
|
|
24
|
-
"_position_top": "
|
|
25
|
-
"_position_bottom": "
|
|
26
|
-
"_position_right": "
|
|
27
|
-
"_position_left": "
|
|
28
|
-
"_verticalWritingMode": "
|
|
29
|
-
"_multiline": "
|
|
30
|
-
"_position_custom_0": "
|
|
31
|
-
"_position_custom_1": "
|
|
17
|
+
"__SAxis": "___SAxis_ba1eh_gg_",
|
|
18
|
+
"_hide": "__hide_ba1eh_gg_",
|
|
19
|
+
"__STick": "___STick_ba1eh_gg_",
|
|
20
|
+
"_primaryText": "__primaryText_ba1eh_gg_",
|
|
21
|
+
"__SGrid": "___SGrid_ba1eh_gg_",
|
|
22
|
+
"__STitle": "___STitle_ba1eh_gg_",
|
|
23
|
+
"--transform-origin": "--transform-origin_ba1eh",
|
|
24
|
+
"_position_top": "_position_top_ba1eh_gg_",
|
|
25
|
+
"_position_bottom": "_position_bottom_ba1eh_gg_",
|
|
26
|
+
"_position_right": "_position_right_ba1eh_gg_",
|
|
27
|
+
"_position_left": "_position_left_ba1eh_gg_",
|
|
28
|
+
"_verticalWritingMode": "__verticalWritingMode_ba1eh_gg_",
|
|
29
|
+
"_multiline": "__multiline_ba1eh_gg_",
|
|
30
|
+
"_position_custom_0": "_position_custom_0_ba1eh_gg_",
|
|
31
|
+
"_position_custom_1": "_position_custom_1_ba1eh_gg_"
|
|
32
32
|
})
|
|
33
33
|
);
|
|
34
34
|
const CUSTOM_0 = /* @__PURE__ */ Symbol("custom_0");
|
package/lib/esm/Bar.mjs
CHANGED
|
@@ -12,26 +12,26 @@ const style = (
|
|
|
12
12
|
/*__reshadow_css_start__*/
|
|
13
13
|
(sstyled.insert(
|
|
14
14
|
/*__inner_css_start__*/
|
|
15
|
-
".
|
|
15
|
+
".___SBar_96mcx_gg_{fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));transition-property:height,width,y;transition-duration:var(--duration_96mcx);transition-timing-function:ease-in-out}.___SBar_96mcx_gg_.__color_96mcx_gg_{fill:var(--color_96mcx)}.___SBar_96mcx_gg_.__pattern_96mcx_gg_.__color_96mcx_gg_{fill:var(--pattern_96mcx);stroke:var(--color_96mcx);stroke-width:1px}.___SBar_96mcx_gg_.__hide_96mcx_gg_{display:none}.___SBar_96mcx_gg_.__transparent_96mcx_gg_{opacity:.3}.___SBar_96mcx_gg_.__onClick_96mcx_gg_{cursor:pointer}.___SBackground_96mcx_gg_{fill:var(--intergalactic-chart-grid-bar-chart-base-bg,oklch(.96 .001 180))}.___SBackground_96mcx_gg_.__onClick_96mcx_gg_{cursor:pointer}.___SBarAnnotation_96mcx_gg_{display:flex;justify-content:space-between}.___SBarLabel_96mcx_gg_{color:var(--intergalactic-text-primary,oklch(.1 .03 137/.899));margin-right:auto}.___SBarLabel_96mcx_gg_,.___SBarPercent_96mcx_gg_{font-size:var(--intergalactic-fs-200,14px);line-height:var(--intergalactic-lh-200,142%)}.___SBarPercent_96mcx_gg_{color:var(--intergalactic-text-secondary,#00030095);margin-right:var(--intergalactic-spacing-2x,8px)}@media (color-gamut:p3){.___SBarPercent_96mcx_gg_{color:var(--intergalactic-text-secondary,oklch(.088 .026 147.7/.583))}}.___SBarValue_96mcx_gg_{min-width:52px;display:flex;justify-content:flex-end;color:var(--intergalactic-text-primary,oklch(.1 .03 137/.899));font-size:var(--intergalactic-fs-200,14px);line-height:var(--intergalactic-lh-200,142%);text-align:right}.___SCompactHorizontalBarHoverRect_96mcx_gg_{fill:var(--intergalactic-chart-grid-bar-chart-hover,oklch(.177 .033 175.6/.028))}",
|
|
16
16
|
/*__inner_css_end__*/
|
|
17
|
-
"
|
|
17
|
+
"96mcx_gg_"
|
|
18
18
|
), /*__reshadow_css_end__*/
|
|
19
19
|
{
|
|
20
|
-
"__SBar": "
|
|
21
|
-
"--duration": "--
|
|
22
|
-
"_color": "
|
|
23
|
-
"--color": "--
|
|
24
|
-
"_pattern": "
|
|
25
|
-
"--pattern": "--
|
|
26
|
-
"_hide": "
|
|
27
|
-
"_transparent": "
|
|
28
|
-
"_onClick": "
|
|
29
|
-
"__SBackground": "
|
|
30
|
-
"__SBarAnnotation": "
|
|
31
|
-
"__SBarLabel": "
|
|
32
|
-
"__SBarPercent": "
|
|
33
|
-
"__SBarValue": "
|
|
34
|
-
"__SCompactHorizontalBarHoverRect": "
|
|
20
|
+
"__SBar": "___SBar_96mcx_gg_",
|
|
21
|
+
"--duration": "--duration_96mcx",
|
|
22
|
+
"_color": "__color_96mcx_gg_",
|
|
23
|
+
"--color": "--color_96mcx",
|
|
24
|
+
"_pattern": "__pattern_96mcx_gg_",
|
|
25
|
+
"--pattern": "--pattern_96mcx",
|
|
26
|
+
"_hide": "__hide_96mcx_gg_",
|
|
27
|
+
"_transparent": "__transparent_96mcx_gg_",
|
|
28
|
+
"_onClick": "__onClick_96mcx_gg_",
|
|
29
|
+
"__SBackground": "___SBackground_96mcx_gg_",
|
|
30
|
+
"__SBarAnnotation": "___SBarAnnotation_96mcx_gg_",
|
|
31
|
+
"__SBarLabel": "___SBarLabel_96mcx_gg_",
|
|
32
|
+
"__SBarPercent": "___SBarPercent_96mcx_gg_",
|
|
33
|
+
"__SBarValue": "___SBarValue_96mcx_gg_",
|
|
34
|
+
"__SCompactHorizontalBarHoverRect": "___SCompactHorizontalBarHoverRect_96mcx_gg_"
|
|
35
35
|
})
|
|
36
36
|
);
|
|
37
37
|
const MIN_HEIGHT = 2;
|
package/lib/esm/Bubble.mjs
CHANGED
|
@@ -15,24 +15,24 @@ const style = (
|
|
|
15
15
|
/*__reshadow_css_start__*/
|
|
16
16
|
(sstyled.insert(
|
|
17
17
|
/*__inner_css_start__*/
|
|
18
|
-
".
|
|
18
|
+
".___SBubble_t4696_gg_{fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));stroke:var(--intergalactic-chart-grid-border,#fff);stroke-width:2px;transition-property:cx,cy;transition-duration:var(--duration_t4696);transition-timing-function:ease-in-out;opacity:.5}@media (hover:hover){.___SBubble_t4696_gg_:hover{opacity:.8}}g._visible_false_t4696_gg_{display:none}.___SBubble_t4696_gg_.__clickable_t4696_gg_{cursor:pointer}.___SBubble_t4696_gg_.__color_t4696_gg_{fill:var(--color_t4696)}.___SBubble_t4696_gg_.__pattern_t4696_gg_.__color_t4696_gg_{fill:var(--pattern_t4696);stroke:var(--color_t4696);stroke-width:1px}.___SBubble_t4696_gg_.__transparent_t4696_gg_{opacity:.3}.___SCenter_t4696_gg_{text-anchor:middle;font-size:calc(var(--intergalactic-fs-100, 12px) - 1px);stroke:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2))}.___SCenter_t4696_gg_.__color_t4696_gg_{stroke:var(--color_t4696)}.___SCenter_t4696_gg_.__transparent_t4696_gg_{opacity:.3}.___SLabel_t4696_gg_{fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2))}.___SLabel_t4696_gg_._position_right_t4696_gg_{text-anchor:end}.___SLabel_t4696_gg_._position_left_t4696_gg_{text-anchor:start}.___SLabel_t4696_gg_.__color_t4696_gg_{fill:var(--color_t4696)}.___SLabel_t4696_gg_.__transparent_t4696_gg_{opacity:.3}",
|
|
19
19
|
/*__inner_css_end__*/
|
|
20
|
-
"
|
|
20
|
+
"t4696_gg_"
|
|
21
21
|
), /*__reshadow_css_end__*/
|
|
22
22
|
{
|
|
23
|
-
"_visible_false": "
|
|
24
|
-
"__SBubble": "
|
|
25
|
-
"_clickable": "
|
|
26
|
-
"_color": "
|
|
27
|
-
"--color": "--
|
|
28
|
-
"_pattern": "
|
|
29
|
-
"--pattern": "--
|
|
30
|
-
"_transparent": "
|
|
31
|
-
"__SCenter": "
|
|
32
|
-
"__SLabel": "
|
|
33
|
-
"_position_right": "
|
|
34
|
-
"_position_left": "
|
|
35
|
-
"--duration": "--
|
|
23
|
+
"_visible_false": "_visible_false_t4696_gg_",
|
|
24
|
+
"__SBubble": "___SBubble_t4696_gg_",
|
|
25
|
+
"_clickable": "__clickable_t4696_gg_",
|
|
26
|
+
"_color": "__color_t4696_gg_",
|
|
27
|
+
"--color": "--color_t4696",
|
|
28
|
+
"_pattern": "__pattern_t4696_gg_",
|
|
29
|
+
"--pattern": "--pattern_t4696",
|
|
30
|
+
"_transparent": "__transparent_t4696_gg_",
|
|
31
|
+
"__SCenter": "___SCenter_t4696_gg_",
|
|
32
|
+
"__SLabel": "___SLabel_t4696_gg_",
|
|
33
|
+
"_position_right": "_position_right_t4696_gg_",
|
|
34
|
+
"_position_left": "_position_left_t4696_gg_",
|
|
35
|
+
"--duration": "--duration_t4696"
|
|
36
36
|
})
|
|
37
37
|
);
|
|
38
38
|
class BubbleRoot extends Component {
|
|
@@ -16,26 +16,26 @@ const style = (
|
|
|
16
16
|
/*__reshadow_css_start__*/
|
|
17
17
|
(sstyled.insert(
|
|
18
18
|
/*__inner_css_start__*/
|
|
19
|
-
".
|
|
19
|
+
".___SBar_96mcx_gg_{fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));transition-property:height,width,y;transition-duration:var(--duration_96mcx);transition-timing-function:ease-in-out}.___SBar_96mcx_gg_.__color_96mcx_gg_{fill:var(--color_96mcx)}.___SBar_96mcx_gg_.__pattern_96mcx_gg_.__color_96mcx_gg_{fill:var(--pattern_96mcx);stroke:var(--color_96mcx);stroke-width:1px}.___SBar_96mcx_gg_.__hide_96mcx_gg_{display:none}.___SBar_96mcx_gg_.__transparent_96mcx_gg_{opacity:.3}.___SBar_96mcx_gg_.__onClick_96mcx_gg_{cursor:pointer}.___SBackground_96mcx_gg_{fill:var(--intergalactic-chart-grid-bar-chart-base-bg,oklch(.96 .001 180))}.___SBackground_96mcx_gg_.__onClick_96mcx_gg_{cursor:pointer}.___SBarAnnotation_96mcx_gg_{display:flex;justify-content:space-between}.___SBarLabel_96mcx_gg_{color:var(--intergalactic-text-primary,oklch(.1 .03 137/.899));margin-right:auto}.___SBarLabel_96mcx_gg_,.___SBarPercent_96mcx_gg_{font-size:var(--intergalactic-fs-200,14px);line-height:var(--intergalactic-lh-200,142%)}.___SBarPercent_96mcx_gg_{color:var(--intergalactic-text-secondary,#00030095);margin-right:var(--intergalactic-spacing-2x,8px)}@media (color-gamut:p3){.___SBarPercent_96mcx_gg_{color:var(--intergalactic-text-secondary,oklch(.088 .026 147.7/.583))}}.___SBarValue_96mcx_gg_{min-width:52px;display:flex;justify-content:flex-end;color:var(--intergalactic-text-primary,oklch(.1 .03 137/.899));font-size:var(--intergalactic-fs-200,14px);line-height:var(--intergalactic-lh-200,142%);text-align:right}.___SCompactHorizontalBarHoverRect_96mcx_gg_{fill:var(--intergalactic-chart-grid-bar-chart-hover,oklch(.177 .033 175.6/.028))}",
|
|
20
20
|
/*__inner_css_end__*/
|
|
21
|
-
"
|
|
21
|
+
"96mcx_gg_"
|
|
22
22
|
), /*__reshadow_css_end__*/
|
|
23
23
|
{
|
|
24
|
-
"__SBar": "
|
|
25
|
-
"--duration": "--
|
|
26
|
-
"_color": "
|
|
27
|
-
"--color": "--
|
|
28
|
-
"_pattern": "
|
|
29
|
-
"--pattern": "--
|
|
30
|
-
"_hide": "
|
|
31
|
-
"_transparent": "
|
|
32
|
-
"_onClick": "
|
|
33
|
-
"__SBackground": "
|
|
34
|
-
"__SBarAnnotation": "
|
|
35
|
-
"__SBarLabel": "
|
|
36
|
-
"__SBarPercent": "
|
|
37
|
-
"__SBarValue": "
|
|
38
|
-
"__SCompactHorizontalBarHoverRect": "
|
|
24
|
+
"__SBar": "___SBar_96mcx_gg_",
|
|
25
|
+
"--duration": "--duration_96mcx",
|
|
26
|
+
"_color": "__color_96mcx_gg_",
|
|
27
|
+
"--color": "--color_96mcx",
|
|
28
|
+
"_pattern": "__pattern_96mcx_gg_",
|
|
29
|
+
"--pattern": "--pattern_96mcx",
|
|
30
|
+
"_hide": "__hide_96mcx_gg_",
|
|
31
|
+
"_transparent": "__transparent_96mcx_gg_",
|
|
32
|
+
"_onClick": "__onClick_96mcx_gg_",
|
|
33
|
+
"__SBackground": "___SBackground_96mcx_gg_",
|
|
34
|
+
"__SBarAnnotation": "___SBarAnnotation_96mcx_gg_",
|
|
35
|
+
"__SBarLabel": "___SBarLabel_96mcx_gg_",
|
|
36
|
+
"__SBarPercent": "___SBarPercent_96mcx_gg_",
|
|
37
|
+
"__SBarValue": "___SBarValue_96mcx_gg_",
|
|
38
|
+
"__SCompactHorizontalBarHoverRect": "___SCompactHorizontalBarHoverRect_96mcx_gg_"
|
|
39
39
|
})
|
|
40
40
|
);
|
|
41
41
|
const MIN_WIDTH = 4;
|
package/lib/esm/Donut.mjs
CHANGED
|
@@ -17,19 +17,19 @@ const style = (
|
|
|
17
17
|
/*__reshadow_css_start__*/
|
|
18
18
|
(sstyled.insert(
|
|
19
19
|
/*__inner_css_start__*/
|
|
20
|
-
".
|
|
20
|
+
".___SPie_75dho_gg_{stroke:var(--intergalactic-chart-grid-border,#fff);fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2))}.___SPie_75dho_gg_.__color_75dho_gg_{fill:var(--color_75dho)}.___SPie_75dho_gg_.__pattern_75dho_gg_.__color_75dho_gg_{fill:var(--pattern_75dho);stroke:var(--color_75dho);stroke-width:1px}.___SPie_75dho_gg_.__transparent_75dho_gg_{opacity:.3}.___SEmptyData_75dho_gg_{fill:var(--intergalactic-chart-palette-order-null,oklch(.9 .002 177))}.___SEmptyData_75dho_gg_.__color_75dho_gg_{fill:var(--color_75dho)}.___SLabel_75dho_gg_{text-anchor:middle;vertical-anchor:middle;font-size:var(--intergalactic-fs-200,14px);line-height:var(--intergalactic-lh-200,142%)}",
|
|
21
21
|
/*__inner_css_end__*/
|
|
22
|
-
"
|
|
22
|
+
"75dho_gg_"
|
|
23
23
|
), /*__reshadow_css_end__*/
|
|
24
24
|
{
|
|
25
|
-
"__SPie": "
|
|
26
|
-
"_color": "
|
|
27
|
-
"--color": "--
|
|
28
|
-
"_pattern": "
|
|
29
|
-
"--pattern": "--
|
|
30
|
-
"_transparent": "
|
|
31
|
-
"__SEmptyData": "
|
|
32
|
-
"__SLabel": "
|
|
25
|
+
"__SPie": "___SPie_75dho_gg_",
|
|
26
|
+
"_color": "__color_75dho_gg_",
|
|
27
|
+
"--color": "--color_75dho",
|
|
28
|
+
"_pattern": "__pattern_75dho_gg_",
|
|
29
|
+
"--pattern": "--pattern_75dho",
|
|
30
|
+
"_transparent": "__transparent_75dho_gg_",
|
|
31
|
+
"__SEmptyData": "___SEmptyData_75dho_gg_",
|
|
32
|
+
"__SLabel": "___SLabel_75dho_gg_"
|
|
33
33
|
})
|
|
34
34
|
);
|
|
35
35
|
const DEFAULT_INSTANCE = /* @__PURE__ */ Symbol("DEFAULT_INSTANCE");
|
package/lib/esm/Dots.mjs
CHANGED
|
@@ -10,18 +10,18 @@ const style = (
|
|
|
10
10
|
/*__reshadow_css_start__*/
|
|
11
11
|
(sstyled.insert(
|
|
12
12
|
/*__inner_css_start__*/
|
|
13
|
-
".
|
|
13
|
+
".___SDots_8femj_gg_ .___SDot_8femj_gg_{transition-duration:var(--duration_8femj)}.___SDot_8femj_gg_{stroke-width:1px;stroke:var(--intergalactic-chart-grid-border,#fff);fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));transition-property:cx,cy,x,y;transition-timing-function:ease-in-out}.___SDot_8femj_gg_.__hide_8femj_gg_{display:none}.___SDot_8femj_gg_.__color_8femj_gg_{fill:var(--color_8femj)}.___SDot_8femj_gg_.__transparent_8femj_gg_{opacity:.3}",
|
|
14
14
|
/*__inner_css_end__*/
|
|
15
|
-
"
|
|
15
|
+
"8femj_gg_"
|
|
16
16
|
), /*__reshadow_css_end__*/
|
|
17
17
|
{
|
|
18
|
-
"__SDot": "
|
|
19
|
-
"_hide": "
|
|
20
|
-
"_color": "
|
|
21
|
-
"--color": "--
|
|
22
|
-
"_transparent": "
|
|
23
|
-
"__SDots": "
|
|
24
|
-
"--duration": "--
|
|
18
|
+
"__SDot": "___SDot_8femj_gg_",
|
|
19
|
+
"_hide": "__hide_8femj_gg_",
|
|
20
|
+
"_color": "__color_8femj_gg_",
|
|
21
|
+
"--color": "--color_8femj",
|
|
22
|
+
"_transparent": "__transparent_8femj_gg_",
|
|
23
|
+
"__SDots": "___SDots_8femj_gg_",
|
|
24
|
+
"--duration": "--duration_8femj"
|
|
25
25
|
})
|
|
26
26
|
);
|
|
27
27
|
function Dots(props) {
|
|
@@ -11,26 +11,26 @@ const style = (
|
|
|
11
11
|
/*__reshadow_css_start__*/
|
|
12
12
|
(sstyled.insert(
|
|
13
13
|
/*__inner_css_start__*/
|
|
14
|
-
".
|
|
14
|
+
".___SBar_96mcx_gg_{fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));transition-property:height,width,y;transition-duration:var(--duration_96mcx);transition-timing-function:ease-in-out}.___SBar_96mcx_gg_.__color_96mcx_gg_{fill:var(--color_96mcx)}.___SBar_96mcx_gg_.__pattern_96mcx_gg_.__color_96mcx_gg_{fill:var(--pattern_96mcx);stroke:var(--color_96mcx);stroke-width:1px}.___SBar_96mcx_gg_.__hide_96mcx_gg_{display:none}.___SBar_96mcx_gg_.__transparent_96mcx_gg_{opacity:.3}.___SBar_96mcx_gg_.__onClick_96mcx_gg_{cursor:pointer}.___SBackground_96mcx_gg_{fill:var(--intergalactic-chart-grid-bar-chart-base-bg,oklch(.96 .001 180))}.___SBackground_96mcx_gg_.__onClick_96mcx_gg_{cursor:pointer}.___SBarAnnotation_96mcx_gg_{display:flex;justify-content:space-between}.___SBarLabel_96mcx_gg_{color:var(--intergalactic-text-primary,oklch(.1 .03 137/.899));margin-right:auto}.___SBarLabel_96mcx_gg_,.___SBarPercent_96mcx_gg_{font-size:var(--intergalactic-fs-200,14px);line-height:var(--intergalactic-lh-200,142%)}.___SBarPercent_96mcx_gg_{color:var(--intergalactic-text-secondary,#00030095);margin-right:var(--intergalactic-spacing-2x,8px)}@media (color-gamut:p3){.___SBarPercent_96mcx_gg_{color:var(--intergalactic-text-secondary,oklch(.088 .026 147.7/.583))}}.___SBarValue_96mcx_gg_{min-width:52px;display:flex;justify-content:flex-end;color:var(--intergalactic-text-primary,oklch(.1 .03 137/.899));font-size:var(--intergalactic-fs-200,14px);line-height:var(--intergalactic-lh-200,142%);text-align:right}.___SCompactHorizontalBarHoverRect_96mcx_gg_{fill:var(--intergalactic-chart-grid-bar-chart-hover,oklch(.177 .033 175.6/.028))}",
|
|
15
15
|
/*__inner_css_end__*/
|
|
16
|
-
"
|
|
16
|
+
"96mcx_gg_"
|
|
17
17
|
), /*__reshadow_css_end__*/
|
|
18
18
|
{
|
|
19
|
-
"__SBar": "
|
|
20
|
-
"--duration": "--
|
|
21
|
-
"_color": "
|
|
22
|
-
"--color": "--
|
|
23
|
-
"_pattern": "
|
|
24
|
-
"--pattern": "--
|
|
25
|
-
"_hide": "
|
|
26
|
-
"_transparent": "
|
|
27
|
-
"_onClick": "
|
|
28
|
-
"__SBackground": "
|
|
29
|
-
"__SBarAnnotation": "
|
|
30
|
-
"__SBarLabel": "
|
|
31
|
-
"__SBarPercent": "
|
|
32
|
-
"__SBarValue": "
|
|
33
|
-
"__SCompactHorizontalBarHoverRect": "
|
|
19
|
+
"__SBar": "___SBar_96mcx_gg_",
|
|
20
|
+
"--duration": "--duration_96mcx",
|
|
21
|
+
"_color": "__color_96mcx_gg_",
|
|
22
|
+
"--color": "--color_96mcx",
|
|
23
|
+
"_pattern": "__pattern_96mcx_gg_",
|
|
24
|
+
"--pattern": "--pattern_96mcx",
|
|
25
|
+
"_hide": "__hide_96mcx_gg_",
|
|
26
|
+
"_transparent": "__transparent_96mcx_gg_",
|
|
27
|
+
"_onClick": "__onClick_96mcx_gg_",
|
|
28
|
+
"__SBackground": "___SBackground_96mcx_gg_",
|
|
29
|
+
"__SBarAnnotation": "___SBarAnnotation_96mcx_gg_",
|
|
30
|
+
"__SBarLabel": "___SBarLabel_96mcx_gg_",
|
|
31
|
+
"__SBarPercent": "___SBarPercent_96mcx_gg_",
|
|
32
|
+
"__SBarValue": "___SBarValue_96mcx_gg_",
|
|
33
|
+
"__SCompactHorizontalBarHoverRect": "___SCompactHorizontalBarHoverRect_96mcx_gg_"
|
|
34
34
|
})
|
|
35
35
|
);
|
|
36
36
|
const MIN_WIDTH = 2;
|
package/lib/esm/Hover.mjs
CHANGED
|
@@ -12,13 +12,13 @@ const style = (
|
|
|
12
12
|
/*__reshadow_css_start__*/
|
|
13
13
|
(sstyled.insert(
|
|
14
14
|
/*__inner_css_start__*/
|
|
15
|
-
".
|
|
15
|
+
".___SHoverLine_1yni8_gg_,.___SHoverLine_1yni8_gg_:focus-visible{outline:none;stroke:var(--intergalactic-chart-grid-x-axis,oklch(.88 .002 175.6))}.___SHoverRect_1yni8_gg_,.___SHoverRect_1yni8_gg_:focus-visible{outline:none;fill:var(--intergalactic-chart-grid-bar-chart-hover,oklch(.177 .033 175.6/.028))}",
|
|
16
16
|
/*__inner_css_end__*/
|
|
17
|
-
"
|
|
17
|
+
"1yni8_gg_"
|
|
18
18
|
), /*__reshadow_css_end__*/
|
|
19
19
|
{
|
|
20
|
-
"__SHoverLine": "
|
|
21
|
-
"__SHoverRect": "
|
|
20
|
+
"__SHoverLine": "___SHoverLine_1yni8_gg_",
|
|
21
|
+
"__SHoverRect": "___SHoverRect_1yni8_gg_"
|
|
22
22
|
})
|
|
23
23
|
);
|
|
24
24
|
class Hover extends Component {
|
package/lib/esm/Line.mjs
CHANGED
|
@@ -14,19 +14,19 @@ const style = (
|
|
|
14
14
|
/*__reshadow_css_start__*/
|
|
15
15
|
(sstyled.insert(
|
|
16
16
|
/*__inner_css_start__*/
|
|
17
|
-
".
|
|
17
|
+
".___SLine_12gz2_gg_{fill:#0000;stroke-width:3;stroke:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));transition-property:d;transition-duration:var(--duration_12gz2);transition-timing-function:ease-in-out}.___SLine_12gz2_gg_.__color_12gz2_gg_{stroke:var(--color_12gz2)}.___SLine_12gz2_gg_.__hide_12gz2_gg_{display:none}.___SLine_12gz2_gg_.__transparent_12gz2_gg_{opacity:.3}.___SNull_12gz2_gg_{fill:#0000;stroke:var(--intergalactic-border-primary,#000c0829);stroke-dasharray:4}@media (color-gamut:p3){.___SNull_12gz2_gg_{stroke:var(--intergalactic-border-primary,oklch(.137 .026 175.7/.161))}}.___SNull_12gz2_gg_.__hide_12gz2_gg_{display:none}.___SLineArea_12gz2_gg_{transition-property:d;transition-duration:var(--duration_12gz2);transition-timing-function:ease-in-out;opacity:.3;fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2))}.___SLineArea_12gz2_gg_.__color_12gz2_gg_{fill:var(--color_12gz2)}",
|
|
18
18
|
/*__inner_css_end__*/
|
|
19
|
-
"
|
|
19
|
+
"12gz2_gg_"
|
|
20
20
|
), /*__reshadow_css_end__*/
|
|
21
21
|
{
|
|
22
|
-
"__SLine": "
|
|
23
|
-
"--duration": "--
|
|
24
|
-
"_color": "
|
|
25
|
-
"--color": "--
|
|
26
|
-
"_hide": "
|
|
27
|
-
"_transparent": "
|
|
28
|
-
"__SNull": "
|
|
29
|
-
"__SLineArea": "
|
|
22
|
+
"__SLine": "___SLine_12gz2_gg_",
|
|
23
|
+
"--duration": "--duration_12gz2",
|
|
24
|
+
"_color": "__color_12gz2_gg_",
|
|
25
|
+
"--color": "--color_12gz2",
|
|
26
|
+
"_hide": "__hide_12gz2_gg_",
|
|
27
|
+
"_transparent": "__transparent_12gz2_gg_",
|
|
28
|
+
"__SNull": "___SNull_12gz2_gg_",
|
|
29
|
+
"__SLineArea": "___SLineArea_12gz2_gg_"
|
|
30
30
|
})
|
|
31
31
|
);
|
|
32
32
|
class LineRoot extends Component {
|
package/lib/esm/Plot.mjs
CHANGED
|
@@ -14,12 +14,12 @@ const style = (
|
|
|
14
14
|
/*__reshadow_css_start__*/
|
|
15
15
|
(sstyled.insert(
|
|
16
16
|
/*__inner_css_start__*/
|
|
17
|
-
".
|
|
17
|
+
".___SPlot_vnepb_gg_{overflow:hidden}.___SPlot_vnepb_gg_:focus{outline:none}.___SPlot_vnepb_gg_:active{outline:0;-webkit-text-decoration:none;text-decoration:none}foreignObject[data-aria-only]{pointer-events:none}.___SPlot_vnepb_gg_:has(foreignObject[data-aria-only]:focus-within){outline-color:var(--intergalactic-keyboard-focus-outline,#0020dd78);outline-style:solid;outline-width:2px;outline-offset:2px;transition-duration:calc(var(--intergalactic-duration-extra-fast, 100)*1ms);transition-timing-function:ease-in-out;transition-property:outline-color,outline-width,outline-offset;border-radius:var(--intergalactic-surface-rounded,8px)}@media (color-gamut:p3){.___SPlot_vnepb_gg_:has(foreignObject[data-aria-only]:focus-within){outline-color:var(--intergalactic-keyboard-focus-outline,oklch(.424 .269 264.2/.469))}}",
|
|
18
18
|
/*__inner_css_end__*/
|
|
19
|
-
"
|
|
19
|
+
"vnepb_gg_"
|
|
20
20
|
), /*__reshadow_css_end__*/
|
|
21
21
|
{
|
|
22
|
-
"__SPlot": "
|
|
22
|
+
"__SPlot": "___SPlot_vnepb_gg_"
|
|
23
23
|
})
|
|
24
24
|
);
|
|
25
25
|
class PlotRoot extends Component {
|
package/lib/esm/Radar.mjs
CHANGED
|
@@ -16,29 +16,29 @@ const style = (
|
|
|
16
16
|
/*__reshadow_css_start__*/
|
|
17
17
|
(sstyled.insert(
|
|
18
18
|
/*__inner_css_start__*/
|
|
19
|
-
".
|
|
19
|
+
".___SAxisLine_1732k_gg_,.___SAxisTick_1732k_gg_,.___SAxis_1732k_gg_{stroke:var(--intergalactic-chart-grid-line,oklch(.95 .002 180));stroke-width:1;fill:#0000}.___SAxisLine_1732k_gg_,.___SAxisTick_1732k_gg_{stroke-dasharray:2}.___SAxisLine_1732k_gg_.__active_1732k_gg_{stroke:var(--intergalactic-chart-grid-y-accent-hover-line,oklch(.88 .002 175.6))}.___SAxisLabel_1732k_gg_{text-anchor:middle;dominant-baseline:central;font-size:12px}.___SAxisLabel_1732k_gg_.__xDirection_1732k_gg_{text-anchor:var(--xDirection_1732k)}.___SAxisLabel_1732k_gg_.__yDirection_1732k_gg_{dominant-baseline:var(--yDirection_1732k)}.___SPolygon_1732k_gg_{fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));opacity:.2}.___SPolygon_1732k_gg_.__color_1732k_gg_{fill:var(--color_1732k)}.___SPolygon_1732k_gg_.__pattern_1732k_gg_.__color_1732k_gg_{fill:var(--pattern_1732k);stroke:var(--color_1732k);stroke-width:1px}.___SPolygonDot_1732k_gg_{stroke-width:2px;stroke:var(--intergalactic-chart-grid-border,#fff);r:6px;fill:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2))}.___SPolygonDot_1732k_gg_.__transparent_1732k_gg_{opacity:.3}.___SPolygonDot_1732k_gg_.__color_1732k_gg_{fill:var(--color_1732k)}.___SPolygonLine_1732k_gg_{stroke:var(--intergalactic-chart-palette-order-1,oklch(.58 .168 278.2));stroke-width:3;fill:#0000}.___SPolygonLine_1732k_gg_.__transparent_1732k_gg_{opacity:.3}.___SPolygonLine_1732k_gg_.__color_1732k_gg_{stroke:var(--color_1732k)}.___SPieRect_1732k_gg_{outline:none;fill:var(--intergalactic-chart-grid-bar-chart-hover,oklch(.177 .033 175.6/.028))}",
|
|
20
20
|
/*__inner_css_end__*/
|
|
21
|
-
"
|
|
21
|
+
"1732k_gg_"
|
|
22
22
|
), /*__reshadow_css_end__*/
|
|
23
23
|
{
|
|
24
|
-
"__SAxis": "
|
|
25
|
-
"__SAxisLine": "
|
|
26
|
-
"__SAxisTick": "
|
|
27
|
-
"_active": "
|
|
28
|
-
"__SAxisLabel": "
|
|
29
|
-
"_xDirection": "
|
|
30
|
-
"--xDirection": "--
|
|
31
|
-
"_yDirection": "
|
|
32
|
-
"--yDirection": "--
|
|
33
|
-
"__SPolygon": "
|
|
34
|
-
"_color": "
|
|
35
|
-
"--color": "--
|
|
36
|
-
"_pattern": "
|
|
37
|
-
"--pattern": "--
|
|
38
|
-
"__SPolygonDot": "
|
|
39
|
-
"_transparent": "
|
|
40
|
-
"__SPolygonLine": "
|
|
41
|
-
"__SPieRect": "
|
|
24
|
+
"__SAxis": "___SAxis_1732k_gg_",
|
|
25
|
+
"__SAxisLine": "___SAxisLine_1732k_gg_",
|
|
26
|
+
"__SAxisTick": "___SAxisTick_1732k_gg_",
|
|
27
|
+
"_active": "__active_1732k_gg_",
|
|
28
|
+
"__SAxisLabel": "___SAxisLabel_1732k_gg_",
|
|
29
|
+
"_xDirection": "__xDirection_1732k_gg_",
|
|
30
|
+
"--xDirection": "--xDirection_1732k",
|
|
31
|
+
"_yDirection": "__yDirection_1732k_gg_",
|
|
32
|
+
"--yDirection": "--yDirection_1732k",
|
|
33
|
+
"__SPolygon": "___SPolygon_1732k_gg_",
|
|
34
|
+
"_color": "__color_1732k_gg_",
|
|
35
|
+
"--color": "--color_1732k",
|
|
36
|
+
"_pattern": "__pattern_1732k_gg_",
|
|
37
|
+
"--pattern": "--pattern_1732k",
|
|
38
|
+
"__SPolygonDot": "___SPolygonDot_1732k_gg_",
|
|
39
|
+
"_transparent": "__transparent_1732k_gg_",
|
|
40
|
+
"__SPolygonLine": "___SPolygonLine_1732k_gg_",
|
|
41
|
+
"__SPieRect": "___SPieRect_1732k_gg_"
|
|
42
42
|
})
|
|
43
43
|
);
|
|
44
44
|
const clampAngle = (angle) => {
|
|
@@ -283,7 +283,7 @@ class RadarRoot extends Component {
|
|
|
283
283
|
}));
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
|
-
_defineProperty(RadarRoot, "displayName", "
|
|
286
|
+
_defineProperty(RadarRoot, "displayName", "Radar");
|
|
287
287
|
_defineProperty(RadarRoot, "style", style);
|
|
288
288
|
_defineProperty(RadarRoot, "enhance", [uniqueIDEnhancement()]);
|
|
289
289
|
_defineProperty(RadarRoot, "defaultProps", {
|
package/lib/esm/RadialTree.mjs
CHANGED
|
@@ -14,22 +14,22 @@ const style = (
|
|
|
14
14
|
/*__reshadow_css_start__*/
|
|
15
15
|
(sstyled.insert(
|
|
16
16
|
/*__inner_css_start__*/
|
|
17
|
-
".
|
|
17
|
+
".___SRadian_oatm9_gg_{cursor:pointer;fill:var(--intergalactic-text-large-info,oklch(.53 .157 279.2))}.___SLine_oatm9_gg_{stroke:var(--intergalactic-text-large-info,oklch(.53 .157 279.2))}.___SLine_oatm9_gg_.__stroke_oatm9_gg_{stroke:var(--stroke_oatm9)}.___SLine_oatm9_gg_.__transparent_oatm9_gg_{opacity:.3}.___SCap_oatm9_gg_{transition:r .1s}.___SCap_oatm9_gg_.__pattern_oatm9_gg_{stroke:var(--intergalactic-chart-grid-border,#fff);stroke-width:1px}.___SCap_oatm9_gg_.__transparent_oatm9_gg_,.___SIcon_oatm9_gg_.__transparent_oatm9_gg_{opacity:.3}.___SLabel_oatm9_gg_{fill:var(--color_oatm9)}.___SLabel_oatm9_gg_.__transparent_oatm9_gg_{opacity:.3}@media (hover:hover){.___SRadian_oatm9_gg_:hover .___SLabel_oatm9_gg_{cursor:pointer;filter:brightness(.6)}}@media (prefers-reduced-motion){.___SLineCap_oatm9_gg_{transition:none}}",
|
|
18
18
|
/*__inner_css_end__*/
|
|
19
|
-
"
|
|
19
|
+
"oatm9_gg_"
|
|
20
20
|
), /*__reshadow_css_end__*/
|
|
21
21
|
{
|
|
22
|
-
"__SRadian": "
|
|
23
|
-
"__SLine": "
|
|
24
|
-
"_stroke": "
|
|
25
|
-
"--stroke": "--
|
|
26
|
-
"_transparent": "
|
|
27
|
-
"__SCap": "
|
|
28
|
-
"_pattern": "
|
|
29
|
-
"__SIcon": "
|
|
30
|
-
"__SLabel": "
|
|
31
|
-
"--color": "--
|
|
32
|
-
"__SLineCap": "
|
|
22
|
+
"__SRadian": "___SRadian_oatm9_gg_",
|
|
23
|
+
"__SLine": "___SLine_oatm9_gg_",
|
|
24
|
+
"_stroke": "__stroke_oatm9_gg_",
|
|
25
|
+
"--stroke": "--stroke_oatm9",
|
|
26
|
+
"_transparent": "__transparent_oatm9_gg_",
|
|
27
|
+
"__SCap": "___SCap_oatm9_gg_",
|
|
28
|
+
"_pattern": "__pattern_oatm9_gg_",
|
|
29
|
+
"__SIcon": "___SIcon_oatm9_gg_",
|
|
30
|
+
"__SLabel": "___SLabel_oatm9_gg_",
|
|
31
|
+
"--color": "--color_oatm9",
|
|
32
|
+
"__SLineCap": "___SLineCap_oatm9_gg_"
|
|
33
33
|
})
|
|
34
34
|
);
|
|
35
35
|
const baseAngle = -Math.PI / 2;
|
package/lib/esm/Reference.mjs
CHANGED
|
@@ -9,22 +9,22 @@ const style = (
|
|
|
9
9
|
/*__reshadow_css_start__*/
|
|
10
10
|
(sstyled.insert(
|
|
11
11
|
/*__inner_css_start__*/
|
|
12
|
-
".
|
|
12
|
+
".___SReferenceLine_1dvur_gg_{fill:none;stroke:var(--intergalactic-chart-grid-y-accent-hover-line,oklch(.88 .002 175.6))}.___STitle_1dvur_gg_{font-size:var(--intergalactic-fs-100,12px);fill:var(--intergalactic-chart-grid-text-label,#00030095);transform-origin:var(--transform-origin_1dvur)}@media (color-gamut:p3){.___STitle_1dvur_gg_{fill:var(--intergalactic-chart-grid-text-label,oklch(.088 .026 147.7/.583))}}.___STitle_1dvur_gg_._position_top_1dvur_gg_{text-anchor:middle}.___STitle_1dvur_gg_._position_bottom_1dvur_gg_{text-anchor:middle;dominant-baseline:hanging}.___STitle_1dvur_gg_._position_left_1dvur_gg_,.___STitle_1dvur_gg_._position_right_1dvur_gg_{transform:rotate(-90deg);dominant-baseline:middle;text-anchor:middle}.___SBackground_1dvur_gg_{fill:var(--intergalactic-chart-grid-period-bg,oklch(.96 .001 180))}.___SStripes_1dvur_gg_{fill:var(--fill_1dvur)}.___SStripesPatternPath_1dvur_gg_{stroke:var(--intergalactic-chart-grid-period-pattern,oklch(.95 .002 180));stroke-width:1px}",
|
|
13
13
|
/*__inner_css_end__*/
|
|
14
|
-
"
|
|
14
|
+
"1dvur_gg_"
|
|
15
15
|
), /*__reshadow_css_end__*/
|
|
16
16
|
{
|
|
17
|
-
"__SReferenceLine": "
|
|
18
|
-
"__STitle": "
|
|
19
|
-
"--transform-origin": "--transform-
|
|
20
|
-
"_position_top": "
|
|
21
|
-
"_position_bottom": "
|
|
22
|
-
"_position_right": "
|
|
23
|
-
"_position_left": "
|
|
24
|
-
"__SBackground": "
|
|
25
|
-
"__SStripes": "
|
|
26
|
-
"--fill": "--
|
|
27
|
-
"__SStripesPatternPath": "
|
|
17
|
+
"__SReferenceLine": "___SReferenceLine_1dvur_gg_",
|
|
18
|
+
"__STitle": "___STitle_1dvur_gg_",
|
|
19
|
+
"--transform-origin": "--transform-origin_1dvur",
|
|
20
|
+
"_position_top": "_position_top_1dvur_gg_",
|
|
21
|
+
"_position_bottom": "_position_bottom_1dvur_gg_",
|
|
22
|
+
"_position_right": "_position_right_1dvur_gg_",
|
|
23
|
+
"_position_left": "_position_left_1dvur_gg_",
|
|
24
|
+
"__SBackground": "___SBackground_1dvur_gg_",
|
|
25
|
+
"__SStripes": "___SStripes_1dvur_gg_",
|
|
26
|
+
"--fill": "--fill_1dvur",
|
|
27
|
+
"__SStripesPatternPath": "___SStripesPatternPath_1dvur_gg_"
|
|
28
28
|
})
|
|
29
29
|
);
|
|
30
30
|
const side2direction = {
|