@semcore/d3-chart 2.3.5 → 2.3.6

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 (155) hide show
  1. package/CHANGELOG.md +6 -0
  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 +4 -4
  10. package/lib/cjs/Line.js +8 -8
  11. package/lib/cjs/Plot.js +4 -4
  12. package/lib/cjs/RadialTree.js +11 -11
  13. package/lib/cjs/ReferenceLine.js +10 -10
  14. package/lib/cjs/ScatterPlot.js +7 -7
  15. package/lib/cjs/Tooltip.js +8 -8
  16. package/lib/cjs/Venn.js +7 -7
  17. package/lib/cjs/a11y/PlotA11yModule.js +3 -3
  18. package/lib/cjs/a11y/PlotA11yView.js +4 -4
  19. package/lib/cjs/types/Area.d.js +2 -0
  20. package/lib/cjs/types/Area.d.js.map +1 -0
  21. package/lib/cjs/types/Axis.d.js +2 -0
  22. package/lib/cjs/types/Axis.d.js.map +1 -0
  23. package/lib/cjs/types/Bar.d.js +2 -0
  24. package/lib/cjs/types/Bar.d.js.map +1 -0
  25. package/lib/cjs/types/Bubble.d.js +2 -0
  26. package/lib/cjs/types/Bubble.d.js.map +1 -0
  27. package/lib/cjs/types/ClipPath.d.js +2 -0
  28. package/lib/cjs/types/ClipPath.d.js.map +1 -0
  29. package/lib/cjs/types/Donut.d.js +2 -0
  30. package/lib/cjs/types/Donut.d.js.map +1 -0
  31. package/lib/cjs/types/GroupBar.d.js +2 -0
  32. package/lib/cjs/types/GroupBar.d.js.map +1 -0
  33. package/lib/cjs/types/HorizontalBar.d.js +2 -0
  34. package/lib/cjs/types/HorizontalBar.d.js.map +1 -0
  35. package/lib/cjs/types/Hover.d.js +2 -0
  36. package/lib/cjs/types/Hover.d.js.map +1 -0
  37. package/lib/cjs/types/Line.d.js +2 -0
  38. package/lib/cjs/types/Line.d.js.map +1 -0
  39. package/lib/cjs/types/Plot.d.js +2 -0
  40. package/lib/cjs/types/Plot.d.js.map +1 -0
  41. package/lib/cjs/types/ReferenceLine.d.js +2 -0
  42. package/lib/cjs/types/ReferenceLine.d.js.map +1 -0
  43. package/lib/cjs/types/ResponsiveContainer.d.js +2 -0
  44. package/lib/cjs/types/ResponsiveContainer.d.js.map +1 -0
  45. package/lib/cjs/types/ScatterPlot.d.js +2 -0
  46. package/lib/cjs/types/ScatterPlot.d.js.map +1 -0
  47. package/lib/cjs/types/StackBar.d.js +2 -0
  48. package/lib/cjs/types/StackBar.d.js.map +1 -0
  49. package/lib/cjs/types/StackedArea.d.js +2 -0
  50. package/lib/cjs/types/StackedArea.d.js.map +1 -0
  51. package/lib/cjs/types/Tooltip.d.js +2 -0
  52. package/lib/cjs/types/Tooltip.d.js.map +1 -0
  53. package/lib/cjs/types/Venn.d.js +2 -0
  54. package/lib/cjs/types/Venn.d.js.map +1 -0
  55. package/lib/cjs/types/context.d.js +2 -0
  56. package/lib/cjs/types/context.d.js.map +1 -0
  57. package/lib/cjs/types/index.d.js +378 -0
  58. package/lib/cjs/types/index.d.js.map +1 -0
  59. package/lib/es6/Area.js +9 -9
  60. package/lib/es6/Axis.js +14 -14
  61. package/lib/es6/Bar.js +8 -8
  62. package/lib/es6/Bubble.js +10 -10
  63. package/lib/es6/Donut.js +7 -7
  64. package/lib/es6/Dots.js +9 -9
  65. package/lib/es6/HorizontalBar.js +8 -8
  66. package/lib/es6/Hover.js +4 -4
  67. package/lib/es6/Line.js +8 -8
  68. package/lib/es6/Plot.js +4 -4
  69. package/lib/es6/RadialTree.js +11 -11
  70. package/lib/es6/ReferenceLine.js +10 -10
  71. package/lib/es6/ScatterPlot.js +7 -7
  72. package/lib/es6/Tooltip.js +8 -8
  73. package/lib/es6/Venn.js +7 -7
  74. package/lib/es6/a11y/PlotA11yModule.js +3 -3
  75. package/lib/es6/a11y/PlotA11yView.js +4 -4
  76. package/lib/es6/types/Area.d.js +2 -0
  77. package/lib/es6/types/Area.d.js.map +1 -0
  78. package/lib/es6/types/Axis.d.js +2 -0
  79. package/lib/es6/types/Axis.d.js.map +1 -0
  80. package/lib/es6/types/Bar.d.js +2 -0
  81. package/lib/es6/types/Bar.d.js.map +1 -0
  82. package/lib/es6/types/Bubble.d.js +2 -0
  83. package/lib/es6/types/Bubble.d.js.map +1 -0
  84. package/lib/es6/types/ClipPath.d.js +2 -0
  85. package/lib/es6/types/ClipPath.d.js.map +1 -0
  86. package/lib/es6/types/Donut.d.js +2 -0
  87. package/lib/es6/types/Donut.d.js.map +1 -0
  88. package/lib/es6/types/GroupBar.d.js +2 -0
  89. package/lib/es6/types/GroupBar.d.js.map +1 -0
  90. package/lib/es6/types/HorizontalBar.d.js +2 -0
  91. package/lib/es6/types/HorizontalBar.d.js.map +1 -0
  92. package/lib/es6/types/Hover.d.js +2 -0
  93. package/lib/es6/types/Hover.d.js.map +1 -0
  94. package/lib/es6/types/Line.d.js +2 -0
  95. package/lib/es6/types/Line.d.js.map +1 -0
  96. package/lib/es6/types/Plot.d.js +2 -0
  97. package/lib/es6/types/Plot.d.js.map +1 -0
  98. package/lib/es6/types/ReferenceLine.d.js +2 -0
  99. package/lib/es6/types/ReferenceLine.d.js.map +1 -0
  100. package/lib/es6/types/ResponsiveContainer.d.js +2 -0
  101. package/lib/es6/types/ResponsiveContainer.d.js.map +1 -0
  102. package/lib/es6/types/ScatterPlot.d.js +2 -0
  103. package/lib/es6/types/ScatterPlot.d.js.map +1 -0
  104. package/lib/es6/types/StackBar.d.js +2 -0
  105. package/lib/es6/types/StackBar.d.js.map +1 -0
  106. package/lib/es6/types/StackedArea.d.js +2 -0
  107. package/lib/es6/types/StackedArea.d.js.map +1 -0
  108. package/lib/es6/types/Tooltip.d.js +2 -0
  109. package/lib/es6/types/Tooltip.d.js.map +1 -0
  110. package/lib/es6/types/Venn.d.js +2 -0
  111. package/lib/es6/types/Venn.d.js.map +1 -0
  112. package/lib/es6/types/context.d.js +2 -0
  113. package/lib/es6/types/context.d.js.map +1 -0
  114. package/lib/{cjs/types/index.d.ts → es6/types/index.d.js} +4 -22
  115. package/lib/es6/types/index.d.js.map +1 -0
  116. package/package.json +5 -2
  117. package/lib/cjs/types/Area.d.ts +0 -48
  118. package/lib/cjs/types/Axis.d.ts +0 -64
  119. package/lib/cjs/types/Bar.d.ts +0 -52
  120. package/lib/cjs/types/Bubble.d.ts +0 -32
  121. package/lib/cjs/types/ClipPath.d.ts +0 -26
  122. package/lib/cjs/types/Donut.d.ts +0 -46
  123. package/lib/cjs/types/GroupBar.d.ts +0 -20
  124. package/lib/cjs/types/HorizontalBar.d.ts +0 -29
  125. package/lib/cjs/types/Hover.d.ts +0 -15
  126. package/lib/cjs/types/Line.d.ts +0 -50
  127. package/lib/cjs/types/Plot.d.ts +0 -91
  128. package/lib/cjs/types/ReferenceLine.d.ts +0 -31
  129. package/lib/cjs/types/ResponsiveContainer.d.ts +0 -20
  130. package/lib/cjs/types/ScatterPlot.d.ts +0 -27
  131. package/lib/cjs/types/StackBar.d.ts +0 -26
  132. package/lib/cjs/types/StackedArea.d.ts +0 -26
  133. package/lib/cjs/types/Tooltip.d.ts +0 -33
  134. package/lib/cjs/types/Venn.d.ts +0 -45
  135. package/lib/cjs/types/context.d.ts +0 -6
  136. package/lib/es6/types/Area.d.ts +0 -48
  137. package/lib/es6/types/Axis.d.ts +0 -64
  138. package/lib/es6/types/Bar.d.ts +0 -52
  139. package/lib/es6/types/Bubble.d.ts +0 -32
  140. package/lib/es6/types/ClipPath.d.ts +0 -26
  141. package/lib/es6/types/Donut.d.ts +0 -46
  142. package/lib/es6/types/GroupBar.d.ts +0 -20
  143. package/lib/es6/types/HorizontalBar.d.ts +0 -29
  144. package/lib/es6/types/Hover.d.ts +0 -15
  145. package/lib/es6/types/Line.d.ts +0 -50
  146. package/lib/es6/types/Plot.d.ts +0 -91
  147. package/lib/es6/types/ReferenceLine.d.ts +0 -31
  148. package/lib/es6/types/ResponsiveContainer.d.ts +0 -20
  149. package/lib/es6/types/ScatterPlot.d.ts +0 -27
  150. package/lib/es6/types/StackBar.d.ts +0 -26
  151. package/lib/es6/types/StackedArea.d.ts +0 -26
  152. package/lib/es6/types/Tooltip.d.ts +0 -33
  153. package/lib/es6/types/Venn.d.ts +0 -45
  154. package/lib/es6/types/context.d.ts +0 -6
  155. package/lib/es6/types/index.d.ts +0 -59
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=ReferenceLine.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReferenceLine.d.js","names":[],"sources":["../../../src/types/ReferenceLine.d.ts"],"sourcesContent":["import { CProps, ReturnEl } from '@semcore/core';\nimport IContext from './context';\n\nexport interface IReferenceLineProps extends IContext {\n /** The position of the title relative reference line\n * @default 'left' */\n position?: 'top' | 'right' | 'bottom' | 'left';\n /** Value element of data */\n value: any;\n}\n\nexport interface IReferenceLineTitleProps extends IContext {\n /** The position of the axis relative reference line */\n position?: 'top' | 'right' | 'bottom' | 'left';\n /** Value element of data */\n value: any;\n}\n\nexport interface IReferenceLineBackgroundProps extends IContext {\n /** The position of the axis relative reference line */\n position?: 'top' | 'right' | 'bottom' | 'left';\n /** Value element of data */\n value: any;\n}\n\ndeclare const ReferenceLine: (<T>(props: CProps<IReferenceLineProps & T>) => ReturnEl) & {\n Title: <T>(props: CProps<IReferenceLineTitleProps & T>) => ReturnEl;\n Background: <T>(props: CProps<IReferenceLineBackgroundProps & T>) => ReturnEl;\n};\n\nexport default ReferenceLine;\n"],"mappings":""}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=ResponsiveContainer.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ResponsiveContainer.d.js","names":[],"sources":["../../../src/types/ResponsiveContainer.d.ts"],"sourcesContent":["import { IBoxProps } from '@semcore/flex-box';\nimport { CProps, ReturnEl } from '@semcore/core';\n\nexport interface IResponsiveContainerProps extends IBoxProps {\n /** Relation between height and width dimensions block */\n aspect?: number;\n /** Callback which will be called after changing the block size */\n onResize?: (size: [number, number], entries: ResizeObserverEntry[]) => void;\n}\n\nexport interface IResponsiveContainerContext {\n width?: number;\n height?: number;\n}\n\ndeclare const ResponsiveContainer: <T>(\n props: CProps<IResponsiveContainerProps & T, IResponsiveContainerContext>,\n) => ReturnEl;\n\nexport default ResponsiveContainer;\n"],"mappings":""}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=ScatterPlot.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScatterPlot.d.js","names":[],"sources":["../../../src/types/ScatterPlot.d.ts"],"sourcesContent":["import { CProps, ReturnEl } from '@semcore/core';\nimport IContext from './context';\n\nexport interface IScatterPlotProps extends IContext {\n /** Field from data for XAxis */\n x: string;\n /** Field from data for YAxis */\n y: string;\n /** Field from data for circle value */\n value?: string;\n /** Circle color */\n color?: string;\n /** Circle value color */\n valueColor?: string;\n /** Animation duration in ms\n * @default 500\n */\n duration?: number;\n /** Radius of circles\n * @default 5.5 or 12 with value\n */\n r?: number;\n}\n\ndeclare const ScatterPlot: <T>(props: CProps<IScatterPlotProps & T>) => ReturnEl;\n\nexport default ScatterPlot;\n"],"mappings":""}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=StackBar.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StackBar.d.js","names":[],"sources":["../../../src/types/StackBar.d.ts"],"sourcesContent":["import { CProps, ReturnEl } from '@semcore/core';\nimport IContext from './context';\nimport { IBarContext, IBarProps } from './Bar';\nimport { IHorizontalBarProps } from './HorizontalBar';\n\nexport interface IStackBarProps extends IContext {\n /** Field from data for XAxis */\n x?: string;\n /** Field from data for YAxis */\n y?: string;\n /** Stack generators\n * @default d3.stack() */\n stack?: any;\n}\n\nexport interface IStackBarContext {\n /** Series is an array of points, where each point corresponds to the element in the input data. */\n series: any[];\n}\n\ndeclare const StackBar: (<T>(props: CProps<IStackBarProps & T, IStackBarContext>) => ReturnEl) & {\n Bar: <T>(props: CProps<IBarProps & T, IBarContext>) => ReturnEl;\n HorizontalBar: <T>(props: CProps<IHorizontalBarProps & T, IBarContext>) => ReturnEl;\n};\n\nexport default StackBar;\n"],"mappings":""}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=StackedArea.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StackedArea.d.js","names":[],"sources":["../../../src/types/StackedArea.d.ts"],"sourcesContent":["import { CProps, ReturnEl } from '@semcore/core';\nimport IContext from './context';\nimport Area from './Area';\n\nexport interface IStackedAreaProps extends IContext {\n /** Field from data for XAxis */\n x?: string;\n /** Field from data for YAxis */\n y?: string;\n /** Stack generators\n * @default d3.stack() */\n stack?: any;\n}\n\nexport interface IStackedAreaContext {\n /** Series is an array of points, where each point corresponds to the element in the input data. */\n series: any[];\n}\n\ndeclare const StackedArea: (<T>(\n props: CProps<IStackedAreaProps & T, IStackedAreaContext>,\n) => ReturnEl) & {\n Area: typeof Area;\n};\n\nexport default StackedArea;\n"],"mappings":""}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=Tooltip.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Tooltip.d.js","names":[],"sources":["../../../src/types/Tooltip.d.ts"],"sourcesContent":["import { ComponentProps } from 'react';\nimport Popper, { IPopperProps, IPopperTriggerProps } from '@semcore/popper';\nimport { CProps, PropGetterFn, ReturnEl } from '@semcore/core';\nimport { IBoxProps } from '@semcore/flex-box';\nimport IContext from './context';\n\nexport interface ITooltipChartProps extends IPopperProps, IPopperTriggerProps, IContext {\n /** Field from data for XAxis */\n x?: string;\n /** Field from data for YAxis */\n y?: string;\n}\n\nexport interface ITooltipChartContext {\n getTriggerProps: PropGetterFn;\n getPopperProps: PropGetterFn;\n /** Index active value for Axis x */\n xIndex: number | null;\n /** Index active value for Axis y */\n yIndex: number | null;\n}\n\ndeclare const Tooltip: (<T>(\n props: CProps<ITooltipChartProps & T, ITooltipChartContext>,\n) => ReturnEl) & {\n Trigger: <T>(props: CProps<ComponentProps<typeof Popper.Trigger> & T>) => ReturnEl;\n Popper: <T>(props: CProps<ComponentProps<typeof Popper.Popper> & T>) => ReturnEl;\n Title: <T>(props: CProps<IBoxProps & T>) => ReturnEl;\n Dot: <T>(props: CProps<IBoxProps & { color?: string } & T>) => ReturnEl;\n Footer: <T>(props: CProps<T>) => null;\n};\n\nexport default Tooltip;\n"],"mappings":""}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=Venn.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Venn.d.js","names":[],"sources":["../../../src/types/Venn.d.ts"],"sourcesContent":["import { CProps, ReturnEl } from '@semcore/core';\nimport IContext from './context';\nimport { IFadeInOutProps } from '@semcore/animation';\n\nexport interface IVennProps extends IContext, IFadeInOutProps {\n /**\n * Rotate sets in the chart\n * @default Math.PI / 2\n */\n orientation?: number;\n /**\n * The function for sorting sets inside the chart\n * @default (circle1, circle2) => circle2.radius - circle1.radius\n */\n orientationOrder?: (c1: number, c2: number) => number;\n}\n\nexport interface ICircleProps extends IContext {\n /**\n * Name of the field in the data\n * */\n dataKey: string;\n /** Color circle\n @default #3AB011\n **/\n color?: string;\n /** Animation duration in ms\n * @default 500\n */\n duration?: number;\n}\n\nexport interface IIntersectionProps extends IContext, IFadeInOutProps {\n /**\n * Name of the field in the data\n * */\n dataKey: string;\n}\n\ndeclare const Venn: (<T>(props: CProps<IVennProps & T>) => ReturnEl) & {\n Circle: <T>(props: CProps<ICircleProps & T>) => ReturnEl;\n Intersection: <T>(props: CProps<IIntersectionProps & T>) => ReturnEl;\n};\n\nexport default Venn;\n"],"mappings":""}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=context.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context.d.js","names":[],"sources":["../../../src/types/context.d.ts"],"sourcesContent":["export default interface IContext {\n /** Data for graphic */\n data?: any;\n /** Scale for svg element */\n scale?: any[];\n}\n"],"mappings":""}
@@ -0,0 +1,378 @@
1
+ "use strict";
2
+
3
+ var _typeof = require("@babel/runtime/helpers/typeof");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ var _exportNames = {
9
+ Plot: true,
10
+ ResponsiveContainer: true,
11
+ Line: true,
12
+ Bar: true,
13
+ HorizontalBar: true,
14
+ GroupBar: true,
15
+ StackBar: true,
16
+ Area: true,
17
+ StackedArea: true,
18
+ RadialTree: true,
19
+ Donut: true,
20
+ Tooltip: true,
21
+ ScatterPlot: true,
22
+ Bubble: true,
23
+ ReferenceLine: true,
24
+ Venn: true
25
+ };
26
+ Object.defineProperty(exports, "Area", {
27
+ enumerable: true,
28
+ get: function get() {
29
+ return _Area["default"];
30
+ }
31
+ });
32
+ Object.defineProperty(exports, "Bar", {
33
+ enumerable: true,
34
+ get: function get() {
35
+ return _Bar["default"];
36
+ }
37
+ });
38
+ Object.defineProperty(exports, "Bubble", {
39
+ enumerable: true,
40
+ get: function get() {
41
+ return _Bubble["default"];
42
+ }
43
+ });
44
+ Object.defineProperty(exports, "Donut", {
45
+ enumerable: true,
46
+ get: function get() {
47
+ return _Donut["default"];
48
+ }
49
+ });
50
+ Object.defineProperty(exports, "GroupBar", {
51
+ enumerable: true,
52
+ get: function get() {
53
+ return _GroupBar["default"];
54
+ }
55
+ });
56
+ Object.defineProperty(exports, "HorizontalBar", {
57
+ enumerable: true,
58
+ get: function get() {
59
+ return _HorizontalBar["default"];
60
+ }
61
+ });
62
+ Object.defineProperty(exports, "Line", {
63
+ enumerable: true,
64
+ get: function get() {
65
+ return _Line["default"];
66
+ }
67
+ });
68
+ Object.defineProperty(exports, "Plot", {
69
+ enumerable: true,
70
+ get: function get() {
71
+ return _Plot["default"];
72
+ }
73
+ });
74
+ Object.defineProperty(exports, "RadialTree", {
75
+ enumerable: true,
76
+ get: function get() {
77
+ return _RadialTree["default"];
78
+ }
79
+ });
80
+ Object.defineProperty(exports, "ReferenceLine", {
81
+ enumerable: true,
82
+ get: function get() {
83
+ return _ReferenceLine["default"];
84
+ }
85
+ });
86
+ Object.defineProperty(exports, "ResponsiveContainer", {
87
+ enumerable: true,
88
+ get: function get() {
89
+ return _ResponsiveContainer["default"];
90
+ }
91
+ });
92
+ Object.defineProperty(exports, "ScatterPlot", {
93
+ enumerable: true,
94
+ get: function get() {
95
+ return _ScatterPlot["default"];
96
+ }
97
+ });
98
+ Object.defineProperty(exports, "StackBar", {
99
+ enumerable: true,
100
+ get: function get() {
101
+ return _StackBar["default"];
102
+ }
103
+ });
104
+ Object.defineProperty(exports, "StackedArea", {
105
+ enumerable: true,
106
+ get: function get() {
107
+ return _StackedArea["default"];
108
+ }
109
+ });
110
+ Object.defineProperty(exports, "Tooltip", {
111
+ enumerable: true,
112
+ get: function get() {
113
+ return _Tooltip["default"];
114
+ }
115
+ });
116
+ Object.defineProperty(exports, "Venn", {
117
+ enumerable: true,
118
+ get: function get() {
119
+ return _Venn["default"];
120
+ }
121
+ });
122
+
123
+ var _Plot = _interopRequireWildcard(require("./Plot"));
124
+
125
+ Object.keys(_Plot).forEach(function (key) {
126
+ if (key === "default" || key === "__esModule") return;
127
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
128
+ if (key in exports && exports[key] === _Plot[key]) return;
129
+ Object.defineProperty(exports, key, {
130
+ enumerable: true,
131
+ get: function get() {
132
+ return _Plot[key];
133
+ }
134
+ });
135
+ });
136
+
137
+ var _Axis = require("./Axis");
138
+
139
+ Object.keys(_Axis).forEach(function (key) {
140
+ if (key === "default" || key === "__esModule") return;
141
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
142
+ if (key in exports && exports[key] === _Axis[key]) return;
143
+ Object.defineProperty(exports, key, {
144
+ enumerable: true,
145
+ get: function get() {
146
+ return _Axis[key];
147
+ }
148
+ });
149
+ });
150
+
151
+ var _Hover = require("./Hover");
152
+
153
+ Object.keys(_Hover).forEach(function (key) {
154
+ if (key === "default" || key === "__esModule") return;
155
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
156
+ if (key in exports && exports[key] === _Hover[key]) return;
157
+ Object.defineProperty(exports, key, {
158
+ enumerable: true,
159
+ get: function get() {
160
+ return _Hover[key];
161
+ }
162
+ });
163
+ });
164
+
165
+ var _ResponsiveContainer = _interopRequireWildcard(require("./ResponsiveContainer"));
166
+
167
+ Object.keys(_ResponsiveContainer).forEach(function (key) {
168
+ if (key === "default" || key === "__esModule") return;
169
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
170
+ if (key in exports && exports[key] === _ResponsiveContainer[key]) return;
171
+ Object.defineProperty(exports, key, {
172
+ enumerable: true,
173
+ get: function get() {
174
+ return _ResponsiveContainer[key];
175
+ }
176
+ });
177
+ });
178
+
179
+ var _Line = _interopRequireWildcard(require("./Line"));
180
+
181
+ Object.keys(_Line).forEach(function (key) {
182
+ if (key === "default" || key === "__esModule") return;
183
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
184
+ if (key in exports && exports[key] === _Line[key]) return;
185
+ Object.defineProperty(exports, key, {
186
+ enumerable: true,
187
+ get: function get() {
188
+ return _Line[key];
189
+ }
190
+ });
191
+ });
192
+
193
+ var _Bar = _interopRequireWildcard(require("./Bar"));
194
+
195
+ Object.keys(_Bar).forEach(function (key) {
196
+ if (key === "default" || key === "__esModule") return;
197
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
198
+ if (key in exports && exports[key] === _Bar[key]) return;
199
+ Object.defineProperty(exports, key, {
200
+ enumerable: true,
201
+ get: function get() {
202
+ return _Bar[key];
203
+ }
204
+ });
205
+ });
206
+
207
+ var _HorizontalBar = _interopRequireWildcard(require("./HorizontalBar"));
208
+
209
+ Object.keys(_HorizontalBar).forEach(function (key) {
210
+ if (key === "default" || key === "__esModule") return;
211
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
212
+ if (key in exports && exports[key] === _HorizontalBar[key]) return;
213
+ Object.defineProperty(exports, key, {
214
+ enumerable: true,
215
+ get: function get() {
216
+ return _HorizontalBar[key];
217
+ }
218
+ });
219
+ });
220
+
221
+ var _GroupBar = _interopRequireWildcard(require("./GroupBar"));
222
+
223
+ Object.keys(_GroupBar).forEach(function (key) {
224
+ if (key === "default" || key === "__esModule") return;
225
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
226
+ if (key in exports && exports[key] === _GroupBar[key]) return;
227
+ Object.defineProperty(exports, key, {
228
+ enumerable: true,
229
+ get: function get() {
230
+ return _GroupBar[key];
231
+ }
232
+ });
233
+ });
234
+
235
+ var _StackBar = _interopRequireWildcard(require("./StackBar"));
236
+
237
+ Object.keys(_StackBar).forEach(function (key) {
238
+ if (key === "default" || key === "__esModule") return;
239
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
240
+ if (key in exports && exports[key] === _StackBar[key]) return;
241
+ Object.defineProperty(exports, key, {
242
+ enumerable: true,
243
+ get: function get() {
244
+ return _StackBar[key];
245
+ }
246
+ });
247
+ });
248
+
249
+ var _Area = _interopRequireWildcard(require("./Area"));
250
+
251
+ Object.keys(_Area).forEach(function (key) {
252
+ if (key === "default" || key === "__esModule") return;
253
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
254
+ if (key in exports && exports[key] === _Area[key]) return;
255
+ Object.defineProperty(exports, key, {
256
+ enumerable: true,
257
+ get: function get() {
258
+ return _Area[key];
259
+ }
260
+ });
261
+ });
262
+
263
+ var _StackedArea = _interopRequireWildcard(require("./StackedArea"));
264
+
265
+ Object.keys(_StackedArea).forEach(function (key) {
266
+ if (key === "default" || key === "__esModule") return;
267
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
268
+ if (key in exports && exports[key] === _StackedArea[key]) return;
269
+ Object.defineProperty(exports, key, {
270
+ enumerable: true,
271
+ get: function get() {
272
+ return _StackedArea[key];
273
+ }
274
+ });
275
+ });
276
+
277
+ var _RadialTree = _interopRequireWildcard(require("./RadialTree"));
278
+
279
+ Object.keys(_RadialTree).forEach(function (key) {
280
+ if (key === "default" || key === "__esModule") return;
281
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
282
+ if (key in exports && exports[key] === _RadialTree[key]) return;
283
+ Object.defineProperty(exports, key, {
284
+ enumerable: true,
285
+ get: function get() {
286
+ return _RadialTree[key];
287
+ }
288
+ });
289
+ });
290
+
291
+ var _Donut = _interopRequireWildcard(require("./Donut"));
292
+
293
+ Object.keys(_Donut).forEach(function (key) {
294
+ if (key === "default" || key === "__esModule") return;
295
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
296
+ if (key in exports && exports[key] === _Donut[key]) return;
297
+ Object.defineProperty(exports, key, {
298
+ enumerable: true,
299
+ get: function get() {
300
+ return _Donut[key];
301
+ }
302
+ });
303
+ });
304
+
305
+ var _Tooltip = _interopRequireWildcard(require("./Tooltip"));
306
+
307
+ Object.keys(_Tooltip).forEach(function (key) {
308
+ if (key === "default" || key === "__esModule") return;
309
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
310
+ if (key in exports && exports[key] === _Tooltip[key]) return;
311
+ Object.defineProperty(exports, key, {
312
+ enumerable: true,
313
+ get: function get() {
314
+ return _Tooltip[key];
315
+ }
316
+ });
317
+ });
318
+
319
+ var _ScatterPlot = _interopRequireWildcard(require("./ScatterPlot"));
320
+
321
+ Object.keys(_ScatterPlot).forEach(function (key) {
322
+ if (key === "default" || key === "__esModule") return;
323
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
324
+ if (key in exports && exports[key] === _ScatterPlot[key]) return;
325
+ Object.defineProperty(exports, key, {
326
+ enumerable: true,
327
+ get: function get() {
328
+ return _ScatterPlot[key];
329
+ }
330
+ });
331
+ });
332
+
333
+ var _Bubble = _interopRequireWildcard(require("./Bubble"));
334
+
335
+ Object.keys(_Bubble).forEach(function (key) {
336
+ if (key === "default" || key === "__esModule") return;
337
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
338
+ if (key in exports && exports[key] === _Bubble[key]) return;
339
+ Object.defineProperty(exports, key, {
340
+ enumerable: true,
341
+ get: function get() {
342
+ return _Bubble[key];
343
+ }
344
+ });
345
+ });
346
+
347
+ var _ReferenceLine = _interopRequireWildcard(require("./ReferenceLine"));
348
+
349
+ Object.keys(_ReferenceLine).forEach(function (key) {
350
+ if (key === "default" || key === "__esModule") return;
351
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
352
+ if (key in exports && exports[key] === _ReferenceLine[key]) return;
353
+ Object.defineProperty(exports, key, {
354
+ enumerable: true,
355
+ get: function get() {
356
+ return _ReferenceLine[key];
357
+ }
358
+ });
359
+ });
360
+
361
+ var _Venn = _interopRequireWildcard(require("./Venn"));
362
+
363
+ Object.keys(_Venn).forEach(function (key) {
364
+ if (key === "default" || key === "__esModule") return;
365
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
366
+ if (key in exports && exports[key] === _Venn[key]) return;
367
+ Object.defineProperty(exports, key, {
368
+ enumerable: true,
369
+ get: function get() {
370
+ return _Venn[key];
371
+ }
372
+ });
373
+ });
374
+
375
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
376
+
377
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
378
+ //# sourceMappingURL=index.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.js","names":[],"sources":["../../../src/types/index.d.ts"],"sourcesContent":["// Utils\nexport declare function minMax(data: any, key: string | number): any;\n\n// Color\nexport declare const colors: { [key: string]: string };\n\nexport { default as Plot } from './Plot';\nexport * from './Plot';\n\nexport * from './Axis';\nexport * from './Hover';\n\nexport { default as ResponsiveContainer } from './ResponsiveContainer';\nexport * from './ResponsiveContainer';\n\nexport { default as Line } from './Line';\nexport * from './Line';\n\nexport { default as Bar } from './Bar';\nexport * from './Bar';\n\nexport { default as HorizontalBar } from './HorizontalBar';\nexport * from './HorizontalBar';\n\nexport { default as GroupBar } from './GroupBar';\nexport * from './GroupBar';\n\nexport { default as StackBar } from './StackBar';\nexport * from './StackBar';\n\nexport { default as Area } from './Area';\nexport * from './Area';\n\nexport { default as StackedArea } from './StackedArea';\nexport * from './StackedArea';\n\n/** It becomes resolvable after building and moving file to lib dir */\n// eslint-disable-next-line import/no-unresolved\nexport { default as RadialTree } from './RadialTree';\n// eslint-disable-next-line import/no-unresolved\nexport * from './RadialTree';\n\nexport { default as Donut } from './Donut';\nexport * from './Donut';\n\nexport { default as Tooltip } from './Tooltip';\nexport * from './Tooltip';\n\nexport { default as ScatterPlot } from './ScatterPlot';\nexport * from './ScatterPlot';\n\nexport { default as Bubble } from './Bubble';\nexport * from './Bubble';\n\nexport { default as ReferenceLine } from './ReferenceLine';\nexport * from './ReferenceLine';\n\nexport { default as Venn } from './Venn';\nexport * from './Venn';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAIA;;AAEA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AAEA;;AACA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA"}
package/lib/es6/Area.js CHANGED
@@ -26,18 +26,18 @@ var style = (
26
26
  /*__reshadow_css_start__*/
27
27
  _sstyled.insert(
28
28
  /*__inner_css_start__*/
29
- ".___SArea_j39bq_gg_{fill:#2bb3ff;fill-opacity:.2}.___SArea_j39bq_gg_.__color_j39bq_gg_{fill:var(--color_j39bq)}.___SAreaLine_j39bq_gg_{stroke:#2bb3ff;stroke-width:3;fill:transparent}.___SAreaLine_j39bq_gg_.__color_j39bq_gg_{stroke:var(--color_j39bq)}.___SArea_j39bq_gg_,.___SAreaLine_j39bq_gg_{transition-property:d;transition-duration:var(--duration_j39bq);transition-timing-function:ease-in-out}.___SNull_j39bq_gg_{fill:transparent;stroke:#8a8e9b;stroke-dasharray:4}.___SNull_j39bq_gg_.__hide_j39bq_gg_{display:none}"
29
+ ".___SArea_1o1u1_gg_{fill:#2bb3ff;fill-opacity:.2}.___SArea_1o1u1_gg_.__color_1o1u1_gg_{fill:var(--color_1o1u1)}.___SAreaLine_1o1u1_gg_{stroke:#2bb3ff;stroke-width:3;fill:transparent}.___SAreaLine_1o1u1_gg_.__color_1o1u1_gg_{stroke:var(--color_1o1u1)}.___SArea_1o1u1_gg_,.___SAreaLine_1o1u1_gg_{transition-property:d;transition-duration:var(--duration_1o1u1);transition-timing-function:ease-in-out}.___SNull_1o1u1_gg_{fill:transparent;stroke:#8a8e9b;stroke-dasharray:4}.___SNull_1o1u1_gg_.__hide_1o1u1_gg_{display:none}"
30
30
  /*__inner_css_end__*/
31
- , "j39bq_gg_")
31
+ , "1o1u1_gg_")
32
32
  /*__reshadow_css_end__*/
