@carbon/charts 0.52.2 → 0.53.1
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 +38 -0
- package/build/demo/data/meter.d.ts +22 -0
- package/build/src/configuration-non-customizable.d.ts +1 -0
- package/bundle.js +1 -1
- package/components/axes/zoom-bar.js +1 -1
- package/components/axes/zoom-bar.js.map +1 -1
- package/components/essentials/title-meter.js +7 -4
- package/components/essentials/title-meter.js.map +1 -1
- package/components/graphs/meter.js +9 -5
- package/components/graphs/meter.js.map +1 -1
- package/configuration-non-customizable.d.ts +1 -0
- package/configuration-non-customizable.js +1 -0
- package/configuration-non-customizable.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/index.js +5 -0
- package/demo/data/index.js.map +1 -1
- package/demo/data/meter.d.ts +22 -0
- package/demo/data/meter.js +32 -0
- package/demo/data/meter.js.map +1 -1
- package/demo/tsconfig.tsbuildinfo +3 -3
- package/model/meter.js +11 -2
- package/model/meter.js.map +1 -1
- package/model/model.js +3 -1
- package/model/model.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,44 @@
|
|
|
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.53.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.0...v0.53.1) (2021-12-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core:** display the correct group when hovering over scatter point ([#1233](https://github.com/carbon-design-system/carbon-charts/issues/1233)) ([dcb5357](https://github.com/carbon-design-system/carbon-charts/commit/dcb5357a470789bbdecb97a2f0fccfa999b0c837)), closes [#1188](https://github.com/carbon-design-system/carbon-charts/issues/1188)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.53.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.4...v0.53.0) (2021-12-01)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @carbon/charts
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [0.52.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.3...v0.52.4) (2021-12-01)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **core:** set zoom domain if old initial zoom domain is undefined ([#1230](https://github.com/carbon-design-system/carbon-charts/issues/1230)) ([6d2bb01](https://github.com/carbon-design-system/carbon-charts/commit/6d2bb014a571dc8a9e6691b6b75c0736ab90b5c5))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## [0.52.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.2...v0.52.3) (2021-11-22)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package @carbon/charts
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
## [0.52.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.1...v0.52.2) (2021-11-19)
|
|
7
45
|
|
|
8
46
|
|
|
@@ -59,6 +59,28 @@ export declare const propMeterOptions: {
|
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
};
|
|
62
|
+
export declare const propMeterStatusOptions: {
|
|
63
|
+
title: string;
|
|
64
|
+
height: string;
|
|
65
|
+
meter: {
|
|
66
|
+
peak: number;
|
|
67
|
+
proportional: {
|
|
68
|
+
total: number;
|
|
69
|
+
unit: string;
|
|
70
|
+
};
|
|
71
|
+
status: {
|
|
72
|
+
ranges: {
|
|
73
|
+
range: number[];
|
|
74
|
+
status: string;
|
|
75
|
+
}[];
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
color: {
|
|
79
|
+
pairing: {
|
|
80
|
+
option: number;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
62
84
|
export declare const propMeterTruncationOptions: {
|
|
63
85
|
title: string;
|
|
64
86
|
height: string;
|