vrfi-design-system 1.1.7 → 1.1.9
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 +39 -1
- package/dist/main.es.js +21194 -19785
- package/dist/main.umd.js +162 -150
- package/dist/style.css +1 -1
- package/package.json +1 -1
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';
|
|
@@ -86,6 +87,7 @@ import { Size } from '../../enums/size.enum';
|
|
|
86
87
|
import { Size as Size_2 } from '../../../enums/size.enum';
|
|
87
88
|
import { SizeType } from 'antd/lib/config-provider/SizeContext';
|
|
88
89
|
import { SizeType as SizeType_2 } from 'antd/es/config-provider/SizeContext';
|
|
90
|
+
import { SliderSingleProps } from 'antd';
|
|
89
91
|
import { SorterResult } from 'antd/lib/table/interface';
|
|
90
92
|
import { SortOrder } from 'antd/lib/table/interface';
|
|
91
93
|
import { SortOrderKeys } from './../../enums/sortOrderKeys.enum';
|
|
@@ -141,6 +143,18 @@ declare interface AccordionProps extends CollapseProps {
|
|
|
141
143
|
|
|
142
144
|
export { ActionType }
|
|
143
145
|
|
|
146
|
+
export declare const AgencyDocumentCard: default_2.FC<AgencyDocumentCardProps>;
|
|
147
|
+
|
|
148
|
+
declare interface AgencyDocumentCardProps {
|
|
149
|
+
fileName?: string;
|
|
150
|
+
showPreviewIcon?: Boolean;
|
|
151
|
+
showDownloadIcon?: Boolean;
|
|
152
|
+
url?: string;
|
|
153
|
+
vaildFrom?: string;
|
|
154
|
+
expiresOn?: string;
|
|
155
|
+
verificationStatus?: string;
|
|
156
|
+
}
|
|
157
|
+
|
|
144
158
|
export declare const AgencyJobCard: FC<AgencyJobCardProps>;
|
|
145
159
|
|
|
146
160
|
declare interface AgencyJobCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -451,6 +465,8 @@ export declare interface DocumentViewProps {
|
|
|
451
465
|
title: string;
|
|
452
466
|
}
|
|
453
467
|
|
|
468
|
+
export { DocVerificationStatus }
|
|
469
|
+
|
|
454
470
|
export { DOM_ELEMENT_ROLE }
|
|
455
471
|
|
|
456
472
|
export declare const Drawer: FC<DrawerProps>;
|
|
@@ -809,7 +825,7 @@ export declare interface ProfileDetailProps {
|
|
|
809
825
|
|
|
810
826
|
export declare function RadioGroup({ name, required, label, options, customOnChange, ...rest }: RadioProps): default_2.JSX.Element;
|
|
811
827
|
|
|
812
|
-
declare interface RadioProps extends RadioProps_2, Pick<RadioGroupProps,
|
|
828
|
+
export declare interface RadioProps extends RadioProps_2, Pick<RadioGroupProps, "options"> {
|
|
813
829
|
name: string;
|
|
814
830
|
label?: string;
|
|
815
831
|
required?: boolean;
|
|
@@ -877,6 +893,24 @@ export declare interface SidebarProps {
|
|
|
877
893
|
|
|
878
894
|
export { Size }
|
|
879
895
|
|
|
896
|
+
export declare const Slider: default_2.FC<SliderProps>;
|
|
897
|
+
|
|
898
|
+
export declare interface SliderProps extends SliderSingleProps {
|
|
899
|
+
labels: string[];
|
|
900
|
+
isVertical?: boolean;
|
|
901
|
+
horizontalMarks?: boolean;
|
|
902
|
+
step?: number | null;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
export declare const SliderWithForm: default_2.FC<SliderWithFormProps>;
|
|
906
|
+
|
|
907
|
+
export declare interface SliderWithFormProps extends SliderSingleProps {
|
|
908
|
+
name: string;
|
|
909
|
+
labels: string[];
|
|
910
|
+
isVertical?: boolean;
|
|
911
|
+
horizontalMarks?: boolean;
|
|
912
|
+
}
|
|
913
|
+
|
|
880
914
|
export { SorterResult }
|
|
881
915
|
|
|
882
916
|
export { SortOrder }
|
|
@@ -1010,6 +1044,10 @@ export declare interface TitleHeaderProps {
|
|
|
1010
1044
|
prefix?: ReactNode;
|
|
1011
1045
|
suffix?: ReactNode;
|
|
1012
1046
|
fontSize?: Size_2;
|
|
1047
|
+
address?: string;
|
|
1048
|
+
identifier?: string;
|
|
1049
|
+
verfied?: Boolean;
|
|
1050
|
+
avatarIcon?: Boolean;
|
|
1013
1051
|
}
|
|
1014
1052
|
|
|
1015
1053
|
export { TitleHeaderStatus }
|