@carbon/charts 0.55.0 → 0.57.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 CHANGED
@@ -3,6 +3,33 @@
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.57.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.56.0...v0.57.0) (2022-04-11)
7
+
8
+ **Note:** Version bump only for package @carbon/charts
9
+
10
+
11
+
12
+
13
+
14
+ # [0.56.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.55.1...v0.56.0) (2022-03-28)
15
+
16
+
17
+ ### Features
18
+
19
+ * **core:** add alignment option to alluvial ([#1305](https://github.com/carbon-design-system/carbon-charts/issues/1305)) ([61ad7d4](https://github.com/carbon-design-system/carbon-charts/commit/61ad7d4d6a80b56187310b8062f206f3a5c49c55))
20
+
21
+
22
+
23
+
24
+
25
+ ## [0.55.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.55.0...v0.55.1) (2022-03-14)
26
+
27
+ **Note:** Version bump only for package @carbon/charts
28
+
29
+
30
+
31
+
32
+
6
33
  # [0.55.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.14...v0.55.0) (2022-03-14)
7
34
 
8
35
 
@@ -76,6 +76,21 @@ export declare const alluvialMultipleCategoryData: {
76
76
  target: string;
77
77
  value: number;
78
78
  }[];
79
+ export declare const alluvialNodeAlignmentData: {
80
+ source: string;
81
+ target: string;
82
+ value: number;
83
+ }[];
84
+ export declare const alluvialNodeAlignmentOptions: {
85
+ title: string;
86
+ alluvial: {
87
+ nodes: {
88
+ name: string;
89
+ category: string;
90
+ }[];
91
+ nodeAlignment: string;
92
+ };
93
+ };
79
94
  export declare const alluvialMonochromeData: {
80
95
  source: string;
81
96
  target: string;
@@ -432,6 +432,10 @@ export interface AlluvialChartOptions extends BaseChartOptions {
432
432
  name: string;
433
433
  category?: string;
434
434
  }>;
435
+ /**
436
+ * Node alignment (Default is center)
437
+ */
438
+ nodeAlignment?: Alignments;
435
439
  /**
436
440
  * Set the node padding
437
441
  */