vrfi-design-system 1.1.5 → 1.1.7
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 +10 -3
- package/dist/main.es.js +10695 -10542
- package/dist/main.umd.js +106 -106
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -290,7 +290,7 @@ export declare interface CheckboxSelectFieldProps extends SelectPropsBase {
|
|
|
290
290
|
handleCheckboxChange?: (value: string) => void;
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
|
|
293
|
+
export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
|
|
294
294
|
|
|
295
295
|
declare interface CheckBoxWithFormWrapperProps {
|
|
296
296
|
children?: default_2.ReactNode;
|
|
@@ -302,6 +302,7 @@ declare interface CheckBoxWithFormWrapperProps {
|
|
|
302
302
|
name: string;
|
|
303
303
|
className?: string;
|
|
304
304
|
singleSelectionMode?: boolean;
|
|
305
|
+
customOptionDisplay?: boolean;
|
|
305
306
|
}
|
|
306
307
|
|
|
307
308
|
export { Col }
|
|
@@ -749,6 +750,9 @@ declare interface PreviewCardProps {
|
|
|
749
750
|
onDelete?: () => void;
|
|
750
751
|
expiryDate?: string;
|
|
751
752
|
showDownloadIcon?: boolean;
|
|
753
|
+
verificationStatus?: string;
|
|
754
|
+
canUpload?: boolean;
|
|
755
|
+
handleUploadClick?: (fileName: string) => void;
|
|
752
756
|
}
|
|
753
757
|
|
|
754
758
|
export declare const PreviewDocumentsCard: default_2.FC<PreviewDocumentsCardProps>;
|
|
@@ -756,6 +760,8 @@ export declare const PreviewDocumentsCard: default_2.FC<PreviewDocumentsCardProp
|
|
|
756
760
|
export declare interface PreviewDocumentsCardProps {
|
|
757
761
|
fileName: string;
|
|
758
762
|
onRemove: () => void;
|
|
763
|
+
onRename?: (newName: string) => void;
|
|
764
|
+
canRename?: boolean;
|
|
759
765
|
}
|
|
760
766
|
|
|
761
767
|
export declare function ProfileAssignedCard({ name }: ProfileAssignedCardProps): default_2.JSX.Element;
|
|
@@ -967,15 +973,16 @@ declare interface TabsProps extends TabsProps_2 {
|
|
|
967
973
|
innerRef?: default_2.RefObject<HTMLDivElement> | null;
|
|
968
974
|
}
|
|
969
975
|
|
|
970
|
-
export declare const TextArea: ({ className, label, value, required, ...props }: TextAreaProps) => default_2.JSX.Element;
|
|
976
|
+
export declare const TextArea: ({ className, label, value, required, customInput, ...props }: TextAreaProps) => default_2.JSX.Element;
|
|
971
977
|
|
|
972
978
|
export declare interface TextAreaProps extends Omit<TextAreaProps_2, "value"> {
|
|
973
979
|
label?: string;
|
|
974
980
|
value?: string;
|
|
975
981
|
required?: boolean;
|
|
982
|
+
customInput?: boolean;
|
|
976
983
|
}
|
|
977
984
|
|
|
978
|
-
export declare const TextAreaWithController: ({ label,
|
|
985
|
+
export declare const TextAreaWithController: ({ label, placeholder, required, name, customInput, ...rest }: TextAreaWithControllerProps) => default_2.JSX.Element;
|
|
979
986
|
|
|
980
987
|
export declare type TextAreaWithControllerProps = CustomInputProps & TextAreaProps_2;
|
|
981
988
|
|