@mindly/ui-components 5.71.1 → 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 +2 -2
- 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/esm/index.js +3 -3
- 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/index.d.ts +3 -1
- 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;
|
package/dist/index.d.ts
CHANGED
|
@@ -823,7 +823,7 @@ type UserInfoModalProps = {
|
|
|
823
823
|
onClose: () => void;
|
|
824
824
|
isClient?: boolean;
|
|
825
825
|
isShowContract?: boolean;
|
|
826
|
-
contractStatus?: 'not_signed' | 'pending' | 'active';
|
|
826
|
+
contractStatus?: 'not_signed' | 'pending' | 'active' | "expired";
|
|
827
827
|
handleOpenContract: () => void;
|
|
828
828
|
translations?: {
|
|
829
829
|
contractTitle: string;
|
|
@@ -1886,6 +1886,7 @@ declare const ScreenInput: React__default.ForwardRefExoticComponent<ScreenInputP
|
|
|
1886
1886
|
|
|
1887
1887
|
type SpinnerProps = {
|
|
1888
1888
|
size?: number;
|
|
1889
|
+
className?: string;
|
|
1889
1890
|
};
|
|
1890
1891
|
declare const Spinner_v2: FC<SpinnerProps>;
|
|
1891
1892
|
|
|
@@ -2766,6 +2767,7 @@ declare const _default$4: React__default.NamedExoticComponent<SpecialistDrumPick
|
|
|
2766
2767
|
|
|
2767
2768
|
type TextAreaFormFeatureProps = {
|
|
2768
2769
|
title?: string;
|
|
2770
|
+
subtitle?: string;
|
|
2769
2771
|
placeholder?: string;
|
|
2770
2772
|
buttonText?: string;
|
|
2771
2773
|
defaultValue?: string;
|