@carbon/charts-vue 1.21.4 → 1.22.3
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 +48 -0
- package/README.md +3 -2
- package/dist/components/CcvAlluvialChart.d.ts +6 -2
- package/dist/components/CcvAreaChart.d.ts +6 -2
- package/dist/components/CcvBoxplotChart.d.ts +6 -2
- package/dist/components/CcvBubbleChart.d.ts +6 -2
- package/dist/components/CcvBulletChart.d.ts +6 -2
- package/dist/components/CcvChoroplethChart.d.ts +6 -2
- package/dist/components/CcvCirclePackChart.d.ts +6 -2
- package/dist/components/CcvComboChart.d.ts +6 -2
- package/dist/components/CcvDonutChart.d.ts +6 -2
- package/dist/components/CcvGaugeChart.d.ts +6 -2
- package/dist/components/CcvGroupedBarChart.d.ts +6 -2
- package/dist/components/CcvHeatmapChart.d.ts +6 -2
- package/dist/components/CcvHistogramChart.d.ts +6 -2
- package/dist/components/CcvLineChart.d.ts +6 -2
- package/dist/components/CcvLollipopChart.d.ts +6 -2
- package/dist/components/CcvMeterChart.d.ts +6 -2
- package/dist/components/CcvPieChart.d.ts +6 -2
- package/dist/components/CcvRadarChart.d.ts +6 -2
- package/dist/components/CcvScatterChart.d.ts +6 -2
- package/dist/components/CcvSimpleBarChart.d.ts +6 -2
- package/dist/components/CcvStackedAreaChart.d.ts +6 -2
- package/dist/components/CcvStackedBarChart.d.ts +6 -2
- package/dist/components/CcvTreeChart.d.ts +6 -2
- package/dist/components/CcvTreemapChart.d.ts +6 -2
- package/dist/components/CcvWordCloudChart.d.ts +6 -2
- package/dist/components/chartFactory.d.ts +6 -2
- package/dist/index.mjs +4313 -4254
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +294 -288
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/package.json +12 -12
- package/telemetry.yml +1 -1
|
@@ -22,7 +22,9 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
22
22
|
setParent: (parent: any) => void;
|
|
23
23
|
getParent: () => import('d3-selection').Selection<SVGGraphicsElement | HTMLDivElement, any, HTMLElement, any>;
|
|
24
24
|
getComponentContainer: (configs?: {
|
|
25
|
-
|
|
25
|
+
ariaLabel?: string | null;
|
|
26
|
+
isPresentational?: boolean;
|
|
27
|
+
withinChartClip?: boolean;
|
|
26
28
|
}) => import('d3-selection').Selection<any, any, Element, any>;
|
|
27
29
|
getOptions: () => any;
|
|
28
30
|
}[];
|
|
@@ -93,7 +95,9 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
93
95
|
setParent: (parent: any) => void;
|
|
94
96
|
getParent: () => import('d3-selection').Selection<SVGGraphicsElement | HTMLDivElement, any, HTMLElement, any>;
|
|
95
97
|
getComponentContainer: (configs?: {
|
|
96
|
-
|
|
98
|
+
ariaLabel?: string | null;
|
|
99
|
+
isPresentational?: boolean;
|
|
100
|
+
withinChartClip?: boolean;
|
|
97
101
|
}) => import('d3-selection').Selection<any, any, Element, any>;
|
|
98
102
|
getOptions: () => any;
|
|
99
103
|
}[];
|
|
@@ -32,7 +32,9 @@ export declare function chartFactory<T extends ChartOptions>(chartType: new (ele
|
|
|
32
32
|
setParent: (parent: any) => void;
|
|
33
33
|
getParent: () => import('d3-selection').Selection<SVGGraphicsElement | HTMLDivElement, any, HTMLElement, any>;
|
|
34
34
|
getComponentContainer: (configs?: {
|
|
35
|
-
|
|
35
|
+
ariaLabel?: string | null;
|
|
36
|
+
isPresentational?: boolean;
|
|
37
|
+
withinChartClip?: boolean;
|
|
36
38
|
}) => import('d3-selection').Selection<any, any, Element, any>;
|
|
37
39
|
getOptions: () => any;
|
|
38
40
|
}[];
|
|
@@ -103,7 +105,9 @@ export declare function chartFactory<T extends ChartOptions>(chartType: new (ele
|
|
|
103
105
|
setParent: (parent: any) => void;
|
|
104
106
|
getParent: () => import('d3-selection').Selection<SVGGraphicsElement | HTMLDivElement, any, HTMLElement, any>;
|
|
105
107
|
getComponentContainer: (configs?: {
|
|
106
|
-
|
|
108
|
+
ariaLabel?: string | null;
|
|
109
|
+
isPresentational?: boolean;
|
|
110
|
+
withinChartClip?: boolean;
|
|
107
111
|
}) => import('d3-selection').Selection<any, any, Element, any>;
|
|
108
112
|
getOptions: () => any;
|
|
109
113
|
}[];
|