@carbon/charts-vue 1.22.4 → 1.22.6

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 (33) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/components/CcvAlluvialChart.d.ts +2 -3
  3. package/dist/components/CcvAreaChart.d.ts +2 -3
  4. package/dist/components/CcvBoxplotChart.d.ts +2 -2
  5. package/dist/components/CcvBubbleChart.d.ts +2 -3
  6. package/dist/components/CcvBulletChart.d.ts +2 -3
  7. package/dist/components/CcvChoroplethChart.d.ts +2 -3
  8. package/dist/components/CcvCirclePackChart.d.ts +2 -3
  9. package/dist/components/CcvComboChart.d.ts +2 -3
  10. package/dist/components/CcvDonutChart.d.ts +2 -3
  11. package/dist/components/CcvGaugeChart.d.ts +2 -3
  12. package/dist/components/CcvGroupedBarChart.d.ts +2 -3
  13. package/dist/components/CcvHeatmapChart.d.ts +2 -3
  14. package/dist/components/CcvHistogramChart.d.ts +2 -3
  15. package/dist/components/CcvLineChart.d.ts +2 -3
  16. package/dist/components/CcvLollipopChart.d.ts +2 -2
  17. package/dist/components/CcvMeterChart.d.ts +2 -3
  18. package/dist/components/CcvPieChart.d.ts +2 -3
  19. package/dist/components/CcvRadarChart.d.ts +2 -3
  20. package/dist/components/CcvScatterChart.d.ts +2 -3
  21. package/dist/components/CcvSimpleBarChart.d.ts +2 -3
  22. package/dist/components/CcvStackedAreaChart.d.ts +2 -3
  23. package/dist/components/CcvStackedBarChart.d.ts +2 -3
  24. package/dist/components/CcvTreeChart.d.ts +2 -3
  25. package/dist/components/CcvTreemapChart.d.ts +2 -2
  26. package/dist/components/CcvWordCloudChart.d.ts +2 -3
  27. package/dist/index.mjs +7025 -8064
  28. package/dist/index.mjs.map +1 -1
  29. package/dist/styles.css +5 -0
  30. package/dist/styles.css.map +1 -1
  31. package/dist/styles.min.css +1 -1
  32. package/dist/styles.min.css.map +1 -1
  33. package/package.json +6 -6
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.6 (2024-12-04)
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.5 (2024-12-02)
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.4 (2024-11-21)
7
25
 
8
26
  **Note:** Version bump only for package @carbon/charts-vue
@@ -1,11 +1,10 @@
1
- import { AlluvialChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => AlluvialChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => AlluvialChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { AreaChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => AreaChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => AreaChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & 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: () => import('@carbon/charts').AxisChartOptions;
7
+ type: () => T;
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: () => import('@carbon/charts').AxisChartOptions;
165
+ type: () => T;
166
166
  required: true;
167
167
  };
168
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { BubbleChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => BubbleChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => BubbleChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { BulletChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => BulletChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => BulletChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { ChoroplethChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => ChoroplethChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => ChoroplethChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { CirclePackChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => CirclePackChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => CirclePackChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { ComboChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => ComboChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => ComboChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { DonutChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => DonutChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => DonutChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { GaugeChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => GaugeChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => GaugeChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { BarChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => BarChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => BarChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { HeatmapChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => HeatmapChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => HeatmapChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { HistogramChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => HistogramChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => HistogramChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { LineChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => LineChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => LineChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & 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: () => import('@carbon/charts').ScatterChartOptions;
7
+ type: () => T;
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: () => import('@carbon/charts').ScatterChartOptions;
165
+ type: () => T;
166
166
  required: true;
167
167
  };
168
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { MeterChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => MeterChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => MeterChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { PieChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => PieChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => PieChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { RadarChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => RadarChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => RadarChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { ScatterChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => ScatterChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => ScatterChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { BarChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => BarChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => BarChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { StackedAreaChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => StackedAreaChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => StackedAreaChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { StackedBarChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => StackedBarChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => StackedBarChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { TreeChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => TreeChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => TreeChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & 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: () => import('@carbon/charts').BaseChartOptions;
7
+ type: () => T;
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: () => import('@carbon/charts').BaseChartOptions;
165
+ type: () => T;
166
166
  required: true;
167
167
  };
168
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,10 @@
1
- import { WordCloudChartOptions } from '@carbon/charts';
2
1
  declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
2
  data: {
4
3
  type: () => import('@carbon/charts').ChartTabularData;
5
4
  required: true;
6
5
  };
7
6
  options: {
8
- type: () => WordCloudChartOptions;
7
+ type: () => T;
9
8
  required: true;
10
9
  };
11
10
  }>, {
@@ -163,7 +162,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
163
162
  required: true;
164
163
  };
165
164
  options: {
166
- type: () => WordCloudChartOptions;
165
+ type: () => T;
167
166
  required: true;
168
167
  };
169
168
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;