vrfi-design-system 1.2.15 → 1.2.16

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
@@ -304,6 +304,14 @@ export declare interface CardProps {
304
304
  children?: default_2.ReactNode;
305
305
  }
306
306
 
307
+ export declare const CardStats: default_2.FC<CardStatsProps>;
308
+
309
+ declare interface CardStatsProps {
310
+ title?: string;
311
+ overview: StatItem_2[];
312
+ itemsPerRow?: number;
313
+ }
314
+
307
315
  export declare function CardWithIconAndText({ icon, heading, subHeading }: CardWithIconAndTextProps): default_2.JSX.Element;
308
316
 
309
317
  export declare interface CardWithIconAndTextProps {
@@ -507,6 +515,7 @@ export declare const DashboardStats: default_2.FC<DashboardStatsProps>;
507
515
 
508
516
  declare interface DashboardStatsProps extends HTMLAttributes<HTMLDivElement> {
509
517
  dashboardData: StatGroup[];
518
+ isLightTheme?: boolean;
510
519
  }
511
520
 
512
521
  export declare const DatePicker: default_2.FC<DatePickerComponentProps>;
@@ -1198,6 +1207,12 @@ declare interface StatItem {
1198
1207
  count: string | number;
1199
1208
  }
1200
1209
 
1210
+ declare interface StatItem_2 {
1211
+ key: string;
1212
+ label: string;
1213
+ value: string | number;
1214
+ }
1215
+
1201
1216
  export declare interface Stats {
1202
1217
  label: string;
1203
1218
  value: string | number;