@lotte-innovate/ui-component-test 0.0.159 → 0.0.161
Sign up to get free protection for your applications and to get access to all the features.
@@ -7,9 +7,9 @@ export interface DoughnutChartProps extends VariantProps<typeof doughnutVariants
|
|
7
7
|
className?: string;
|
8
8
|
title?: IChartTitle;
|
9
9
|
legend?: IChartLegend;
|
10
|
-
datasets: IChartDatasets & {
|
10
|
+
datasets: (IChartDatasets & {
|
11
11
|
data: number[];
|
12
|
-
}[];
|
12
|
+
})[];
|
13
13
|
datalabels?: IChartDataLabels;
|
14
14
|
}
|
15
15
|
declare const doughnutVariants: (props?: ({
|
@@ -7,9 +7,9 @@ export interface PieChartProps extends VariantProps<typeof PieVariants> {
|
|
7
7
|
className?: string;
|
8
8
|
title?: IChartTitle;
|
9
9
|
legend?: IChartLegend;
|
10
|
-
datasets: IChartDatasets & {
|
10
|
+
datasets: (IChartDatasets & {
|
11
11
|
data: number[];
|
12
|
-
}[];
|
12
|
+
})[];
|
13
13
|
datalabels?: IChartDataLabels;
|
14
14
|
}
|
15
15
|
declare const PieVariants: (props?: ({
|