@carbon/charts-vue 1.15.6 → 1.15.7

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.
Files changed (31) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/dist/components/CcvAlluvialChart.d.ts +16 -15
  3. package/dist/components/CcvAreaChart.d.ts +16 -15
  4. package/dist/components/CcvBoxplotChart.d.ts +16 -16
  5. package/dist/components/CcvBubbleChart.d.ts +16 -15
  6. package/dist/components/CcvBulletChart.d.ts +16 -15
  7. package/dist/components/CcvChoroplethChart.d.ts +16 -15
  8. package/dist/components/CcvCirclePackChart.d.ts +16 -15
  9. package/dist/components/CcvComboChart.d.ts +16 -15
  10. package/dist/components/CcvDonutChart.d.ts +16 -15
  11. package/dist/components/CcvGaugeChart.d.ts +16 -15
  12. package/dist/components/CcvGroupedBarChart.d.ts +16 -15
  13. package/dist/components/CcvHeatmapChart.d.ts +16 -15
  14. package/dist/components/CcvHistogramChart.d.ts +16 -15
  15. package/dist/components/CcvLineChart.d.ts +16 -15
  16. package/dist/components/CcvLollipopChart.d.ts +16 -16
  17. package/dist/components/CcvMeterChart.d.ts +16 -15
  18. package/dist/components/CcvPieChart.d.ts +16 -15
  19. package/dist/components/CcvRadarChart.d.ts +16 -15
  20. package/dist/components/CcvScatterChart.d.ts +16 -15
  21. package/dist/components/CcvSimpleBarChart.d.ts +16 -15
  22. package/dist/components/CcvStackedAreaChart.d.ts +16 -15
  23. package/dist/components/CcvStackedBarChart.d.ts +16 -15
  24. package/dist/components/CcvTreeChart.d.ts +16 -15
  25. package/dist/components/CcvTreemapChart.d.ts +16 -16
  26. package/dist/components/CcvWordCloudChart.d.ts +16 -15
  27. package/dist/components/chartFactory.d.ts +13 -12
  28. package/dist/index.d.ts +1 -0
  29. package/dist/index.mjs +2955 -2955
  30. package/dist/index.mjs.map +1 -1
  31. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 1.15.7 (2024-04-18)
7
+
8
+ **Note:** Version bump only for package @carbon/charts-vue
9
+
10
+ # Change Log
11
+
12
+ All notable changes to this project will be documented in this file. See
13
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
14
+
6
15
  ## 1.15.6 (2024-04-11)
7
16
 
8
17
  ### Bug Fixes
@@ -1,7 +1,8 @@
1
- import { type AlluvialChartOptions } from '@carbon/charts';
1
+ import { AlluvialChartOptions } from '@carbon/charts';
2
+
2
3
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
3
4
  data: {
4
- type: () => import("@carbon/charts").ChartTabularData;
5
+ type: () => import('@carbon/charts').ChartTabularData;
5
6
  required: true;
6
7
  };
7
8
  options: {
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
12
13
  chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
13
14
  components: {
14
15
  type: string;
15
- renderType: import("@carbon/charts").RenderTypes;
16
+ renderType: import('@carbon/charts').RenderTypes;
16
17
  id: string;
17
18
  init: () => void;
18
19
  render: (animate?: boolean | undefined) => void;
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
20
21
  setModel: (newObj: any) => void;
21
22
  setServices: (newObj: any) => void;
22
23
  setParent: (parent: any) => void;
23
- getParent: () => import("d3-selection").Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
+ getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
25
  getComponentContainer: (configs?: {
25
26
  withinChartClip: boolean;
26
- } | undefined) => import("d3-selection").Selection<any, any, Element, any>;
27
+ } | undefined) => import('d3-selection').Selection<any, any, Element, any>;
27
28
  getOptions: () => any;
28
29
  }[];
29
30
  services: any;
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
42
43
  getDataGroupNames: (groups?: any) => any;
43
44
  getActiveDataGroupNames: (groups?: any) => any;
44
45
  getBinConfigurations: () => {
45
- bins: import("d3-array").Bin<number, number>[];
46
+ bins: import('d3-array').Bin<number, number>[];
46
47
  binsDomain: any[];
47
48
  };
