@carbon/charts 0.54.4 → 0.54.8
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/demo/data/combo.d.ts +45 -0
- package/bundle.js +1 -1
- package/components/essentials/tooltip-axis.js +15 -9
- package/components/essentials/tooltip-axis.js.map +1 -1
- package/components/graphs/bar-stacked.js +1 -1
- package/components/graphs/bar-stacked.js.map +1 -1
- package/components/graphs/circle-pack.js +6 -3
- package/components/graphs/circle-pack.js.map +1 -1
- package/components/graphs/radar.js +7 -3
- package/components/graphs/radar.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/combo.d.ts +45 -0
- package/demo/data/combo.js +41 -0
- package/demo/data/combo.js.map +1 -1
- package/demo/data/index.js +5 -0
- package/demo/data/index.js.map +1 -1
- package/demo/styles.css.map +1 -1
- package/demo/styles.min.css.map +1 -1
- package/demo/tsconfig.tsbuildinfo +3 -3
- package/package.json +1 -1
- package/services/scales-cartesian.js +9 -4
- package/services/scales-cartesian.js.map +1 -1
- package/styles/_chart-holder.scss +2 -1
- package/styles/components/_skeleton.scss +0 -1
- package/styles-g10.css.map +1 -1
- package/styles-g10.min.css.map +1 -1
- package/styles-g100.css.map +1 -1
- package/styles-g100.min.css.map +1 -1
- package/styles-g90.css.map +1 -1
- package/styles-g90.min.css.map +1 -1
- package/styles.css.map +1 -1
- package/styles.min.css.map +1 -1
- package/tsconfig.tsbuildinfo +5 -5
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.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.7...v0.54.8) (2022-01-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core:** position bounds correctly in secondary axis of combo chart ([#1281](https://github.com/carbon-design-system/carbon-charts/issues/1281)) ([ab9b8e9](https://github.com/carbon-design-system/carbon-charts/commit/ab9b8e90a0e128f6c9a185091d06e62c35e90042)), closes [#1253](https://github.com/carbon-design-system/carbon-charts/issues/1253)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.54.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.6...v0.54.7) (2022-01-13)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **core:** prevent chart from breaking if thresholds array is empty ([#1267](https://github.com/carbon-design-system/carbon-charts/issues/1267)) ([f566213](https://github.com/carbon-design-system/carbon-charts/commit/f566213ba4bc5c515f0a8da65a85dd14452186be)), closes [#1264](https://github.com/carbon-design-system/carbon-charts/issues/1264)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [0.54.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.5...v0.54.6) (2022-01-13)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* **core:** prevent canvas zooming if depth equals 2 and canvas zoom property is set to false ([#1265](https://github.com/carbon-design-system/carbon-charts/issues/1265)) ([1f42fe0](https://github.com/carbon-design-system/carbon-charts/commit/1f42fe09461c5ad9809ecb30d3642728284d021d)), closes [#1251](https://github.com/carbon-design-system/carbon-charts/issues/1251)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## [0.54.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.4...v0.54.5) (2022-01-11)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
|
|
44
|
+
* **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)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
6
50
|
## [0.54.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.3...v0.54.4) (2022-01-10)
|
|
7
51
|
|
|
8
52
|
|
|
@@ -43,6 +43,51 @@ export declare const comboSimpleOptions: {
|
|
|
43
43
|
correspondingDatasets: string[];
|
|
44
44
|
})[];
|
|
45
45
|
};
|
|
46
|
+
export declare const comboSimpleFloatingData: ({
|
|
47
|
+
group: string;
|
|
48
|
+
date: string;
|
|
49
|
+
value: number;
|
|
50
|
+
temp?: undefined;
|
|
51
|
+
} | {
|
|
52
|
+
group: string;
|
|
53
|
+
date: string;
|
|
54
|
+
temp: number[];
|
|
55
|
+
value?: undefined;
|
|
56
|
+
})[];
|
|
57
|
+
export declare const comboSimpleFloatingOptions: {
|
|
58
|
+
title: string;
|
|
59
|
+
axes: {
|
|
60
|
+
left: {
|
|
61
|
+
mapsTo: string;
|
|
62
|
+
scaleType: string;
|
|
63
|
+
title: string;
|
|
64
|
+
correspondingDatasets: string[];
|
|
65
|
+
};
|
|
66
|
+
right: {
|
|
67
|
+
mapsTo: string;
|
|
68
|
+
title: string;
|
|
69
|
+
};
|
|
70
|
+
bottom: {
|
|
71
|
+
title: string;
|
|
72
|
+
mapsTo: string;
|
|
73
|
+
scaleType: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
comboChartTypes: ({
|
|
77
|
+
type: string;
|
|
78
|
+
correspondingDatasets: string[];
|
|
79
|
+
options?: undefined;
|
|
80
|
+
} | {
|
|
81
|
+
type: string;
|
|
82
|
+
options: {
|
|
83
|
+
points: {
|
|
84
|
+
radius: number;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
correspondingDatasets: string[];
|
|
88
|
+
})[];
|
|
89
|
+
height: string;
|
|
90
|
+
};
|
|
46
91
|
export declare const comboHorizontalData: ({
|
|
47
92
|
group: string;
|
|
48
93
|
date: string;
|