@mindly/ui-components 5.97.12 → 5.97.13
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 +4 -4
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/OnBoardingProgressFeature.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +4 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/OnBoardingProgressFeature.d.ts +1 -0
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +4 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ type OnBoardingProgressFeatureProps = {
|
|
|
6
6
|
isBackButtonDisabled?: boolean;
|
|
7
7
|
onBackButtonClick?: () => void;
|
|
8
8
|
contentStyle?: OnBoardingScreenStyleOptions;
|
|
9
|
+
startAdornment?: React.ReactNode;
|
|
9
10
|
};
|
|
10
11
|
declare const _default: React.NamedExoticComponent<OnBoardingProgressFeatureProps>;
|
|
11
12
|
export default _default;
|
|
@@ -65,6 +65,7 @@ export type OnBoardingBaseScreenType = {
|
|
|
65
65
|
};
|
|
66
66
|
isPreview?: boolean;
|
|
67
67
|
isPageView?: boolean;
|
|
68
|
+
hideTimer?: boolean;
|
|
68
69
|
};
|
|
69
70
|
export type OnBoardingStartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenSkipButtonType & OnBoardingScreenBgType & OnBoardingScreenDescriptionType & {
|
|
70
71
|
image?: ResponseFileType | null;
|
|
@@ -108,4 +109,7 @@ export type OnBoardingFlowType = {
|
|
|
108
109
|
name: string;
|
|
109
110
|
}[];
|
|
110
111
|
};
|
|
112
|
+
promocode_percent?: number | null;
|
|
113
|
+
promocode_duration_min?: number | null;
|
|
114
|
+
duration_min?: number | null;
|
|
111
115
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1539,6 +1539,7 @@ type OnBoardingBaseScreenType = {
|
|
|
1539
1539
|
};
|
|
1540
1540
|
isPreview?: boolean;
|
|
1541
1541
|
isPageView?: boolean;
|
|
1542
|
+
hideTimer?: boolean;
|
|
1542
1543
|
};
|
|
1543
1544
|
type OnBoardingStartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenSkipButtonType & OnBoardingScreenBgType & OnBoardingScreenDescriptionType & {
|
|
1544
1545
|
image?: ResponseFileType | null;
|
|
@@ -1582,6 +1583,9 @@ type OnBoardingFlowType = {
|
|
|
1582
1583
|
name: string;
|
|
1583
1584
|
}[];
|
|
1584
1585
|
};
|
|
1586
|
+
promocode_percent?: number | null;
|
|
1587
|
+
promocode_duration_min?: number | null;
|
|
1588
|
+
duration_min?: number | null;
|
|
1585
1589
|
};
|
|
1586
1590
|
|
|
1587
1591
|
declare enum ContractStatusEnum {
|
|
@@ -3078,6 +3082,7 @@ type OnBoardingProgressFeatureProps = {
|
|
|
3078
3082
|
isBackButtonDisabled?: boolean;
|
|
3079
3083
|
onBackButtonClick?: () => void;
|
|
3080
3084
|
contentStyle?: OnBoardingScreenStyleOptions;
|
|
3085
|
+
startAdornment?: React__default.ReactNode;
|
|
3081
3086
|
};
|
|
3082
3087
|
declare const _default$h: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
|
|
3083
3088
|
|