@mindly/ui-components 5.85.4 → 5.86.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 +4 -4
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingReviewsScreenPreviewFeature/OnBoardingReviewsScreenPreviewFeature.d.ts +4 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingReviewsScreenPreviewFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/index.d.ts +1 -0
- package/dist/cjs/lib2/features/ReviewCardFeature/ReviewsCardFeatureSkeleton.d.ts +2 -0
- package/dist/cjs/lib2/features/ReviewCardFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +4 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingReviewsScreenPreviewFeature/OnBoardingReviewsScreenPreviewFeature.d.ts +4 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingReviewsScreenPreviewFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/OnBoardingFlow/index.d.ts +1 -0
- package/dist/esm/lib2/features/ReviewCardFeature/ReviewsCardFeatureSkeleton.d.ts +2 -0
- package/dist/esm/lib2/features/ReviewCardFeature/index.d.ts +1 -0
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +4 -1
- package/dist/index.d.ts +81 -76
- package/package.json +1 -1
package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingReviewsScreenPreviewFeature/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as OnBoardingReviewsScreenPreviewFeature } from './OnBoardingReviewsScreenPreviewFeature';
|
|
@@ -4,3 +4,4 @@ export * from './OnBoardingMultiSelectionScreenPreviewFeature';
|
|
|
4
4
|
export * from './OnBoardingSingleSelectionScreenPreviewFeature';
|
|
5
5
|
export * from './OnBoardingLoaderScreenPreviewFeature';
|
|
6
6
|
export * from './OnBoardingProgressFeature';
|
|
7
|
+
export * from './OnBoardingReviewsScreenPreviewFeature';
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { ResponseFileType } from './responseFileType';
|
|
2
|
+
import { ISpecialistReview } from '../../../lib/ReviewSwiperSection';
|
|
3
|
+
import { TranslationType } from './common';
|
|
2
4
|
export declare enum ConditionRulesType {
|
|
3
5
|
IS = "is"
|
|
4
6
|
}
|
|
@@ -80,9 +82,10 @@ export type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
|
|
|
80
82
|
allScreens?: Record<string, OnBoardingScreensType>;
|
|
81
83
|
selectedAnswers?: Record<string, string[]>;
|
|
82
84
|
};
|
|
83
|
-
export type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & {
|
|
85
|
+
export type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & TranslationType & {
|
|
84
86
|
title?: string | null;
|
|
85
87
|
reviewLocale: string;
|
|
88
|
+
reviews: ISpecialistReview[];
|
|
86
89
|
};
|
|
87
90
|
export type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType;
|
|
88
91
|
export type OnBoardingFlowType = {
|