@semcore/d3-chart 3.0.0 → 3.0.2

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.
Files changed (52) hide show
  1. package/CHANGELOG.md +13 -1
  2. package/lib/cjs/Area.js +9 -9
  3. package/lib/cjs/Axis.js +14 -14
  4. package/lib/cjs/Bar.js +8 -8
  5. package/lib/cjs/Bubble.js +10 -10
  6. package/lib/cjs/Donut.js +7 -7
  7. package/lib/cjs/Dots.js +9 -9
  8. package/lib/cjs/HorizontalBar.js +8 -8
  9. package/lib/cjs/Hover.js +3 -3
  10. package/lib/cjs/Line.js +8 -8
  11. package/lib/cjs/Plot.js +3 -3
  12. package/lib/cjs/Radar.js +17 -17
  13. package/lib/cjs/RadialTree.js +12 -12
  14. package/lib/cjs/ReferenceLine.js +9 -9
  15. package/lib/cjs/ResponsiveContainer.js +8 -3
  16. package/lib/cjs/ResponsiveContainer.js.map +1 -1
  17. package/lib/cjs/ScatterPlot.js +7 -7
  18. package/lib/cjs/Tooltip.js +12 -8
  19. package/lib/cjs/Tooltip.js.map +1 -1
  20. package/lib/cjs/Venn.js +7 -7
  21. package/lib/cjs/a11y/PlotA11yModule.js +2 -2
  22. package/lib/cjs/a11y/PlotA11yView.js +3 -3
  23. package/lib/cjs/style/tooltip.shadow.css +3 -5
  24. package/lib/cjs/types/Donut.d.js.map +1 -1
  25. package/lib/cjs/types/Hover.d.js.map +1 -1
  26. package/lib/es6/Area.js +9 -9
  27. package/lib/es6/Axis.js +14 -14
  28. package/lib/es6/Bar.js +8 -8
  29. package/lib/es6/Bubble.js +10 -10
  30. package/lib/es6/Donut.js +7 -7
  31. package/lib/es6/Dots.js +9 -9
  32. package/lib/es6/HorizontalBar.js +8 -8
  33. package/lib/es6/Hover.js +3 -3
  34. package/lib/es6/Line.js +8 -8
  35. package/lib/es6/Plot.js +3 -3
  36. package/lib/es6/Radar.js +17 -17
  37. package/lib/es6/RadialTree.js +12 -12
  38. package/lib/es6/ReferenceLine.js +9 -9
  39. package/lib/es6/ResponsiveContainer.js +8 -3
  40. package/lib/es6/ResponsiveContainer.js.map +1 -1
  41. package/lib/es6/ScatterPlot.js +7 -7
  42. package/lib/es6/Tooltip.js +12 -8
  43. package/lib/es6/Tooltip.js.map +1 -1
  44. package/lib/es6/Venn.js +7 -7
  45. package/lib/es6/a11y/PlotA11yModule.js +2 -2
  46. package/lib/es6/a11y/PlotA11yView.js +3 -3
  47. package/lib/es6/style/tooltip.shadow.css +3 -5
  48. package/lib/es6/types/Donut.d.js.map +1 -1
  49. package/lib/es6/types/Hover.d.js.map +1 -1
  50. package/lib/types/Donut.d.ts +1 -1
  51. package/lib/types/Hover.d.ts +2 -2
  52. package/package.json +2 -2