33
33
  , {
34
- "__SArea": "___SArea_j39bq_gg_",
35
- "_color": "__color_j39bq_gg_",
36
- "--color": "--color_j39bq",
37
- "__SAreaLine": "___SAreaLine_j39bq_gg_",
38
- "--duration": "--duration_j39bq",
39
- "__SNull": "___SNull_j39bq_gg_",
40
- "_hide": "__hide_j39bq_gg_"
34
+ "__SArea": "___SArea_1o1u1_gg_",
35
+ "_color": "__color_1o1u1_gg_",
36
+ "--color": "--color_1o1u1",
37
+ "__SAreaLine": "___SAreaLine_1o1u1_gg_",
38
+ "--duration": "--duration_1o1u1",
39
+ "__SNull": "___SNull_1o1u1_gg_",
40
+ "_hide": "__hide_1o1u1_gg_"
41
41
  });
42
42
 
43
43
  var AreaRoot = /*#__PURE__*/function (_Component) {
package/lib/es6/Axis.js CHANGED
@@ -27,23 +27,23 @@ var style = (
27
27
  /*__reshadow_css_start__*/
28
28
  _sstyled.insert(
29
29
  /*__inner_css_start__*/
30
- ".___SAxis_1potz_gg_{stroke:#c4c7cf}.___SAxis_1potz_gg_.__hide_1potz_gg_{display:none}.___STick_1potz_gg_{font-size:12px;fill:#6c6e79}.___STick_1potz_gg_.__hide_1potz_gg_{display:none}.___SGrid_1potz_gg_{fill:transparent;stroke:#e0e1e9}.___STitle_1potz_gg_{font-size:12px;fill:#6c6e79;transform-origin:var(--transform-origin_1potz)}.___STitle_1potz_gg_._position_top_1potz_gg_{text-anchor:middle}.___STitle_1potz_gg_._position_bottom_1potz_gg_{text-anchor:middle;alignment-baseline:hanging}.___STitle_1potz_gg_._position_right_1potz_gg_{transform:rotate(-90deg);alignment-baseline:middle;text-anchor:middle}.___STitle_1potz_gg_._position_left_1potz_gg_{transform:rotate(-90deg);text-anchor:middle;alignment-baseline:middle}.___STick_1potz_gg_._position_top_1potz_gg_{transform:translateY(-12px);text-anchor:middle}.___STick_1potz_gg_._position_bottom_1potz_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_1potz_gg_._position_right_1potz_gg_{transform:translateX(16px);text-anchor:start;alignment-baseline:middle}.___STick_1potz_gg_._position_left_1potz_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}.___STick_1potz_gg_._position_custom_0_1potz_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_1potz_gg_._position_custom_1_1potz_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}"
30
+ ".___SAxis_a9c6j_gg_{stroke:#c4c7cf}.___SAxis_a9c6j_gg_.__hide_a9c6j_gg_{display:none}.___STick_a9c6j_gg_{font-size:12px;fill:#6c6e79}.___STick_a9c6j_gg_.__hide_a9c6j_gg_{display:none}.___SGrid_a9c6j_gg_{fill:transparent;stroke:#e0e1e9}.___STitle_a9c6j_gg_{font-size:12px;fill:#6c6e79;transform-origin:var(--transform-origin_a9c6j)}.___STitle_a9c6j_gg_._position_top_a9c6j_gg_{text-anchor:middle}.___STitle_a9c6j_gg_._position_bottom_a9c6j_gg_{text-anchor:middle;alignment-baseline:hanging}.___STitle_a9c6j_gg_._position_right_a9c6j_gg_{transform:rotate(-90deg);alignment-baseline:middle;text-anchor:middle}.___STitle_a9c6j_gg_._position_left_a9c6j_gg_{transform:rotate(-90deg);text-anchor:middle;alignment-baseline:middle}.___STick_a9c6j_gg_._position_top_a9c6j_gg_{transform:translateY(-12px);text-anchor:middle}.___STick_a9c6j_gg_._position_bottom_a9c6j_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_a9c6j_gg_._position_right_a9c6j_gg_{transform:translateX(16px);text-anchor:start;alignment-baseline:middle}.___STick_a9c6j_gg_._position_left_a9c6j_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}.___STick_a9c6j_gg_._position_custom_0_a9c6j_gg_{transform:translateY(12px);text-anchor:middle;alignment-baseline:hanging}.___STick_a9c6j_gg_._position_custom_1_a9c6j_gg_{transform:translateX(-16px);text-anchor:end;alignment-baseline:middle}"
31
31
  /*__inner_css_end__*/
32
- , "1potz_gg_")
32
+ , "a9c6j_gg_")
33
33
  /*__reshadow_css_end__*/
34
34
  , {
35
- "__SAxis": "___SAxis_1potz_gg_",
36
- "_hide": "__hide_1potz_gg_",
37
- "__STick": "___STick_1potz_gg_",
38
- "__SGrid": "___SGrid_1potz_gg_",
39
- "__STitle": "___STitle_1potz_gg_",
40
- "--transform-origin": "--transform-origin_1potz",
41
- "_position_top": "_position_top_1potz_gg_",
42
- "_position_bottom": "_position_bottom_1potz_gg_",
43
- "_position_right": "_position_right_1potz_gg_",
44
- "_position_left": "_position_left_1potz_gg_",
45
- "_position_custom_0": "_position_custom_0_1potz_gg_",
46
- "_position_custom_1": "_position_custom_1_1potz_gg_"
35
+ "__SAxis": "___SAxis_a9c6j_gg_",
36
+ "_hide": "__hide_a9c6j_gg_",
37
+ "__STick": "___STick_a9c6j_gg_",
38
+ "__SGrid": "___SGrid_a9c6j_gg_",
39
+ "__STitle": "___STitle_a9c6j_gg_",
40
+ "--transform-origin": "--transform-origin_a9c6j",
41
+ "_position_top": "_position_top_a9c6j_gg_",
42
+ "_position_bottom": "_position_bottom_a9c6j_gg_",
43
+ "_position_right": "_position_right_a9c6j_gg_",
44
+ "_position_left": "_position_left_a9c6j_gg_",
45
+ "_position_custom_0": "_position_custom_0_a9c6j_gg_",
46
+ "_position_custom_1": "_position_custom_1_a9c6j_gg_"
47
47
  });
