@carbon/charts 0.41.56 → 0.41.57
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 +8 -19
- package/build/demo/data/line.d.ts +19 -0
- package/bundle.js +1 -1
- package/components/essentials/legend.js +1 -2
- package/components/essentials/legend.js.map +1 -1
- package/demo/data/area.js +1 -1
- package/demo/data/area.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/index.js +5 -0
- package/demo/data/index.js.map +1 -1
- package/demo/data/line.d.ts +19 -0
- package/demo/data/line.js +19 -0
- package/demo/data/line.js.map +1 -1
- package/demo/tsconfig.tsbuildinfo +4 -4
- package/package.json +1 -1
- package/tools.js.map +1 -1
- package/tsconfig.tsbuildinfo +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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.41.
|
|
6
|
+
## [0.41.57](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.56...v0.41.57) (2021-04-20)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @carbon/charts
|
|
9
9
|
|
|
@@ -11,22 +11,23 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
# Change Log
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
17
18
|
|
|
19
|
+
## [0.41.56](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.55...v0.41.56) (2021-04-16)
|
|
18
20
|
|
|
21
|
+
**Note:** Version bump only for package @carbon/charts
|
|
19
22
|
|
|
23
|
+
## [0.41.55](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.54...v0.41.55) (2021-04-14)
|
|
20
24
|
|
|
25
|
+
**Note:** Version bump only for package @carbon/charts
|
|
21
26
|
|
|
22
27
|
## [0.41.54](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.53...v0.41.54) (2021-04-14)
|
|
23
28
|
|
|
24
29
|
**Note:** Version bump only for package @carbon/charts
|
|
25
30
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
31
|
# Change Log
|
|
31
32
|
|
|
32
33
|
All notable changes to this project will be documented in this file. See
|
|
@@ -36,26 +37,14 @@ All notable changes to this project will be documented in this file. See
|
|
|
36
37
|
|
|
37
38
|
**Note:** Version bump only for package @carbon/charts
|
|
38
39
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
40
|
## [0.41.52](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.51...v0.41.52) (2021-04-12)
|
|
44
41
|
|
|
45
42
|
**Note:** Version bump only for package @carbon/charts
|
|
46
43
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
44
|
## [0.41.51](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.50...v0.41.51) (2021-04-12)
|
|
52
45
|
|
|
53
46
|
**Note:** Version bump only for package @carbon/charts
|
|
54
47
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
48
|
# Change Log
|
|
60
49
|
|
|
61
50
|
All notable changes to this project will be documented in this file. See
|
|
@@ -320,3 +320,22 @@ export declare const dualLine: {
|
|
|
320
320
|
};
|
|
321
321
|
curve: string;
|
|
322
322
|
};
|
|
323
|
+
export declare const lineOptionsLegendOrientation: {
|
|
324
|
+
title: string;
|
|
325
|
+
axes: {
|
|
326
|
+
bottom: {
|
|
327
|
+
title: string;
|
|
328
|
+
mapsTo: string;
|
|
329
|
+
scaleType: string;
|
|
330
|
+
};
|
|
331
|
+
left: {
|
|
332
|
+
mapsTo: string;
|
|
333
|
+
title: string;
|
|
334
|
+
scaleType: string;
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
legend: {
|
|
338
|
+
position: string;
|
|
339
|
+
orientation: string;
|
|
340
|
+
};
|
|
341
|
+
};
|