@@ -1 +1 @@
1
- {"version":3,"file":"ResponsiveContainer.js","names":["React","createComponent","Component","Root","sstyled","Box","trottle","fire","getOriginChildren","ResponsiveContainerRoot","_Component","_inherits","_super","_createSuper","props","_this","_classCallCheck","call","_defineProperty","_assertThisInitialized","createRef","entries","_this$asProps","asProps","Children","aspect","$container","_this$$container","width","clientWidth","height","clientHeight","style","window","getComputedStyle","minHeight","Number","parseInt","getPropertyValue","maxHeight","size","forceUpdate","observer","ResizeObserver","handleResize","_createClass","key","get","containerRef","current","value","setContext","_this$size","_slicedToArray","componentDidMount","observe","componentWillUnmount","disconnect","render","_ref","_ref2","SResponsiveContainer","styles","createElement","cn","_objectSpread","_assignProps","ResponsiveContainer"],"sources":["../../src/ResponsiveContainer.jsx"],"sourcesContent":["import React from 'react';\nimport createComponent, { Component, Root, sstyled } from '@semcore/core';\nimport { Box } from '@semcore/flex-box';\nimport trottle from '@semcore/utils/lib/rafTrottle';\nimport fire from '@semcore/utils/lib/fire';\nimport getOriginChildren from '@semcore/utils/lib/getOriginChildren';\n\nclass ResponsiveContainerRoot extends Component {\n static displayName = 'ResponsiveContainer';\n\n containerRef = React.createRef();\n size = [0, 0];\n\n constructor(props) {\n super(props);\n this.observer = new ResizeObserver(this.handleResize);\n }\n\n get $container() {\n return this.containerRef.current;\n }\n\n handleResize = trottle((entries) => {\n const { Children, aspect } = this.asProps;\n\n if (!this.$container) return;\n\n let { clientWidth: width, clientHeight: height } = this.$container;\n\n if (aspect) {\n const style = window.getComputedStyle(this.$container);\n const minHeight = Number.parseInt(style.getPropertyValue('min-height'));\n const maxHeight = Number.parseInt(style.getPropertyValue('max-height'));\n height = width * aspect;\n\n if (height < minHeight) {\n height = minHeight;\n }\n if (height > maxHeight) {\n height = maxHeight;\n }\n }\n\n if (this.size[0] === width && this.size[1] === height) return;\n\n this.size = [width, height];\n\n fire(this, 'onResize', this.size, entries);\n\n if (typeof getOriginChildren(Children) === 'function') {\n this.forceUpdate();\n }\n });\n\n setContext() {\n const [width, height] = this.size;\n return {\n width,\n height,\n };\n }\n\n componentDidMount() {\n if (this.$container) {\n // TODO: may be we can increase perfomance here? (by lsroman)\n this.observer.observe(this.$container);\n }\n }\n\n // TODO component did update ref?\n\n componentWillUnmount() {\n this.observer.disconnect();\n }\n\n render() {\n const SResponsiveContainer = Root;\n const { styles } = this.asProps;\n return sstyled(styles)(<SResponsiveContainer render={Box} ref={this.containerRef} />);\n }\n}\n\nconst ResponsiveContainer = createComponent(ResponsiveContainerRoot);\n\nexport default ResponsiveContainer;\n"],"mappings":"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"}
1
+ {"version":3,"file":"ResponsiveContainer.js","names":["React","createComponent","Component","Root","sstyled","Box","trottle","fire","getOriginChildren","canUseDOM","ResponsiveContainerRoot","_Component","_inherits","_super","_createSuper","props","_this","_classCallCheck","call","_defineProperty","_assertThisInitialized","createRef","entries","_this$asProps","asProps","Children","aspect","$container","_this$$container","width","clientWidth","height","clientHeight","style","window","getComputedStyle","minHeight","Number","parseInt","getPropertyValue","maxHeight","size","forceUpdate","observer","ResizeObserver","handleResize","_createClass","key","get","containerRef","current","value","setContext","_this$size","_slicedToArray","componentDidMount","_this$observer","observe","componentWillUnmount","_this$observer2","disconnect","render","_ref","_ref2","SResponsiveContainer","styles","createElement","cn","_objectSpread","_assignProps","ResponsiveContainer"],"sources":["../../src/ResponsiveContainer.jsx"],"sourcesContent":["import React from 'react';\nimport createComponent, { Component, Root, sstyled } from '@semcore/core';\nimport { Box } from '@semcore/flex-box';\nimport trottle from '@semcore/utils/lib/rafTrottle';\nimport fire from '@semcore/utils/lib/fire';\nimport getOriginChildren from '@semcore/utils/lib/getOriginChildren';\nimport canUseDOM from '@semcore/utils/lib/canUseDOM';\n\nclass ResponsiveContainerRoot extends Component {\n static displayName = 'ResponsiveContainer';\n\n containerRef = React.createRef();\n size = [0, 0];\n\n constructor(props) {\n super(props);\n if (canUseDOM()) {\n this.observer = new ResizeObserver(this.handleResize);\n }\n }\n\n get $container() {\n return this.containerRef.current;\n }\n\n handleResize = trottle((entries) => {\n const { Children, aspect } = this.asProps;\n\n if (!this.$container) return;\n\n let { clientWidth: width, clientHeight: height } = this.$container;\n\n if (aspect) {\n const style = window.getComputedStyle(this.$container);\n const minHeight = Number.parseInt(style.getPropertyValue('min-height'));\n const maxHeight = Number.parseInt(style.getPropertyValue('max-height'));\n height = width * aspect;\n\n if (height < minHeight) {\n height = minHeight;\n }\n if (height > maxHeight) {\n height = maxHeight;\n }\n }\n\n if (this.size[0] === width && this.size[1] === height) return;\n\n this.size = [width, height];\n\n fire(this, 'onResize', this.size, entries);\n\n if (typeof getOriginChildren(Children) === 'function') {\n this.forceUpdate();\n }\n });\n\n setContext() {\n const [width, height] = this.size;\n return {\n width,\n height,\n };\n }\n\n componentDidMount() {\n if (this.$container) {\n // TODO: may be we can increase perfomance here? (by lsroman)\n this.observer?.observe(this.$container);\n }\n }\n\n // TODO component did update ref?\n\n componentWillUnmount() {\n this.observer?.disconnect();\n }\n\n render() {\n const SResponsiveContainer = Root;\n const { styles } = this.asProps;\n return sstyled(styles)(<SResponsiveContainer render={Box} ref={this.containerRef} />);\n }\n}\n\nconst ResponsiveContainer = createComponent(ResponsiveContainerRoot);\n\nexport default ResponsiveContainer;\n"],"mappings":"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"}
@@ -18,13 +18,13 @@ import { CONSTANT } from './utils';
18
18
  import ClipPath from './ClipPath';
19
19
  import Tooltip from './Tooltip';
20
20
  /*__reshadow-styles__:"./style/scatterplot.shadow.css"*/