48
48
  var CUSTOM_0 = Symbol('custom_0');
49
49
  var CUSTOM_1 = Symbol('custom_1');
package/lib/es6/Bar.js CHANGED
@@ -24,17 +24,17 @@ var style = (
24
24
  /*__reshadow_css_start__*/
25
25
  _sstyled.insert(
26
26
  /*__inner_css_start__*/
27
- ".___SBar_wj6ma_gg_{fill:#2bb3ff;transition-property:height,width,y;transition-duration:var(--duration_wj6ma);transition-timing-function:ease-in-out}.___SBar_wj6ma_gg_.__color_wj6ma_gg_{fill:var(--color_wj6ma)}.___SBar_wj6ma_gg_.__hide_wj6ma_gg_{display:none}.___SBackground_wj6ma_gg_{fill:#c4c7cf}"
27
+ ".___SBar_khsp0_gg_{fill:#2bb3ff;transition-property:height,width,y;transition-duration:var(--duration_khsp0);transition-timing-function:ease-in-out}.___SBar_khsp0_gg_.__color_khsp0_gg_{fill:var(--color_khsp0)}.___SBar_khsp0_gg_.__hide_khsp0_gg_{display:none}.___SBackground_khsp0_gg_{fill:#c4c7cf}"
28
28
  /*__inner_css_end__*/
29
- , "wj6ma_gg_")
29
+ , "khsp0_gg_")
30
30
  /*__reshadow_css_end__*/
