@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.
@@ -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;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  type TextAreaFormFeatureProps = {
3
3
  title?: string;
4
+ subtitle?: string;
4
5
  placeholder?: string;
5
6
  buttonText?: string;
6
7
  defaultValue?: string;
@@ -1,6 +1,7 @@
1
1
  import { FC } from 'react';
2
2
  type SpinnerProps = {
3
3
  size?: number;
4
+ className?: string;
4
5
  };
5
6
  declare const Spinner_v2: FC<SpinnerProps>;
6
7
  export default Spinner_v2;
@@ -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 {};