@carbon/charts-vue 1.7.6 → 1.9.0-rc.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/components/CcvAlluvialChart.d.ts +41 -0
  3. package/dist/components/CcvAreaChart.d.ts +41 -0
  4. package/dist/components/CcvBaseChart.d.ts +29 -0
  5. package/dist/components/CcvBoxplotChart.d.ts +41 -0
  6. package/dist/components/CcvBubbleChart.d.ts +41 -0
  7. package/dist/components/CcvBulletChart.d.ts +41 -0
  8. package/dist/components/CcvChoroplethChart.d.ts +41 -0
  9. package/dist/components/CcvCirclePackChart.d.ts +42 -0
  10. package/dist/components/CcvComboChart.d.ts +42 -0
  11. package/dist/components/CcvDonutChart.d.ts +42 -0
  12. package/dist/components/CcvGaugeChart.d.ts +41 -0
  13. package/dist/components/CcvGroupedBarChart.d.ts +41 -0
  14. package/dist/components/CcvHeatmapChart.d.ts +41 -0
  15. package/dist/components/CcvHistogramChart.d.ts +42 -0
  16. package/dist/components/CcvLineChart.d.ts +42 -0
  17. package/dist/components/CcvLollipopChart.d.ts +42 -0
  18. package/dist/components/CcvMeterChart.d.ts +42 -0
  19. package/dist/components/CcvPieChart.d.ts +41 -0
  20. package/dist/components/CcvRadarChart.d.ts +41 -0
  21. package/dist/components/CcvScatterChart.d.ts +41 -0
  22. package/dist/components/CcvSimpleBarChart.d.ts +41 -0
  23. package/dist/components/CcvStackedAreaChart.d.ts +41 -0
  24. package/dist/components/CcvStackedBarChart.d.ts +41 -0
  25. package/dist/components/CcvTreeChart.d.ts +41 -0
  26. package/dist/components/CcvTreemapChart.d.ts +41 -0
  27. package/dist/components/CcvWordCloudChart.d.ts +41 -0
  28. package/dist/components/index.d.ts +25 -0
  29. package/dist/index.d.ts +6 -0
  30. package/dist/index.js +84 -0
  31. package/dist/index.js.map +1 -0
  32. package/dist/index.mjs +23218 -0
  33. package/dist/index.mjs.map +1 -0
  34. package/dist/styles.css +28264 -0
  35. package/dist/styles.css.map +1 -0
  36. package/dist/styles.min.css +1 -0
  37. package/dist/styles.min.css.map +1 -0
  38. package/package.json +67 -72
  39. package/charts-vue.common.js +0 -50539
  40. package/charts-vue.common.js.map +0 -1
  41. package/charts-vue.umd.js +0 -50549
  42. package/charts-vue.umd.js.map +0 -1
  43. package/charts-vue.umd.min.js +0 -4
  44. package/charts-vue.umd.min.js.map +0 -1
  45. package/demo.html +0 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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
