vrfi-design-system 1.2.23 → 1.2.25
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 +23 -1
- package/dist/main.es.js +12077 -11980
- package/dist/main.umd.js +120 -120
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -224,6 +224,20 @@ export declare interface AssignedEmployerProps {
|
|
|
224
224
|
profileAssignedHeading: string;
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
+
declare interface Attachment {
|
|
228
|
+
id?: number;
|
|
229
|
+
documentType?: string;
|
|
230
|
+
filename?: string;
|
|
231
|
+
approvalStatus?: string | null;
|
|
232
|
+
documentExpiry?: string | null;
|
|
233
|
+
issuedFromDate?: string | null;
|
|
234
|
+
attachment?: {
|
|
235
|
+
url?: string;
|
|
236
|
+
documentExpiry?: string | null;
|
|
237
|
+
issuedFromDate?: string | null;
|
|
238
|
+
};
|
|
239
|
+
}
|
|
240
|
+
|
|
227
241
|
export { AuthBanner }
|
|
228
242
|
|
|
229
243
|
export { AuthBannerTextType }
|
|
@@ -543,6 +557,8 @@ declare interface DocumentCardProps {
|
|
|
543
557
|
onDownload?: () => void;
|
|
544
558
|
}
|
|
545
559
|
|
|
560
|
+
export declare const DocumentDisplay: default_2.FC<Props>;
|
|
561
|
+
|
|
546
562
|
export declare function DocumentStatus(props: DocumentStatusTypes): default_2.JSX.Element;
|
|
547
563
|
|
|
548
564
|
export { DocumentStatusEnum }
|
|
@@ -1030,6 +1046,12 @@ export declare interface ProfileDetailProps {
|
|
|
1030
1046
|
textImage?: boolean;
|
|
1031
1047
|
}
|
|
1032
1048
|
|
|
1049
|
+
declare interface Props {
|
|
1050
|
+
title?: string;
|
|
1051
|
+
items: Attachment[];
|
|
1052
|
+
isViewAllButton?: boolean;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1033
1055
|
export { RadioChangeEvent }
|
|
1034
1056
|
|
|
1035
1057
|
export declare function RadioGroup({ name, required, label, options, customOnChange, ...rest }: RadioProps): default_2.JSX.Element;
|
|
@@ -1426,7 +1448,7 @@ export declare interface UserBadgeProps {
|
|
|
1426
1448
|
candidateName?: string;
|
|
1427
1449
|
}
|
|
1428
1450
|
|
|
1429
|
-
export declare function UserStatus(
|
|
1451
|
+
export declare function UserStatus({ userStatus }: UserStatusProps): default_2.JSX.Element;
|
|
1430
1452
|
|
|
1431
1453
|
export declare type UserStatusProps = {
|
|
1432
1454
|
userStatus: StatusTypes_2;
|