@semcore/d3-chart 3.48.0 → 3.48.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 +19 -13
- 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/Reference.js +12 -12
- package/lib/cjs/ScatterPlot.js +9 -9
- package/lib/cjs/Tooltip.js +9 -9
- package/lib/cjs/Venn.js +9 -9
- package/lib/cjs/a11y/PlotA11yModule.js +2 -2
- package/lib/cjs/a11y/PlotA11yView.js +2 -2
- package/lib/cjs/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/Reference.js +12 -12
- package/lib/es6/ScatterPlot.js +9 -9
- package/lib/es6/Tooltip.js +9 -9
- package/lib/es6/Venn.js +9 -9
- package/lib/es6/a11y/PlotA11yModule.js +2 -2
- package/lib/es6/a11y/PlotA11yView.js +2 -2
- package/lib/es6/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/package.json +2 -2
package/lib/es6/ScatterPlot.js
CHANGED
|
@@ -18,15 +18,15 @@ import { getScatterPlotRadius } from './utils';
|
|
|
18
18
|
import Tooltip from './Tooltip';
|
|
19
19
|
import { PatternFill } from './Pattern';
|
|
20
20
|
/*__reshadow-styles__:"./style/scatterplot.shadow.css"*/
|
|
21
|
-
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".
|
|
22
|
-
"__SScatterPlot": "
|
|
23
|
-
"_color": "
|
|
24
|
-
"--color": "--
|
|
25
|
-
"_pattern": "
|
|
26
|
-
"--pattern": "--
|
|
27
|
-
"_transparent": "
|
|
28
|
-
"__SValue": "
|
|
29
|
-
"--duration": "--
|
|
21
|
+
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SScatterPlot_608zz_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:cx,cy;transition-duration:var(--duration_608zz);transition-timing-function:ease-in-out;opacity:.5}@media (hover:hover){.___SScatterPlot_608zz_gg_:hover{opacity:.8}}.___SScatterPlot_608zz_gg_.__color_608zz_gg_{fill:var(--color_608zz)}.___SScatterPlot_608zz_gg_.__pattern_608zz_gg_.__color_608zz_gg_{fill:var(--pattern_608zz);stroke:var(--color_608zz);stroke-width:1px}.___SScatterPlot_608zz_gg_.__transparent_608zz_gg_{opacity:.3}.___SValue_608zz_gg_{text-anchor:middle;font-size:var(--intergalactic-fs-50, 10px);stroke:var(--intergalactic-chart-palette-order-9, #008ff8)}.___SValue_608zz_gg_.__color_608zz_gg_{stroke:var(--color_608zz)}.___SValue_608zz_gg_.__transparent_608zz_gg_{opacity:.3}" /*__inner_css_end__*/, "608zz_gg_") /*__reshadow_css_end__*/, {
|
|
22
|
+
"__SScatterPlot": "___SScatterPlot_608zz_gg_",
|
|
23
|
+
"_color": "__color_608zz_gg_",
|
|
24
|
+
"--color": "--color_608zz",
|
|
25
|
+
"_pattern": "__pattern_608zz_gg_",
|
|
26
|
+
"--pattern": "--pattern_608zz",
|
|
27
|
+
"_transparent": "__transparent_608zz_gg_",
|
|
28
|
+
"__SValue": "___SValue_608zz_gg_",
|
|
29
|
+
"--duration": "--duration_608zz"
|
|
30
30
|
});
|
|
31
31
|
var ScatterPlotRoot = /*#__PURE__*/function (_Component) {
|
|
32
32
|
_inherits(ScatterPlotRoot, _Component);
|
package/lib/es6/Tooltip.js
CHANGED
|
@@ -21,15 +21,15 @@ import createElement from './createElement';
|
|
|
21
21
|
import { getChartDefaultColorName } from './utils';
|
|
22
22
|
import { useColorResolver } from '@semcore/utils/lib/use/useColorResolver';
|
|
23
23
|
/*__reshadow-styles__:"./style/tooltip.shadow.css"*/
|
|
24
|
-
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".
|
|
25
|
-
"__STooltip": "
|
|
26
|
-
"__STitle": "
|
|
27
|
-
"__SDotGroup": "
|
|
28
|
-
"__SDot": "
|
|
29
|
-
"__SDotCircle": "
|
|
30
|
-
"_color": "
|
|
31
|
-
"--color": "--
|
|
32
|
-
"__SFooter": "
|
|
24
|
+
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___STooltip_fxr5w_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_fxr5w_gg_{color:var(--intergalactic-text-secondary, #6c6e79);margin-bottom:var(--intergalactic-spacing-2x, 8px)}.___SDotGroup_fxr5w_gg_{display:flex;align-items:center}.___SDot_fxr5w_gg_{margin-right:var(--intergalactic-spacing-2x, 8px)}.___SDotCircle_fxr5w_gg_.__color_fxr5w_gg_{background-color:var(--color_fxr5w);width:8px;height:8px;border-radius:50%}.___SFooter_fxr5w_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__*/, "fxr5w_gg_") /*__reshadow_css_end__*/, {
|
|
25
|
+
"__STooltip": "___STooltip_fxr5w_gg_",
|
|
26
|
+
"__STitle": "___STitle_fxr5w_gg_",
|
|
27
|
+
"__SDotGroup": "___SDotGroup_fxr5w_gg_",
|
|
28
|
+
"__SDot": "___SDot_fxr5w_gg_",
|
|
29
|
+
"__SDotCircle": "___SDotCircle_fxr5w_gg_",
|
|
30
|
+
"_color": "__color_fxr5w_gg_",
|
|
31
|
+
"--color": "--color_fxr5w",
|
|
32
|
+
"__SFooter": "___SFooter_fxr5w_gg_"
|
|
33
33
|
});
|
|
34
34
|
import { PatternSymbol } from './Pattern';
|
|
35
35
|
|
package/lib/es6/Venn.js
CHANGED
|
@@ -20,15 +20,15 @@ import Tooltip from './Tooltip';
|
|
|
20
20
|
import { PatternFill } from './Pattern';
|
|
21
21
|
import uniqueIDEnhancement from '@semcore/utils/lib/uniqueID';
|
|
22
22
|
/*__reshadow-styles__:"./style/venn.shadow.css"*/
|
|
23
|
-
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".
|
|
24
|
-
"__SCircle": "
|
|
25
|
-
"_color": "
|
|
26
|
-
"--color": "--
|
|
27
|
-
"_transparent": "
|
|
28
|
-
"__SIntersection": "
|
|
29
|
-
"--duration": "--
|
|
30
|
-
"_pattern": "
|
|
31
|
-
"--pattern": "--
|
|
23
|
+
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SCircle_1vaci_gg_,.___SIntersection_1vaci_gg_{stroke:var(--intergalactic-chart-grid-border, #ffffff);stroke-width:2px}.___SCircle_1vaci_gg_{fill:var(--intergalactic-chart-palette-order-2, #59ddaa);fill-opacity:.5;transition-property:cx,cy;transition-duration:var(--duration_1vaci);transition-timing-function:ease-in-out}@media (hover:hover){.___SCircle_1vaci_gg_:hover{fill-opacity:.7}}.___SCircle_1vaci_gg_.__color_1vaci_gg_{fill:var(--color_1vaci)}.___SCircle_1vaci_gg_.__pattern_1vaci_gg_.__color_1vaci_gg_{fill:var(--pattern_1vaci);fill-opacity:.7;stroke:var(--color_1vaci);stroke-width:1px}@media (hover:hover){.___SCircle_1vaci_gg_.__pattern_1vaci_gg_.__color_1vaci_gg_:hover{fill-opacity:.85}}.___SCircle_1vaci_gg_.__transparent_1vaci_gg_{opacity:.3}.___SIntersection_1vaci_gg_{fill-opacity:0}@media (hover:hover){.___SIntersection_1vaci_gg_:hover{fill-opacity:.1}}.___SIntersection_1vaci_gg_.__transparent_1vaci_gg_{opacity:.3}" /*__inner_css_end__*/, "1vaci_gg_") /*__reshadow_css_end__*/, {
|
|
24
|
+
"__SCircle": "___SCircle_1vaci_gg_",
|
|
25
|
+
"_color": "__color_1vaci_gg_",
|
|
26
|
+
"--color": "--color_1vaci",
|
|
27
|
+
"_transparent": "__transparent_1vaci_gg_",
|
|
28
|
+
"__SIntersection": "___SIntersection_1vaci_gg_",
|
|
29
|
+
"--duration": "--duration_1vaci",
|
|
30
|
+
"_pattern": "__pattern_1vaci_gg_",
|
|
31
|
+
"--pattern": "--pattern_1vaci"
|
|
32
32
|
});
|
|
33
33
|
var VennRoot = /*#__PURE__*/function (_Component) {
|
|
34
34
|
_inherits(VennRoot, _Component);
|
|
@@ -10,8 +10,8 @@ import { normalizeLocale } from './locale';
|
|
|
10
10
|
import { localizedMessages } from './translations/module/__intergalactic-dynamic-locales';
|
|
11
11
|
import { Root, sstyled } from '@semcore/core';
|
|
12
12
|
/*__reshadow-styles__:"../style/plotA11yModule.shadow.css"*/
|
|
13
|
-
var styles = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".
|
|
14
|
-
"__SPlotA11yModule": "
|
|
13
|
+
var styles = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SPlotA11yModule_1efp3_gg_{-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;opacity:0}.___SPlotA11yModule_1efp3_gg_:focus{-webkit-user-select:all;-moz-user-select:all;user-select:all;pointer-events:all;opacity:1}" /*__inner_css_end__*/, "1efp3_gg_") /*__reshadow_css_end__*/, {
|
|
14
|
+
"__SPlotA11yModule": "___SPlotA11yModule_1efp3_gg_"
|
|
15
15
|
});
|
|
16
16
|
import { Context as I18nContext, useI18n } from '@semcore/utils/lib/enhances/WithI18n';
|
|
17
17
|
import { Box } from '@semcore/flex-box';
|
|
@@ -9,8 +9,8 @@ import { getIntl } from './intl';
|
|
|
9
9
|
import { summarize } from './summarize';
|
|
10
10
|
import { Root, sstyled } from '@semcore/core';
|
|
11
11
|
/*__reshadow-styles__:"../style/plotA11yView.shadow.css"*/
|
|
12
|
-
var styles = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".
|
|
13
|
-
"__SPlotA11yView": "
|
|
12
|
+
var styles = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SPlotA11yView_1qck4_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_1qck4_gg_:focus,.___SPlotA11yView_1qck4_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_1qck4_gg_ a{cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline;margin-bottom:var(--intergalactic-spacing-2x, 8px);display:block}.___SPlotA11yView_1qck4_gg_ table,.___SPlotA11yView_1qck4_gg_ td,.___SPlotA11yView_1qck4_gg_ th{border:1px solid var(--intergalactic-border-primary, #c4c7cf)}" /*__inner_css_end__*/, "1qck4_gg_") /*__reshadow_css_end__*/, {
|
|
13
|
+
"__SPlotA11yView": "___SPlotA11yView_1qck4_gg_"
|
|
14
14
|
});
|
|
15
15
|
import { Box } from '@semcore/flex-box';
|
|
16
16
|
import { useAsyncI18nMessages } from '@semcore/utils/lib/enhances/i18nEnhance';
|
|
@@ -10,10 +10,10 @@ import React from 'react';
|
|
|
10
10
|
import createComponent, { sstyled, Root } from '@semcore/core';
|
|
11
11
|
import { Flex } from '@semcore/flex-box';
|
|
12
12
|
/*__reshadow-styles__:"./legend-flex.shadow.css"*/
|
|
13
|
-
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".
|
|
14
|
-
"__SLegendFlex": "
|
|
15
|
-
"_direction_row": "
|
|
16
|
-
"_direction_column": "
|
|
13
|
+
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SLegendFlex_tcy6a_gg_._direction_row_tcy6a_gg_{align-items:flex-start;align-content:flex-start;flex-wrap:wrap;gap:8px 16px}.___SLegendFlex_tcy6a_gg_._direction_column_tcy6a_gg_{align-items:flex-start;flex-wrap:wrap;gap:8px}" /*__inner_css_end__*/, "tcy6a_gg_") /*__reshadow_css_end__*/, {
|
|
14
|
+
"__SLegendFlex": "___SLegendFlex_tcy6a_gg_",
|
|
15
|
+
"_direction_row": "_direction_row_tcy6a_gg_",
|
|
16
|
+
"_direction_column": "_direction_column_tcy6a_gg_"
|
|
17
17
|
});
|
|
18
18
|
import { LegendItemComponent } from '../LegendItem/LegendItem';
|
|
19
19
|
import Divider from '@semcore/divider';
|
|
@@ -19,23 +19,23 @@ import { Flex, Box } from '@semcore/flex-box';
|
|
|
19
19
|
import Checkbox from '@semcore/checkbox';
|
|
20
20
|
import { Text as TypographyText } from '@semcore/typography';
|
|
21
21
|
/*__reshadow-styles__:"./legend-item.shadow.css"*/
|
|
22
|
-
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".
|
|
23
|
-
"__SLegendItem": "
|
|
24
|
-
"_disabled": "
|
|
25
|
-
"__SPointShape": "
|
|
26
|
-
"_color": "
|
|
27
|
-
"--color": "--
|
|
28
|
-
"_shape_Circle": "
|
|
29
|
-
"_size_l": "
|
|
30
|
-
"_size_m": "
|
|
31
|
-
"_shape_Line": "
|
|
32
|
-
"_shape_Square": "
|
|
33
|
-
"_shape_Pattern": "
|
|
34
|
-
"__SIcon": "
|
|
35
|
-
"__SLabel": "
|
|
36
|
-
"__SAdditionalLabel": "
|
|
37
|
-
"__SCount": "
|
|
38
|
-
"__SPatternSymbol": "
|
|
22
|
+
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SLegendItem_17axk_gg_{min-width:0;align-items:flex-start}@media (hover:hover){.___SLegendItem_17axk_gg_:hover{cursor:pointer}.___SLegendItem_17axk_gg_.__disabled_17axk_gg_:hover{cursor:default}}.___SPointShape_17axk_gg_.__color_17axk_gg_{background-color:var(--color_17axk);margin-right:8px;flex-shrink:0}.___SPointShape_17axk_gg_._shape_Circle_17axk_gg_._size_l_17axk_gg_{width:16px;height:16px;border-radius:8px;margin-top:4px}.___SPointShape_17axk_gg_._shape_Circle_17axk_gg_._size_m_17axk_gg_{width:12px;height:12px;border-radius:6px;margin-top:4px}.___SPointShape_17axk_gg_._shape_Line_17axk_gg_._size_l_17axk_gg_{width:16px;height:4px;border-radius:3px;margin-top:9px}.___SPointShape_17axk_gg_._shape_Line_17axk_gg_._size_m_17axk_gg_{width:12px;height:4px;border-radius:3px;margin-top:8px}.___SPointShape_17axk_gg_._shape_Square_17axk_gg_._size_l_17axk_gg_{width:16px;height:16px;border-radius:2px;margin-top:4px}.___SPointShape_17axk_gg_._shape_Square_17axk_gg_._size_m_17axk_gg_{width:12px;height:12px;border-radius:2px;margin-top:4px}.___SPointShape_17axk_gg_._shape_Pattern_17axk_gg_{background-color:transparent;margin-right:4px}.___SIcon_17axk_gg_{line-height:0;margin-right:4px}.___SIcon_17axk_gg_._size_l_17axk_gg_{margin-top:4px}.___SIcon_17axk_gg_._size_m_17axk_gg_{margin-top:2px}.___SLabel_17axk_gg_{min-width:0}.___SAdditionalLabel_17axk_gg_._size_l_17axk_gg_,.___SCount_17axk_gg_._size_l_17axk_gg_,.___SLabel_17axk_gg_._size_l_17axk_gg_{font-size:var(--intergalactic-fs-300, 16px);line-height:var(--intergalactic-lh-300, 150%)}.___SAdditionalLabel_17axk_gg_._size_m_17axk_gg_,.___SCount_17axk_gg_._size_m_17axk_gg_,.___SLabel_17axk_gg_._size_m_17axk_gg_{font-size:var(--intergalactic-fs-200, 14px);line-height:var(--intergalactic-lh-200, 142%)}.___SAdditionalLabel_17axk_gg_,.___SCount_17axk_gg_{margin-left:4px}.___SAdditionalLabel_17axk_gg_{white-space:nowrap;display:flex;align-items:flex-start}.___SAdditionalLabel_17axk_gg_::before{content:\"\";display:inline-block;background-color:var(--intergalactic-text-secondary, #6c6e79);height:4px;width:4px;border-radius:2px;margin-right:4px}.___SAdditionalLabel_17axk_gg_._size_l_17axk_gg_::before{margin-top:10px}.___SAdditionalLabel_17axk_gg_._size_m_17axk_gg_::before{margin-top:8px}.___SPatternSymbol_17axk_gg_{transform:scale(.8)}" /*__inner_css_end__*/, "17axk_gg_") /*__reshadow_css_end__*/, {
|
|
23
|
+
"__SLegendItem": "___SLegendItem_17axk_gg_",
|
|
24
|
+
"_disabled": "__disabled_17axk_gg_",
|
|
25
|
+
"__SPointShape": "___SPointShape_17axk_gg_",
|
|
26
|
+
"_color": "__color_17axk_gg_",
|
|
27
|
+
"--color": "--color_17axk",
|
|
28
|
+
"_shape_Circle": "_shape_Circle_17axk_gg_",
|
|
29
|
+
"_size_l": "_size_l_17axk_gg_",
|
|
30
|
+
"_size_m": "_size_m_17axk_gg_",
|
|
31
|
+
"_shape_Line": "_shape_Line_17axk_gg_",
|
|
32
|
+
"_shape_Square": "_shape_Square_17axk_gg_",
|
|
33
|
+
"_shape_Pattern": "_shape_Pattern_17axk_gg_",
|
|
34
|
+
"__SIcon": "___SIcon_17axk_gg_",
|
|
35
|
+
"__SLabel": "___SLabel_17axk_gg_",
|
|
36
|
+
"__SAdditionalLabel": "___SAdditionalLabel_17axk_gg_",
|
|
37
|
+
"__SCount": "___SCount_17axk_gg_",
|
|
38
|
+
"__SPatternSymbol": "___SPatternSymbol_17axk_gg_"
|
|
39
39
|
});
|
|
40
40
|
import { StaticShapes } from './LegendItem.type';
|
|
41
41
|
import resolveColorEnhance from '@semcore/utils/lib/enhances/resolveColorEnhance';
|
|
@@ -11,12 +11,12 @@ import React from 'react';
|
|
|
11
11
|
import createComponent, { sstyled, Root } from '@semcore/core';
|
|
12
12
|
import { Box } from '@semcore/flex-box';
|
|
13
13
|
/*__reshadow-styles__:"./legend-table.shadow.css"*/
|
|
14
|
-
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".
|
|
15
|
-
"__SLegendTable": "
|
|
16
|
-
"_columns-count": "__columns-
|
|
17
|
-
"__SColumnItem": "
|
|
18
|
-
"_size_l": "
|
|
19
|
-
"_size_m": "
|
|
14
|
+
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SLegendTable_9yyt7_gg_.__columns-count_9yyt7_gg_{font-feature-settings:\"tnum\";font-variant-numeric:tabular-nums;display:grid;grid-template-columns:auto .2fr;align-items:center;height:-moz-fit-content;height:fit-content;grid-column-gap:16px;grid-row-gap:8px}.___SColumnItem_9yyt7_gg_._size_l_9yyt7_gg_{font-size:var(--intergalactic-fs-300, 16px);text-align:right}.___SColumnItem_9yyt7_gg_._size_m_9yyt7_gg_{font-size:var(--intergalactic-fs-200, 14px);text-align:right}" /*__inner_css_end__*/, "9yyt7_gg_") /*__reshadow_css_end__*/, {
|
|
15
|
+
"__SLegendTable": "___SLegendTable_9yyt7_gg_",
|
|
16
|
+
"_columns-count": "__columns-count_9yyt7_gg_",
|
|
17
|
+
"__SColumnItem": "___SColumnItem_9yyt7_gg_",
|
|
18
|
+
"_size_l": "_size_l_9yyt7_gg_",
|
|
19
|
+
"_size_m": "_size_m_9yyt7_gg_"
|
|
20
20
|
});
|
|
21
21
|
import { LegendItemComponent } from '../LegendItem/LegendItem';
|
|
22
22
|
import { BaseLegend } from '../BaseLegend';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/d3-chart",
|
|
3
3
|
"description": "Semrush D3 Chart Component",
|
|
4
|
-
"version": "3.48.
|
|
4
|
+
"version": "3.48.1",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es6/index.js",
|
|
7
7
|
"typings": "lib/types/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@semcore/animation": "2.29.0",
|
|
19
19
|
"@semcore/divider": "4.28.0",
|
|
20
20
|
"@semcore/flex-box": "5.29.0",
|
|
21
|
-
"@semcore/popper": "5.37.
|
|
21
|
+
"@semcore/popper": "5.37.1",
|
|
22
22
|
"@semcore/utils": "4.30.0",
|
|
23
23
|
"@types/d3-shape": "^3.1.0",
|
|
24
24
|
"@upsetjs/venn.js": "1.4.2",
|