21
- var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SScatterPlot_5xl8p_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:cx,cy;transition-duration:var(--duration_5xl8p);transition-timing-function:ease-in-out;opacity:.5}@media (hover:hover){.___SScatterPlot_5xl8p_gg_:hover{opacity:.8}}.___SScatterPlot_5xl8p_gg_.__color_5xl8p_gg_{fill:var(--color_5xl8p)}.___SScatterPlot_5xl8p_gg_.__transparent_5xl8p_gg_{opacity:.3}.___SValue_5xl8p_gg_{text-anchor:middle;font-size:var(--intergalactic-fs-50, 10px);stroke:var(--intergalactic-chart-palette-order-9, #008ff8)}.___SValue_5xl8p_gg_.__color_5xl8p_gg_{stroke:var(--color_5xl8p)}.___SValue_5xl8p_gg_.__transparent_5xl8p_gg_{opacity:.3}" /*__inner_css_end__*/, "5xl8p_gg_") /*__reshadow_css_end__*/, {
22
- "__SScatterPlot": "___SScatterPlot_5xl8p_gg_",
23
- "--duration": "--duration_5xl8p",
24
- "_color": "__color_5xl8p_gg_",
25
- "--color": "--color_5xl8p",
26
- "_transparent": "__transparent_5xl8p_gg_",
27
- "__SValue": "___SValue_5xl8p_gg_"
21
+ var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SScatterPlot_fhnc6_gg_{fill:var(--intergalactic-chart-palette-order-1, #2bb3ff);transition-property:cx,cy;transition-duration:var(--duration_fhnc6);transition-timing-function:ease-in-out;opacity:.5}@media (hover:hover){.___SScatterPlot_fhnc6_gg_:hover{opacity:.8}}.___SScatterPlot_fhnc6_gg_.__color_fhnc6_gg_{fill:var(--color_fhnc6)}.___SScatterPlot_fhnc6_gg_.__transparent_fhnc6_gg_{opacity:.3}.___SValue_fhnc6_gg_{text-anchor:middle;font-size:var(--intergalactic-fs-50, 10px);stroke:var(--intergalactic-chart-palette-order-9, #008ff8)}.___SValue_fhnc6_gg_.__color_fhnc6_gg_{stroke:var(--color_fhnc6)}.___SValue_fhnc6_gg_.__transparent_fhnc6_gg_{opacity:.3}" /*__inner_css_end__*/, "fhnc6_gg_") /*__reshadow_css_end__*/, {
22
+ "__SScatterPlot": "___SScatterPlot_fhnc6_gg_",
23
+ "--duration": "--duration_fhnc6",
24
+ "_color": "__color_fhnc6_gg_",
25
+ "--color": "--color_fhnc6",
26
+ "_transparent": "__transparent_fhnc6_gg_",
27
+ "__SValue": "___SValue_fhnc6_gg_"
28
28
  });
29
29
  var ScatterPlotRoot = /*#__PURE__*/function (_Component) {
30
30
  _inherits(ScatterPlotRoot, _Component);
@@ -21,14 +21,14 @@ import resolveColor from '@semcore/utils/lib/color';
21
21
  import createElement from './createElement';
22
22
  import { CONSTANT } from './utils';
23
23
  /*__reshadow-styles__:"./style/tooltip.shadow.css"*/
24
- var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___STooltip_l1u9d_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_l1u9d_gg_{color:var(--intergalactic-text-secondary, #6c6e79);margin-bottom:var(--intergalactic-spacing-2x, 8px)}.___SDotGroup_l1u9d_gg_{display:flex;align-items:center}.___SDot_l1u9d_gg_{width:8px;height:8px;border-radius:50%;margin-right:var(--intergalactic-spacing-2x, 8px);background:var(--intergalactic-icon-secondary-info, #2bb3ff)}.___SDot_l1u9d_gg_.__color_l1u9d_gg_{background:var(--color_l1u9d)}.___SFooter_l1u9d_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__*/, "l1u9d_gg_") /*__reshadow_css_end__*/, {
25
- "__STooltip": "___STooltip_l1u9d_gg_",
26
- "__STitle": "___STitle_l1u9d_gg_",
27
- "__SDotGroup": "___SDotGroup_l1u9d_gg_",
28
- "__SDot": "___SDot_l1u9d_gg_",
29
- "_color": "__color_l1u9d_gg_",
30
- "--color": "--color_l1u9d",
31
- "__SFooter": "___SFooter_l1u9d_gg_"
24
+ var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___STooltip_15l59_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_15l59_gg_{color:var(--intergalactic-text-secondary, #6c6e79);margin-bottom:var(--intergalactic-spacing-2x, 8px)}.___SDotGroup_15l59_gg_{display:flex;align-items:center}.___SDot_15l59_gg_{width:8px;height:8px;border-radius:50%;margin-right:var(--intergalactic-spacing-2x, 8px);background:var(--intergalactic-icon-secondary-info, #2bb3ff)}.___SDot_15l59_gg_.__color_15l59_gg_{background:var(--color_15l59)}.___SFooter_15l59_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__*/, "15l59_gg_") /*__reshadow_css_end__*/, {
25
+ "__STooltip": "___STooltip_15l59_gg_",
26
+ "__STitle": "___STitle_15l59_gg_",
27
+ "__SDotGroup": "___SDotGroup_15l59_gg_",
28
+ "__SDot": "___SDot_15l59_gg_",
29
+ "_color": "__color_15l59_gg_",
30
+ "--color": "--color_15l59",
31
+ "__SFooter": "___SFooter_15l59_gg_"
32
32
  });
33
33
  var TooltipRoot = /*#__PURE__*/function (_Component) {
34
34
  _inherits(TooltipRoot, _Component);
@@ -158,6 +158,7 @@ function PopperPopper(props) {
158
158
  "y": y
159
159
  }));
160
160
  }
161
+ PopperPopper.style = style;
161
162
  function Title(props) {
162
163
  var _ref2 = arguments[0],
163
164
  _ref6;
@@ -167,6 +168,7 @@ function Title(props) {
167
168
  "__excludeProps": ['data', 'scale']
168
169
  }, _ref2))));
169
170
  }
171
+ Title.style = style;
170
172
  function Dot(props) {
171
173
  var _ref3 = arguments[0],
172
174
  _ref7;
@@ -181,6 +183,7 @@ function Dot(props) {
181
183
  "color": resolveColor(color)
182
184
  })), /*#__PURE__*/React.createElement(Children, _ref7.cn("Children", {})));
183
185
  }
186
+ Dot.style = style;
184
187
  function Footer(props) {
185
188
  var _ref4 = arguments[0],
186
189
  _ref8;
@@ -190,6 +193,7 @@ function Footer(props) {
190
193
  "__excludeProps": ['data', 'scale']
191
194
  }, _ref4))));
192
195
  }
