@gravity-ui/chartkit 3.0.0-beta.1 → 3.0.0-beta.11

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 (86) hide show
  1. package/build/components/ChartKit.css +19 -19
  2. package/build/components/ChartKit.d.ts +6 -4
  3. package/build/components/ChartKit.js +2 -2
  4. package/build/components/ErrorBoundary/ErrorBoundary.d.ts +2 -2
  5. package/build/components/Loader/Loader.d.ts +3 -3
  6. package/build/i18n/index.d.ts +2 -2
  7. package/build/libs/chartkit-error/chartkit-error.d.ts +1 -1
  8. package/build/libs/settings/__tests__/settings.test.js +2 -9
  9. package/build/libs/settings/eventEmitter.d.ts +11 -0
  10. package/build/libs/settings/eventEmitter.js +25 -0
  11. package/build/libs/settings/settings.d.ts +7 -4
  12. package/build/libs/settings/settings.js +8 -13
  13. package/build/plugins/highcharts/__stories__/Line.stories.d.ts +2 -3
  14. package/build/plugins/highcharts/__stories__/Pie.stories.d.ts +2 -3
  15. package/build/plugins/highcharts/__stories__/area/Range.stories.d.ts +2 -3
  16. package/build/plugins/highcharts/__stories__/area/Stacked.stories.d.ts +2 -3
  17. package/build/plugins/highcharts/__stories__/column/HorizontalStacked.stories.d.ts +2 -3
  18. package/build/plugins/highcharts/__stories__/column/Vertical.stories.d.ts +2 -3
  19. package/build/plugins/highcharts/__stories__/column/VerticalStacked.stories.d.ts +2 -3
  20. package/build/plugins/highcharts/__stories__/combined/ComboChartWithSameLegendValues.stories.d.ts +2 -3
  21. package/build/plugins/highcharts/__stories__/complex/TwoAxis.stories.d.ts +2 -3
  22. package/build/plugins/highcharts/__stories__/components/ChartStory.d.ts +1 -1
  23. package/build/plugins/highcharts/__stories__/custom-error-render/custom-error-render.stories.d.ts +2 -3
  24. package/build/plugins/highcharts/__stories__/no-data/no-data.stories.d.ts +2 -3
  25. package/build/plugins/highcharts/__stories__/pie/WithTotals.stories.d.ts +2 -3
  26. package/build/plugins/highcharts/mocks/complex.js +1 -1
  27. package/build/plugins/highcharts/renderer/HighchartsWidget.d.ts +3 -1
  28. package/build/plugins/highcharts/renderer/components/HighchartsComponent.d.ts +3 -3
  29. package/build/plugins/highcharts/renderer/components/HighchartsComponent.js +6 -0
  30. package/build/plugins/highcharts/renderer/components/StyledSplitPane/StyledSplitPane.css +1 -1
  31. package/build/plugins/highcharts/renderer/components/StyledSplitPane/StyledSplitPane.d.ts +3 -3
  32. package/build/plugins/highcharts/renderer/components/withSplitPane/withSplitPane.js +2 -5
  33. package/build/plugins/highcharts/renderer/helpers/config/config.d.ts +0 -1
  34. package/build/plugins/highcharts/renderer/helpers/config/config.js +14 -14
  35. package/build/plugins/highcharts/renderer/helpers/config/options.js +1 -1
  36. package/build/plugins/highcharts/renderer/helpers/config/types.d.ts +2 -2
  37. package/build/plugins/highcharts/renderer/helpers/config/utils/addShowInNavigatorToSeries.d.ts +1 -1
  38. package/build/plugins/highcharts/renderer/helpers/config/utils/buildNavigatorFallback.d.ts +1 -1
  39. package/build/plugins/highcharts/renderer/helpers/config/utils/calculatePrecision.d.ts +1 -1
  40. package/build/plugins/highcharts/renderer/helpers/config/utils/getFormatOptionsFromLine.d.ts +1 -1
  41. package/build/plugins/highcharts/renderer/helpers/config/utils/index.d.ts +33 -0
  42. package/build/plugins/highcharts/renderer/helpers/config/utils/index.js +8 -0
  43. package/build/plugins/highcharts/renderer/helpers/config/utils/isNavigatorSeries.d.ts +1 -1
  44. package/build/plugins/highcharts/renderer/helpers/config/utils/numberFormat.d.ts +1 -1
  45. package/build/plugins/highcharts/renderer/helpers/config/utils/setNavigatorDefaultPeriod.d.ts +2 -2
  46. package/build/plugins/highcharts/renderer/helpers/config/utils/setNavigatorDefaultPeriod.js +2 -2
  47. package/build/plugins/highcharts/renderer/helpers/graph.css +4 -4
  48. package/build/plugins/highcharts/renderer/helpers/graph.d.ts +1 -1
  49. package/build/plugins/highcharts/renderer/helpers/graph.js +2 -2
  50. package/build/plugins/highcharts/renderer/helpers/highcharts/highcharts.d.ts +1 -0
  51. package/build/plugins/highcharts/renderer/helpers/highcharts/highcharts.js +5 -2
  52. package/build/plugins/highcharts/renderer/helpers/prepare-data.js +3 -3
  53. package/build/plugins/highcharts/renderer/helpers/tooltip/helpers.d.ts +0 -2
  54. package/build/plugins/highcharts/renderer/helpers/tooltip/helpers.js +0 -9
  55. package/build/plugins/highcharts/renderer/helpers/tooltip/index.d.ts +1 -1
  56. package/build/plugins/highcharts/renderer/helpers/tooltip/index.js +4 -5
  57. package/build/plugins/highcharts/renderer/helpers/tooltip/render-shape-icon/types.d.ts +1 -1
  58. package/build/plugins/highcharts/renderer/helpers/tooltip/tooltip.css +5 -5
  59. package/build/plugins/highcharts/renderer/helpers/tooltip/types.d.ts +3 -12
  60. package/build/plugins/highcharts/renderer/helpers/types.d.ts +2 -2
  61. package/build/plugins/highcharts/types/comments.d.ts +1 -1
  62. package/build/plugins/highcharts/types/misc.d.ts +4 -4
  63. package/build/plugins/highcharts/types/widget.d.ts +13 -5
  64. package/build/plugins/indicator/__stories__/Indicator.stories.d.ts +2 -2
  65. package/build/plugins/indicator/renderer/IndicatorItem.d.ts +2 -2
  66. package/build/plugins/indicator/renderer/IndicatorWidget.css +1 -1
  67. package/build/plugins/indicator/renderer/IndicatorWidget.d.ts +3 -1
  68. package/build/plugins/indicator/types.d.ts +2 -2
  69. package/build/plugins/shared/format-number/i18n/i18n.d.ts +1 -1
  70. package/build/plugins/shared/format-number/types.d.ts +2 -2
  71. package/build/plugins/yagr/__stories__/Yagr.stories.d.ts +3 -4
  72. package/build/plugins/yagr/__stories__/Yagr.stories.js +3 -1
  73. package/build/plugins/yagr/renderer/YagrWidget.css +1 -1
  74. package/build/plugins/yagr/renderer/YagrWidget.d.ts +4 -1
  75. package/build/plugins/yagr/renderer/YagrWidget.js +13 -12
  76. package/build/plugins/yagr/renderer/tooltip/renderTooltip.js +2 -2
  77. package/build/plugins/yagr/renderer/tooltip/tooltip.css +14 -14
  78. package/build/plugins/yagr/renderer/tooltip/types.d.ts +4 -4
  79. package/build/plugins/yagr/renderer/utils.d.ts +1 -1
  80. package/build/plugins/yagr/renderer/utils.js +3 -3
  81. package/build/plugins/yagr/types.d.ts +2 -1
  82. package/build/types/index.d.ts +22 -22
  83. package/build/types/misc.d.ts +1 -1
  84. package/build/types/widget.d.ts +5 -1
  85. package/package.json +16 -11
  86. package/CHANGELOG.md +0 -489
