@semcore/d3-chart 2.11.1 → 2.12.1
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 +10 -10
- package/lib/cjs/Axis.js +14 -14
- package/lib/cjs/Bar.js +9 -9
- package/lib/cjs/Bubble.js +11 -11
- package/lib/cjs/Donut.js +8 -8
- package/lib/cjs/Dots.js +10 -10
- package/lib/cjs/HorizontalBar.js +9 -9
- package/lib/cjs/Hover.js +4 -4
- package/lib/cjs/Line.js +9 -9
- package/lib/cjs/Plot.js +4 -4
- package/lib/cjs/Radar.js +97 -71
- package/lib/cjs/Radar.js.map +1 -1
- package/lib/cjs/RadialTree.js +13 -13
- package/lib/cjs/ReferenceLine.js +10 -10
- package/lib/cjs/ScatterPlot.js +8 -8
- package/lib/cjs/Tooltip.js +9 -9
- package/lib/cjs/Venn.js +8 -8
- package/lib/cjs/a11y/PlotA11yModule.js +3 -3
- package/lib/cjs/a11y/PlotA11yView.js +4 -4
- package/lib/cjs/types/Radar.js.map +1 -1
- package/lib/es6/Area.js +10 -10
- package/lib/es6/Axis.js +14 -14
- package/lib/es6/Bar.js +9 -9
- package/lib/es6/Bubble.js +11 -11
- package/lib/es6/Donut.js +8 -8
- package/lib/es6/Dots.js +10 -10
- package/lib/es6/HorizontalBar.js +9 -9
- package/lib/es6/Hover.js +4 -4
- package/lib/es6/Line.js +9 -9
- package/lib/es6/Plot.js +4 -4
- package/lib/es6/Radar.js +97 -71
- package/lib/es6/Radar.js.map +1 -1
- package/lib/es6/RadialTree.js +13 -13
- package/lib/es6/ReferenceLine.js +10 -10
- package/lib/es6/ScatterPlot.js +8 -8
- package/lib/es6/Tooltip.js +9 -9
- package/lib/es6/Venn.js +8 -8
- package/lib/es6/a11y/PlotA11yModule.js +3 -3
- package/lib/es6/a11y/PlotA11yView.js +4 -4
- package/lib/es6/types/Radar.js.map +1 -1
- package/lib/types/types/Radar.d.ts +7 -1
- package/package.json +1 -1
package/lib/cjs/Tooltip.js
CHANGED
|
@@ -48,18 +48,18 @@ var style = (
|
|
|
48
48
|
/*__reshadow_css_start__*/
|
|
49
49
|
_core.sstyled.insert(
|
|
50
50
|
/*__inner_css_start__*/
|
|
51
|
-
".
|
|
51
|
+
".___STooltip_6b6vp_gg_{font-size:var(--intergalactic-fs-100, 12px);line-height:var(--intergalactic-lh-100, 133%);position:relative;background-color:var(--intergalactic-bg-primary-neutral, #ffffff);border-radius:var(--intergalactic-popper-rounded, 6px);border:1px solid var(--intergalactic-border-secondary, #e0e1e9);box-sizing:border-box;box-shadow:var(--intergalactic-box-shadow-popper, 0px 1px 12px 0px rgba(25, 27, 35, 0.15));padding:var(--intergalactic-spacing-3x, 12px)}.___STitle_6b6vp_gg_{color:var(--intergalactic-text-secondary, #6c6e79);margin-bottom:var(--intergalactic-spacing-2x, 8px)}.___SDotGroup_6b6vp_gg_{display:flex;align-items:center}.___SDot_6b6vp_gg_{width:8px;height:8px;border-radius:50%;margin-right:var(--intergalactic-spacing-2x, 8px);background:var(--intergalactic-icon-secondary-info, #2bb3ff)}.___SDot_6b6vp_gg_.__color_6b6vp_gg_{background:var(--color_6b6vp)}.___SFooter_6b6vp_gg_{background:var(--intergalactic-bg-secondary-neutral, #f4f5f9);padding:var(--intergalactic-spacing-1x, 4px) var(--intergalactic-spacing-3x, 12px);border-radius:0 0 var(--intergalactic-rounded-medium, 6px) var(--intergalactic-rounded-medium, 6px);margin:var(--intergalactic-spacing-3x, 12px) calc(-1*var(--intergalactic-spacing-3x, 12px)) calc(-1*var(--intergalactic-spacing-3x, 12px))}"
|
|
52
52
|
/*__inner_css_end__*/
|
|
53
|
-
, "
|
|
53
|
+
, "6b6vp_gg_")
|
|
54
54
|
/*__reshadow_css_end__*/
|
|
55
55
|
, {
|
|
56
|
-
"__STooltip": "
|
|
57
|
-
"__STitle": "
|
|
58
|
-
"__SDotGroup": "
|
|
59
|
-
"__SDot": "
|
|
60
|
-
"_color": "
|
|
61
|
-
"--color": "--
|
|
62
|
-
"__SFooter": "
|
|
56
|
+
"__STooltip": "___STooltip_6b6vp_gg_",
|
|
57
|
+
"__STitle": "___STitle_6b6vp_gg_",
|
|
58
|
+
"__SDotGroup": "___SDotGroup_6b6vp_gg_",
|
|
59
|
+
"__SDot": "___SDot_6b6vp_gg_",
|
|
60
|
+
"_color": "__color_6b6vp_gg_",
|
|
61
|
+
"--color": "--color_6b6vp",
|
|
62
|
+
"__SFooter": "___SFooter_6b6vp_gg_"
|
|
63
63
|
});
|
|
64
64
|
|
|
65
65
|
var TooltipRoot = /*#__PURE__*/function (_Component) {
|
package/lib/cjs/Venn.js
CHANGED
|
@@ -42,17 +42,17 @@ var style = (
|
|
|
42
42
|
/*__reshadow_css_start__*/
|
|
43
43
|
_core.sstyled.insert(
|
|
44
44
|
/*__inner_css_start__*/
|
|
45
|
-
".
|
|
45
|
+
".___SCircle_copyp_gg_,.___SIntersection_copyp_gg_{stroke:var(--intergalactic-chart-grid-border, #ffffff);stroke-width:2px}.___SCircle_copyp_gg_{fill:var(--intergalactic-chart-palette-order-2, #59ddaa);fill-opacity:.5;transition-property:cx,cy;transition-duration:var(--duration_copyp);transition-timing-function:ease-in-out}@media (hover:hover){.___SCircle_copyp_gg_:hover{fill-opacity:.7}}.___SCircle_copyp_gg_.__color_copyp_gg_{fill:var(--color_copyp)}.___SCircle_copyp_gg_.__transparent_copyp_gg_{opacity:.3}.___SIntersection_copyp_gg_{fill-opacity:0}@media (hover:hover){.___SIntersection_copyp_gg_:hover{fill-opacity:.1}}.___SIntersection_copyp_gg_.__transparent_copyp_gg_{opacity:.3}"
|
|
46
46
|
/*__inner_css_end__*/
|
|
47
|
-
, "
|
|
47
|
+
, "copyp_gg_")
|
|
48
48
|
/*__reshadow_css_end__*/
|
|
49
49
|
, {
|
|
50
|
-
"__SCircle": "
|
|
51
|
-
"--duration": "--
|
|
52
|
-
"_color": "
|
|
53
|
-
"--color": "--
|
|
54
|
-
"_transparent": "
|
|
55
|
-
"__SIntersection": "
|
|
50
|
+
"__SCircle": "___SCircle_copyp_gg_",
|
|
51
|
+
"--duration": "--duration_copyp",
|
|
52
|
+
"_color": "__color_copyp_gg_",
|
|
53
|
+
"--color": "--color_copyp",
|
|
54
|
+
"_transparent": "__transparent_copyp_gg_",
|
|
55
|
+
"__SIntersection": "___SIntersection_copyp_gg_"
|
|
56
56
|
});
|
|
57
57
|
|
|
58
58
|
var VennRoot = /*#__PURE__*/function (_Component) {
|
|
@@ -32,12 +32,12 @@ var styles = (
|
|
|
32
32
|
/*__reshadow_css_start__*/
|
|
33
33
|
_core.sstyled.insert(
|
|
34
34
|
/*__inner_css_start__*/
|
|
35
|
-
".
|
|
35
|
+
".___SPlotA11yModule_16al9_gg_{-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;opacity:0}.___SPlotA11yModule_16al9_gg_:focus{-webkit-user-select:all;-moz-user-select:all;user-select:all;pointer-events:all;opacity:1}"
|
|
36
36
|
/*__inner_css_end__*/
|
|
37
|
-
, "
|
|
37
|
+
, "16al9_gg_")
|
|
38
38
|
/*__reshadow_css_end__*/
|
|
39
39
|
, {
|
|
40
|
-
"__SPlotA11yModule": "
|
|
40
|
+
"__SPlotA11yModule": "___SPlotA11yModule_16al9_gg_"
|
|
41
41
|
});
|
|
42
42
|
var globalWasFocused = false;
|
|
43
43
|
var globalNavWithKeyboard = false;
|
|
@@ -40,13 +40,13 @@ var styles = (
|
|
|
40
40
|
/*__reshadow_css_start__*/
|
|
41
41
|
_core.sstyled.insert(
|
|
42
42
|
/*__inner_css_start__*/
|
|
43
|
-
".
|
|
43
|
+
".___SPlotA11yView_7k9i9_gg_{-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;opacity:0;background-color:var(--intergalactic-bg-primary-neutral, #ffffff);color:var(--intergalactic-text-primary, #191b23);border:3px solid var(--intergalactic-border-primary, #c4c7cf);font-size:var(--intergalactic-fs-50, 10px);padding:2px;width:200px;height:200px;max-width:80%;max-height:80%;overflow:auto}.___SPlotA11yView_7k9i9_gg_.__focus-within_7k9i9_gg_,.___SPlotA11yView_7k9i9_gg_:focus{-webkit-user-select:all;-moz-user-select:all;user-select:all;pointer-events:all;opacity:1;z-index:var(--intergalactic-z-index-overlay, 500);position:relative;display:block}.___SPlotA11yView_7k9i9_gg_:focus,.___SPlotA11yView_7k9i9_gg_:focus-within{-webkit-user-select:all;-moz-user-select:all;user-select:all;pointer-events:all;opacity:1;z-index:var(--intergalactic-z-index-overlay, 500);position:relative;display:block}.___SPlotA11yView_7k9i9_gg_ a{cursor:pointer;text-decoration:underline;margin-bottom:var(--intergalactic-spacing-2x, 8px);display:block}.___SPlotA11yView_7k9i9_gg_ table,.___SPlotA11yView_7k9i9_gg_ td,.___SPlotA11yView_7k9i9_gg_ th{border:1px solid var(--intergalactic-border-primary, #c4c7cf)}"
|
|
44
44
|
/*__inner_css_end__*/
|
|
45
|
-
, "
|
|
45
|
+
, "7k9i9_gg_")
|
|
46
46
|
/*__reshadow_css_end__*/
|
|
47
47
|
, {
|
|
48
|
-
"__SPlotA11yView": "
|
|
49
|
-
"_focus-within": "__focus-
|
|
48
|
+
"__SPlotA11yView": "___SPlotA11yView_7k9i9_gg_",
|
|
49
|
+
"_focus-within": "__focus-within_7k9i9_gg_"
|
|
50
50
|
});
|
|
51
51
|
|
|
52
52
|
var PlotA11yView = function PlotA11yView(_ref3) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Radar.js","names":[],"sources":["../../../src/types/Radar.ts"],"sourcesContent":["import IContext from './context';\nimport { MapProps } from './Plot';\nimport { ReturnEl } from '@semcore/core';\nimport { CurveFactory } from 'd3-shape';\n\nexport interface IRadarProps extends IContext {\n /**\n * Scale for radar element\n * */\n scale: any
|
|
1
|
+
{"version":3,"file":"Radar.js","names":[],"sources":["../../../src/types/Radar.ts"],"sourcesContent":["import IContext from './context';\nimport { MapProps } from './Plot';\nimport { ReturnEl } from '@semcore/core';\nimport { CurveFactory } from 'd3-shape';\n\nexport interface IRadarProps extends IContext {\n /**\n * Scale for radar element\n * */\n scale: any;\n /**\n * Graph type to be displayed\n * @default 'polygon'\n * */\n type?: 'polygon' | 'circle';\n /**\n * Indent from the edge of svg to graph\n * */\n offset?: number;\n\n /**\n * Label font size\n * @default 12\n * */\n textSize?: number;\n\n /**\n * Base angle of chart rotation\n * @default 0\n * @example Math.PI/3\n * */\n angleOffset?: number;\n}\n\nexport interface IRadarAxisProps extends IContext {\n /**\n * Sets the field name for categories\n * */\n dataKey: string;\n}\n\nexport interface IRadarAxisTicksProps {\n /**\n * Distance between auxiliary lines\n * @default 100\n * */\n tickSize?: number;\n}\n\nexport interface IRadarAxisLabelsProps {\n /**\n * Indent from graph to label\n * @default 10\n * */\n labelOffset?: number;\n}\n\nexport interface IRadialPolygonProps extends IContext {\n /**\n * Sets the field name for data\n * */\n dataKey: string;\n /**\n * Curve method\n * @default curveLinearClosed\n * */\n curve?: CurveFactory;\n /**\n * Sets the color of the entire polygon\n * */\n color?: string;\n /**\n * Sets the fill color\n * */\n fill?: string;\n}\n\nexport interface IRadialPolygonLineProps {\n /**\n * Sets the line color\n * */\n color?: string;\n}\n\nexport interface IRadialPolygonDotsProps {\n /**\n * Sets the dot color\n * */\n color?: string;\n}\n\nexport interface IRadarHoverProps extends IContext {}\n\ndeclare const Radar: (<T>(props: MapProps<IRadarProps & T>) => ReturnEl) & {\n Axis: (<T>(props: MapProps<IRadarAxisProps & T>) => ReturnEl) & {\n Ticks: <T>(props: MapProps<IRadarAxisTicksProps & T>) => ReturnEl;\n Labels: <T>(props: MapProps<IRadarAxisLabelsProps & T>) => ReturnEl;\n };\n Polygon: (<T>(props: MapProps<IRadialPolygonProps & T>) => ReturnEl) & {\n Line: <T>(props: MapProps<IRadialPolygonLineProps & T>) => ReturnEl;\n Dots: <T>(props: MapProps<IRadialPolygonDotsProps & T>) => ReturnEl;\n };\n Hover: <T>(props: MapProps<IRadarHoverProps & T>) => ReturnEl;\n};\n\nexport default Radar;\n"],"mappings":""}
|
package/lib/es6/Area.js
CHANGED
|
@@ -20,19 +20,19 @@ var style = (
|
|
|
20
20
|
/*__reshadow_css_start__*/
|
|
21
21
|
_sstyled.insert(
|
|
22
22
|
/*__inner_css_start__*/
|
|
23
|
-
".
|
|
23
|
+
".___SArea_1gwdu_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);fill-opacity:.2}.___SArea_1gwdu_gg_.__color_1gwdu_gg_{fill:var(--color_1gwdu)}.___SArea_1gwdu_gg_.__transparent_1gwdu_gg_{opacity:.3}.___SAreaLine_1gwdu_gg_{stroke:var(--intergalactic-chart-palette-order-1, #2bb3ff);stroke-width:3;fill:transparent}.___SAreaLine_1gwdu_gg_.__color_1gwdu_gg_{stroke:var(--color_1gwdu)}.___SAreaLine_1gwdu_gg_.__transparent_1gwdu_gg_{opacity:.3}.___SAreaLine_1gwdu_gg_,.___SArea_1gwdu_gg_{transition-property:d;transition-duration:var(--duration_1gwdu);transition-timing-function:ease-in-out}.___SNull_1gwdu_gg_{fill:transparent;stroke:var(--intergalactic-chart-grid-x-axis, #c4c7cf);stroke-dasharray:4}.___SNull_1gwdu_gg_.__hide_1gwdu_gg_{display:none}"
|
|
24
24
|
/*__inner_css_end__*/
|
|
25
|
-
, "
|
|
25
|
+
, "1gwdu_gg_")
|
|
26
26
|
/*__reshadow_css_end__*/
|
|
27
27
|
, {
|
|
28
|
-
"__SArea": "
|
|
29
|
-
"_color": "
|
|
30
|
-
"--color": "--
|
|
31
|
-
"_transparent": "
|
|
32
|
-
"__SAreaLine": "
|
|
33
|
-
"--duration": "--
|
|
34
|
-
"__SNull": "
|
|
35
|
-
"_hide": "
|
|
28
|
+
"__SArea": "___SArea_1gwdu_gg_",
|
|
29
|
+
"_color": "__color_1gwdu_gg_",
|
|
30
|
+
"--color": "--color_1gwdu",
|
|
31
|
+
"_transparent": "__transparent_1gwdu_gg_",
|
|
32
|
+
"__SAreaLine": "___SAreaLine_1gwdu_gg_",
|
|
33
|
+
"--duration": "--duration_1gwdu",
|
|
34
|
+
"__SNull": "___SNull_1gwdu_gg_",
|
|
35
|
+
"_hide": "__hide_1gwdu_gg_"
|
|
36
36
|
});
|
|
37
37
|
|
|
38
38
|
var AreaRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Axis.js
CHANGED
|
@@ -19,23 +19,23 @@ var style = (
|
|
|
19
19
|
/*__reshadow_css_start__*/
|
|
20
20
|
_sstyled.insert(
|
|
21
21
|
/*__inner_css_start__*/
|
|
22
|
-
".
|
|
22
|
+
".___SAxis_10pk5_gg_{stroke:var(--intergalactic-chart-grid-x-axis, #c4c7cf)}.___SAxis_10pk5_gg_.__hide_10pk5_gg_,.___STick_10pk5_gg_.__hide_10pk5_gg_{display:none}.___STick_10pk5_gg_{font-size:var(--intergalactic-fs-100, 12px);fill:var(--intergalactic-chart-grid-text-label, #6c6e79)}.___SGrid_10pk5_gg_{fill:transparent;stroke:var(--intergalactic-border-secondary, #e0e1e9)}.___STitle_10pk5_gg_{font-size:var(--intergalactic-fs-100, 12px);fill:var(--intergalactic-text-hint, #6c6e79);transform-origin:var(--transform-origin_10pk5)}.___STitle_10pk5_gg_._position_top_10pk5_gg_{text-anchor:middle}.___STitle_10pk5_gg_._position_bottom_10pk5_gg_{text-anchor:middle;alignment-baseline:hanging}.___STitle_10pk5_gg_._position_left_10pk5_gg_,.___STitle_10pk5_gg_._position_right_10pk5_gg_{transform:rotate(-90deg);text-anchor:middle;alignment-baseline:middle}.___STick_10pk5_gg_._position_top_10pk5_gg_{transform:translateY(-12px);text-anchor:middle}.___STick_10pk5_gg_._position_bottom_10pk5_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_10pk5_gg_._position_right_10pk5_gg_{transform:translateX(16px);text-anchor:start;alignment-baseline:middle}.___STick_10pk5_gg_._position_left_10pk5_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}.___STick_10pk5_gg_._position_custom_0_10pk5_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_10pk5_gg_._position_custom_1_10pk5_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}"
|
|
23
23
|
/*__inner_css_end__*/
|
|
24
|
-
, "
|
|
24
|
+
, "10pk5_gg_")
|
|
25
25
|
/*__reshadow_css_end__*/
|
|
26
26
|
, {
|
|
27
|
-
"__SAxis": "
|
|
28
|
-
"_hide": "
|
|
29
|
-
"__STick": "
|
|
30
|
-
"__SGrid": "
|
|
31
|
-
"__STitle": "
|
|
32
|
-
"--transform-origin": "--transform-
|
|
33
|
-
"_position_top": "
|
|
34
|
-
"_position_bottom": "
|
|
35
|
-
"_position_right": "
|
|
36
|
-
"_position_left": "
|
|
37
|
-
"_position_custom_0": "
|
|
38
|
-
"_position_custom_1": "
|
|
27
|
+
"__SAxis": "___SAxis_10pk5_gg_",
|
|
28
|
+
"_hide": "__hide_10pk5_gg_",
|
|
29
|
+
"__STick": "___STick_10pk5_gg_",
|
|
30
|
+
"__SGrid": "___SGrid_10pk5_gg_",
|
|
31
|
+
"__STitle": "___STitle_10pk5_gg_",
|
|
32
|
+
"--transform-origin": "--transform-origin_10pk5",
|
|
33
|
+
"_position_top": "_position_top_10pk5_gg_",
|
|
34
|
+
"_position_bottom": "_position_bottom_10pk5_gg_",
|
|
35
|
+
"_position_right": "_position_right_10pk5_gg_",
|
|
36
|
+
"_position_left": "_position_left_10pk5_gg_",
|
|
37
|
+
"_position_custom_0": "_position_custom_0_10pk5_gg_",
|
|
38
|
+
"_position_custom_1": "_position_custom_1_10pk5_gg_"
|
|
39
39
|
});
|
|
40
40
|
var CUSTOM_0 = Symbol('custom_0');
|
|
41
41
|
var CUSTOM_1 = Symbol('custom_1');
|
package/lib/es6/Bar.js
CHANGED
|
@@ -18,18 +18,18 @@ var style = (
|
|
|
18
18
|
/*__reshadow_css_start__*/
|
|
19
19
|
_sstyled.insert(
|
|
20
20
|
/*__inner_css_start__*/
|
|
21
|
-
".
|
|
21
|
+
".___SBar_hgtxy_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:height,width,y;transition-duration:var(--duration_hgtxy);transition-timing-function:ease-in-out}.___SBar_hgtxy_gg_.__color_hgtxy_gg_{fill:var(--color_hgtxy)}.___SBar_hgtxy_gg_.__hide_hgtxy_gg_{display:none}.___SBar_hgtxy_gg_.__transparent_hgtxy_gg_{opacity:.3}.___SBackground_hgtxy_gg_{fill:var(--intergalactic-chart-palette-order-other-data, #c4c7cf)}"
|
|
22
22
|
/*__inner_css_end__*/
|
|
23
|
-
, "
|
|
23
|
+
, "hgtxy_gg_")
|
|
24
24
|
/*__reshadow_css_end__*/
|
|
25
25
|
, {
|
|
26
|
-
"__SBar": "
|
|
27
|
-
"--duration": "--
|
|
28
|
-
"_color": "
|
|
29
|
-
"--color": "--
|
|
30
|
-
"_hide": "
|
|
31
|
-
"_transparent": "
|
|
32
|
-
"__SBackground": "
|
|
26
|
+
"__SBar": "___SBar_hgtxy_gg_",
|
|
27
|
+
"--duration": "--duration_hgtxy",
|
|
28
|
+
"_color": "__color_hgtxy_gg_",
|
|
29
|
+
"--color": "--color_hgtxy",
|
|
30
|
+
"_hide": "__hide_hgtxy_gg_",
|
|
31
|
+
"_transparent": "__transparent_hgtxy_gg_",
|
|
32
|
+
"__SBackground": "___SBackground_hgtxy_gg_"
|
|
33
33
|
});
|
|
34
34
|
|
|
35
35
|
var calcPartBarY = function calcPartBarY(y, minHeight, height) {
|
package/lib/es6/Bubble.js
CHANGED
|
@@ -23,20 +23,20 @@ var style = (
|
|
|
23
23
|
/*__reshadow_css_start__*/
|
|
24
24
|
_sstyled.insert(
|
|
25
25
|
/*__inner_css_start__*/
|
|
26
|
-
".
|
|
26
|
+
".___SBubble_1g6qs_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);stroke:var(--intergalactic-chart-grid-border, #ffffff);stroke-width:2px;transition-property:cx,cy;transition-duration:var(--duration_1g6qs);transition-timing-function:ease-in-out;opacity:.5}@media (hover:hover){.___SBubble_1g6qs_gg_:hover{opacity:.8}}.___SBubble_1g6qs_gg_.__color_1g6qs_gg_{fill:var(--color_1g6qs)}.___SBubble_1g6qs_gg_.__transparent_1g6qs_gg_{opacity:.3}.___SCenter_1g6qs_gg_{text-anchor:middle;font-size:calc(var(--intergalactic-fs-100, 12px) - 1px);stroke:var(--intergalactic-chart-palette-order-1, #2bb3ff)}.___SCenter_1g6qs_gg_.__color_1g6qs_gg_{stroke:var(--color_1g6qs)}.___SCenter_1g6qs_gg_.__transparent_1g6qs_gg_{opacity:.3}.___SLabel_1g6qs_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff)}.___SLabel_1g6qs_gg_._position_right_1g6qs_gg_{text-anchor:end}.___SLabel_1g6qs_gg_._position_left_1g6qs_gg_{text-anchor:start}.___SLabel_1g6qs_gg_.__color_1g6qs_gg_{fill:var(--color_1g6qs)}.___SLabel_1g6qs_gg_.__transparent_1g6qs_gg_{opacity:.3}"
|
|
27
27
|
/*__inner_css_end__*/
|
|
28
|
-
, "
|
|
28
|
+
, "1g6qs_gg_")
|
|
29
29
|
/*__reshadow_css_end__*/
|
|
30
30
|
, {
|
|
31
|
-
"__SBubble": "
|
|
32
|
-
"--duration": "--
|
|
33
|
-
"_color": "
|
|
34
|
-
"--color": "--
|
|
35
|
-
"_transparent": "
|
|
36
|
-
"__SCenter": "
|
|
37
|
-
"__SLabel": "
|
|
38
|
-
"_position_right": "
|
|
39
|
-
"_position_left": "
|
|
31
|
+
"__SBubble": "___SBubble_1g6qs_gg_",
|
|
32
|
+
"--duration": "--duration_1g6qs",
|
|
33
|
+
"_color": "__color_1g6qs_gg_",
|
|
34
|
+
"--color": "--color_1g6qs",
|
|
35
|
+
"_transparent": "__transparent_1g6qs_gg_",
|
|
36
|
+
"__SCenter": "___SCenter_1g6qs_gg_",
|
|
37
|
+
"__SLabel": "___SLabel_1g6qs_gg_",
|
|
38
|
+
"_position_right": "_position_right_1g6qs_gg_",
|
|
39
|
+
"_position_left": "_position_left_1g6qs_gg_"
|
|
40
40
|
});
|
|
41
41
|
|
|
42
42
|
var BubbleRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Donut.js
CHANGED
|
@@ -24,17 +24,17 @@ var style = (
|
|
|
24
24
|
/*__reshadow_css_start__*/
|
|
25
25
|
_sstyled.insert(
|
|
26
26
|
/*__inner_css_start__*/
|
|
27
|
-
".
|
|
27
|
+
".___SPie_swxm7_gg_{stroke:var(--intergalactic-chart-grid-border, #ffffff);fill:var(--intergalactic-chart-palette-order-1, #2bb3ff)}.___SPie_swxm7_gg_.__color_swxm7_gg_{fill:var(--color_swxm7)}.___SPie_swxm7_gg_.__transparent_swxm7_gg_{opacity:.3}.___SEmptyData_swxm7_gg_{fill:var(--intergalactic-chart-palette-order-null, #e0e1e9)}.___SEmptyData_swxm7_gg_.__color_swxm7_gg_{fill:var(--color_swxm7)}.___SLabel_swxm7_gg_{text-anchor:middle;vertical-anchor:middle}"
|
|
28
28
|
/*__inner_css_end__*/
|
|
29
|
-
, "
|
|
29
|
+
, "swxm7_gg_")
|
|
30
30
|
/*__reshadow_css_end__*/
|
|
31
31
|
, {
|
|
32
|
-
"__SPie": "
|
|
33
|
-
"_color": "
|
|
34
|
-
"--color": "--
|
|
35
|
-
"_transparent": "
|
|
36
|
-
"__SEmptyData": "
|
|
37
|
-
"__SLabel": "
|
|
32
|
+
"__SPie": "___SPie_swxm7_gg_",
|
|
33
|
+
"_color": "__color_swxm7_gg_",
|
|
34
|
+
"--color": "--color_swxm7",
|
|
35
|
+
"_transparent": "__transparent_swxm7_gg_",
|
|
36
|
+
"__SEmptyData": "___SEmptyData_swxm7_gg_",
|
|
37
|
+
"__SLabel": "___SLabel_swxm7_gg_"
|
|
38
38
|
});
|
|
39
39
|
var DEFAULT_INSTANCE = Symbol('DEFAULT_INSTANCE');
|
|
40
40
|
|
package/lib/es6/Dots.js
CHANGED
|
@@ -12,19 +12,19 @@ var style = (
|
|
|
12
12
|
/*__reshadow_css_start__*/
|
|
13
13
|
_sstyled.insert(
|
|
14
14
|
/*__inner_css_start__*/
|
|
15
|
-
".
|
|
15
|
+
".___SDots_130ku_gg_ .___SDot_130ku_gg_{transition-duration:var(--duration_130ku)}.___SDot_130ku_gg_{stroke-width:2px;stroke:var(--intergalactic-chart-grid-border, #ffffff);r:6px;fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:cx,cy;transition-timing-function:ease-in-out}.___SDot_130ku_gg_.__hide_130ku_gg_{display:none}.___SDot_130ku_gg_.__active_130ku_gg_{r:8px}.___SDot_130ku_gg_.__color_130ku_gg_{fill:var(--color_130ku)}.___SDot_130ku_gg_.__transparent_130ku_gg_{opacity:.3}"
|
|
16
16
|
/*__inner_css_end__*/
|
|
17
|
-
, "
|
|
17
|
+
, "130ku_gg_")
|
|
18
18
|
/*__reshadow_css_end__*/
|
|
19
19
|
, {
|
|
20
|
-
"__SDots": "
|
|
21
|
-
"__SDot": "
|
|
22
|
-
"--duration": "--
|
|
23
|
-
"_hide": "
|
|
24
|
-
"_active": "
|
|
25
|
-
"_color": "
|
|
26
|
-
"--color": "--
|
|
27
|
-
"_transparent": "
|
|
20
|
+
"__SDots": "___SDots_130ku_gg_",
|
|
21
|
+
"__SDot": "___SDot_130ku_gg_",
|
|
22
|
+
"--duration": "--duration_130ku",
|
|
23
|
+
"_hide": "__hide_130ku_gg_",
|
|
24
|
+
"_active": "__active_130ku_gg_",
|
|
25
|
+
"_color": "__color_130ku_gg_",
|
|
26
|
+
"--color": "--color_130ku",
|
|
27
|
+
"_transparent": "__transparent_130ku_gg_"
|
|
28
28
|
});
|
|
29
29
|
var EXCLUDE_PROPS = ['data', 'scale', 'value', 'display'];
|
|
30
30
|
|
package/lib/es6/HorizontalBar.js
CHANGED
|
@@ -17,18 +17,18 @@ var style = (
|
|
|
17
17
|
/*__reshadow_css_start__*/
|
|
18
18
|
_sstyled.insert(
|
|
19
19
|
/*__inner_css_start__*/
|
|
20
|
-
".
|
|
20
|
+
".___SBar_hgtxy_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:height,width,y;transition-duration:var(--duration_hgtxy);transition-timing-function:ease-in-out}.___SBar_hgtxy_gg_.__color_hgtxy_gg_{fill:var(--color_hgtxy)}.___SBar_hgtxy_gg_.__hide_hgtxy_gg_{display:none}.___SBar_hgtxy_gg_.__transparent_hgtxy_gg_{opacity:.3}.___SBackground_hgtxy_gg_{fill:var(--intergalactic-chart-palette-order-other-data, #c4c7cf)}"
|
|
21
21
|
/*__inner_css_end__*/
|
|
22
|
-
, "
|
|
22
|
+
, "hgtxy_gg_")
|
|
23
23
|
/*__reshadow_css_end__*/
|
|
24
24
|
, {
|
|
25
|
-
"__SBar": "
|
|
26
|
-
"--duration": "--
|
|
27
|
-
"_color": "
|
|
28
|
-
"--color": "--
|
|
29
|
-
"_hide": "
|
|
30
|
-
"_transparent": "
|
|
31
|
-
"__SBackground": "
|
|
25
|
+
"__SBar": "___SBar_hgtxy_gg_",
|
|
26
|
+
"--duration": "--duration_hgtxy",
|
|
27
|
+
"_color": "__color_hgtxy_gg_",
|
|
28
|
+
"--color": "--color_hgtxy",
|
|
29
|
+
"_hide": "__hide_hgtxy_gg_",
|
|
30
|
+
"_transparent": "__transparent_hgtxy_gg_",
|
|
31
|
+
"__SBackground": "___SBackground_hgtxy_gg_"
|
|
32
32
|
});
|
|
33
33
|
|
|
34
34
|
var HorizontalBarRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Hover.js
CHANGED
|
@@ -18,13 +18,13 @@ var style = (
|
|
|
18
18
|
/*__reshadow_css_start__*/
|
|
19
19
|
_sstyled.insert(
|
|
20
20
|
/*__inner_css_start__*/
|
|
21
|
-
".
|
|
21
|
+
".___SHoverLine_19teb_gg_{stroke:var(--intergalactic-chart-grid-x-axis, #c4c7cf)}.___SHoverRect_19teb_gg_{fill:var(--intergalactic-chart-grid-bar-chart-hover, rgba(196, 199, 207, 0.3))}"
|
|
22
22
|
/*__inner_css_end__*/
|
|
23
|
-
, "
|
|
23
|
+
, "19teb_gg_")
|
|
24
24
|
/*__reshadow_css_end__*/
|
|
25
25
|
, {
|
|
26
|
-
"__SHoverLine": "
|
|
27
|
-
"__SHoverRect": "
|
|
26
|
+
"__SHoverLine": "___SHoverLine_19teb_gg_",
|
|
27
|
+
"__SHoverRect": "___SHoverRect_19teb_gg_"
|
|
28
28
|
});
|
|
29
29
|
|
|
30
30
|
var Hover = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Line.js
CHANGED
|
@@ -19,18 +19,18 @@ var style = (
|
|
|
19
19
|
/*__reshadow_css_start__*/
|
|
20
20
|
_sstyled.insert(
|
|
21
21
|
/*__inner_css_start__*/
|
|
22
|
-
".
|
|
22
|
+
".___SLine_1hlam_gg_{fill:transparent;stroke-width:3;stroke:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:d;transition-duration:var(--duration_1hlam);transition-timing-function:ease-in-out}.___SLine_1hlam_gg_.__color_1hlam_gg_{stroke:var(--color_1hlam)}.___SLine_1hlam_gg_.__hide_1hlam_gg_{display:none}.___SLine_1hlam_gg_.__transparent_1hlam_gg_{opacity:.3}.___SNull_1hlam_gg_{fill:transparent;stroke:var(-intergalactic-border-primary);stroke-dasharray:4}.___SNull_1hlam_gg_.__hide_1hlam_gg_{display:none}"
|
|
23
23
|
/*__inner_css_end__*/
|
|
24
|
-
, "
|
|
24
|
+
, "1hlam_gg_")
|
|
25
25
|
/*__reshadow_css_end__*/
|
|
26
26
|
, {
|
|
27
|
-
"__SLine": "
|
|
28
|
-
"--duration": "--
|
|
29
|
-
"_color": "
|
|
30
|
-
"--color": "--
|
|
31
|
-
"_hide": "
|
|
32
|
-
"_transparent": "
|
|
33
|
-
"__SNull": "
|
|
27
|
+
"__SLine": "___SLine_1hlam_gg_",
|
|
28
|
+
"--duration": "--duration_1hlam",
|
|
29
|
+
"_color": "__color_1hlam_gg_",
|
|
30
|
+
"--color": "--color_1hlam",
|
|
31
|
+
"_hide": "__hide_1hlam_gg_",
|
|
32
|
+
"_transparent": "__transparent_1hlam_gg_",
|
|
33
|
+
"__SNull": "___SNull_1hlam_gg_"
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
var LineRoot = /*#__PURE__*/function (_Component) {
|
package/lib/es6/Plot.js
CHANGED
|
@@ -22,13 +22,13 @@ var style = (
|
|
|
22
22
|
/*__reshadow_css_start__*/
|
|
23
23
|
_sstyled.insert(
|
|
24
24
|
/*__inner_css_start__*/
|
|
25
|
-
".
|
|
25
|
+
".___SPlot_bpd15_gg_{overflow:hidden}.___SPlot_bpd15_gg_:active,.___SPlot_bpd15_gg_:focus{outline:0;text-decoration:none}foreignObject[data-aria-only]{pointer-events:none}.___SPlot_bpd15_gg_.__keyboardFocused_bpd15_gg_{border:1px solid var(--intergalactic-chart-palette-order-9, #008ff8);box-shadow:var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.3))}"
|
|
26
26
|
/*__inner_css_end__*/
|
|
27
|
-
, "
|
|
27
|
+
, "bpd15_gg_")
|
|
28
28
|
/*__reshadow_css_end__*/
|
|
29
29
|
, {
|
|
30
|
-
"__SPlot": "
|
|
31
|
-
"_keyboardFocused": "
|
|
30
|
+
"__SPlot": "___SPlot_bpd15_gg_",
|
|
31
|
+
"_keyboardFocused": "__keyboardFocused_bpd15_gg_"
|
|
32
32
|
});
|
|
33
33
|
|
|
34
34
|
var PlotRoot = /*#__PURE__*/function (_Component) {
|