@mindly/ui-components 5.105.6 → 5.107.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 +6 -6
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingGraphScreenPreviewFeature/OnBoardingGraphScreenPreviewFeature.d.ts +5 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingGraphScreenPreviewFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/conts.d.ts +3 -2
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/OnBoardingSingleSelectionScreenPreviewFeature.d.ts +3 -3
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/components/OnBoardingSelectionFeedback.d.ts +8 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/components/OnBoardingSelectionMinMaxLabels.d.ts +8 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/components/index.d.ts +1 -0
- package/dist/cjs/lib2/features/OnBoardingFlow/index.d.ts +1 -0
- package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/constants.d.ts +5 -4
- package/dist/cjs/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/constants.d.ts +5 -4
- package/dist/cjs/lib2/shared/assets/icons/IconArrowRange.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/IconLeaderboard.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +2 -0
- package/dist/cjs/lib2/shared/providers/CircleRatingProvider/CircleRatingProvider.d.ts +1 -1
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +23 -1
- package/dist/cjs/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ListBox/types.d.ts +3 -6
- package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxDefaultItem.d.ts +18 -0
- package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxEmojiItem.d.ts +12 -0
- package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxImageItem.d.ts +4 -7
- package/dist/cjs/lib2/shared/ui/ListBoxItem/types.d.ts +1 -10
- package/dist/cjs/lib2/shared/utils/matching.d.ts +2 -1
- package/dist/cjs/lib2/shared/utils/mock.d.ts +2 -1
- package/dist/cjs/lib2/shared/utils/session.d.ts +2 -1
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingGraphScreenPreviewFeature/OnBoardingGraphScreenPreviewFeature.d.ts +5 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingGraphScreenPreviewFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/conts.d.ts +3 -2
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/OnBoardingSingleSelectionScreenPreviewFeature.d.ts +3 -3
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/components/OnBoardingSelectionFeedback.d.ts +8 -0
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/components/OnBoardingSelectionMinMaxLabels.d.ts +8 -0
- package/dist/esm/lib2/features/OnBoardingFlow/components/index.d.ts +1 -0
- package/dist/esm/lib2/features/OnBoardingFlow/index.d.ts +1 -0
- package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/constants.d.ts +5 -4
- package/dist/esm/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/constants.d.ts +5 -4
- package/dist/esm/lib2/shared/assets/icons/IconArrowRange.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/IconLeaderboard.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +2 -0
- package/dist/esm/lib2/shared/providers/CircleRatingProvider/CircleRatingProvider.d.ts +1 -1
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +23 -1
- package/dist/esm/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ListBox/types.d.ts +3 -6
- package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxDefaultItem.d.ts +18 -0
- package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxEmojiItem.d.ts +12 -0
- package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxImageItem.d.ts +4 -7
- package/dist/esm/lib2/shared/ui/ListBoxItem/types.d.ts +1 -10
- package/dist/esm/lib2/shared/utils/matching.d.ts +2 -1
- package/dist/esm/lib2/shared/utils/mock.d.ts +2 -1
- package/dist/esm/lib2/shared/utils/session.d.ts +2 -1
- package/dist/index.d.ts +45 -29
- package/package.json +9 -8
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { OnBoardingGraphScreenType } from '../../../shared';
|
|
3
|
+
type OnBoardingPaywallScreenPreviewFeatureProps = OnBoardingGraphScreenType;
|
|
4
|
+
declare const OnBoardingGraphScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps>;
|
|
5
|
+
export default OnBoardingGraphScreenPreviewFeature;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as OnBoardingGraphScreenPreviewFeature } from './OnBoardingGraphScreenPreviewFeature';
|
package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingPaywallScreenPreviewFeature/conts.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
export declare const images: {
|
|
2
3
|
after: string;
|
|
3
4
|
before: string;
|
|
@@ -18,13 +19,13 @@ export declare const images: {
|
|
|
18
19
|
time: string;
|
|
19
20
|
verge: string;
|
|
20
21
|
};
|
|
21
|
-
export declare const getCompareItems: (t?:
|
|
22
|
+
export declare const getCompareItems: (t?: WithTranslation['t']) => {
|
|
22
23
|
id: string;
|
|
23
24
|
label: string;
|
|
24
25
|
hasInMindly: boolean;
|
|
25
26
|
hasInCompetitors: boolean;
|
|
26
27
|
}[];
|
|
27
|
-
export declare const getHowItWorksItems: (t?:
|
|
28
|
+
export declare const getHowItWorksItems: (t?: WithTranslation['t']) => {
|
|
28
29
|
id: string;
|
|
29
30
|
title: string;
|
|
30
31
|
description: string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { OnBoardingSingleSelectScreenType, OnBoardingSingleImageSelectScreenType } from '../../../shared';
|
|
2
|
+
import { OnBoardingSingleSelectScreenType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleScaleSelectScreenType } from '../../../shared';
|
|
3
3
|
import { OnboardingVariant } from '../../../shared/';
|
|
4
4
|
type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
5
5
|
onChange?: (value: string) => void;
|
|
6
6
|
defaultValues?: string[];
|
|
7
7
|
variant?: OnboardingVariant;
|
|
8
|
-
template?: 'radio' | 'image';
|
|
9
|
-
} & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType;
|
|
8
|
+
template?: 'radio' | 'image' | 'emoji';
|
|
9
|
+
} & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType & OnBoardingSingleScaleSelectScreenType;
|
|
10
10
|
declare const _default: React.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
|
|
11
11
|
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { OnBoardingScreenOptionType } from '../../../../shared';
|
|
3
|
+
type OnBoardingSelectionFeedbackProps = {
|
|
4
|
+
isPreview?: boolean;
|
|
5
|
+
selectedOption: OnBoardingScreenOptionType | undefined;
|
|
6
|
+
};
|
|
7
|
+
declare const OnBoardingSelectionFeedback: FC<OnBoardingSelectionFeedbackProps>;
|
|
8
|
+
export default OnBoardingSelectionFeedback;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as OnBoardingSelectionHeader } from './OnBoardingSelectionHeader';
|
|
@@ -10,3 +10,4 @@ export * from './OnBoardingConfirmScreenPreviewFeature';
|
|
|
10
10
|
export * from './OnBoardingCompareScreenPreviewFeature ';
|
|
11
11
|
export * from './OnBoardingPaywallScreenPreviewFeature';
|
|
12
12
|
export * from './OnBoardingChartScreenPreviewFeature';
|
|
13
|
+
export * from './OnBoardingGraphScreenPreviewFeature';
|
package/dist/esm/lib2/features/SessionReviewsFeature/ReviewSubscriptionSessionFeature/constants.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
export type Tag = {
|
|
2
3
|
id: string;
|
|
3
4
|
name: string;
|
|
4
5
|
};
|
|
5
|
-
export declare const TAGS_LIST_1_SUBSCRIPTION: (t?:
|
|
6
|
-
export declare const TAGS_LIST_2_SUBSCRIPTION: (t?:
|
|
7
|
-
export declare const TAGS_LIST_3_SUBSCRIPTION: (t?:
|
|
8
|
-
export declare const TAGS_BY_RATING_SUBSCRIPTION: (t?:
|
|
6
|
+
export declare const TAGS_LIST_1_SUBSCRIPTION: (t?: WithTranslation['t']) => Tag[];
|
|
7
|
+
export declare const TAGS_LIST_2_SUBSCRIPTION: (t?: WithTranslation['t']) => Tag[];
|
|
8
|
+
export declare const TAGS_LIST_3_SUBSCRIPTION: (t?: WithTranslation['t']) => Tag[];
|
|
9
|
+
export declare const TAGS_BY_RATING_SUBSCRIPTION: (t?: WithTranslation['t']) => Record<number, Tag[]>;
|
package/dist/esm/lib2/features/SessionReviewsFeature/ReviewTrialSessionFeature/constants.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
export type Tag = {
|
|
2
3
|
id: string;
|
|
3
4
|
name: string;
|
|
4
5
|
};
|
|
5
|
-
export declare const TAGS_LIST_1_TRIAL: (t?:
|
|
6
|
-
export declare const TAGS_LIST_2_TRIAL: (t?:
|
|
7
|
-
export declare const TAGS_LIST_3_TRIAL: (t?:
|
|
8
|
-
export declare const TAGS_BY_RATING_TRIAL: (t?:
|
|
6
|
+
export declare const TAGS_LIST_1_TRIAL: (t?: WithTranslation['t']) => Tag[];
|
|
7
|
+
export declare const TAGS_LIST_2_TRIAL: (t?: WithTranslation['t']) => Tag[];
|
|
8
|
+
export declare const TAGS_LIST_3_TRIAL: (t?: WithTranslation['t']) => Tag[];
|
|
9
|
+
export declare const TAGS_BY_RATING_TRIAL: (t?: WithTranslation['t']) => Record<number, Tag[]>;
|
|
@@ -5,5 +5,5 @@ export declare const CircleRatingContext: React.Context<CircleRatingContextData>
|
|
|
5
5
|
export declare const CircleRatingProvider: ({ children, data, t, }: {
|
|
6
6
|
children: JSX.Element;
|
|
7
7
|
data: CircleRatingContextProps;
|
|
8
|
-
t:
|
|
8
|
+
t: WithTranslation['t'];
|
|
9
9
|
}) => JSX.Element | null;
|
|
@@ -26,6 +26,7 @@ export declare enum OnBoardingScreenOptions {
|
|
|
26
26
|
MULTI_SELECT = "MULTI_SELECT",
|
|
27
27
|
SINGLE_SELECT = "SINGLE_SELECT",
|
|
28
28
|
SINGLE_IMAGE_SELECT = "SINGLE_IMAGE_SELECT",
|
|
29
|
+
SINGLE_SCALE_SELECT = "SINGLE_SCALE_SELECT",
|
|
29
30
|
INFO = "INFO",
|
|
30
31
|
LOADER = "LOADER",
|
|
31
32
|
REVIEWS = "REVIEWS",
|
|
@@ -33,7 +34,8 @@ export declare enum OnBoardingScreenOptions {
|
|
|
33
34
|
CONFIRM = "CONFIRM",
|
|
34
35
|
PAYWALL = "PAYWALL",
|
|
35
36
|
COMPARE = "COMPARE",
|
|
36
|
-
CHART = "CHART"
|
|
37
|
+
CHART = "CHART",
|
|
38
|
+
GRAPH = "GRAPH"
|
|
37
39
|
}
|
|
38
40
|
export type OnBoardingScreenOptionType = {
|
|
39
41
|
id: string;
|
|
@@ -45,6 +47,10 @@ export type OnBoardingScreenOptionType = {
|
|
|
45
47
|
export type OnBoardingScreenOptionWithImageType = OnBoardingScreenOptionType & {
|
|
46
48
|
image?: ResponseFileType | null;
|
|
47
49
|
};
|
|
50
|
+
export type OnBoardingScreenOptionWithScaleType = OnBoardingScreenOptionType & {
|
|
51
|
+
feedbackTitle?: string;
|
|
52
|
+
feedbackDescription?: string;
|
|
53
|
+
};
|
|
48
54
|
export type OnBoardingScreenButtonType = {
|
|
49
55
|
buttonText?: string | null;
|
|
50
56
|
buttonColor?: string | null;
|
|
@@ -118,6 +124,11 @@ export type OnBoardingSingleImageSelectScreenType = OnBoardingBaseScreenType & O
|
|
|
118
124
|
legalText?: string;
|
|
119
125
|
options: OnBoardingScreenOptionWithImageType[];
|
|
120
126
|
};
|
|
127
|
+
export type OnBoardingSingleScaleSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
|
|
128
|
+
minLabel?: string;
|
|
129
|
+
maxLabel?: string;
|
|
130
|
+
options: OnBoardingScreenOptionWithScaleType[];
|
|
131
|
+
};
|
|
121
132
|
export type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
|
|
122
133
|
title?: string | null;
|
|
123
134
|
additionalText?: string;
|
|
@@ -164,6 +175,17 @@ export type OnBoardingCompareScreenType = OnBoardingBaseScreenType & OnBoardingS
|
|
|
164
175
|
hasInCompetitors: boolean;
|
|
165
176
|
}[];
|
|
166
177
|
};
|
|
178
|
+
export type OnBoardingGraphScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & {
|
|
179
|
+
title?: string;
|
|
180
|
+
description?: string;
|
|
181
|
+
columnCaption: string;
|
|
182
|
+
columnLabel?: string;
|
|
183
|
+
otherPlatformsColumnCaption: string;
|
|
184
|
+
otherPlatformsColumnLabel?: string;
|
|
185
|
+
percent: string;
|
|
186
|
+
percentDescription?: string;
|
|
187
|
+
graphCaption?: string;
|
|
188
|
+
};
|
|
167
189
|
export type OnBoardingChartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenTranslationsType & OnBoardingScreenErrorsType & {
|
|
168
190
|
title?: string;
|
|
169
191
|
disclaimer?: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ListBoxProps } from './types';
|
|
2
|
-
export default function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className,
|
|
2
|
+
export default function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, variant, isOnboardingPreview, ...props }: ListBoxProps<T>): JSX.Element;
|
|
@@ -3,7 +3,8 @@ import { IconProps, ResponseFileType } from '../../types';
|
|
|
3
3
|
export declare enum ListBoxSelectionType {
|
|
4
4
|
Checkbox = "checkbox",
|
|
5
5
|
Radio = "radio",
|
|
6
|
-
Image = "image"
|
|
6
|
+
Image = "image",
|
|
7
|
+
Emoji = "emoji"
|
|
7
8
|
}
|
|
8
9
|
export type VariantType = 'default' | 'blue';
|
|
9
10
|
export type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
@@ -11,12 +12,8 @@ export type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
|
11
12
|
enableSelection?: boolean;
|
|
12
13
|
selectedIconProps?: IconProps;
|
|
13
14
|
selectionPosition?: 'start' | 'end';
|
|
14
|
-
selectionImageClassNames?: {
|
|
15
|
-
label?: string;
|
|
16
|
-
arrowIcon?: string;
|
|
17
|
-
bottomContainer?: string;
|
|
18
|
-
} | null;
|
|
19
15
|
className?: string;
|
|
20
16
|
variant?: VariantType;
|
|
21
17
|
image?: ResponseFileType;
|
|
18
|
+
isOnboardingPreview?: boolean;
|
|
22
19
|
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Node } from 'react-stately';
|
|
3
|
+
import { VariantType } from '../ListBox/types';
|
|
4
|
+
import { IconProps } from '../../types';
|
|
5
|
+
declare const _default: React.MemoExoticComponent<({ item, isSelected, selectionPosition, enableSelection, selectedIconProps, selectionIconClassName, variant, labelProps, customContent, className, type, }: {
|
|
6
|
+
isSelected: boolean;
|
|
7
|
+
selectionIconClassName: string;
|
|
8
|
+
labelProps: React.DOMAttributes<HTMLDivElement>;
|
|
9
|
+
customContent: boolean;
|
|
10
|
+
className: string;
|
|
11
|
+
variant: VariantType;
|
|
12
|
+
item: Node<unknown>;
|
|
13
|
+
selectionPosition: "end" | "start";
|
|
14
|
+
enableSelection: boolean;
|
|
15
|
+
selectedIconProps: IconProps;
|
|
16
|
+
type: "image" | "checkbox" | "radio" | "emoji";
|
|
17
|
+
}) => JSX.Element>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React, { DOMAttributes } from 'react';
|
|
2
|
+
import { Node } from 'react-stately';
|
|
3
|
+
import { VariantType } from '../ListBox/types';
|
|
4
|
+
type ListBoxImageItemProps = {
|
|
5
|
+
isSelected: boolean;
|
|
6
|
+
item: Node<unknown>;
|
|
7
|
+
variant: VariantType;
|
|
8
|
+
labelProps: DOMAttributes<HTMLDivElement>;
|
|
9
|
+
isOnboardingPreview?: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const _default: React.MemoExoticComponent<({ isSelected, item, variant, labelProps, isOnboardingPreview, }: ListBoxImageItemProps) => JSX.Element>;
|
|
12
|
+
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { DOMAttributes } from 'react';
|
|
2
2
|
import { Node } from 'react-stately';
|
|
3
3
|
import { ResponseFileType } from '../../types';
|
|
4
4
|
import { VariantType } from '../ListBox/types';
|
|
@@ -7,11 +7,8 @@ type ListBoxImageItemProps = {
|
|
|
7
7
|
item: Node<unknown>;
|
|
8
8
|
image?: ResponseFileType | null;
|
|
9
9
|
variant: VariantType;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
arrowIcon?: string;
|
|
13
|
-
bottomContainer?: string;
|
|
14
|
-
} | null;
|
|
10
|
+
labelProps: DOMAttributes<HTMLDivElement>;
|
|
11
|
+
isOnboardingPreview?: boolean;
|
|
15
12
|
};
|
|
16
|
-
declare const _default: React.MemoExoticComponent<({ isSelected, item, image, variant,
|
|
13
|
+
declare const _default: React.MemoExoticComponent<({ isSelected, item, image, variant, labelProps, isOnboardingPreview, }: ListBoxImageItemProps) => JSX.Element>;
|
|
17
14
|
export default _default;
|
|
@@ -14,11 +14,7 @@ export type ListOptionsProps = {
|
|
|
14
14
|
enableSelection?: boolean;
|
|
15
15
|
variant?: VariantType;
|
|
16
16
|
image?: ResponseFileType | null;
|
|
17
|
-
|
|
18
|
-
label?: string;
|
|
19
|
-
arrowIcon?: string;
|
|
20
|
-
bottomContainer?: string;
|
|
21
|
-
} | null;
|
|
17
|
+
isOnboardingPreview?: boolean;
|
|
22
18
|
};
|
|
23
19
|
export type ListBoxItemProps = {
|
|
24
20
|
icon?: React.ReactNode;
|
|
@@ -28,11 +24,6 @@ export type ListBoxItemProps = {
|
|
|
28
24
|
value?: string;
|
|
29
25
|
children: React.ReactNode;
|
|
30
26
|
className?: string;
|
|
31
|
-
sselectionImageClassNames?: {
|
|
32
|
-
label?: string;
|
|
33
|
-
arrowIcon?: string;
|
|
34
|
-
bottomContainer?: string;
|
|
35
|
-
} | null;
|
|
36
27
|
customContent?: boolean;
|
|
37
28
|
onClick?: HTMLIonItemElement['onclick'];
|
|
38
29
|
variant?: VariantType;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
import { SpecialistAreaByMatch } from '../../features/SpecialistAreaListFeature/types';
|
|
2
3
|
import { Specialist, UserType } from '../types';
|
|
3
|
-
export declare const getMatchingValues: (specialist: Specialist, user?: UserType, join?: boolean, t?:
|
|
4
|
+
export declare const getMatchingValues: (specialist: Specialist, user?: UserType, join?: boolean, t?: WithTranslation['t']) => {
|
|
4
5
|
matchingByAreas: SpecialistAreaByMatch[];
|
|
5
6
|
matchingBySpecialization: SpecialistAreaByMatch[];
|
|
6
7
|
};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
import { ClientSpecialistContractStatusEnum } from '../types/contract';
|
|
2
3
|
import { UserType } from '../types/user';
|
|
3
4
|
import { Specialist } from '../types/specialistTypes';
|
|
4
5
|
import { Session, SpecialistReview } from '../types';
|
|
5
|
-
export declare const mockT: (translate?: Record<string, string>) =>
|
|
6
|
+
export declare const mockT: (translate?: Record<string, string>) => WithTranslation['t'];
|
|
6
7
|
export declare const specialist: Specialist;
|
|
7
8
|
export declare const currentUser: UserType;
|
|
8
9
|
export declare const listReviews: SpecialistReview[];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
1
2
|
import { Session, SessionTime, SessionVariant } from '../types';
|
|
2
3
|
export declare const SOON_SESSION_TIME_SECONDS: number;
|
|
3
4
|
export declare const NEAR_SESSION_TIME_SECONDS: number;
|
|
@@ -9,5 +10,5 @@ export declare const getSessionsByYear: (sessions: Session[]) => Map<number, Ses
|
|
|
9
10
|
export declare const getSessionsByMonth: (sessions: Session[]) => Map<number, Session[]>;
|
|
10
11
|
export declare const getSessionsByDay: (sessions: Session[]) => Map<number, Session[]>;
|
|
11
12
|
export declare const splitSessions: (sessions: Session[]) => Map<string, Session[]>;
|
|
12
|
-
export declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t:
|
|
13
|
+
export declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: WithTranslation['t'], locale: string) => string;
|
|
13
14
|
export declare const canManageSession: (sessionDate?: Date) => boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, SVGAttributes, KeyboardEvent, InputHTMLAttributes, KeyboardEventHandler, RefObject, EffectCallback, SVGProps, PropsWithChildren, ReactText, ReactElement, ChangeEvent } from 'react';
|
|
4
4
|
import { JSX as JSX$1 } from '@ionic/core/components';
|
|
5
|
-
import * as react_i18next from 'react-i18next';
|
|
6
5
|
import { WithTranslation } from 'react-i18next';
|
|
7
6
|
import { RatingComponentProps } from 'react-rating';
|
|
8
7
|
import { ScrollDetail, ScrollBaseDetail, RefresherEventDetail } from '@ionic/react';
|
|
@@ -1559,6 +1558,7 @@ declare enum OnBoardingScreenOptions {
|
|
|
1559
1558
|
MULTI_SELECT = "MULTI_SELECT",
|
|
1560
1559
|
SINGLE_SELECT = "SINGLE_SELECT",
|
|
1561
1560
|
SINGLE_IMAGE_SELECT = "SINGLE_IMAGE_SELECT",
|
|
1561
|
+
SINGLE_SCALE_SELECT = "SINGLE_SCALE_SELECT",
|
|
1562
1562
|
INFO = "INFO",
|
|
1563
1563
|
LOADER = "LOADER",
|
|
1564
1564
|
REVIEWS = "REVIEWS",
|
|
@@ -1566,7 +1566,8 @@ declare enum OnBoardingScreenOptions {
|
|
|
1566
1566
|
CONFIRM = "CONFIRM",
|
|
1567
1567
|
PAYWALL = "PAYWALL",
|
|
1568
1568
|
COMPARE = "COMPARE",
|
|
1569
|
-
CHART = "CHART"
|
|
1569
|
+
CHART = "CHART",
|
|
1570
|
+
GRAPH = "GRAPH"
|
|
1570
1571
|
}
|
|
1571
1572
|
type OnBoardingScreenOptionType = {
|
|
1572
1573
|
id: string;
|
|
@@ -1578,6 +1579,10 @@ type OnBoardingScreenOptionType = {
|
|
|
1578
1579
|
type OnBoardingScreenOptionWithImageType = OnBoardingScreenOptionType & {
|
|
1579
1580
|
image?: ResponseFileType | null;
|
|
1580
1581
|
};
|
|
1582
|
+
type OnBoardingScreenOptionWithScaleType = OnBoardingScreenOptionType & {
|
|
1583
|
+
feedbackTitle?: string;
|
|
1584
|
+
feedbackDescription?: string;
|
|
1585
|
+
};
|
|
1581
1586
|
type OnBoardingScreenButtonType = {
|
|
1582
1587
|
buttonText?: string | null;
|
|
1583
1588
|
buttonColor?: string | null;
|
|
@@ -1651,6 +1656,11 @@ type OnBoardingSingleImageSelectScreenType = OnBoardingBaseScreenType & OnBoardi
|
|
|
1651
1656
|
legalText?: string;
|
|
1652
1657
|
options: OnBoardingScreenOptionWithImageType[];
|
|
1653
1658
|
};
|
|
1659
|
+
type OnBoardingSingleScaleSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
|
|
1660
|
+
minLabel?: string;
|
|
1661
|
+
maxLabel?: string;
|
|
1662
|
+
options: OnBoardingScreenOptionWithScaleType[];
|
|
1663
|
+
};
|
|
1654
1664
|
type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
|
|
1655
1665
|
title?: string | null;
|
|
1656
1666
|
additionalText?: string;
|
|
@@ -1697,6 +1707,17 @@ type OnBoardingCompareScreenType = OnBoardingBaseScreenType & OnBoardingScreenBu
|
|
|
1697
1707
|
hasInCompetitors: boolean;
|
|
1698
1708
|
}[];
|
|
1699
1709
|
};
|
|
1710
|
+
type OnBoardingGraphScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & {
|
|
1711
|
+
title?: string;
|
|
1712
|
+
description?: string;
|
|
1713
|
+
columnCaption: string;
|
|
1714
|
+
columnLabel?: string;
|
|
1715
|
+
otherPlatformsColumnCaption: string;
|
|
1716
|
+
otherPlatformsColumnLabel?: string;
|
|
1717
|
+
percent: string;
|
|
1718
|
+
percentDescription?: string;
|
|
1719
|
+
graphCaption?: string;
|
|
1720
|
+
};
|
|
1700
1721
|
type OnBoardingChartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenTranslationsType & OnBoardingScreenErrorsType & {
|
|
1701
1722
|
title?: string;
|
|
1702
1723
|
disclaimer?: string;
|
|
@@ -1994,7 +2015,8 @@ type AutoComplete<T extends string> = T | (string & {});
|
|
|
1994
2015
|
declare enum ListBoxSelectionType {
|
|
1995
2016
|
Checkbox = "checkbox",
|
|
1996
2017
|
Radio = "radio",
|
|
1997
|
-
Image = "image"
|
|
2018
|
+
Image = "image",
|
|
2019
|
+
Emoji = "emoji"
|
|
1998
2020
|
}
|
|
1999
2021
|
type VariantType = 'default' | 'blue';
|
|
2000
2022
|
type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
@@ -2002,17 +2024,13 @@ type ListBoxProps<T> = AriaListBoxProps<T> & {
|
|
|
2002
2024
|
enableSelection?: boolean;
|
|
2003
2025
|
selectedIconProps?: IconProps$D;
|
|
2004
2026
|
selectionPosition?: 'start' | 'end';
|
|
2005
|
-
selectionImageClassNames?: {
|
|
2006
|
-
label?: string;
|
|
2007
|
-
arrowIcon?: string;
|
|
2008
|
-
bottomContainer?: string;
|
|
2009
|
-
} | null;
|
|
2010
2027
|
className?: string;
|
|
2011
2028
|
variant?: VariantType;
|
|
2012
2029
|
image?: ResponseFileType;
|
|
2030
|
+
isOnboardingPreview?: boolean;
|
|
2013
2031
|
};
|
|
2014
2032
|
|
|
2015
|
-
declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className,
|
|
2033
|
+
declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, variant, isOnboardingPreview, ...props }: ListBoxProps<T>): JSX.Element;
|
|
2016
2034
|
|
|
2017
2035
|
type ListOptionsProps = {
|
|
2018
2036
|
item: Node<unknown>;
|
|
@@ -2026,11 +2044,7 @@ type ListOptionsProps = {
|
|
|
2026
2044
|
enableSelection?: boolean;
|
|
2027
2045
|
variant?: VariantType;
|
|
2028
2046
|
image?: ResponseFileType | null;
|
|
2029
|
-
|
|
2030
|
-
label?: string;
|
|
2031
|
-
arrowIcon?: string;
|
|
2032
|
-
bottomContainer?: string;
|
|
2033
|
-
} | null;
|
|
2047
|
+
isOnboardingPreview?: boolean;
|
|
2034
2048
|
};
|
|
2035
2049
|
type ListBoxItemProps = {
|
|
2036
2050
|
icon?: React$1.ReactNode;
|
|
@@ -2040,11 +2054,6 @@ type ListBoxItemProps = {
|
|
|
2040
2054
|
value?: string;
|
|
2041
2055
|
children: React$1.ReactNode;
|
|
2042
2056
|
className?: string;
|
|
2043
|
-
sselectionImageClassNames?: {
|
|
2044
|
-
label?: string;
|
|
2045
|
-
arrowIcon?: string;
|
|
2046
|
-
bottomContainer?: string;
|
|
2047
|
-
} | null;
|
|
2048
2057
|
customContent?: boolean;
|
|
2049
2058
|
onClick?: HTMLIonItemElement['onclick'];
|
|
2050
2059
|
variant?: VariantType;
|
|
@@ -2419,7 +2428,7 @@ declare const CircleRatingContext: React__default.Context<CircleRatingContextDat
|
|
|
2419
2428
|
declare const CircleRatingProvider: ({ children, data, t, }: {
|
|
2420
2429
|
children: JSX.Element;
|
|
2421
2430
|
data: CircleRatingContextProps;
|
|
2422
|
-
t:
|
|
2431
|
+
t: WithTranslation['t'];
|
|
2423
2432
|
}) => JSX.Element | null;
|
|
2424
2433
|
|
|
2425
2434
|
type VideoContextValue = {
|
|
@@ -2931,6 +2940,10 @@ declare const IconPaywall: React$1.FC<IconProps$D>;
|
|
|
2931
2940
|
|
|
2932
2941
|
declare const IconRadioPartial: FC<IconProps$D>;
|
|
2933
2942
|
|
|
2943
|
+
declare const IconArrowRange: FC<IconProps$D>;
|
|
2944
|
+
|
|
2945
|
+
declare const IconLeaderboard: FC<IconProps$D>;
|
|
2946
|
+
|
|
2934
2947
|
declare const formatByDigits: (value: number) => string;
|
|
2935
2948
|
declare const roundToPrecision: (value: number, decimals?: number) => number;
|
|
2936
2949
|
declare const getDateLocale: (locale: string) => Locale;
|
|
@@ -3368,8 +3381,8 @@ type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
|
3368
3381
|
onChange?: (value: string) => void;
|
|
3369
3382
|
defaultValues?: string[];
|
|
3370
3383
|
variant?: OnboardingVariant;
|
|
3371
|
-
template?: 'radio' | 'image';
|
|
3372
|
-
} & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType;
|
|
3384
|
+
template?: 'radio' | 'image' | 'emoji';
|
|
3385
|
+
} & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType & OnBoardingSingleScaleSelectScreenType;
|
|
3373
3386
|
declare const _default$l: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
|
|
3374
3387
|
|
|
3375
3388
|
declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
|
|
@@ -3409,14 +3422,14 @@ type OnBoardingConfirmScreenPreviewFeatureProps = OnBoardingConfirmScreenType &
|
|
|
3409
3422
|
};
|
|
3410
3423
|
declare const _default$h: React__default.NamedExoticComponent<OnBoardingConfirmScreenPreviewFeatureProps>;
|
|
3411
3424
|
|
|
3412
|
-
type OnBoardingPaywallScreenPreviewFeatureProps$
|
|
3425
|
+
type OnBoardingPaywallScreenPreviewFeatureProps$2 = {
|
|
3413
3426
|
variant?: OnboardingVariant;
|
|
3414
3427
|
className?: string;
|
|
3415
3428
|
titleClassName?: string;
|
|
3416
3429
|
} & OnBoardingCompareScreenType;
|
|
3417
|
-
declare const OnBoardingCompareScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps$
|
|
3430
|
+
declare const OnBoardingCompareScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps$2>;
|
|
3418
3431
|
|
|
3419
|
-
type OnBoardingPaywallScreenPreviewFeatureProps = {
|
|
3432
|
+
type OnBoardingPaywallScreenPreviewFeatureProps$1 = {
|
|
3420
3433
|
variant?: OnboardingVariant;
|
|
3421
3434
|
specialists: Specialist[];
|
|
3422
3435
|
reviews: ISpecialistReview[];
|
|
@@ -3425,7 +3438,7 @@ type OnBoardingPaywallScreenPreviewFeatureProps = {
|
|
|
3425
3438
|
onBuyTariff?: (tariffId: string) => void;
|
|
3426
3439
|
isLoading?: boolean;
|
|
3427
3440
|
} & OnBoardingPaywallScreenType;
|
|
3428
|
-
declare const OnBoardingPaywallScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps>;
|
|
3441
|
+
declare const OnBoardingPaywallScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps$1>;
|
|
3429
3442
|
|
|
3430
3443
|
type OnBoardingChartScreenPreviewFeatureProps = {
|
|
3431
3444
|
className?: string;
|
|
@@ -3435,6 +3448,9 @@ type OnBoardingChartScreenPreviewFeatureProps = {
|
|
|
3435
3448
|
} & OnBoardingChartScreenType;
|
|
3436
3449
|
declare const OnBoardingChartScreenPreviewFeature: FC<OnBoardingChartScreenPreviewFeatureProps>;
|
|
3437
3450
|
|
|
3451
|
+
type OnBoardingPaywallScreenPreviewFeatureProps = OnBoardingGraphScreenType;
|
|
3452
|
+
declare const OnBoardingGraphScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps>;
|
|
3453
|
+
|
|
3438
3454
|
type SpecialistAreaByMatch = {
|
|
3439
3455
|
text: string;
|
|
3440
3456
|
hasMatch: boolean;
|
|
@@ -3868,10 +3884,10 @@ declare const getSessionsByYear: (sessions: Session[]) => Map<number, Session[]>
|
|
|
3868
3884
|
declare const getSessionsByMonth: (sessions: Session[]) => Map<number, Session[]>;
|
|
3869
3885
|
declare const getSessionsByDay: (sessions: Session[]) => Map<number, Session[]>;
|
|
3870
3886
|
declare const splitSessions: (sessions: Session[]) => Map<string, Session[]>;
|
|
3871
|
-
declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t:
|
|
3887
|
+
declare const getSessionTimeLabel: (variant: SessionVariant, startSessionDate: Date, t: WithTranslation['t'], locale: string) => string;
|
|
3872
3888
|
declare const canManageSession: (sessionDate?: Date) => boolean;
|
|
3873
3889
|
|
|
3874
|
-
declare const mockT: (translate?: Record<string, string>) =>
|
|
3890
|
+
declare const mockT: (translate?: Record<string, string>) => WithTranslation['t'];
|
|
3875
3891
|
declare const specialist: Specialist;
|
|
3876
3892
|
declare const currentUser: UserType;
|
|
3877
3893
|
declare const listReviews: SpecialistReview$1[];
|
|
@@ -4435,4 +4451,4 @@ type SpecialistPreviewWidgetProps = {
|
|
|
4435
4451
|
|
|
4436
4452
|
declare const _default: React__default.NamedExoticComponent<SpecialistPreviewWidgetProps>;
|
|
4437
4453
|
|
|
4438
|
-
export { AcceptAgreementFeature, Action, _default$V as AlertCard, AllowFilterValueType, AppFooter, _default$U as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$T as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$P as Badge, _default$Y as BookingScheduleTime, _default$X as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$w as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1h as ChatListItem, _default$1f as ChatListSkeleton, _default$1g as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$b as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$18 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$15 as ConsultationModal, _default$A as ConsultationPricingFeature, _default$13 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$c as CustomCheckbox, CustomRadioButton, _default$d as CustomSelect, _default$e as CustomTextarea, DatePicker, _default$11 as DaySlider, DayToRender, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$Z as EducationCard, _default$1e as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$16 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$8 as Flag, FlagTypes, _default$R as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$L as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$D as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$H as Item, _default$O as ItemCard, LabelArrowRedirect, LanguagesList, _default$1l as LetterAvatar, _default$9 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$E as ListItemWithColumns, _default$I as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$J as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$p as MarkdownContainerFeature, _default$F as MatchProgress, _default$1i as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$h as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$i as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, _default$n as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$m as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$k as OnBoardingProgressFeature, _default$j as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithImageType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleSelectScreenType, _default$l as OnBoardingSingleSelectionScreenPreviewFeature, _default$o as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$v as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$x as PaymentSessionsList, _default$1k as PersonDateTimeCard, _default$Q as Picture, PoweredByStripeFeature, _default$7 as ProfileInformation, _default$$ as ProfileView, _default$a as ProgressBar, ProgressBarDashed, _default$K as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$M as Rating, RatingCircleWrapper, _default$12 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$u as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$s as ScreenDrumPickerFormFeature, ScreenInput, _default$t as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1j as SelectImpressionEmoji, SelectItemType, _default$q as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$D as ShowMore, _default$17 as SignUpSessionButton, _default$14 as SignUpSessionModal, SizeValues, Skeleton, _default$S as Skeleton_v2, _default$C as SlotsGrid, _default$B as SlotsGridItem, SolidInput, Specialist, _default$_ as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$4 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$1 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1c as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$6 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$z as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$y as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$2 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$3 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default as SpecialistPreviewWidget, SpecialistProfileNotFound, _default$1b as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$5 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, Tariff, TariffFeature, _default$r as TextAreaFormFeature, _default$f as TextInput, _default$g as TextWithClampFeature, _default$1d as Textarea, _default$N as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$W as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$G as Video, _default$19 as VideoCallInfo, _default$1a as VideoPlayer, VideoProvider, _default$10 as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|
|
4454
|
+
export { AcceptAgreementFeature, Action, _default$V as AlertCard, AllowFilterValueType, AppFooter, _default$U as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$T as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$P as Badge, _default$Y as BookingScheduleTime, _default$X as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$w as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1h as ChatListItem, _default$1f as ChatListSkeleton, _default$1g as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$b as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$18 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$15 as ConsultationModal, _default$A as ConsultationPricingFeature, _default$13 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$c as CustomCheckbox, CustomRadioButton, _default$d as CustomSelect, _default$e as CustomTextarea, DatePicker, _default$11 as DaySlider, DayToRender, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$Z as EducationCard, _default$1e as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$16 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$8 as Flag, FlagTypes, _default$R as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$L as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$D as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$H as Item, _default$O as ItemCard, LabelArrowRedirect, LanguagesList, _default$1l as LetterAvatar, _default$9 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$E as ListItemWithColumns, _default$I as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$J as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$p as MarkdownContainerFeature, _default$F as MatchProgress, _default$1i as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$h as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$i as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$n as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$m as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$k as OnBoardingProgressFeature, _default$j as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithImageType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$l as OnBoardingSingleSelectionScreenPreviewFeature, _default$o as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$v as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$x as PaymentSessionsList, _default$1k as PersonDateTimeCard, _default$Q as Picture, PoweredByStripeFeature, _default$7 as ProfileInformation, _default$$ as ProfileView, _default$a as ProgressBar, ProgressBarDashed, _default$K as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$M as Rating, RatingCircleWrapper, _default$12 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$u as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$s as ScreenDrumPickerFormFeature, ScreenInput, _default$t as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1j as SelectImpressionEmoji, SelectItemType, _default$q as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$D as ShowMore, _default$17 as SignUpSessionButton, _default$14 as SignUpSessionModal, SizeValues, Skeleton, _default$S as Skeleton_v2, _default$C as SlotsGrid, _default$B as SlotsGridItem, SolidInput, Specialist, _default$_ as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$4 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$1 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1c as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$6 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$z as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$y as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$2 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$3 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default as SpecialistPreviewWidget, SpecialistProfileNotFound, _default$1b as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$5 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, Tariff, TariffFeature, _default$r as TextAreaFormFeature, _default$f as TextInput, _default$g as TextWithClampFeature, _default$1d as Textarea, _default$N as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$W as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$G as Video, _default$19 as VideoCallInfo, _default$1a as VideoPlayer, VideoProvider, _default$10 as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|