@carbon/charts-vue 1.22.12 → 1.22.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/components/CcvAlluvialChart.d.ts +3 -2
- package/dist/components/CcvAreaChart.d.ts +3 -2
- package/dist/components/CcvBoxplotChart.d.ts +2 -2
- package/dist/components/CcvBubbleChart.d.ts +3 -2
- package/dist/components/CcvBulletChart.d.ts +3 -2
- package/dist/components/CcvChoroplethChart.d.ts +3 -2
- package/dist/components/CcvCirclePackChart.d.ts +3 -2
- package/dist/components/CcvComboChart.d.ts +3 -2
- package/dist/components/CcvDonutChart.d.ts +3 -2
- package/dist/components/CcvGaugeChart.d.ts +3 -2
- package/dist/components/CcvGroupedBarChart.d.ts +3 -2
- package/dist/components/CcvHeatmapChart.d.ts +3 -2
- package/dist/components/CcvHistogramChart.d.ts +3 -2
- package/dist/components/CcvLineChart.d.ts +3 -2
- package/dist/components/CcvLollipopChart.d.ts +2 -2
- package/dist/components/CcvMeterChart.d.ts +3 -2
- package/dist/components/CcvPieChart.d.ts +3 -2
- package/dist/components/CcvRadarChart.d.ts +3 -2
- package/dist/components/CcvScatterChart.d.ts +3 -2
- package/dist/components/CcvSimpleBarChart.d.ts +3 -2
- package/dist/components/CcvStackedAreaChart.d.ts +3 -2
- package/dist/components/CcvStackedBarChart.d.ts +3 -2
- package/dist/components/CcvTreeChart.d.ts +3 -2
- package/dist/components/CcvTreemapChart.d.ts +2 -2
- package/dist/components/CcvWordCloudChart.d.ts +3 -2
- package/dist/components/TestHarness.d.ts +1 -1
- package/dist/index.mjs +6244 -6144
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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.22.14 (2025-01-14)
|
|
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
|
+
|
|
15
|
+
## 1.22.13 (2025-01-13)
|
|
16
|
+
|
|
17
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
18
|
+
|
|
19
|
+
# Change Log
|
|
20
|
+
|
|
21
|
+
All notable changes to this project will be documented in this file. See
|
|
22
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
23
|
+
|
|
6
24
|
## 1.22.12 (2025-01-13)
|
|
7
25
|
|
|
8
26
|
### Bug Fixes
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { AlluvialChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => AlluvialChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => AlluvialChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { AreaChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => AreaChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => AreaChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -4,7 +4,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
6
|
options: {
|
|
7
|
-
type: () =>
|
|
7
|
+
type: () => import('@carbon/charts').AxisChartOptions;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
10
|
}>, {
|
|
@@ -162,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
162
|
required: true;
|
|
163
163
|
};
|
|
164
164
|
options: {
|
|
165
|
-
type: () =>
|
|
165
|
+
type: () => import('@carbon/charts').AxisChartOptions;
|
|
166
166
|
required: true;
|
|
167
167
|
};
|
|
168
168
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { BubbleChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => BubbleChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => BubbleChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { BulletChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => BulletChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => BulletChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { ChoroplethChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => ChoroplethChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => ChoroplethChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { CirclePackChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => CirclePackChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => CirclePackChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { ComboChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => ComboChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => ComboChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { DonutChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => DonutChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => DonutChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { GaugeChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => GaugeChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => GaugeChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { BarChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => BarChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => BarChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { HeatmapChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => HeatmapChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => HeatmapChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { HistogramChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => HistogramChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => HistogramChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { LineChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => LineChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => LineChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -4,7 +4,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
6
|
options: {
|
|
7
|
-
type: () =>
|
|
7
|
+
type: () => import('@carbon/charts').ScatterChartOptions;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
10
|
}>, {
|
|
@@ -162,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
162
|
required: true;
|
|
163
163
|
};
|
|
164
164
|
options: {
|
|
165
|
-
type: () =>
|
|
165
|
+
type: () => import('@carbon/charts').ScatterChartOptions;
|
|
166
166
|
required: true;
|
|
167
167
|
};
|
|
168
168
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { MeterChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => MeterChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => MeterChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { PieChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => PieChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => PieChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { RadarChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => RadarChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => RadarChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { ScatterChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => ScatterChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => ScatterChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { BarChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => BarChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => BarChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { StackedAreaChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => StackedAreaChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => StackedAreaChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { StackedBarChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => StackedBarChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => StackedBarChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { TreeChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => TreeChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => TreeChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -4,7 +4,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
6
|
options: {
|
|
7
|
-
type: () =>
|
|
7
|
+
type: () => import('@carbon/charts').BaseChartOptions;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
10
|
}>, {
|
|
@@ -162,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
162
|
required: true;
|
|
163
163
|
};
|
|
164
164
|
options: {
|
|
165
|
-
type: () =>
|
|
165
|
+
type: () => import('@carbon/charts').BaseChartOptions;
|
|
166
166
|
required: true;
|
|
167
167
|
};
|
|
168
168
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { WordCloudChartOptions } from '@carbon/charts';
|
|
1
2
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
3
|
data: {
|
|
3
4
|
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
5
|
required: true;
|
|
5
6
|
};
|
|
6
7
|
options: {
|
|
7
|
-
type: () =>
|
|
8
|
+
type: () => WordCloudChartOptions;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
11
|
}>, {
|
|
@@ -162,7 +163,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
162
163
|
required: true;
|
|
163
164
|
};
|
|
164
165
|
options: {
|
|
165
|
-
type: () =>
|
|
166
|
+
type: () => WordCloudChartOptions;
|
|
166
167
|
required: true;
|
|
167
168
|
};
|
|
168
169
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{}, {}, {}, {}, {}, 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<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{}, {}, {}, {}, {}, 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<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|