@lotte-innovate/ui-component-test 0.0.159 → 0.0.160
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.
|
@@ -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?: ({
|