@carbon/charts 0.52.1 → 0.52.2

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 CHANGED
@@ -3,6 +3,17 @@
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.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.1...v0.52.2) (2021-11-19)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **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)
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.52.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.0...v0.52.1) (2021-11-19)
7
18
 
8
19
 
@@ -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;
@@ -4,6 +4,7 @@ export declare class Alluvial extends Component {
4
4
  type: string;
5
5
  renderType: RenderTypes;
6
6
  private graph;
7
+ gradient_id: string;
7
8
  render(animate?: boolean): void;
8
9
  addLineEventListener(): void;
9
10
  addNodeEventListener(): void;