48
- getBinnedStackedData: () => import("d3").SeriesPoint<{
49
+ getBinnedStackedData: () => import('d3').SeriesPoint<{
49
50
  [key: string]: number;
50
51
  }>[][];
51
52
  getGroupedData: (groups?: any) => {
52
53
  name: string;
53
54
  data: any;
54
55
  }[];
55
- getStackKeys: ({ bins, groups }?: import("@carbon/charts").StackKeysParams | undefined) => any;
56
- getDataValuesGroupedByKeys: ({ bins, groups }: import("@carbon/charts").StackKeysParams) => any;
57
- getStackedData: ({ percentage, groups, divergent }: import("@carbon/charts").StackKeysParams) => any[][];
56
+ getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
57
+ getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
58
+ getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
58
59
  getOptions: () => any;
59
60
  set: (newState: any, configs?: any) => void;
60
61
  get: (property?: string | undefined) => any;
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
66
67
  getStrokeColor: (group: any, key?: any, data?: any) => any;
67
68
  isUserProvidedColorScaleValid: () => any;
68
69
  getColorClassName: (configs: {
69
- classNameTypes?: import("@carbon/charts").ColorClassNameTypes[] | undefined;
70
+ classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
70
71
  dataGroupName?: string | number | undefined;
71
72
  originalClassName?: string | undefined;
72
73
  value?: number | undefined;
73
74
  }) => string;
74
75
  getStatus: () => any;
75
76
  getAllDataGroupsNames: () => string[];
76
- getTabularDataArray: () => import("@carbon/charts").ChartTabularData;
77
+ getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
77
78
  exportToCSV: () => void;
78
79
  };
79
- init: (holder: HTMLDivElement, chartConfigs: import("@carbon/charts").ChartConfig<import("@carbon/charts").BaseChartOptions>) => void;
80
- getComponents: () => import("@carbon/charts").Component[];
80
+ init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
81
+ getComponents: () => import('@carbon/charts').Component[];
81
82
  update: (animate?: boolean | undefined) => void;
82
83
  destroy: () => void;
83
84
  } | null>;
84
85
  chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
85
86
  }, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
86
87
  data: {
87
- type: () => import("@carbon/charts").ChartTabularData;
88
+ type: () => import('@carbon/charts').ChartTabularData;
88
89
  required: true;
89
90
  };
90
91
  options: {
@@ -1,7 +1,8 @@
1
- import { type AreaChartOptions } from '@carbon/charts';
1
+ import { AreaChartOptions } from '@carbon/charts';
2
+
2
3
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
3
4
  data: {
4
- type: () => import("@carbon/charts").ChartTabularData;
5
+ type: () => import('@carbon/charts').ChartTabularData;
5
6
  required: true;
6
7
  };
7
8
  options: {
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
12
13
  chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
13
14
  components: {
14
15
  type: string;
15
- renderType: import("@carbon/charts").RenderTypes;
16
+ renderType: import('@carbon/charts').RenderTypes;
16
17
  id: string;
17
18
  init: () => void;
18
19
  render: (animate?: boolean | undefined) => void;
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
20
21
  setModel: (newObj: any) => void;
21
22
  setServices: (newObj: any) => void;
22
23
  setParent: (parent: any) => void;
23
- getParent: () => import("d3-selection").Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
+ getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
25
  getComponentContainer: (configs?: {
25
26
  withinChartClip: boolean;
26
- } | undefined) => import("d3-selection").Selection<any, any, Element, any>;
27
+ } | undefined) => import('d3-selection').Selection<any, any, Element, any>;
27
28
  getOptions: () => any;
28
29
  }[];
29
30
  services: any;
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
42
43
  getDataGroupNames: (groups?: any) => any;
43
44
  getActiveDataGroupNames: (groups?: any) => any;
44
45
  getBinConfigurations: () => {
45
- bins: import("d3-array").Bin<number, number>[];
46
+ bins: import('d3-array').Bin<number, number>[];
46
47
  binsDomain: any[];
47
48
  };
