vrfi-design-system 1.2.13 → 1.2.15

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 CHANGED
@@ -503,6 +503,12 @@ export declare interface DashboardCardProps {
503
503
  data: Stats[];
504
504
  }
505
505
 
506
+ export declare const DashboardStats: default_2.FC<DashboardStatsProps>;
507
+
508
+ declare interface DashboardStatsProps extends HTMLAttributes<HTMLDivElement> {
509
+ dashboardData: StatGroup[];
510
+ }
511
+
506
512
  export declare const DatePicker: default_2.FC<DatePickerComponentProps>;
507
513
 
508
514
  export { DatePickerAntd }
@@ -1027,6 +1033,20 @@ export declare interface RatingCardProps {
1027
1033
  className?: string;
1028
1034
  }
1029
1035
 
1036
+ declare interface RatingItem {
1037
+ stars: number;
1038
+ percentage: number;
1039
+ }
1040
+
1041
+ export declare const RatingProgressBar: default_2.FC<RatingProgressBarProps>;
1042
+
1043
+ declare interface RatingProgressBarProps {
1044
+ ratings: RatingItem[];
1045
+ totalCandidates: number;
1046
+ className?: string;
1047
+ title?: string;
1048
+ }
1049
+
1030
1050
  export declare const RatingStar: default_2.FC<RatingStarProps>;
1031
1051
 
1032
1052
  export declare interface RatingStarProps {
@@ -1167,6 +1187,17 @@ export { SoundEnum }
1167
1187
 
1168
1188
  export { Space }
1169
1189
 
1190
+ declare interface StatGroup {
1191
+ title: string;
1192
+ stats: StatItem[];
1193
+ }
1194
+
1195
+ declare interface StatItem {
1196
+ key: string;
1197
+ label: string;
1198
+ count: string | number;
1199
+ }
1200
+
1170
1201
  export declare interface Stats {
1171
1202
  label: string;
1172
1203
  value: string | number;