@zimyo/ui 1.18.0 → 1.19.0
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/dist/components/Badge/index.d.ts +1 -1
- package/dist/components/Charts/index.d.ts +3 -0
- package/dist/components/Charts/index.esm.js +1 -1
- package/dist/components/Charts/index.js +1 -1
- package/dist/components/DataTable/index.d.ts +1 -0
- package/dist/components/DataTable/index.esm.js +2 -2
- package/dist/components/DataTable/index.js +2 -2
- package/dist/components/DatePicker/index.esm.js +1 -1
- package/dist/components/DatePicker/index.js +1 -1
- package/dist/components/DateRangePicker/index.esm.js +1 -1
- package/dist/components/DateRangePicker/index.js +1 -1
- package/dist/components/LottiePlayer/index.esm.js +2 -2
- package/dist/components/LottiePlayer/index.js +1 -1
- package/dist/components/TimePicker/index.esm.js +1 -1
- package/dist/components/TimePicker/index.js +1 -1
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ interface BadgeProps extends VariantProps<typeof badgeVariants> {
|
|
|
21
21
|
declare const badgeVariants: (props?: ({
|
|
22
22
|
variant?: "text" | "outlined" | "contained" | null | undefined;
|
|
23
23
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
24
|
-
type?: "default" | "
|
|
24
|
+
type?: "default" | "success" | "error" | "info" | "warning" | null | undefined;
|
|
25
25
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
26
26
|
declare const Badge: ({ label, icon, iconPosition, dot, dotPosition, variant, size, type, color, className, }: BadgeProps) => react_jsx_runtime.JSX.Element;
|
|
27
27
|
|
|
@@ -24,6 +24,7 @@ interface BarChartProps {
|
|
|
24
24
|
width?: string | number;
|
|
25
25
|
theme?: 'light' | 'dark';
|
|
26
26
|
noDataText?: string;
|
|
27
|
+
noDataURL?: string;
|
|
27
28
|
}
|
|
28
29
|
declare const BarChart: React__default.FC<BarChartProps>;
|
|
29
30
|
|
|
@@ -37,6 +38,7 @@ interface PieChartProps {
|
|
|
37
38
|
width?: string | number;
|
|
38
39
|
theme?: "light" | "dark";
|
|
39
40
|
noDataText?: string;
|
|
41
|
+
noDataURL?: string;
|
|
40
42
|
}
|
|
41
43
|
declare const PieChart: React__default.FC<PieChartProps>;
|
|
42
44
|
|
|
@@ -55,6 +57,7 @@ interface LineChartProps {
|
|
|
55
57
|
width?: string | number;
|
|
56
58
|
theme?: "light" | "dark";
|
|
57
59
|
noDataText?: string;
|
|
60
|
+
noDataURL?: string;
|
|
58
61
|
}
|
|
59
62
|
declare const LineChart: React__default.FC<LineChartProps>;
|
|
60
63
|
|