@mindly/ui-components 5.97.12 → 5.98.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.
Files changed (54) hide show
  1. package/dist/cjs/index.js +6 -6
  2. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/OnBoardingProgressFeature.d.ts +1 -0
  3. package/dist/cjs/lib2/features/SessionPreviewFeature/SessionPreviewFeature.stories.d.ts +2 -1
  4. package/dist/cjs/lib2/features/SessionPreviewFeature/styles.d.ts +7 -0
  5. package/dist/cjs/lib2/features/SessionPreviewFeature/types.d.ts +2 -0
  6. package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/ReviewSubscriptionSessionFeature.d.ts +18 -0
  7. package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/SessionReview.d.ts +19 -0
  8. package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/SpecialistReview.d.ts +17 -0
  9. package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/constants.d.ts +8 -0
  10. package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/index.d.ts +2 -0
  11. package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/ReviewTrialSessionFeature.d.ts +23 -0
  12. package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/constants.d.ts +8 -0
  13. package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/index.d.ts +2 -0
  14. package/dist/cjs/lib2/features/SessionReviewsFeature/components/StarRating.d.ts +7 -0
  15. package/dist/cjs/lib2/features/SessionReviewsFeature/components/TagsList.d.ts +16 -0
  16. package/dist/cjs/lib2/features/SessionReviewsFeature/index.d.ts +4 -0
  17. package/dist/cjs/lib2/features/index.d.ts +1 -0
  18. package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +4 -0
  19. package/dist/cjs/lib2/shared/types/session.d.ts +13 -0
  20. package/dist/cjs/lib2/shared/ui/Textarea_v2/types.d.ts +1 -0
  21. package/dist/cjs/lib2/shared/utils/index.d.ts +1 -0
  22. package/dist/cjs/lib2/shared/utils/mock.d.ts +1 -0
  23. package/dist/cjs/lib2/shared/utils/session.d.ts +2 -1
  24. package/dist/cjs/lib2/widgets/SessionsListWidget/SessionsListWidgetSkeleton.d.ts +3 -1
  25. package/dist/cjs/lib2/widgets/SessionsListWidget/index.d.ts +1 -0
  26. package/dist/cjs/lib2/widgets/SessionsListWidget/types.d.ts +7 -4
  27. package/dist/esm/index.js +6 -6
  28. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/OnBoardingProgressFeature.d.ts +1 -0
  29. package/dist/esm/lib2/features/SessionPreviewFeature/SessionPreviewFeature.stories.d.ts +2 -1
  30. package/dist/esm/lib2/features/SessionPreviewFeature/styles.d.ts +7 -0
  31. package/dist/esm/lib2/features/SessionPreviewFeature/types.d.ts +2 -0
  32. package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/ReviewSubscriptionSessionFeature.d.ts +18 -0
  33. package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/SessionReview.d.ts +19 -0
  34. package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/SpecialistReview.d.ts +17 -0
  35. package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/constants.d.ts +8 -0
  36. package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/index.d.ts +2 -0
  37. package/dist/esm/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/ReviewTrialSessionFeature.d.ts +23 -0
  38. package/dist/esm/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/constants.d.ts +8 -0
  39. package/dist/esm/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/index.d.ts +2 -0
  40. package/dist/esm/lib2/features/SessionReviewsFeature/components/StarRating.d.ts +7 -0
  41. package/dist/esm/lib2/features/SessionReviewsFeature/components/TagsList.d.ts +16 -0
  42. package/dist/esm/lib2/features/SessionReviewsFeature/index.d.ts +4 -0
  43. package/dist/esm/lib2/features/index.d.ts +1 -0
  44. package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +4 -0
  45. package/dist/esm/lib2/shared/types/session.d.ts +13 -0
  46. package/dist/esm/lib2/shared/ui/Textarea_v2/types.d.ts +1 -0
  47. package/dist/esm/lib2/shared/utils/index.d.ts +1 -0
  48. package/dist/esm/lib2/shared/utils/mock.d.ts +1 -0
  49. package/dist/esm/lib2/shared/utils/session.d.ts +2 -1
  50. package/dist/esm/lib2/widgets/SessionsListWidget/SessionsListWidgetSkeleton.d.ts +3 -1
  51. package/dist/esm/lib2/widgets/SessionsListWidget/index.d.ts +1 -0
  52. package/dist/esm/lib2/widgets/SessionsListWidget/types.d.ts +7 -4
  53. package/dist/index.d.ts +116 -8
  54. 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;
