@semcore/d3-chart 2.5.5 → 2.6.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 +3 -3
- package/lib/cjs/Area.js +9 -9
- package/lib/cjs/Axis.js +14 -14
- package/lib/cjs/Bar.js +8 -8
- package/lib/cjs/Bubble.js +10 -10
- package/lib/cjs/Donut.js +7 -7
- package/lib/cjs/Dots.js +9 -9
- package/lib/cjs/HorizontalBar.js +8 -8
- package/lib/cjs/Hover.js +4 -4
- package/lib/cjs/Line.js +8 -8
- package/lib/cjs/Plot.js +4 -4
- package/lib/cjs/RadialTree.js +11 -11
- package/lib/cjs/ReferenceLine.js +10 -10
- package/lib/cjs/ScatterPlot.js +7 -7
- package/lib/cjs/Tooltip.js +8 -8
- package/lib/cjs/Venn.js +7 -7
- package/lib/cjs/a11y/PlotA11yModule.js +3 -3
- package/lib/cjs/a11y/PlotA11yView.js +4 -4
- package/lib/cjs/style/area.shadow.css +3 -3
- package/lib/cjs/style/axis.shadow.css +6 -8
- package/lib/cjs/style/bar.shadow.css +2 -3
- package/lib/cjs/style/bubble.shadow.css +6 -6
- package/lib/cjs/style/donut.shadow.css +3 -4
- package/lib/cjs/style/dot.shadow.css +2 -3
- package/lib/cjs/style/hover.shadow.css +2 -4
- package/lib/cjs/style/line.shadow.css +2 -3
- package/lib/cjs/style/plot.shadow.css +2 -3
- package/lib/cjs/style/plotA11yModule.shadow.css +0 -1
- package/lib/cjs/style/plotA11yView.shadow.css +8 -8
- package/lib/cjs/style/radial-tree.shadow.css +2 -3
- package/lib/cjs/style/reference-line.shadow.css +4 -6
- package/lib/cjs/style/scatterplot.shadow.css +3 -4
- package/lib/cjs/style/tooltip.shadow.css +11 -12
- package/lib/cjs/style/venn.shadow.css +3 -3
- package/lib/es6/Area.js +9 -9
- package/lib/es6/Axis.js +14 -14
- package/lib/es6/Bar.js +8 -8
- package/lib/es6/Bubble.js +10 -10
- package/lib/es6/Donut.js +7 -7
- package/lib/es6/Dots.js +9 -9
- package/lib/es6/HorizontalBar.js +8 -8
- package/lib/es6/Hover.js +4 -4
- package/lib/es6/Line.js +8 -8
- package/lib/es6/Plot.js +4 -4
- package/lib/es6/RadialTree.js +11 -11
- package/lib/es6/ReferenceLine.js +10 -10
- package/lib/es6/ScatterPlot.js +7 -7
- package/lib/es6/Tooltip.js +8 -8
- package/lib/es6/Venn.js +7 -7
- package/lib/es6/a11y/PlotA11yModule.js +3 -3
- package/lib/es6/a11y/PlotA11yView.js +4 -4
- package/lib/es6/style/area.shadow.css +3 -3
- package/lib/es6/style/axis.shadow.css +6 -8
- package/lib/es6/style/bar.shadow.css +2 -3
- package/lib/es6/style/bubble.shadow.css +6 -6
- package/lib/es6/style/donut.shadow.css +3 -4
- package/lib/es6/style/dot.shadow.css +2 -3
- package/lib/es6/style/hover.shadow.css +2 -4
- package/lib/es6/style/line.shadow.css +2 -3
- package/lib/es6/style/plot.shadow.css +2 -3
- package/lib/es6/style/plotA11yModule.shadow.css +0 -1
- package/lib/es6/style/plotA11yView.shadow.css +8 -8
- package/lib/es6/style/radial-tree.shadow.css +2 -3
- package/lib/es6/style/reference-line.shadow.css +4 -6
- package/lib/es6/style/scatterplot.shadow.css +3 -4
- package/lib/es6/style/tooltip.shadow.css +11 -12
- package/lib/es6/style/venn.shadow.css +3 -3
- package/package.json +1 -1
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
1
|
@import './var.css';
|
|
3
2
|
|
|
4
3
|
SPie {
|
|
5
|
-
stroke: #ffffff;
|
|
6
|
-
fill: var(--blue
|
|
4
|
+
stroke: var(--intergalactic-chart-grid-border, #ffffff);
|
|
5
|
+
fill: var(--intergalactic-chart-palette-order-blue, #2bb3ff);
|
|
7
6
|
}
|
|
8
7
|
|
|
9
8
|
SPie[color] {
|
|
@@ -11,7 +10,7 @@ SPie[color] {
|
|
|
11
10
|
}
|
|
12
11
|
|
|
13
12
|
SEmptyData {
|
|
14
|
-
fill: var(--
|
|
13
|
+
fill: var(--intergalactic-chart-palette-order-null, #e0e1e9);
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
SEmptyData[color] {
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
1
|
@import './var.css';
|
|
3
2
|
|
|
4
3
|
SDots {
|
|
@@ -9,9 +8,9 @@ SDots {
|
|
|
9
8
|
|
|
10
9
|
SDot {
|
|
11
10
|
stroke-width: 2px;
|
|
12
|
-
stroke: #
|
|
11
|
+
stroke: var(--intergalactic-chart-grid-border, #ffffff);
|
|
13
12
|
r: 6px;
|
|
14
|
-
fill: var(--blue
|
|
13
|
+
fill: var(--intergalactic-chart-palette-order-blue, #2bb3ff);
|
|
15
14
|
transition-property: cx, cy;
|
|
16
15
|
transition-timing-function: ease-in-out;
|
|
17
16
|
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
|
-
|
|
3
1
|
SHoverLine {
|
|
4
|
-
stroke: var(--
|
|
2
|
+
stroke: var(--intergalactic-chart-grid-x-axis, #c4c7cf);
|
|
5
3
|
}
|
|
6
4
|
|
|
7
5
|
SHoverRect {
|
|
8
|
-
fill:
|
|
6
|
+
fill: var(--intergalactic-chart-grid-bar-chart-hover, rgba(196, 199, 207, 0.3));
|
|
9
7
|
}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
1
|
@import './var.css';
|
|
3
2
|
|
|
4
3
|
SLine {
|
|
5
4
|
fill: transparent;
|
|
6
5
|
stroke-width: 3;
|
|
7
|
-
stroke: var(--blue
|
|
6
|
+
stroke: var(--intergalactic-chart-palette-order-blue, #2bb3ff);
|
|
8
7
|
transition-property: d;
|
|
9
8
|
transition-duration: var(--duration);
|
|
10
9
|
transition-timing-function: ease-in-out;
|
|
@@ -20,7 +19,7 @@ SLine[hide] {
|
|
|
20
19
|
|
|
21
20
|
SNull {
|
|
22
21
|
fill: transparent;
|
|
23
|
-
stroke: var(
|
|
22
|
+
stroke: var(-intergalactic-border-primary);
|
|
24
23
|
stroke-dasharray: 4;
|
|
25
24
|
}
|
|
26
25
|
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
1
|
@import './var.css';
|
|
3
2
|
|
|
4
3
|
SPlot {
|
|
@@ -15,6 +14,6 @@ foreignObject[data-aria-only] {
|
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
SPlot[keyboardFocused] {
|
|
18
|
-
border: 1px solid var(--blue-
|
|
19
|
-
box-shadow: var(--keyboard-focus);
|
|
17
|
+
border: 1px solid var(--intergalactic-chart-palette-order-blue-second-order, #008ff8);
|
|
18
|
+
box-shadow: var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.3));
|
|
20
19
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
1
|
@import './var.css';
|
|
3
2
|
|
|
4
3
|
SPlotA11yView {
|
|
5
4
|
user-select: none;
|
|
6
5
|
pointer-events: none;
|
|
7
6
|
opacity: 0;
|
|
8
|
-
background-color:
|
|
9
|
-
color:
|
|
10
|
-
border: 3px solid
|
|
11
|
-
font-size: 10px;
|
|
7
|
+
background-color: var(--intergalactic-bg-primary-neutral, #ffffff);
|
|
8
|
+
color: var(--intergalactic-text-primary, #191b23);
|
|
9
|
+
border: 3px solid var(--intergalactic-border-primary, #c4c7cf);
|
|
10
|
+
font-size: var(--intergalactic-fs-50, 10px);
|
|
11
|
+
/* disable-tokens-validator */
|
|
12
12
|
padding: 2px;
|
|
13
13
|
width: 200px;
|
|
14
14
|
height: 200px;
|
|
@@ -21,19 +21,19 @@ SPlotA11yView:focus {
|
|
|
21
21
|
user-select: all;
|
|
22
22
|
pointer-events: all;
|
|
23
23
|
opacity: 1;
|
|
24
|
-
z-index:
|
|
24
|
+
z-index: var(--intergalactic-z-index-overlay, 500);
|
|
25
25
|
position: relative;
|
|
26
26
|
display: block;
|
|
27
27
|
}
|
|
28
28
|
SPlotA11yView a {
|
|
29
29
|
cursor: pointer;
|
|
30
30
|
text-decoration: underline;
|
|
31
|
-
margin-bottom: 8px;
|
|
31
|
+
margin-bottom: var(--intergalactic-spacing-2x, 8px);
|
|
32
32
|
display: block;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
SPlotA11yView table,
|
|
36
36
|
SPlotA11yView td,
|
|
37
37
|
SPlotA11yView th {
|
|
38
|
-
border: 1px solid
|
|
38
|
+
border: 1px solid var(--intergalactic-border-primary, #c4c7cf);
|
|
39
39
|
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
1
|
@import './var.css';
|
|
3
2
|
|
|
4
3
|
SRadian {
|
|
5
4
|
cursor: pointer;
|
|
6
|
-
fill: var(--blue-
|
|
5
|
+
fill: var(--intergalactic-chart-palette-order-blue-second-order, #008ff8);
|
|
7
6
|
}
|
|
8
7
|
|
|
9
8
|
SLine {
|
|
10
|
-
stroke: var(--blue-
|
|
9
|
+
stroke: var(--intergalactic-chart-palette-order-blue-second-order, #008ff8);
|
|
11
10
|
}
|
|
12
11
|
|
|
13
12
|
SLine[color] {
|
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
|
-
|
|
3
1
|
SReferenceLine {
|
|
4
2
|
fill: none;
|
|
5
|
-
stroke: var(--
|
|
3
|
+
stroke: var(--intergalactic-chart-grid-x-axis, #c4c7cf);
|
|
6
4
|
}
|
|
7
5
|
|
|
8
6
|
STitle {
|
|
9
|
-
font-size: var(--fs-100);
|
|
10
|
-
fill: var(--
|
|
7
|
+
font-size: var(--intergalactic-fs-100, 12px);
|
|
8
|
+
fill: var(--intergalactic-chart-grid-text-label, #6c6e79);
|
|
11
9
|
transform-origin: var(--transform-origin);
|
|
12
10
|
}
|
|
13
11
|
|
|
@@ -33,5 +31,5 @@ STitle[position='left'] {
|
|
|
33
31
|
}
|
|
34
32
|
|
|
35
33
|
SBackground {
|
|
36
|
-
fill:
|
|
34
|
+
fill: var(--intergalactic-chart-grid-period-bg, rgba(196, 199, 207, 0.2));
|
|
37
35
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
1
|
@import './var.css';
|
|
3
2
|
|
|
4
3
|
SScatterPlot {
|
|
5
|
-
fill: var(--blue
|
|
4
|
+
fill: var(--intergalactic-chart-palette-order-blue, #2bb3ff);
|
|
6
5
|
transition-property: cx, cy;
|
|
7
6
|
transition-duration: var(--duration);
|
|
8
7
|
transition-timing-function: ease-in-out;
|
|
@@ -18,8 +17,8 @@ SScatterPlot[color] {
|
|
|
18
17
|
|
|
19
18
|
SValue {
|
|
20
19
|
text-anchor: middle;
|
|
21
|
-
font-size: 10px;
|
|
22
|
-
stroke: var(--blue-
|
|
20
|
+
font-size: var(--intergalactic-fs-50, 10px);
|
|
21
|
+
stroke: var(--intergalactic-chart-palette-order-blue-second-order, #008ff8);
|
|
23
22
|
}
|
|
24
23
|
|
|
25
24
|
SValue[color] {
|
|
@@ -1,21 +1,20 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
1
|
@import './var.css';
|
|
3
2
|
|
|
4
3
|
STooltip {
|
|
5
|
-
font-size: var(--fs-100);
|
|
6
|
-
line-height: var(--lh-100);
|
|
4
|
+
font-size: var(--intergalactic-fs-100, 12px);
|
|
5
|
+
line-height: var(--intergalactic-lh-100, 133%);
|
|
7
6
|
position: relative;
|
|
8
|
-
background-color: #
|
|
9
|
-
border-radius: 6px;
|
|
10
|
-
border: 1px solid var(--
|
|
7
|
+
background-color: var(--intergalactic-bg-primary-neutral, #ffffff);
|
|
8
|
+
border-radius: var(--intergalactic-rounded-medium, 6px);
|
|
9
|
+
border: 1px solid var(--intergalactic-border-secondary, #e0e1e9);
|
|
11
10
|
box-sizing: border-box;
|
|
12
|
-
box-shadow: var(--box-shadow-popper);
|
|
13
|
-
padding: 12px;
|
|
11
|
+
box-shadow: var(--intergalactic-box-shadow-popper, 0px 1px 12px 0px rgba(25, 27, 35, 0.15));
|
|
12
|
+
padding: var(--intergalactic-spacing-3x, 12px);
|
|
14
13
|
}
|
|
15
14
|
|
|
16
15
|
STitle {
|
|
17
|
-
color: var(--
|
|
18
|
-
margin-bottom: 8px;
|
|
16
|
+
color: var(--intergalactic-text-secondary, #6c6e79);
|
|
17
|
+
margin-bottom: var(--intergalactic-spacing-2x, 8px);
|
|
19
18
|
}
|
|
20
19
|
|
|
21
20
|
SDotGroup {
|
|
@@ -27,8 +26,8 @@ SDot {
|
|
|
27
26
|
width: 8px;
|
|
28
27
|
height: 8px;
|
|
29
28
|
border-radius: 50%;
|
|
30
|
-
margin-right: 8px;
|
|
31
|
-
background: var(--
|
|
29
|
+
margin-right: var(--intergalactic-spacing-2x, 8px);
|
|
30
|
+
background: var(--intergalactic-icon-secondary-info, #2bb3ff);
|
|
32
31
|
}
|
|
33
32
|
|
|
34
33
|
SDot[color] {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@import './var.css';
|
|
2
2
|
|
|
3
3
|
SCircle {
|
|
4
|
-
fill: var(--green
|
|
5
|
-
stroke: #
|
|
4
|
+
fill: var(--intergalactic-chart-palette-order-green, #59ddaa);
|
|
5
|
+
stroke: var(--intergalactic-chart-grid-border, #ffffff);
|
|
6
6
|
stroke-width: 2px;
|
|
7
7
|
fill-opacity: 0.5;
|
|
8
8
|
transition-property: cx, cy;
|
|
@@ -19,7 +19,7 @@ SCircle[color] {
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
SIntersection {
|
|
22
|
-
stroke: #
|
|
22
|
+
stroke: var(--intergalactic-chart-grid-border, #ffffff);
|
|
23
23
|
stroke-width: 2px;
|
|
24
24
|
fill-opacity: 0;
|
|
25
25
|
|
package/lib/es6/Area.js
CHANGED
|
@@ -26,18 +26,18 @@ var style = (
|
|
|
26
26
|
/*__reshadow_css_start__*/
|
|
27
27
|
_sstyled.insert(
|
|
28
28
|
/*__inner_css_start__*/
|
|
29
|
-
".
|
|
29
|
+
".___SArea_qi5s9_gg_{fill:var(--intergalactic-chart-palette-order-blue,#2bb3ff);fill-opacity:.2}.___SArea_qi5s9_gg_.__color_qi5s9_gg_{fill:var(--color_qi5s9)}.___SAreaLine_qi5s9_gg_{stroke:var(--intergalactic-chart-palette-order-blue,#2bb3ff);stroke-width:3;fill:transparent}.___SAreaLine_qi5s9_gg_.__color_qi5s9_gg_{stroke:var(--color_qi5s9)}.___SArea_qi5s9_gg_,.___SAreaLine_qi5s9_gg_{transition-property:d;transition-duration:var(--duration_qi5s9);transition-timing-function:ease-in-out}.___SNull_qi5s9_gg_{fill:transparent;stroke:var(--intergalactic-chart-grid-x-axis,#c4c7cf);stroke-dasharray:4}.___SNull_qi5s9_gg_.__hide_qi5s9_gg_{display:none}"
|
|
30
30
|
/*__inner_css_end__*/
|
|
31
|
-
, "
|
|
31
|
+
, "qi5s9_gg_")
|
|
32
32
|
/*__reshadow_css_end__*/
|
|
33
33
|
, {
|
|
34
|
-
"__SArea": "
|
|
35
|
-
"_color": "
|
|
36
|
-
"--color": "--
|
|
37
|
-
"__SAreaLine": "
|
|
38
|
-
"--duration": "--
|
|
39
|
-
"__SNull": "
|
|
40
|
-
"_hide": "
|
|
34
|
+
"__SArea": "___SArea_qi5s9_gg_",
|
|
35
|
+
"_color": "__color_qi5s9_gg_",
|
|
36
|
+
"--color": "--color_qi5s9",
|
|
37
|
+
"__SAreaLine": "___SAreaLine_qi5s9_gg_",
|
|
38
|
+
"--duration": "--duration_qi5s9",
|
|
39
|
+
"__SNull": "___SNull_qi5s9_gg_",
|
|
40
|
+
"_hide": "__hide_qi5s9_gg_"
|
|
41
41
|
});
|
|
42
42
|
|
|
43
43
|
var AreaRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Axis.js
CHANGED
|
@@ -27,23 +27,23 @@ var style = (
|
|
|
27
27
|
/*__reshadow_css_start__*/
|
|
28
28
|
_sstyled.insert(
|
|
29
29
|
/*__inner_css_start__*/
|
|
30
|
-
".
|
|
30
|
+
".___SAxis_mvhgo_gg_{stroke:var(--intergalactic-chart-grid-x-axis,#c4c7cf)}.___SAxis_mvhgo_gg_.__hide_mvhgo_gg_{display:none}.___STick_mvhgo_gg_{font-size:var(--intergalactic-fs-100,12px);fill:var(--intergalactic-chart-grid-text-label,#6c6e79)}.___STick_mvhgo_gg_.__hide_mvhgo_gg_{display:none}.___SGrid_mvhgo_gg_{fill:transparent;stroke:var(--intergalactic-border-secondary,#e0e1e9)}.___STitle_mvhgo_gg_{font-size:var(--intergalactic-fs-100,12px);fill:var(--intergalactic-text-hint,#6c6e79);transform-origin:var(--transform-origin_mvhgo)}.___STitle_mvhgo_gg_._position_top_mvhgo_gg_{text-anchor:middle}.___STitle_mvhgo_gg_._position_bottom_mvhgo_gg_{text-anchor:middle;alignment-baseline:hanging}.___STitle_mvhgo_gg_._position_right_mvhgo_gg_{transform:rotate(-90deg);alignment-baseline:middle;text-anchor:middle}.___STitle_mvhgo_gg_._position_left_mvhgo_gg_{transform:rotate(-90deg);text-anchor:middle;alignment-baseline:middle}.___STick_mvhgo_gg_._position_top_mvhgo_gg_{transform:translateY(-12px);text-anchor:middle}.___STick_mvhgo_gg_._position_bottom_mvhgo_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_mvhgo_gg_._position_right_mvhgo_gg_{transform:translateX(16px);text-anchor:start;alignment-baseline:middle}.___STick_mvhgo_gg_._position_left_mvhgo_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}.___STick_mvhgo_gg_._position_custom_0_mvhgo_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_mvhgo_gg_._position_custom_1_mvhgo_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}"
|
|
31
31
|
/*__inner_css_end__*/
|
|
32
|
-
, "
|
|
32
|
+
, "mvhgo_gg_")
|
|
33
33
|
/*__reshadow_css_end__*/
|
|
34
34
|
, {
|
|
35
|
-
"__SAxis": "
|
|
36
|
-
"_hide": "
|
|
37
|
-
"__STick": "
|
|
38
|
-
"__SGrid": "
|
|
39
|
-
"__STitle": "
|
|
40
|
-
"--transform-origin": "--transform-
|
|
41
|
-
"_position_top": "
|
|
42
|
-
"_position_bottom": "
|
|
43
|
-
"_position_right": "
|
|
44
|
-
"_position_left": "
|
|
45
|
-
"_position_custom_0": "
|
|
46
|
-
"_position_custom_1": "
|
|
35
|
+
"__SAxis": "___SAxis_mvhgo_gg_",
|
|
36
|
+
"_hide": "__hide_mvhgo_gg_",
|
|
37
|
+
"__STick": "___STick_mvhgo_gg_",
|
|
38
|
+
"__SGrid": "___SGrid_mvhgo_gg_",
|
|
39
|
+
"__STitle": "___STitle_mvhgo_gg_",
|
|
40
|
+
"--transform-origin": "--transform-origin_mvhgo",
|
|
41
|
+
"_position_top": "_position_top_mvhgo_gg_",
|
|
42
|
+
"_position_bottom": "_position_bottom_mvhgo_gg_",
|
|
43
|
+
"_position_right": "_position_right_mvhgo_gg_",
|
|
44
|
+
"_position_left": "_position_left_mvhgo_gg_",
|
|
45
|
+
"_position_custom_0": "_position_custom_0_mvhgo_gg_",
|
|
46
|
+
"_position_custom_1": "_position_custom_1_mvhgo_gg_"
|
|
47
47
|
});
|
|
48
48
|
var CUSTOM_0 = Symbol('custom_0');
|
|
49
49
|
var CUSTOM_1 = Symbol('custom_1');
|
package/lib/es6/Bar.js
CHANGED
|
@@ -24,17 +24,17 @@ var style = (
|
|
|
24
24
|
/*__reshadow_css_start__*/
|
|
25
25
|
_sstyled.insert(
|
|
26
26
|
/*__inner_css_start__*/
|
|
27
|
-
".
|
|
27
|
+
".___SBar_r812c_gg_{fill:var(--intergalactic-chart-palette-order-blue,#2bb3ff);transition-property:height,width,y;transition-duration:var(--duration_r812c);transition-timing-function:ease-in-out}.___SBar_r812c_gg_.__color_r812c_gg_{fill:var(--color_r812c)}.___SBar_r812c_gg_.__hide_r812c_gg_{display:none}.___SBackground_r812c_gg_{fill:var(--intergalactic-chart-palette-order-other-data,#c4c7cf)}"
|
|
28
28
|
/*__inner_css_end__*/
|
|
29
|
-
, "
|
|
29
|
+
, "r812c_gg_")
|
|
30
30
|
/*__reshadow_css_end__*/
|
|
31
31
|
, {
|
|
32
|
-
"__SBar": "
|
|
33
|
-
"--duration": "--
|
|
34
|
-
"_color": "
|
|
35
|
-
"--color": "--
|
|
36
|
-
"_hide": "
|
|
37
|
-
"__SBackground": "
|
|
32
|
+
"__SBar": "___SBar_r812c_gg_",
|
|
33
|
+
"--duration": "--duration_r812c",
|
|
34
|
+
"_color": "__color_r812c_gg_",
|
|
35
|
+
"--color": "--color_r812c",
|
|
36
|
+
"_hide": "__hide_r812c_gg_",
|
|
37
|
+
"__SBackground": "___SBackground_r812c_gg_"
|
|
38
38
|
});
|
|
39
39
|
|
|
40
40
|
var BarRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Bubble.js
CHANGED
|
@@ -32,19 +32,19 @@ var style = (
|
|
|
32
32
|
/*__reshadow_css_start__*/
|
|
33
33
|
_sstyled.insert(
|
|
34
34
|
/*__inner_css_start__*/
|
|
35
|
-
".
|
|
35
|
+
".___SBubble_156oi_gg_{fill:var(--intergalactic-chart-palette-order-blue,#2bb3ff);stroke:var(--intergalactic-chart-grid-border,#fff);stroke-width:2px;transition-property:cx,cy;transition-duration:var(--duration_156oi);transition-timing-function:ease-in-out;opacity:.5}.___SBubble_156oi_gg_:hover{opacity:.8}.___SBubble_156oi_gg_.__color_156oi_gg_{fill:var(--color_156oi)}.___SCenter_156oi_gg_{text-anchor:middle;font-size:calc(var(--intergalactic-fs-100, 12px) - 1px);stroke:var(--intergalactic-chart-palette-order-blue,#2bb3ff)}.___SCenter_156oi_gg_.__color_156oi_gg_{stroke:var(--color_156oi)}.___SLabel_156oi_gg_{fill:var(--intergalactic-chart-palette-order-blue,#2bb3ff)}.___SLabel_156oi_gg_._position_right_156oi_gg_{text-anchor:end}.___SLabel_156oi_gg_._position_left_156oi_gg_{text-anchor:start}.___SLabel_156oi_gg_.__color_156oi_gg_{fill:var(--color_156oi)}"
|
|
36
36
|
/*__inner_css_end__*/
|
|
37
|
-
, "
|
|
37
|
+
, "156oi_gg_")
|
|
38
38
|
/*__reshadow_css_end__*/
|
|
39
39
|
, {
|
|
40
|
-
"__SBubble": "
|
|
41
|
-
"--duration": "--
|
|
42
|
-
"_color": "
|
|
43
|
-
"--color": "--
|
|
44
|
-
"__SCenter": "
|
|
45
|
-
"__SLabel": "
|
|
46
|
-
"_position_right": "
|
|
47
|
-
"_position_left": "
|
|
40
|
+
"__SBubble": "___SBubble_156oi_gg_",
|
|
41
|
+
"--duration": "--duration_156oi",
|
|
42
|
+
"_color": "__color_156oi_gg_",
|
|
43
|
+
"--color": "--color_156oi",
|
|
44
|
+
"__SCenter": "___SCenter_156oi_gg_",
|
|
45
|
+
"__SLabel": "___SLabel_156oi_gg_",
|
|
46
|
+
"_position_right": "_position_right_156oi_gg_",
|
|
47
|
+
"_position_left": "_position_left_156oi_gg_"
|
|
48
48
|
});
|
|
49
49
|
|
|
50
50
|
var BubbleRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Donut.js
CHANGED
|
@@ -34,16 +34,16 @@ var style = (
|
|
|
34
34
|
/*__reshadow_css_start__*/
|
|
35
35
|
_sstyled.insert(
|
|
36
36
|
/*__inner_css_start__*/
|
|
37
|
-
".
|
|
37
|
+
".___SPie_kylww_gg_{stroke:var(--intergalactic-chart-grid-border,#fff);fill:var(--intergalactic-chart-palette-order-blue,#2bb3ff)}.___SPie_kylww_gg_.__color_kylww_gg_{fill:var(--color_kylww)}.___SEmptyData_kylww_gg_{fill:var(--intergalactic-chart-palette-order-null,#e0e1e9)}.___SEmptyData_kylww_gg_.__color_kylww_gg_{fill:var(--color_kylww)}.___SLabel_kylww_gg_{text-anchor:middle;vertical-anchor:middle}"
|
|
38
38
|
/*__inner_css_end__*/
|
|
39
|
-
, "
|
|
39
|
+
, "kylww_gg_")
|
|
40
40
|
/*__reshadow_css_end__*/
|
|
41
41
|
, {
|
|
42
|
-
"__SPie": "
|
|
43
|
-
"_color": "
|
|
44
|
-
"--color": "--
|
|
45
|
-
"__SEmptyData": "
|
|
46
|
-
"__SLabel": "
|
|
42
|
+
"__SPie": "___SPie_kylww_gg_",
|
|
43
|
+
"_color": "__color_kylww_gg_",
|
|
44
|
+
"--color": "--color_kylww",
|
|
45
|
+
"__SEmptyData": "___SEmptyData_kylww_gg_",
|
|
46
|
+
"__SLabel": "___SLabel_kylww_gg_"
|
|
47
47
|
});
|
|
48
48
|
var DEFAULT_INSTANCE = Symbol('DEFAULT_INSTANCE');
|
|
49
49
|
|
package/lib/es6/Dots.js
CHANGED
|
@@ -12,18 +12,18 @@ var style = (
|
|
|
12
12
|
/*__reshadow_css_start__*/
|
|
13
13
|
_sstyled.insert(
|
|
14
14
|
/*__inner_css_start__*/
|
|
15
|
-
".
|
|
15
|
+
".___SDots_6eln9_gg_ .___SDot_6eln9_gg_{transition-duration:var(--duration_6eln9)}.___SDot_6eln9_gg_{stroke-width:2px;stroke:var(--intergalactic-chart-grid-border,#fff);r:6px;fill:var(--intergalactic-chart-palette-order-blue,#2bb3ff);transition-property:cx,cy;transition-timing-function:ease-in-out}.___SDot_6eln9_gg_.__hide_6eln9_gg_{display:none}.___SDot_6eln9_gg_.__active_6eln9_gg_{r:8px}.___SDot_6eln9_gg_.__color_6eln9_gg_{fill:var(--color_6eln9)}"
|
|
16
16
|
/*__inner_css_end__*/
|
|
17
|
-
, "
|
|
17
|
+
, "6eln9_gg_")
|
|
18
18
|
/*__reshadow_css_end__*/
|
|
19
19
|
, {
|
|
20
|
-
"__SDots": "
|
|
21
|
-
"__SDot": "
|
|
22
|
-
"--duration": "--
|
|
23
|
-
"_hide": "
|
|
24
|
-
"_active": "
|
|
25
|
-
"_color": "
|
|
26
|
-
"--color": "--
|
|
20
|
+
"__SDots": "___SDots_6eln9_gg_",
|
|
21
|
+
"__SDot": "___SDot_6eln9_gg_",
|
|
22
|
+
"--duration": "--duration_6eln9",
|
|
23
|
+
"_hide": "__hide_6eln9_gg_",
|
|
24
|
+
"_active": "__active_6eln9_gg_",
|
|
25
|
+
"_color": "__color_6eln9_gg_",
|
|
26
|
+
"--color": "--color_6eln9"
|
|
27
27
|
});
|
|
28
28
|
var EXCLUDE_PROPS = ['data', 'scale', 'value', 'display'];
|
|
29
29
|
|
package/lib/es6/HorizontalBar.js
CHANGED
|
@@ -23,17 +23,17 @@ var style = (
|
|
|
23
23
|
/*__reshadow_css_start__*/
|
|
24
24
|
_sstyled.insert(
|
|
25
25
|
/*__inner_css_start__*/
|
|
26
|
-
".
|
|
26
|
+
".___SBar_r812c_gg_{fill:var(--intergalactic-chart-palette-order-blue,#2bb3ff);transition-property:height,width,y;transition-duration:var(--duration_r812c);transition-timing-function:ease-in-out}.___SBar_r812c_gg_.__color_r812c_gg_{fill:var(--color_r812c)}.___SBar_r812c_gg_.__hide_r812c_gg_{display:none}.___SBackground_r812c_gg_{fill:var(--intergalactic-chart-palette-order-other-data,#c4c7cf)}"
|
|
27
27
|
/*__inner_css_end__*/
|
|
28
|
-
, "
|
|
28
|
+
, "r812c_gg_")
|
|
29
29
|
/*__reshadow_css_end__*/
|
|
30
30
|
, {
|
|
31
|
-
"__SBar": "
|
|
32
|
-
"--duration": "--
|
|
33
|
-
"_color": "
|
|
34
|
-
"--color": "--
|
|
35
|
-
"_hide": "
|
|
36
|
-
"__SBackground": "
|
|
31
|
+
"__SBar": "___SBar_r812c_gg_",
|
|
32
|
+
"--duration": "--duration_r812c",
|
|
33
|
+
"_color": "__color_r812c_gg_",
|
|
34
|
+
"--color": "--color_r812c",
|
|
35
|
+
"_hide": "__hide_r812c_gg_",
|
|
36
|
+
"__SBackground": "___SBackground_r812c_gg_"
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
var HorizontalBarRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Hover.js
CHANGED
|
@@ -24,13 +24,13 @@ var style = (
|
|
|
24
24
|
/*__reshadow_css_start__*/
|
|
25
25
|
_sstyled.insert(
|
|
26
26
|
/*__inner_css_start__*/
|
|
27
|
-
".
|
|
27
|
+
".___SHoverLine_cffre_gg_{stroke:var(--intergalactic-chart-grid-x-axis,#c4c7cf)}.___SHoverRect_cffre_gg_{fill:var(--intergalactic-chart-grid-bar-chart-hover,rgba(196,199,207,.3))}"
|
|
28
28
|
/*__inner_css_end__*/
|
|
29
|
-
, "
|
|
29
|
+
, "cffre_gg_")
|
|
30
30
|
/*__reshadow_css_end__*/
|
|
31
31
|
, {
|
|
32
|
-
"__SHoverLine": "
|
|
33
|
-
"__SHoverRect": "
|
|
32
|
+
"__SHoverLine": "___SHoverLine_cffre_gg_",
|
|
33
|
+
"__SHoverRect": "___SHoverRect_cffre_gg_"
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
var Hover = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Line.js
CHANGED
|
@@ -25,17 +25,17 @@ var style = (
|
|
|
25
25
|
/*__reshadow_css_start__*/
|
|
26
26
|
_sstyled.insert(
|
|
27
27
|
/*__inner_css_start__*/
|
|
28
|
-
".
|
|
28
|
+
".___SLine_byqcx_gg_{fill:transparent;stroke-width:3;stroke:var(--intergalactic-chart-palette-order-blue,#2bb3ff);transition-property:d;transition-duration:var(--duration_byqcx);transition-timing-function:ease-in-out}.___SLine_byqcx_gg_.__color_byqcx_gg_{stroke:var(--color_byqcx)}.___SLine_byqcx_gg_.__hide_byqcx_gg_{display:none}.___SNull_byqcx_gg_{fill:transparent;stroke:var(-intergalactic-border-primary);stroke-dasharray:4}.___SNull_byqcx_gg_.__hide_byqcx_gg_{display:none}"
|
|
29
29
|
/*__inner_css_end__*/
|
|
30
|
-
, "
|
|
30
|
+
, "byqcx_gg_")
|
|
31
31
|
/*__reshadow_css_end__*/
|
|
32
32
|
, {
|
|
33
|
-
"__SLine": "
|
|
34
|
-
"--duration": "--
|
|
35
|
-
"_color": "
|
|
36
|
-
"--color": "--
|
|
37
|
-
"_hide": "
|
|
38
|
-
"__SNull": "
|
|
33
|
+
"__SLine": "___SLine_byqcx_gg_",
|
|
34
|
+
"--duration": "--duration_byqcx",
|
|
35
|
+
"_color": "__color_byqcx_gg_",
|
|
36
|
+
"--color": "--color_byqcx",
|
|
37
|
+
"_hide": "__hide_byqcx_gg_",
|
|
38
|
+
"__SNull": "___SNull_byqcx_gg_"
|
|
39
39
|
});
|
|
40
40
|
|
|
41
41
|
var LineRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Plot.js
CHANGED
|
@@ -31,13 +31,13 @@ var style = (
|
|
|
31
31
|
/*__reshadow_css_start__*/
|
|
32
32
|
_sstyled.insert(
|
|
33
33
|
/*__inner_css_start__*/
|
|
34
|
-
".
|
|
34
|
+
".___SPlot_1ii1w_gg_{overflow:hidden}.___SPlot_1ii1w_gg_:active,.___SPlot_1ii1w_gg_:focus{outline:0;text-decoration:none}foreignObject[data-aria-only]{pointer-events:none}.___SPlot_1ii1w_gg_.__keyboardFocused_1ii1w_gg_{border:1px solid var(--intergalactic-chart-palette-order-blue-second-order,#008ff8);box-shadow:var(--intergalactic-keyboard-focus,0 0 0 3px rgba(0,143,248,.3))}"
|
|
35
35
|
/*__inner_css_end__*/
|
|
36
|
-
, "
|
|
36
|
+
, "1ii1w_gg_")
|
|
37
37
|
/*__reshadow_css_end__*/
|
|
38
38
|
, {
|
|
39
|
-
"__SPlot": "
|
|
40
|
-
"_keyboardFocused": "
|
|
39
|
+
"__SPlot": "___SPlot_1ii1w_gg_",
|
|
40
|
+
"_keyboardFocused": "__keyboardFocused_1ii1w_gg_"
|
|
41
41
|
});
|
|
42
42
|
|
|
43
43
|
var PlotRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/RadialTree.js
CHANGED
|
@@ -34,20 +34,20 @@ var style = (
|
|
|
34
34
|
/*__reshadow_css_start__*/
|
|
35
35
|
_sstyled.insert(
|
|
36
36
|
/*__inner_css_start__*/
|
|
37
|
-
".
|
|
37
|
+
".___SRadian_nh54w_gg_{cursor:pointer;fill:var(--intergalactic-chart-palette-order-blue-second-order,#008ff8)}.___SLine_nh54w_gg_{stroke:var(--intergalactic-chart-palette-order-blue-second-order,#008ff8)}.___SLine_nh54w_gg_.__color_nh54w_gg_{stroke:var(--color_nh54w)}.___SCap_nh54w_gg_{transition:r .1s}.___SLabel_nh54w_gg_{fill:var(--color_nh54w);cursor:var(--text-cursor_nh54w)}.___SRadian_nh54w_gg_:hover .___SLabel_nh54w_gg_{fill:var(--color-hovered_nh54w)}@media (prefers-reduced-motion){.___SLineCap_nh54w_gg_{transition:none}}"
|
|
38
38
|
/*__inner_css_end__*/
|
|
39
|
-
, "
|
|
39
|
+
, "nh54w_gg_")
|
|
40
40
|
/*__reshadow_css_end__*/
|
|
41
41
|
, {
|
|
42
|
-
"__SRadian": "
|
|
43
|
-
"__SLine": "
|
|
44
|
-
"_color": "
|
|
45
|
-
"--color": "--
|
|
46
|
-
"__SCap": "
|
|
47
|
-
"__SLabel": "
|
|
48
|
-
"--text-cursor": "--text-
|
|
49
|
-
"--color-hovered": "--color-
|
|
50
|
-
"__SLineCap": "
|
|
42
|
+
"__SRadian": "___SRadian_nh54w_gg_",
|
|
43
|
+
"__SLine": "___SLine_nh54w_gg_",
|
|
44
|
+
"_color": "__color_nh54w_gg_",
|
|
45
|
+
"--color": "--color_nh54w",
|
|
46
|
+
"__SCap": "___SCap_nh54w_gg_",
|
|
47
|
+
"__SLabel": "___SLabel_nh54w_gg_",
|
|
48
|
+
"--text-cursor": "--text-cursor_nh54w",
|
|
49
|
+
"--color-hovered": "--color-hovered_nh54w",
|
|
50
|
+
"__SLineCap": "___SLineCap_nh54w_gg_"
|
|
51
51
|
});
|
|
52
52
|
var baseAngle = -Math.PI / 2; // The top vertical line
|
|
53
53
|
|
package/lib/es6/ReferenceLine.js
CHANGED
|
@@ -25,19 +25,19 @@ var style = (
|
|
|
25
25
|
/*__reshadow_css_start__*/
|
|
26
26
|
_sstyled.insert(
|
|
27
27
|
/*__inner_css_start__*/
|
|
28
|
-
".
|
|
28
|
+
".___SReferenceLine_1e2tq_gg_{fill:none;stroke:var(--intergalactic-chart-grid-x-axis,#c4c7cf)}.___STitle_1e2tq_gg_{font-size:var(--intergalactic-fs-100,12px);fill:var(--intergalactic-chart-grid-text-label,#6c6e79);transform-origin:var(--transform-origin_1e2tq)}.___STitle_1e2tq_gg_._position_top_1e2tq_gg_{text-anchor:middle}.___STitle_1e2tq_gg_._position_bottom_1e2tq_gg_{text-anchor:middle;alignment-baseline:hanging}.___STitle_1e2tq_gg_._position_right_1e2tq_gg_{transform:rotate(-90deg);alignment-baseline:middle;text-anchor:middle}.___STitle_1e2tq_gg_._position_left_1e2tq_gg_{transform:rotate(-90deg);text-anchor:middle;alignment-baseline:middle}.___SBackground_1e2tq_gg_{fill:var(--intergalactic-chart-grid-period-bg,rgba(196,199,207,.2))}"
|
|
29
29
|
/*__inner_css_end__*/
|
|
30
|
-
, "
|
|
30
|
+
, "1e2tq_gg_")
|
|
31
31
|
/*__reshadow_css_end__*/
|
|
32
32
|
, {
|
|
33
|
-
"__SReferenceLine": "
|
|
34
|
-
"__STitle": "
|
|
35
|
-
"--transform-origin": "--transform-
|
|
36
|
-
"_position_top": "
|
|
37
|
-
"_position_bottom": "
|
|
38
|
-
"_position_right": "
|
|
39
|
-
"_position_left": "
|
|
40
|
-
"__SBackground": "
|
|
33
|
+
"__SReferenceLine": "___SReferenceLine_1e2tq_gg_",
|
|
34
|
+
"__STitle": "___STitle_1e2tq_gg_",
|
|
35
|
+
"--transform-origin": "--transform-origin_1e2tq",
|
|
36
|
+
"_position_top": "_position_top_1e2tq_gg_",
|
|
37
|
+
"_position_bottom": "_position_bottom_1e2tq_gg_",
|
|
38
|
+
"_position_right": "_position_right_1e2tq_gg_",
|
|
39
|
+
"_position_left": "_position_left_1e2tq_gg_",
|
|
40
|
+
"__SBackground": "___SBackground_1e2tq_gg_"
|
|
41
41
|
});
|
|
42
42
|
var side2direction = {
|
|
43
43
|
left: 'vertical',
|