@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
|
};
|