@carbon/charts 0.50.0 → 0.50.4

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,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.50.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.3...v0.50.4) (2021-10-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** allow users to assign custom colors to the links of source nodes ([#1178](https://github.com/carbon-design-system/carbon-charts/issues/1178)) ([bec1cc7](https://github.com/carbon-design-system/carbon-charts/commit/bec1cc736dec36fd8ed26a1ade1ac9f375e3849c)), closes [#1175](https://github.com/carbon-design-system/carbon-charts/issues/1175)
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.50.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.2...v0.50.3) (2021-10-04)
18
+
19
+ **Note:** Version bump only for package @carbon/charts
20
+
21
+
22
+
23
+
24
+
25
+ ## [0.50.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.1...v0.50.2) (2021-10-04)
26
+
27
+ **Note:** Version bump only for package @carbon/charts
28
+
29
+
30
+
31
+
32
+
33
+ ## [0.50.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.0...v0.50.1) (2021-10-01)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * **styles:** use `map-get` in `_type.scss` ([#1171](https://github.com/carbon-design-system/carbon-charts/issues/1171)) ([5d3da4c](https://github.com/carbon-design-system/carbon-charts/commit/5d3da4c08321d9ac0dcf9687cee1b6ab77d06163))
39
+
40
+
41
+
42
+
43
+
6
44
  # [0.50.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.7...v0.50.0) (2021-09-30)
7
45
 
8
46
 
@@ -13,6 +13,23 @@ export declare const alluvialSimpleOptions: {
13
13
  }[];
14
14
  };
15
15
  };
16
+ export declare const alluvialSimpleCustomColorOptions: {
17
+ title: string;
18
+ color: {
19
+ scale: {
20
+ A: string;
21
+ B: string;
22
+ C: string;
23
+ };
24
+ };
25
+ alluvial: {
26
+ units: string;
27
+ nodes: {
28
+ name: string;
29
+ category: string;
30
+ }[];
31
+ };
32
+ };
16
33
  export declare const alluvialMultipleCategoryOptions: {
17
34
  title: string;
18
35
  alluvial: {
@@ -183,39 +183,6 @@ export declare const boundedAreaTimeSeriesOptions: {
183
183
  };
184
184
  curve: string;
185
185
  };
186
- export declare const boundedAreaTimeSeriesWithHighlightsOptions: {
187
- title: string;
188
- legend: {
189
- enabled: boolean;
190
- };
191
- bounds: {
192
- upperBoundMapsTo: string;
193
- lowerBoundMapsTo: string;
194
- };
195
- axes: {
196
- bottom: {
197
- title: string;
198
- mapsTo: string;
199
- scaleType: string;
200
- highlights: {
201
- highlightStartMapsTo: string;
202
- highlightEndMapsTo: string;
203
- labelMapsTo: string;
204
- data: {
205
- startHighlight: Date;
206
- label: string;
207
- endHighlight: Date;
208
- }[];
209
- };
210
- };
211
- left: {
212
- mapsTo: string;
213
- scaleType: string;
214
- };
215
- };
216
- curve: string;
217
- };
218
- export declare const boundedAreaTimeSeriesWithHighlightsZoomOptions: any;
219
186
  export declare const areaEmptyData: any[];
220
187
  export declare const areaEmptyOptions: {
221
188
  title: string;
@@ -0,0 +1,40 @@
1
+ export declare const highlightBoundedAreaTimeSeriesData: {
2
+ group: string;
3
+ date: Date;
4
+ value: number;
5
+ min: number;
6
+ max: number;
7
+ }[];
8
+ export declare const boundedAreaTimeSeriesWithHighlightsOptions: {
9
+ title: string;
10
+ legend: {
11
+ enabled: boolean;
12
+ };
13
+ bounds: {
14
+ upperBoundMapsTo: string;
15
+ lowerBoundMapsTo: string;
16
+ };
17
+ axes: {
18
+ bottom: {
19
+ title: string;
20
+ mapsTo: string;
21
+ scaleType: string;
22
+ highlights: {
23
+ highlightStartMapsTo: string;
24
+ highlightEndMapsTo: string;
25
+ labelMapsTo: string;
26
+ data: {
27
+ startHighlight: Date;
28
+ label: string;
29
+ endHighlight: Date;
30
+ }[];
31
+ };
32
+ };
33
+ left: {
34
+ mapsTo: string;
35
+ scaleType: string;
36
+ };
37
+ };
38
+ curve: string;
39
+ };
40
+ export declare const boundedAreaTimeSeriesWithHighlightsZoomOptions: any;