48
- getBinnedStackedData: () => import("d3").SeriesPoint<{
49
+ getBinnedStackedData: () => import('d3').SeriesPoint<{
49
50
  [key: string]: number;
50
51
  }>[][];
51
52
  getGroupedData: (groups?: any) => {
52
53
  name: string;
53
54
  data: any;
54
55
  }[];
55
- getStackKeys: ({ bins, groups }?: import("@carbon/charts").StackKeysParams | undefined) => any;
56
- getDataValuesGroupedByKeys: ({ bins, groups }: import("@carbon/charts").StackKeysParams) => any;
57
- getStackedData: ({ percentage, groups, divergent }: import("@carbon/charts").StackKeysParams) => any[][];
56
+ getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
57
+ getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
58
+ getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
58
59
  getOptions: () => any;
59
60
  set: (newState: any, configs?: any) => void;
60
61
  get: (property?: string | undefined) => any;
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
66
67
  getStrokeColor: (group: any, key?: any, data?: any) => any;
67
68
  isUserProvidedColorScaleValid: () => any;
68
69
  getColorClassName: (configs: {
69
- classNameTypes?: import("@carbon/charts").ColorClassNameTypes[] | undefined;
70
+ classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
70
71
  dataGroupName?: string | number | undefined;
71
72
  originalClassName?: string | undefined;
72
73
  value?: number | undefined;
73
74
  }) => string;
74
75
  getStatus: () => any;
75
76
  getAllDataGroupsNames: () => string[];
76
- getTabularDataArray: () => import("@carbon/charts").ChartTabularData;
77
+ getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
77
78
  exportToCSV: () => void;
78
79
  };
79
- init: (holder: HTMLDivElement, chartConfigs: import("@carbon/charts").ChartConfig<import("@carbon/charts").BaseChartOptions>) => void;
80
- getComponents: () => import("@carbon/charts").Component[];
80
+ init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
81
+ getComponents: () => import('@carbon/charts').Component[];
81
82
  update: (animate?: boolean | undefined) => void;
82
83
  destroy: () => void;
83
84
  } | null>;
84
85
  chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
85
86
  }, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
86
87
  data: {
87
- type: () => import("@carbon/charts").ChartTabularData;
88
+ type: () => import('@carbon/charts').ChartTabularData;
88
89
  required: true;
89
90
  };
90
91
  options: {
@@ -1,17 +1,17 @@
1
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
2
2
  data: {
3
- type: () => import("@carbon/charts").ChartTabularData;
3
+ type: () => import('@carbon/charts').ChartTabularData;
4
4
  required: true;
5
5
  };
6
6
  options: {
7
- type: () => import("@carbon/charts").AxisChartOptions;
7
+ type: () => import('@carbon/charts').AxisChartOptions;
8
8
  required: true;
9
9
  };
10
10
  }, {
11
11
  chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
12
12
  components: {
13
13
  type: string;
14
- renderType: import("@carbon/charts").RenderTypes;
14
+ renderType: import('@carbon/charts').RenderTypes;
15
15
  id: string;
16
16
  init: () => void;
17
17
  render: (animate?: boolean | undefined) => void;
@@ -19,10 +19,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
19
19
  setModel: (newObj: any) => void;
20
20
  setServices: (newObj: any) => void;
21
21
  setParent: (parent: any) => void;
22
- getParent: () => import("d3-selection").Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
22
+ getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
23
23
  getComponentContainer: (configs?: {
24
24
  withinChartClip: boolean;
25
- } | undefined) => import("d3-selection").Selection<any, any, Element, any>;
25
+ } | undefined) => import('d3-selection').Selection<any, any, Element, any>;
26
26
  getOptions: () => any;
27
27
  }[];
28
28
  services: any;
@@ -41,19 +41,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
41
41
  getDataGroupNames: (groups?: any) => any;
42
42
  getActiveDataGroupNames: (groups?: any) => any;
43
43
  getBinConfigurations: () => {
44
- bins: import("d3-array").Bin<number, number>[];
44
+ bins: import('d3-array').Bin<number, number>[];
45
45
  binsDomain: any[];
46
46
  };
47
- getBinnedStackedData: () => import("d3").SeriesPoint<{
47
+ getBinnedStackedData: () => import('d3').SeriesPoint<{
48
48
  [key: string]: number;
49
49
  }>[][];
50
50
  getGroupedData: (groups?: any) => {
51
51
  name: string;
52
52
  data: any;
53
53
  }[];
54
- getStackKeys: ({ bins, groups }?: import("@carbon/charts").StackKeysParams | undefined) => any;
55
- getDataValuesGroupedByKeys: ({ bins, groups }: import("@carbon/charts").StackKeysParams) => any;
56
- getStackedData: ({ percentage, groups, divergent }: import("@carbon/charts").StackKeysParams) => any[][];
54
+ getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
55
+ getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
56
+ getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
57
57
  getOptions: () => any;
58
58
  set: (newState: any, configs?: any) => void;
59
59
  get: (property?: string | undefined) => any;
@@ -65,29 +65,29 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
65
65
  getStrokeColor: (group: any, key?: any, data?: any) => any;
66
66
  isUserProvidedColorScaleValid: () => any;
67
67
  getColorClassName: (configs: {
68
- classNameTypes?: import("@carbon/charts").ColorClassNameTypes[] | undefined;
68
+ classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
69
69
  dataGroupName?: string | number | undefined;
70
70
  originalClassName?: string | undefined;
71
71
  value?: number | undefined;
72
72
  }) => string;
73
73
  getStatus: () => any;
74
74
  getAllDataGroupsNames: () => string[];
75
- getTabularDataArray: () => import("@carbon/charts").ChartTabularData;
75
+ getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
76
76
  exportToCSV: () => void;
77
77
  };
