@semcore/d3-chart 3.29.0 → 3.30.0-prerelease.10
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 +10 -4
- package/lib/cjs/Area.js +11 -11
- package/lib/cjs/Axis.js +14 -14
- package/lib/cjs/Bar.js +10 -10
- package/lib/cjs/Bubble.js +12 -12
- package/lib/cjs/Donut.js +9 -9
- package/lib/cjs/Dots.js +8 -8
- package/lib/cjs/HorizontalBar.js +10 -10
- package/lib/cjs/Hover.js +3 -3
- package/lib/cjs/Line.js +9 -9
- package/lib/cjs/Plot.js +3 -3
- package/lib/cjs/Radar.js +19 -19
- package/lib/cjs/RadialTree.js +11 -11
- package/lib/cjs/ReferenceLine.js +9 -9
- 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/focus.js +26 -37
- package/lib/cjs/a11y/focus.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/es6/Area.js +11 -11
- package/lib/es6/Axis.js +14 -14
- package/lib/es6/Bar.js +10 -10
- package/lib/es6/Bubble.js +12 -12
- package/lib/es6/Donut.js +9 -9
- package/lib/es6/Dots.js +8 -8
- package/lib/es6/HorizontalBar.js +10 -10
- package/lib/es6/Hover.js +3 -3
- package/lib/es6/Line.js +9 -9
- package/lib/es6/Plot.js +3 -3
- package/lib/es6/Radar.js +19 -19
- package/lib/es6/RadialTree.js +11 -11
- package/lib/es6/ReferenceLine.js +9 -9
- 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/focus.js +25 -36
- package/lib/es6/a11y/focus.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/types/a11y/focus.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
-
## [3.
|
|
5
|
+
## [3.30.0-prerelease.10] - 2024-02-16
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- a11y module "Skip to content after plot" link was not working in some cases.
|
|
10
|
+
|
|
11
|
+
## [3.29.0] - 2024-02-16
|
|
6
12
|
|
|
7
13
|
### Changed
|
|
8
14
|
|
|
@@ -110,7 +116,7 @@ CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangel
|
|
|
110
116
|
|
|
111
117
|
- Version preminor update due to children dependencies update (`@semcore/animation` [2.13.1 ~> 2.14.0], `@semcore/popper` [5.13.0 ~> 5.14.0], `@semcore/utils` [4.15.1 ~> 4.16.0], `@semcore/core` [2.12.1 ~> 2.13.0]).
|
|
112
118
|
|
|
113
|
-
## [3.21.4-prerelease.
|
|
119
|
+
## [3.21.4-prerelease.10] - 2023-12-20
|
|
114
120
|
|
|
115
121
|
### Fixed
|
|
116
122
|
|
|
@@ -123,7 +129,7 @@ CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangel
|
|
|
123
129
|
- Chart dots were not displaying in Firefox.
|
|
124
130
|
- Charts appearing animation in Firefox.
|
|
125
131
|
|
|
126
|
-
## [3.21.3-prerelease.
|
|
132
|
+
## [3.21.3-prerelease.10] - 2023-12-14
|
|
127
133
|
|
|
128
134
|
### Fixed
|
|
129
135
|
|
|
@@ -1275,7 +1281,7 @@ CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangel
|
|
|
1275
1281
|
|
|
1276
1282
|
- Fixed hover for `svg` element inside `XYPlot`.
|
|
1277
1283
|
|
|
1278
|
-
## [1.0.0-
|
|
1284
|
+
## [1.0.0-prerelease.10] - 2021-02-11
|
|
1279
1285
|
|
|
1280
1286
|
### Added
|
|
1281
1287
|
|
package/lib/cjs/Area.js
CHANGED
|
@@ -22,17 +22,17 @@ var _utils = require("./utils");
|
|
|
22
22
|
var _AnimatedClipPath = _interopRequireDefault(require("./AnimatedClipPath"));
|
|
23
23
|
var _Pattern = require("./Pattern");
|
|
24
24
|
/*__reshadow-styles__:"./style/area.shadow.css"*/
|
|
25
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
26
|
-
"__SArea": "
|
|
27
|
-
"_color": "
|
|
28
|
-
"--color": "--
|
|
29
|
-
"_pattern": "
|
|
30
|
-
"--pattern": "--
|
|
31
|
-
"_transparent": "
|
|
32
|
-
"__SAreaLine": "
|
|
33
|
-
"--duration": "--
|
|
34
|
-
"__SNull": "
|
|
35
|
-
"_hide": "
|
|
25
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SArea_d845g_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);fill-opacity:.2}.___SArea_d845g_gg_.__color_d845g_gg_{fill:var(--color_d845g)}.___SArea_d845g_gg_.__pattern_d845g_gg_{fill:var(--pattern_d845g);fill-opacity:.7}.___SArea_d845g_gg_.__transparent_d845g_gg_{opacity:.3}.___SAreaLine_d845g_gg_{stroke:var(--intergalactic-chart-palette-order-1, #2bb3ff);stroke-width:3;fill:transparent}.___SAreaLine_d845g_gg_.__color_d845g_gg_{stroke:var(--color_d845g)}.___SAreaLine_d845g_gg_.__transparent_d845g_gg_{opacity:.3}.___SAreaLine_d845g_gg_,.___SArea_d845g_gg_{transition-property:d;transition-duration:var(--duration_d845g);transition-timing-function:ease-in-out}.___SNull_d845g_gg_{fill:transparent;stroke:var(--intergalactic-chart-grid-x-axis, #c4c7cf);stroke-dasharray:4}.___SNull_d845g_gg_.__hide_d845g_gg_{display:none}" /*__inner_css_end__*/, "d845g_gg_") /*__reshadow_css_end__*/, {
|
|
26
|
+
"__SArea": "___SArea_d845g_gg_",
|
|
27
|
+
"_color": "__color_d845g_gg_",
|
|
28
|
+
"--color": "--color_d845g",
|
|
29
|
+
"_pattern": "__pattern_d845g_gg_",
|
|
30
|
+
"--pattern": "--pattern_d845g",
|
|
31
|
+
"_transparent": "__transparent_d845g_gg_",
|
|
32
|
+
"__SAreaLine": "___SAreaLine_d845g_gg_",
|
|
33
|
+
"--duration": "--duration_d845g",
|
|
34
|
+
"__SNull": "___SNull_d845g_gg_",
|
|
35
|
+
"_hide": "__hide_d845g_gg_"
|
|
36
36
|
});
|
|
37
37
|
var AreaRoot = /*#__PURE__*/function (_Component) {
|
|
38
38
|
(0, _inherits2["default"])(AreaRoot, _Component);
|
package/lib/cjs/Axis.js
CHANGED
|
@@ -18,20 +18,20 @@ var _createElement = _interopRequireDefault(require("./createElement"));
|
|
|
18
18
|
var _utils = require("./utils");
|
|
19
19
|
var _MAP_POSITION_AXIS, _MAP_POSITION_TICK;
|
|
20
20
|
/*__reshadow-styles__:"./style/axis.shadow.css"*/
|
|
21
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
22
|
-
"__SAxis": "
|
|
23
|
-
"_hide": "
|
|
24
|
-
"__STick": "
|
|
25
|
-
"__SGrid": "
|
|
26
|
-
"__STitle": "
|
|
27
|
-
"--transform-origin": "--transform-
|
|
28
|
-
"_position_top": "
|
|
29
|
-
"_position_bottom": "
|
|
30
|
-
"_position_right": "
|
|
31
|
-
"_position_left": "
|
|
32
|
-
"_verticalWritingMode": "
|
|
33
|
-
"_position_custom_0": "
|
|
34
|
-
"_position_custom_1": "
|
|
21
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SAxis_1gubh_gg_{stroke:var(--intergalactic-chart-grid-x-axis, #c4c7cf)}.___SAxis_1gubh_gg_.__hide_1gubh_gg_,.___STick_1gubh_gg_.__hide_1gubh_gg_{display:none}.___STick_1gubh_gg_{font-size:var(--intergalactic-fs-100, 12px);fill:var(--intergalactic-chart-grid-text-label, #6c6e79)}.___SGrid_1gubh_gg_{fill:transparent;stroke:var(--intergalactic-border-secondary, #e0e1e9)}.___STitle_1gubh_gg_{font-size:var(--intergalactic-fs-100, 12px);fill:var(--intergalactic-text-hint, #6c6e79);transform-origin:var(--transform-origin_1gubh)}.___STitle_1gubh_gg_._position_top_1gubh_gg_{text-anchor:middle}.___STitle_1gubh_gg_._position_bottom_1gubh_gg_{text-anchor:middle;alignment-baseline:hanging}.___STitle_1gubh_gg_._position_left_1gubh_gg_,.___STitle_1gubh_gg_._position_right_1gubh_gg_{transform:rotate(-90deg);text-anchor:middle;alignment-baseline:middle}.___STitle_1gubh_gg_._position_left_1gubh_gg_.__verticalWritingMode_1gubh_gg_,.___STitle_1gubh_gg_._position_right_1gubh_gg_.__verticalWritingMode_1gubh_gg_{writing-mode:vertical-rl;transform:none}.___STick_1gubh_gg_._position_top_1gubh_gg_{transform:translateY(-12px);text-anchor:middle}.___STick_1gubh_gg_._position_bottom_1gubh_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_1gubh_gg_._position_right_1gubh_gg_{transform:translateX(16px);text-anchor:start;alignment-baseline:middle}.___STick_1gubh_gg_._position_left_1gubh_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}.___STick_1gubh_gg_._position_custom_0_1gubh_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_1gubh_gg_._position_custom_1_1gubh_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}" /*__inner_css_end__*/, "1gubh_gg_") /*__reshadow_css_end__*/, {
|
|
22
|
+
"__SAxis": "___SAxis_1gubh_gg_",
|
|
23
|
+
"_hide": "__hide_1gubh_gg_",
|
|
24
|
+
"__STick": "___STick_1gubh_gg_",
|
|
25
|
+
"__SGrid": "___SGrid_1gubh_gg_",
|
|
26
|
+
"__STitle": "___STitle_1gubh_gg_",
|
|
27
|
+
"--transform-origin": "--transform-origin_1gubh",
|
|
28
|
+
"_position_top": "_position_top_1gubh_gg_",
|
|
29
|
+
"_position_bottom": "_position_bottom_1gubh_gg_",
|
|
30
|
+
"_position_right": "_position_right_1gubh_gg_",
|
|
31
|
+
"_position_left": "_position_left_1gubh_gg_",
|
|
32
|
+
"_verticalWritingMode": "__verticalWritingMode_1gubh_gg_",
|
|
33
|
+
"_position_custom_0": "_position_custom_0_1gubh_gg_",
|
|
34
|
+
"_position_custom_1": "_position_custom_1_1gubh_gg_"
|
|
35
35
|
});
|
|
36
36
|
var CUSTOM_0 = Symbol('custom_0');
|
|
37
37
|
var CUSTOM_1 = Symbol('custom_1');
|
package/lib/cjs/Bar.js
CHANGED
|
@@ -20,16 +20,16 @@ var _AnimatedClipPath = _interopRequireDefault(require("./AnimatedClipPath"));
|
|
|
20
20
|
var _utils = require("./utils");
|
|
21
21
|
var _Pattern = require("./Pattern");
|
|
22
22
|
/*__reshadow-styles__:"./style/bar.shadow.css"*/
|
|
23
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
24
|
-
"__SBar": "
|
|
25
|
-
"--duration": "--
|
|
26
|
-
"_color": "
|
|
27
|
-
"--color": "--
|
|
28
|
-
"_pattern": "
|
|
29
|
-
"--pattern": "--
|
|
30
|
-
"_hide": "
|
|
31
|
-
"_transparent": "
|
|
32
|
-
"__SBackground": "
|
|
23
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SBar_1ewhc_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:height,width,y;transition-duration:var(--duration_1ewhc);transition-timing-function:ease-in-out}.___SBar_1ewhc_gg_.__color_1ewhc_gg_{fill:var(--color_1ewhc)}.___SBar_1ewhc_gg_.__pattern_1ewhc_gg_.__color_1ewhc_gg_{fill:var(--pattern_1ewhc);stroke:var(--color_1ewhc);stroke-width:1px}.___SBar_1ewhc_gg_.__hide_1ewhc_gg_{display:none}.___SBar_1ewhc_gg_.__transparent_1ewhc_gg_{opacity:.3}.___SBackground_1ewhc_gg_{fill:var(--intergalactic-chart-palette-order-other-data, #c4c7cf)}" /*__inner_css_end__*/, "1ewhc_gg_") /*__reshadow_css_end__*/, {
|
|
24
|
+
"__SBar": "___SBar_1ewhc_gg_",
|
|
25
|
+
"--duration": "--duration_1ewhc",
|
|
26
|
+
"_color": "__color_1ewhc_gg_",
|
|
27
|
+
"--color": "--color_1ewhc",
|
|
28
|
+
"_pattern": "__pattern_1ewhc_gg_",
|
|
29
|
+
"--pattern": "--pattern_1ewhc",
|
|
30
|
+
"_hide": "__hide_1ewhc_gg_",
|
|
31
|
+
"_transparent": "__transparent_1ewhc_gg_",
|
|
32
|
+
"__SBackground": "___SBackground_1ewhc_gg_"
|
|
33
33
|
});
|
|
34
34
|
var MIN_HEIGHT = 2;
|
|
35
35
|
exports.MIN_HEIGHT = MIN_HEIGHT;
|
package/lib/cjs/Bubble.js
CHANGED
|
@@ -23,18 +23,18 @@ var _utils = require("./utils");
|
|
|
23
23
|
var _Tooltip = _interopRequireDefault(require("./Tooltip"));
|
|
24
24
|
var _Pattern = require("./Pattern");
|
|
25
25
|
/*__reshadow-styles__:"./style/bubble.shadow.css"*/
|
|
26
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
27
|
-
"__SBubble": "
|
|
28
|
-
"_color": "
|
|
29
|
-
"--color": "--
|
|
30
|
-
"_pattern": "
|
|
31
|
-
"--pattern": "--
|
|
32
|
-
"_transparent": "
|
|
33
|
-
"__SCenter": "
|
|
34
|
-
"__SLabel": "
|
|
35
|
-
"_position_right": "
|
|
36
|
-
"_position_left": "
|
|
37
|
-
"--duration": "--
|
|
26
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SBubble_1nnry_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_1nnry);transition-timing-function:ease-in-out;opacity:.5}@media (hover:hover){.___SBubble_1nnry_gg_:hover{opacity:.8}}.___SBubble_1nnry_gg_.__color_1nnry_gg_{fill:var(--color_1nnry)}.___SBubble_1nnry_gg_.__pattern_1nnry_gg_.__color_1nnry_gg_{fill:var(--pattern_1nnry);stroke:var(--color_1nnry);stroke-width:1px}.___SBubble_1nnry_gg_.__transparent_1nnry_gg_{opacity:.3}.___SCenter_1nnry_gg_{text-anchor:middle;font-size:calc(var(--intergalactic-fs-100, 12px) - 1px);stroke:var(--intergalactic-chart-palette-order-1, #2bb3ff)}.___SCenter_1nnry_gg_.__color_1nnry_gg_{stroke:var(--color_1nnry)}.___SCenter_1nnry_gg_.__transparent_1nnry_gg_{opacity:.3}.___SLabel_1nnry_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff)}.___SLabel_1nnry_gg_._position_right_1nnry_gg_{text-anchor:end}.___SLabel_1nnry_gg_._position_left_1nnry_gg_{text-anchor:start}.___SLabel_1nnry_gg_.__color_1nnry_gg_{fill:var(--color_1nnry)}.___SLabel_1nnry_gg_.__transparent_1nnry_gg_{opacity:.3}" /*__inner_css_end__*/, "1nnry_gg_") /*__reshadow_css_end__*/, {
|
|
27
|
+
"__SBubble": "___SBubble_1nnry_gg_",
|
|
28
|
+
"_color": "__color_1nnry_gg_",
|
|
29
|
+
"--color": "--color_1nnry",
|
|
30
|
+
"_pattern": "__pattern_1nnry_gg_",
|
|
31
|
+
"--pattern": "--pattern_1nnry",
|
|
32
|
+
"_transparent": "__transparent_1nnry_gg_",
|
|
33
|
+
"__SCenter": "___SCenter_1nnry_gg_",
|
|
34
|
+
"__SLabel": "___SLabel_1nnry_gg_",
|
|
35
|
+
"_position_right": "_position_right_1nnry_gg_",
|
|
36
|
+
"_position_left": "_position_left_1nnry_gg_",
|
|
37
|
+
"--duration": "--duration_1nnry"
|
|
38
38
|
});
|
|
39
39
|
var BubbleRoot = /*#__PURE__*/function (_Component) {
|
|
40
40
|
(0, _inherits2["default"])(BubbleRoot, _Component);
|
package/lib/cjs/Donut.js
CHANGED
|
@@ -28,15 +28,15 @@ var _Tooltip = _interopRequireDefault(require("./Tooltip"));
|
|
|
28
28
|
var _Pattern = require("./Pattern");
|
|
29
29
|
var _excluded = ["Element", "styles", "d3Arc", "data", "color", "$animationActivePie", "active", "d3ArcOut", "name", "dataKey", "dataHintsHandler", "transparent", "innerRadius", "outerRadius", "resolveColor", "halfsize", "uid", "patterns"];
|
|
30
30
|
/*__reshadow-styles__:"./style/donut.shadow.css"*/
|
|
31
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
32
|
-
"__SPie": "
|
|
33
|
-
"_color": "
|
|
34
|
-
"--color": "--
|
|
35
|
-
"_pattern": "
|
|
36
|
-
"--pattern": "--
|
|
37
|
-
"_transparent": "
|
|
38
|
-
"__SEmptyData": "
|
|
39
|
-
"__SLabel": "
|
|
31
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SPie_1ehmy_gg_{stroke:var(--intergalactic-chart-grid-border, #ffffff);fill:var(--intergalactic-chart-palette-order-1, #2bb3ff)}.___SPie_1ehmy_gg_.__color_1ehmy_gg_{fill:var(--color_1ehmy)}.___SPie_1ehmy_gg_.__pattern_1ehmy_gg_.__color_1ehmy_gg_{fill:var(--pattern_1ehmy);stroke:var(--color_1ehmy);stroke-width:1px}.___SPie_1ehmy_gg_.__transparent_1ehmy_gg_{opacity:.3}.___SEmptyData_1ehmy_gg_{fill:var(--intergalactic-chart-palette-order-null, #e0e1e9)}.___SEmptyData_1ehmy_gg_.__color_1ehmy_gg_{fill:var(--color_1ehmy)}.___SLabel_1ehmy_gg_{text-anchor:middle;vertical-anchor:middle;font-size:var(--intergalactic-fs-200, 14px);line-height:var(--intergalactic-lh-200, 142%)}" /*__inner_css_end__*/, "1ehmy_gg_") /*__reshadow_css_end__*/, {
|
|
32
|
+
"__SPie": "___SPie_1ehmy_gg_",
|
|
33
|
+
"_color": "__color_1ehmy_gg_",
|
|
34
|
+
"--color": "--color_1ehmy",
|
|
35
|
+
"_pattern": "__pattern_1ehmy_gg_",
|
|
36
|
+
"--pattern": "--pattern_1ehmy",
|
|
37
|
+
"_transparent": "__transparent_1ehmy_gg_",
|
|
38
|
+
"__SEmptyData": "___SEmptyData_1ehmy_gg_",
|
|
39
|
+
"__SLabel": "___SLabel_1ehmy_gg_"
|
|
40
40
|
});
|
|
41
41
|
var DEFAULT_INSTANCE = Symbol('DEFAULT_INSTANCE');
|
|
42
42
|
function transitionAnglePie(_ref6) {
|
package/lib/cjs/Dots.js
CHANGED
|
@@ -14,14 +14,14 @@ var _createElement = _interopRequireDefault(require("./createElement"));
|
|
|
14
14
|
var _utils = require("./utils");
|
|
15
15
|
var _Pattern = require("./Pattern");
|
|
16
16
|
/*__reshadow-styles__:"./style/dot.shadow.css"*/
|
|
17
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
18
|
-
"__SDot": "
|
|
19
|
-
"_hide": "
|
|
20
|
-
"_color": "
|
|
21
|
-
"--color": "--
|
|
22
|
-
"_transparent": "
|
|
23
|
-
"__SDots": "
|
|
24
|
-
"--duration": "--
|
|
17
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SDots_at234_gg_ .___SDot_at234_gg_{transition-duration:var(--duration_at234)}.___SDot_at234_gg_{stroke-width:1px;stroke:var(--intergalactic-chart-grid-border, #ffffff);fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:cx,cy,x,y;transition-timing-function:ease-in-out}.___SDot_at234_gg_.__hide_at234_gg_{display:none}.___SDot_at234_gg_.__color_at234_gg_{fill:var(--color_at234)}.___SDot_at234_gg_.__transparent_at234_gg_{opacity:.3}" /*__inner_css_end__*/, "at234_gg_") /*__reshadow_css_end__*/, {
|
|
18
|
+
"__SDot": "___SDot_at234_gg_",
|
|
19
|
+
"_hide": "__hide_at234_gg_",
|
|
20
|
+
"_color": "__color_at234_gg_",
|
|
21
|
+
"--color": "--color_at234",
|
|
22
|
+
"_transparent": "__transparent_at234_gg_",
|
|
23
|
+
"__SDots": "___SDots_at234_gg_",
|
|
24
|
+
"--duration": "--duration_at234"
|
|
25
25
|
});
|
|
26
26
|
var EXCLUDE_PROPS = ['data', 'scale', 'value', 'display'];
|
|
27
27
|
function Dots(props) {
|
package/lib/cjs/HorizontalBar.js
CHANGED
|
@@ -19,16 +19,16 @@ var _AnimatedClipPath = _interopRequireDefault(require("./AnimatedClipPath"));
|
|
|
19
19
|
var _utils = require("./utils");
|
|
20
20
|
var _Pattern = require("./Pattern");
|
|
21
21
|
/*__reshadow-styles__:"./style/bar.shadow.css"*/
|
|
22
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
23
|
-
"__SBar": "
|
|
24
|
-
"--duration": "--
|
|
25
|
-
"_color": "
|
|
26
|
-
"--color": "--
|
|
27
|
-
"_pattern": "
|
|
28
|
-
"--pattern": "--
|
|
29
|
-
"_hide": "
|
|
30
|
-
"_transparent": "
|
|
31
|
-
"__SBackground": "
|
|
22
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SBar_1ewhc_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:height,width,y;transition-duration:var(--duration_1ewhc);transition-timing-function:ease-in-out}.___SBar_1ewhc_gg_.__color_1ewhc_gg_{fill:var(--color_1ewhc)}.___SBar_1ewhc_gg_.__pattern_1ewhc_gg_.__color_1ewhc_gg_{fill:var(--pattern_1ewhc);stroke:var(--color_1ewhc);stroke-width:1px}.___SBar_1ewhc_gg_.__hide_1ewhc_gg_{display:none}.___SBar_1ewhc_gg_.__transparent_1ewhc_gg_{opacity:.3}.___SBackground_1ewhc_gg_{fill:var(--intergalactic-chart-palette-order-other-data, #c4c7cf)}" /*__inner_css_end__*/, "1ewhc_gg_") /*__reshadow_css_end__*/, {
|
|
23
|
+
"__SBar": "___SBar_1ewhc_gg_",
|
|
24
|
+
"--duration": "--duration_1ewhc",
|
|
25
|
+
"_color": "__color_1ewhc_gg_",
|
|
26
|
+
"--color": "--color_1ewhc",
|
|
27
|
+
"_pattern": "__pattern_1ewhc_gg_",
|
|
28
|
+
"--pattern": "--pattern_1ewhc",
|
|
29
|
+
"_hide": "__hide_1ewhc_gg_",
|
|
30
|
+
"_transparent": "__transparent_1ewhc_gg_",
|
|
31
|
+
"__SBackground": "___SBackground_1ewhc_gg_"
|
|
32
32
|
});
|
|
33
33
|
var MIN_WIDTH = 2;
|
|
34
34
|
exports.MIN_WIDTH = MIN_WIDTH;
|
package/lib/cjs/Hover.js
CHANGED
|
@@ -21,9 +21,9 @@ var _createElement = _interopRequireDefault(require("./createElement"));
|
|
|
21
21
|
var _utils = require("./utils");
|
|
22
22
|
var _Tooltip = _interopRequireDefault(require("./Tooltip"));
|
|
23
23
|
/*__reshadow-styles__:"./style/hover.shadow.css"*/
|
|
24
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
25
|
-
"__SHoverLine": "
|
|
26
|
-
"__SHoverRect": "
|
|
24
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SHoverLine_18yji_gg_{stroke:var(--intergalactic-chart-grid-x-axis, #c4c7cf)}.___SHoverRect_18yji_gg_{fill:var(--intergalactic-chart-grid-bar-chart-hover, rgba(196, 199, 207, 0.3))}" /*__inner_css_end__*/, "18yji_gg_") /*__reshadow_css_end__*/, {
|
|
25
|
+
"__SHoverLine": "___SHoverLine_18yji_gg_",
|
|
26
|
+
"__SHoverRect": "___SHoverRect_18yji_gg_"
|
|
27
27
|
});
|
|
28
28
|
var Hover = /*#__PURE__*/function (_Component) {
|
|
29
29
|
(0, _inherits2["default"])(Hover, _Component);
|
package/lib/cjs/Line.js
CHANGED
|
@@ -22,15 +22,15 @@ var _Dots = _interopRequireDefault(require("./Dots"));
|
|
|
22
22
|
var _AnimatedClipPath = _interopRequireDefault(require("./AnimatedClipPath"));
|
|
23
23
|
var _Pattern = require("./Pattern");
|
|
24
24
|
/*__reshadow-styles__:"./style/line.shadow.css"*/
|
|
25
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
26
|
-
"__SLine": "
|
|
27
|
-
"--duration": "--
|
|
28
|
-
"_color": "
|
|
29
|
-
"--color": "--
|
|
30
|
-
"_hide": "
|
|
31
|
-
"_transparent": "
|
|
32
|
-
"__SNull": "
|
|
33
|
-
"__SAria": "
|
|
25
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SLine_12e10_gg_{fill:transparent;stroke-width:3;stroke:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:d;transition-duration:var(--duration_12e10);transition-timing-function:ease-in-out}.___SLine_12e10_gg_.__color_12e10_gg_{stroke:var(--color_12e10)}.___SLine_12e10_gg_.__hide_12e10_gg_{display:none}.___SLine_12e10_gg_.__transparent_12e10_gg_{opacity:.3}.___SNull_12e10_gg_{fill:transparent;stroke:var(--intergalactic-border-primary, #c4c7cf);stroke-dasharray:4}.___SNull_12e10_gg_.__hide_12e10_gg_{display:none}.___SAria_12e10_gg_{transition-property:d;transition-duration:var(--duration_12e10);transition-timing-function:ease-in-out;opacity:.3;fill:var(--intergalactic-chart-palette-order-1, #2bb3ff)}.___SAria_12e10_gg_.__color_12e10_gg_{fill:var(--color_12e10)}" /*__inner_css_end__*/, "12e10_gg_") /*__reshadow_css_end__*/, {
|
|
26
|
+
"__SLine": "___SLine_12e10_gg_",
|
|
27
|
+
"--duration": "--duration_12e10",
|
|
28
|
+
"_color": "__color_12e10_gg_",
|
|
29
|
+
"--color": "--color_12e10",
|
|
30
|
+
"_hide": "__hide_12e10_gg_",
|
|
31
|
+
"_transparent": "__transparent_12e10_gg_",
|
|
32
|
+
"__SNull": "___SNull_12e10_gg_",
|
|
33
|
+
"__SAria": "___SAria_12e10_gg_"
|
|
34
34
|
});
|
|
35
35
|
var LineRoot = /*#__PURE__*/function (_Component) {
|
|
36
36
|
(0, _inherits2["default"])(LineRoot, _Component);
|
package/lib/cjs/Plot.js
CHANGED
|
@@ -24,9 +24,9 @@ var _PlotA11yModule = require("./a11y/PlotA11yModule");
|
|
|
24
24
|
var _hints = require("./a11y/hints");
|
|
25
25
|
var _resolveColorEnhance = _interopRequireDefault(require("@semcore/utils/lib/enhances/resolveColorEnhance"));
|
|
26
26
|
/*__reshadow-styles__:"./style/plot.shadow.css"*/
|
|
27
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
28
|
-
"__SPlot": "
|
|
29
|
-
"_keyboardFocused": "
|
|
27
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SPlot_1vg86_gg_{overflow:hidden}.___SPlot_1vg86_gg_:active,.___SPlot_1vg86_gg_:focus{outline:0;-webkit-text-decoration:none;text-decoration:none}foreignObject[data-aria-only]{pointer-events:none}.___SPlot_1vg86_gg_.__keyboardFocused_1vg86_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.5))}" /*__inner_css_end__*/, "1vg86_gg_") /*__reshadow_css_end__*/, {
|
|
28
|
+
"__SPlot": "___SPlot_1vg86_gg_",
|
|
29
|
+
"_keyboardFocused": "__keyboardFocused_1vg86_gg_"
|
|
30
30
|
});
|
|
31
31
|
var PlotRoot = /*#__PURE__*/function (_Component) {
|
|
32
32
|
(0, _inherits2["default"])(PlotRoot, _Component);
|
package/lib/cjs/Radar.js
CHANGED
|
@@ -29,25 +29,25 @@ var _utils = require("./utils");
|
|
|
29
29
|
var _Tooltip = _interopRequireDefault(require("./Tooltip"));
|
|
30
30
|
var _Pattern = require("./Pattern");
|
|
31
31
|
/*__reshadow-styles__:"./style/radar.shadow.css"*/
|
|
32
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
33
|
-
"__SAxis": "
|
|
34
|
-
"__SAxisLine": "
|
|
35
|
-
"__SAxisTick": "
|
|
36
|
-
"_active": "
|
|
37
|
-
"__SAxisLabel": "
|
|
38
|
-
"_xDirection": "
|
|
39
|
-
"--xDirection": "--
|
|
40
|
-
"_yDirection": "
|
|
41
|
-
"--yDirection": "--
|
|
42
|
-
"__SPolygon": "
|
|
43
|
-
"_color": "
|
|
44
|
-
"--color": "--
|
|
45
|
-
"_pattern": "
|
|
46
|
-
"--pattern": "--
|
|
47
|
-
"__SPolygonDot": "
|
|
48
|
-
"_transparent": "
|
|
49
|
-
"__SPolygonLine": "
|
|
50
|
-
"__SPieRect": "
|
|
32
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SAxisLine_m580t_gg_,.___SAxisTick_m580t_gg_,.___SAxis_m580t_gg_{stroke:var(--intergalactic-chart-grid-line, #e0e1e9);stroke-width:1;fill:transparent}.___SAxisLine_m580t_gg_,.___SAxisTick_m580t_gg_{stroke-dasharray:2}.___SAxisLine_m580t_gg_.__active_m580t_gg_{stroke:var(--intergalactic-chart-grid-y-accent-hover-line, #a9abb6)}.___SAxisLabel_m580t_gg_{text-anchor:middle;dominant-baseline:central;font-size:12px}.___SAxisLabel_m580t_gg_.__xDirection_m580t_gg_{text-anchor:var(--xDirection_m580t)}.___SAxisLabel_m580t_gg_.__yDirection_m580t_gg_{dominant-baseline:var(--yDirection_m580t)}.___SPolygonDot_m580t_gg_,.___SPolygon_m580t_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff)}.___SPolygon_m580t_gg_{opacity:.2}.___SPolygon_m580t_gg_.__color_m580t_gg_{fill:var(--color_m580t)}.___SPolygon_m580t_gg_.__pattern_m580t_gg_.__color_m580t_gg_{fill:var(--pattern_m580t);stroke:var(--color_m580t);stroke-width:1px}.___SPolygonDot_m580t_gg_{stroke-width:2px;stroke:var(--intergalactic-chart-grid-border, #ffffff);r:6px}.___SPolygonDot_m580t_gg_.__transparent_m580t_gg_{opacity:.3}.___SPolygonDot_m580t_gg_.__color_m580t_gg_{fill:var(--color_m580t)}.___SPolygonLine_m580t_gg_{stroke:var(--intergalactic-chart-palette-order-1, #2bb3ff);stroke-width:3;fill:transparent}.___SPolygonLine_m580t_gg_.__transparent_m580t_gg_{opacity:.3}.___SPolygonLine_m580t_gg_.__color_m580t_gg_{stroke:var(--color_m580t)}.___SPieRect_m580t_gg_{fill:var(--intergalactic-chart-grid-bar-chart-hover, rgba(196, 199, 207, 0.3))}" /*__inner_css_end__*/, "m580t_gg_") /*__reshadow_css_end__*/, {
|
|
33
|
+
"__SAxis": "___SAxis_m580t_gg_",
|
|
34
|
+
"__SAxisLine": "___SAxisLine_m580t_gg_",
|
|
35
|
+
"__SAxisTick": "___SAxisTick_m580t_gg_",
|
|
36
|
+
"_active": "__active_m580t_gg_",
|
|
37
|
+
"__SAxisLabel": "___SAxisLabel_m580t_gg_",
|
|
38
|
+
"_xDirection": "__xDirection_m580t_gg_",
|
|
39
|
+
"--xDirection": "--xDirection_m580t",
|
|
40
|
+
"_yDirection": "__yDirection_m580t_gg_",
|
|
41
|
+
"--yDirection": "--yDirection_m580t",
|
|
42
|
+
"__SPolygon": "___SPolygon_m580t_gg_",
|
|
43
|
+
"_color": "__color_m580t_gg_",
|
|
44
|
+
"--color": "--color_m580t",
|
|
45
|
+
"_pattern": "__pattern_m580t_gg_",
|
|
46
|
+
"--pattern": "--pattern_m580t",
|
|
47
|
+
"__SPolygonDot": "___SPolygonDot_m580t_gg_",
|
|
48
|
+
"_transparent": "__transparent_m580t_gg_",
|
|
49
|
+
"__SPolygonLine": "___SPolygonLine_m580t_gg_",
|
|
50
|
+
"__SPieRect": "___SPieRect_m580t_gg_"
|
|
51
51
|
});
|
|
52
52
|
var clampAngle = function clampAngle(angle) {
|
|
53
53
|
angle = angle % (2 * Math.PI);
|
package/lib/cjs/RadialTree.js
CHANGED
|
@@ -27,17 +27,17 @@ var _utils = require("./utils");
|
|
|
27
27
|
var _Pattern = require("./Pattern");
|
|
28
28
|
var _excluded = ["data"];
|
|
29
29
|
/*__reshadow-styles__:"./style/radial-tree.shadow.css"*/
|
|
30
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
31
|
-
"__SRadian": "
|
|
32
|
-
"__SLine": "
|
|
33
|
-
"_color": "
|
|
34
|
-
"--color": "--
|
|
35
|
-
"_transparent": "
|
|
36
|
-
"__SCap": "
|
|
37
|
-
"_pattern": "
|
|
38
|
-
"__SIcon": "
|
|
39
|
-
"__SLabel": "
|
|
40
|
-
"__SLineCap": "
|
|
30
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SRadian_zn5yu_gg_{cursor:pointer;fill:var(--intergalactic-text-large-info, #008ff8)}.___SLine_zn5yu_gg_{stroke:var(--intergalactic-text-large-info, #008ff8)}.___SLine_zn5yu_gg_.__color_zn5yu_gg_{stroke:var(--color_zn5yu)}.___SLine_zn5yu_gg_.__transparent_zn5yu_gg_{opacity:.3}.___SCap_zn5yu_gg_{transition:r .1s}.___SCap_zn5yu_gg_.__pattern_zn5yu_gg_{stroke:var(--intergalactic-chart-grid-border, #ffffff);stroke-width:1px}.___SCap_zn5yu_gg_.__transparent_zn5yu_gg_,.___SIcon_zn5yu_gg_.__transparent_zn5yu_gg_,.___SLabel_zn5yu_gg_.__transparent_zn5yu_gg_{opacity:.3}.___SLabel_zn5yu_gg_{fill:var(--color_zn5yu)}@media (hover:hover){.___SRadian_zn5yu_gg_:hover .___SLabel_zn5yu_gg_{cursor:pointer;filter:brightness(.6)}}@media (prefers-reduced-motion){.___SLineCap_zn5yu_gg_{transition:none}}" /*__inner_css_end__*/, "zn5yu_gg_") /*__reshadow_css_end__*/, {
|
|
31
|
+
"__SRadian": "___SRadian_zn5yu_gg_",
|
|
32
|
+
"__SLine": "___SLine_zn5yu_gg_",
|
|
33
|
+
"_color": "__color_zn5yu_gg_",
|
|
34
|
+
"--color": "--color_zn5yu",
|
|
35
|
+
"_transparent": "__transparent_zn5yu_gg_",
|
|
36
|
+
"__SCap": "___SCap_zn5yu_gg_",
|
|
37
|
+
"_pattern": "__pattern_zn5yu_gg_",
|
|
38
|
+
"__SIcon": "___SIcon_zn5yu_gg_",
|
|
39
|
+
"__SLabel": "___SLabel_zn5yu_gg_",
|
|
40
|
+
"__SLineCap": "___SLineCap_zn5yu_gg_"
|
|
41
41
|
});
|
|
42
42
|
var baseAngle = -Math.PI / 2; // The top vertical line
|
|
43
43
|
var RadialTreeBase = /*#__PURE__*/function (_Component) {
|
package/lib/cjs/ReferenceLine.js
CHANGED
|
@@ -17,15 +17,15 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
17
17
|
var _createElement = _interopRequireDefault(require("./createElement"));
|
|
18
18
|
var _utils = require("./utils");
|
|
19
19
|
/*__reshadow-styles__:"./style/reference-line.shadow.css"*/
|
|
20
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
21
|
-
"__SReferenceLine": "
|
|
22
|
-
"__STitle": "
|
|
23
|
-
"--transform-origin": "--transform-
|
|
24
|
-
"_position_top": "
|
|
25
|
-
"_position_bottom": "
|
|
26
|
-
"_position_right": "
|
|
27
|
-
"_position_left": "
|
|
28
|
-
"__SBackground": "
|
|
20
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SReferenceLine_zme6j_gg_{fill:none;stroke:var(--intergalactic-chart-grid-x-axis, #c4c7cf)}.___STitle_zme6j_gg_{font-size:var(--intergalactic-fs-100, 12px);fill:var(--intergalactic-chart-grid-text-label, #6c6e79);transform-origin:var(--transform-origin_zme6j)}.___STitle_zme6j_gg_._position_top_zme6j_gg_{text-anchor:middle}.___STitle_zme6j_gg_._position_bottom_zme6j_gg_{text-anchor:middle;alignment-baseline:hanging}.___STitle_zme6j_gg_._position_left_zme6j_gg_,.___STitle_zme6j_gg_._position_right_zme6j_gg_{transform:rotate(-90deg);text-anchor:middle;alignment-baseline:middle}.___SBackground_zme6j_gg_{fill:var(--intergalactic-chart-grid-period-bg, rgba(196, 199, 207, 0.2))}" /*__inner_css_end__*/, "zme6j_gg_") /*__reshadow_css_end__*/, {
|
|
21
|
+
"__SReferenceLine": "___SReferenceLine_zme6j_gg_",
|
|
22
|
+
"__STitle": "___STitle_zme6j_gg_",
|
|
23
|
+
"--transform-origin": "--transform-origin_zme6j",
|
|
24
|
+
"_position_top": "_position_top_zme6j_gg_",
|
|
25
|
+
"_position_bottom": "_position_bottom_zme6j_gg_",
|
|
26
|
+
"_position_right": "_position_right_zme6j_gg_",
|
|
27
|
+
"_position_left": "_position_left_zme6j_gg_",
|
|
28
|
+
"__SBackground": "___SBackground_zme6j_gg_"
|
|
29
29
|
});
|
|
30
30
|
var side2direction = {
|
|
31
31
|
left: 'vertical',
|
package/lib/cjs/ScatterPlot.js
CHANGED
|
@@ -23,15 +23,15 @@ var _utils = require("./utils");
|
|
|
23
23
|
var _Tooltip = _interopRequireDefault(require("./Tooltip"));
|
|
24
24
|
var _Pattern = require("./Pattern");
|
|
25
25
|
/*__reshadow-styles__:"./style/scatterplot.shadow.css"*/
|
|
26
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
27
|
-
"__SScatterPlot": "
|
|
28
|
-
"_color": "
|
|
29
|
-
"--color": "--
|
|
30
|
-
"_pattern": "
|
|
31
|
-
"--pattern": "--
|
|
32
|
-
"_transparent": "
|
|
33
|
-
"__SValue": "
|
|
34
|
-
"--duration": "--
|
|
26
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SScatterPlot_cj991_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:cx,cy;transition-duration:var(--duration_cj991);transition-timing-function:ease-in-out;opacity:.5}@media (hover:hover){.___SScatterPlot_cj991_gg_:hover{opacity:.8}}.___SScatterPlot_cj991_gg_.__color_cj991_gg_{fill:var(--color_cj991)}.___SScatterPlot_cj991_gg_.__pattern_cj991_gg_.__color_cj991_gg_{fill:var(--pattern_cj991);stroke:var(--color_cj991);stroke-width:1px}.___SScatterPlot_cj991_gg_.__transparent_cj991_gg_{opacity:.3}.___SValue_cj991_gg_{text-anchor:middle;font-size:var(--intergalactic-fs-50, 10px);stroke:var(--intergalactic-chart-palette-order-9, #008ff8)}.___SValue_cj991_gg_.__color_cj991_gg_{stroke:var(--color_cj991)}.___SValue_cj991_gg_.__transparent_cj991_gg_{opacity:.3}" /*__inner_css_end__*/, "cj991_gg_") /*__reshadow_css_end__*/, {
|
|
27
|
+
"__SScatterPlot": "___SScatterPlot_cj991_gg_",
|
|
28
|
+
"_color": "__color_cj991_gg_",
|
|
29
|
+
"--color": "--color_cj991",
|
|
30
|
+
"_pattern": "__pattern_cj991_gg_",
|
|
31
|
+
"--pattern": "--pattern_cj991",
|
|
32
|
+
"_transparent": "__transparent_cj991_gg_",
|
|
33
|
+
"__SValue": "___SValue_cj991_gg_",
|
|
34
|
+
"--duration": "--duration_cj991"
|
|
35
35
|
});
|
|
36
36
|
var ScatterPlotRoot = /*#__PURE__*/function (_Component) {
|
|
37
37
|
(0, _inherits2["default"])(ScatterPlotRoot, _Component);
|
package/lib/cjs/Tooltip.js
CHANGED
|
@@ -24,15 +24,15 @@ var _useColorResolver = require("@semcore/utils/lib/use/useColorResolver");
|
|
|
24
24
|
var _Pattern = require("./Pattern");
|
|
25
25
|
var _excluded = ["Children", "children", "tag", "forcedAdvancedMode"];
|
|
26
26
|
/*__reshadow-styles__:"./style/tooltip.shadow.css"*/
|
|
27
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
28
|
-
"__STooltip": "
|
|
29
|
-
"__STitle": "
|
|
30
|
-
"__SDotGroup": "
|
|
31
|
-
"__SDot": "
|
|
32
|
-
"__SDotCircle": "
|
|
33
|
-
"_color": "
|
|
34
|
-
"--color": "--
|
|
35
|
-
"__SFooter": "
|
|
27
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___STooltip_7uosh_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_7uosh_gg_{color:var(--intergalactic-text-secondary, #6c6e79);margin-bottom:var(--intergalactic-spacing-2x, 8px)}.___SDotGroup_7uosh_gg_{display:flex;align-items:center}.___SDot_7uosh_gg_{margin-right:var(--intergalactic-spacing-2x, 8px)}.___SDotCircle_7uosh_gg_.__color_7uosh_gg_{background-color:var(--color_7uosh);width:12px;height:12px;border-radius:50%}.___SFooter_7uosh_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))}" /*__inner_css_end__*/, "7uosh_gg_") /*__reshadow_css_end__*/, {
|
|
28
|
+
"__STooltip": "___STooltip_7uosh_gg_",
|
|
29
|
+
"__STitle": "___STitle_7uosh_gg_",
|
|
30
|
+
"__SDotGroup": "___SDotGroup_7uosh_gg_",
|
|
31
|
+
"__SDot": "___SDot_7uosh_gg_",
|
|
32
|
+
"__SDotCircle": "___SDotCircle_7uosh_gg_",
|
|
33
|
+
"_color": "__color_7uosh_gg_",
|
|
34
|
+
"--color": "--color_7uosh",
|
|
35
|
+
"__SFooter": "___SFooter_7uosh_gg_"
|
|
36
36
|
});
|
|
37
37
|
/**
|
|
38
38
|
* `TooltipDotRenderContext` is a hack to bypass problem that getDotProps doesn't work for D3 tooltip.
|
package/lib/cjs/Venn.js
CHANGED
|
@@ -25,15 +25,15 @@ var _Tooltip = _interopRequireDefault(require("./Tooltip"));
|
|
|
25
25
|
var _Pattern = require("./Pattern");
|
|
26
26
|
var _uniqueID = _interopRequireDefault(require("@semcore/utils/lib/uniqueID"));
|
|
27
27
|
/*__reshadow-styles__:"./style/venn.shadow.css"*/
|
|
28
|
-
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
29
|
-
"__SCircle": "
|
|
30
|
-
"_color": "
|
|
31
|
-
"--color": "--
|
|
32
|
-
"_transparent": "
|
|
33
|
-
"__SIntersection": "
|
|
34
|
-
"--duration": "--
|
|
35
|
-
"_pattern": "
|
|
36
|
-
"--pattern": "--
|
|
28
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SCircle_iddt2_gg_,.___SIntersection_iddt2_gg_{stroke:var(--intergalactic-chart-grid-border, #ffffff);stroke-width:2px}.___SCircle_iddt2_gg_{fill:var(--intergalactic-chart-palette-order-2, #59ddaa);fill-opacity:.5;transition-property:cx,cy;transition-duration:var(--duration_iddt2);transition-timing-function:ease-in-out}@media (hover:hover){.___SCircle_iddt2_gg_:hover{fill-opacity:.7}}.___SCircle_iddt2_gg_.__color_iddt2_gg_{fill:var(--color_iddt2)}.___SCircle_iddt2_gg_.__pattern_iddt2_gg_.__color_iddt2_gg_{fill:var(--pattern_iddt2);fill-opacity:.7;stroke:var(--color_iddt2);stroke-width:1px}@media (hover:hover){.___SCircle_iddt2_gg_.__pattern_iddt2_gg_.__color_iddt2_gg_:hover{fill-opacity:.85}}.___SCircle_iddt2_gg_.__transparent_iddt2_gg_{opacity:.3}.___SIntersection_iddt2_gg_{fill-opacity:0}@media (hover:hover){.___SIntersection_iddt2_gg_:hover{fill-opacity:.1}}.___SIntersection_iddt2_gg_.__transparent_iddt2_gg_{opacity:.3}" /*__inner_css_end__*/, "iddt2_gg_") /*__reshadow_css_end__*/, {
|
|
29
|
+
"__SCircle": "___SCircle_iddt2_gg_",
|
|
30
|
+
"_color": "__color_iddt2_gg_",
|
|
31
|
+
"--color": "--color_iddt2",
|
|
32
|
+
"_transparent": "__transparent_iddt2_gg_",
|
|
33
|
+
"__SIntersection": "___SIntersection_iddt2_gg_",
|
|
34
|
+
"--duration": "--duration_iddt2",
|
|
35
|
+
"_pattern": "__pattern_iddt2_gg_",
|
|
36
|
+
"--pattern": "--pattern_iddt2"
|
|
37
37
|
});
|
|
38
38
|
var VennRoot = /*#__PURE__*/function (_Component) {
|
|
39
39
|
(0, _inherits2["default"])(VennRoot, _Component);
|
|
@@ -16,8 +16,8 @@ var _intergalacticDynamicLocales = require("./translations/module/__intergalacti
|
|
|
16
16
|
var _WithI18n = require("@semcore/utils/lib/enhances/WithI18n");
|
|
17
17
|
var _flexBox = require("@semcore/flex-box");
|
|
18
18
|
/*__reshadow-styles__:"../style/plotA11yModule.shadow.css"*/
|
|
19
|
-
var styles = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
20
|
-
"__SPlotA11yModule": "
|
|
19
|
+
var styles = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SPlotA11yModule_re0uq_gg_{-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;opacity:0}.___SPlotA11yModule_re0uq_gg_:focus{-webkit-user-select:all;-moz-user-select:all;user-select:all;pointer-events:all;opacity:1}" /*__inner_css_end__*/, "re0uq_gg_") /*__reshadow_css_end__*/, {
|
|
20
|
+
"__SPlotA11yModule": "___SPlotA11yModule_re0uq_gg_"
|
|
21
21
|
});
|
|
22
22
|
var globalWasFocused = false;
|
|
23
23
|
var globalNavWithKeyboard = false;
|
|
@@ -21,8 +21,8 @@ var _flexBox = require("@semcore/flex-box");
|
|
|
21
21
|
var _i18nEnhance = require("@semcore/utils/lib/enhances/i18nEnhance");
|
|
22
22
|
var _intergalacticDynamicLocales = require("./translations/view/__intergalactic-dynamic-locales");
|
|
23
23
|
/*__reshadow-styles__:"../style/plotA11yView.shadow.css"*/
|
|
24
|
-
var styles = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".
|
|
25
|
-
"__SPlotA11yView": "
|
|
24
|
+
var styles = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SPlotA11yView_m7llf_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_m7llf_gg_:focus,.___SPlotA11yView_m7llf_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_m7llf_gg_ a{cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline;margin-bottom:var(--intergalactic-spacing-2x, 8px);display:block}.___SPlotA11yView_m7llf_gg_ table,.___SPlotA11yView_m7llf_gg_ td,.___SPlotA11yView_m7llf_gg_ th{border:1px solid var(--intergalactic-border-primary, #c4c7cf)}" /*__inner_css_end__*/, "m7llf_gg_") /*__reshadow_css_end__*/, {
|
|
25
|
+
"__SPlotA11yView": "___SPlotA11yView_m7llf_gg_"
|
|
26
26
|
});
|
|
27
27
|
var PlotA11yView = function PlotA11yView(_ref3) {
|
|
28
28
|
var _ref = arguments[0],
|