@carbon/charts 0.52.1 → 0.53.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 +38 -0
- package/build/demo/data/alluvial.d.ts +34 -2
- package/build/demo/data/meter.d.ts +22 -0
- package/build/src/components/graphs/alluvial.d.ts +1 -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/alluvial.d.ts +1 -0
- package/components/graphs/alluvial.js +46 -4
- package/components/graphs/alluvial.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/alluvial.d.ts +34 -2
- package/demo/data/alluvial.js +175 -17
- package/demo/data/alluvial.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/index.js +11 -1
- 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 +5 -5
- package/model/meter.js +11 -2
- package/model/meter.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +8 -8
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.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.4...v0.53.0) (2021-12-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.52.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.3...v0.52.4) (2021-12-01)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **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))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [0.52.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.2...v0.52.3) (2021-11-22)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @carbon/charts
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [0.52.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.1...v0.52.2) (2021-11-19)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* **core:** add linear gradient support to alluvial links ([#1192](https://github.com/carbon-design-system/carbon-charts/issues/1192)) ([f2170b1](https://github.com/carbon-design-system/carbon-charts/commit/f2170b15b78797e0fcced2367b5b60c2b4e3a332)), closes [#1189](https://github.com/carbon-design-system/carbon-charts/issues/1189)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
## [0.52.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.0...v0.52.1) (2021-11-19)
|
|
7
45
|
|
|
8
46
|
|
|
@@ -6,12 +6,12 @@ export declare const alluvialSimpleData: {
|
|
|
6
6
|
export declare const alluvialSimpleOptions: {
|
|
7
7
|
title: string;
|
|
8
8
|
alluvial: {
|
|
9
|
-
units: string;
|
|
10
9
|
nodes: {
|
|
11
10
|
name: string;
|
|
12
11
|
category: string;
|
|
13
12
|
}[];
|
|
14
13
|
};
|
|
14
|
+
height: string;
|
|
15
15
|
};
|
|
16
16
|
export declare const alluvialSimpleCustomColorOptions: {
|
|
17
17
|
title: string;
|
|
@@ -23,12 +23,44 @@ export declare const alluvialSimpleCustomColorOptions: {
|
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
alluvial: {
|
|
26
|
-
units: string;
|
|
27
26
|
nodes: {
|
|
28
27
|
name: string;
|
|
29
28
|
category: string;
|
|
30
29
|
}[];
|
|
31
30
|
};
|
|
31
|
+
height: string;
|
|
32
|
+
};
|
|
33
|
+
export declare const alluvialGradientData: {
|
|
34
|
+
source: string;
|
|
35
|
+
target: string;
|
|
36
|
+
value: number;
|
|
37
|
+
}[];
|
|
38
|
+
export declare const alluvialSimpleGradientOptions: {
|
|
39
|
+
title: string;
|
|
40
|
+
color: {
|
|
41
|
+
scale: {
|
|
42
|
+
Cards: string;
|
|
43
|
+
'About Modal': string;
|
|
44
|
+
'Create Flow': string;
|
|
45
|
+
'Page Header': string;
|
|
46
|
+
Notifications: string;
|
|
47
|
+
'Data and AI, AI Apps': string;
|
|
48
|
+
'Data and AI, Info Architecture': string;
|
|
49
|
+
Security: string;
|
|
50
|
+
Automation: string;
|
|
51
|
+
'Public Cloud': string;
|
|
52
|
+
};
|
|
53
|
+
gradient: {
|
|
54
|
+
enabled: boolean;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
alluvial: {
|
|
58
|
+
nodes: {
|
|
59
|
+
name: string;
|
|
60
|
+
category: string;
|
|
61
|
+
}[];
|
|
62
|
+
};
|
|
63
|
+
height: string;
|
|
32
64
|
};
|
|
33
65
|
export declare const alluvialMultipleCategoryOptions: {
|
|
34
66
|
title: string;
|
|
@@ -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;
|