78
- init: (holder: HTMLDivElement, chartConfigs: import("@carbon/charts").ChartConfig<import("@carbon/charts").BaseChartOptions>) => void;
79
- getComponents: () => import("@carbon/charts").Component[];
78
+ init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
79
+ getComponents: () => import('@carbon/charts').Component[];
80
80
  update: (animate?: boolean | undefined) => void;
81
81
  destroy: () => void;
82
82
  } | null>;
83
83
  chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
84
84
  }, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
85
85
  data: {
86
- type: () => import("@carbon/charts").ChartTabularData;
86
+ type: () => import('@carbon/charts').ChartTabularData;
87
87
  required: true;
88
88
  };
89
89
  options: {
90
- type: () => import("@carbon/charts").AxisChartOptions;
90
+ type: () => import('@carbon/charts').AxisChartOptions;
91
91
  required: true;
92
92
  };
93
93
  }>>, {}, {}>;
@@ -1,7 +1,8 @@
1
- import { type BubbleChartOptions } from '@carbon/charts';
1
+ import { BubbleChartOptions } from '@carbon/charts';
2
+
2
3
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
3
4
  data: {
4
- type: () => import("@carbon/charts").ChartTabularData;
5
+ type: () => import('@carbon/charts').ChartTabularData;
5
6
  required: true;
6
7
  };
7
8
  options: {
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
12
13
  chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
13
14
  components: {
14
15
  type: string;
15
- renderType: import("@carbon/charts").RenderTypes;
16
+ renderType: import('@carbon/charts').RenderTypes;
16
17
  id: string;
17
18
  init: () => void;
18
19
  render: (animate?: boolean | undefined) => void;
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
20
21
  setModel: (newObj: any) => void;
21
22
  setServices: (newObj: any) => void;
22
23
  setParent: (parent: any) => void;
23
- getParent: () => import("d3-selection").Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
+ getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
25
  getComponentContainer: (configs?: {
25
26
  withinChartClip: boolean;
26
- } | undefined) => import("d3-selection").Selection<any, any, Element, any>;
27
+ } | undefined) => import('d3-selection').Selection<any, any, Element, any>;
27
28
  getOptions: () => any;
28
29
  }[];
29
30
  services: any;
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
42
43
  getDataGroupNames: (groups?: any) => any;
43
44
  getActiveDataGroupNames: (groups?: any) => any;
44
45
  getBinConfigurations: () => {
45
- bins: import("d3-array").Bin<number, number>[];
46
+ bins: import('d3-array').Bin<number, number>[];
46
47
  binsDomain: any[];
47
48
  };
48
- getBinnedStackedData: () => import("d3").SeriesPoint<{
49
+ getBinnedStackedData: () => import('d3').SeriesPoint<{
49
50
  [key: string]: number;
50
51
  }>[][];
51
52
  getGroupedData: (groups?: any) => {
52
53
  name: string;
53
54
  data: any;
54
55
  }[];
55
- getStackKeys: ({ bins, groups }?: import("@carbon/charts").StackKeysParams | undefined) => any;
56
- getDataValuesGroupedByKeys: ({ bins, groups }: import("@carbon/charts").StackKeysParams) => any;
57
- getStackedData: ({ percentage, groups, divergent }: import("@carbon/charts").StackKeysParams) => any[][];
56
+ getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
57
+ getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
58
+ getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
58
59
  getOptions: () => any;
59
60
  set: (newState: any, configs?: any) => void;
60
61
  get: (property?: string | undefined) => any;
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
66
67
  getStrokeColor: (group: any, key?: any, data?: any) => any;
67
68
  isUserProvidedColorScaleValid: () => any;
68
69
  getColorClassName: (configs: {
69
- classNameTypes?: import("@carbon/charts").ColorClassNameTypes[] | undefined;
70
+ classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
70
71
  dataGroupName?: string | number | undefined;
71
72
  originalClassName?: string | undefined;
72
73
  value?: number | undefined;
73
74
  }) => string;
74
75
  getStatus: () => any;
75
76
  getAllDataGroupsNames: () => string[];
76
- getTabularDataArray: () => import("@carbon/charts").ChartTabularData;
77
+ getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
77
78
  exportToCSV: () => void;
78
79
  };