31
31
  , {
32
- "__SBar": "___SBar_wj6ma_gg_",
33
- "--duration": "--duration_wj6ma",
34
- "_color": "__color_wj6ma_gg_",
35
- "--color": "--color_wj6ma",
36
- "_hide": "__hide_wj6ma_gg_",
37
- "__SBackground": "___SBackground_wj6ma_gg_"
32
+ "__SBar": "___SBar_khsp0_gg_",
33
+ "--duration": "--duration_khsp0",
34
+ "_color": "__color_khsp0_gg_",
35
+ "--color": "--color_khsp0",
36
+ "_hide": "__hide_khsp0_gg_",
37
+ "__SBackground": "___SBackground_khsp0_gg_"
38
38
  });
39
39
 
40
40
  var BarRoot = /*#__PURE__*/function (_Component) {
package/lib/es6/Bubble.js CHANGED
@@ -32,19 +32,19 @@ var style = (
32
32
  /*__reshadow_css_start__*/
33
33
  _sstyled.insert(
34
34
  /*__inner_css_start__*/
35
- ".___SBubble_1ana9_gg_{fill:#2bb3ff;stroke:#fff;stroke-width:2px;transition-property:cx,cy;transition-duration:var(--duration_1ana9);transition-timing-function:ease-in-out;opacity:.5}.___SBubble_1ana9_gg_:hover{opacity:.8}.___SBubble_1ana9_gg_.__color_1ana9_gg_{fill:var(--color_1ana9)}.___SCenter_1ana9_gg_{text-anchor:middle;font-size:11px;stroke:#2bb3ff}.___SCenter_1ana9_gg_.__color_1ana9_gg_{stroke:var(--color_1ana9)}.___SLabel_1ana9_gg_{fill:#2bb3ff}.___SLabel_1ana9_gg_._position_right_1ana9_gg_{text-anchor:end}.___SLabel_1ana9_gg_._position_left_1ana9_gg_{text-anchor:start}.___SLabel_1ana9_gg_.__color_1ana9_gg_{fill:var(--color_1ana9)}"
35
+ ".___SBubble_9b78r_gg_{fill:#2bb3ff;stroke:#fff;stroke-width:2px;transition-property:cx,cy;transition-duration:var(--duration_9b78r);transition-timing-function:ease-in-out;opacity:.5}.___SBubble_9b78r_gg_:hover{opacity:.8}.___SBubble_9b78r_gg_.__color_9b78r_gg_{fill:var(--color_9b78r)}.___SCenter_9b78r_gg_{text-anchor:middle;font-size:11px;stroke:#2bb3ff}.___SCenter_9b78r_gg_.__color_9b78r_gg_{stroke:var(--color_9b78r)}.___SLabel_9b78r_gg_{fill:#2bb3ff}.___SLabel_9b78r_gg_._position_right_9b78r_gg_{text-anchor:end}.___SLabel_9b78r_gg_._position_left_9b78r_gg_{text-anchor:start}.___SLabel_9b78r_gg_.__color_9b78r_gg_{fill:var(--color_9b78r)}"
36
36
  /*__inner_css_end__*/
37
- , "1ana9_gg_")
37
+ , "9b78r_gg_")
38
38
  /*__reshadow_css_end__*/
39
39
  , {
40
- "__SBubble": "___SBubble_1ana9_gg_",
41
- "--duration": "--duration_1ana9",
42
- "_color": "__color_1ana9_gg_",
43
- "--color": "--color_1ana9",
44
- "__SCenter": "___SCenter_1ana9_gg_",
45
- "__SLabel": "___SLabel_1ana9_gg_",
46
- "_position_right": "_position_right_1ana9_gg_",
47
- "_position_left": "_position_left_1ana9_gg_"
40
+ "__SBubble": "___SBubble_9b78r_gg_",
41
+ "--duration": "--duration_9b78r",
42
+ "_color": "__color_9b78r_gg_",
43
+ "--color": "--color_9b78r",
44
+ "__SCenter": "___SCenter_9b78r_gg_",
45
+ "__SLabel": "___SLabel_9b78r_gg_",
46
+ "_position_right": "_position_right_9b78r_gg_",
47
+ "_position_left": "_position_left_9b78r_gg_"
48
48
  });
