@mindly/ui-components 5.105.6 → 5.106.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 (38) hide show
  1. package/dist/cjs/index.js +6 -6
  2. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingGraphScreenPreviewFeature/OnBoardingGraphScreenPreviewFeature.d.ts +5 -0
  3. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingGraphScreenPreviewFeature/index.d.ts +1 -0
  4. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/OnBoardingSingleSelectionScreenPreviewFeature.d.ts +3 -3
  5. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/components/OnBoardingSelectionFeedback.d.ts +8 -0
  6. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/components/OnBoardingSelectionMinMaxLabels.d.ts +8 -0
  7. package/dist/cjs/lib2/features/OnBoardingFlow/components/index.d.ts +1 -0
  8. package/dist/cjs/lib2/features/OnBoardingFlow/index.d.ts +1 -0
  9. package/dist/cjs/lib2/shared/assets/icons/IconArrowRange.d.ts +3 -0
  10. package/dist/cjs/lib2/shared/assets/icons/IconLeaderboard.d.ts +3 -0
  11. package/dist/cjs/lib2/shared/assets/icons/index.d.ts +2 -0
  12. package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +23 -1
  13. package/dist/cjs/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
  14. package/dist/cjs/lib2/shared/ui/ListBox/types.d.ts +3 -6
  15. package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxDefaultItem.d.ts +18 -0
  16. package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxEmojiItem.d.ts +12 -0
  17. package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxImageItem.d.ts +4 -7
  18. package/dist/cjs/lib2/shared/ui/ListBoxItem/types.d.ts +1 -10
  19. package/dist/esm/index.js +7 -7
  20. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingGraphScreenPreviewFeature/OnBoardingGraphScreenPreviewFeature.d.ts +5 -0
  21. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingGraphScreenPreviewFeature/index.d.ts +1 -0
  22. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/OnBoardingSingleSelectionScreenPreviewFeature.d.ts +3 -3
  23. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/components/OnBoardingSelectionFeedback.d.ts +8 -0
  24. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/components/OnBoardingSelectionMinMaxLabels.d.ts +8 -0
  25. package/dist/esm/lib2/features/OnBoardingFlow/components/index.d.ts +1 -0
  26. package/dist/esm/lib2/features/OnBoardingFlow/index.d.ts +1 -0
  27. package/dist/esm/lib2/shared/assets/icons/IconArrowRange.d.ts +3 -0
  28. package/dist/esm/lib2/shared/assets/icons/IconLeaderboard.d.ts +3 -0
  29. package/dist/esm/lib2/shared/assets/icons/index.d.ts +2 -0
  30. package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +23 -1
  31. package/dist/esm/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
  32. package/dist/esm/lib2/shared/ui/ListBox/types.d.ts +3 -6
  33. package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxDefaultItem.d.ts +18 -0
  34. package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxEmojiItem.d.ts +12 -0
  35. package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxImageItem.d.ts +4 -7
  36. package/dist/esm/lib2/shared/ui/ListBoxItem/types.d.ts +1 -10
  37. package/dist/index.d.ts +42 -25
  38. package/package.json +1 -1
@@ -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';
@@ -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,8 @@
1
+ import React from 'react';
2
+ type OnBoardingSelectionMinMaxLabelsProps = {
3
+ isPreview?: boolean;
4
+ minLabel: string;
5
+ maxLabel: string;
6
+ };
7
+ declare const _default: React.NamedExoticComponent<OnBoardingSelectionMinMaxLabelsProps>;
8
+ export default _default;
@@ -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';
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconArrowRange: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconLeaderboard: FC<IconProps>;
@@ -133,3 +133,5 @@ export * from './IconCompare';
133
133
  export * from './IconChart';
134
134
  export * from './IconPaywall';
135
135
  export * from './IconRadioPartial';
