@carbon/charts 0.54.1 → 0.54.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.
- package/CHANGELOG.md +44 -0
- package/build/src/components/graphs/bar-stacked.d.ts +1 -0
- package/build/src/model/model.d.ts +1 -1
- package/bundle.js +1 -1
- package/components/graphs/area.js +19 -5
- package/components/graphs/area.js.map +1 -1
- package/components/graphs/bar-stacked.d.ts +1 -0
- package/components/graphs/bar-stacked.js +16 -0
- package/components/graphs/bar-stacked.js.map +1 -1
- package/components/graphs/radar.js +7 -3
- package/components/graphs/radar.js.map +1 -1
- package/demo/styles.css +8 -8
- package/demo/styles.min.css +1 -1
- package/demo/styles.min.css.map +1 -1
- package/model/model.d.ts +1 -1
- package/model/model.js +1 -1
- package/model/model.js.map +1 -1
- package/package.json +1 -1
- package/services/scales-cartesian.js.map +1 -1
- package/styles/_chart-holder.scss +1 -1
- package/styles-g10.css +2 -2
- package/styles-g10.min.css +1 -1
- package/styles-g10.min.css.map +1 -1
- package/styles-g100.css +2 -2
- package/styles-g100.min.css +1 -1
- package/styles-g100.min.css.map +1 -1
- package/styles-g90.css +2 -2
- package/styles-g90.min.css +1 -1
- package/styles-g90.min.css.map +1 -1
- package/styles.css +2 -2
- package/styles.min.css +1 -1
- package/styles.min.css.map +1 -1
- package/tsconfig.tsbuildinfo +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,50 @@
|
|
|
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
|
+
## [0.54.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.4...v0.54.5) (2022-01-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core:** keep radar chart alignment after fullscreene exit ([#1249](https://github.com/carbon-design-system/carbon-charts/issues/1249)) ([02eebb6](https://github.com/carbon-design-system/carbon-charts/commit/02eebb61ddc1ecfedb68a32cd15c82e428870a36)), closes [#1247](https://github.com/carbon-design-system/carbon-charts/issues/1247)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.54.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.3...v0.54.4) (2022-01-10)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **core:** prevent area chart from bleeding out of cartesian plane when includeZero is enabled ([#1263](https://github.com/carbon-design-system/carbon-charts/issues/1263)) ([62b6014](https://github.com/carbon-design-system/carbon-charts/commit/62b6014eea594d08572f71034eda8919c9e22100)), closes [#1248](https://github.com/carbon-design-system/carbon-charts/issues/1248)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [0.54.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.2...v0.54.3) (2022-01-07)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* **stacked-bar:** set bar width based on number of domain values ([#1235](https://github.com/carbon-design-system/carbon-charts/issues/1235)) ([758c064](https://github.com/carbon-design-system/carbon-charts/commit/758c064fcbf8f837da400af9bfac9862b2f20d1f)), closes [#1232](https://github.com/carbon-design-system/carbon-charts/issues/1232)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## [0.54.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.1...v0.54.2) (2022-01-05)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
|
|
44
|
+
* **core:** add background to chart in fullscreen mode ([#1261](https://github.com/carbon-design-system/carbon-charts/issues/1261)) ([7a10ae8](https://github.com/carbon-design-system/carbon-charts/commit/7a10ae867060b8719596fc51ccc455f14b8a8210))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
6
50
|
## [0.54.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.0...v0.54.1) (2022-01-05)
|
|
7
51
|
|
|
8
52
|
|