196
+ Footer.style = style;
193
197
  var Tooltip = createElement(TooltipRoot, {
194
198
  Trigger: Popper.Trigger,
195
199
  Popper: PopperPopper,
@@ -1 +1 @@
1
- {"version":3,"file":"Tooltip.js","names":["React","useCallback","Component","Root","sstyled","Popper","Box","findComponent","resolveColor","createElement","CONSTANT","style","_sstyled","insert","TooltipRoot","_Component","_inherits","_super","_createSuper","_this","_classCallCheck","_len","arguments","length","args","Array","_key","call","apply","concat","_defineProperty","_assertThisInitialized","$visible","anchorProps","tooltipProps","_createClass","key","value","getTriggerProps","_this$asProps","asProps","x","y","getPopperProps","excludeAnchorProps","_objectSpread","state","componentDidMount","_this2","_this$asProps2","eventEmitter","rootRef","unsubscribeTooltipVisible","subscribe","visible","node","setState","VIRTUAL_ELEMENT","current","contains","_this2$popper$current","setPopperTrigger","popper","update","componentWillUnmount","render","_ref","_this3","_this$asProps3","Children","children","tag","other","_objectWithoutProperties","_excluded","advanceMode","Tooltip","Trigger","displayName","_assignProps","handlerCancel","allowedAutoPlacements","_ref9","_this3$popper$current","setTrigger","Fragment","PopperPopper","props","_ref5","STooltip","Element","styles","cn","Title","_ref2","arguments[0]","_ref6","STitle","_assignProps2","Dot","_ref3","_ref7","color","SDotGroup","SDot","_assignProps3","Footer","_ref4","_ref8","SFooter","_assignProps4"],"sources":["../../src/Tooltip.jsx"],"sourcesContent":["import React, { useCallback } from 'react';\nimport { Component, Root, sstyled } from '@semcore/core';\nimport Popper from '@semcore/popper';\nimport { Box } from '@semcore/flex-box';\nimport findComponent from '@semcore/utils/lib/findComponent';\nimport resolveColor from '@semcore/utils/lib/color';\nimport createElement from './createElement';\nimport { CONSTANT } from './utils';\n\nimport style from './style/tooltip.shadow.css';\n\nclass TooltipRoot extends Component {\n static displayName = 'Tooltip';\n\n static style = style;\n\n state = {\n $visible: false,\n anchorProps: {},\n tooltipProps: {},\n };\n\n handlerCancel = () => false;\n\n getTriggerProps() {\n // TODO: как то убрать\n const { x, y } = this.asProps;\n return { x, y };\n }\n\n getPopperProps() {\n if (this.asProps.excludeAnchorProps) {\n return {\n $visible: this.state.$visible,\n ...this.state.tooltipProps,\n };\n }\n\n return {\n $visible: this.state.$visible,\n ...this.state.anchorProps,\n ...this.state.tooltipProps,\n };\n }\n\n componentDidMount() {\n const { eventEmitter, rootRef } = this.asProps;\n this.unsubscribeTooltipVisible = eventEmitter.subscribe(\n 'onTooltipVisible',\n (visible, anchorProps, tooltipProps, node) => {\n this.setState(\n {\n anchorProps,\n tooltipProps,\n $visible: visible,\n },\n () => {\n if (node && (node[CONSTANT.VIRTUAL_ELEMENT] || rootRef.current.contains(node))) {\n this?.setPopperTrigger(node);\n this.popper.current?.update();\n }\n },\n );\n },\n );\n }\n\n componentWillUnmount() {\n if (this.unsubscribeTooltipVisible) {\n this.unsubscribeTooltipVisible();\n }\n }\n\n render() {\n const { Children, children, tag, ...other } = this.asProps;\n\n const advanceMode = !!findComponent(Children, [\n Tooltip.Trigger.displayName,\n Tooltip.Popper.displayName,\n ]);\n return (\n <Root\n render={Popper}\n visible={this.state.$visible}\n onFirstUpdate={this.handlerCancel}\n onOutsideClick={this.handlerCancel}\n interaction='none'\n offset={8}\n flip={{ allowedAutoPlacements: ['left', 'right'] }}\n >\n {({ popper, setTrigger }) => {\n this.setPopperTrigger = setTrigger;\n this.popper = popper;\n this.popper.current?.update();\n return advanceMode ? (\n <Children />\n ) : (\n <>\n {tag && <Tooltip.Trigger tag={tag} />}\n <Tooltip.Popper {...other}>{children}</Tooltip.Popper>\n </>\n );\n }}\n </Root>\n );\n }\n}\n\nfunction PopperPopper(props) {\n const { Element: STooltip, styles, $visible, x, y } = props;\n\n const handlerCancel = useCallback(() => false, []);\n\n if (!$visible) return null;\n\n return sstyled(styles)(\n <STooltip\n render={Popper.Popper}\n childrenPosition='inside'\n onMouseMove={handlerCancel}\n x={x}\n y={y}\n />,\n );\n}\n\nfunction Title(props) {\n const STitle = Root;\n const { styles } = props;\n return sstyled(styles)(<STitle render={Box} __excludeProps={['data', 'scale']} />);\n}\n\nfunction Dot(props) {\n const { styles, color, Children } = props;\n const SDotGroup = Root;\n const SDot = Box;\n return sstyled(styles)(\n <SDotGroup render={Box} __excludeProps={['data', 'scale']}>\n <SDot color={resolveColor(color)} />\n <Children />\n </SDotGroup>,\n );\n}\n\nfunction Footer(props) {\n const { styles } = props;\n const SFooter = Root;\n return sstyled(styles)(<SFooter render={Box} __excludeProps={['data', 'scale']} />);\n}\n\nconst Tooltip = createElement(TooltipRoot, {\n Trigger: Popper.Trigger,\n Popper: PopperPopper,\n Title,\n Footer,\n Dot,\n});\n\nexport default Tooltip;\n"],"mappings":"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"}
1
+ {"version":3,"file":"Tooltip.js","names":["React","useCallback","Component","Root","sstyled","Popper","Box","findComponent","resolveColor","createElement","CONSTANT","style","_sstyled","insert","TooltipRoot","_Component","_inherits","_super","_createSuper","_this","_classCallCheck","_len","arguments","length","args","Array","_key","call","apply","concat","_defineProperty","_assertThisInitialized","$visible","anchorProps","tooltipProps","_createClass","key","value","getTriggerProps","_this$asProps","asProps","x","y","getPopperProps","excludeAnchorProps","_objectSpread","state","componentDidMount","_this2","_this$asProps2","eventEmitter","rootRef","unsubscribeTooltipVisible","subscribe","visible","node","setState","VIRTUAL_ELEMENT","current","contains","_this2$popper$current","setPopperTrigger","popper","update","componentWillUnmount","render","_ref","_this3","_this$asProps3","Children","children","tag","other","_objectWithoutProperties","_excluded","advanceMode","Tooltip","Trigger","displayName","_assignProps","handlerCancel","allowedAutoPlacements","_ref9","_this3$popper$current","setTrigger","Fragment","PopperPopper","props","_ref5","STooltip","Element","styles","cn","Title","_ref2","arguments[0]","_ref6","STitle","_assignProps2","Dot","_ref3","_ref7","color","SDotGroup","SDot","_assignProps3","Footer","_ref4","_ref8","SFooter","_assignProps4"],"sources":["../../src/Tooltip.jsx"],"sourcesContent":["import React, { useCallback } from 'react';\nimport { Component, Root, sstyled } from '@semcore/core';\nimport Popper from '@semcore/popper';\nimport { Box } from '@semcore/flex-box';\nimport findComponent from '@semcore/utils/lib/findComponent';\nimport resolveColor from '@semcore/utils/lib/color';\nimport createElement from './createElement';\nimport { CONSTANT } from './utils';\n\nimport style from './style/tooltip.shadow.css';\n\nclass TooltipRoot extends Component {\n static displayName = 'Tooltip';\n\n static style = style;\n\n state = {\n $visible: false,\n anchorProps: {},\n tooltipProps: {},\n };\n\n handlerCancel = () => false;\n\n getTriggerProps() {\n // TODO: как то убрать\n const { x, y } = this.asProps;\n return { x, y };\n }\n\n getPopperProps() {\n if (this.asProps.excludeAnchorProps) {\n return {\n $visible: this.state.$visible,\n ...this.state.tooltipProps,\n };\n }\n\n return {\n $visible: this.state.$visible,\n ...this.state.anchorProps,\n ...this.state.tooltipProps,\n };\n }\n\n componentDidMount() {\n const { eventEmitter, rootRef } = this.asProps;\n this.unsubscribeTooltipVisible = eventEmitter.subscribe(\n 'onTooltipVisible',\n (visible, anchorProps, tooltipProps, node) => {\n this.setState(\n {\n anchorProps,\n tooltipProps,\n $visible: visible,\n },\n () => {\n if (node && (node[CONSTANT.VIRTUAL_ELEMENT] || rootRef.current.contains(node))) {\n this?.setPopperTrigger(node);\n this.popper.current?.update();\n }\n },\n );\n },\n );\n }\n\n componentWillUnmount() {\n if (this.unsubscribeTooltipVisible) {\n this.unsubscribeTooltipVisible();\n }\n }\n\n render() {\n const { Children, children, tag, ...other } = this.asProps;\n\n const advanceMode = !!findComponent(Children, [\n Tooltip.Trigger.displayName,\n Tooltip.Popper.displayName,\n ]);\n return (\n <Root\n render={Popper}\n visible={this.state.$visible}\n onFirstUpdate={this.handlerCancel}\n onOutsideClick={this.handlerCancel}\n interaction='none'\n offset={8}\n flip={{ allowedAutoPlacements: ['left', 'right'] }}\n >\n {({ popper, setTrigger }) => {\n this.setPopperTrigger = setTrigger;\n this.popper = popper;\n this.popper.current?.update();\n return advanceMode ? (\n <Children />\n ) : (\n <>\n {tag && <Tooltip.Trigger tag={tag} />}\n <Tooltip.Popper {...other}>{children}</Tooltip.Popper>\n </>\n );\n }}\n </Root>\n );\n }\n}\n\nfunction PopperPopper(props) {\n const { Element: STooltip, styles, $visible, x, y } = props;\n\n const handlerCancel = useCallback(() => false, []);\n\n if (!$visible) return null;\n\n return sstyled(styles)(\n <STooltip\n render={Popper.Popper}\n childrenPosition='inside'\n onMouseMove={handlerCancel}\n x={x}\n y={y}\n />,\n );\n}\nPopperPopper.style = style;\n\nfunction Title(props) {\n const STitle = Root;\n const { styles } = props;\n return sstyled(styles)(<STitle render={Box} __excludeProps={['data', 'scale']} />);\n}\nTitle.style = style;\n\nfunction Dot(props) {\n const { styles, color, Children } = props;\n const SDotGroup = Root;\n const SDot = Box;\n return sstyled(styles)(\n <SDotGroup render={Box} __excludeProps={['data', 'scale']}>\n <SDot color={resolveColor(color)} />\n <Children />\n </SDotGroup>,\n );\n}\nDot.style = style;\n\nfunction Footer(props) {\n const { styles } = props;\n const SFooter = Root;\n return sstyled(styles)(<SFooter render={Box} __excludeProps={['data', 'scale']} />);\n}\nFooter.style = style;\n\nconst Tooltip = createElement(TooltipRoot, {\n Trigger: Popper.Trigger,\n Popper: PopperPopper,\n Title,\n Footer,\n Dot,\n});\n\nexport default Tooltip;\n"],"mappings":"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"}
package/lib/es6/Venn.js CHANGED
@@ -18,13 +18,13 @@ import createElement from './createElement';
18
18
  import { CONSTANT } from './utils';
19
19
  import Tooltip from './Tooltip';
20
20
  /*__reshadow-styles__:"./style/venn.shadow.css"*/
21
- var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SCircle_1e2s7_gg_,.___SIntersection_1e2s7_gg_{stroke:var(--intergalactic-chart-grid-border, #ffffff);stroke-width:2px}.___SCircle_1e2s7_gg_{fill:var(--intergalactic-chart-palette-order-2, #59ddaa);fill-opacity:.5;transition-property:cx,cy;transition-duration:var(--duration_1e2s7);transition-timing-function:ease-in-out}@media (hover:hover){.___SCircle_1e2s7_gg_:hover{fill-opacity:.7}}.___SCircle_1e2s7_gg_.__color_1e2s7_gg_{fill:var(--color_1e2s7)}.___SCircle_1e2s7_gg_.__transparent_1e2s7_gg_{opacity:.3}.___SIntersection_1e2s7_gg_{fill-opacity:0}@media (hover:hover){.___SIntersection_1e2s7_gg_:hover{fill-opacity:.1}}.___SIntersection_1e2s7_gg_.__transparent_1e2s7_gg_{opacity:.3}" /*__inner_css_end__*/, "1e2s7_gg_") /*__reshadow_css_end__*/, {
22
- "__SCircle": "___SCircle_1e2s7_gg_",
23
- "--duration": "--duration_1e2s7",
24
- "_color": "__color_1e2s7_gg_",
25
- "--color": "--color_1e2s7",
26
- "_transparent": "__transparent_1e2s7_gg_",
27
- "__SIntersection": "___SIntersection_1e2s7_gg_"
21
+ var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SCircle_1mkv1_gg_,.___SIntersection_1mkv1_gg_{stroke:var(--intergalactic-chart-grid-border, #ffffff);stroke-width:2px}.___SCircle_1mkv1_gg_{fill:var(--intergalactic-chart-palette-order-2, #59ddaa);fill-opacity:.5;transition-property:cx,cy;transition-duration:var(--duration_1mkv1);transition-timing-function:ease-in-out}@media (hover:hover){.___SCircle_1mkv1_gg_:hover{fill-opacity:.7}}.___SCircle_1mkv1_gg_.__color_1mkv1_gg_{fill:var(--color_1mkv1)}.___SCircle_1mkv1_gg_.__transparent_1mkv1_gg_{opacity:.3}.___SIntersection_1mkv1_gg_{fill-opacity:0}@media (hover:hover){.___SIntersection_1mkv1_gg_:hover{fill-opacity:.1}}.___SIntersection_1mkv1_gg_.__transparent_1mkv1_gg_{opacity:.3}" /*__inner_css_end__*/, "1mkv1_gg_") /*__reshadow_css_end__*/, {
22
+ "__SCircle": "___SCircle_1mkv1_gg_",
23
+ "--duration": "--duration_1mkv1",
24
+ "_color": "__color_1mkv1_gg_",
25
+ "--color": "--color_1mkv1",
26
+ "_transparent": "__transparent_1mkv1_gg_",
27
+ "__SIntersection": "___SIntersection_1mkv1_gg_"
28
28
  });
29
29
  var VennRoot = /*#__PURE__*/function (_Component) {
30
30
  _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__*/".___SPlotA11yModule_16te5_gg_{-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;opacity:0}.___SPlotA11yModule_16te5_gg_:focus{-webkit-user-select:all;-moz-user-select:all;user-select:all;pointer-events:all;opacity:1}" /*__inner_css_end__*/, "16te5_gg_") /*__reshadow_css_end__*/, {
14
- "__SPlotA11yModule": "___SPlotA11yModule_16te5_gg_"
13
+ var styles = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SPlotA11yModule_1ehnu_gg_{-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;opacity:0}.___SPlotA11yModule_1ehnu_gg_:focus{-webkit-user-select:all;-moz-user-select:all;user-select:all;pointer-events:all;opacity:1}" /*__inner_css_end__*/, "1ehnu_gg_") /*__reshadow_css_end__*/, {
14
+ "__SPlotA11yModule": "___SPlotA11yModule_1ehnu_gg_"
15
15
  });
16
16
  import { Context as I18nContext, useI18n } from '@semcore/utils/lib/enhances/WithI18n';
17
17
  import { Box } from '@semcore/flex-box';
@@ -12,9 +12,9 @@ import { getIntl } from './intl';
12
12
  import { summarize } from './summarize';
13
13
  import { Root, sstyled } from '@semcore/core';
14
14
  /*__reshadow-styles__:"../style/plotA11yView.shadow.css"*/
15
- var styles = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SPlotA11yView_r2v00_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_r2v00_gg_.__focus-within_r2v00_gg_,.___SPlotA11yView_r2v00_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_r2v00_gg_:focus,.___SPlotA11yView_r2v00_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_r2v00_gg_ a{cursor:pointer;text-decoration:underline;margin-bottom:var(--intergalactic-spacing-2x, 8px);display:block}.___SPlotA11yView_r2v00_gg_ table,.___SPlotA11yView_r2v00_gg_ td,.___SPlotA11yView_r2v00_gg_ th{border:1px solid var(--intergalactic-border-primary, #c4c7cf)}" /*__inner_css_end__*/, "r2v00_gg_") /*__reshadow_css_end__*/, {
16
- "__SPlotA11yView": "___SPlotA11yView_r2v00_gg_",
17
- "_focus-within": "__focus-within_r2v00_gg_"
15
+ var styles = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SPlotA11yView_2dcrc_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_2dcrc_gg_.__focus-within_2dcrc_gg_,.___SPlotA11yView_2dcrc_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_2dcrc_gg_:focus,.___SPlotA11yView_2dcrc_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_2dcrc_gg_ a{cursor:pointer;text-decoration:underline;margin-bottom:var(--intergalactic-spacing-2x, 8px);display:block}.___SPlotA11yView_2dcrc_gg_ table,.___SPlotA11yView_2dcrc_gg_ td,.___SPlotA11yView_2dcrc_gg_ th{border:1px solid var(--intergalactic-border-primary, #c4c7cf)}" /*__inner_css_end__*/, "2dcrc_gg_") /*__reshadow_css_end__*/, {
16
+ "__SPlotA11yView": "___SPlotA11yView_2dcrc_gg_",
17
+ "_focus-within": "__focus-within_2dcrc_gg_"
18
18
  });
19
19
  import { Box } from '@semcore/flex-box';
20
20
  import { useAsyncI18nMessages } from '@semcore/utils/lib/enhances/i18nEnhance';
@@ -37,8 +37,6 @@ SDot[color] {
37
37
  SFooter {
38
38
  background: var(--intergalactic-bg-secondary-neutral, #f4f5f9);
39
39
  padding: var(--intergalactic-spacing-1x, 4px) var(--intergalactic-spacing-3x, 12px);
40
- border-radius: 0 0 var(--intergalactic-rounded-medium, 6px)
41
- var(--intergalactic-rounded-medium, 6px);
42
- margin: var(--intergalactic-spacing-3x, 12px) calc(-1 * var(--intergalactic-spacing-3x, 12px))
43
- calc(-1 * var(--intergalactic-spacing-3x, 12px));
44
- }
40
+ border-radius: 0 0 var(--intergalactic-rounded-medium, 6px) var(--intergalactic-rounded-medium, 6px);
41
+ margin: var(--intergalactic-spacing-3x, 12px) calc(-1 * var(--intergalactic-spacing-3x, 12px)) calc(-1 * var(--intergalactic-spacing-3x, 12px));
42
+ }
@@ -1 +1 @@
1
- {"version":3,"file":"Donut.d.js","names":[],"sources":["../../../src/types/Donut.d.ts"],"sourcesContent":["import { UnknownProperties } from '@semcore/core';\nimport { Context } from './context';\nimport { TooltipType } from './Tooltip';\nimport { IntergalacticD3Component } from './Plot';\n\n/** @deprecated */\nexport interface IDonutProps extends DonutProps, UnknownProperties {}\nexport type DonutProps = Context & {\n /** Inner radius\n * @default 0\n * */\n innerRadius?: number;\n /** Outer radius\n * @default calculated by the formula from width, height\n * */\n outerRadius?: number;\n /** Semi donut */\n halfsize?: boolean;\n /** Animation duration in ms\n * @default 500\n */\n duration?: number;\n};\n\n/** @deprecated */\nexport interface IPieProps extends PieProps, UnknownProperties {}\nexport type PieProps = Context & {\n /**\n * Name of the field in the data\n * */\n dataKey: string;\n /**\n * Human readable name of the segment\n * */\n name: string;\n /** Color pie\n @default #50aef4\n **/\n color?: string;\n /**\n * Active sector\n * */\n active?: boolean;\n /** Enables element transparency */\n transparent?: boolean;\n};\n\n/** @deprecated */\nexport interface IEmptyDataProps extends EmptyDataProps, UnknownProperties {}\nexport type EmptyDataProps = Context & {};\n\n/** @deprecated */\nexport interface ILabelProps extends LabelProps, UnknownProperties {}\nexport type LabelProps = Context & {\n label?: string;\n};\n\ndeclare const Donut: IntergalacticD3Component<'g', DonutProps> & {\n Pie: IntergalacticD3Component<'path', PieProps>;\n EmptyData: IntergalacticD3Component<'path', IEmptyDataProps>;\n Label: IntergalacticD3Component<'text', LabelProps>;\n Tooltip: TooltipType<PieProps>;\n};\n\nexport default Donut;\n"],"mappings":""}
1
+ {"version":3,"file":"Donut.d.js","names":[],"sources":["../../../src/types/Donut.d.ts"],"sourcesContent":["import { UnknownProperties } from '@semcore/core';\nimport { Context } from './context';\nimport { TooltipType } from './Tooltip';\nimport { IntergalacticD3Component } from './Plot';\n\n/** @deprecated */\nexport interface IDonutProps extends DonutProps, UnknownProperties {}\nexport type DonutProps = Context & {\n /** Inner radius\n * @default 0\n * */\n innerRadius?: number;\n /** Outer radius\n * @default calculated by the formula from width, height\n * */\n outerRadius?: number;\n /** Semi donut */\n halfsize?: boolean;\n /** Animation duration in ms\n * @default 500\n */\n duration?: number;\n};\n\n/** @deprecated */\nexport interface IPieProps extends PieProps, UnknownProperties {}\nexport type PieProps = Context & {\n /**\n * Name of the field in the data\n * */\n dataKey: string;\n /**\n * Human readable name of the segment\n * */\n name: string;\n /** Color pie\n @default #50aef4\n **/\n color?: string;\n /**\n * Active sector\n * */\n active?: boolean;\n /** Enables element transparency */\n transparent?: boolean;\n};\n\n/** @deprecated */\nexport interface IEmptyDataProps extends EmptyDataProps, UnknownProperties {}\nexport type EmptyDataProps = Context & {};\n\n/** @deprecated */\nexport interface ILabelProps extends LabelProps, UnknownProperties {}\nexport type LabelProps = Context & {\n label?: string;\n};\n\ndeclare const Donut: IntergalacticD3Component<'g', DonutProps> & {\n Pie: IntergalacticD3Component<'path', PieProps>;\n EmptyData: IntergalacticD3Component<'path', EmptyDataProps>;\n Label: IntergalacticD3Component<'text', LabelProps>;\n Tooltip: TooltipType<PieProps>;\n};\n\nexport default Donut;\n"],"mappings":""}
@@ -1 +1 @@
1
- {"version":3,"file":"Hover.d.js","names":[],"sources":["../../../src/types/Hover.d.ts"],"sourcesContent":["import { UnknownProperties } from '@semcore/core';\nimport { Context } from './context';\nimport { ReturnEl } from '@semcore/core';\nimport { TooltipTypeBase } from './Tooltip';\nimport { IBoxProps } from '@semcore/flex-box';\nimport { IntergalacticD3Component } from './Plot';\n\n/** @deprecated */\nexport interface IHoverProps extends HoverProps, UnknownProperties {}\nexport type HoverProps = Context & {\n /** Field name from `data` array item for the XAxis */\n x?: string;\n /** Field name from `data` array item for the YAxis */\n y?: string;\n};\n\ntype HoverTooltip = (<X, Y>(\n props: {\n /** Field name from `data` array item for the XAxis */\n x?: X;\n /** Field name from `data` array item for the YAxis */\n y?: Y;\n children: (props: {\n /** Index in `data` array of the current item */\n xIndex: X extends string ? string : never;\n /** Index in `data` array of the current item */\n yIndex: Y extends string ? string : never;\n }) => { children: ReturnEl };\n } & Omit<IBoxProps, 'children'>,\n) => ReturnEl) &\n TooltipTypeBase;\n\ndeclare const HoverLine: IntergalacticD3Component<'g', HoverProps> & {\n Tooltip: HoverTooltip;\n};\n\ndeclare const HoverRect: IntergalacticD3Component<'g', HoverProps> & {\n Tooltip: HoverTooltip;\n};\nexport { HoverLine, HoverRect };\n"],"mappings":""}
1
+ {"version":3,"file":"Hover.d.js","names":[],"sources":["../../../src/types/Hover.d.ts"],"sourcesContent":["import { UnknownProperties } from '@semcore/core';\nimport { Context } from './context';\nimport { ReturnEl } from '@semcore/core';\nimport { TooltipTypeBase } from './Tooltip';\nimport { BoxProps } from '@semcore/flex-box';\nimport { IntergalacticD3Component } from './Plot';\n\n/** @deprecated */\nexport interface IHoverProps extends HoverProps, UnknownProperties {}\nexport type HoverProps = Context & {\n /** Field name from `data` array item for the XAxis */\n x?: string;\n /** Field name from `data` array item for the YAxis */\n y?: string;\n};\n\ntype HoverTooltip = (<X, Y>(\n props: {\n /** Field name from `data` array item for the XAxis */\n x?: X;\n /** Field name from `data` array item for the YAxis */\n y?: Y;\n children: (props: {\n /** Index in `data` array of the current item */\n xIndex: X extends string ? string : never;\n /** Index in `data` array of the current item */\n yIndex: Y extends string ? string : never;\n }) => { children: ReturnEl };\n } & Omit<BoxProps, 'children'>,\n) => ReturnEl) &\n TooltipTypeBase;\n\ndeclare const HoverLine: IntergalacticD3Component<'g', HoverProps> & {\n Tooltip: HoverTooltip;\n};\n\ndeclare const HoverRect: IntergalacticD3Component<'g', HoverProps> & {\n Tooltip: HoverTooltip;\n};\nexport { HoverLine, HoverRect };\n"],"mappings":""}
@@ -57,7 +57,7 @@ export type LabelProps = Context & {
57
57
 
58
58
  declare const Donut: IntergalacticD3Component<'g', DonutProps> & {
59
59
  Pie: IntergalacticD3Component<'path', PieProps>;
60
- EmptyData: IntergalacticD3Component<'path', IEmptyDataProps>;
60
+ EmptyData: IntergalacticD3Component<'path', EmptyDataProps>;
61
61
  Label: IntergalacticD3Component<'text', LabelProps>;
62
62
  Tooltip: TooltipType<PieProps>;
63
63
  };
@@ -2,7 +2,7 @@ import { UnknownProperties } from '@semcore/core';
2
2
  import { Context } from './context';
3
3
  import { ReturnEl } from '@semcore/core';
4
4
  import { TooltipTypeBase } from './Tooltip';
5
- import { IBoxProps } from '@semcore/flex-box';
5
+ import { BoxProps } from '@semcore/flex-box';
6
6
  import { IntergalacticD3Component } from './Plot';
7
7
 
8
8
  /** @deprecated */
@@ -26,7 +26,7 @@ type HoverTooltip = (<X, Y>(
26
26
  /** Index in `data` array of the current item */
27
27
  yIndex: Y extends string ? string : never;
28
28
  }) => { children: ReturnEl };
29
- } & Omit<IBoxProps, 'children'>,
29
+ } & Omit<BoxProps, 'children'>,
30
30
  ) => ReturnEl) &
31
31
  TooltipTypeBase;
32
32
 
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.0.0",
4
+ "version": "3.0.2",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/es6/index.js",
7
7
  "typings": "lib/types/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "@formatjs/intl": "2.3.0",
13
13
  "@semcore/animation": "2.0.0",
14
14
  "@semcore/flex-box": "5.0.0",
15
- "@semcore/popper": "5.0.0",
15
+ "@semcore/popper": "5.0.2",
16
16
  "@semcore/utils": "4.0.0",
17
17
  "@types/d3-shape": "^3.1.0",
18
18
  "@upsetjs/venn.js": "1.4.1",