@carbon/charts 0.32.12 → 0.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +322 -163
- package/README.md +18 -8
- package/axis-chart.js +20 -20
- package/axis-chart.js.map +1 -1
- package/build/demo/data/bar.d.ts +20 -0
- package/build/demo/data/line.d.ts +29 -0
- package/build/src/interfaces/charts.d.ts +5 -0
- package/build/src/model.d.ts +1 -0
- package/build/src/tools.d.ts +7 -7
- package/bundle.js +1 -1
- package/charts/area-stacked.js +3 -3
- package/charts/area-stacked.js.map +1 -1
- package/charts/area.js +3 -3
- package/charts/area.js.map +1 -1
- package/charts/bar-grouped.js +3 -3
- package/charts/bar-grouped.js.map +1 -1
- package/charts/bar-simple.js +3 -3
- package/charts/bar-simple.js.map +1 -1
- package/charts/bar-stacked.js +3 -3
- package/charts/bar-stacked.js.map +1 -1
- package/charts/bubble.js +3 -3
- package/charts/bubble.js.map +1 -1
- package/charts/donut.js +3 -3
- package/charts/donut.js.map +1 -1
- package/charts/gauge.js.map +1 -1
- package/charts/line.js +3 -3
- package/charts/line.js.map +1 -1
- package/charts/pie.js +3 -3
- package/charts/pie.js.map +1 -1
- package/charts/radar.js +1 -1
- package/charts/radar.js.map +1 -1
- package/charts/scatter.js +3 -3
- package/charts/scatter.js.map +1 -1
- package/components/axes/axis.js +25 -23
- package/components/axes/axis.js.map +1 -1
- package/components/axes/grid.js +1 -1
- package/components/axes/grid.js.map +1 -1
- package/components/axes/ruler.js +2 -2
- package/components/axes/ruler.js.map +1 -1
- package/components/axes/two-dimensional-axes.js +3 -3
- package/components/axes/two-dimensional-axes.js.map +1 -1
- package/components/axes/zero-line.js +1 -1
- package/components/axes/zero-line.js.map +1 -1
- package/components/essentials/legend.js +20 -11
- package/components/essentials/legend.js.map +1 -1
- package/components/essentials/threshold.js +9 -9
- package/components/essentials/threshold.js.map +1 -1
- package/components/essentials/title.js +2 -2
- package/components/essentials/title.js.map +1 -1
- package/components/essentials/tooltip-bar.js +7 -6
- package/components/essentials/tooltip-bar.js.map +1 -1
- package/components/essentials/tooltip.js +7 -7
- package/components/essentials/tooltip.js.map +1 -1
- package/components/graphs/area-stacked.js +1 -3
- package/components/graphs/area-stacked.js.map +1 -1
- package/components/graphs/bar-grouped.js +7 -7
- package/components/graphs/bar-grouped.js.map +1 -1
- package/components/graphs/bar-simple.js +6 -6
- package/components/graphs/bar-simple.js.map +1 -1
- package/components/graphs/bar-stacked.js +6 -6
- package/components/graphs/bar-stacked.js.map +1 -1
- package/components/graphs/gauge.js +4 -3
- package/components/graphs/gauge.js.map +1 -1
- package/components/graphs/line.js +1 -3
- package/components/graphs/line.js.map +1 -1
- package/components/graphs/pie.js +12 -12
- package/components/graphs/pie.js.map +1 -1
- package/components/graphs/radar.js +11 -11
- package/components/graphs/radar.js.map +1 -1
- package/components/graphs/scatter-stacked.js +1 -3
- package/components/graphs/scatter-stacked.js.map +1 -1
- package/components/graphs/scatter.js +6 -8
- package/components/graphs/scatter.js.map +1 -1
- package/components/graphs/skeleton.js +3 -3
- package/components/graphs/skeleton.js.map +1 -1
- package/components/layout/layout.js +10 -4
- package/components/layout/layout.js.map +1 -1
- package/configuration.js +14 -9
- package/configuration.js.map +1 -1
- package/demo/create-codesandbox.js +19 -19
- package/demo/create-codesandbox.js.map +1 -1
- package/demo/data/bar.d.ts +20 -0
- package/demo/data/bar.js +139 -110
- package/demo/data/bar.js.map +1 -1
- package/demo/data/bubble.js +29 -29
- package/demo/data/bubble.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/index.js +15 -5
- package/demo/data/index.js.map +1 -1
- package/demo/data/line.d.ts +29 -0
- package/demo/data/line.js +122 -60
- package/demo/data/line.js.map +1 -1
- package/demo/data/pie.js +5 -5
- package/demo/data/pie.js.map +1 -1
- package/demo/data/radar.js +12 -12
- package/demo/data/radar.js.map +1 -1
- package/demo/data/scatter.js +48 -32
- package/demo/data/scatter.js.map +1 -1
- package/demo/data/step.js +6 -6
- package/demo/data/step.js.map +1 -1
- package/demo/data/time-series-axis.js +107 -107
- package/demo/data/time-series-axis.js.map +1 -1
- package/demo/tsconfig.tsbuildinfo +18 -18
- package/interfaces/a11y.js.map +1 -1
- package/interfaces/charts.d.ts +5 -0
- package/interfaces/charts.js.map +1 -1
- package/interfaces/enums.js.map +1 -1
- package/interfaces/events.js.map +1 -1
- package/model.d.ts +1 -0
- package/model.js +47 -6
- package/model.js.map +1 -1
- package/package.json +1 -1
- package/polyfills.js +1 -1
- package/polyfills.js.map +1 -1
- package/services/angle-utils.js +8 -8
- package/services/angle-utils.js.map +1 -1
- package/services/colorPalettes.js +2 -2
- package/services/colorPalettes.js.map +1 -1
- package/services/colors.js +1 -1
- package/services/colors.js.map +1 -1
- package/services/curves.js +2 -2
- package/services/curves.js.map +1 -1
- package/services/essentials/dom-utils.js +6 -6
- package/services/essentials/dom-utils.js.map +1 -1
- package/services/essentials/events.js +1 -1
- package/services/essentials/events.js.map +1 -1
- package/services/scales-cartesian.js +17 -17
- package/services/scales-cartesian.js.map +1 -1
- package/services/time-series.js +2 -2
- package/services/time-series.js.map +1 -1
- package/tools.d.ts +7 -7
- package/tools.js +16 -14
- package/tools.js.map +1 -1
- package/tsconfig.tsbuildinfo +54 -54
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# [0.33.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.12...v0.33.0) (2020-07-07)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @carbon/charts
|
|
9
9
|
|
|
@@ -11,75 +11,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
# Change Log
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
17
18
|
|
|
19
|
+
## [0.32.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.11...v0.32.12) (2020-06-26)
|
|
18
20
|
|
|
21
|
+
**Note:** Version bump only for package @carbon/charts
|
|
19
22
|
|
|
23
|
+
## [0.32.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.10...v0.32.11) (2020-06-24)
|
|
20
24
|
|
|
25
|
+
**Note:** Version bump only for package @carbon/charts
|
|
21
26
|
|
|
22
27
|
## [0.32.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.9...v0.32.10) (2020-06-24)
|
|
23
28
|
|
|
24
|
-
|
|
25
29
|
### Bug Fixes
|
|
26
30
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
- **core:** fix gauge charts without a delta number
|
|
32
|
+
([#680](https://github.com/carbon-design-system/carbon-charts/issues/680))
|
|
33
|
+
([f65a084](https://github.com/carbon-design-system/carbon-charts/commit/f65a084bb66f1e8241fdbd6b101daf98d059d548))
|
|
32
34
|
|
|
33
35
|
## [0.32.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.8...v0.32.9) (2020-06-23)
|
|
34
36
|
|
|
35
37
|
**Note:** Version bump only for package @carbon/charts
|
|
36
38
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
39
|
## [0.32.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.7...v0.32.8) (2020-06-19)
|
|
42
40
|
|
|
43
41
|
**Note:** Version bump only for package @carbon/charts
|
|
44
42
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
43
|
## [0.32.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.6...v0.32.7) (2020-06-16)
|
|
50
44
|
|
|
51
45
|
**Note:** Version bump only for package @carbon/charts
|
|
52
46
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
47
|
## [0.32.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.5...v0.32.6) (2020-06-12)
|
|
58
48
|
|
|
59
49
|
**Note:** Version bump only for package @carbon/charts
|
|
60
50
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
51
|
## [0.32.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.4...v0.32.5) (2020-06-11)
|
|
66
52
|
|
|
67
53
|
**Note:** Version bump only for package @carbon/charts
|
|
68
54
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
55
|
## [0.32.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.3...v0.32.4) (2020-06-10)
|
|
74
56
|
|
|
75
|
-
|
|
76
57
|
### Bug Fixes
|
|
77
58
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
59
|
+
- update tslint and prettier options
|
|
60
|
+
([#661](https://github.com/carbon-design-system/carbon-charts/issues/661))
|
|
61
|
+
([ebc53d9](https://github.com/carbon-design-system/carbon-charts/commit/ebc53d9f4caea047f656ae98075b9c8ca307b280))
|
|
83
62
|
|
|
84
63
|
## [0.32.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.2...v0.32.3) (2020-06-08)
|
|
85
64
|
|
|
@@ -89,27 +68,34 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
89
68
|
|
|
90
69
|
### Bug Fixes
|
|
91
70
|
|
|
92
|
-
- **core, angular, react, vue, svelte:** fix scatter graph data updates
|
|
71
|
+
- **core, angular, react, vue, svelte:** fix scatter graph data updates
|
|
72
|
+
([#654](https://github.com/carbon-design-system/carbon-charts/issues/654))
|
|
73
|
+
([673d627](https://github.com/carbon-design-system/carbon-charts/commit/673d627f47274b9815ef94e4a48bb25485e1b9a3))
|
|
93
74
|
|
|
94
75
|
## [0.32.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.0...v0.32.1) (2020-06-03)
|
|
95
76
|
|
|
96
77
|
### Bug Fixes
|
|
97
78
|
|
|
98
|
-
- fix missing title option in charts interface
|
|
79
|
+
- fix missing title option in charts interface
|
|
80
|
+
([b74d658](https://github.com/carbon-design-system/carbon-charts/commit/b74d6582277632c8a2a1f460f3ce73aadd40e500))
|
|
99
81
|
|
|
100
82
|
# [0.32.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.24...v0.32.0) (2020-05-29)
|
|
101
83
|
|
|
102
84
|
### Bug Fixes
|
|
103
85
|
|
|
104
|
-
- **core:** threshold - support non JS-date values
|
|
105
|
-
|
|
86
|
+
- **core:** threshold - support non JS-date values
|
|
87
|
+
([a132497](https://github.com/carbon-design-system/carbon-charts/commit/a1324972fa5266151b490cb7eeed92a92da5b2c4))
|
|
88
|
+
- **svelte:** copy svelte source to dist/src
|
|
89
|
+
([492a504](https://github.com/carbon-design-system/carbon-charts/commit/492a50470d2b64793bd2c67c4115bb2732bc44f7))
|
|
106
90
|
|
|
107
91
|
# [0.31.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.24...v0.31.0) (2020-05-29)
|
|
108
92
|
|
|
109
93
|
### Bug Fixes
|
|
110
94
|
|
|
111
|
-
- **core:** threshold - support non JS-date values
|
|
112
|
-
|
|
95
|
+
- **core:** threshold - support non JS-date values
|
|
96
|
+
([a132497](https://github.com/carbon-design-system/carbon-charts/commit/a1324972fa5266151b490cb7eeed92a92da5b2c4))
|
|
97
|
+
- **svelte:** copy svelte source to dist/src
|
|
98
|
+
([492a504](https://github.com/carbon-design-system/carbon-charts/commit/492a50470d2b64793bd2c67c4115bb2732bc44f7))
|
|
113
99
|
|
|
114
100
|
## [0.30.24](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.23...v0.30.24) (2020-05-15)
|
|
115
101
|
|
|
@@ -155,7 +141,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
155
141
|
|
|
156
142
|
### Bug Fixes
|
|
157
143
|
|
|
158
|
-
- **core:** Support for Horizontal Line and Scatter Chart
|
|
144
|
+
- **core:** Support for Horizontal Line and Scatter Chart
|
|
145
|
+
([28b571f](https://github.com/carbon-design-system/carbon-charts/commit/28b571fa4565de5b81a5a178776eb701a88bfe91))
|
|
159
146
|
|
|
160
147
|
## [0.30.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.12...v0.30.13) (2020-04-20)
|
|
161
148
|
|
|
@@ -165,7 +152,9 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
165
152
|
|
|
166
153
|
### Bug Fixes
|
|
167
154
|
|
|
168
|
-
- **core:** fix backwards compatibility for pie/donut
|
|
155
|
+
- **core:** fix backwards compatibility for pie/donut
|
|
156
|
+
([#576](https://github.com/carbon-design-system/carbon-charts/issues/576))
|
|
157
|
+
([aed1a4d](https://github.com/carbon-design-system/carbon-charts/commit/aed1a4dbb2d5ff8f85ac29b69b32c1035a326071))
|
|
169
158
|
|
|
170
159
|
## [0.30.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.10...v0.30.11) (2020-04-15)
|
|
171
160
|
|
|
@@ -175,13 +164,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
175
164
|
|
|
176
165
|
### Bug Fixes
|
|
177
166
|
|
|
178
|
-
- **core:** title string contains html ascii characters
|
|
167
|
+
- **core:** title string contains html ascii characters
|
|
168
|
+
([#547](https://github.com/carbon-design-system/carbon-charts/issues/547))
|
|
169
|
+
([1a6b646](https://github.com/carbon-design-system/carbon-charts/commit/1a6b6463f576c1ba297883e734a4a953e4a22829))
|
|
179
170
|
|
|
180
171
|
## [0.30.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.8...v0.30.9) (2020-04-09)
|
|
181
172
|
|
|
182
173
|
### Bug Fixes
|
|
183
174
|
|
|
184
|
-
- **bar-stacked:** render 0 value bars
|
|
175
|
+
- **bar-stacked:** render 0 value bars
|
|
176
|
+
([425e11d](https://github.com/carbon-design-system/carbon-charts/commit/425e11d9dacb8bbaf9740759754eab1f0aa45843))
|
|
185
177
|
|
|
186
178
|
## [0.30.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.7...v0.30.8) (2020-04-03)
|
|
187
179
|
|
|
@@ -191,7 +183,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
191
183
|
|
|
192
184
|
### Bug Fixes
|
|
193
185
|
|
|
194
|
-
- **core:** update import path carbon-components
|
|
186
|
+
- **core:** update import path carbon-components
|
|
187
|
+
([e9fca73](https://github.com/carbon-design-system/carbon-charts/commit/e9fca73cd3768b1b85247a2798908c26da99216b)),
|
|
188
|
+
closes
|
|
189
|
+
[#546](https://github.com/carbon-design-system/carbon-charts/issues/546)
|
|
195
190
|
|
|
196
191
|
## [0.30.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.5...v0.30.6) (2020-03-30)
|
|
197
192
|
|
|
@@ -221,12 +216,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
221
216
|
|
|
222
217
|
### Bug Fixes
|
|
223
218
|
|
|
224
|
-
- **core:** fix default axes creation logic
|
|
219
|
+
- **core:** fix default axes creation logic
|
|
220
|
+
([e4fb861](https://github.com/carbon-design-system/carbon-charts/commit/e4fb86185f04ff42cbe7dc003c05556586f6c518))
|
|
225
221
|
|
|
226
222
|
### Features
|
|
227
223
|
|
|
228
|
-
- **core:** Add configuration option to not include 0 on axes
|
|
229
|
-
|
|
224
|
+
- **core:** Add configuration option to not include 0 on axes
|
|
225
|
+
([44d51de](https://github.com/carbon-design-system/carbon-charts/commit/44d51ded6af78d57a848d68e093fe69858405594))
|
|
226
|
+
- **core:** Axes configuration options defaultable, Add option to not include
|
|
227
|
+
0 on axes
|
|
228
|
+
([03969c3](https://github.com/carbon-design-system/carbon-charts/commit/03969c319248064cf1c1ef6eb79ec534aa04c972))
|
|
230
229
|
|
|
231
230
|
## [0.29.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.7...v0.29.8) (2020-03-03)
|
|
232
231
|
|
|
@@ -248,13 +247,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
248
247
|
|
|
249
248
|
### Bug Fixes
|
|
250
249
|
|
|
251
|
-
- **core:** Tools.getProperty did return 'null' for falsy values, now returns
|
|
250
|
+
- **core:** Tools.getProperty did return 'null' for falsy values, now returns
|
|
251
|
+
the actual values
|
|
252
|
+
([3b78c3a](https://github.com/carbon-design-system/carbon-charts/commit/3b78c3a27d4551e7d7b51f911ea2f7e0f155ef42))
|
|
252
253
|
|
|
253
254
|
## [0.29.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.2...v0.29.3) (2020-02-20)
|
|
254
255
|
|
|
255
256
|
### Bug Fixes
|
|
256
257
|
|
|
257
|
-
- **build:** fix bundle output for core
|
|
258
|
+
- **build:** fix bundle output for core
|
|
259
|
+
([4d3d6b4](https://github.com/carbon-design-system/carbon-charts/commit/4d3d6b450fe54b55479aeaffc3706b28d926fffa))
|
|
258
260
|
|
|
259
261
|
## [0.29.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.1...v0.29.2) (2020-02-18)
|
|
260
262
|
|
|
@@ -268,22 +270,35 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
268
270
|
|
|
269
271
|
### Bug Fixes
|
|
270
272
|
|
|
271
|
-
- **bar:** tooltip to render bar should provide original datapoint
|
|
272
|
-
|
|
273
|
-
- **
|
|
274
|
-
|
|
275
|
-
- **
|
|
276
|
-
|
|
277
|
-
- **
|
|
278
|
-
|
|
279
|
-
- **
|
|
280
|
-
|
|
273
|
+
- **bar:** tooltip to render bar should provide original datapoint
|
|
274
|
+
([ed04f98](https://github.com/carbon-design-system/carbon-charts/commit/ed04f98891a783d8d5bbc77f9dfdb8d1ed8a46b1))
|
|
275
|
+
- **charts:** simplify the interface to match
|
|
276
|
+
([96da97b](https://github.com/carbon-design-system/carbon-charts/commit/96da97b59c2e22cb661b9297f1cb4ace9bb8ec9e))
|
|
277
|
+
- **line:** remove console.logs
|
|
278
|
+
([5e0413f](https://github.com/carbon-design-system/carbon-charts/commit/5e0413f6c77ae17f74818c04ed2bdf82f386fa58))
|
|
279
|
+
- **lint:** fix linting errors with format
|
|
280
|
+
([04cdefd](https://github.com/carbon-design-system/carbon-charts/commit/04cdefda021ef1dee948231e8713481b9439f287))
|
|
281
|
+
- **scatter:** custom point colors demo
|
|
282
|
+
([f367f83](https://github.com/carbon-design-system/carbon-charts/commit/f367f8337df8b45811afbc3eee0a3a6d3b6f8bcc))
|
|
283
|
+
- **scatter:** simplify the callback parameters
|
|
284
|
+
([c541e8a](https://github.com/carbon-design-system/carbon-charts/commit/c541e8a4a83d026bb5b9c28afe39f749064b3b24))
|
|
285
|
+
- **styles:** don't import and use carbon themes in styles.scss
|
|
286
|
+
([1da8b3e](https://github.com/carbon-design-system/carbon-charts/commit/1da8b3e2ba770c06dc74fe2bf08393e3d6b6778c))
|
|
287
|
+
- **tooltip:** need to pass the datum along with the tooltip calls
|
|
288
|
+
([3bd7bfc](https://github.com/carbon-design-system/carbon-charts/commit/3bd7bfc1d435cb4ba3636361cdbbfe16de10d9d5))
|
|
289
|
+
- **tooltip:** stroke color should always be default
|
|
290
|
+
([b3b6812](https://github.com/carbon-design-system/carbon-charts/commit/b3b6812d9fac5964ae50053332840be8d1b7246f))
|
|
291
|
+
- **tooltip:** use original line color in the tooltip
|
|
292
|
+
([f42d245](https://github.com/carbon-design-system/carbon-charts/commit/f42d2458bdd104898f79d1b7103bcd055bdb1cdf))
|
|
281
293
|
|
|
282
294
|
### Features
|
|
283
295
|
|
|
284
|
-
- **core:** parse non JS date objects within the model
|
|
285
|
-
|
|
286
|
-
- **scatter:**
|
|
296
|
+
- **core:** parse non JS date objects within the model
|
|
297
|
+
([a410fa4](https://github.com/carbon-design-system/carbon-charts/commit/a410fa415fb967ef0529495b300a0327cc4d474b))
|
|
298
|
+
- **scatter:** add getIsFilled to model
|
|
299
|
+
([a160159](https://github.com/carbon-design-system/carbon-charts/commit/a160159ee0fa188ce174ef36f022ad44caf77aeb))
|
|
300
|
+
- **scatter:** enhance custom stroke and fill colors
|
|
301
|
+
([64cfbb6](https://github.com/carbon-design-system/carbon-charts/commit/64cfbb657c6089ab75cf132f09a49d5da75d4c4f))
|
|
287
302
|
|
|
288
303
|
## [0.28.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.28.0...v0.28.1) (2020-01-30)
|
|
289
304
|
|
|
@@ -293,36 +308,50 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
293
308
|
|
|
294
309
|
### Features
|
|
295
310
|
|
|
296
|
-
- **core:** add support for horizontal bar charts
|
|
311
|
+
- **core:** add support for horizontal bar charts
|
|
312
|
+
([#415](https://github.com/carbon-design-system/carbon-charts/issues/415))
|
|
313
|
+
([6a480f0](https://github.com/carbon-design-system/carbon-charts/commit/6a480f0))
|
|
297
314
|
|
|
298
315
|
# [0.27.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.26.1...v0.27.0) (2020-01-20)
|
|
299
316
|
|
|
300
317
|
### Bug Fixes
|
|
301
318
|
|
|
302
|
-
- **chart:** update isLegendEnabled instead of isEnabled
|
|
303
|
-
|
|
304
|
-
- **
|
|
319
|
+
- **chart:** update isLegendEnabled instead of isEnabled
|
|
320
|
+
([d413a8c](https://github.com/carbon-design-system/carbon-charts/commit/d413a8c))
|
|
321
|
+
- **enabled:** rename visible to enabled
|
|
322
|
+
([ac4862f](https://github.com/carbon-design-system/carbon-charts/commit/ac4862f))
|
|
323
|
+
- **lint:** whitespace tslint issue
|
|
324
|
+
([53216f5](https://github.com/carbon-design-system/carbon-charts/commit/53216f5))
|
|
305
325
|
|
|
306
326
|
### Features
|
|
307
327
|
|
|
308
|
-
- **chart:** legend.visible = false to hide the legend
|
|
328
|
+
- **chart:** legend.visible = false to hide the legend
|
|
329
|
+
([6461128](https://github.com/carbon-design-system/carbon-charts/commit/6461128))
|
|
309
330
|
|
|
310
331
|
## [0.26.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.26.0...v0.26.1) (2020-01-20)
|
|
311
332
|
|
|
312
333
|
### Bug Fixes
|
|
313
334
|
|
|
314
|
-
- **axis:** better support small time scales
|
|
315
|
-
|
|
316
|
-
- **axis:** fix
|
|
317
|
-
|
|
318
|
-
- **
|
|
319
|
-
|
|
335
|
+
- **axis:** better support small time scales
|
|
336
|
+
([8cfa595](https://github.com/carbon-design-system/carbon-charts/commit/8cfa595))
|
|
337
|
+
- **axis:** fix lint issue
|
|
338
|
+
([debeed9](https://github.com/carbon-design-system/carbon-charts/commit/debeed9))
|
|
339
|
+
- **axis:** fix linting errors
|
|
340
|
+
([f810d4a](https://github.com/carbon-design-system/carbon-charts/commit/f810d4a))
|
|
341
|
+
- **axis:** remove confusing timeRangeToExtend property
|
|
342
|
+
([0456e24](https://github.com/carbon-design-system/carbon-charts/commit/0456e24))
|
|
343
|
+
- **config:** add additional property to control extension
|
|
344
|
+
([2da3404](https://github.com/carbon-design-system/carbon-charts/commit/2da3404))
|
|
345
|
+
- **configuration:** fix default baseBarChart options
|
|
346
|
+
([1a6dcef](https://github.com/carbon-design-system/carbon-charts/commit/1a6dcef))
|
|
320
347
|
|
|
321
348
|
# [0.26.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.25.0...v0.26.0) (2020-01-16)
|
|
322
349
|
|
|
323
350
|
### Features
|
|
324
351
|
|
|
325
|
-
- **core:** add event dispatches for mouseover, mousemove, click & mouseout
|
|
352
|
+
- **core:** add event dispatches for mouseover, mousemove, click & mouseout
|
|
353
|
+
for all graphs
|
|
354
|
+
([284012c](https://github.com/carbon-design-system/carbon-charts/commit/284012c))
|
|
326
355
|
|
|
327
356
|
# [0.25.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.5...v0.25.0) (2020-01-10)
|
|
328
357
|
|
|
@@ -332,13 +361,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
332
361
|
|
|
333
362
|
### Bug Fixes
|
|
334
363
|
|
|
335
|
-
- **core:** fix to allow chart to toggle on and off using attribute/css
|
|
364
|
+
- **core:** fix to allow chart to toggle on and off using attribute/css
|
|
365
|
+
properties
|
|
366
|
+
([77e26af](https://github.com/carbon-design-system/carbon-charts/commit/77e26af))
|
|
336
367
|
|
|
337
368
|
## [0.24.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.3...v0.24.4) (2020-01-06)
|
|
338
369
|
|
|
339
370
|
### Bug Fixes
|
|
340
371
|
|
|
341
|
-
- **demos:** add IBM Plex Sans Condensed to the core demo site
|
|
372
|
+
- **demos:** add IBM Plex Sans Condensed to the core demo site
|
|
373
|
+
([1761a36](https://github.com/carbon-design-system/carbon-charts/commit/1761a36))
|
|
342
374
|
|
|
343
375
|
## [0.24.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.2...v0.24.3) (2019-12-19)
|
|
344
376
|
|
|
@@ -356,13 +388,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
356
388
|
|
|
357
389
|
### Features
|
|
358
390
|
|
|
359
|
-
- **core, react, angular, vue:** add WAI-ARIA tags to elements
|
|
391
|
+
- **core, react, angular, vue:** add WAI-ARIA tags to elements
|
|
392
|
+
([1216ed6](https://github.com/carbon-design-system/carbon-charts/commit/1216ed6))
|
|
360
393
|
|
|
361
394
|
# [0.23.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.4...v0.23.0) (2019-12-17)
|
|
362
395
|
|
|
363
396
|
### Features
|
|
364
397
|
|
|
365
|
-
- **core:** add spacer components
|
|
398
|
+
- **core:** add spacer components
|
|
399
|
+
([4e5ab5c](https://github.com/carbon-design-system/carbon-charts/commit/4e5ab5c))
|
|
366
400
|
|
|
367
401
|
## [0.22.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.3...v0.22.4) (2019-12-16)
|
|
368
402
|
|
|
@@ -372,7 +406,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
372
406
|
|
|
373
407
|
### Bug Fixes
|
|
374
408
|
|
|
375
|
-
- **core:** update tooltip value formatter
|
|
409
|
+
- **core:** update tooltip value formatter
|
|
410
|
+
([2a978d8](https://github.com/carbon-design-system/carbon-charts/commit/2a978d8))
|
|
376
411
|
|
|
377
412
|
## [0.22.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.1...v0.22.2) (2019-12-16)
|
|
378
413
|
|
|
@@ -386,67 +421,84 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
386
421
|
|
|
387
422
|
### Features
|
|
388
423
|
|
|
389
|
-
- **core, angular, react, vue:** Update chart width & height through options
|
|
424
|
+
- **core, angular, react, vue:** Update chart width & height through options
|
|
425
|
+
([f050c35](https://github.com/carbon-design-system/carbon-charts/commit/f050c35))
|
|
390
426
|
|
|
391
427
|
# [0.21.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.20.1...v0.21.0) (2019-12-09)
|
|
392
428
|
|
|
393
429
|
### Features
|
|
394
430
|
|
|
395
|
-
- **core, angular, react, vue:** allow customizations to pie labels & the
|
|
431
|
+
- **core, angular, react, vue:** allow customizations to pie labels & the
|
|
432
|
+
donut center number
|
|
433
|
+
([#427](https://github.com/carbon-design-system/carbon-charts/issues/427))
|
|
434
|
+
([0446045](https://github.com/carbon-design-system/carbon-charts/commit/0446045))
|
|
396
435
|
|
|
397
436
|
## [0.20.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.20.0...v0.20.1) (2019-12-04)
|
|
398
437
|
|
|
399
438
|
### Bug Fixes
|
|
400
439
|
|
|
401
|
-
- **core:** loop also through non-display data to assign colors to datasets
|
|
440
|
+
- **core:** loop also through non-display data to assign colors to datasets
|
|
441
|
+
([#394](https://github.com/carbon-design-system/carbon-charts/issues/394))
|
|
442
|
+
([5ba8952](https://github.com/carbon-design-system/carbon-charts/commit/5ba8952))
|
|
402
443
|
|
|
403
444
|
# [0.20.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.19.0...v0.20.0) (2019-12-02)
|
|
404
445
|
|
|
405
446
|
### Features
|
|
406
447
|
|
|
407
|
-
- **core:** add title truncation to tooltip
|
|
448
|
+
- **core:** add title truncation to tooltip
|
|
449
|
+
([bdd677c](https://github.com/carbon-design-system/carbon-charts/commit/bdd677c))
|
|
408
450
|
|
|
409
451
|
# [0.19.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.18.0...v0.19.0) (2019-12-02)
|
|
410
452
|
|
|
411
453
|
### Features
|
|
412
454
|
|
|
413
|
-
- **core:** export interfaces and configurations
|
|
455
|
+
- **core:** export interfaces and configurations
|
|
456
|
+
([df7f557](https://github.com/carbon-design-system/carbon-charts/commit/df7f557))
|
|
414
457
|
|
|
415
458
|
# [0.18.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.17.1...v0.18.0) (2019-12-02)
|
|
416
459
|
|
|
417
460
|
### Bug Fixes
|
|
418
461
|
|
|
419
|
-
- **bar:** fix lint errors
|
|
420
|
-
|
|
462
|
+
- **bar:** fix lint errors
|
|
463
|
+
([0d04b04](https://github.com/carbon-design-system/carbon-charts/commit/0d04b04))
|
|
464
|
+
- **tooltip:** rename defaultTooltip defaultHTML
|
|
465
|
+
([cf8f34e](https://github.com/carbon-design-system/carbon-charts/commit/cf8f34e))
|
|
421
466
|
|
|
422
467
|
### Features
|
|
423
468
|
|
|
424
|
-
- **bar:** pass default tooltip to customHTML tooltip
|
|
425
|
-
|
|
469
|
+
- **bar:** pass default tooltip to customHTML tooltip
|
|
470
|
+
([b6f519b](https://github.com/carbon-design-system/carbon-charts/commit/b6f519b))
|
|
471
|
+
- **tooltip:** for customHTML pass along the HTML tooltip
|
|
472
|
+
([7d1a026](https://github.com/carbon-design-system/carbon-charts/commit/7d1a026))
|
|
426
473
|
|
|
427
474
|
## [0.17.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.17.0...v0.17.1) (2019-11-29)
|
|
428
475
|
|
|
429
476
|
### Bug Fixes
|
|
430
477
|
|
|
431
|
-
- **core:** build optimizations
|
|
478
|
+
- **core:** build optimizations
|
|
479
|
+
([fef77e5](https://github.com/carbon-design-system/carbon-charts/commit/fef77e5))
|
|
432
480
|
|
|
433
481
|
# [0.17.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.25...v0.17.0) (2019-11-29)
|
|
434
482
|
|
|
435
483
|
### Features
|
|
436
484
|
|
|
437
|
-
- **core:** date/time locale support + tick formatting
|
|
485
|
+
- **core:** date/time locale support + tick formatting
|
|
486
|
+
([bc02012](https://github.com/carbon-design-system/carbon-charts/commit/bc02012))
|
|
438
487
|
|
|
439
488
|
## [0.16.25](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.24...v0.16.25) (2019-10-29)
|
|
440
489
|
|
|
441
490
|
### Bug Fixes
|
|
442
491
|
|
|
443
|
-
- **core:** update type to scaleType and backgroundColors to fillColors
|
|
492
|
+
- **core:** update type to scaleType and backgroundColors to fillColors
|
|
493
|
+
([3ca0a0f](https://github.com/carbon-design-system/carbon-charts/commit/3ca0a0f))
|
|
444
494
|
|
|
445
495
|
## [0.16.24](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.23...v0.16.24) (2019-10-25)
|
|
446
496
|
|
|
447
497
|
### Bug Fixes
|
|
448
498
|
|
|
449
|
-
- **core, react, angular, vue:** default width & height to 100%, and call
|
|
499
|
+
- **core, react, angular, vue:** default width & height to 100%, and call
|
|
500
|
+
setOptions on option change
|
|
501
|
+
([db251b4](https://github.com/carbon-design-system/carbon-charts/commit/db251b4))
|
|
450
502
|
|
|
451
503
|
## [0.16.23](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.22...v0.16.23) (2019-10-25)
|
|
452
504
|
|
|
@@ -460,7 +512,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
460
512
|
|
|
461
513
|
### Bug Fixes
|
|
462
514
|
|
|
463
|
-
- **core:** update typescript version
|
|
515
|
+
- **core:** update typescript version
|
|
516
|
+
([949379f](https://github.com/carbon-design-system/carbon-charts/commit/949379f))
|
|
464
517
|
|
|
465
518
|
## [0.16.20](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.19...v0.16.20) (2019-10-24)
|
|
466
519
|
|
|
@@ -470,7 +523,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
470
523
|
|
|
471
524
|
### Bug Fixes
|
|
472
525
|
|
|
473
|
-
- **tooltip:** fix to be multiline instead of multitooltip
|
|
526
|
+
- **tooltip:** fix to be multiline instead of multitooltip
|
|
527
|
+
([0f90325](https://github.com/carbon-design-system/carbon-charts/commit/0f90325))
|
|
474
528
|
|
|
475
529
|
## [0.16.18](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.17...v0.16.18) (2019-10-21)
|
|
476
530
|
|
|
@@ -484,7 +538,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
484
538
|
|
|
485
539
|
### Bug Fixes
|
|
486
540
|
|
|
487
|
-
- custom global object in UMD bundle generated by webpack
|
|
541
|
+
- custom global object in UMD bundle generated by webpack
|
|
542
|
+
([a4d1e54](https://github.com/carbon-design-system/carbon-charts/commit/a4d1e54))
|
|
488
543
|
|
|
489
544
|
## [0.16.15](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.14...v0.16.15) (2019-10-09)
|
|
490
545
|
|
|
@@ -538,13 +593,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
538
593
|
|
|
539
594
|
### Bug Fixes
|
|
540
595
|
|
|
541
|
-
- **angular:** Fix angular SSR issues
|
|
596
|
+
- **angular:** Fix angular SSR issues
|
|
597
|
+
([86aa9d3](https://github.com/carbon-design-system/carbon-charts/commit/86aa9d3))
|
|
542
598
|
|
|
543
599
|
## [0.16.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.1...v0.16.2) (2019-09-09)
|
|
544
600
|
|
|
545
601
|
### Bug Fixes
|
|
546
602
|
|
|
547
|
-
- **core, react:** fix react SSR & legend sizing issues
|
|
603
|
+
- **core, react:** fix react SSR & legend sizing issues
|
|
604
|
+
([abedba0](https://github.com/carbon-design-system/carbon-charts/commit/abedba0))
|
|
548
605
|
|
|
549
606
|
## [0.16.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.0...v0.16.1) (2019-09-06)
|
|
550
607
|
|
|
@@ -554,8 +611,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
554
611
|
|
|
555
612
|
### Features
|
|
556
613
|
|
|
557
|
-
- **core:** Expand slice arcs in pie and donut on hover, and remove strokes
|
|
558
|
-
|
|
614
|
+
- **core:** Expand slice arcs in pie and donut on hover, and remove strokes
|
|
615
|
+
([ca5a467](https://github.com/carbon-design-system/carbon-charts/commit/ca5a467))
|
|
616
|
+
- **core:** support width & maxWidth values for bars
|
|
617
|
+
([a2e7120](https://github.com/carbon-design-system/carbon-charts/commit/a2e7120))
|
|
559
618
|
|
|
560
619
|
## [0.15.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.7...v0.15.8) (2019-08-24)
|
|
561
620
|
|
|
@@ -577,7 +636,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
577
636
|
|
|
578
637
|
### Bug Fixes
|
|
579
638
|
|
|
580
|
-
- **core:** fix resize grid backdrop
|
|
639
|
+
- **core:** fix resize grid backdrop
|
|
640
|
+
([8e1211e](https://github.com/carbon-design-system/carbon-charts/commit/8e1211e))
|
|
581
641
|
|
|
582
642
|
## [0.15.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.2...v0.15.3) (2019-08-16)
|
|
583
643
|
|
|
@@ -587,19 +647,22 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
587
647
|
|
|
588
648
|
### Bug Fixes
|
|
589
649
|
|
|
590
|
-
- **core:** fix for better backdrop resizing on axis grids
|
|
650
|
+
- **core:** fix for better backdrop resizing on axis grids
|
|
651
|
+
([6a12a60](https://github.com/carbon-design-system/carbon-charts/commit/6a12a60))
|
|
591
652
|
|
|
592
653
|
## [0.15.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.0...v0.15.1) (2019-07-17)
|
|
593
654
|
|
|
594
655
|
### Bug Fixes
|
|
595
656
|
|
|
596
|
-
- **core:** backdrop resize with chart
|
|
657
|
+
- **core:** backdrop resize with chart
|
|
658
|
+
([bbc288d](https://github.com/carbon-design-system/carbon-charts/commit/bbc288d))
|
|
597
659
|
|
|
598
660
|
# [0.15.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.14.1...v0.15.0) (2019-07-17)
|
|
599
661
|
|
|
600
662
|
### Features
|
|
601
663
|
|
|
602
|
-
- **core:** adding carbon themes
|
|
664
|
+
- **core:** adding carbon themes
|
|
665
|
+
([a31fbcf](https://github.com/carbon-design-system/carbon-charts/commit/a31fbcf))
|
|
603
666
|
|
|
604
667
|
## [0.14.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.14.0...v0.14.1) (2019-07-11)
|
|
605
668
|
|
|
@@ -613,7 +676,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
613
676
|
|
|
614
677
|
### Features
|
|
615
678
|
|
|
616
|
-
- **core:** addition of titles within svg chart
|
|
679
|
+
- **core:** addition of titles within svg chart
|
|
680
|
+
([56380bb](https://github.com/carbon-design-system/carbon-charts/commit/56380bb))
|
|
617
681
|
|
|
618
682
|
## [0.12.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.4...v0.12.5) (2019-07-04)
|
|
619
683
|
|
|
@@ -623,7 +687,9 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
623
687
|
|
|
624
688
|
### Bug Fixes
|
|
625
689
|
|
|
626
|
-
- **react core:** change main bundle to umd in core, and update imports in
|
|
690
|
+
- **react core:** change main bundle to umd in core, and update imports in
|
|
691
|
+
react
|
|
692
|
+
([df9c7c3](https://github.com/carbon-design-system/carbon-charts/commit/df9c7c3))
|
|
627
693
|
|
|
628
694
|
## [0.12.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.2...v0.12.3) (2019-06-26)
|
|
629
695
|
|
|
@@ -641,26 +707,32 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
641
707
|
|
|
642
708
|
### Features
|
|
643
709
|
|
|
644
|
-
- **core:** Colors, themes & more design updates
|
|
645
|
-
|
|
710
|
+
- **core:** Colors, themes & more design updates
|
|
711
|
+
([#261](https://github.com/carbon-design-system/carbon-charts/issues/261))
|
|
712
|
+
([b0b9070](https://github.com/carbon-design-system/carbon-charts/commit/b0b9070))
|
|
713
|
+
- **feat(core:** Color palettes):
|
|
714
|
+
([edcf601](https://github.com/carbon-design-system/carbon-charts/commit/edcf601))
|
|
646
715
|
|
|
647
716
|
## [0.11.15](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.14...v0.11.15) (2019-05-07)
|
|
648
717
|
|
|
649
718
|
### Bug Fixes
|
|
650
719
|
|
|
651
|
-
- **core:** Fix tooltip positioning
|
|
720
|
+
- **core:** Fix tooltip positioning
|
|
721
|
+
([dd17048](https://github.com/carbon-design-system/carbon-charts/commit/dd17048))
|
|
652
722
|
|
|
653
723
|
## [0.11.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.12...v0.11.14) (2019-05-06)
|
|
654
724
|
|
|
655
725
|
### Bug Fixes
|
|
656
726
|
|
|
657
|
-
- **core:** Show empty state for when there is no data
|
|
727
|
+
- **core:** Show empty state for when there is no data
|
|
728
|
+
([b5db127](https://github.com/carbon-design-system/carbon-charts/commit/b5db127))
|
|
658
729
|
|
|
659
730
|
## [0.11.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.12...v0.11.13) (2019-04-30)
|
|
660
731
|
|
|
661
732
|
### Bug Fixes
|
|
662
733
|
|
|
663
|
-
- **core:** Show empty state for when there is no data
|
|
734
|
+
- **core:** Show empty state for when there is no data
|
|
735
|
+
([b5db127](https://github.com/carbon-design-system/carbon-charts/commit/b5db127))
|
|
664
736
|
|
|
665
737
|
## [0.11.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.11...v0.11.12) (2019-04-22)
|
|
666
738
|
|
|
@@ -682,25 +754,34 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
682
754
|
|
|
683
755
|
### Bug Fixes
|
|
684
756
|
|
|
685
|
-
- **core:** add babel-polyfill as a hard dependency
|
|
757
|
+
- **core:** add babel-polyfill as a hard dependency
|
|
758
|
+
([#230](https://github.com/carbon-design-system/carbon-charts/issues/230))
|
|
759
|
+
([d3e8c0c](https://github.com/carbon-design-system/carbon-charts/commit/d3e8c0c))
|
|
686
760
|
|
|
687
761
|
## [0.11.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.6...v0.11.7) (2019-03-26)
|
|
688
762
|
|
|
689
763
|
### Bug Fixes
|
|
690
764
|
|
|
691
|
-
- **core:** remove suffixes to use regular module resolution, and force
|
|
765
|
+
- **core:** remove suffixes to use regular module resolution, and force
|
|
766
|
+
publish all packages with every release
|
|
767
|
+
([#229](https://github.com/carbon-design-system/carbon-charts/issues/229))
|
|
768
|
+
([2e33ca6](https://github.com/carbon-design-system/carbon-charts/commit/2e33ca6))
|
|
692
769
|
|
|
693
770
|
## [0.11.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.5...v0.11.6) (2019-03-26)
|
|
694
771
|
|
|
695
772
|
### Bug Fixes
|
|
696
773
|
|
|
697
|
-
- **core:** export patterns as strings of svgs
|
|
774
|
+
- **core:** export patterns as strings of svgs
|
|
775
|
+
([#227](https://github.com/carbon-design-system/carbon-charts/issues/227))
|
|
776
|
+
([14391ae](https://github.com/carbon-design-system/carbon-charts/commit/14391ae))
|
|
698
777
|
|
|
699
778
|
## [0.11.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.4...v0.11.5) (2019-03-26)
|
|
700
779
|
|
|
701
780
|
### Bug Fixes
|
|
702
781
|
|
|
703
|
-
- **build:** refactor deploy and update package.jsons
|
|
782
|
+
- **build:** refactor deploy and update package.jsons
|
|
783
|
+
([#223](https://github.com/carbon-design-system/carbon-charts/issues/223))
|
|
784
|
+
([fb512cb](https://github.com/carbon-design-system/carbon-charts/commit/fb512cb))
|
|
704
785
|
|
|
705
786
|
## [0.11.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.3...v0.11.4) (2019-03-25)
|
|
706
787
|
|
|
@@ -710,7 +791,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
710
791
|
|
|
711
792
|
### Features
|
|
712
793
|
|
|
713
|
-
- **core:** specify config as interfaces
|
|
794
|
+
- **core:** specify config as interfaces
|
|
795
|
+
([e474fb6](https://github.com/carbon-design-system/carbon-charts/commit/e474fb6))
|
|
714
796
|
|
|
715
797
|
## [0.10.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.4...v0.10.5) (2019-03-12)
|
|
716
798
|
|
|
@@ -720,14 +802,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
720
802
|
|
|
721
803
|
### Bug Fixes
|
|
722
804
|
|
|
723
|
-
- **core:** remove updateSVG()
|
|
805
|
+
- **core:** remove updateSVG()
|
|
806
|
+
([38f7e83](https://github.com/carbon-design-system/carbon-charts/commit/38f7e83)),
|
|
807
|
+
closes
|
|
808
|
+
[#185](https://github.com/carbon-design-system/carbon-charts/issues/185)
|
|
724
809
|
|
|
725
810
|
## [0.10.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.1...v0.10.2) (2019-03-06)
|
|
726
811
|
|
|
727
812
|
### Bug Fixes
|
|
728
813
|
|
|
729
|
-
- **core:** Enforce text alignment of legend popup in the styles
|
|
730
|
-
|
|
814
|
+
- **core:** Enforce text alignment of legend popup in the styles
|
|
815
|
+
([#203](https://github.com/carbon-design-system/carbon-charts/issues/203))
|
|
816
|
+
([6a4fe1e](https://github.com/carbon-design-system/carbon-charts/commit/6a4fe1e))
|
|
817
|
+
- **core:** Fix loss of letters in labels in wrapTicks()
|
|
818
|
+
([#202](https://github.com/carbon-design-system/carbon-charts/issues/202))
|
|
819
|
+
([8635e7b](https://github.com/carbon-design-system/carbon-charts/commit/8635e7b))
|
|
731
820
|
|
|
732
821
|
## [0.10.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.0...v0.10.1) (2019-02-28)
|
|
733
822
|
|
|
@@ -737,7 +826,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
737
826
|
|
|
738
827
|
### Features
|
|
739
828
|
|
|
740
|
-
- **\$core:** Adds getStrokeColor and getFillColor options
|
|
829
|
+
- **\$core:** Adds getStrokeColor and getFillColor options
|
|
830
|
+
([e1766d3](https://github.com/carbon-design-system/carbon-charts/commit/e1766d3)),
|
|
831
|
+
closes
|
|
832
|
+
[#136](https://github.com/carbon-design-system/carbon-charts/issues/136)
|
|
741
833
|
|
|
742
834
|
## [0.9.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.6...v0.9.7) (2019-02-22)
|
|
743
835
|
|
|
@@ -747,75 +839,96 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
747
839
|
|
|
748
840
|
### Bug Fixes
|
|
749
841
|
|
|
750
|
-
- **bar:** add maxWidth and other bar fixes
|
|
842
|
+
- **bar:** add maxWidth and other bar fixes
|
|
843
|
+
([3866d86](https://github.com/carbon-design-system/carbon-charts/commit/3866d86))
|
|
751
844
|
|
|
752
845
|
## [0.9.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.4...v0.9.5) (2019-02-20)
|
|
753
846
|
|
|
754
847
|
### Bug Fixes
|
|
755
848
|
|
|
756
|
-
- **\$core:** Fixes opacity transitions not completing when data is updated.
|
|
849
|
+
- **\$core:** Fixes opacity transitions not completing when data is updated.
|
|
850
|
+
Ensures use SVG vs CSS op
|
|
851
|
+
([f6b245e](https://github.com/carbon-design-system/carbon-charts/commit/f6b245e))
|
|
757
852
|
|
|
758
853
|
## [0.9.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.3...v0.9.4) (2019-02-16)
|
|
759
854
|
|
|
760
855
|
### Bug Fixes
|
|
761
856
|
|
|
762
|
-
- **\$browser:** Fix duplication of titles during title resize
|
|
857
|
+
- **\$browser:** Fix duplication of titles during title resize
|
|
858
|
+
([4698efd](https://github.com/carbon-design-system/carbon-charts/commit/4698efd))
|
|
763
859
|
|
|
764
860
|
## [0.9.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.2...v0.9.3) (2019-02-15)
|
|
765
861
|
|
|
766
862
|
### Bug Fixes
|
|
767
863
|
|
|
768
|
-
- **core:** Fix NPM vulnerabilities
|
|
864
|
+
- **core:** Fix NPM vulnerabilities
|
|
865
|
+
([73ef611](https://github.com/carbon-design-system/carbon-charts/commit/73ef611))
|
|
769
866
|
|
|
770
867
|
## [0.9.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.1...v0.9.2) (2019-02-15)
|
|
771
868
|
|
|
772
869
|
### Bug Fixes
|
|
773
870
|
|
|
774
|
-
- **core:** Allow custom circle size for line chart
|
|
871
|
+
- **core:** Allow custom circle size for line chart
|
|
872
|
+
([5fb93bd](https://github.com/carbon-design-system/carbon-charts/commit/5fb93bd))
|
|
775
873
|
|
|
776
874
|
## [0.9.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.0...v0.9.1) (2019-02-07)
|
|
777
875
|
|
|
778
876
|
### Bug Fixes
|
|
779
877
|
|
|
780
|
-
- **core:** Allow the usage of different size variants of tooltip
|
|
878
|
+
- **core:** Allow the usage of different size variants of tooltip
|
|
879
|
+
([4f6aa1d](https://github.com/carbon-design-system/carbon-charts/commit/4f6aa1d))
|
|
781
880
|
|
|
782
881
|
# [0.9.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.6...v0.9.0) (2019-01-28)
|
|
783
882
|
|
|
784
883
|
### Features
|
|
785
884
|
|
|
786
|
-
- **CORE:** ability to customize donut label & number
|
|
885
|
+
- **CORE:** ability to customize donut label & number
|
|
886
|
+
([07014cf](https://github.com/carbon-design-system/carbon-charts/commit/07014cf))
|
|
787
887
|
|
|
788
888
|
## [0.8.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.5...v0.8.6) (2019-01-18)
|
|
789
889
|
|
|
790
890
|
### Bug Fixes
|
|
791
891
|
|
|
792
|
-
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
793
|
-
|
|
794
|
-
|
|
892
|
+
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
893
|
+
sizes.
|
|
894
|
+
([154467f](https://github.com/carbon-design-system/carbon-charts/commit/154467f)),
|
|
895
|
+
closes
|
|
896
|
+
[#151](https://github.com/carbon-design-system/carbon-charts/issues/151)
|
|
897
|
+
- **\$browser:** Use dynamic step value for margin instead of fixed value.
|
|
898
|
+
([1c96d7a](https://github.com/carbon-design-system/carbon-charts/commit/1c96d7a))
|
|
899
|
+
- **core:** Fix interference of thresholds and bar chart elements
|
|
900
|
+
([a69dc15](https://github.com/carbon-design-system/carbon-charts/commit/a69dc15))
|
|
795
901
|
|
|
796
902
|
## [0.8.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.4...v0.8.5) (2019-01-17)
|
|
797
903
|
|
|
798
904
|
### Bug Fixes
|
|
799
905
|
|
|
800
|
-
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
906
|
+
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
907
|
+
sizes.
|
|
908
|
+
([54e2227](https://github.com/carbon-design-system/carbon-charts/commit/54e2227)),
|
|
909
|
+
closes
|
|
910
|
+
[#151](https://github.com/carbon-design-system/carbon-charts/issues/151)
|
|
801
911
|
|
|
802
912
|
## [0.8.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.3...v0.8.4) (2019-01-17)
|
|
803
913
|
|
|
804
914
|
### Bug Fixes
|
|
805
915
|
|
|
806
|
-
- **core:** Fix interference of thresholds and bar chart elements
|
|
916
|
+
- **core:** Fix interference of thresholds and bar chart elements
|
|
917
|
+
([67ff065](https://github.com/carbon-design-system/carbon-charts/commit/67ff065))
|
|
807
918
|
|
|
808
919
|
## [0.8.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.2...v0.8.3) (2019-01-16)
|
|
809
920
|
|
|
810
921
|
### Bug Fixes
|
|
811
922
|
|
|
812
|
-
- **core:** Fix tooltip positioning and clean up styling
|
|
923
|
+
- **core:** Fix tooltip positioning and clean up styling
|
|
924
|
+
([6de0665](https://github.com/carbon-design-system/carbon-charts/commit/6de0665))
|
|
813
925
|
|
|
814
926
|
## [0.8.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.1...v0.8.2) (2019-01-14)
|
|
815
927
|
|
|
816
928
|
### Bug Fixes
|
|
817
929
|
|
|
818
|
-
- **core demo:** Fix experimental link issue
|
|
930
|
+
- **core demo:** Fix experimental link issue
|
|
931
|
+
([d9d660a](https://github.com/carbon-design-system/carbon-charts/commit/d9d660a))
|
|
819
932
|
|
|
820
933
|
## [0.8.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.0...v0.8.1) (2019-01-09)
|
|
821
934
|
|
|
@@ -825,13 +938,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
825
938
|
|
|
826
939
|
### Features
|
|
827
940
|
|
|
828
|
-
- **\$core:** adds support for tension, beta, alpha in curves
|
|
941
|
+
- **\$core:** adds support for tension, beta, alpha in curves
|
|
942
|
+
([09437dc](https://github.com/carbon-design-system/carbon-charts/commit/09437dc)),
|
|
943
|
+
closes
|
|
944
|
+
[#39](https://github.com/carbon-design-system/carbon-charts/issues/39)
|
|
829
945
|
|
|
830
946
|
## [0.7.16](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.15...v0.7.16) (2019-01-03)
|
|
831
947
|
|
|
832
948
|
### Bug Fixes
|
|
833
949
|
|
|
834
|
-
- **core:** Remove extension of addLegend in PieChart
|
|
950
|
+
- **core:** Remove extension of addLegend in PieChart
|
|
951
|
+
([c66b633](https://github.com/carbon-design-system/carbon-charts/commit/c66b633))
|
|
835
952
|
|
|
836
953
|
## [0.7.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.13...v0.7.14) (2019-01-03)
|
|
837
954
|
|
|
@@ -845,19 +962,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
845
962
|
|
|
846
963
|
### Bug Fixes
|
|
847
964
|
|
|
848
|
-
- **react:** Fix react wrappers resizing with animation
|
|
965
|
+
- **react:** Fix react wrappers resizing with animation
|
|
966
|
+
([4219f33](https://github.com/carbon-design-system/carbon-charts/commit/4219f33))
|
|
849
967
|
|
|
850
968
|
## [0.7.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.8...v0.7.9) (2018-11-22)
|
|
851
969
|
|
|
852
970
|
### Bug Fixes
|
|
853
971
|
|
|
854
|
-
- **core:** Use a minimum size for all charts, and use resizeObserver rather
|
|
972
|
+
- **core:** Use a minimum size for all charts, and use resizeObserver rather
|
|
973
|
+
than requestAnimationFra
|
|
974
|
+
([462c2d6](https://github.com/carbon-design-system/carbon-charts/commit/462c2d6))
|
|
855
975
|
|
|
856
976
|
## [0.7.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.7...v0.7.8) (2018-11-22)
|
|
857
977
|
|
|
858
978
|
### Bug Fixes
|
|
859
979
|
|
|
860
|
-
- **core:** Remove and update addDataPointEventListener
|
|
980
|
+
- **core:** Remove and update addDataPointEventListener
|
|
981
|
+
([f40f775](https://github.com/carbon-design-system/carbon-charts/commit/f40f775)),
|
|
982
|
+
closes
|
|
983
|
+
[#97](https://github.com/carbon-design-system/carbon-charts/issues/97)
|
|
861
984
|
|
|
862
985
|
## [0.7.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.4...v0.7.5) (2018-11-20)
|
|
863
986
|
|
|
@@ -867,7 +990,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
867
990
|
|
|
868
991
|
### Bug Fixes
|
|
869
992
|
|
|
870
|
-
- **packages/core/src/line-chart.ts:** Fix tooltips bug
|
|
993
|
+
- **packages/core/src/line-chart.ts:** Fix tooltips bug
|
|
994
|
+
[#89](https://github.com/carbon-design-system/carbon-charts/issues/89): Fix
|
|
995
|
+
imports and addDataPointEventListene
|
|
996
|
+
([5a63f94](https://github.com/carbon-design-system/carbon-charts/commit/5a63f94))
|
|
871
997
|
|
|
872
998
|
## [0.7.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.2...v0.7.3) (2018-11-13)
|
|
873
999
|
|
|
@@ -877,41 +1003,52 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
877
1003
|
|
|
878
1004
|
### Bug Fixes
|
|
879
1005
|
|
|
880
|
-
- **core:** Fixed label colours on donut charts
|
|
1006
|
+
- **core:** Fixed label colours on donut charts
|
|
1007
|
+
([5e40ef6](https://github.com/carbon-design-system/carbon-charts/commit/5e40ef6))
|
|
881
1008
|
|
|
882
1009
|
## [0.7.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.0...v0.7.1) (2018-11-12)
|
|
883
1010
|
|
|
884
1011
|
### Bug Fixes
|
|
885
1012
|
|
|
886
|
-
- **core:** Refactor thresholds to support a range of values, closes
|
|
1013
|
+
- **core:** Refactor thresholds to support a range of values, closes
|
|
1014
|
+
[#85](https://github.com/carbon-design-system/carbon-charts/issues/85)
|
|
1015
|
+
([50b44c0](https://github.com/carbon-design-system/carbon-charts/commit/50b44c0))
|
|
887
1016
|
|
|
888
1017
|
# [0.7.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.2...v0.7.0) (2018-11-12)
|
|
889
1018
|
|
|
890
1019
|
### Features
|
|
891
1020
|
|
|
892
|
-
- **core:** Automatic calculation of DonutCenter value, closes
|
|
1021
|
+
- **core:** Automatic calculation of DonutCenter value, closes
|
|
1022
|
+
[#83](https://github.com/carbon-design-system/carbon-charts/issues/83)
|
|
1023
|
+
([d20e883](https://github.com/carbon-design-system/carbon-charts/commit/d20e883))
|
|
893
1024
|
|
|
894
1025
|
## [0.6.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.1...v0.6.2) (2018-11-12)
|
|
895
1026
|
|
|
896
1027
|
### Bug Fixes
|
|
897
1028
|
|
|
898
|
-
- **\$core:** Remove hover effect and pointer on non-clickable legends
|
|
1029
|
+
- **\$core:** Remove hover effect and pointer on non-clickable legends
|
|
1030
|
+
([dc9a2f2](https://github.com/carbon-design-system/carbon-charts/commit/dc9a2f2)),
|
|
1031
|
+
closes
|
|
1032
|
+
[#71](https://github.com/carbon-design-system/carbon-charts/issues/71)
|
|
899
1033
|
|
|
900
1034
|
## [0.6.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.0...v0.6.1) (2018-11-09)
|
|
901
1035
|
|
|
902
1036
|
### Bug Fixes
|
|
903
1037
|
|
|
904
|
-
- **angular:** Fix babel-polyfill multiple instances issue
|
|
1038
|
+
- **angular:** Fix babel-polyfill multiple instances issue
|
|
1039
|
+
([4a2f165](https://github.com/carbon-design-system/carbon-charts/commit/4a2f165))
|
|
905
1040
|
|
|
906
1041
|
# [0.6.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.5.4...v0.6.0) (2018-11-01)
|
|
907
1042
|
|
|
908
1043
|
### Bug Fixes
|
|
909
1044
|
|
|
910
|
-
- **core:** Resize thresholds, and update threshold theme colors
|
|
1045
|
+
- **core:** Resize thresholds, and update threshold theme colors
|
|
1046
|
+
([3d86841](https://github.com/carbon-design-system/carbon-charts/commit/3d86841))
|
|
911
1047
|
|
|
912
1048
|
### Features
|
|
913
1049
|
|
|
914
|
-
- **core:** changed threshold config format, code refactor
|
|
1050
|
+
- **core:** changed threshold config format, code refactor
|
|
1051
|
+
([d931a82](https://github.com/carbon-design-system/carbon-charts/commit/d931a82))
|
|
915
1052
|
|
|
916
1053
|
<a name="0.5.4"></a>
|
|
917
1054
|
|
|
@@ -943,12 +1080,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
943
1080
|
|
|
944
1081
|
### Bug Fixes
|
|
945
1082
|
|
|
946
|
-
- **core:** legend updates in pie & donut should respect legend filters
|
|
947
|
-
|
|
1083
|
+
- **core:** legend updates in pie & donut should respect legend filters
|
|
1084
|
+
([203c7e6](https://github.com/carbon-design-system/carbon-charts/commit/203c7e6))
|
|
1085
|
+
- **core:** use correct default colors, and replace loading bee with carbon
|
|
1086
|
+
loading spinner
|
|
1087
|
+
([80ff9bd](https://github.com/carbon-design-system/carbon-charts/commit/80ff9bd))
|
|
948
1088
|
|
|
949
1089
|
### Features
|
|
950
1090
|
|
|
951
|
-
- **core:** first attempt at combo-chart
|
|
1091
|
+
- **core:** first attempt at combo-chart
|
|
1092
|
+
([6613160](https://github.com/carbon-design-system/carbon-charts/commit/6613160))
|
|
952
1093
|
|
|
953
1094
|
<a name="0.4.3"></a>
|
|
954
1095
|
|
|
@@ -962,7 +1103,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
962
1103
|
|
|
963
1104
|
### Bug Fixes
|
|
964
1105
|
|
|
965
|
-
- **core angular:** IE11 Support
|
|
1106
|
+
- **core angular:** IE11 Support
|
|
1107
|
+
([b0dd2b5](https://github.com/carbon-design-system/carbon-charts/commit/b0dd2b5))
|
|
966
1108
|
|
|
967
1109
|
<a name="0.4.1"></a>
|
|
968
1110
|
|
|
@@ -970,8 +1112,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
970
1112
|
|
|
971
1113
|
### Bug Fixes
|
|
972
1114
|
|
|
973
|
-
- **core angular:** Remove demo folders from published packages
|
|
974
|
-
|
|
1115
|
+
- **core angular:** Remove demo folders from published packages
|
|
1116
|
+
([5e3c556](https://github.com/carbon-design-system/carbon-charts/commit/5e3c556))
|
|
1117
|
+
- **core angular:** Remove demos & add dist in packages
|
|
1118
|
+
([94bb9f4](https://github.com/carbon-design-system/carbon-charts/commit/94bb9f4))
|
|
975
1119
|
|
|
976
1120
|
<a name="0.4.0"></a>
|
|
977
1121
|
|
|
@@ -979,7 +1123,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
979
1123
|
|
|
980
1124
|
### Features
|
|
981
1125
|
|
|
982
|
-
- **core angular react:** Resolve DAP violations
|
|
1126
|
+
- **core angular react:** Resolve DAP violations
|
|
1127
|
+
([86f6e05](https://github.com/carbon-design-system/carbon-charts/commit/86f6e05))
|
|
983
1128
|
|
|
984
1129
|
<a name="0.3.0"></a>
|
|
985
1130
|
|
|
@@ -987,7 +1132,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
987
1132
|
|
|
988
1133
|
### Features
|
|
989
1134
|
|
|
990
|
-
- **core angular:** trigger minor release on Travis
|
|
1135
|
+
- **core angular:** trigger minor release on Travis
|
|
1136
|
+
([1c476b2](https://github.com/carbon-design-system/carbon-charts/commit/1c476b2))
|
|
991
1137
|
|
|
992
1138
|
<a name="0.2.0"></a>
|
|
993
1139
|
|
|
@@ -995,7 +1141,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
995
1141
|
|
|
996
1142
|
### Features
|
|
997
1143
|
|
|
998
|
-
- **core angular react:** trigger a minor release in Travis
|
|
1144
|
+
- **core angular react:** trigger a minor release in Travis
|
|
1145
|
+
([2995cfa](https://github.com/carbon-design-system/carbon-charts/commit/2995cfa))
|
|
999
1146
|
|
|
1000
1147
|
<a name="0.1.0"></a>
|
|
1001
1148
|
|
|
@@ -1003,15 +1150,27 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
1003
1150
|
|
|
1004
1151
|
### Bug Fixes
|
|
1005
1152
|
|
|
1006
|
-
- **core angular react:** fix tooltip styling
|
|
1007
|
-
|
|
1008
|
-
- **
|
|
1153
|
+
- **core angular react:** fix tooltip styling
|
|
1154
|
+
([80b36f5](https://github.com/carbon-design-system/carbon-charts/commit/80b36f5))
|
|
1155
|
+
- **peretz-icons:** show peretz-icons instead of raw SVG for tooltip close
|
|
1156
|
+
button
|
|
1157
|
+
([19a54d4](https://github.com/carbon-design-system/carbon-charts/commit/19a54d4))
|
|
1158
|
+
- **scope angular react:** use a more specific class name for chart tooltips
|
|
1159
|
+
([4cbe680](https://github.com/carbon-design-system/carbon-charts/commit/4cbe680))
|
|
1009
1160
|
|
|
1010
1161
|
### Features
|
|
1011
1162
|
|
|
1012
|
-
- **core angular react:** support negative y-values
|
|
1013
|
-
|
|
1014
|
-
- **react
|
|
1163
|
+
- **core angular react:** support negative y-values
|
|
1164
|
+
([cfa941d](https://github.com/carbon-design-system/carbon-charts/commit/cfa941d))
|
|
1165
|
+
- **core react angular:** carbon styling
|
|
1166
|
+
([5064f63](https://github.com/carbon-design-system/carbon-charts/commit/5064f63))
|
|
1167
|
+
- **react wrappers storybook:** full react wrappers
|
|
1168
|
+
([4a456ee](https://github.com/carbon-design-system/carbon-charts/commit/4a456ee)),
|
|
1169
|
+
closes
|
|
1170
|
+
[#117](https://github.com/carbon-design-system/carbon-charts/issues/117)
|
|
1171
|
+
[#115](https://github.com/carbon-design-system/carbon-charts/issues/115)
|
|
1172
|
+
[#120](https://github.com/carbon-design-system/carbon-charts/issues/120)
|
|
1173
|
+
[#121](https://github.com/carbon-design-system/carbon-charts/issues/121)
|
|
1015
1174
|
|
|
1016
1175
|
# Change Log
|
|
1017
1176
|
|