136
+ export * from './IconArrowRange';
137
+ export * from './IconLeaderboard';
@@ -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, selectionImageClassNames, variant, ...props }: ListBoxProps<T>): JSX.Element;
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
- selectionImageClassNames?: {
11
- label?: string;
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, selectionImageClassNames, }: ListBoxImageItemProps) => JSX.Element>;
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
- selectionImageClassNames?: {
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;
package/dist/index.d.ts CHANGED
@@ -1559,6 +1559,7 @@ declare enum OnBoardingScreenOptions {
1559
1559
  MULTI_SELECT = "MULTI_SELECT",
1560
1560
  SINGLE_SELECT = "SINGLE_SELECT",
1561
1561
  SINGLE_IMAGE_SELECT = "SINGLE_IMAGE_SELECT",
1562
+ SINGLE_SCALE_SELECT = "SINGLE_SCALE_SELECT",
1562
1563
  INFO = "INFO",
1563
1564
  LOADER = "LOADER",
1564
1565
  REVIEWS = "REVIEWS",
@@ -1566,7 +1567,8 @@ declare enum OnBoardingScreenOptions {
1566
1567
  CONFIRM = "CONFIRM",
1567
1568
  PAYWALL = "PAYWALL",
1568
1569
  COMPARE = "COMPARE",
1569
- CHART = "CHART"
1570
+ CHART = "CHART",
1571
+ GRAPH = "GRAPH"
1570
1572
  }
1571
1573
  type OnBoardingScreenOptionType = {
1572
1574
  id: string;
@@ -1578,6 +1580,10 @@ type OnBoardingScreenOptionType = {
1578
1580
  type OnBoardingScreenOptionWithImageType = OnBoardingScreenOptionType & {
1579
1581
  image?: ResponseFileType | null;
1580
1582
  };
1583
+ type OnBoardingScreenOptionWithScaleType = OnBoardingScreenOptionType & {
1584
+ feedbackTitle?: string;
1585
+ feedbackDescription?: string;
1586
+ };
1581
1587
  type OnBoardingScreenButtonType = {
1582
1588
  buttonText?: string | null;
1583
1589
  buttonColor?: string | null;
@@ -1651,6 +1657,11 @@ type OnBoardingSingleImageSelectScreenType = OnBoardingBaseScreenType & OnBoardi
1651
1657
  legalText?: string;
1652
1658
  options: OnBoardingScreenOptionWithImageType[];
1653
1659
  };
1660
+ type OnBoardingSingleScaleSelectScreenType = OnBoardingBaseScreenType & OnBoardingScreenDescriptionType & {
1661
+ minLabel?: string;
1662
+ maxLabel?: string;
1663
+ options: OnBoardingScreenOptionWithScaleType[];
1664
+ };
1654
1665
  type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
1655
1666
  title?: string | null;
1656
1667
  additionalText?: string;
@@ -1697,6 +1708,17 @@ type OnBoardingCompareScreenType = OnBoardingBaseScreenType & OnBoardingScreenBu
1697
1708
  hasInCompetitors: boolean;
1698
1709
  }[];
1699
1710
  };
1711
+ type OnBoardingGraphScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & {
1712
+ title?: string;
1713
+ description?: string;
1714
+ columnCaption: string;
1715
+ columnLabel?: string;
1716
+ otherPlatformsColumnCaption: string;
1717
+ otherPlatformsColumnLabel?: string;
1718
+ percent: string;
1719
+ percentDescription?: string;
1720
+ graphCaption?: string;
1721
+ };
1700
1722
  type OnBoardingChartScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenTranslationsType & OnBoardingScreenErrorsType & {
1701
1723
  title?: string;
1702
1724
  disclaimer?: string;
@@ -1994,7 +2016,8 @@ type AutoComplete<T extends string> = T | (string & {});
1994
2016
  declare enum ListBoxSelectionType {
1995
2017
  Checkbox = "checkbox",
1996
2018
  Radio = "radio",
1997
- Image = "image"
2019
+ Image = "image",
2020
+ Emoji = "emoji"
1998
2021
  }
1999
2022
  type VariantType = 'default' | 'blue';
2000
2023
  type ListBoxProps<T> = AriaListBoxProps<T> & {
@@ -2002,17 +2025,13 @@ type ListBoxProps<T> = AriaListBoxProps<T> & {
2002
2025
  enableSelection?: boolean;
2003
2026
  selectedIconProps?: IconProps$D;
2004
2027
  selectionPosition?: 'start' | 'end';
2005
- selectionImageClassNames?: {
2006
- label?: string;
2007
- arrowIcon?: string;
2008
- bottomContainer?: string;
2009
- } | null;
2010
2028
  className?: string;
2011
2029
  variant?: VariantType;
2012
2030
  image?: ResponseFileType;
2031
+ isOnboardingPreview?: boolean;
2013
2032
  };
2014
2033
 
2015
- declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, selectionImageClassNames, variant, ...props }: ListBoxProps<T>): JSX.Element;
2034
+ declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, variant, isOnboardingPreview, ...props }: ListBoxProps<T>): JSX.Element;
2016
2035
 