79
- init: (holder: HTMLDivElement, chartConfigs: import("@carbon/charts").ChartConfig<import("@carbon/charts").BaseChartOptions>) => void;
80
- getComponents: () => import("@carbon/charts").Component[];
80
+ init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
81
+ getComponents: () => import('@carbon/charts').Component[];
81
82
  update: (animate?: boolean | undefined) => void;
82
83
  destroy: () => void;
83
84
  } | null>;
84
85
  chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
85
86
  }, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
86
87
  data: {
87
- type: () => import("@carbon/charts").ChartTabularData;
88
+ type: () => import('@carbon/charts').ChartTabularData;
88
89
  required: true;
89
90
  };
90
91
  options: {
@@ -1,7 +1,8 @@
1
- import { type BulletChartOptions } from '@carbon/charts';
1
+ import { BulletChartOptions } from '@carbon/charts';
2
+
2
3
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
3
4
  data: {
4
- type: () => import("@carbon/charts").ChartTabularData;
5
+ type: () => import('@carbon/charts').ChartTabularData;
5
6
  required: true;
6
7
  };
7
8
  options: {
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
12
13
  chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
13
14
  components: {
14
15
  type: string;
15
- renderType: import("@carbon/charts").RenderTypes;
16
+ renderType: import('@carbon/charts').RenderTypes;
16
17
  id: string;
17
18
  init: () => void;
18
19
  render: (animate?: boolean | undefined) => void;
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
20
21
  setModel: (newObj: any) => void;
21
22
  setServices: (newObj: any) => void;
22
23
  setParent: (parent: any) => void;
23
- getParent: () => import("d3-selection").Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
+ getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
25
  getComponentContainer: (configs?: {
25
26
  withinChartClip: boolean;
26
- } | undefined) => import("d3-selection").Selection<any, any, Element, any>;
27
+ } | undefined) => import('d3-selection').Selection<any, any, Element, any>;
27
28
  getOptions: () => any;
28
29
  }[];
29
30
  services: any;
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
42
43
  getDataGroupNames: (groups?: any) => any;
43
44
  getActiveDataGroupNames: (groups?: any) => any;
44
45
  getBinConfigurations: () => {
45
- bins: import("d3-array").Bin<number, number>[];
46
+ bins: import('d3-array').Bin<number, number>[];
46
47
  binsDomain: any[];
47
48
  };
48
- getBinnedStackedData: () => import("d3").SeriesPoint<{
49
+ getBinnedStackedData: () => import('d3').SeriesPoint<{
49
50
  [key: string]: number;
50
51
  }>[][];
51
52
  getGroupedData: (groups?: any) => {
52
53
  name: string;
53
54
  data: any;
54
55
  }[];
55
- getStackKeys: ({ bins, groups }?: import("@carbon/charts").StackKeysParams | undefined) => any;
56
- getDataValuesGroupedByKeys: ({ bins, groups }: import("@carbon/charts").StackKeysParams) => any;
57
- getStackedData: ({ percentage, groups, divergent }: import("@carbon/charts").StackKeysParams) => any[][];
56
+ getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
57
+ getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
58
+ getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
58
59
  getOptions: () => any;
59
60
  set: (newState: any, configs?: any) => void;
60
61
  get: (property?: string | undefined) => any;
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
66
67
  getStrokeColor: (group: any, key?: any, data?: any) => any;
67
68
  isUserProvidedColorScaleValid: () => any;
68
69
  getColorClassName: (configs: {
69
- classNameTypes?: import("@carbon/charts").ColorClassNameTypes[] | undefined;
70
+ classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
70
71
  dataGroupName?: string | number | undefined;
71
72
  originalClassName?: string | undefined;
72
73
  value?: number | undefined;
73
74
  }) => string;
74
75
  getStatus: () => any;
75
76
  getAllDataGroupsNames: () => string[];
76
- getTabularDataArray: () => import("@carbon/charts").ChartTabularData;
77
+ getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
77
78
  exportToCSV: () => void;
78
79
  };
79
- init: (holder: HTMLDivElement, chartConfigs: import("@carbon/charts").ChartConfig<import("@carbon/charts").BaseChartOptions>) => void;
80
- getComponents: () => import("@carbon/charts").Component[];
80
+ init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
81
+ getComponents: () => import('@carbon/charts').Component[];
81
82
  update: (animate?: boolean | undefined) => void;
