vrfi-design-system 1.2.16 → 1.2.17
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/index.d.ts +18 -0
- package/dist/main.es.js +28055 -20714
- package/dist/main.umd.js +181 -157
- package/dist/style.css +1 -1
- package/package.json +4 -1
package/dist/index.d.ts
CHANGED
|
@@ -310,6 +310,7 @@ declare interface CardStatsProps {
|
|
|
310
310
|
title?: string;
|
|
311
311
|
overview: StatItem_2[];
|
|
312
312
|
itemsPerRow?: number;
|
|
313
|
+
info?: string;
|
|
313
314
|
}
|
|
314
315
|
|
|
315
316
|
export declare function CardWithIconAndText({ icon, heading, subHeading }: CardWithIconAndTextProps): default_2.JSX.Element;
|
|
@@ -393,6 +394,8 @@ export { Col }
|
|
|
393
394
|
|
|
394
395
|
export { Colors }
|
|
395
396
|
|
|
397
|
+
declare type Colors_2 = Record<string, string> | string[];
|
|
398
|
+
|
|
396
399
|
export { ColProps }
|
|
397
400
|
|
|
398
401
|
export { ColumnGroupType }
|
|
@@ -697,6 +700,13 @@ declare interface InputWithCountryFlagProps extends Omit<CustomInputProps, "cust
|
|
|
697
700
|
onlyCountries?: AllowedCountries_2[];
|
|
698
701
|
}
|
|
699
702
|
|
|
703
|
+
declare type Item = {
|
|
704
|
+
key: string;
|
|
705
|
+
label: string;
|
|
706
|
+
count: number;
|
|
707
|
+
percentage: number;
|
|
708
|
+
};
|
|
709
|
+
|
|
700
710
|
export declare const JobCard: FC<JobCardProps>;
|
|
701
711
|
|
|
702
712
|
declare interface JobCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -914,6 +924,14 @@ declare interface PathIconProps {
|
|
|
914
924
|
className: Icons_2;
|
|
915
925
|
}
|
|
916
926
|
|
|
927
|
+
export declare function PieChart({ title, data, colors, height, info, }: {
|
|
928
|
+
title?: string;
|
|
929
|
+
data: Item[];
|
|
930
|
+
colors?: Colors_2;
|
|
931
|
+
height?: number;
|
|
932
|
+
info?: string;
|
|
933
|
+
}): default_2.JSX.Element;
|
|
934
|
+
|
|
917
935
|
export { Placement }
|
|
918
936
|
|
|
919
937
|
export { Popover }
|