@mindly/ui-components 5.97.11 → 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.
@@ -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;
@@ -38,6 +38,9 @@ export type OnBoardingScreenButtonType = {
38
38
  buttonColor?: string | null;
39
39
  buttonTextColor?: string | null;
40
40
  };
41
+ export type OnBoardingScreenSkipButtonType = {
42
+ skipButtonText?: string | null;
43
+ };
41
44
  export type OnBoardingScreenBgType = {
42
45
  backgroundColor?: string | null;
43
46
  contentStyle: OnBoardingScreenStyleOptions;
@@ -62,8 +65,9 @@ export type OnBoardingBaseScreenType = {
62
65
  };
63
66
  isPreview?: boolean;
64
67
  isPageView?: boolean;
68
+ hideTimer?: boolean;
65
69
  };
66
- export type OnBoardingStartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenBgType & OnBoardingScreenDescriptionType & {
70
+ export type OnBoardingStartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenSkipButtonType & OnBoardingScreenBgType & OnBoardingScreenDescriptionType & {
67
71
  image?: ResponseFileType | null;
68
72
  };
69
73
  export type OnBoardingInfoScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenBgType & OnBoardingScreenDescriptionType & {
@@ -105,4 +109,7 @@ export type OnBoardingFlowType = {
105
109
  name: string;
106
110
  }[];
107
111
  };
112
+ promocode_percent?: number | null;
113
+ promocode_duration_min?: number | null;
114
+ duration_min?: number | null;
108
115
  };