2017
2036
  type ListOptionsProps = {
2018
2037
  item: Node<unknown>;
@@ -2026,11 +2045,7 @@ type ListOptionsProps = {
2026
2045
  enableSelection?: boolean;
2027
2046
  variant?: VariantType;
2028
2047
  image?: ResponseFileType | null;
2029
- selectionImageClassNames?: {
2030
- label?: string;
2031
- arrowIcon?: string;
2032
- bottomContainer?: string;
2033
- } | null;
2048
+ isOnboardingPreview?: boolean;
2034
2049
  };
2035
2050
  type ListBoxItemProps = {
2036
2051
  icon?: React$1.ReactNode;
@@ -2040,11 +2055,6 @@ type ListBoxItemProps = {
2040
2055
  value?: string;
2041
2056
  children: React$1.ReactNode;
2042
2057
  className?: string;
2043
- sselectionImageClassNames?: {
2044
- label?: string;
2045
- arrowIcon?: string;
2046
- bottomContainer?: string;
2047
- } | null;
2048
2058
  customContent?: boolean;
2049
2059
  onClick?: HTMLIonItemElement['onclick'];
2050
2060
  variant?: VariantType;
@@ -2931,6 +2941,10 @@ declare const IconPaywall: React$1.FC<IconProps$D>;
2931
2941
 
2932
2942
  declare const IconRadioPartial: FC<IconProps$D>;
2933
2943
 
2944
+ declare const IconArrowRange: FC<IconProps$D>;
2945
+
2946
+ declare const IconLeaderboard: FC<IconProps$D>;
2947
+
2934
2948
  declare const formatByDigits: (value: number) => string;
2935
2949
  declare const roundToPrecision: (value: number, decimals?: number) => number;
2936
2950
  declare const getDateLocale: (locale: string) => Locale;
@@ -3368,8 +3382,8 @@ type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
3368
3382
  onChange?: (value: string) => void;
3369
3383
  defaultValues?: string[];
3370
3384
  variant?: OnboardingVariant;
3371
- template?: 'radio' | 'image';
3372
- } & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType;
3385
+ template?: 'radio' | 'image' | 'emoji';
3386
+ } & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType & OnBoardingSingleScaleSelectScreenType;
3373
3387
  declare const _default$l: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
3374
3388
 
3375
3389
  declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
@@ -3409,14 +3423,14 @@ type OnBoardingConfirmScreenPreviewFeatureProps = OnBoardingConfirmScreenType &
3409
3423
  };
3410
3424
  declare const _default$h: React__default.NamedExoticComponent<OnBoardingConfirmScreenPreviewFeatureProps>;
3411
3425
 
3412
- type OnBoardingPaywallScreenPreviewFeatureProps$1 = {
3426
+ type OnBoardingPaywallScreenPreviewFeatureProps$2 = {
3413
3427
  variant?: OnboardingVariant;
3414
3428
  className?: string;
3415
3429
  titleClassName?: string;
3416
3430
  } & OnBoardingCompareScreenType;
3417
- declare const OnBoardingCompareScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps$1>;
3431
+ declare const OnBoardingCompareScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps$2>;
3418
3432
 
3419
- type OnBoardingPaywallScreenPreviewFeatureProps = {
3433
+ type OnBoardingPaywallScreenPreviewFeatureProps$1 = {
3420
3434
  variant?: OnboardingVariant;
3421
3435
  specialists: Specialist[];
3422
3436
  reviews: ISpecialistReview[];
@@ -3425,7 +3439,7 @@ type OnBoardingPaywallScreenPreviewFeatureProps = {
3425
3439
  onBuyTariff?: (tariffId: string) => void;
3426
3440
  isLoading?: boolean;
3427
3441
  } & OnBoardingPaywallScreenType;
3428
- declare const OnBoardingPaywallScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps>;
3442
+ declare const OnBoardingPaywallScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps$1>;
3429
3443
 
3430
3444
  type OnBoardingChartScreenPreviewFeatureProps = {
3431
3445
  className?: string;
@@ -3435,6 +3449,9 @@ type OnBoardingChartScreenPreviewFeatureProps = {
3435
3449
  } & OnBoardingChartScreenType;
3436
3450
  declare const OnBoardingChartScreenPreviewFeature: FC<OnBoardingChartScreenPreviewFeatureProps>;
3437
3451
 
3452
+ type OnBoardingPaywallScreenPreviewFeatureProps = OnBoardingGraphScreenType;
3453
+ declare const OnBoardingGraphScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps>;
3454
+
3438
3455
  type SpecialistAreaByMatch = {
3439
3456
  text: string;
3440
3457
  hasMatch: boolean;
@@ -4435,4 +4452,4 @@ type SpecialistPreviewWidgetProps = {
4435
4452
 
4436
4453
  declare const _default: React__default.NamedExoticComponent<SpecialistPreviewWidgetProps>;
4437
4454
 
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 };
4455
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.105.6",
3
+ "version": "5.106.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",