@mindly/ui-components 5.71.0 → 5.72.0
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/cjs/index.js +3 -3
- package/dist/cjs/lib/Consultations/UserInfoModal/UserInfoModal.d.ts +1 -1
- package/dist/cjs/lib2/features/TextAreaFormFeature/TextAreaFormFeature.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/Spinner_v2/Spinner_v2.d.ts +1 -0
- package/dist/cjs/lib2/widgets/UpdateContractWidget/UpdateContractWidget.d.ts +2 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib/Consultations/UserInfoModal/UserInfoModal.d.ts +1 -1
- package/dist/esm/lib2/features/TextAreaFormFeature/TextAreaFormFeature.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/Spinner_v2/Spinner_v2.d.ts +1 -0
- package/dist/esm/lib2/widgets/UpdateContractWidget/UpdateContractWidget.d.ts +2 -1
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ type UserInfoModalProps = {
|
|
|
13
13
|
onClose: () => void;
|
|
14
14
|
isClient?: boolean;
|
|
15
15
|
isShowContract?: boolean;
|
|
16
|
-
contractStatus?: 'not_signed' | 'pending' | 'active';
|
|
16
|
+
contractStatus?: 'not_signed' | 'pending' | 'active' | "expired";
|
|
17
17
|
handleOpenContract: () => void;
|
|
18
18
|
translations?: {
|
|
19
19
|
contractTitle: string;
|
|
@@ -8,6 +8,7 @@ type UpdateContractWidgetProps = {
|
|
|
8
8
|
applyText: string;
|
|
9
9
|
onApply: () => void;
|
|
10
10
|
agreementText: string[];
|
|
11
|
+
isLoading?: boolean;
|
|
11
12
|
};
|
|
12
|
-
export declare function UpdateContractWidget({ applyText, onApply, heading, image, avatar, agreementText, handlePressLink, isAccepted, setIsAccepted, }: UpdateContractWidgetProps): JSX.Element;
|
|
13
|
+
export declare function UpdateContractWidget({ applyText, onApply, heading, image, avatar, agreementText, handlePressLink, isAccepted, setIsAccepted, isLoading, }: UpdateContractWidgetProps): JSX.Element;
|
|
13
14
|
export {};
|