@mindly/ui-components 5.105.2-dev.1 → 5.105.3-dev.1
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 +6 -6
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/OnBoardingPaywallScreenPreviewFeature.d.ts +3 -2
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/conts.d.ts +0 -2
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +1 -0
- package/dist/esm/index.js +5 -5
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/OnBoardingPaywallScreenPreviewFeature.d.ts +3 -2
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/conts.d.ts +0 -2
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
|
-
import { OnBoardingPaywallScreenType, OnboardingVariant, Specialist
|
|
2
|
+
import { OnBoardingPaywallScreenType, OnboardingVariant, Specialist } from '../../../shared';
|
|
3
3
|
import 'slick-carousel/slick/slick.css';
|
|
4
4
|
import 'slick-carousel/slick/slick-theme.css';
|
|
5
|
+
import { ISpecialistReview } from '../../../..';
|
|
5
6
|
type OnBoardingPaywallScreenPreviewFeatureProps = {
|
|
6
7
|
variant?: OnboardingVariant;
|
|
7
8
|
specialists: Specialist[];
|
|
8
|
-
reviews:
|
|
9
|
+
reviews: ISpecialistReview[];
|
|
9
10
|
locale?: string;
|
|
10
11
|
useAdditionalDiscount?: boolean;
|
|
11
12
|
onBuyTariff?: (tariffId: string) => void;
|
|
@@ -149,6 +149,7 @@ export type OnBoardingPaywallScreenType = OnBoardingBaseScreenType & OnBoardingS
|
|
|
149
149
|
tariffs: Tariff[];
|
|
150
150
|
percentDiscount: number;
|
|
151
151
|
additionalDiscount?: number;
|
|
152
|
+
promocodeDuration?: number;
|
|
152
153
|
};
|
|
153
154
|
export type OnBoardingCompareScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenTranslationsType & OnBoardingScreenErrorsType & {
|
|
154
155
|
title: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1681,6 +1681,7 @@ type OnBoardingPaywallScreenType = OnBoardingBaseScreenType & OnBoardingScreenBu
|
|
|
1681
1681
|
tariffs: Tariff[];
|
|
1682
1682
|
percentDiscount: number;
|
|
1683
1683
|
additionalDiscount?: number;
|
|
1684
|
+
promocodeDuration?: number;
|
|
1684
1685
|
};
|
|
1685
1686
|
type OnBoardingCompareScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenTranslationsType & OnBoardingScreenErrorsType & {
|
|
1686
1687
|
title: string;
|
|
@@ -3411,7 +3412,7 @@ declare const OnBoardingCompareScreenPreviewFeature: FC<OnBoardingPaywallScreenP
|
|
|
3411
3412
|
type OnBoardingPaywallScreenPreviewFeatureProps = {
|
|
3412
3413
|
variant?: OnboardingVariant;
|
|
3413
3414
|
specialists: Specialist[];
|
|
3414
|
-
reviews:
|
|
3415
|
+
reviews: ISpecialistReview[];
|
|
3415
3416
|
locale?: string;
|
|
3416
3417
|
useAdditionalDiscount?: boolean;
|
|
3417
3418
|
onBuyTariff?: (tariffId: string) => void;
|