@carbon/charts-vue 1.8.0 → 1.9.0-next.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/README.md +9 -9
  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 +23244 -0
  33. package/dist/index.mjs.map +1 -0
  34. package/dist/styles.css +28463 -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 +73 -73
  39. package/charts-vue.common.js +0 -54733
  40. package/charts-vue.common.js.map +0 -1
  41. package/charts-vue.umd.js +0 -54743
  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/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # Notice
1
+ # Carbon Charts Vue
2
2
 
3
- ### This version relies on **Carbon v11**. If you're using Carbon v10, [see the legacy demo site](https://carbon-charts-0x.netlify.app)
3
+ Carbon Charts Vue is a thin Vue.js wrapper around the vanilla JavScript `@carbon/charts` component library. The charts are based on D3.js, a peer dependency.
4
4
 
5
- ## `@carbon/charts-vue`
5
+ The required styles should be imported from `@carbon/charts-vue/styles.css` and `@carbon/styles/css/styles.css`. Additional documentation is provided in the Storybook demos.
6
6
 
7
- > Carbon Charting Vue Wrappers
7
+ > Notice: This version relies on **Carbon v11**. If you're using Carbon v10, [see the legacy demo site](https://carbon-charts-0x.netlify.app)
8
8
 
9
9
  **[Storybook demos](https://carbon-design-system.github.io/carbon-charts/vue)**
10
10
 
@@ -12,21 +12,21 @@
12
12
 
13
13
  ## Maintenance & support
14
14
 
15
- These Vue wrappers are community-maintained.
15
+ This component library is community-maintained.
16
16
 
17
17
  ## Getting started
18
18
 
19
19
  Run the following command using [npm](https://www.npmjs.com/):
20
20
 
21
21
  ```bash
22
- npm install -S @carbon/charts @carbon/charts-vue d3
22
+ npm install -S @carbon/charts-vue @carbon/styles d3
23
23
  ```
24
24
 
25
25
  If you prefer [Yarn](https://yarnpkg.com/en/), use the following command
26
26
  instead:
27
27
 
28
28
  ```bash
29
- yarn add @carbon/charts @carbon/charts-vue d3
29
+ yarn add @carbon/charts-vue @carbon/styles d3
30
30
  ```
31
31
 
32
32
  **Note:** you'd also need to install `carbon-components` if you're not using a bundled version of the library.
@@ -35,11 +35,11 @@ yarn add @carbon/charts @carbon/charts-vue d3
35
35
 
36
36
  Read [here](https://carbon-design-system.github.io/carbon-charts/?path=/story/docs-getting-started--vue)
37
37
 
38
- ## Codesandbox examples
38
+ ## CodeSandbox examples
39
39
 
40
40
  [Sample use cases can be seen here](https://carbon-design-system.github.io/carbon-charts/vue).
41
41
 
42
- **When opening the link above**, click on the **Edit on Codesandbox** button for each demo to see an isolated project showing you how to reproduce the demo.
42
+ **When opening the link above**, click on the **Edit on CodeSandbox** button for each demo to see an isolated project showing you how to reproduce the demo.
43
43
 
44
44
  ## Charting data & options
45
45
 
@@ -0,0 +1,41 @@
1
+ import { AlluvialChartOptions, 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 { 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 { GaugeChartOptions, 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 { BarChartOptions, 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;