82
83
  destroy: () => void;
83
84
  } | null>;
84
85
  chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
85
86
  }, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
86
87
  data: {
87
- type: () => import("@carbon/charts").ChartTabularData;
88
+ type: () => import('@carbon/charts').ChartTabularData;
88
89
  required: true;
89
90
  };
90
91
  options: {
@@ -1,7 +1,8 @@
1
- import { type ChoroplethChartOptions } from '@carbon/charts';
1
+ import { ChoroplethChartOptions } from '@carbon/charts';
2
+
2
3
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
3
4
  data: {
4
- type: () => import("@carbon/charts").ChartTabularData;
5
+ type: () => import('@carbon/charts').ChartTabularData;
5
6
  required: true;
6
7
  };
7
8
  options: {
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
12
13
  chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
13
14
  components: {
14
15
  type: string;
15
- renderType: import("@carbon/charts").RenderTypes;
16
+ renderType: import('@carbon/charts').RenderTypes;
16
17
  id: string;
17
18
  init: () => void;
18
19
  render: (animate?: boolean | undefined) => void;
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
20
21
  setModel: (newObj: any) => void;
21
22
  setServices: (newObj: any) => void;
22
23
  setParent: (parent: any) => void;
23
- getParent: () => import("d3-selection").Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
+ getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
24
25
  getComponentContainer: (configs?: {
25
26
  withinChartClip: boolean;
26
- } | undefined) => import("d3-selection").Selection<any, any, Element, any>;
27
+ } | undefined) => import('d3-selection').Selection<any, any, Element, any>;
27
28
  getOptions: () => any;
28
29
  }[];
29
30
  services: any;
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
42
43
  getDataGroupNames: (groups?: any) => any;
43
44
  getActiveDataGroupNames: (groups?: any) => any;
44
45
  getBinConfigurations: () => {
45
- bins: import("d3-array").Bin<number, number>[];
46
+ bins: import('d3-array').Bin<number, number>[];
46
47
  binsDomain: any[];
47
48
  };
48
- getBinnedStackedData: () => import("d3").SeriesPoint<{
49
+ getBinnedStackedData: () => import('d3').SeriesPoint<{
49
50
  [key: string]: number;
50
51
  }>[][];
51
52
  getGroupedData: (groups?: any) => {
52
53
  name: string;
53
54
  data: any;
54
55
  }[];
55
- getStackKeys: ({ bins, groups }?: import("@carbon/charts").StackKeysParams | undefined) => any;
56
- getDataValuesGroupedByKeys: ({ bins, groups }: import("@carbon/charts").StackKeysParams) => any;
57
- getStackedData: ({ percentage, groups, divergent }: import("@carbon/charts").StackKeysParams) => any[][];
56
+ getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
57
+ getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
58
+ getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
58
59
  getOptions: () => any;
59
60
  set: (newState: any, configs?: any) => void;
60
61
  get: (property?: string | undefined) => any;
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
66
67
  getStrokeColor: (group: any, key?: any, data?: any) => any;
67
68
  isUserProvidedColorScaleValid: () => any;
68
69
  getColorClassName: (configs: {
69
- classNameTypes?: import("@carbon/charts").ColorClassNameTypes[] | undefined;
70
+ classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
70
71
  dataGroupName?: string | number | undefined;
71
72
  originalClassName?: string | undefined;
72
73
  value?: number | undefined;
73
74
  }) => string;
74
75
  getStatus: () => any;
75
76
  getAllDataGroupsNames: () => string[];
76
- getTabularDataArray: () => import("@carbon/charts").ChartTabularData;
77
+ getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
77
78
  exportToCSV: () => void;
78
79
  };
79
- init: (holder: HTMLDivElement, chartConfigs: import("@carbon/charts").ChartConfig<import("@carbon/charts").BaseChartOptions>) => void;
80
- getComponents: () => import("@carbon/charts").Component[];
80
+ init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
81
+ getComponents: () => import('@carbon/charts').Component[];
81
82
  update: (animate?: boolean | undefined) => void;
82
83
  destroy: () => void;
83
84
  } | null>;
84
85
  chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
85
86
  }, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
86
87
  data: {
87
- type: () => import("@carbon/charts").ChartTabularData;
88
+ type: () => import('@carbon/charts').ChartTabularData;
88
89
  required: true;
89
90
  };
90
91
  options: {