@gravity-ui/chartkit 3.0.0-beta.3 → 3.0.0-beta.5

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 (53) hide show
  1. package/build/components/ChartKit.d.ts +3 -3
  2. package/build/components/ErrorBoundary/ErrorBoundary.d.ts +2 -2
  3. package/build/components/Loader/Loader.d.ts +3 -3
  4. package/build/i18n/index.d.ts +2 -2
  5. package/build/libs/chartkit-error/chartkit-error.d.ts +1 -1
  6. package/build/libs/settings/settings.d.ts +1 -1
  7. package/build/plugins/highcharts/__stories__/Line.stories.d.ts +2 -3
  8. package/build/plugins/highcharts/__stories__/Pie.stories.d.ts +2 -3
  9. package/build/plugins/highcharts/__stories__/area/Range.stories.d.ts +2 -3
  10. package/build/plugins/highcharts/__stories__/area/Stacked.stories.d.ts +2 -3
  11. package/build/plugins/highcharts/__stories__/column/HorizontalStacked.stories.d.ts +2 -3
  12. package/build/plugins/highcharts/__stories__/column/Vertical.stories.d.ts +2 -3
  13. package/build/plugins/highcharts/__stories__/column/VerticalStacked.stories.d.ts +2 -3
  14. package/build/plugins/highcharts/__stories__/combined/ComboChartWithSameLegendValues.stories.d.ts +2 -3
  15. package/build/plugins/highcharts/__stories__/complex/TwoAxis.stories.d.ts +2 -3
  16. package/build/plugins/highcharts/__stories__/components/ChartStory.d.ts +1 -1
  17. package/build/plugins/highcharts/__stories__/custom-error-render/custom-error-render.stories.d.ts +2 -3
  18. package/build/plugins/highcharts/__stories__/no-data/no-data.stories.d.ts +2 -3
  19. package/build/plugins/highcharts/__stories__/pie/WithTotals.stories.d.ts +2 -3
  20. package/build/plugins/highcharts/renderer/components/HighchartsComponent.d.ts +3 -3
  21. package/build/plugins/highcharts/renderer/components/StyledSplitPane/StyledSplitPane.d.ts +3 -3
  22. package/build/plugins/highcharts/renderer/components/withSplitPane/withSplitPane.js +3 -3
  23. package/build/plugins/highcharts/renderer/helpers/config/config.d.ts +0 -1
  24. package/build/plugins/highcharts/renderer/helpers/config/types.d.ts +2 -2
  25. package/build/plugins/highcharts/renderer/helpers/config/utils/addShowInNavigatorToSeries.d.ts +1 -1
  26. package/build/plugins/highcharts/renderer/helpers/config/utils/buildNavigatorFallback.d.ts +1 -1
  27. package/build/plugins/highcharts/renderer/helpers/config/utils/calculatePrecision.d.ts +1 -1
  28. package/build/plugins/highcharts/renderer/helpers/config/utils/getFormatOptionsFromLine.d.ts +1 -1
  29. package/build/plugins/highcharts/renderer/helpers/config/utils/isNavigatorSeries.d.ts +1 -1
  30. package/build/plugins/highcharts/renderer/helpers/config/utils/numberFormat.d.ts +1 -1
  31. package/build/plugins/highcharts/renderer/helpers/config/utils/setNavigatorDefaultPeriod.d.ts +2 -2
  32. package/build/plugins/highcharts/renderer/helpers/graph.d.ts +1 -1
  33. package/build/plugins/highcharts/renderer/helpers/graph.js +2 -2
  34. package/build/plugins/highcharts/renderer/helpers/tooltip/index.d.ts +1 -1
  35. package/build/plugins/highcharts/renderer/helpers/tooltip/render-shape-icon/types.d.ts +1 -1
  36. package/build/plugins/highcharts/renderer/helpers/tooltip/types.d.ts +3 -3
  37. package/build/plugins/highcharts/renderer/helpers/types.d.ts +2 -2
  38. package/build/plugins/highcharts/types/comments.d.ts +1 -1
  39. package/build/plugins/highcharts/types/misc.d.ts +4 -4
  40. package/build/plugins/highcharts/types/widget.d.ts +4 -4
  41. package/build/plugins/indicator/__stories__/Indicator.stories.d.ts +2 -2
  42. package/build/plugins/indicator/renderer/IndicatorItem.d.ts +2 -2
  43. package/build/plugins/indicator/types.d.ts +2 -2
  44. package/build/plugins/shared/format-number/i18n/i18n.d.ts +1 -1
  45. package/build/plugins/shared/format-number/types.d.ts +2 -2
  46. package/build/plugins/yagr/__stories__/Yagr.stories.d.ts +3 -4
  47. package/build/plugins/yagr/renderer/tooltip/types.d.ts +4 -4
  48. package/build/plugins/yagr/renderer/utils.d.ts +1 -1
  49. package/build/plugins/yagr/types.d.ts +1 -1
  50. package/build/types/index.d.ts +12 -12
  51. package/build/types/misc.d.ts +1 -1
  52. package/package.json +13 -7
  53. package/CHANGELOG.md +0 -503
@@ -2,28 +2,28 @@ import React from 'react';
2
2
  import type { ChartKitWidget } from './widget';
3
3
  import { ChartKitError } from '../libs';
4
4
  export type { ChartKitHolidays } from './misc';