+ # [1.8.0](https://github.com/carbon-design-system/carbon-charts/compare/v1.7.6...v1.8.0) (2023-06-03)
7
+
8
+ ### Features
9
+
10
+ - **core:** Add choropleth chart ([#1487](https://github.com/carbon-design-system/carbon-charts/issues/1487)) ([62caeb1](https://github.com/carbon-design-system/carbon-charts/commit/62caeb1fd6fab9e2a39d85b024f2d9b97f8bd1fa))
11
+
6
12
  ## [1.7.6](https://github.com/carbon-design-system/carbon-charts/compare/v1.7.5...v1.7.6) (2023-05-01)
7
13
 
8
14
  **Note:** Version bump only for package @carbon/charts-vue
@@ -0,0 +1,41 @@
1
+ import { type AlluvialChartOptions, type ChartTabularData } from '@carbon/charts';
2
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
3
+ data: {
4
+ type: () => ChartTabularData;
5
+ required: true;
6
+ };
7
+ options: {
8
+ type: () => AlluvialChartOptions;
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
12
+ data: {
13
+ type: () => ChartTabularData;
14
+ required: true;
15
+ };
16
+ options: {
17
+ type: ObjectConstructor;
18
+ required: true;
19
+ };
20
+ }, {}, {
21
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
22
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
23
+ data: {
24
+ type: () => ChartTabularData;
25
+ required: true;
26
+ };
27
+ options: {
28
+ type: ObjectConstructor;
29
+ required: true;
30
+ };
31
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
32
+ data: {
33
+ type: () => ChartTabularData;
34
+ required: true;
35
+ };
36
+ options: {
37
+ type: () => AlluvialChartOptions;
38
+ required: true;
39
+ };
40
+ }>>, {}>;
41
+ export default _sfc_main;
@@ -0,0 +1,41 @@
1
+ import { AreaChartOptions, ChartTabularData } from '@carbon/charts';
2
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
3
+ data: {
4
+ type: () => ChartTabularData;
5
+ required: true;
6
+ };
7
+ options: {
8
+ type: () => AreaChartOptions;
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
12
+ data: {
13
+ type: () => ChartTabularData;
14
+ required: true;
15
+ };
16
+ options: {
17
+ type: ObjectConstructor;
18
+ required: true;
19
+ };
20
+ }, {}, {
21
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
22
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
23
+ data: {
24
+ type: () => ChartTabularData;
25
+ required: true;
26
+ };
27
+ options: {
28
+ type: ObjectConstructor;
29
+ required: true;
30
+ };
31
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
32
+ data: {
33
+ type: () => ChartTabularData;
34
+ required: true;
35
+ };
36
+ options: {
37
+ type: () => AreaChartOptions;
38
+ required: true;
39
+ };
40
+ }>>, {}>;
41
+ export default _sfc_main;
@@ -0,0 +1,29 @@
1
+ import type { ChartTabularData } from '@carbon/charts';
2
+ export interface CoreChart<T> {
3
+ model: {
4
+ setData: (data: ChartTabularData) => void;
5
+ setOptions: (options: T) => void;
6
+ } | null;
7
+ }
8
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
9
+ data: {
10
+ type: () => ChartTabularData;
11
+ required: true;
12
+ };
13
+ options: {
14
+ type: ObjectConstructor;
15
+ required: true;
16
+ };
17
+ }, {}, {
18
+ coreChart: CoreChart<any> | null;
19
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
20
+ data: {
21
+ type: () => ChartTabularData;
22
+ required: true;
23
+ };
24
+ options: {
25
+ type: ObjectConstructor;
26
+ required: true;
27
+ };
28
+ }>>, {}>;
29
+ export default _sfc_main;
@@ -0,0 +1,41 @@
1
+ import { BoxplotChartOptions, ChartTabularData } from '@carbon/charts';
2
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
3
+ data: {
4
+ type: () => ChartTabularData;
5
+ required: true;
6
+ };
7
+ options: {
8
+ type: () => BoxplotChartOptions;
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
12
+ data: {
13
+ type: () => ChartTabularData;
14
+ required: true;
15
+ };
16
+ options: {
17
+ type: ObjectConstructor;
18
+ required: true;
19
+ };
20
+ }, {}, {
21
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
22
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
23
+ data: {
24
+ type: () => ChartTabularData;
25
+ required: true;
26
+ };
27
+ options: {
28
+ type: ObjectConstructor;
29
+ required: true;
30
+ };
31
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
32
+ data: {
33
+ type: () => ChartTabularData;
34
+ required: true;
35
+ };
36
+ options: {
37
+ type: () => BoxplotChartOptions;
38
+ required: true;
39
+ };
40
+ }>>, {}>;
41
+ export default _sfc_main;
@@ -0,0 +1,41 @@
1
+ import { BubbleChartOptions, ChartTabularData } from '@carbon/charts';
2
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
3
+ data: {
4
+ type: () => ChartTabularData;
5
+ required: true;
6
+ };
7
+ options: {
8
+ type: () => BubbleChartOptions;
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
12
+ data: {
13
+ type: () => ChartTabularData;
14
+ required: true;
15
+ };
16
+ options: {
17
+ type: ObjectConstructor;
18
+ required: true;
19
+ };
20
+ }, {}, {
21
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
22
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
23
+ data: {
24
+ type: () => ChartTabularData;
25
+ required: true;
26
+ };
27
+ options: {
28
+ type: ObjectConstructor;
29
+ required: true;
30
+ };
31
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
32
+ data: {
33
+ type: () => ChartTabularData;
34
+ required: true;
35
+ };
36
+ options: {
37
+ type: () => BubbleChartOptions;
38
+ required: true;
39
+ };
40
+ }>>, {}>;
41
+ export default _sfc_main;
@@ -0,0 +1,41 @@
1
+ import { BulletChartOptions, ChartTabularData } from '@carbon/charts';
2
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
3
+ data: {
4
+ type: () => ChartTabularData;
5
+ required: true;
6
+ };
7
+ options: {
8
+ type: () => BulletChartOptions;
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
12
+ data: {
13
+ type: () => ChartTabularData;
14
+ required: true;
15
+ };
16
+ options: {
17
+ type: ObjectConstructor;
18
+ required: true;
19
+ };
20
+ }, {}, {
21
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
22
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
23
+ data: {
24
+ type: () => ChartTabularData;
25
+ required: true;
26
+ };
27
+ options: {
28
+ type: ObjectConstructor;
29
+ required: true;
30
+ };
31
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
32
+ data: {
33
+ type: () => ChartTabularData;
34
+ required: true;
35
+ };
36
+ options: {
37
+ type: () => BulletChartOptions;
38
+ required: true;
39
+ };
40
+ }>>, {}>;
41
+ export default _sfc_main;
@@ -0,0 +1,41 @@
1
+ import { ChartTabularData, ChoroplethChartOptions } from '@carbon/charts';
2
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
3
+ data: {
4
+ type: () => ChartTabularData;
5
+ required: true;
6
+ };
7
+ options: {
8
+ type: () => ChoroplethChartOptions;
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
12
+ data: {
13
+ type: () => ChartTabularData;
14
+ required: true;
15
+ };
16
+ options: {
17
+ type: ObjectConstructor;
18
+ required: true;
19
+ };
20
+ }, {}, {
21
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
22
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
23
+ data: {
24
+ type: () => ChartTabularData;
25
+ required: true;
26
+ };
27
+ options: {
28
+ type: ObjectConstructor;
29
+ required: true;
30
+ };
31
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
32
+ data: {
33
+ type: () => ChartTabularData;
34
+ required: true;
35
+ };
36
+ options: {
37
+ type: () => ChoroplethChartOptions;
38
+ required: true;
39
+ };
40
+ }>>, {}>;
41
+ export default _sfc_main;
@@ -0,0 +1,42 @@
1
+ import { PropType } from './vue/dist/vue.esm.js';
2
+ import { CirclePackChartOptions, ChartTabularData } from '@carbon/charts';
3
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
4
+ data: {
5
+ type: PropType<ChartTabularData>;
6
+ required: true;
7
+ };
8
+ options: {
9
+ type: PropType<CirclePackChartOptions>;
10
+ required: true;
11
+ };
12
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
13
+ data: {
14
+ type: () => ChartTabularData;
15
+ required: true;
16
+ };
17
+ options: {
18
+ type: ObjectConstructor;
19
+ required: true;
20
+ };
21
+ }, {}, {
22
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
23
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
24
+ data: {
25
+ type: () => ChartTabularData;
26
+ required: true;
27
+ };
28
+ options: {
29
+ type: ObjectConstructor;
30
+ required: true;
31
+ };
32
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
33
+ data: {
34
+ type: PropType<ChartTabularData>;
35
+ required: true;
36
+ };
37
+ options: {
38
+ type: PropType<CirclePackChartOptions>;
39
+ required: true;
40
+ };
41
+ }>>, {}>;
42
+ export default _sfc_main;
@@ -0,0 +1,42 @@
1
+ import { PropType } from './vue/dist/vue.esm.js';
2
+ import { ComboChartOptions, ChartTabularData } from '@carbon/charts';
3
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
4
+ data: {
5
+ type: PropType<ChartTabularData>;
6
+ required: true;
7
+ };
8
+ options: {
9
+ type: PropType<ComboChartOptions>;
10
+ required: true;
11
+ };
12
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
13
+ data: {
14
+ type: () => ChartTabularData;
15
+ required: true;
16
+ };
17
+ options: {
18
+ type: ObjectConstructor;
19
+ required: true;
20
+ };
21
+ }, {}, {
22
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
23
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
24
+ data: {
25
+ type: () => ChartTabularData;
26
+ required: true;
27
+ };
28
+ options: {
29
+ type: ObjectConstructor;
30
+ required: true;
31
+ };
32
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
33
+ data: {
34
+ type: PropType<ChartTabularData>;
35
+ required: true;
36
+ };
37
+ options: {
38
+ type: PropType<ComboChartOptions>;
39
+ required: true;
40
+ };
41
+ }>>, {}>;
42
+ export default _sfc_main;
@@ -0,0 +1,42 @@
1
+ import { PropType } from './vue/dist/vue.esm.js';
2
+ import { DonutChartOptions, ChartTabularData } from '@carbon/charts';
3
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
4
+ data: {
5
+ type: PropType<ChartTabularData>;
6
+ required: true;
7
+ };
8
+ options: {
9
+ type: PropType<DonutChartOptions>;
10
+ required: true;
11
+ };
12
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
13
+ data: {
14
+ type: () => ChartTabularData;
15
+ required: true;
16
+ };
17
+ options: {
18
+ type: ObjectConstructor;
19
+ required: true;
20
+ };
21
+ }, {}, {
22
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
23
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
24
+ data: {
25
+ type: () => ChartTabularData;
26
+ required: true;
27
+ };
28
+ options: {
29
+ type: ObjectConstructor;
30
+ required: true;
31
+ };
32
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
33
+ data: {
34
+ type: PropType<ChartTabularData>;
35
+ required: true;
36
+ };
37
+ options: {
38
+ type: PropType<DonutChartOptions>;
39
+ required: true;
40
+ };
41
+ }>>, {}>;
42
+ export default _sfc_main;
@@ -0,0 +1,41 @@
1
+ import { type GaugeChartOptions, type ChartTabularData } from '@carbon/charts';
2
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
3
+ data: {
4
+ type: () => ChartTabularData;
5
+ required: true;
6
+ };
7
+ options: {
8
+ type: () => GaugeChartOptions;
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
12
+ data: {
13
+ type: () => ChartTabularData;
14
+ required: true;
15
+ };
16
+ options: {
17
+ type: ObjectConstructor;
18
+ required: true;
19
+ };
20
+ }, {}, {
21
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
22
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
23
+ data: {
24
+ type: () => ChartTabularData;
25
+ required: true;
26
+ };
27
+ options: {
28
+ type: ObjectConstructor;
29
+ required: true;
30
+ };
31
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
32
+ data: {
33
+ type: () => ChartTabularData;
34
+ required: true;
35
+ };
36
+ options: {
37
+ type: () => GaugeChartOptions;
38
+ required: true;
39
+ };
40
+ }>>, {}>;
41
+ export default _sfc_main;
@@ -0,0 +1,41 @@
1
+ import { type BarChartOptions, type ChartTabularData } from '@carbon/charts';
2
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
3
+ data: {
4
+ type: () => ChartTabularData;
5
+ required: true;
6
+ };
7
+ options: {
8
+ type: () => BarChartOptions;
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
12
+ data: {
13
+ type: () => ChartTabularData;
14
+ required: true;
15
+ };
16
+ options: {
17
+ type: ObjectConstructor;
18
+ required: true;
19
+ };
20
+ }, {}, {
21
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
22
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
23
+ data: {
24
+ type: () => ChartTabularData;
25
+ required: true;
26
+ };
27
+ options: {
28
+ type: ObjectConstructor;
29
+ required: true;
30
+ };
31
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
32
+ data: {
33
+ type: () => ChartTabularData;
34
+ required: true;
35
+ };
36
+ options: {
37
+ type: () => BarChartOptions;
38
+ required: true;
39
+ };
40
+ }>>, {}>;
41
+ export default _sfc_main;
@@ -0,0 +1,41 @@
1
+ import { HeatmapChartOptions, ChartTabularData } from '@carbon/charts';
2
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
3
+ data: {
4
+ type: () => ChartTabularData;
5
+ required: true;
6
+ };
7
+ options: {
8
+ type: () => HeatmapChartOptions;
9
+ required: true;
10
+ };
11
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
12
+ data: {
13
+ type: () => ChartTabularData;
14
+ required: true;
15
+ };
16
+ options: {
17
+ type: ObjectConstructor;
18
+ required: true;
19
+ };
20
+ }, {}, {
21
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
22
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
23
+ data: {
24
+ type: () => ChartTabularData;
25
+ required: true;
26
+ };
27
+ options: {
28
+ type: ObjectConstructor;
29
+ required: true;
30
+ };
31
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
32
+ data: {
33
+ type: () => ChartTabularData;
34
+ required: true;
35
+ };
36
+ options: {
37
+ type: () => HeatmapChartOptions;
38
+ required: true;
39
+ };
40
+ }>>, {}>;
41
+ export default _sfc_main;
@@ -0,0 +1,42 @@
1
+ import { PropType } from './vue/dist/vue.esm.js';
2
+ import { HistogramChartOptions, ChartTabularData } from '@carbon/charts';
3
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
4
+ data: {
5
+ type: PropType<ChartTabularData[]>;
6
+ required: true;
7
+ };
8
+ options: {
9
+ type: PropType<HistogramChartOptions>;
10
+ required: true;
11
+ };
12
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
13
+ data: {
14
+ type: () => ChartTabularData;
15
+ required: true;
16
+ };
17
+ options: {
18
+ type: ObjectConstructor;
19
+ required: true;
20
+ };
21
+ }, {}, {
22
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
23
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
24
+ data: {
25
+ type: () => ChartTabularData;
26
+ required: true;
27
+ };
28
+ options: {
29
+ type: ObjectConstructor;
30
+ required: true;
31
+ };
32
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
33
+ data: {
34
+ type: PropType<ChartTabularData[]>;
35
+ required: true;
36
+ };
37
+ options: {
38
+ type: PropType<HistogramChartOptions>;
39
+ required: true;
40
+ };
41
+ }>>, {}>;
42
+ export default _sfc_main;
@@ -0,0 +1,42 @@
1
+ import { PropType } from './vue/dist/vue.esm.js';
2
+ import { LineChartOptions, ChartTabularData } from '@carbon/charts';
3
+ declare const _sfc_main: import('./vue/dist/vue.esm.js').DefineComponent<{
4
+ data: {
5
+ type: PropType<ChartTabularData>;
6
+ required: true;
7
+ };
8
+ options: {
9
+ type: PropType<LineChartOptions>;
10
+ required: true;
11
+ };
12
+ }, {}, {}, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js').DefineComponent<{
13
+ data: {
14
+ type: () => ChartTabularData;
15
+ required: true;
16
+ };
17
+ options: {
18
+ type: ObjectConstructor;
19
+ required: true;
20
+ };
21
+ }, {}, {
22
+ coreChart: import("./CcvBaseChart").CoreChart<any> | null;
23
+ }, {}, {}, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, import('./vue/dist/vue.esm.js/types/v3-component-options.js').ComponentOptionsMixin, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
24
+ data: {
25
+ type: () => ChartTabularData;
26
+ required: true;
27
+ };
28
+ options: {
29
+ type: ObjectConstructor;
30
+ required: true;
31
+ };
32
+ }>>, {}>, {}, string, Readonly<import('./vue/dist/vue.esm.js').ExtractPropTypes<{
33
+ data: {
34
+ type: PropType<ChartTabularData>;
35
+ required: true;
36
+ };
37
+ options: {
38
+ type: PropType<LineChartOptions>;
39
+ required: true;
40
+ };
41
+ }>>, {}>;
42
+ export default _sfc_main;