@mindly/ui-components 7.3.0-dev.1 → 7.3.0-dev.11
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 +7 -7
- package/dist/cjs/lib2/features/ExploreCardSwiperFeature/ExploreCardSwiperFeature.d.ts +2 -2
- package/dist/cjs/lib2/features/ExploreCardSwiperFeature/index.d.ts +1 -1
- package/dist/cjs/lib2/features/ExploreCardSwiperFeature/types.d.ts +13 -1
- package/dist/cjs/lib2/features/ExploreCardSwiperFeature/useSlidesToShow.d.ts +1 -0
- package/dist/cjs/lib2/features/TabsFeature/types.d.ts +4 -0
- package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/Badge/styles.d.ts +7 -0
- package/dist/cjs/lib2/shared/ui/Badge/types.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ExploreCard/index.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ExploreCard/types.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ProgressCard/ProgressCard.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/ProgressCard/index.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/ProgressCard/styles.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/ProgressCard/types.d.ts +11 -0
- package/dist/cjs/lib2/shared/ui/PromptCard/types.d.ts +2 -2
- package/dist/cjs/lib2/shared/ui/RatingCircle/styles.d.ts +3 -0
- package/dist/cjs/lib2/shared/ui/SolidInput/types.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
- package/dist/esm/index.js +8 -8
- package/dist/esm/lib2/features/ExploreCardSwiperFeature/ExploreCardSwiperFeature.d.ts +2 -2
- package/dist/esm/lib2/features/ExploreCardSwiperFeature/index.d.ts +1 -1
- package/dist/esm/lib2/features/ExploreCardSwiperFeature/types.d.ts +13 -1
- package/dist/esm/lib2/features/ExploreCardSwiperFeature/useSlidesToShow.d.ts +1 -0
- package/dist/esm/lib2/features/TabsFeature/types.d.ts +4 -0
- package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/Badge/styles.d.ts +7 -0
- package/dist/esm/lib2/shared/ui/Badge/types.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ExploreCard/index.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ExploreCard/types.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ProgressCard/ProgressCard.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/ProgressCard/index.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/ProgressCard/styles.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/ProgressCard/types.d.ts +11 -0
- package/dist/esm/lib2/shared/ui/PromptCard/types.d.ts +2 -2
- package/dist/esm/lib2/shared/ui/RatingCircle/styles.d.ts +3 -0
- package/dist/esm/lib2/shared/ui/SolidInput/types.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
- package/dist/index.d.ts +68 -30
- package/package.json +3 -2
|
@@ -2,5 +2,5 @@ import * as React from 'react';
|
|
|
2
2
|
import { ExploreCardSwiperFeatureProps } from './types';
|
|
3
3
|
import 'slick-carousel/slick/slick.css';
|
|
4
4
|
import 'slick-carousel/slick/slick-theme.css';
|
|
5
|
-
declare const
|
|
6
|
-
export default
|
|
5
|
+
declare const ExploreCardSwiperFeature: React.ForwardRefExoticComponent<ExploreCardSwiperFeatureProps & React.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
export default ExploreCardSwiperFeature;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { default as ExploreCardSwiperFeature } from './ExploreCardSwiperFeature';
|
|
2
2
|
export * from './types';
|
|
@@ -5,10 +5,22 @@ export interface ExploreCardData {
|
|
|
5
5
|
badgeText?: string;
|
|
6
6
|
badgeVariant?: 'success' | 'info' | 'attention' | 'warning' | 'neutral' | 'brand';
|
|
7
7
|
placeholder?: string;
|
|
8
|
+
isProgressState?: boolean;
|
|
9
|
+
currentMessageCount?: number;
|
|
10
|
+
requiredMessageCount?: number;
|
|
8
11
|
}
|
|
9
12
|
export interface ExploreCardSwiperFeatureProps {
|
|
10
13
|
cards?: ExploreCardData[];
|
|
11
14
|
className?: string;
|
|
12
|
-
|
|
15
|
+
onInputClicked: (cardId?: string) => void;
|
|
13
16
|
isLoading?: boolean;
|
|
17
|
+
slidesToShow?: number;
|
|
18
|
+
progressImage: string;
|
|
19
|
+
progressPlaceholder: string;
|
|
20
|
+
progressSentCount: number;
|
|
21
|
+
progressNeededCount: number;
|
|
22
|
+
progressTitle: string;
|
|
23
|
+
progressDescription: string;
|
|
24
|
+
progressCircleText: string;
|
|
25
|
+
showProgress: boolean;
|
|
14
26
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function useSlidesToShow(): number;
|
|
@@ -11,6 +11,7 @@ export type CircleRatingContent = {
|
|
|
11
11
|
text?: string;
|
|
12
12
|
isPercentage?: boolean;
|
|
13
13
|
showIcon?: boolean;
|
|
14
|
+
hideValue?: boolean;
|
|
14
15
|
};
|
|
15
16
|
export type CircleRatingDataProps = {
|
|
16
17
|
progress: number;
|
|
@@ -71,6 +72,7 @@ export type CircleRatingComponentProps = {
|
|
|
71
72
|
isWithAnimation?: boolean;
|
|
72
73
|
isPrimaryColor?: boolean;
|
|
73
74
|
isProgressWithAnimation?: boolean;
|
|
75
|
+
isWhiteBackgroundStroke?: boolean;
|
|
74
76
|
className?: string;
|
|
75
77
|
onProgressEnd?: () => void;
|
|
76
78
|
};
|
|
@@ -7,6 +7,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
7
7
|
success: "";
|
|
8
8
|
brand: "";
|
|
9
9
|
info: "";
|
|
10
|
+
personalized: "";
|
|
10
11
|
};
|
|
11
12
|
size: {
|
|
12
13
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -25,6 +26,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
25
26
|
success: "";
|
|
26
27
|
brand: "";
|
|
27
28
|
info: "";
|
|
29
|
+
personalized: "";
|
|
28
30
|
};
|
|
29
31
|
size: {
|
|
30
32
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -43,6 +45,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
43
45
|
success: "";
|
|
44
46
|
brand: "";
|
|
45
47
|
info: "";
|
|
48
|
+
personalized: "";
|
|
46
49
|
};
|
|
47
50
|
size: {
|
|
48
51
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -61,6 +64,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
61
64
|
success: "";
|
|
62
65
|
brand: "";
|
|
63
66
|
info: "";
|
|
67
|
+
personalized: "";
|
|
64
68
|
};
|
|
65
69
|
size: {
|
|
66
70
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -79,6 +83,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
79
83
|
success: "";
|
|
80
84
|
brand: "";
|
|
81
85
|
info: "";
|
|
86
|
+
personalized: "";
|
|
82
87
|
};
|
|
83
88
|
size: {
|
|
84
89
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -97,6 +102,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
97
102
|
success: "";
|
|
98
103
|
brand: "";
|
|
99
104
|
info: "";
|
|
105
|
+
personalized: "";
|
|
100
106
|
};
|
|
101
107
|
size: {
|
|
102
108
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -115,6 +121,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
115
121
|
success: "";
|
|
116
122
|
brand: "";
|
|
117
123
|
info: "";
|
|
124
|
+
personalized: "";
|
|
118
125
|
};
|
|
119
126
|
size: {
|
|
120
127
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
export type BadgeType = 'default' | 'accent';
|
|
3
|
-
export type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
3
|
+
export type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info' | 'personalized';
|
|
4
4
|
export type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
5
5
|
variant: BadgeVariants;
|
|
6
6
|
size?: 'S' | 'M';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { default as ExploreCard } from './ExploreCard';
|
|
2
2
|
export * from './types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const progressCardStyles: import("tailwind-variants").TVReturnType<{}, undefined, "bg-color-background-anti-flash-light flex flex-col items-center justify-between pb-7 pt-10 px-7 size-full rounded-[20px] h-full", import("tailwind-variants/dist/config").TVConfig<{}, {}>, {}, undefined, import("tailwind-variants").TVReturnType<{}, undefined, "bg-color-background-anti-flash-light flex flex-col items-center justify-between pb-7 pt-10 px-7 size-full rounded-[20px] h-full", import("tailwind-variants/dist/config").TVConfig<{}, {}>, unknown, unknown, undefined>>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface ProgressCardProps {
|
|
2
|
+
title: string;
|
|
3
|
+
description: string;
|
|
4
|
+
currentMessageCount: number;
|
|
5
|
+
requiredMessageCount: number;
|
|
6
|
+
className?: string;
|
|
7
|
+
loadingImage: string;
|
|
8
|
+
placeholder: string;
|
|
9
|
+
circleText: string;
|
|
10
|
+
onInputClicked?: () => void;
|
|
11
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
export type PromptCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
3
|
-
title
|
|
4
|
-
description
|
|
3
|
+
title?: string;
|
|
4
|
+
description?: string;
|
|
5
5
|
badgeText?: string;
|
|
6
6
|
onStartConversation?: () => void;
|
|
7
7
|
isLoading?: boolean;
|
|
@@ -39,6 +39,7 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
|
|
|
39
39
|
breakPoint: string;
|
|
40
40
|
defaultStroke: string;
|
|
41
41
|
coloredStroke: string;
|
|
42
|
+
whiteStroke: string;
|
|
42
43
|
icon: string;
|
|
43
44
|
contentWrapper: string;
|
|
44
45
|
contentColor: string;
|
|
@@ -158,6 +159,7 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
|
|
|
158
159
|
breakPoint: string;
|
|
159
160
|
defaultStroke: string;
|
|
160
161
|
coloredStroke: string;
|
|
162
|
+
whiteStroke: string;
|
|
161
163
|
icon: string;
|
|
162
164
|
contentWrapper: string;
|
|
163
165
|
contentColor: string;
|
|
@@ -203,6 +205,7 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
|
|
|
203
205
|
breakPoint: string;
|
|
204
206
|
defaultStroke: string;
|
|
205
207
|
coloredStroke: string;
|
|
208
|
+
whiteStroke: string;
|
|
206
209
|
icon: string;
|
|
207
210
|
contentWrapper: string;
|
|
208
211
|
contentColor: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -80,7 +80,7 @@ type LetterAvatarProps = {
|
|
|
80
80
|
fontSize?: number;
|
|
81
81
|
onClick?: () => void;
|
|
82
82
|
};
|
|
83
|
-
declare const _default$
|
|
83
|
+
declare const _default$1k: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
84
84
|
|
|
85
85
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
86
86
|
onErrorContent: React__default.ReactElement;
|
|
@@ -179,7 +179,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
179
179
|
showControls: boolean;
|
|
180
180
|
isScreenSharing?: boolean;
|
|
181
181
|
} & HTMLAttributes<HTMLDivElement>;
|
|
182
|
-
declare const _default$
|
|
182
|
+
declare const _default$1j: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
|
|
183
183
|
|
|
184
184
|
type RoundButtonPropsType = {
|
|
185
185
|
disabled?: boolean;
|
|
@@ -273,7 +273,7 @@ type VideoPlayerProps = {
|
|
|
273
273
|
closeModalHandler?: () => void;
|
|
274
274
|
onErrorContent: React__default.ReactElement;
|
|
275
275
|
} & JSX$1.IonModal;
|
|
276
|
-
declare const _default$
|
|
276
|
+
declare const _default$1i: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
277
277
|
|
|
278
278
|
type NotSupportModalProps = {
|
|
279
279
|
closeModal?: () => void;
|
|
@@ -339,7 +339,7 @@ type TypographyProps = {
|
|
|
339
339
|
id?: string;
|
|
340
340
|
};
|
|
341
341
|
|
|
342
|
-
declare const _default$
|
|
342
|
+
declare const _default$1h: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
|
|
343
343
|
|
|
344
344
|
type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
|
|
345
345
|
type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -355,7 +355,7 @@ type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
355
355
|
};
|
|
356
356
|
};
|
|
357
357
|
|
|
358
|
-
declare const _default$
|
|
358
|
+
declare const _default$1g: React$1.NamedExoticComponent<AlertCardProps>;
|
|
359
359
|
|
|
360
360
|
type AppFooterProps = {
|
|
361
361
|
children?: React__default.ReactNode;
|
|
@@ -366,7 +366,7 @@ type AppFooterProps = {
|
|
|
366
366
|
toolbarStyle?: CSSProperties;
|
|
367
367
|
className?: string;
|
|
368
368
|
};
|
|
369
|
-
declare const _default$
|
|
369
|
+
declare const _default$1f: React__default.NamedExoticComponent<AppFooterProps>;
|
|
370
370
|
|
|
371
371
|
type AvatarRoundVariants = 'circle' | 'drop' | 'small';
|
|
372
372
|
|
|
@@ -381,14 +381,14 @@ type AvatarProps = {
|
|
|
381
381
|
onClick?(e: React__default.MouseEvent<HTMLDivElement>): void;
|
|
382
382
|
border?: boolean | string;
|
|
383
383
|
};
|
|
384
|
-
declare const _default$
|
|
384
|
+
declare const _default$1e: React__default.NamedExoticComponent<AvatarProps>;
|
|
385
385
|
|
|
386
386
|
type SkeletonProps = {
|
|
387
387
|
animated?: boolean;
|
|
388
388
|
className?: string;
|
|
389
389
|
style?: React__default.CSSProperties;
|
|
390
390
|
};
|
|
391
|
-
declare const _default$
|
|
391
|
+
declare const _default$1d: React__default.NamedExoticComponent<SkeletonProps>;
|
|
392
392
|
|
|
393
393
|
declare enum CircleRatingSize {
|
|
394
394
|
'S' = "S",
|
|
@@ -402,6 +402,7 @@ type CircleRatingContent = {
|
|
|
402
402
|
text?: string;
|
|
403
403
|
isPercentage?: boolean;
|
|
404
404
|
showIcon?: boolean;
|
|
405
|
+
hideValue?: boolean;
|
|
405
406
|
};
|
|
406
407
|
type CircleRatingDataProps = {
|
|
407
408
|
progress: number;
|
|
@@ -462,6 +463,7 @@ type CircleRatingComponentProps = {
|
|
|
462
463
|
isWithAnimation?: boolean;
|
|
463
464
|
isPrimaryColor?: boolean;
|
|
464
465
|
isProgressWithAnimation?: boolean;
|
|
466
|
+
isWhiteBackgroundStroke?: boolean;
|
|
465
467
|
className?: string;
|
|
466
468
|
onProgressEnd?: () => void;
|
|
467
469
|
};
|
|
@@ -1370,7 +1372,7 @@ type FlagProps$1 = {
|
|
|
1370
1372
|
name: string;
|
|
1371
1373
|
className?: string;
|
|
1372
1374
|
};
|
|
1373
|
-
declare const _default$
|
|
1375
|
+
declare const _default$1c: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1374
1376
|
|
|
1375
1377
|
type PictureProps = {
|
|
1376
1378
|
width: number;
|
|
@@ -1388,10 +1390,10 @@ type PictureProps = {
|
|
|
1388
1390
|
containerWidth?: number;
|
|
1389
1391
|
imageClassName?: string;
|
|
1390
1392
|
};
|
|
1391
|
-
declare const _default$
|
|
1393
|
+
declare const _default$1b: React__default.NamedExoticComponent<PictureProps>;
|
|
1392
1394
|
|
|
1393
1395
|
type BadgeType = 'default' | 'accent';
|
|
1394
|
-
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
1396
|
+
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info' | 'personalized';
|
|
1395
1397
|
type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
|
|
1396
1398
|
variant: BadgeVariants;
|
|
1397
1399
|
size?: 'S' | 'M';
|
|
@@ -1399,7 +1401,7 @@ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
|
|
|
1399
1401
|
iconType?: 'check' | React$1.ReactNode;
|
|
1400
1402
|
};
|
|
1401
1403
|
|
|
1402
|
-
declare const _default$
|
|
1404
|
+
declare const _default$1a: React$1.NamedExoticComponent<BadgeProps>;
|
|
1403
1405
|
|
|
1404
1406
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1405
1407
|
type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1407,7 +1409,7 @@ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
1407
1409
|
size?: 'M' | 'M4' | 'M45';
|
|
1408
1410
|
};
|
|
1409
1411
|
|
|
1410
|
-
declare const _default$
|
|
1412
|
+
declare const _default$19: React$1.NamedExoticComponent<ItemCardProps>;
|
|
1411
1413
|
|
|
1412
1414
|
type AppHeaderProps = {
|
|
1413
1415
|
fullwidth?: boolean;
|
|
@@ -1527,7 +1529,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1527
1529
|
onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
|
|
1528
1530
|
}
|
|
1529
1531
|
|
|
1530
|
-
declare const _default$
|
|
1532
|
+
declare const _default$18: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1531
1533
|
|
|
1532
1534
|
type RatingProps = {
|
|
1533
1535
|
initialRating?: number;
|
|
@@ -1540,7 +1542,7 @@ type RatingProps = {
|
|
|
1540
1542
|
readonly?: boolean;
|
|
1541
1543
|
} & RatingComponentProps;
|
|
1542
1544
|
|
|
1543
|
-
declare const _default$
|
|
1545
|
+
declare const _default$17: React__default.NamedExoticComponent<RatingProps>;
|
|
1544
1546
|
|
|
1545
1547
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1546
1548
|
t: WithTranslation['t'] | any;
|
|
@@ -1554,7 +1556,7 @@ type IconButtonProps = {
|
|
|
1554
1556
|
fill?: 'clear' | 'filled';
|
|
1555
1557
|
type?: 'button' | 'submit' | 'reset';
|
|
1556
1558
|
};
|
|
1557
|
-
declare const _default$
|
|
1559
|
+
declare const _default$16: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1558
1560
|
|
|
1559
1561
|
type ToastProviderProps = ToastStateProps;
|
|
1560
1562
|
type MindlyToastProps = {
|
|
@@ -1601,17 +1603,17 @@ type ProgressBar_v2Props = {
|
|
|
1601
1603
|
onProgressEnd?: () => void;
|
|
1602
1604
|
style?: CSSVarStyles;
|
|
1603
1605
|
};
|
|
1604
|
-
declare const _default$
|
|
1606
|
+
declare const _default$15: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
1605
1607
|
|
|
1606
1608
|
type LoadingProps = {
|
|
1607
1609
|
isOpen: boolean;
|
|
1608
1610
|
};
|
|
1609
|
-
declare const _default$
|
|
1611
|
+
declare const _default$14: React__default.NamedExoticComponent<LoadingProps>;
|
|
1610
1612
|
|
|
1611
1613
|
type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
|
|
1612
1614
|
withBorders?: boolean;
|
|
1613
1615
|
};
|
|
1614
|
-
declare const _default$
|
|
1616
|
+
declare const _default$13: React$1.NamedExoticComponent<ListItemsProps>;
|
|
1615
1617
|
|
|
1616
1618
|
type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
1617
1619
|
leftContent?: React$1.ReactNode;
|
|
@@ -1623,7 +1625,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
1623
1625
|
isError?: boolean;
|
|
1624
1626
|
status?: 'error' | 'attention';
|
|
1625
1627
|
};
|
|
1626
|
-
declare const _default$
|
|
1628
|
+
declare const _default$12: React$1.NamedExoticComponent<ItemProps>;
|
|
1627
1629
|
|
|
1628
1630
|
declare enum VariantEnum {
|
|
1629
1631
|
default = "default",
|
|
@@ -1653,7 +1655,7 @@ type VideoMethods = {
|
|
|
1653
1655
|
play(): void;
|
|
1654
1656
|
};
|
|
1655
1657
|
type VideoRef = HTMLVideoElement | VideoMethods;
|
|
1656
|
-
declare const _default
|
|
1658
|
+
declare const _default$11: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
|
|
1657
1659
|
children?: React__default.ReactNode;
|
|
1658
1660
|
} & React__default.RefAttributes<VideoRef>>>;
|
|
1659
1661
|
|
|
@@ -1771,15 +1773,15 @@ type MatchProgressProps = {
|
|
|
1771
1773
|
className?: string;
|
|
1772
1774
|
percentMatch: number;
|
|
1773
1775
|
};
|
|
1774
|
-
declare const _default$
|
|
1776
|
+
declare const _default$10: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
|
|
1775
1777
|
|
|
1776
1778
|
interface Props$8 {
|
|
1777
1779
|
className?: string;
|
|
1778
1780
|
title: string;
|
|
1779
1781
|
}
|
|
1780
|
-
declare const _default
|
|
1782
|
+
declare const _default$$: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$8>>;
|
|
1781
1783
|
|
|
1782
|
-
declare const _default$
|
|
1784
|
+
declare const _default$_: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
|
|
1783
1785
|
|
|
1784
1786
|
type Props$7 = {
|
|
1785
1787
|
className?: string;
|
|
@@ -1840,6 +1842,8 @@ type SolidInputProps = {
|
|
|
1840
1842
|
onButtonClick?: () => void;
|
|
1841
1843
|
onChange?: (event: IonInputCustomEvent<InputChangeEventDetail>) => void;
|
|
1842
1844
|
onKeyDown?: KeyboardEventHandler;
|
|
1845
|
+
readonly?: boolean;
|
|
1846
|
+
onClick?: () => void;
|
|
1843
1847
|
};
|
|
1844
1848
|
|
|
1845
1849
|
declare const SolidInput: React__default.ForwardRefExoticComponent<SolidInputProps & React__default.RefAttributes<HTMLIonInputElement>>;
|
|
@@ -1853,14 +1857,14 @@ type CounterProps = {
|
|
|
1853
1857
|
declare const Counter: React__default.FC<CounterProps>;
|
|
1854
1858
|
|
|
1855
1859
|
type PromptCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
1856
|
-
title
|
|
1857
|
-
description
|
|
1860
|
+
title?: string;
|
|
1861
|
+
description?: string;
|
|
1858
1862
|
badgeText?: string;
|
|
1859
1863
|
onStartConversation?: () => void;
|
|
1860
1864
|
isLoading?: boolean;
|
|
1861
1865
|
};
|
|
1862
1866
|
|
|
1863
|
-
declare const _default$
|
|
1867
|
+
declare const _default$Z: React$1.NamedExoticComponent<PromptCardProps>;
|
|
1864
1868
|
|
|
1865
1869
|
interface ExploreCardProps {
|
|
1866
1870
|
title: string;
|
|
@@ -1868,10 +1872,26 @@ interface ExploreCardProps {
|
|
|
1868
1872
|
badgeText?: string;
|
|
1869
1873
|
badgeVariant?: 'success' | 'info' | 'attention' | 'warning' | 'neutral' | 'brand';
|
|
1870
1874
|
placeholder?: string;
|
|
1871
|
-
|
|
1875
|
+
onInputClicked?: () => void;
|
|
1876
|
+
className?: string;
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
declare const _default$Y: React$1.NamedExoticComponent<ExploreCardProps>;
|
|
1880
|
+
|
|
1881
|
+
interface ProgressCardProps {
|
|
1882
|
+
title: string;
|
|
1883
|
+
description: string;
|
|
1884
|
+
currentMessageCount: number;
|
|
1885
|
+
requiredMessageCount: number;
|
|
1872
1886
|
className?: string;
|
|
1887
|
+
loadingImage: string;
|
|
1888
|
+
placeholder: string;
|
|
1889
|
+
circleText: string;
|
|
1890
|
+
onInputClicked?: () => void;
|
|
1873
1891
|
}
|
|
1874
1892
|
|
|
1893
|
+
declare const _default$X: React$1.NamedExoticComponent<ProgressCardProps>;
|
|
1894
|
+
|
|
1875
1895
|
declare enum appThemes {
|
|
1876
1896
|
client = "client",
|
|
1877
1897
|
specialist = "specialist"
|
|
@@ -3455,6 +3475,10 @@ type TabsFeatureProps = {
|
|
|
3455
3475
|
}[];
|
|
3456
3476
|
className?: string;
|
|
3457
3477
|
isLoading?: boolean;
|
|
3478
|
+
/**
|
|
3479
|
+
* When true, tabs will stretch to fill the available width equally
|
|
3480
|
+
*/
|
|
3481
|
+
fullWidth?: boolean;
|
|
3458
3482
|
onTabClick?(tab: string): void;
|
|
3459
3483
|
};
|
|
3460
3484
|
|
|
@@ -3527,14 +3551,28 @@ interface ExploreCardData {
|
|
|
3527
3551
|
badgeText?: string;
|
|
3528
3552
|
badgeVariant?: 'success' | 'info' | 'attention' | 'warning' | 'neutral' | 'brand';
|
|
3529
3553
|
placeholder?: string;
|
|
3554
|
+
isProgressState?: boolean;
|
|
3555
|
+
currentMessageCount?: number;
|
|
3556
|
+
requiredMessageCount?: number;
|
|
3530
3557
|
}
|
|
3531
3558
|
interface ExploreCardSwiperFeatureProps {
|
|
3532
3559
|
cards?: ExploreCardData[];
|
|
3533
3560
|
className?: string;
|
|
3534
|
-
|
|
3561
|
+
onInputClicked: (cardId?: string) => void;
|
|
3535
3562
|
isLoading?: boolean;
|
|
3563
|
+
slidesToShow?: number;
|
|
3564
|
+
progressImage: string;
|
|
3565
|
+
progressPlaceholder: string;
|
|
3566
|
+
progressSentCount: number;
|
|
3567
|
+
progressNeededCount: number;
|
|
3568
|
+
progressTitle: string;
|
|
3569
|
+
progressDescription: string;
|
|
3570
|
+
progressCircleText: string;
|
|
3571
|
+
showProgress: boolean;
|
|
3536
3572
|
}
|
|
3537
3573
|
|
|
3574
|
+
declare const ExploreCardSwiperFeature: React$1.ForwardRefExoticComponent<ExploreCardSwiperFeatureProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3575
|
+
|
|
3538
3576
|
type SupportedCountryLocale = string;
|
|
3539
3577
|
type Tabs = {
|
|
3540
3578
|
behavior: 'tax-country' | 'profile-lang';
|
|
@@ -4692,4 +4730,4 @@ type RowSelectProps = {
|
|
|
4692
4730
|
|
|
4693
4731
|
declare const RowSelect: FC<RowSelectProps>;
|
|
4694
4732
|
|
|
4695
|
-
export { AcceptAgreementFeature, Action, _default$1e as AlertCard, AllowFilterValueType, AppFooter, _default$1d as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1c as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$18 as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$Q as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U as ConsultationPricingFeature, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1a as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$14 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCouple, IconCreditCard, IconDelete, IconDivercity, 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, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$10 as Item, _default$17 as ItemCard, LabelArrowRedirect, _default$1i as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$Z as ListItemWithColumns, _default$11 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$12 as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$_ as MatchProgress, _default$1h as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$19 as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$13 as ProgressBar_v2, ProgressRangeProps, _default$X as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$15 as Rating, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$O as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y as SelectionListFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$Y as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SizeValues, Skeleton, _default$1b as Skeleton_v2, _default$W as SlotsGrid, _default$V as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$16 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1f as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$$ as Video, _default$p as VideoCallInfo, _default$1g as VideoPlayer, VideoProvider, _default$g as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, globalAuthState, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
|
|
4733
|
+
export { AcceptAgreementFeature, Action, _default$1g as AlertCard, AllowFilterValueType, AppFooter, _default$1f as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1e as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1a as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$Q as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U as ConsultationPricingFeature, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Y as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1c as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$16 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCouple, IconCreditCard, IconDelete, IconDivercity, 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, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$12 as Item, _default$19 as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$$ as ListItemWithColumns, _default$13 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$14 as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$10 as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1b as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$15 as ProgressBar_v2, _default$X as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$Z as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$17 as Rating, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$O as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y as SelectionListFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$_ as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SizeValues, Skeleton, _default$1d as Skeleton_v2, _default$W as SlotsGrid, _default$V as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$18 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1h as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$11 as Video, _default$p as VideoCallInfo, _default$1i as VideoPlayer, VideoProvider, _default$g as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, globalAuthState, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindly/ui-components",
|
|
3
|
-
"version": "7.3.0-dev.
|
|
3
|
+
"version": "7.3.0-dev.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/polyfill": "7.12.1",
|
|
19
|
+
"@capacitor/core": "7.4.1",
|
|
19
20
|
"@capacitor/app": "7.0.1",
|
|
20
21
|
"@capacitor/clipboard": "7.0.1",
|
|
21
22
|
"@capacitor/haptics": "7.0.1",
|
|
@@ -43,7 +44,7 @@
|
|
|
43
44
|
"react-mobile-picker": "1.0.0",
|
|
44
45
|
"react-photo-view": "1.2.4",
|
|
45
46
|
"react-rating": "2.0.5",
|
|
46
|
-
"react-slick": "^0.
|
|
47
|
+
"react-slick": "^0.31.0",
|
|
47
48
|
"react-stately": "3.24.0",
|
|
48
49
|
"recharts": "^2.15.4",
|
|
49
50
|
"slick-carousel": "^1.8.1",
|