49
49
 
50
50
  var BubbleRoot = /*#__PURE__*/function (_Component) {
package/lib/es6/Donut.js CHANGED
@@ -34,16 +34,16 @@ var style = (
34
34
  /*__reshadow_css_start__*/
35
35
  _sstyled.insert(
36
36
  /*__inner_css_start__*/
37
- ".___SPie_1weh6_gg_{stroke:#fff;fill:#2bb3ff}.___SPie_1weh6_gg_.__color_1weh6_gg_{fill:var(--color_1weh6)}.___SEmptyData_1weh6_gg_{fill:#e0e1e9}.___SEmptyData_1weh6_gg_.__color_1weh6_gg_{fill:var(--color_1weh6)}.___SLabel_1weh6_gg_{text-anchor:middle;vertical-anchor:middle}"
37
+ ".___SPie_1pnw6_gg_{stroke:#fff;fill:#2bb3ff}.___SPie_1pnw6_gg_.__color_1pnw6_gg_{fill:var(--color_1pnw6)}.___SEmptyData_1pnw6_gg_{fill:#e0e1e9}.___SEmptyData_1pnw6_gg_.__color_1pnw6_gg_{fill:var(--color_1pnw6)}.___SLabel_1pnw6_gg_{text-anchor:middle;vertical-anchor:middle}"
38
38
  /*__inner_css_end__*/
39
- , "1weh6_gg_")
39
+ , "1pnw6_gg_")
40
40
  /*__reshadow_css_end__*/
41
41
  , {
42
- "__SPie": "___SPie_1weh6_gg_",
43
- "_color": "__color_1weh6_gg_",
44
- "--color": "--color_1weh6",
45
- "__SEmptyData": "___SEmptyData_1weh6_gg_",
46
- "__SLabel": "___SLabel_1weh6_gg_"
42
+ "__SPie": "___SPie_1pnw6_gg_",
43
+ "_color": "__color_1pnw6_gg_",
44
+ "--color": "--color_1pnw6",
45
+ "__SEmptyData": "___SEmptyData_1pnw6_gg_",
46
+ "__SLabel": "___SLabel_1pnw6_gg_"
47
47
  });
