@carbon/charts-vue 1.8.0 → 1.9.0-next.1.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.
- package/README.md +8 -10
- package/dist/components/CcvAlluvialChart.d.ts +41 -0
- package/dist/components/CcvAreaChart.d.ts +41 -0
- package/dist/components/CcvBaseChart.d.ts +29 -0
- package/dist/components/CcvBoxplotChart.d.ts +41 -0
- package/dist/components/CcvBubbleChart.d.ts +41 -0
- package/dist/components/CcvBulletChart.d.ts +41 -0
- package/dist/components/CcvChoroplethChart.d.ts +41 -0
- package/dist/components/CcvCirclePackChart.d.ts +42 -0
- package/dist/components/CcvComboChart.d.ts +42 -0
- package/dist/components/CcvDonutChart.d.ts +42 -0
- package/dist/components/CcvGaugeChart.d.ts +41 -0
- package/dist/components/CcvGroupedBarChart.d.ts +41 -0
- package/dist/components/CcvHeatmapChart.d.ts +41 -0
- package/dist/components/CcvHistogramChart.d.ts +42 -0
- package/dist/components/CcvLineChart.d.ts +42 -0
- package/dist/components/CcvLollipopChart.d.ts +42 -0
- package/dist/components/CcvMeterChart.d.ts +42 -0
- package/dist/components/CcvPieChart.d.ts +41 -0
- package/dist/components/CcvRadarChart.d.ts +41 -0
- package/dist/components/CcvScatterChart.d.ts +41 -0
- package/dist/components/CcvSimpleBarChart.d.ts +41 -0
- package/dist/components/CcvStackedAreaChart.d.ts +41 -0
- package/dist/components/CcvStackedBarChart.d.ts +41 -0
- package/dist/components/CcvTreeChart.d.ts +41 -0
- package/dist/components/CcvTreemapChart.d.ts +41 -0
- package/dist/components/CcvWordCloudChart.d.ts +41 -0
- package/dist/components/index.d.ts +25 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +84 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +23244 -0
- package/dist/index.mjs.map +1 -0
- package/dist/styles.css +6345 -0
- package/dist/styles.css.map +1 -0
- package/dist/styles.min.css +1 -0
- package/dist/styles.min.css.map +1 -0
- package/package.json +73 -73
- package/charts-vue.common.js +0 -54733
- package/charts-vue.common.js.map +0 -1
- package/charts-vue.umd.js +0 -54743
- package/charts-vue.umd.js.map +0 -1
- package/charts-vue.umd.min.js +0 -4
- package/charts-vue.umd.min.js.map +0 -1
- package/demo.html +0 -10
package/README.md
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Carbon Charts Vue
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
> Carbon Charting Vue Wrappers
|
|
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.
|
|
8
6
|
|
|
9
7
|
**[Storybook demos](https://carbon-design-system.github.io/carbon-charts/vue)**
|
|
10
8
|
|
|
@@ -12,21 +10,21 @@
|
|
|
12
10
|
|
|
13
11
|
## Maintenance & support
|
|
14
12
|
|
|
15
|
-
|
|
13
|
+
This component library is community-maintained.
|
|
16
14
|
|
|
17
15
|
## Getting started
|
|
18
16
|
|
|
19
17
|
Run the following command using [npm](https://www.npmjs.com/):
|
|
20
18
|
|
|
21
19
|
```bash
|
|
22
|
-
npm install -S @carbon/charts @carbon/
|
|
20
|
+
npm install -S @carbon/charts-vue @carbon/styles d3
|
|
23
21
|
```
|
|
24
22
|
|
|
25
23
|
If you prefer [Yarn](https://yarnpkg.com/en/), use the following command
|
|
26
24
|
instead:
|
|
27
25
|
|
|
28
26
|
```bash
|
|
29
|
-
yarn add @carbon/charts @carbon/
|
|
27
|
+
yarn add @carbon/charts-vue @carbon/styles d3
|
|
30
28
|
```
|
|
31
29
|
|
|
32
30
|
**Note:** you'd also need to install `carbon-components` if you're not using a bundled version of the library.
|
|
@@ -35,11 +33,11 @@ yarn add @carbon/charts @carbon/charts-vue d3
|
|
|
35
33
|
|
|
36
34
|
Read [here](https://carbon-design-system.github.io/carbon-charts/?path=/story/docs-getting-started--vue)
|
|
37
35
|
|
|
38
|
-
##
|
|
36
|
+
## CodeSandbox examples
|
|
39
37
|
|
|
40
38
|
[Sample use cases can be seen here](https://carbon-design-system.github.io/carbon-charts/vue).
|
|
41
39
|
|
|
42
|
-
**When opening the link above**, click on the **Edit on
|
|
40
|
+
**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
41
|
|
|
44
42
|
## Charting data & options
|
|
45
43
|
|
|
@@ -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;
|
|
@@ -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;
|