5
- export declare type ChartKitLang = 'ru' | 'en';
6
- export declare type ChartKitType = keyof ChartKitWidget;
7
- export declare type ChartKitRef = {
5
+ export type ChartKitLang = 'ru' | 'en';
6
+ export type ChartKitType = keyof ChartKitWidget;
7
+ export type ChartKitRef = {
8
8
  reflow: (details?: unknown) => void;
9
9
  };
10
- export declare type ChartKitWidgetRef = {
10
+ export type ChartKitWidgetRef = {
11
11
  reflow?: ChartKitRef['reflow'];
12
12
  };
13
- export declare type ChartKitOnLoadData<T extends ChartKitType> = {
13
+ export type ChartKitOnLoadData<T extends ChartKitType> = {
14
14
  widget?: ChartKitWidget[T]['widget'];
15
15
  widgetRendering?: number;
16
16
  };
17
- export declare type ChartKitOnRenderData = {
17
+ export type ChartKitOnRenderData = {
18
18
  renderTime?: number;
19
19
  };
20
- export declare type ChartKitOnChartLoad<T extends ChartKitType> = {
20
+ export type ChartKitOnChartLoad<T extends ChartKitType> = {
21
21
  widget?: ChartKitWidget[T]['widget'] | null;
22
22
  };
23
- export declare type ChartKitOnError = (data: {
23
+ export type ChartKitOnError = (data: {
24
24
  error: any;
25
25
  }) => void;
26
- export declare type ChartKitProps<T extends ChartKitType> = {
26
+ export type ChartKitProps<T extends ChartKitType> = {
27
27
  type: T;
28
28
  data: ChartKitWidget[T]['data'];
29
29
  id?: string;
@@ -42,14 +42,14 @@ export declare type ChartKitProps<T extends ChartKitType> = {
42
42
  } & {
43
43
  [key in keyof Omit<ChartKitWidget[T], 'data' | 'widget'>]: ChartKitWidget[T][key];
44
44
  };
45
- export declare type ChartKitPlugin = {
45
+ export type ChartKitPlugin = {
46
46
  type: ChartKitType;
47
47
  renderer: React.LazyExoticComponent<any>;
48
48
  };
49
- export declare type RenderErrorOpts = {
49
+ export type RenderErrorOpts = {
50
50
  message: string;
51
51
  error: ChartKitError | Error;
52
52
  resetError: () => void;
53
53
  };
54
- export declare type RenderError = (opts: RenderErrorOpts) => React.ReactNode;
54
+ export type RenderError = (opts: RenderErrorOpts) => React.ReactNode;
55
55
  export type { ChartKitWidget };
@@ -1,4 +1,4 @@
1
- export declare type ChartKitHolidays = {
1
+ export type ChartKitHolidays = {
2
2
  holiday: Record<string, Record<string, string>>;
3
3
  weekend: Record<string, Record<string, string>>;
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-ui/chartkit",
3
- "version": "3.0.0-beta.3",
3
+ "version": "3.0.0-beta.5",
4
4
  "description": "React component used to render charts based on any sources you need",
5
5
  "license": "MIT",
6
6
  "repository": "git@github.com:gravity-ui/ChartKit.git",
@@ -13,7 +13,7 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@gravity-ui/yagr": "^3.3.1",
16
+ "@gravity-ui/yagr": "^3.3.4",
17
17
  "bem-cn-lite": "^4.1.0",
18
18
  "highcharts": "^8.2.2",
19
19
  "highcharts-react-official": "^3.0.0",
@@ -21,16 +21,21 @@
21
21
  "react-split-pane": "^0.1.92"
22
22
  },
23
23
  "devDependencies": {
24
+ "@babel/preset-env": "^7.22.6",
25
+ "@babel/preset-react": "^7.22.5",
26
+ "@babel/preset-typescript": "^7.22.5",
24
27
  "@gravity-ui/eslint-config": "^1.0.2",
25
28
  "@gravity-ui/i18n": "^1.0.0",
26
29
  "@gravity-ui/prettier-config": "^1.0.1",
27
30
  "@gravity-ui/stylelint-config": "^1.0.1",
28
31
  "@gravity-ui/tsconfig": "^1.0.0",
29
32
  "@gravity-ui/uikit": "^4.2.0",
30
- "@storybook/addon-essentials": "^6.5.9",
31
- "@storybook/addon-knobs": "^6.4.0",
33
+ "@storybook/addon-essentials": "^7.0.26",
34
+ "@storybook/addon-knobs": "^7.0.2",
35
+ "@storybook/cli": "^7.0.26",
32
36
  "@storybook/preset-scss": "^1.0.3",
33
- "@storybook/react": "^6.5.9",
37
+ "@storybook/react": "^7.0.26",
38
+ "@storybook/react-webpack5": "^7.0.26",
34
39
  "@types/jest": "^28.1.3",
35
40
  "@types/lodash": "^4.14.177",
36
41
  "@types/node": "^18.0.0",
@@ -58,11 +63,12 @@
58
63
  "rimraf": "^3.0.2",
59
64
  "sass": "^1.56.2",
60
65
  "sass-loader": "^10.2.1",
66
+ "storybook": "^7.0.26",
61
67
  "style-loader": "^2.0.0",
62
68
  "stylelint": "^14.6.0",
63
69
  "ts-jest": "^28.0.5",
64
70
  "ts-node": "^10.2.1",
65
- "typescript": "^4.2.3"
71
+ "typescript": "^4.9.5"
66
72
  },
67
73
  "peerDependencies": {
68
74
  "@gravity-ui/uikit": "^4.0.0",
@@ -73,7 +79,7 @@
73
79
  "test": "jest",
74
80
  "test:watch": "jest --watchAll",
75
81
  "clean": "gulp clean",
76
- "start": "cross-env TS_NODE_PROJECT=.storybook/tsconfig.json start-storybook -p 7007",
82
+ "start": "storybook dev -p 7007",
77
83
  "build": "gulp",
78
84
  "lint:js": "eslint --quiet --ext .js,.jsx,.ts,.tsx .",
79
85
  "lint:styles": "stylelint '{styles,src}/**/*.scss' --quiet",
package/CHANGELOG.md DELETED
@@ -1,503 +0,0 @@
1
- # Changelog
2
-
3
- ## [2.13.0](https://github.com/gravity-ui/chartkit/compare/v2.12.0...v2.13.0) (2023-06-30)
4
-
5
-
6
- ### Features
7
-
8
- * **Yagr plugin:** update to v 2.2.6 ([#186](https://github.com/gravity-ui/chartkit/issues/186)) ([bddd692](https://github.com/gravity-ui/chartkit/commit/bddd6920742b398b35ce4ef6d8b78d87d50148db))
9
-
10
- ## [2.12.0](https://github.com/gravity-ui/chartkit/compare/v2.11.0...v2.12.0) (2023-06-30)
11
-
12
-
13
- ### Features
14
-
15
- * add renderPluginLoader property ([#184](https://github.com/gravity-ui/chartkit/issues/184)) ([3955d2f](https://github.com/gravity-ui/chartkit/commit/3955d2f1995fb204c16cda53e96b4eca50c2ef0e))
16
-
17
- ## [2.11.0](https://github.com/gravity-ui/chartkit/compare/v2.10.1...v2.11.0) (2023-06-20)
18
-
19
-
20
- ### Features
21
-
22
- * add renderError property ([#175](https://github.com/gravity-ui/chartkit/issues/175)) ([84c03a9](https://github.com/gravity-ui/chartkit/commit/84c03a9f8516e9fb846e25a920aa82b00c660a02))
23
-
24
-
25
- ### Bug Fixes
26
-
27
- * reset "No data" error on change data ([ac0da94](https://github.com/gravity-ui/chartkit/commit/ac0da94fd21ff558a739c00b8904645d5ba006ef))
28
-
29
- ## [2.10.1](https://github.com/gravity-ui/chartkit/compare/v2.10.0...v2.10.1) (2023-06-19)
30
-
31
-
32
- ### Bug Fixes
33
-
34
- * **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))
35
-
36
- ## [2.10.0](https://github.com/gravity-ui/chartkit/compare/v2.9.0...v2.10.0) (2023-06-05)
37
-
38
-
39
- ### Features
40
-
41
- * **Yagr:** update to v2.2.5 ([#173](https://github.com/gravity-ui/chartkit/issues/173)) ([c0e57b6](https://github.com/gravity-ui/chartkit/commit/c0e57b6e939d46984dff7835d503b509d9448200))
42
-
43
- ## [2.9.0](https://github.com/gravity-ui/chartkit/compare/v2.8.1...v2.9.0) (2023-05-31)
44
-
45
-
46
- ### Features
47
-
48
- * **Highcharts plugin:** add `tooltip.sort` configuration ([#170](https://github.com/gravity-ui/chartkit/issues/170)) ([0825a91](https://github.com/gravity-ui/chartkit/commit/0825a91155592d9e06dbdd452547a0c31b71c07a))
49
-
50
- ## [2.8.1](https://github.com/gravity-ui/chartkit/compare/v2.8.0...v2.8.1) (2023-05-30)
51
-
52
-
53
- ### Bug Fixes
54
-
55
- * **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))
56
-
57
- ## [2.8.0](https://github.com/gravity-ui/chartkit/compare/v2.7.2...v2.8.0) (2023-05-23)
58
-
59
-
60
- ### Features
61
-
62
- * **Highcharts plugin:** rework tooltip pinning api ([#166](https://github.com/gravity-ui/chartkit/issues/166)) ([9ca62e4](https://github.com/gravity-ui/chartkit/commit/9ca62e4d01d62f36de0c4866e0d21728ca2aa25c))
63
-
64
- ## [2.7.2](https://github.com/gravity-ui/chartkit/compare/v2.7.1...v2.7.2) (2023-05-17)
65
-
66
-
67
- ### Bug Fixes
68
-
69
- * **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))
70
-
71
- ## [2.7.1](https://github.com/gravity-ui/chartkit/compare/v2.7.0...v2.7.1) (2023-05-17)
72
-
73
-
74
- ### Bug Fixes
75
-
76
- * remove onSeriesClick due to it uselessness ([#162](https://github.com/gravity-ui/chartkit/issues/162)) ([ca993d6](https://github.com/gravity-ui/chartkit/commit/ca993d6987f9c0a4ade0c154eb25d99a6d7e0027))
77
-
78
- ## [2.7.0](https://github.com/gravity-ui/chartkit/compare/v2.6.0...v2.7.0) (2023-05-10)
79
-
80
-
81
- ### Features
82
-
83
- * **Highcharts plugin:** add config.onSeriesClick property ([#160](https://github.com/gravity-ui/chartkit/issues/160)) ([212ce4b](https://github.com/gravity-ui/chartkit/commit/212ce4b49693ef256ed2e46cb44d863a951020ac))
84
-
85
- ## [2.6.0](https://github.com/gravity-ui/chartkit/compare/v2.5.0...v2.6.0) (2023-05-04)
86
-
87
-
88
- ### Features
89
-
90
- * add React@18 as peer dependency ([#158](https://github.com/gravity-ui/chartkit/issues/158)) ([2991c11](https://github.com/gravity-ui/chartkit/commit/2991c1138781692451582e99d8f9c7eb51a8c9aa))
91
-
92
- ## [2.5.0](https://github.com/gravity-ui/chartkit/compare/v2.4.1...v2.5.0) (2023-05-03)
93
-
94
-
95
- ### Features
96
-
97
- * **Highcharts plugin:** add config.tooltip property ([#156](https://github.com/gravity-ui/chartkit/issues/156)) ([8a8229e](https://github.com/gravity-ui/chartkit/commit/8a8229e4ee8401a8cfce4d0689a047e830d1a5e9))
98
-
99
- ## [2.4.1](https://github.com/gravity-ui/chartkit/compare/v2.4.0...v2.4.1) (2023-04-19)
100
-
101
-
102
- ### Bug Fixes
103
-
104
- * **Highcharts plugin:** Replace deprecated event.path ([#153](https://github.com/gravity-ui/chartkit/issues/153)) ([23be4a9](https://github.com/gravity-ui/chartkit/commit/23be4a96479820a69534098100140cd9a3fad45a))
105
-
106
- ## [2.4.0](https://github.com/gravity-ui/chartkit/compare/v2.3.1...v2.4.0) (2023-04-13)
107
-
108
-
109
- ### Features
110
-
111
- * **Yagr:** update to v2.2.4 ([#150](https://github.com/gravity-ui/chartkit/issues/150)) ([7b7ab46](https://github.com/gravity-ui/chartkit/commit/7b7ab4632f6ece68dc05e1bec5949283e4307f88))
112
-
113
- ## [2.3.1](https://github.com/gravity-ui/chartkit/compare/v2.3.0...v2.3.1) (2023-04-12)
114
-
115
-
116
- ### Bug Fixes
117
-
118
- * **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))
119
-
120
- ## [2.3.0](https://github.com/gravity-ui/chartkit/compare/v2.2.2...v2.3.0) (2023-04-11)
121
-
122
-
123
- ### Features
124
-
125
- * **Indicator plugin:** add onRender ([#145](https://github.com/gravity-ui/chartkit/issues/145)) ([3a044c0](https://github.com/gravity-ui/chartkit/commit/3a044c08583cd96bd08e3fb29a89c06ca9a6be18))
126
- * **Indicator plugin:** add renderTime ([3a044c0](https://github.com/gravity-ui/chartkit/commit/3a044c08583cd96bd08e3fb29a89c06ca9a6be18))
127
-
128
- ## [2.2.2](https://github.com/gravity-ui/chartkit/compare/v2.2.1...v2.2.2) (2023-03-28)
129
-
130
-
131
- ### Bug Fixes
132
-
133
- * **Highcharts plugin:** fix legend item click ([#142](https://github.com/gravity-ui/chartkit/issues/142)) ([a64f1b9](https://github.com/gravity-ui/chartkit/commit/a64f1b962bec45bfd2568110c1c9050fc9d75807))
134
-
135
- ## [2.2.1](https://github.com/gravity-ui/chartkit/compare/v2.2.0...v2.2.1) (2023-03-27)
136
-
137
-
138
- ### Bug Fixes
139
-
140
- * **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))
141
-
142
- ## [2.2.0](https://github.com/gravity-ui/chartkit/compare/v2.1.0...v2.2.0) (2023-03-21)
143
-
144
-
145
- ### Features
146
-
147
- * **Higcharts plugin:** add type for manageTooltipConfig ([#139](https://github.com/gravity-ui/chartkit/issues/139)) ([f781cca](https://github.com/gravity-ui/chartkit/commit/f781cca112bb1e87607d24916aa38bf44fe2abf6))
148
-
149
-
150
- ### Bug Fixes
151
-
152
- * **Highcharts:** fix resetZoomButton styles ([#137](https://github.com/gravity-ui/chartkit/issues/137)) ([07f610e](https://github.com/gravity-ui/chartkit/commit/07f610e443f2c9a2543ac68bbff443112a1d650a))
153
-
154
- ## [2.1.0](https://github.com/gravity-ui/chartkit/compare/v2.0.0...v2.1.0) (2023-03-13)
155
-
156
-
157
- ### Features
158
-
159
- * **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))
160
-
161
- ## [2.0.0](https://github.com/gravity-ui/chartkit/compare/v1.6.7...v2.0.0) (2023-03-09)
162
-
163
-
164
- ### ⚠ BREAKING CHANGES
165
-
166
- * update uikit up to 4 ([#133](https://github.com/gravity-ui/chartkit/issues/133))
167
-
168
- ### Features
169
-
170
- * update uikit up to 4 ([#133](https://github.com/gravity-ui/chartkit/issues/133)) ([8ae0c8d](https://github.com/gravity-ui/chartkit/commit/8ae0c8d179273a448de8f670dfe1b3f2314c0523))
171
-
172
- ## [1.6.7](https://github.com/gravity-ui/chartkit/compare/v1.6.6...v1.6.7) (2023-02-21)
173
-
174
-
175
- ### Bug Fixes
176
-
177
- * 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))
178
-
179
- ## [1.6.6](https://github.com/gravity-ui/chartkit/compare/v1.6.5...v1.6.6) (2023-02-21)
180
-
181
-
182
- ### Bug Fixes
183
-
184
- * 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))
185
-
186
- ## [1.6.5](https://github.com/gravity-ui/chartkit/compare/v1.6.4...v1.6.5) (2023-02-10)
187
-
188
-
189
- ### Bug Fixes
190
-
191
- * **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))
192
-
193
- ## [1.6.4](https://github.com/gravity-ui/chartkit/compare/v1.6.3...v1.6.4) (2023-02-09)
194
-
195
-
196
- ### Bug Fixes
197
-
198
- * **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))
199
-
200
- ## [1.6.3](https://github.com/gravity-ui/chartkit/compare/v1.6.2...v1.6.3) (2023-02-08)
201
-
202
-
203
- ### Bug Fixes
204
-
205
- * **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))
206
-
207
- ## [1.6.2](https://github.com/gravity-ui/chartkit/compare/v1.6.1...v1.6.2) (2023-01-24)
208
-
209
-
210
- ### Bug Fixes
211
-
212
- * **Highcharts plugin:** fix tooltip behaviour ([#119](https://github.com/gravity-ui/chartkit/issues/119)) ([5dffcc3](https://github.com/gravity-ui/chartkit/commit/5dffcc3224b415a2e64fe331a4a72a4f90266ae2))
213
- * **Highcharts plugin:** fix tooltip behaviour for onChartLoad & onRender callbacks ([5dffcc3](https://github.com/gravity-ui/chartkit/commit/5dffcc3224b415a2e64fe331a4a72a4f90266ae2))
214
-
215
- ## [1.6.1](https://github.com/gravity-ui/chartkit/compare/v1.6.0...v1.6.1) (2023-01-24)
216
-
217
-
218
- ### Bug Fixes
219
-
220
- * add export type for onChartLoad & onRender ([#117](https://github.com/gravity-ui/chartkit/issues/117)) ([e8b4f58](https://github.com/gravity-ui/chartkit/commit/e8b4f586335581df82f13b3f476afb0316e6e598))
221
- * add types export ([e8b4f58](https://github.com/gravity-ui/chartkit/commit/e8b4f586335581df82f13b3f476afb0316e6e598))
222
-
223
- ## [1.6.0](https://github.com/gravity-ui/chartkit/compare/v1.5.2...v1.6.0) (2023-01-23)
224
-
225
-
226
- ### Features
227
-
228
- * add onRender & onChartLoad calbacks ([#111](https://github.com/gravity-ui/chartkit/issues/111)) ([f23c008](https://github.com/gravity-ui/chartkit/commit/f23c008c5c049c813e6704edb1654c90707d00af))
229
-
230
- ## [1.5.2](https://github.com/gravity-ui/chartkit/compare/v1.5.1...v1.5.2) (2022-12-20)
231
-
232
-
233
- ### Bug Fixes
234
-
235
- * **Highcharts plugin:** add widget rendering time ([#109](https://github.com/gravity-ui/chartkit/issues/109)) ([0db5c73](https://github.com/gravity-ui/chartkit/commit/0db5c737e4de588decb6cc191fa624db8b2119b4))
236
-
237
- ## [1.5.1](https://github.com/gravity-ui/chartkit/compare/v1.5.0...v1.5.1) (2022-12-20)
238
-
239
-
240
- ### Bug Fixes
241
-
242
- * **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))
243
-
244
- ## [1.5.0](https://github.com/gravity-ui/chartkit/compare/v1.4.3...v1.5.0) (2022-12-19)
245
-
246
-
247
- ### Features
248
-
249
- * 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))
250
-
251
- ## [1.4.3](https://github.com/gravity-ui/chartkit/compare/v1.4.2...v1.4.3) (2022-12-14)
252
-
253
-
254
- ### Bug Fixes
255
-
256
- * **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))
257
- * **Highcharts plugin:** remove tooltip lines sorting ([#103](https://github.com/gravity-ui/chartkit/issues/103)) ([5e57035](https://github.com/gravity-ui/chartkit/commit/5e57035b7c1d572d66926c48889e8b5905399592))
258
- * **Yagr plugin:** add core styles import ([#104](https://github.com/gravity-ui/chartkit/issues/104)) ([4de763d](https://github.com/gravity-ui/chartkit/commit/4de763d7f502f4bacf202beddeb0e5ef27381917))
259
-
260
- ## [1.4.2](https://github.com/gravity-ui/chartkit/compare/v1.4.1...v1.4.2) (2022-12-13)
261
-
262
-
263
- ### Bug Fixes
264
-
265
- * **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))
266
-
267
- ## [1.4.1](https://github.com/gravity-ui/chartkit/compare/v1.4.0...v1.4.1) (2022-12-12)
268
-
269
-
270
- ### Bug Fixes
271
-
272
- * 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))
273
-
274
- ## [1.4.0](https://github.com/gravity-ui/chartkit/compare/v1.3.0...v1.4.0) (2022-12-09)
275
-
276
-
277
- ### Features
278
-
279
- * update chartkit to new yagr ([#93](https://github.com/gravity-ui/chartkit/issues/93)) ([e89f0db](https://github.com/gravity-ui/chartkit/commit/e89f0db55fa792922b24ce23c562c35270de3722))
280
-
281
- ## [1.3.0](https://github.com/gravity-ui/chartkit/compare/v1.2.0...v1.3.0) (2022-12-09)
282
-
283
-
284
- ### Features
285
-
286
- * **Highcharts:** add CkHighchartsSeriesOptionsType type ([#92](https://github.com/gravity-ui/chartkit/issues/92)) ([36b9d75](https://github.com/gravity-ui/chartkit/commit/36b9d75779fdde4ef98e8de5db3fbb515dc44662))
287
-
288
-
289
- ### Bug Fixes
290
-
291
- * **Highcharts:** fix widget config type ([#89](https://github.com/gravity-ui/chartkit/issues/89)) ([988c074](https://github.com/gravity-ui/chartkit/commit/988c074ead25027e9d7e2c5ec0443c8d428ae35c))
292
-
293
- ## [1.2.0](https://github.com/gravity-ui/chartkit/compare/v1.1.0...v1.2.0) (2022-12-09)
294
-
295
-
296
- ### Features
297
-
298
- * update yagr to 2.1.0 ([#87](https://github.com/gravity-ui/chartkit/issues/87)) ([5dfd6d0](https://github.com/gravity-ui/chartkit/commit/5dfd6d0098729b4813f6a783457e40203e269272))
299
-
300
- ## [1.1.0](https://github.com/gravity-ui/chartkit/compare/v1.0.0...v1.1.0) (2022-12-08)
301
-
302
- ### Features
303
-
304
- - add export of all yagr lib types to yagr plugin
305
-
306
- ### Bug Fixes
307
-
308
- - fix config object merging in `useWidgetData` yagr plugin hook
309
-
310
- ## [1.0.0](https://github.com/gravity-ui/chartkit/compare/v0.13.0...v1.0.0) (2022-12-07)
311
-
312
- ### ⚠ BREAKING CHANGES
313
-
314
- - update Yagr to v2. Read more about [changes](https://github.com/yandex-cloud/yagr/blob/master/CHANGELOG.md#200-19-04-2022)
315
-
316
- ## [0.13.0](https://github.com/gravity-ui/chartkit/compare/v0.12.3...v0.13.0) (2022-12-05)
317
-
318
- ### Features
319
-
320
- - 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))
321
-
322
- ## [0.12.3](https://github.com/gravity-ui/chartkit/compare/v0.12.2...v0.12.3) (2022-12-01)
323
-
324
- ### Bug Fixes
325
-
326
- - **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))
327
-
328
- ## [0.12.2](https://github.com/gravity-ui/chartkit/compare/v0.12.1...v0.12.2) (2022-11-30)
329
-
330
- ### Bug Fixes
331
-
332
- - **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))
333
-
334
- ## [0.12.1](https://github.com/gravity-ui/chartkit/compare/v0.12.0...v0.12.1) (2022-11-22)
335
-
336
- ### Bug Fixes
337
-
338
- - **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))
339
-
340
- ## [0.12.0](https://github.com/gravity-ui/chartkit/compare/v0.11.1...v0.12.0) (2022-11-22)
341
-
342
- ### Features
343
-
344
- - add support border color setting ([defdcf7](https://github.com/gravity-ui/chartkit/commit/defdcf768d33fe11f9de8dc14a1e9561c034f6ea))
345
-
346
- ## [0.11.1](https://github.com/gravity-ui/chartkit/compare/v0.11.0...v0.11.1) (2022-11-21)
347
-
348
- ### Bug Fixes
349
-
350
- - **Highcharts plugin:** fix tooltip holidays handling ([#69](https://github.com/gravity-ui/chartkit/issues/69)) ([9bc3f8c](https://github.com/gravity-ui/chartkit/commit/9bc3f8c7a62d3b269626be87a46de1d8a6949f57))
351
-
352
- ## [0.11.0](https://github.com/gravity-ui/chartkit/compare/v0.10.1...v0.11.0) (2022-11-18)
353
-
354
- ### Features
355
-
356
- - types improvements ([#67](https://github.com/gravity-ui/chartkit/issues/67)) ([33b4f07](https://github.com/gravity-ui/chartkit/commit/33b4f07a24abdfde52005ddbbf17fb7a25817beb))
357
-
358
- ## [0.10.1](https://github.com/gravity-ui/chartkit/compare/v0.10.0...v0.10.1) (2022-11-18)
359
-
360
- ### Bug Fixes
361
-
362
- - **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))
363
-
364
- ## [0.10.0](https://github.com/gravity-ui/chartkit/compare/v0.9.1...v0.10.0) (2022-11-18)
365
-
366
- ### Features
367
-
368
- - add highcharts plugin ([#61](https://github.com/gravity-ui/chartkit/issues/61)) ([9329ede](https://github.com/gravity-ui/chartkit/commit/9329edeaba8c4ef84b1fc30bb7196ba350dc3abd))
369
-
370
- ### Bug Fixes
371
-
372
- - yagr & indicator types fixes ([#64](https://github.com/gravity-ui/chartkit/issues/64)) ([479c552](https://github.com/gravity-ui/chartkit/commit/479c552f5ce1890451f3f104fc8efb730f2baf67))
373
-
374
- ## [0.9.1](https://github.com/gravity-ui/chartkit/compare/v0.9.0...v0.9.1) (2022-11-14)
375
-
376
- ### Bug Fixes
377
-
378
- - fix yagr theme initialization ([#59](https://github.com/gravity-ui/chartkit/issues/59)) ([7247873](https://github.com/gravity-ui/chartkit/commit/724787380b8d81f6dfdaae1f6e5c1b806af32e3c))
379
-
380
- ## [0.9.0](https://github.com/gravity-ui/chartkit/compare/v0.8.0...v0.9.0) (2022-11-08)
381
-
382
- ### Features
383
-
384
- - add isMobile property ([#57](https://github.com/gravity-ui/chartkit/issues/57)) ([a2e87ed](https://github.com/gravity-ui/chartkit/commit/a2e87edf1d05705fb92c2571b5a71496c48d9215))
385
-
386
- ## [0.8.0](https://github.com/gravity-ui/chartkit/compare/v0.7.2...v0.8.0) (2022-10-04)
387
-
388
- ### Features
389
-
390
- - move to @gravity-ui/i18n ([#45](https://github.com/gravity-ui/chartkit/issues/45)) ([ad401d8](https://github.com/gravity-ui/chartkit/commit/ad401d85bf50ab4ceb0ae8a837c4b11cd36a4acd))
391
-
392
- ### Bug Fixes
393
-
394
- - add ChartKitOnError type export ([#54](https://github.com/gravity-ui/chartkit/issues/54)) ([7660be7](https://github.com/gravity-ui/chartkit/commit/7660be756cd3ec1057aa9fd4bb45226c9632e80f))
395
-
396
- ## [0.7.2](https://github.com/gravity-ui/chartkit/compare/v0.7.1...v0.7.2) (2022-10-03)
397
-
398
- ### Bug Fixes
399
-
400
- - package.json fixes ([#50](https://github.com/gravity-ui/chartkit/issues/50)) ([aca306d](https://github.com/gravity-ui/chartkit/commit/aca306dc8872951a48c1db0362ae1912138d72ed))
401
-
402
- ## [0.7.1](https://github.com/gravity-ui/chartkit/compare/v0.7.0...v0.7.1) (2022-10-03)
403
-
404
- ### Bug Fixes
405
-
406
- - move to gravity-ui configs ([#48](https://github.com/gravity-ui/chartkit/issues/48)) ([620587b](https://github.com/gravity-ui/chartkit/commit/620587b41febade698f12e67506aab683934e7b3))
407
-
408
- ## [0.7.0](https://github.com/yandex-cloud/chartkit/compare/v0.6.0...v0.7.0) (2022-10-01)
409
-
410
- ### Features
411
-
412
- - 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))
413
-
414
- ## [0.6.0](https://github.com/yandex-cloud/chartkit/compare/v0.5.4...v0.6.0) (2022-08-12)
415
-
416
- ### Features
417
-
418
- - remove uikit css variables proxing ([#43](https://github.com/yandex-cloud/chartkit/issues/43)) ([4d5131e](https://github.com/yandex-cloud/chartkit/commit/4d5131e0d77270e44bef94f0ba05c9fc5c317704))
419
-
420
- ## [0.5.4](https://github.com/yandex-cloud/chartkit/compare/v0.5.3...v0.5.4) (2022-08-08)
421
-
422
- ### Bug Fixes
423
-
424
- - add Yagr type export ([#42](https://github.com/yandex-cloud/chartkit/issues/42)) ([a8b9475](https://github.com/yandex-cloud/chartkit/commit/a8b94755bbb0d42652db3e4266e0ca04481ad99f))
425
- - npm vulnerabilities fixes ([#40](https://github.com/yandex-cloud/chartkit/issues/40)) ([1509bcf](https://github.com/yandex-cloud/chartkit/commit/1509bcf87a50d9281c3ea47074c694db429ad5d4))
426
-
427
- ## [0.5.3](https://github.com/yandex-cloud/chartkit/compare/v0.5.2...v0.5.3) (2022-08-01)
428
-
429
- ### Bug Fixes
430
-
431
- - dev and peer dependencies fixes ([#36](https://github.com/yandex-cloud/chartkit/issues/36)) ([faeccd9](https://github.com/yandex-cloud/chartkit/commit/faeccd9aca9b84ee02edeadef3db2d2abeedb143))
432
-
433
- ## [0.5.2](https://github.com/yandex-cloud/chartkit/compare/v0.5.1...v0.5.2) (2022-07-28)
434
-
435
- ### Bug Fixes
436
-
437
- - Indicator onLoad invocation fixes ([#34](https://github.com/yandex-cloud/chartkit/issues/34)) ([95fafc3](https://github.com/yandex-cloud/chartkit/commit/95fafc381bbafe47173f802310a67e7ced243d80))
438
-
439
- ## [0.5.1](https://github.com/yandex-cloud/chartkit/compare/v0.5.0...v0.5.1) (2022-07-27)
440
-
441
- ### Bug Fixes
442
-
443
- - error handling fixes ([#31](https://github.com/yandex-cloud/chartkit/issues/31)) ([e20fb9d](https://github.com/yandex-cloud/chartkit/commit/e20fb9df1d811efa08a8a68110b1a6819a384af4))
444
-
445
- ## [0.5.0](https://github.com/yandex-cloud/chartkit/compare/v0.4.0...v0.5.0) (2022-07-25)
446
-
447
- ### Features
448
-
449
- - add chartkit-error ([#28](https://github.com/yandex-cloud/chartkit/issues/28)) ([8342073](https://github.com/yandex-cloud/chartkit/commit/83420738dd431fa1ce2b96f18631f84ca36ed4af))
450
- - add indicator chart ([#30](https://github.com/yandex-cloud/chartkit/issues/30)) ([4f465de](https://github.com/yandex-cloud/chartkit/commit/4f465de3afdee721f96868d975f3aee647177f76))
451
- - change error handling ([#29](https://github.com/yandex-cloud/chartkit/issues/29)) ([993958a](https://github.com/yandex-cloud/chartkit/commit/993958a68e1c4376e037bd006d6b19f013b58cfb))
452
-
453
- ### Bug Fixes
454
-
455
- - remove react-dom from peer dependencies ([#26](https://github.com/yandex-cloud/chartkit/issues/26)) ([22b6525](https://github.com/yandex-cloud/chartkit/commit/22b6525c767104e56cc51cf5dee5340253f7c080))
456
-
457
- ## [0.4.0](https://github.com/yandex-cloud/chartkit/compare/v0.3.1...v0.4.0) (2022-07-18)
458
-
459
- ### Features
460
-
461
- - add onError property ([#24](https://github.com/yandex-cloud/chartkit/issues/24)) ([0b51f19](https://github.com/yandex-cloud/chartkit/commit/0b51f195612cb80ab8e40b5d115eb7650f986888))
462
-
463
- ## [0.3.1](https://github.com/yandex-cloud/chartkit/compare/v0.3.0...v0.3.1) (2022-07-14)
464
-
465
- ### Bug Fixes
466
-
467
- - add test for settings ([#21](https://github.com/yandex-cloud/chartkit/issues/21)) ([b848503](https://github.com/yandex-cloud/chartkit/commit/b8485032d9ab14edda0a8f193f9174e3a6c687bf))
468
- - build task fixes ([#23](https://github.com/yandex-cloud/chartkit/issues/23)) ([2f13233](https://github.com/yandex-cloud/chartkit/commit/2f13233005d8fe7d10d496464ec3aed0a9ea5743))
469
-
470
- ## [0.3.0](https://github.com/yandex-cloud/chartkit/compare/v0.2.0...v0.3.0) (2022-07-13)
471
-
472
- ### Features
473
-
474
- - add root types export ([#18](https://github.com/yandex-cloud/chartkit/issues/18)) ([06265a1](https://github.com/yandex-cloud/chartkit/commit/06265a10f518836ac63f2b847e73dd19b3e2e8ca))
475
-
476
- ## [0.2.0](https://github.com/yandex-cloud/chartkit/compare/v0.1.1...v0.2.0) (2022-07-11)
477
-
478
- ### Features
479
-
480
- - add cn lib ([#10](https://github.com/yandex-cloud/chartkit/issues/10)) ([796bdda](https://github.com/yandex-cloud/chartkit/commit/796bdda22fbf69ea8fc37965486e358ea3779a7e))
481
- - add i18n ([#13](https://github.com/yandex-cloud/chartkit/issues/13)) ([3f0204b](https://github.com/yandex-cloud/chartkit/commit/3f0204bb949aeb596632b3479d7e5ee130d91225))
482
- - add reflow handler ([#15](https://github.com/yandex-cloud/chartkit/issues/15)) ([80210af](https://github.com/yandex-cloud/chartkit/commit/80210af775ca7476f107f6ecc2ae9983baa9a8e3))
483
- - add yagr plugin types export ([#17](https://github.com/yandex-cloud/chartkit/issues/17)) ([6e4cf1d](https://github.com/yandex-cloud/chartkit/commit/6e4cf1dc5cc584a9bda99b39122f489ed35f90e2))
484
- - change lib structure ([#7](https://github.com/yandex-cloud/chartkit/issues/7)) ([dfb6ed8](https://github.com/yandex-cloud/chartkit/commit/dfb6ed839fd49a13006e75bca77abfd43849653b))
485
-
486
- ### Bug Fixes
487
-
488
- - change cn workflow ([#12](https://github.com/yandex-cloud/chartkit/issues/12)) ([aba5148](https://github.com/yandex-cloud/chartkit/commit/aba5148237aa0dd0bfd89744c77e30ebbcbcb90e))
489
- - downgrade i18n to v0.5.0 ([#16](https://github.com/yandex-cloud/chartkit/issues/16)) ([454985a](https://github.com/yandex-cloud/chartkit/commit/454985a6c339775ebc0a96d77a20792b31b305c7))
490
- - move all storybook decorators into one ([#14](https://github.com/yandex-cloud/chartkit/issues/14)) ([de1e8e9](https://github.com/yandex-cloud/chartkit/commit/de1e8e90325142e41ece8edc785119440b49fa0c))
491
-
492
- ### [0.1.1](https://www.github.com/yandex-cloud/ChartKit/compare/v0.1.0...v0.1.1) (2022-02-17)
493
-
494
- ### Bug Fixes
495
-
496
- - add publishConfig ([5cfdfff](https://www.github.com/yandex-cloud/ChartKit/commit/5cfdfffbdcafb8baeb05338ef07dd3a602c51797))
497
-
498
- ## 0.1.0 (2022-02-17)
499
-
500
- ### Bug Fixes
501
-
502
- - init ([2804dac](https://www.github.com/yandex-cloud/ChartKit/commit/2804dacfd0f11e15cda6a84ca22172bf2d74b532))
503
- - init ([4b747d4](https://www.github.com/yandex-cloud/ChartKit/commit/4b747d409122fc4ae330040e75e273ee9a602bcf))