48
48
  var DEFAULT_INSTANCE = Symbol('DEFAULT_INSTANCE');
49
49
 
package/lib/es6/Dots.js CHANGED
@@ -12,18 +12,18 @@ var style = (
12
12
  /*__reshadow_css_start__*/
13
13
  _sstyled.insert(
14
14
  /*__inner_css_start__*/
15
- ".___SDots_18pu7_gg_ .___SDot_18pu7_gg_{transition-duration:var(--duration_18pu7)}.___SDot_18pu7_gg_{stroke-width:2px;stroke:#fff;r:6px;fill:#2bb3ff;transition-property:cx,cy;transition-timing-function:ease-in-out}.___SDot_18pu7_gg_.__hide_18pu7_gg_{display:none}.___SDot_18pu7_gg_.__active_18pu7_gg_{r:8px}.___SDot_18pu7_gg_.__color_18pu7_gg_{fill:var(--color_18pu7)}"
15
+ ".___SDots_1rauw_gg_ .___SDot_1rauw_gg_{transition-duration:var(--duration_1rauw)}.___SDot_1rauw_gg_{stroke-width:2px;stroke:#fff;r:6px;fill:#2bb3ff;transition-property:cx,cy;transition-timing-function:ease-in-out}.___SDot_1rauw_gg_.__hide_1rauw_gg_{display:none}.___SDot_1rauw_gg_.__active_1rauw_gg_{r:8px}.___SDot_1rauw_gg_.__color_1rauw_gg_{fill:var(--color_1rauw)}"
16
16
  /*__inner_css_end__*/
17
- , "18pu7_gg_")
17
+ , "1rauw_gg_")
18
18
  /*__reshadow_css_end__*/
19
19
  , {
20
- "__SDots": "___SDots_18pu7_gg_",
21
- "__SDot": "___SDot_18pu7_gg_",
22
- "--duration": "--duration_18pu7",
23
- "_hide": "__hide_18pu7_gg_",
24
- "_active": "__active_18pu7_gg_",
25
- "_color": "__color_18pu7_gg_",
26
- "--color": "--color_18pu7"
20
+ "__SDots": "___SDots_1rauw_gg_",
21
+ "__SDot": "___SDot_1rauw_gg_",
22
+ "--duration": "--duration_1rauw",
23
+ "_hide": "__hide_1rauw_gg_",
24
+ "_active": "__active_1rauw_gg_",
25
+ "_color": "__color_1rauw_gg_",
26
+ "--color": "--color_1rauw"
27
27
  });
28
28
  var EXCLUDE_PROPS = ['data', 'scale', 'value', 'display'];
29
29