@carbon/charts 0.54.5 → 0.54.6

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.54.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.5...v0.54.6) (2022-01-13)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** prevent canvas zooming if depth equals 2 and canvas zoom property is set to false ([#1265](https://github.com/carbon-design-system/carbon-charts/issues/1265)) ([1f42fe0](https://github.com/carbon-design-system/carbon-charts/commit/1f42fe09461c5ad9809ecb30d3642728284d021d)), closes [#1251](https://github.com/carbon-design-system/carbon-charts/issues/1251)
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.54.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.4...v0.54.5) (2022-01-11)
7
18
 
8
19
 
@@ -43,6 +43,51 @@ export declare const comboSimpleOptions: {
43
43
  correspondingDatasets: string[];
44
44
  })[];
45
45
  };
46
+ export declare const comboSimpleFloatingData: ({
47
+ group: string;
48
+ date: string;
49
+ value: number;
50
+ temp?: undefined;
51
+ } | {
52
+ group: string;
53
+ date: string;
54
+ temp: number[];
55
+ value?: undefined;
56
+ })[];
57
+ export declare const comboSimpleFloatingOptions: {
58
+ title: string;
59
+ axes: {
60
+ left: {
61
+ mapsTo: string;
62
+ scaleType: string;
63
+ title: string;
64
+ correspondingDatasets: string[];
65
+ };
66
+ right: {
67
+ mapsTo: string;
68
+ title: string;
69
+ };
70
+ bottom: {
71
+ title: string;
72
+ mapsTo: string;
73
+ scaleType: string;
74
+ };
75
+ };
76
+ comboChartTypes: ({
77
+ type: string;
78
+ correspondingDatasets: string[];
79
+ options?: undefined;
80
+ } | {
81
+ type: string;
82
+ options: {
83
+ points: {
84
+ radius: number;
85
+ };
86
+ };
87
+ correspondingDatasets: string[];
88
+ })[];
89
+ height: string;
90
+ };
46
91
  export declare const comboHorizontalData: ({
47
92
  group: string;
48
93
  date: string;