@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.
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OnBoardingReviewsScreenType } from '../../../shared';
3
+ declare const _default: React.NamedExoticComponent<OnBoardingReviewsScreenType>;
4
+ export default _default;
@@ -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';
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const ReviewsCardFeatureSkeleton: React.MemoExoticComponent<() => JSX.Element>;
@@ -1 +1,2 @@
1
1
  export { default as ReviewCardFeature } from './ReviewCardFeature';
2
+ export { ReviewsCardFeatureSkeleton } from './ReviewsCardFeatureSkeleton';
@@ -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 = {