@@ -9,5 +9,6 @@ export declare const Soon: Story;
9
9
  export declare const Near: Story;
10
10
  export declare const NearInDays: Story;
11
11
  export declare const Future: Story;
12
- export declare const Past: Story;
12
+ export declare const PastRated: Story;
13
+ export declare const PastNotRated: Story;
13
14
  export declare const Loading: Story;
@@ -2,6 +2,7 @@ export declare const sessionPreviewFeatureStyle: import("tailwind-variants").TVR
2
2
  variant: {
3
3
  default: {
4
4
  root: string;
5
+ label: string;
5
6
  };
6
7
  current: {
7
8
  root: string;
@@ -26,6 +27,7 @@ export declare const sessionPreviewFeatureStyle: import("tailwind-variants").TVR
26
27
  variant: {
27
28
  default: {
28
29
  root: string;
30
+ label: string;
29
31
  };
30
32
  current: {
31
33
  root: string;
@@ -47,6 +49,7 @@ export declare const sessionPreviewFeatureStyle: import("tailwind-variants").TVR
47
49
  variant: {
48
50
  default: {
49
51
  root: string;
52
+ label: string;
50
53
  };
51
54
  current: {
52
55
  root: string;
@@ -68,6 +71,7 @@ export declare const sessionPreviewFeatureStyle: import("tailwind-variants").TVR
68
71
  variant: {
69
72
  default: {
70
73
  root: string;
74
+ label: string;
71
75
  };
72
76
  current: {
73
77
  root: string;
@@ -92,6 +96,7 @@ export declare const sessionPreviewFeatureStyle: import("tailwind-variants").TVR
92
96
  variant: {
93
97
  default: {
94
98
  root: string;
99
+ label: string;
95
100
  };
96
101
  current: {
97
102
  root: string;
@@ -116,6 +121,7 @@ export declare const sessionPreviewFeatureStyle: import("tailwind-variants").TVR
116
121
  variant: {
117
122
  default: {
118
123
  root: string;
124
+ label: string;
119
125
  };
120
126
  current: {
121
127
  root: string;
@@ -137,6 +143,7 @@ export declare const sessionPreviewFeatureStyle: import("tailwind-variants").TVR
137
143
  variant: {
138
144
  default: {
139
145
  root: string;
146
+ label: string;
140
147
  };
141
148
  current: {
142
149
  root: string;
@@ -5,6 +5,8 @@ export type SessionPreviewFeatureProps = {
5
5
  viewPerson?: 'client' | 'specialist';
6
6
  t?: WithTranslation['t'];
7
7
  isLoading?: boolean;
8
+ maxPeriodToReviewPastSessionInHours?: number;
8
9
  onSessionClick?(session: Session): void;
9
10
  onSessionStart?(session: Session): void;
11
+ rateSessionCallback?: (session: Session) => void;
10
12
  };
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+ import { SessionReview } from './SessionReview';
3
+ import { SpecialistReview } from './SpecialistReview';
4
+ export type ReviewSubscriptionSessionFeatureProps = {
5
+ specialistName: string;
6
+ specialistAvatar: string;
7
+ isOpen: boolean;
8
+ specialistReviewNeeded: boolean;
9
+ sessionReviewProps: React.ComponentProps<typeof SessionReview> & {
10
+ onModalAppeared?: () => void;
11
+ };
12
+ specialistReviewProps: React.ComponentProps<typeof SpecialistReview> & {
13
+ onModalAppeared?: () => void;
14
+ };
15
+ onClose: () => void;
16
+ };
17
+ declare const ReviewSubscriptionSessionFeature: React.FC<ReviewSubscriptionSessionFeatureProps>;
18
+ export default ReviewSubscriptionSessionFeature;
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+ type SessionReviewProps = {
3
+ specialistName: string;
4
+ onSubmit: (data: {
5
+ rate: number;
6
+ reason: string;
7
+ is_custom_reason: boolean;
8
+ comment?: string;
9
+ }) => Promise<void>;
10
+ specialistReviewNeeded?: boolean;
11
+ onModalAppeared?: () => void;
12
+ onStarsClick?: (rate: number) => void;
13
+ onReasonClick?: (rate: number, reason: string, is_custom_reason: boolean) => void;
14
+ onCommentBlur?: (rate: number, reason: string, is_custom_reason: boolean, comment: string) => void;
15
+ onContinueClick?: (rate: number, reason: string, is_custom_reason: boolean, comment: string) => void;
16
+ t?: (key: string) => string;
17
+ };
18
+ export declare const SessionReview: React.FC<SessionReviewProps>;
19
+ export {};
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ type SpecialistReviewProps = {
3
+ specialistName: string;
4
+ specialistAvatar: string;
5
+ specialistReviewNeeded?: boolean;
6
+ onSubmit: (data: {
7
+ rate: number;
8
+ comment?: string;
9
+ }) => Promise<void>;
10
+ onModalAppeared?: () => void;
11
+ onStarsClick?: (rate: number) => void;
12
+ onCommentBlur?: (rate: number, comment: string) => void;
13
+ onContinueClick?: (rate: number, comment: string) => void;
14
+ t?: (key: string) => string;
15
+ };
16
+ export declare const SpecialistReview: React.FC<SpecialistReviewProps>;
17
+ export {};
@@ -0,0 +1,8 @@
1
+ export type Tag = {
2
+ id: string;
3
+ name: string;
4
+ };
5
+ export declare const TAGS_LIST_1: Tag[];
6
+ export declare const TAGS_LIST_2: Tag[];
7
+ export declare const TAGS_LIST_3: Tag[];
8
+ export declare const TAGS_BY_RATING: Record<number, Tag[]>;
@@ -0,0 +1,2 @@
1
+ export { default as ReviewSubscriptionSessionFeature } from './ReviewSubscriptionSessionFeature';
2
+ export type { ReviewSubscriptionSessionFeatureProps } from './ReviewSubscriptionSessionFeature';
@@ -0,0 +1,23 @@
1
+ import React from 'react';
2
+ export type ReviewTrialSessionFeatureProps = {
3
+ specialistName: string;
4
+ specialistAvatar: string;
5
+ isOpen: boolean;
6
+ onSubmit: (data: {
7
+ rate: number;
8
+ reason: string;
9
+ is_custom_reason: boolean;
10
+ comment?: string;
11
+ }) => void;
12
+ showMotivation?: () => void;
13
+ continueTherapy?: () => void;
14
+ onModalAppeared?: () => void;
15
+ onStarsClick?: (rate: number) => void;
16
+ onReasonClick?: (rate: number, reason: string, is_custom_reason: boolean) => void;
17
+ onCommentBlur?: (rate: number, reason: string, is_custom_reason: boolean, comment: string) => void;
18
+ onContinueClick?: (rate: number, reason: string, is_custom_reason: boolean, comment: string) => void;
19
+ onClose?: () => void;
20
+ t?: (key: string) => string;
21
+ };
22
+ declare const ReviewTrialSessionFeature: React.FC<ReviewTrialSessionFeatureProps>;
23
+ export default ReviewTrialSessionFeature;
@@ -0,0 +1,8 @@
1
+ export type Tag = {
2
+ id: string;
3
+ name: string;
4
+ };
5
+ export declare const TAGS_LIST_1: Tag[];
6
+ export declare const TAGS_LIST_2: Tag[];
7
+ export declare const TAGS_LIST_3: Tag[];
8
+ export declare const TAGS_BY_RATING: Record<number, Tag[]>;
@@ -0,0 +1,2 @@
1
+ export { default as ReviewTrialSessionFeature } from './ReviewTrialSessionFeature';
2
+ export type { ReviewTrialSessionFeatureProps } from './ReviewTrialSessionFeature';
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ type StarRatingProps = {
3
+ onSelect: (rating: number) => void;
4
+ selected: number | null;
5
+ };
6
+ export declare const StarRating: React.FC<StarRatingProps>;
7
+ export {};
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ type Tag = {
3
+ id: string;
4
+ name: string;
5
+ };
6
+ type TagsListProps = {
7
+ tags: Tag[];
8
+ selected: Tag | null;
9
+ onClick: (tag: Tag) => void;
10
+ comment: string;
11
+ onCommentChange: (comment: string) => void;
12
+ onCommentBlur: () => void;
13
+ t?: (key: string) => string;
14
+ };
15
+ export declare const TagsList: React.FC<TagsListProps>;
16
+ export {};
@@ -0,0 +1,4 @@
1
+ export { ReviewTrialSessionFeature } from './ReviewTrialSessionFeature';
2
+ export { ReviewSubscriptionSessionFeature } from './ReviewSubscriptionSessionFeature';
3
+ export type { ReviewTrialSessionFeatureProps } from './ReviewTrialSessionFeature';
4
+ export type { ReviewSubscriptionSessionFeatureProps } from './ReviewSubscriptionSessionFeature';
@@ -43,3 +43,4 @@ export * from './FirstChatMessageModalFeature';
43
43
  export * from './ContractDataFeature';
44
44
  export * from './MenuFeature';
45
45
  export * from './EmptySpecialistListFeature';
46
+ export * from './SessionReviewsFeature';
@@ -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
  };
@@ -8,6 +8,18 @@ export type SessionTime = {
8
8
  seconds: number;
9
9
  _nanoseconds?: number;
10
10
  } | string;
11
+ export type SessionReview = {
12
+ id: string;
13
+ consultation_id: string;
14
+ specialist_id: string;
15
+ client_id: string;
16
+ stars_count: number;
17
+ reason?: string;
18
+ is_custom_reason?: boolean;
19
+ text_of_review: string;
20
+ client_avatar: string;
21
+ created_at: number;
22
+ };
11
23
  export type Session = {
12
24
  id: string;
13
25
  consultation_time: SessionTime;
@@ -45,6 +57,7 @@ export type Session = {
45
57
  price_default?: number;
46
58
  payment_intent_id?: string;
47
59
  subscription?: Subscription;
60
+ session_review?: SessionReview;
48
61
  };
49
62
  export type SessionVariant = 'default' | 'current' | 'soon' | 'near' | 'past';
50
63
  export type Consultation = Session;
@@ -4,5 +4,6 @@ export interface TextareaV2Props extends Omit<JSX.IonTextarea, 'color' | 'enterk
4
4
  borderTop?: boolean;
5
5
  showCounter?: boolean;
6
6
  className?: string;
7
+ classNameCounter?: string;
7
8
  onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
8
9
  }
@@ -7,3 +7,4 @@ export { getSignAgreementsTabs } from './getSignAgreementsTabs';
7
7
  export * from './specialistStatus';
8
8
  export * from './userCan';
9
9
  export * from './filter';
10
+ export * from './session';
@@ -44,4 +44,5 @@ export declare const mockSessions: {
44
44
  price_default?: number | undefined;
45
45
  payment_intent_id?: string | undefined;
46
46
  subscription?: import("../types").Subscription | undefined;
47
+ session_review?: import("../types").SessionReview | undefined;
47
48
  }[];
@@ -3,10 +3,11 @@ export declare const SOON_SESSION_TIME_SECONDS: number;
3
3
  export declare const NEAR_SESSION_TIME_SECONDS: number;
4
4
  export declare const CAN_MANAGE_SESSION_TIME_HOURS = 24;
5
5
  export declare const getStartSessionDate: (sessionTime?: SessionTime) => Date | undefined;
6
+ export declare const getStartSessionTimestamp: (sessionTime?: SessionTime) => number;
6
7
  export declare const getSessionVariant: (session?: Session) => SessionVariant;
7
8
  export declare const getSessionsByYear: (sessions: Session[]) => Map<number, Session[]>;
8
9
  export declare const getSessionsByMonth: (sessions: Session[]) => Map<number, Session[]>;
9
10
  export declare const getSessionsByDay: (sessions: Session[]) => Map<number, Session[]>;
10
11
  export declare const splitSessions: (sessions: Session[]) => Map<string, Session[]>;
11
- export declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: TFunction<import("react-i18next").FallbackNs<Ns>, KPrefix>) => string;
12
+ export declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: TFunction<import("react-i18next").FallbackNs<Ns>, KPrefix>, locale: string) => string;
12
13
  export declare const canManageSession: (sessionDate?: Date) => boolean;
@@ -1,3 +1,5 @@
1
1
  import React from 'react';
2
- declare const SessionsWidgetSkeleton: React.FC;
2
+ declare const SessionsWidgetSkeleton: React.FC<{
3
+ limit?: number;
4
+ }>;
3
5
  export default SessionsWidgetSkeleton;
@@ -1 +1,2 @@
1
1
  export { default as SessionsListWidget } from './SessionsListWidget';
2
+ export type { SessionsWidgetProps } from './types';
@@ -1,14 +1,17 @@
1
1
  import { WithTranslation } from 'react-i18next';
2
2
  import { Session } from '../../shared/types';
3
- export type SessionTab = 'future' | 'past';
4
3
  export type SessionsWidgetProps = {
5
4
  sessions?: Session[];
6
- t?: WithTranslation['t'];
7
5
  locale: string;
8
6
  isLoading?: boolean;
9
- hasMore?: boolean;
7
+ maxPeriodToReviewPastSessionInHours?: number;
8
+ loadPreviousSessions: () => Promise<{
9
+ list: Session[];
10
+ total: number;
11
+ }>;
12
+ rateSessionCallback?: (session: Session) => void;
10
13
  onSessionClick?(session: Session): void;
11
14
  onSessionStart?(session: Session): void;
12
15
  onScheduleSession?(): void;
13
- onLoadMore?(tab: SessionTab): void;
16
+ t?: WithTranslation['t'];
14
17
  };
package/dist/index.d.ts CHANGED
@@ -1539,6 +1539,7 @@ type OnBoardingBaseScreenType = {
1539
1539
  };
1540
1540
  isPreview?: boolean;
1541
1541
  isPageView?: boolean;
1542
+ hideTimer?: boolean;
1542
1543
  };
1543
1544
  type OnBoardingStartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenSkipButtonType & OnBoardingScreenBgType & OnBoardingScreenDescriptionType & {
1544
1545
  image?: ResponseFileType | null;
@@ -1582,6 +1583,9 @@ type OnBoardingFlowType = {
1582
1583
  name: string;
1583
1584
  }[];
1584
1585
  };
1586
+ promocode_percent?: number | null;
1587
+ promocode_duration_min?: number | null;
1588
+ duration_min?: number | null;
1585
1589
  };
1586
1590
 
1587
1591
  declare enum ContractStatusEnum {
@@ -1699,7 +1703,7 @@ type Specialist = {
1699
1703
  matching_by_specialization?: string[];
1700
1704
  };
1701
1705
 
1702
- type SpecialistReview = {
1706
+ type SpecialistReview$1 = {
1703
1707
  id: string;
1704
1708
  specialist_id: string;
1705
1709
  client_id: string;
@@ -1777,6 +1781,18 @@ type SessionTime = {
1777
1781
  seconds: number;
1778
1782
  _nanoseconds?: number;
1779
1783
  } | string;
1784
+ type SessionReview$1 = {
1785
+ id: string;
1786
+ consultation_id: string;
1787
+ specialist_id: string;
1788
+ client_id: string;
1789
+ stars_count: number;
1790
+ reason?: string;
1791
+ is_custom_reason?: boolean;
1792
+ text_of_review: string;
1793
+ client_avatar: string;
1794
+ created_at: number;
1795
+ };
1780
1796
  type Session = {
1781
1797
  id: string;
1782
1798
  consultation_time: SessionTime;
@@ -1814,6 +1830,7 @@ type Session = {
1814
1830
  price_default?: number;
1815
1831
  payment_intent_id?: string;
1816
1832
  subscription?: Subscription;
1833
+ session_review?: SessionReview$1;
1817
1834
  };
1818
1835
  type SessionVariant = 'default' | 'current' | 'soon' | 'near' | 'past';
1819
1836
  type Consultation = Session;
@@ -1898,6 +1915,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
1898
1915
  borderTop?: boolean;
1899
1916
  showCounter?: boolean;
1900
1917
  className?: string;
1918
+ classNameCounter?: string;
1901
1919
  onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
1902
1920
  }
1903
1921
 
@@ -3078,6 +3096,7 @@ type OnBoardingProgressFeatureProps = {
3078
3096
  isBackButtonDisabled?: boolean;
3079
3097
  onBackButtonClick?: () => void;
3080
3098
  contentStyle?: OnBoardingScreenStyleOptions;
3099
+ startAdornment?: React__default.ReactNode;
3081
3100
  };
3082
3101
  declare const _default$h: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
3083
3102
 
@@ -3117,7 +3136,7 @@ declare const _default$f: React__default.NamedExoticComponent<Props$2>;
3117
3136
 
3118
3137
  type Props$1 = {
3119
3138
  className?: string;
3120
- list?: SpecialistReview[];
3139
+ list?: SpecialistReview$1[];
3121
3140
  rating: number;
3122
3141
  reviews: number;
3123
3142
  limit: number;
@@ -3271,8 +3290,10 @@ type SessionPreviewFeatureProps = {
3271
3290
  viewPerson?: 'client' | 'specialist';
3272
3291
  t?: WithTranslation['t'];
3273
3292
  isLoading?: boolean;
3293
+ maxPeriodToReviewPastSessionInHours?: number;
3274
3294
  onSessionClick?(session: Session): void;
3275
3295
  onSessionStart?(session: Session): void;
3296
+ rateSessionCallback?: (session: Session) => void;
3276
3297
  };
3277
3298
 
3278
3299
  declare const SessionPreviewFeature: React__default.FC<SessionPreviewFeatureProps>;
@@ -3324,6 +3345,77 @@ type EmptySpecialistListFeatureProps = {
3324
3345
 
3325
3346
  declare const EmptySpecialistListFeature: FC<EmptySpecialistListFeatureProps>;
3326
3347
 
3348
+ type ReviewTrialSessionFeatureProps = {
3349
+ specialistName: string;
3350
+ specialistAvatar: string;
3351
+ isOpen: boolean;
3352
+ onSubmit: (data: {
3353
+ rate: number;
3354
+ reason: string;
3355
+ is_custom_reason: boolean;
3356
+ comment?: string;
3357
+ }) => void;
3358
+ showMotivation?: () => void;
3359
+ continueTherapy?: () => void;
3360
+ onModalAppeared?: () => void;
3361
+ onStarsClick?: (rate: number) => void;
3362
+ onReasonClick?: (rate: number, reason: string, is_custom_reason: boolean) => void;
3363
+ onCommentBlur?: (rate: number, reason: string, is_custom_reason: boolean, comment: string) => void;
3364
+ onContinueClick?: (rate: number, reason: string, is_custom_reason: boolean, comment: string) => void;
3365
+ onClose?: () => void;
3366
+ t?: (key: string) => string;
3367
+ };
3368
+ declare const ReviewTrialSessionFeature: React__default.FC<ReviewTrialSessionFeatureProps>;
3369
+
3370
+ type SessionReviewProps = {
3371
+ specialistName: string;
3372
+ onSubmit: (data: {
3373
+ rate: number;
3374
+ reason: string;
3375
+ is_custom_reason: boolean;
3376
+ comment?: string;
3377
+ }) => Promise<void>;
3378
+ specialistReviewNeeded?: boolean;
3379
+ onModalAppeared?: () => void;
3380
+ onStarsClick?: (rate: number) => void;
3381
+ onReasonClick?: (rate: number, reason: string, is_custom_reason: boolean) => void;
3382
+ onCommentBlur?: (rate: number, reason: string, is_custom_reason: boolean, comment: string) => void;
3383
+ onContinueClick?: (rate: number, reason: string, is_custom_reason: boolean, comment: string) => void;
3384
+ t?: (key: string) => string;
3385
+ };
3386
+ declare const SessionReview: React__default.FC<SessionReviewProps>;
3387
+
3388
+ type SpecialistReviewProps = {
3389
+ specialistName: string;
3390
+ specialistAvatar: string;
3391
+ specialistReviewNeeded?: boolean;
3392
+ onSubmit: (data: {
3393
+ rate: number;
3394
+ comment?: string;
3395
+ }) => Promise<void>;
3396
+ onModalAppeared?: () => void;
3397
+ onStarsClick?: (rate: number) => void;
3398
+ onCommentBlur?: (rate: number, comment: string) => void;
3399
+ onContinueClick?: (rate: number, comment: string) => void;
3400
+ t?: (key: string) => string;
3401
+ };
3402
+ declare const SpecialistReview: React__default.FC<SpecialistReviewProps>;
3403
+
3404
+ type ReviewSubscriptionSessionFeatureProps = {
3405
+ specialistName: string;
3406
+ specialistAvatar: string;
3407
+ isOpen: boolean;
3408
+ specialistReviewNeeded: boolean;
3409
+ sessionReviewProps: React__default.ComponentProps<typeof SessionReview> & {
3410
+ onModalAppeared?: () => void;
3411
+ };
3412
+ specialistReviewProps: React__default.ComponentProps<typeof SpecialistReview> & {
3413
+ onModalAppeared?: () => void;
3414
+ };
3415
+ onClose: () => void;
3416
+ };
3417
+ declare const ReviewSubscriptionSessionFeature: React__default.FC<ReviewSubscriptionSessionFeatureProps>;
3418
+
3327
3419
  type SupportedCountryLocale = string;
3328
3420
  type Tabs = {
3329
3421
  behavior: 'tax-country' | 'profile-lang';
@@ -3365,6 +3457,19 @@ type ClientCanParams = {
3365
3457
  };
3366
3458
  declare const isClientCan: ({ action, ...params }: ClientCanParams) => boolean;
3367
3459
 
3460
+ declare const SOON_SESSION_TIME_SECONDS: number;
3461
+ declare const NEAR_SESSION_TIME_SECONDS: number;
3462
+ declare const CAN_MANAGE_SESSION_TIME_HOURS = 24;
3463
+ declare const getStartSessionDate: (sessionTime?: SessionTime) => Date | undefined;
3464
+ declare const getStartSessionTimestamp: (sessionTime?: SessionTime) => number;
3465
+ declare const getSessionVariant: (session?: Session) => SessionVariant;
3466
+ declare const getSessionsByYear: (sessions: Session[]) => Map<number, Session[]>;
3467
+ declare const getSessionsByMonth: (sessions: Session[]) => Map<number, Session[]>;
3468
+ declare const getSessionsByDay: (sessions: Session[]) => Map<number, Session[]>;
3469
+ declare const splitSessions: (sessions: Session[]) => Map<string, Session[]>;
3470
+ declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: TFunction<react_i18next.FallbackNs<Ns>, KPrefix>, locale: string) => string;
3471
+ declare const canManageSession: (sessionDate?: Date) => boolean;
3472
+
3368
3473
  type SpecialistCardProps = {
3369
3474
  fullName?: string;
3370
3475
  specialization?: string;
@@ -3784,7 +3889,7 @@ type SpecialistDetailWidgetProps = {
3784
3889
  t?: WithTranslation['t'];
3785
3890
  isLoading?: boolean;
3786
3891
  specialist: Specialist;
3787
- reviews?: SpecialistReview[];
3892
+ reviews?: SpecialistReview$1[];
3788
3893
  country: string;
3789
3894
  isAuth?: boolean;
3790
3895
  isSpecialistUnAvailable?: boolean;
@@ -3816,17 +3921,20 @@ type SpecialistPreviewListWidgetProps = {
3816
3921
 
3817
3922
  declare const SpecialistPreviewListWidget: React__default.FC<SpecialistPreviewListWidgetProps>;
3818
3923
 
3819
- type SessionTab = 'future' | 'past';
3820
3924
  type SessionsWidgetProps = {
3821
3925
  sessions?: Session[];
3822
- t?: WithTranslation['t'];
3823
3926
  locale: string;
3824
3927
  isLoading?: boolean;
3825
- hasMore?: boolean;
3928
+ maxPeriodToReviewPastSessionInHours?: number;
3929
+ loadPreviousSessions: () => Promise<{
3930
+ list: Session[];
3931
+ total: number;
3932
+ }>;
3933
+ rateSessionCallback?: (session: Session) => void;
3826
3934
  onSessionClick?(session: Session): void;
3827
3935
  onSessionStart?(session: Session): void;
3828
3936
  onScheduleSession?(): void;
3829
- onLoadMore?(tab: SessionTab): void;
3937
+ t?: WithTranslation['t'];
3830
3938
  };
3831
3939
 
3832
3940
  declare const SessionsWidget: React__default.FC<SessionsWidgetProps>;
@@ -3862,4 +3970,4 @@ type SessionPaymentsWidgetProps = {
3862
3970
 
3863
3971
  declare const SessionPaymentsWidget: React__default.FC<SessionPaymentsWidgetProps>;
3864
3972
 
3865
- export { AcceptAgreementFeature, Action, _default$T as AlertCard, AllowFilterValueType, AppFooter, _default$S as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$R as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$N as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$u as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$y as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$14 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$P as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$J as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$F as Item, _default$M as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$C as ListItemWithColumns, _default$G as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$H as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$n as MarkdownContainerFeature, _default$D as MatchProgress, _default$1g as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$l as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$i as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$k as OnBoardingMultiSelectionScreenPreviewFeature, _default$h as OnBoardingProgressFeature, _default$g as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$j as OnBoardingSingleSelectionScreenPreviewFeature, _default$m as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$t as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$v as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$O as Picture, _default$6 as ProfileInformation, _default$Z as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$I as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$K as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$s as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$q as ScreenDrumPickerFormFeature, ScreenInput, _default$r as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$o as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$B as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$Q as Skeleton_v2, _default$A as SlotsGrid, _default$z as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$x as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$w as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$19 as SpecialistProfileViewCard, SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$p as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1b as Textarea, _default$L as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$U as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSignAgreementsTabs, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
3973
+ export { AcceptAgreementFeature, Action, _default$T as AlertCard, AllowFilterValueType, AppFooter, _default$S as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$R as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$N as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$u as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$y as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$14 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$P as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$J as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$F as Item, _default$M as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$C as ListItemWithColumns, _default$G as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$H as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$n as MarkdownContainerFeature, _default$D as MatchProgress, _default$1g as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$l as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$i as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$k as OnBoardingMultiSelectionScreenPreviewFeature, _default$h as OnBoardingProgressFeature, _default$g as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$j as OnBoardingSingleSelectionScreenPreviewFeature, _default$m as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$t as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$v as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$O as Picture, _default$6 as ProfileInformation, _default$Z as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$I as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$K as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$s as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$q as ScreenDrumPickerFormFeature, ScreenInput, _default$r as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$o as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$B as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$Q as Skeleton_v2, _default$A as SlotsGrid, _default$z as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$x as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$w as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$19 as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$p as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1b as Textarea, _default$L as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$U as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.97.12",
3
+ "version": "5.98.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",