vrfi-design-system 1.1.7 → 1.1.8

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
@@ -28,6 +28,7 @@ import { default as default_2 } from 'react';
28
28
  import { default as default_3 } from 'dayjs';
29
29
  import { DocumentStatusEnum } from '../../enums/documentStatus.enum';
30
30
  import { DocumentStatusEnum as DocumentStatusEnum_2 } from '../../../enums/documentStatus.enum';
31
+ import { DocVerificationStatus } from '../../enums/docVerificationStatus.enum';
31
32
  import { DOM_ELEMENT_ROLE } from './../../enums/domElementRole.enum';
32
33
  import { DrawerProps as DrawerProps_2 } from 'antd';
33
34
  import { FC } from 'react';
@@ -141,6 +142,18 @@ declare interface AccordionProps extends CollapseProps {
141
142
 
142
143
  export { ActionType }
143
144
 
145
+ export declare const AgencyDocumentCard: default_2.FC<AgencyDocumentCardProps>;
146
+
147
+ declare interface AgencyDocumentCardProps {
148
+ fileName?: string;
149
+ showPreviewIcon?: Boolean;
150
+ showDownloadIcon?: Boolean;
151
+ url?: string;
152
+ vaildFrom?: string;
153
+ expiresOn?: string;
154
+ verificationStatus?: string;
155
+ }
156
+
144
157
  export declare const AgencyJobCard: FC<AgencyJobCardProps>;
145
158
 
146
159
  declare interface AgencyJobCardProps extends HTMLAttributes<HTMLDivElement> {
@@ -451,6 +464,8 @@ export declare interface DocumentViewProps {
451
464
  title: string;
452
465
  }
453
466
 
467
+ export { DocVerificationStatus }
468
+
454
469
  export { DOM_ELEMENT_ROLE }
455
470
 
456
471
  export declare const Drawer: FC<DrawerProps>;
@@ -1010,6 +1025,10 @@ export declare interface TitleHeaderProps {
1010
1025
  prefix?: ReactNode;
1011
1026
  suffix?: ReactNode;
1012
1027
  fontSize?: Size_2;
1028
+ address?: string;
1029
+ identifier?: string;
1030
+ verfied?: Boolean;
1031
+ avatarIcon?: Boolean;
1013
1032
  }
1014
1033
 
1015
1034
  export { TitleHeaderStatus }