package/CHANGELOG.md DELETED
@@ -1,489 +0,0 @@
1
- # Changelog
2
-
3
- ## [2.11.0](https://github.com/gravity-ui/chartkit/compare/v2.10.1...v2.11.0) (2023-06-20)
4
-
5
-
6
- ### Features
7
-
8
- * add renderError property ([#175](https://github.com/gravity-ui/chartkit/issues/175)) ([84c03a9](https://github.com/gravity-ui/chartkit/commit/84c03a9f8516e9fb846e25a920aa82b00c660a02))
9
-
10
-
11
- ### Bug Fixes
12
-
13
- * reset "No data" error on change data ([ac0da94](https://github.com/gravity-ui/chartkit/commit/ac0da94fd21ff558a739c00b8904645d5ba006ef))
14
-
15
- ## [2.10.1](https://github.com/gravity-ui/chartkit/compare/v2.10.0...v2.10.1) (2023-06-19)
16
-
17
-
18
- ### Bug Fixes
19
-
20
- * **Highcharts plugin:** show totals of selected series on legend click ([#176](https://github.com/gravity-ui/chartkit/issues/176)) ([ac7fe22](https://github.com/gravity-ui/chartkit/commit/ac7fe224363f7379f6dd35db0a3a682cdc7a2bc2))
21
-
22
- ## [2.10.0](https://github.com/gravity-ui/chartkit/compare/v2.9.0...v2.10.0) (2023-06-05)
23
-
24
-
25
- ### Features
26
-
27
- * **Yagr:** update to v2.2.5 ([#173](https://github.com/gravity-ui/chartkit/issues/173)) ([c0e57b6](https://github.com/gravity-ui/chartkit/commit/c0e57b6e939d46984dff7835d503b509d9448200))
28
-
29
- ## [2.9.0](https://github.com/gravity-ui/chartkit/compare/v2.8.1...v2.9.0) (2023-05-31)
30
-
31
-
32
- ### Features
33
-
34
- * **Highcharts plugin:** add `tooltip.sort` configuration ([#170](https://github.com/gravity-ui/chartkit/issues/170)) ([0825a91](https://github.com/gravity-ui/chartkit/commit/0825a91155592d9e06dbdd452547a0c31b71c07a))
35
-
36
- ## [2.8.1](https://github.com/gravity-ui/chartkit/compare/v2.8.0...v2.8.1) (2023-05-30)
37
-
38
-
39
- ### Bug Fixes
40
-
41
- * **options:** fixed default options for yAxis title color ([#168](https://github.com/gravity-ui/chartkit/issues/168)) ([52bf4cc](https://github.com/gravity-ui/chartkit/commit/52bf4cca79770982e9584e89c9a408086850acd5))
42
-
43
- ## [2.8.0](https://github.com/gravity-ui/chartkit/compare/v2.7.2...v2.8.0) (2023-05-23)
44
-
45
-
46
- ### Features
47
-
48
- * **Highcharts plugin:** rework tooltip pinning api ([#166](https://github.com/gravity-ui/chartkit/issues/166)) ([9ca62e4](https://github.com/gravity-ui/chartkit/commit/9ca62e4d01d62f36de0c4866e0d21728ca2aa25c))
49
-
50
- ## [2.7.2](https://github.com/gravity-ui/chartkit/compare/v2.7.1...v2.7.2) (2023-05-17)
51
-
52
-
53
- ### Bug Fixes
54
-
55
- * **Highcharts plugin:** add metaKey property to SeriesClickEventObject type ([#164](https://github.com/gravity-ui/chartkit/issues/164)) ([3484561](https://github.com/gravity-ui/chartkit/commit/34845618e4eec8c48e3870d4187855d39fb857e3))
56
-
57
- ## [2.7.1](https://github.com/gravity-ui/chartkit/compare/v2.7.0...v2.7.1) (2023-05-17)
58
-
59
-
60
- ### Bug Fixes
61
-
62
- * remove onSeriesClick due to it uselessness ([#162](https://github.com/gravity-ui/chartkit/issues/162)) ([ca993d6](https://github.com/gravity-ui/chartkit/commit/ca993d6987f9c0a4ade0c154eb25d99a6d7e0027))
63
-
64
- ## [2.7.0](https://github.com/gravity-ui/chartkit/compare/v2.6.0...v2.7.0) (2023-05-10)
65
-
66
-
67
- ### Features
68
-
69
- * **Highcharts plugin:** add config.onSeriesClick property ([#160](https://github.com/gravity-ui/chartkit/issues/160)) ([212ce4b](https://github.com/gravity-ui/chartkit/commit/212ce4b49693ef256ed2e46cb44d863a951020ac))
70
-
71
- ## [2.6.0](https://github.com/gravity-ui/chartkit/compare/v2.5.0...v2.6.0) (2023-05-04)
72
-
73
-
74
- ### Features
75
-
76
- * add React@18 as peer dependency ([#158](https://github.com/gravity-ui/chartkit/issues/158)) ([2991c11](https://github.com/gravity-ui/chartkit/commit/2991c1138781692451582e99d8f9c7eb51a8c9aa))
77
-
78
- ## [2.5.0](https://github.com/gravity-ui/chartkit/compare/v2.4.1...v2.5.0) (2023-05-03)
79
-
80
-
81
- ### Features
82
-
83
- * **Highcharts plugin:** add config.tooltip property ([#156](https://github.com/gravity-ui/chartkit/issues/156)) ([8a8229e](https://github.com/gravity-ui/chartkit/commit/8a8229e4ee8401a8cfce4d0689a047e830d1a5e9))
84
-
85
- ## [2.4.1](https://github.com/gravity-ui/chartkit/compare/v2.4.0...v2.4.1) (2023-04-19)
86
-
87
-
88
- ### Bug Fixes
89
-
90
- * **Highcharts plugin:** Replace deprecated event.path ([#153](https://github.com/gravity-ui/chartkit/issues/153)) ([23be4a9](https://github.com/gravity-ui/chartkit/commit/23be4a96479820a69534098100140cd9a3fad45a))
91
-
92
- ## [2.4.0](https://github.com/gravity-ui/chartkit/compare/v2.3.1...v2.4.0) (2023-04-13)
93
-
94
-
95
- ### Features
96
-
97
- * **Yagr:** update to v2.2.4 ([#150](https://github.com/gravity-ui/chartkit/issues/150)) ([7b7ab46](https://github.com/gravity-ui/chartkit/commit/7b7ab4632f6ece68dc05e1bec5949283e4307f88))
98
-
99
- ## [2.3.1](https://github.com/gravity-ui/chartkit/compare/v2.3.0...v2.3.1) (2023-04-12)
100
-
101
-
102
- ### Bug Fixes
103
-
104
- * **Highcharts plugin:** navigator series visibility on legend item click ([#148](https://github.com/gravity-ui/chartkit/issues/148)) ([ae7d38b](https://github.com/gravity-ui/chartkit/commit/ae7d38b3ffa8d4b037a762bf26f4e68b504c7886))
105
-
106
- ## [2.3.0](https://github.com/gravity-ui/chartkit/compare/v2.2.2...v2.3.0) (2023-04-11)
107
-
108
-
109
- ### Features
110
-
111
- * **Indicator plugin:** add onRender ([#145](https://github.com/gravity-ui/chartkit/issues/145)) ([3a044c0](https://github.com/gravity-ui/chartkit/commit/3a044c08583cd96bd08e3fb29a89c06ca9a6be18))
112
- * **Indicator plugin:** add renderTime ([3a044c0](https://github.com/gravity-ui/chartkit/commit/3a044c08583cd96bd08e3fb29a89c06ca9a6be18))
113
-
114
- ## [2.2.2](https://github.com/gravity-ui/chartkit/compare/v2.2.1...v2.2.2) (2023-03-28)
115
-
116
-
117
- ### Bug Fixes
118
-
119
- * **Highcharts plugin:** fix legend item click ([#142](https://github.com/gravity-ui/chartkit/issues/142)) ([a64f1b9](https://github.com/gravity-ui/chartkit/commit/a64f1b962bec45bfd2568110c1c9050fc9d75807))
120
-
121
- ## [2.2.1](https://github.com/gravity-ui/chartkit/compare/v2.2.0...v2.2.1) (2023-03-27)
122
-
123
-
124
- ### Bug Fixes
125
-
126
- * **Highcharts plugin:** proper message for empty data ([#140](https://github.com/gravity-ui/chartkit/issues/140)) ([ee41ace](https://github.com/gravity-ui/chartkit/commit/ee41ace81ddaa88601b584273a7759dfe1dbe1c9))
127
-
128
- ## [2.2.0](https://github.com/gravity-ui/chartkit/compare/v2.1.0...v2.2.0) (2023-03-21)
129
-
130
-
131
- ### Features
132
-
133
- * **Higcharts plugin:** add type for manageTooltipConfig ([#139](https://github.com/gravity-ui/chartkit/issues/139)) ([f781cca](https://github.com/gravity-ui/chartkit/commit/f781cca112bb1e87607d24916aa38bf44fe2abf6))
134
-
135
-
136
- ### Bug Fixes
137
-
138
- * **Highcharts:** fix resetZoomButton styles ([#137](https://github.com/gravity-ui/chartkit/issues/137)) ([07f610e](https://github.com/gravity-ui/chartkit/commit/07f610e443f2c9a2543ac68bbff443112a1d650a))
139
-
140
- ## [2.1.0](https://github.com/gravity-ui/chartkit/compare/v2.0.0...v2.1.0) (2023-03-13)
141
-
142
-
143
- ### Features
144
-
145
- * **Highcharts:** add linesLimit property to HighchartsWidgetData.config ([#135](https://github.com/gravity-ui/chartkit/issues/135)) ([91d16a3](https://github.com/gravity-ui/chartkit/commit/91d16a32aad00fb683c68f3f39a6477f14f18c33))
146
-
147
- ## [2.0.0](https://github.com/gravity-ui/chartkit/compare/v1.6.7...v2.0.0) (2023-03-09)
148
-
149
-
150
- ### ⚠ BREAKING CHANGES
151
-
152
- * update uikit up to 4 ([#133](https://github.com/gravity-ui/chartkit/issues/133))
153
-
154
- ### Features
155
-
156
- * update uikit up to 4 ([#133](https://github.com/gravity-ui/chartkit/issues/133)) ([8ae0c8d](https://github.com/gravity-ui/chartkit/commit/8ae0c8d179273a448de8f670dfe1b3f2314c0523))
157
-
158
- ## [1.6.7](https://github.com/gravity-ui/chartkit/compare/v1.6.6...v1.6.7) (2023-02-21)
159
-
160
-
161
- ### Bug Fixes
162
-
163
- * fix check if chart exists before adjust font size ([#130](https://github.com/gravity-ui/chartkit/issues/130)) ([d81c6b2](https://github.com/gravity-ui/chartkit/commit/d81c6b2e4c64b04f7d62b684c46133ab9177a479))
164
-
165
- ## [1.6.6](https://github.com/gravity-ui/chartkit/compare/v1.6.5...v1.6.6) (2023-02-21)
166
-
167
-
168
- ### Bug Fixes
169
-
170
- * add check if chart exists before adjust font size ([#128](https://github.com/gravity-ui/chartkit/issues/128)) ([451e3c1](https://github.com/gravity-ui/chartkit/commit/451e3c119858adffc02fede05eb9f91407b6e31c))
171
-
172
- ## [1.6.5](https://github.com/gravity-ui/chartkit/compare/v1.6.4...v1.6.5) (2023-02-10)
173
-
174
-
175
- ### Bug Fixes
176
-
177
- * **Highcharts plugin:** fix optional id usage for series identifier ([#125](https://github.com/gravity-ui/chartkit/issues/125)) ([f08b414](https://github.com/gravity-ui/chartkit/commit/f08b4145360db78c9efc6bd056772cd9f21a5fdb))
178
-
179
- ## [1.6.4](https://github.com/gravity-ui/chartkit/compare/v1.6.3...v1.6.4) (2023-02-09)
180
-
181
-
182
- ### Bug Fixes
183
-
184
- * **Highcharts plugin:** fix on legend item click when it has duplicate name ([#123](https://github.com/gravity-ui/chartkit/issues/123)) ([005b9d2](https://github.com/gravity-ui/chartkit/commit/005b9d20d0613f3e98d487c8c72c50ec713870ec))
185
-
186
- ## [1.6.3](https://github.com/gravity-ui/chartkit/compare/v1.6.2...v1.6.3) (2023-02-08)
187
-
188
-
189
- ### Bug Fixes
190
-
191
- * **Highcharts plugin:** fix updating point x value ([#121](https://github.com/gravity-ui/chartkit/issues/121)) ([0ffe89f](https://github.com/gravity-ui/chartkit/commit/0ffe89fb9f6112166765dd997cf549c6ca2665d9))
192
-
193
- ## [1.6.2](https://github.com/gravity-ui/chartkit/compare/v1.6.1...v1.6.2) (2023-01-24)
194
-
195
-
196
- ### Bug Fixes
197
-
198
- * **Highcharts plugin:** fix tooltip behaviour ([#119](https://github.com/gravity-ui/chartkit/issues/119)) ([5dffcc3](https://github.com/gravity-ui/chartkit/commit/5dffcc3224b415a2e64fe331a4a72a4f90266ae2))
199
- * **Highcharts plugin:** fix tooltip behaviour for onChartLoad & onRender callbacks ([5dffcc3](https://github.com/gravity-ui/chartkit/commit/5dffcc3224b415a2e64fe331a4a72a4f90266ae2))
200
-
201
- ## [1.6.1](https://github.com/gravity-ui/chartkit/compare/v1.6.0...v1.6.1) (2023-01-24)
202
-
203
-
204
- ### Bug Fixes
205
-
206
- * add export type for onChartLoad & onRender ([#117](https://github.com/gravity-ui/chartkit/issues/117)) ([e8b4f58](https://github.com/gravity-ui/chartkit/commit/e8b4f586335581df82f13b3f476afb0316e6e598))
207
- * add types export ([e8b4f58](https://github.com/gravity-ui/chartkit/commit/e8b4f586335581df82f13b3f476afb0316e6e598))
208
-
209
- ## [1.6.0](https://github.com/gravity-ui/chartkit/compare/v1.5.2...v1.6.0) (2023-01-23)
210
-
211
-
212
- ### Features
213
-
214
- * add onRender & onChartLoad calbacks ([#111](https://github.com/gravity-ui/chartkit/issues/111)) ([f23c008](https://github.com/gravity-ui/chartkit/commit/f23c008c5c049c813e6704edb1654c90707d00af))
215
-
216
- ## [1.5.2](https://github.com/gravity-ui/chartkit/compare/v1.5.1...v1.5.2) (2022-12-20)
217
-
218
-
219
- ### Bug Fixes
220
-
221
- * **Highcharts plugin:** add widget rendering time ([#109](https://github.com/gravity-ui/chartkit/issues/109)) ([0db5c73](https://github.com/gravity-ui/chartkit/commit/0db5c737e4de588decb6cc191fa624db8b2119b4))
222
-
223
- ## [1.5.1](https://github.com/gravity-ui/chartkit/compare/v1.5.0...v1.5.1) (2022-12-20)
224
-
225
-
226
- ### Bug Fixes
227
-
228
- * **Highcharts plugin:** add merging serie stack name if it already exists ([#107](https://github.com/gravity-ui/chartkit/issues/107)) ([fa73b55](https://github.com/gravity-ui/chartkit/commit/fa73b5554a491f20c109416d979e74c3b9d7e2c3))
229
-
230
- ## [1.5.0](https://github.com/gravity-ui/chartkit/compare/v1.4.3...v1.5.0) (2022-12-19)
231
-
232
-
233
- ### Features
234
-
235
- * add stacking positive and mixed values in stacked area ([#105](https://github.com/gravity-ui/chartkit/issues/105)) ([3f0cc62](https://github.com/gravity-ui/chartkit/commit/3f0cc628613aad1016b009253e09a8682ca05d2c))
236
-
237
- ## [1.4.3](https://github.com/gravity-ui/chartkit/compare/v1.4.2...v1.4.3) (2022-12-14)
238
-
239
-
240
- ### Bug Fixes
241
-
242
- * **Highcharts plugin:** fix colorAxis legend title color ([#100](https://github.com/gravity-ui/chartkit/issues/100)) ([06c992a](https://github.com/gravity-ui/chartkit/commit/06c992a5a614798a475aa7c3358058ed7080c6c1))
243
- * **Highcharts plugin:** remove tooltip lines sorting ([#103](https://github.com/gravity-ui/chartkit/issues/103)) ([5e57035](https://github.com/gravity-ui/chartkit/commit/5e57035b7c1d572d66926c48889e8b5905399592))
244
- * **Yagr plugin:** add core styles import ([#104](https://github.com/gravity-ui/chartkit/issues/104)) ([4de763d](https://github.com/gravity-ui/chartkit/commit/4de763d7f502f4bacf202beddeb0e5ef27381917))
245
-
246
- ## [1.4.2](https://github.com/gravity-ui/chartkit/compare/v1.4.1...v1.4.2) (2022-12-13)
247
-
248
-
249
- ### Bug Fixes
250
-
251
- * **Highcharts plugin:** fix pie halo on mobile devices ([#97](https://github.com/gravity-ui/chartkit/issues/97)) ([3b4a0b4](https://github.com/gravity-ui/chartkit/commit/3b4a0b46ee6512b8b941ef768c85804b4daf7638))
252
-
253
- ## [1.4.1](https://github.com/gravity-ui/chartkit/compare/v1.4.0...v1.4.1) (2022-12-12)
254
-
255
-
256
- ### Bug Fixes
257
-
258
- * fix Hide all and Show all button ([#95](https://github.com/gravity-ui/chartkit/issues/95)) ([4e404e6](https://github.com/gravity-ui/chartkit/commit/4e404e626ad20f455c05ec958b828b7a193b8f9b))
259
-
260
- ## [1.4.0](https://github.com/gravity-ui/chartkit/compare/v1.3.0...v1.4.0) (2022-12-09)
261
-
262
-
263
- ### Features
264
-
265
- * update chartkit to new yagr ([#93](https://github.com/gravity-ui/chartkit/issues/93)) ([e89f0db](https://github.com/gravity-ui/chartkit/commit/e89f0db55fa792922b24ce23c562c35270de3722))
266
-
267
- ## [1.3.0](https://github.com/gravity-ui/chartkit/compare/v1.2.0...v1.3.0) (2022-12-09)
268
-
269
-
270
- ### Features
271
-
272
- * **Highcharts:** add CkHighchartsSeriesOptionsType type ([#92](https://github.com/gravity-ui/chartkit/issues/92)) ([36b9d75](https://github.com/gravity-ui/chartkit/commit/36b9d75779fdde4ef98e8de5db3fbb515dc44662))
273
-
274
-
275
- ### Bug Fixes
276
-
277
- * **Highcharts:** fix widget config type ([#89](https://github.com/gravity-ui/chartkit/issues/89)) ([988c074](https://github.com/gravity-ui/chartkit/commit/988c074ead25027e9d7e2c5ec0443c8d428ae35c))
278
-
279
- ## [1.2.0](https://github.com/gravity-ui/chartkit/compare/v1.1.0...v1.2.0) (2022-12-09)
280
-
281
-
282
- ### Features
283
-
284
- * update yagr to 2.1.0 ([#87](https://github.com/gravity-ui/chartkit/issues/87)) ([5dfd6d0](https://github.com/gravity-ui/chartkit/commit/5dfd6d0098729b4813f6a783457e40203e269272))
285
-
286
- ## [1.1.0](https://github.com/gravity-ui/chartkit/compare/v1.0.0...v1.1.0) (2022-12-08)
287
-
288
- ### Features
289
-
290
- - add export of all yagr lib types to yagr plugin
291
-
292
- ### Bug Fixes
293
-
294
- - fix config object merging in `useWidgetData` yagr plugin hook
295
-
296
- ## [1.0.0](https://github.com/gravity-ui/chartkit/compare/v0.13.0...v1.0.0) (2022-12-07)
297
-
298
- ### ⚠ BREAKING CHANGES
299
-
300
- - update Yagr to v2. Read more about [changes](https://github.com/yandex-cloud/yagr/blob/master/CHANGELOG.md#200-19-04-2022)
301
-
302
- ## [0.13.0](https://github.com/gravity-ui/chartkit/compare/v0.12.3...v0.13.0) (2022-12-05)
303
-
304
- ### Features
305
-
306
- - remove direct import @gravity-ui/uikit styles in ChartKit component ([#80](https://github.com/gravity-ui/chartkit/issues/80)) ([49642d7](https://github.com/gravity-ui/chartkit/commit/49642d7cfbd358a399ead674b2d3a040b05bf669))
307
-
308
- ## [0.12.3](https://github.com/gravity-ui/chartkit/compare/v0.12.2...v0.12.3) (2022-12-01)
309
-
310
- ### Bug Fixes
311
-
312
- - **Yagr:** added common no-data case handling ([#78](https://github.com/gravity-ui/chartkit/issues/78)) ([100efaa](https://github.com/gravity-ui/chartkit/commit/100efaaff20e03048146ca084ee91c2be2568640))
313
-
314
- ## [0.12.2](https://github.com/gravity-ui/chartkit/compare/v0.12.1...v0.12.2) (2022-11-30)
315
-
316
- ### Bug Fixes
317
-
318
- - **ChartKit:** id not to be new on every render ([#76](https://github.com/gravity-ui/chartkit/issues/76)) ([230a992](https://github.com/gravity-ui/chartkit/commit/230a992fe99a176bbf85cbef363ccac45db7b3b4))
319
-
320
- ## [0.12.1](https://github.com/gravity-ui/chartkit/compare/v0.12.0...v0.12.1) (2022-11-22)
321
-
322
- ### Bug Fixes
323
-
324
- - **Highcharts plugin:** remove style for chart background color ([#73](https://github.com/gravity-ui/chartkit/issues/73)) ([481b2f5](https://github.com/gravity-ui/chartkit/commit/481b2f5fe07d818f37ba220f70fbad14690b39ba))
325
-
326
- ## [0.12.0](https://github.com/gravity-ui/chartkit/compare/v0.11.1...v0.12.0) (2022-11-22)
327
-
328
- ### Features
329
-
330
- - add support border color setting ([defdcf7](https://github.com/gravity-ui/chartkit/commit/defdcf768d33fe11f9de8dc14a1e9561c034f6ea))
331
-
332
- ## [0.11.1](https://github.com/gravity-ui/chartkit/compare/v0.11.0...v0.11.1) (2022-11-21)
333
-
334
- ### Bug Fixes
335
-
336
- - **Highcharts plugin:** fix tooltip holidays handling ([#69](https://github.com/gravity-ui/chartkit/issues/69)) ([9bc3f8c](https://github.com/gravity-ui/chartkit/commit/9bc3f8c7a62d3b269626be87a46de1d8a6949f57))
337
-
338
- ## [0.11.0](https://github.com/gravity-ui/chartkit/compare/v0.10.1...v0.11.0) (2022-11-18)
339
-
340
- ### Features
341
-
342
- - types improvements ([#67](https://github.com/gravity-ui/chartkit/issues/67)) ([33b4f07](https://github.com/gravity-ui/chartkit/commit/33b4f07a24abdfde52005ddbbf17fb7a25817beb))
343
-
344
- ## [0.10.1](https://github.com/gravity-ui/chartkit/compare/v0.10.0...v0.10.1) (2022-11-18)
345
-
346
- ### Bug Fixes
347
-
348
- - **Highcharts plugin:** add Highcharts lib type export ([#65](https://github.com/gravity-ui/chartkit/issues/65)) ([de24a26](https://github.com/gravity-ui/chartkit/commit/de24a264197441b21261438808838e5fbd0a8402))
349
-
350
- ## [0.10.0](https://github.com/gravity-ui/chartkit/compare/v0.9.1...v0.10.0) (2022-11-18)
351
-
352
- ### Features
353
-
354
- - add highcharts plugin ([#61](https://github.com/gravity-ui/chartkit/issues/61)) ([9329ede](https://github.com/gravity-ui/chartkit/commit/9329edeaba8c4ef84b1fc30bb7196ba350dc3abd))
355
-
356
- ### Bug Fixes
357
-
358
- - yagr & indicator types fixes ([#64](https://github.com/gravity-ui/chartkit/issues/64)) ([479c552](https://github.com/gravity-ui/chartkit/commit/479c552f5ce1890451f3f104fc8efb730f2baf67))
359
-
360
- ## [0.9.1](https://github.com/gravity-ui/chartkit/compare/v0.9.0...v0.9.1) (2022-11-14)
361
-
362
- ### Bug Fixes
363
-
364
- - fix yagr theme initialization ([#59](https://github.com/gravity-ui/chartkit/issues/59)) ([7247873](https://github.com/gravity-ui/chartkit/commit/724787380b8d81f6dfdaae1f6e5c1b806af32e3c))
365
-
366
- ## [0.9.0](https://github.com/gravity-ui/chartkit/compare/v0.8.0...v0.9.0) (2022-11-08)
367
-
368
- ### Features
369
-
370
- - add isMobile property ([#57](https://github.com/gravity-ui/chartkit/issues/57)) ([a2e87ed](https://github.com/gravity-ui/chartkit/commit/a2e87edf1d05705fb92c2571b5a71496c48d9215))
371
-
372
- ## [0.8.0](https://github.com/gravity-ui/chartkit/compare/v0.7.2...v0.8.0) (2022-10-04)
373
-
374
- ### Features
375
-
376
- - move to @gravity-ui/i18n ([#45](https://github.com/gravity-ui/chartkit/issues/45)) ([ad401d8](https://github.com/gravity-ui/chartkit/commit/ad401d85bf50ab4ceb0ae8a837c4b11cd36a4acd))
377
-
378
- ### Bug Fixes
379
-
380
- - add ChartKitOnError type export ([#54](https://github.com/gravity-ui/chartkit/issues/54)) ([7660be7](https://github.com/gravity-ui/chartkit/commit/7660be756cd3ec1057aa9fd4bb45226c9632e80f))
381
-
382
- ## [0.7.2](https://github.com/gravity-ui/chartkit/compare/v0.7.1...v0.7.2) (2022-10-03)
383
-
384
- ### Bug Fixes
385
-
386
- - package.json fixes ([#50](https://github.com/gravity-ui/chartkit/issues/50)) ([aca306d](https://github.com/gravity-ui/chartkit/commit/aca306dc8872951a48c1db0362ae1912138d72ed))
387
-
388
- ## [0.7.1](https://github.com/gravity-ui/chartkit/compare/v0.7.0...v0.7.1) (2022-10-03)
389
-
390
- ### Bug Fixes
391
-
392
- - move to gravity-ui configs ([#48](https://github.com/gravity-ui/chartkit/issues/48)) ([620587b](https://github.com/gravity-ui/chartkit/commit/620587b41febade698f12e67506aab683934e7b3))
393
-
394
- ## [0.7.0](https://github.com/yandex-cloud/chartkit/compare/v0.6.0...v0.7.0) (2022-10-01)
395
-
396
- ### Features
397
-
398
- - use gravity-ui/uikit instead of yandex-cloud/uikit ([#46](https://github.com/yandex-cloud/chartkit/issues/46)) ([afb2300](https://github.com/yandex-cloud/chartkit/commit/afb230036bb26573159e5f03e0972653b6692d86))
399
-
400
- ## [0.6.0](https://github.com/yandex-cloud/chartkit/compare/v0.5.4...v0.6.0) (2022-08-12)
401
-
402
- ### Features
403
-
404
- - remove uikit css variables proxing ([#43](https://github.com/yandex-cloud/chartkit/issues/43)) ([4d5131e](https://github.com/yandex-cloud/chartkit/commit/4d5131e0d77270e44bef94f0ba05c9fc5c317704))
405
-
406
- ## [0.5.4](https://github.com/yandex-cloud/chartkit/compare/v0.5.3...v0.5.4) (2022-08-08)
407
-
408
- ### Bug Fixes
409
-
410
- - add Yagr type export ([#42](https://github.com/yandex-cloud/chartkit/issues/42)) ([a8b9475](https://github.com/yandex-cloud/chartkit/commit/a8b94755bbb0d42652db3e4266e0ca04481ad99f))
411
- - npm vulnerabilities fixes ([#40](https://github.com/yandex-cloud/chartkit/issues/40)) ([1509bcf](https://github.com/yandex-cloud/chartkit/commit/1509bcf87a50d9281c3ea47074c694db429ad5d4))
412
-
413
- ## [0.5.3](https://github.com/yandex-cloud/chartkit/compare/v0.5.2...v0.5.3) (2022-08-01)
414
-
415
- ### Bug Fixes
416
-
417
- - dev and peer dependencies fixes ([#36](https://github.com/yandex-cloud/chartkit/issues/36)) ([faeccd9](https://github.com/yandex-cloud/chartkit/commit/faeccd9aca9b84ee02edeadef3db2d2abeedb143))
418
-
419
- ## [0.5.2](https://github.com/yandex-cloud/chartkit/compare/v0.5.1...v0.5.2) (2022-07-28)
420
-
421
- ### Bug Fixes
422
-
423
- - Indicator onLoad invocation fixes ([#34](https://github.com/yandex-cloud/chartkit/issues/34)) ([95fafc3](https://github.com/yandex-cloud/chartkit/commit/95fafc381bbafe47173f802310a67e7ced243d80))
424
-
425
- ## [0.5.1](https://github.com/yandex-cloud/chartkit/compare/v0.5.0...v0.5.1) (2022-07-27)
426
-
427
- ### Bug Fixes
428
-
429
- - error handling fixes ([#31](https://github.com/yandex-cloud/chartkit/issues/31)) ([e20fb9d](https://github.com/yandex-cloud/chartkit/commit/e20fb9df1d811efa08a8a68110b1a6819a384af4))
430
-
431
- ## [0.5.0](https://github.com/yandex-cloud/chartkit/compare/v0.4.0...v0.5.0) (2022-07-25)
432
-
433
- ### Features
434
-
435
- - add chartkit-error ([#28](https://github.com/yandex-cloud/chartkit/issues/28)) ([8342073](https://github.com/yandex-cloud/chartkit/commit/83420738dd431fa1ce2b96f18631f84ca36ed4af))
436
- - add indicator chart ([#30](https://github.com/yandex-cloud/chartkit/issues/30)) ([4f465de](https://github.com/yandex-cloud/chartkit/commit/4f465de3afdee721f96868d975f3aee647177f76))
437
- - change error handling ([#29](https://github.com/yandex-cloud/chartkit/issues/29)) ([993958a](https://github.com/yandex-cloud/chartkit/commit/993958a68e1c4376e037bd006d6b19f013b58cfb))
438
-
439
- ### Bug Fixes
440
-
441
- - remove react-dom from peer dependencies ([#26](https://github.com/yandex-cloud/chartkit/issues/26)) ([22b6525](https://github.com/yandex-cloud/chartkit/commit/22b6525c767104e56cc51cf5dee5340253f7c080))
442
-
443
- ## [0.4.0](https://github.com/yandex-cloud/chartkit/compare/v0.3.1...v0.4.0) (2022-07-18)
444
-
445
- ### Features
446
-
447
- - add onError property ([#24](https://github.com/yandex-cloud/chartkit/issues/24)) ([0b51f19](https://github.com/yandex-cloud/chartkit/commit/0b51f195612cb80ab8e40b5d115eb7650f986888))
448
-
449
- ## [0.3.1](https://github.com/yandex-cloud/chartkit/compare/v0.3.0...v0.3.1) (2022-07-14)
450
-
451
- ### Bug Fixes
452
-
453
- - add test for settings ([#21](https://github.com/yandex-cloud/chartkit/issues/21)) ([b848503](https://github.com/yandex-cloud/chartkit/commit/b8485032d9ab14edda0a8f193f9174e3a6c687bf))
454
- - build task fixes ([#23](https://github.com/yandex-cloud/chartkit/issues/23)) ([2f13233](https://github.com/yandex-cloud/chartkit/commit/2f13233005d8fe7d10d496464ec3aed0a9ea5743))
455
-
456
- ## [0.3.0](https://github.com/yandex-cloud/chartkit/compare/v0.2.0...v0.3.0) (2022-07-13)
457
-
458
- ### Features
459
-
460
- - add root types export ([#18](https://github.com/yandex-cloud/chartkit/issues/18)) ([06265a1](https://github.com/yandex-cloud/chartkit/commit/06265a10f518836ac63f2b847e73dd19b3e2e8ca))
461
-
462
- ## [0.2.0](https://github.com/yandex-cloud/chartkit/compare/v0.1.1...v0.2.0) (2022-07-11)
463
-
464
- ### Features
465
-
466
- - add cn lib ([#10](https://github.com/yandex-cloud/chartkit/issues/10)) ([796bdda](https://github.com/yandex-cloud/chartkit/commit/796bdda22fbf69ea8fc37965486e358ea3779a7e))
467
- - add i18n ([#13](https://github.com/yandex-cloud/chartkit/issues/13)) ([3f0204b](https://github.com/yandex-cloud/chartkit/commit/3f0204bb949aeb596632b3479d7e5ee130d91225))
468
- - add reflow handler ([#15](https://github.com/yandex-cloud/chartkit/issues/15)) ([80210af](https://github.com/yandex-cloud/chartkit/commit/80210af775ca7476f107f6ecc2ae9983baa9a8e3))
469
- - add yagr plugin types export ([#17](https://github.com/yandex-cloud/chartkit/issues/17)) ([6e4cf1d](https://github.com/yandex-cloud/chartkit/commit/6e4cf1dc5cc584a9bda99b39122f489ed35f90e2))
470
- - change lib structure ([#7](https://github.com/yandex-cloud/chartkit/issues/7)) ([dfb6ed8](https://github.com/yandex-cloud/chartkit/commit/dfb6ed839fd49a13006e75bca77abfd43849653b))
471
-
472
- ### Bug Fixes
473
-
474
- - change cn workflow ([#12](https://github.com/yandex-cloud/chartkit/issues/12)) ([aba5148](https://github.com/yandex-cloud/chartkit/commit/aba5148237aa0dd0bfd89744c77e30ebbcbcb90e))
475
- - downgrade i18n to v0.5.0 ([#16](https://github.com/yandex-cloud/chartkit/issues/16)) ([454985a](https://github.com/yandex-cloud/chartkit/commit/454985a6c339775ebc0a96d77a20792b31b305c7))
476
- - move all storybook decorators into one ([#14](https://github.com/yandex-cloud/chartkit/issues/14)) ([de1e8e9](https://github.com/yandex-cloud/chartkit/commit/de1e8e90325142e41ece8edc785119440b49fa0c))
477
-
478
- ### [0.1.1](https://www.github.com/yandex-cloud/ChartKit/compare/v0.1.0...v0.1.1) (2022-02-17)
479
-
480
- ### Bug Fixes
481
-
482
- - add publishConfig ([5cfdfff](https://www.github.com/yandex-cloud/ChartKit/commit/5cfdfffbdcafb8baeb05338ef07dd3a602c51797))
483
-
484
- ## 0.1.0 (2022-02-17)
485
-
486
- ### Bug Fixes
487
-
488
- - init ([2804dac](https://www.github.com/yandex-cloud/ChartKit/commit/2804dacfd0f11e15cda6a84ca22172bf2d74b532))
489
- - init ([4b747d4](https://www.github.com/yandex-cloud/ChartKit/commit/4b747d409122fc4ae330040e75e273ee9a602bcf))