@carbon/charts 0.51.4 → 0.52.3
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/essentials/modal.d.ts +0 -1
- package/build/src/components/graphs/alluvial.d.ts +1 -0
- package/build/src/configuration-non-customizable.d.ts +1 -0
- package/build/src/services/essentials/files.d.ts +1 -1
- package/bundle.js +1 -1
- package/chart.js +1 -0
- package/chart.js.map +1 -1
- package/charts/combo.js.map +1 -1
- package/components/component.js +6 -2
- package/components/component.js.map +1 -1
- package/components/essentials/modal.d.ts +0 -1
- package/components/essentials/modal.js +0 -5
- package/components/essentials/modal.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/bar-stacked.js +1 -1
- package/components/graphs/bar-stacked.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/hightlight.js +1 -1
- package/demo/data/hightlight.js.map +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/styles.css +4 -0
- package/demo/styles.css.map +1 -1
- package/demo/styles.min.css +1 -1
- package/demo/styles.min.css.map +1 -1
- package/demo/tsconfig.tsbuildinfo +6 -6
- package/model/meter.js +11 -2
- package/model/meter.js.map +1 -1
- package/package.json +1 -1
- package/services/essentials/files.d.ts +1 -1
- package/services/essentials/files.js +4 -4
- package/services/essentials/files.js.map +1 -1
- package/services/service.js +6 -2
- package/services/service.js.map +1 -1
- package/styles/components/_highlights.scss +1 -0
- package/styles-g10.css +1 -0
- package/styles-g10.css.map +1 -1
- package/styles-g10.min.css +1 -1
- package/styles-g10.min.css.map +1 -1
- package/styles-g100.css +1 -0
- package/styles-g100.css.map +1 -1
- package/styles-g100.min.css +1 -1
- package/styles-g100.min.css.map +1 -1
- package/styles-g90.css +1 -0
- package/styles-g90.css.map +1 -1
- package/styles-g90.min.css +1 -1
- package/styles-g90.min.css.map +1 -1
- package/styles.css +1 -0
- package/styles.css.map +1 -1
- package/styles.min.css +1 -1
- package/styles.min.css.map +1 -1
- package/tsconfig.tsbuildinfo +16 -16
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.52.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.2...v0.52.3) (2021-11-22)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.52.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.1...v0.52.2) (2021-11-19)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **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)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [0.52.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.0...v0.52.1) (2021-11-19)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **core:** set pointer events of highlight elements to none ([#1220](https://github.com/carbon-design-system/carbon-charts/issues/1220)) ([5594054](https://github.com/carbon-design-system/carbon-charts/commit/5594054f791e4bd48b121104a3280e9934d90d6f)), closes [#1212](https://github.com/carbon-design-system/carbon-charts/issues/1212)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# [0.52.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.51.4...v0.52.0) (2021-11-18)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package @carbon/charts
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
## [0.51.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.51.3...v0.51.4) (2021-11-16)
|
|
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;
|
|
@@ -6,7 +6,6 @@ export declare class Modal extends Component {
|
|
|
6
6
|
modal: any;
|
|
7
7
|
constructor(model: ChartModel, services: any, configs?: any);
|
|
8
8
|
handleShowModal: () => void;
|
|
9
|
-
handleHideModal: () => void;
|
|
10
9
|
addEventListeners(): void;
|
|
11
10
|
removeEventListeners(): void;
|
|
12
11
|
getModalHTML(): string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Service } from '../service';
|
|
2
2
|
export declare class Files extends Service {
|
|
3
3
|
constructor(model: any, services: any);
|
|
4
|
-
downloadCSV(content: any, filename: any
|
|
4
|
+
downloadCSV(content: any, filename: any): void;
|
|
5
5
|
downloadImage(uri: any, name: any): void;
|
|
6
6
|
}
|