@mindly/ui-components 7.3.0-dev.15 → 7.3.0-dev.2
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 +1 -13
- package/dist/cjs/lib2/features/TabsFeature/types.d.ts +0 -5
- package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +0 -2
- package/dist/cjs/lib2/shared/ui/Badge/styles.d.ts +0 -7
- 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/PromptCard/types.d.ts +2 -2
- package/dist/cjs/lib2/shared/ui/RatingCircle/styles.d.ts +0 -3
- package/dist/cjs/lib2/shared/ui/SolidInput/types.d.ts +0 -2
- package/dist/cjs/lib2/shared/ui/index.d.ts +0 -1
- 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 +1 -13
- package/dist/esm/lib2/features/TabsFeature/types.d.ts +0 -5
- package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +0 -2
- package/dist/esm/lib2/shared/ui/Badge/styles.d.ts +0 -7
- 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/PromptCard/types.d.ts +2 -2
- package/dist/esm/lib2/shared/ui/RatingCircle/styles.d.ts +0 -3
- package/dist/esm/lib2/shared/ui/SolidInput/types.d.ts +0 -2
- package/dist/esm/lib2/shared/ui/index.d.ts +0 -1
- package/dist/index.d.ts +30 -69
- package/package.json +2 -3
- package/dist/cjs/lib2/features/ExploreCardSwiperFeature/useSlidesToShow.d.ts +0 -1
- package/dist/cjs/lib2/shared/ui/ProgressCard/ProgressCard.d.ts +0 -4
- package/dist/cjs/lib2/shared/ui/ProgressCard/index.d.ts +0 -2
- package/dist/cjs/lib2/shared/ui/ProgressCard/styles.d.ts +0 -1
- package/dist/cjs/lib2/shared/ui/ProgressCard/types.d.ts +0 -11
- package/dist/esm/lib2/features/ExploreCardSwiperFeature/useSlidesToShow.d.ts +0 -1
- package/dist/esm/lib2/shared/ui/ProgressCard/ProgressCard.d.ts +0 -4
- package/dist/esm/lib2/shared/ui/ProgressCard/index.d.ts +0 -2
- package/dist/esm/lib2/shared/ui/ProgressCard/styles.d.ts +0 -1
- package/dist/esm/lib2/shared/ui/ProgressCard/types.d.ts +0 -11
|
@@ -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 _default: React.NamedExoticComponent<ExploreCardSwiperFeatureProps>;
|
|
6
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './ExploreCardSwiperFeature';
|
|
2
2
|
export * from './types';
|
|
@@ -5,22 +5,10 @@ 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;
|
|
11
8
|
}
|
|
12
9
|
export interface ExploreCardSwiperFeatureProps {
|
|
13
10
|
cards?: ExploreCardData[];
|
|
14
11
|
className?: string;
|
|
15
|
-
|
|
12
|
+
onCardSendMessage?: (cardId: string, message: string) => void;
|
|
16
13
|
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;
|
|
26
14
|
}
|
|
@@ -7,10 +7,5 @@ export type TabsFeatureProps = {
|
|
|
7
7
|
}[];
|
|
8
8
|
className?: string;
|
|
9
9
|
isLoading?: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* When true, tabs will stretch to fill the available width equally
|
|
12
|
-
*/
|
|
13
|
-
fullWidth?: boolean;
|
|
14
|
-
defaultActiveTab?: string;
|
|
15
10
|
onTabClick?(tab: string): void;
|
|
16
11
|
};
|
|
@@ -11,7 +11,6 @@ export type CircleRatingContent = {
|
|
|
11
11
|
text?: string;
|
|
12
12
|
isPercentage?: boolean;
|
|
13
13
|
showIcon?: boolean;
|
|
14
|
-
hideValue?: boolean;
|
|
15
14
|
};
|
|
16
15
|
export type CircleRatingDataProps = {
|
|
17
16
|
progress: number;
|
|
@@ -72,7 +71,6 @@ export type CircleRatingComponentProps = {
|
|
|
72
71
|
isWithAnimation?: boolean;
|
|
73
72
|
isPrimaryColor?: boolean;
|
|
74
73
|
isProgressWithAnimation?: boolean;
|
|
75
|
-
isWhiteBackgroundStroke?: boolean;
|
|
76
74
|
className?: string;
|
|
77
75
|
onProgressEnd?: () => void;
|
|
78
76
|
};
|
|
@@ -7,7 +7,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
7
7
|
success: "";
|
|
8
8
|
brand: "";
|
|
9
9
|
info: "";
|
|
10
|
-
personalized: "";
|
|
11
10
|
};
|
|
12
11
|
size: {
|
|
13
12
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -26,7 +25,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
26
25
|
success: "";
|
|
27
26
|
brand: "";
|
|
28
27
|
info: "";
|
|
29
|
-
personalized: "";
|
|
30
28
|
};
|
|
31
29
|
size: {
|
|
32
30
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -45,7 +43,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
45
43
|
success: "";
|
|
46
44
|
brand: "";
|
|
47
45
|
info: "";
|
|
48
|
-
personalized: "";
|
|
49
46
|
};
|
|
50
47
|
size: {
|
|
51
48
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -64,7 +61,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
64
61
|
success: "";
|
|
65
62
|
brand: "";
|
|
66
63
|
info: "";
|
|
67
|
-
personalized: "";
|
|
68
64
|
};
|
|
69
65
|
size: {
|
|
70
66
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -83,7 +79,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
83
79
|
success: "";
|
|
84
80
|
brand: "";
|
|
85
81
|
info: "";
|
|
86
|
-
personalized: "";
|
|
87
82
|
};
|
|
88
83
|
size: {
|
|
89
84
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -102,7 +97,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
102
97
|
success: "";
|
|
103
98
|
brand: "";
|
|
104
99
|
info: "";
|
|
105
|
-
personalized: "";
|
|
106
100
|
};
|
|
107
101
|
size: {
|
|
108
102
|
S: "px-2 py-1 text-xs/[140%] font-semibold";
|
|
@@ -121,7 +115,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
121
115
|
success: "";
|
|
122
116
|
brand: "";
|
|
123
117
|
info: "";
|
|
124
|
-
personalized: "";
|
|
125
118
|
};
|
|
126
119
|
size: {
|
|
127
120
|
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';
|
|
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 * from './ExploreCard';
|
|
2
2
|
export * from './types';
|
|
@@ -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,7 +39,6 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
|
|
|
39
39
|
breakPoint: string;
|
|
40
40
|
defaultStroke: string;
|
|
41
41
|
coloredStroke: string;
|
|
42
|
-
whiteStroke: string;
|
|
43
42
|
icon: string;
|
|
44
43
|
contentWrapper: string;
|
|
45
44
|
contentColor: string;
|
|
@@ -159,7 +158,6 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
|
|
|
159
158
|
breakPoint: string;
|
|
160
159
|
defaultStroke: string;
|
|
161
160
|
coloredStroke: string;
|
|
162
|
-
whiteStroke: string;
|
|
163
161
|
icon: string;
|
|
164
162
|
contentWrapper: string;
|
|
165
163
|
contentColor: string;
|
|
@@ -205,7 +203,6 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
|
|
|
205
203
|
breakPoint: string;
|
|
206
204
|
defaultStroke: string;
|
|
207
205
|
coloredStroke: string;
|
|
208
|
-
whiteStroke: string;
|
|
209
206
|
icon: string;
|
|
210
207
|
contentWrapper: string;
|
|
211
208
|
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$1i: 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$1h: <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$1g: 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$1f: 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$1e: 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$1d: 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$1c: 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$1b: React__default.NamedExoticComponent<SkeletonProps>;
|
|
392
392
|
|
|
393
393
|
declare enum CircleRatingSize {
|
|
394
394
|
'S' = "S",
|
|
@@ -402,7 +402,6 @@ type CircleRatingContent = {
|
|
|
402
402
|
text?: string;
|
|
403
403
|
isPercentage?: boolean;
|
|
404
404
|
showIcon?: boolean;
|
|
405
|
-
hideValue?: boolean;
|
|
406
405
|
};
|
|
407
406
|
type CircleRatingDataProps = {
|
|
408
407
|
progress: number;
|
|
@@ -463,7 +462,6 @@ type CircleRatingComponentProps = {
|
|
|
463
462
|
isWithAnimation?: boolean;
|
|
464
463
|
isPrimaryColor?: boolean;
|
|
465
464
|
isProgressWithAnimation?: boolean;
|
|
466
|
-
isWhiteBackgroundStroke?: boolean;
|
|
467
465
|
className?: string;
|
|
468
466
|
onProgressEnd?: () => void;
|
|
469
467
|
};
|
|
@@ -1372,7 +1370,7 @@ type FlagProps$1 = {
|
|
|
1372
1370
|
name: string;
|
|
1373
1371
|
className?: string;
|
|
1374
1372
|
};
|
|
1375
|
-
declare const _default$
|
|
1373
|
+
declare const _default$1a: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1376
1374
|
|
|
1377
1375
|
type PictureProps = {
|
|
1378
1376
|
width: number;
|
|
@@ -1390,10 +1388,10 @@ type PictureProps = {
|
|
|
1390
1388
|
containerWidth?: number;
|
|
1391
1389
|
imageClassName?: string;
|
|
1392
1390
|
};
|
|
1393
|
-
declare const _default$
|
|
1391
|
+
declare const _default$19: React__default.NamedExoticComponent<PictureProps>;
|
|
1394
1392
|
|
|
1395
1393
|
type BadgeType = 'default' | 'accent';
|
|
1396
|
-
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info'
|
|
1394
|
+
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
1397
1395
|
type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
|
|
1398
1396
|
variant: BadgeVariants;
|
|
1399
1397
|
size?: 'S' | 'M';
|
|
@@ -1401,7 +1399,7 @@ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
|
|
|
1401
1399
|
iconType?: 'check' | React$1.ReactNode;
|
|
1402
1400
|
};
|
|
1403
1401
|
|
|
1404
|
-
declare const _default$
|
|
1402
|
+
declare const _default$18: React$1.NamedExoticComponent<BadgeProps>;
|
|
1405
1403
|
|
|
1406
1404
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1407
1405
|
type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1409,7 +1407,7 @@ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
1409
1407
|
size?: 'M' | 'M4' | 'M45';
|
|
1410
1408
|
};
|
|
1411
1409
|
|
|
1412
|
-
declare const _default$
|
|
1410
|
+
declare const _default$17: React$1.NamedExoticComponent<ItemCardProps>;
|
|
1413
1411
|
|
|
1414
1412
|
type AppHeaderProps = {
|
|
1415
1413
|
fullwidth?: boolean;
|
|
@@ -1529,7 +1527,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1529
1527
|
onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
|
|
1530
1528
|
}
|
|
1531
1529
|
|
|
1532
|
-
declare const _default$
|
|
1530
|
+
declare const _default$16: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1533
1531
|
|
|
1534
1532
|
type RatingProps = {
|
|
1535
1533
|
initialRating?: number;
|
|
@@ -1542,7 +1540,7 @@ type RatingProps = {
|
|
|
1542
1540
|
readonly?: boolean;
|
|
1543
1541
|
} & RatingComponentProps;
|
|
1544
1542
|
|
|
1545
|
-
declare const _default$
|
|
1543
|
+
declare const _default$15: React__default.NamedExoticComponent<RatingProps>;
|
|
1546
1544
|
|
|
1547
1545
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1548
1546
|
t: WithTranslation['t'] | any;
|
|
@@ -1556,7 +1554,7 @@ type IconButtonProps = {
|
|
|
1556
1554
|
fill?: 'clear' | 'filled';
|
|
1557
1555
|
type?: 'button' | 'submit' | 'reset';
|
|
1558
1556
|
};
|
|
1559
|
-
declare const _default$
|
|
1557
|
+
declare const _default$14: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1560
1558
|
|
|
1561
1559
|
type ToastProviderProps = ToastStateProps;
|
|
1562
1560
|
type MindlyToastProps = {
|
|
@@ -1603,17 +1601,17 @@ type ProgressBar_v2Props = {
|
|
|
1603
1601
|
onProgressEnd?: () => void;
|
|
1604
1602
|
style?: CSSVarStyles;
|
|
1605
1603
|
};
|
|
1606
|
-
declare const _default$
|
|
1604
|
+
declare const _default$13: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
1607
1605
|
|
|
1608
1606
|
type LoadingProps = {
|
|
1609
1607
|
isOpen: boolean;
|
|
1610
1608
|
};
|
|
1611
|
-
declare const _default$
|
|
1609
|
+
declare const _default$12: React__default.NamedExoticComponent<LoadingProps>;
|
|
1612
1610
|
|
|
1613
1611
|
type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
|
|
1614
1612
|
withBorders?: boolean;
|
|
1615
1613
|
};
|
|
1616
|
-
declare const _default$
|
|
1614
|
+
declare const _default$11: React$1.NamedExoticComponent<ListItemsProps>;
|
|
1617
1615
|
|
|
1618
1616
|
type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
1619
1617
|
leftContent?: React$1.ReactNode;
|
|
@@ -1625,7 +1623,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
1625
1623
|
isError?: boolean;
|
|
1626
1624
|
status?: 'error' | 'attention';
|
|
1627
1625
|
};
|
|
1628
|
-
declare const _default$
|
|
1626
|
+
declare const _default$10: React$1.NamedExoticComponent<ItemProps>;
|
|
1629
1627
|
|
|
1630
1628
|
declare enum VariantEnum {
|
|
1631
1629
|
default = "default",
|
|
@@ -1655,7 +1653,7 @@ type VideoMethods = {
|
|
|
1655
1653
|
play(): void;
|
|
1656
1654
|
};
|
|
1657
1655
|
type VideoRef = HTMLVideoElement | VideoMethods;
|
|
1658
|
-
declare const _default
|
|
1656
|
+
declare const _default$$: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
|
|
1659
1657
|
children?: React__default.ReactNode;
|
|
1660
1658
|
} & React__default.RefAttributes<VideoRef>>>;
|
|
1661
1659
|
|
|
@@ -1773,15 +1771,15 @@ type MatchProgressProps = {
|
|
|
1773
1771
|
className?: string;
|
|
1774
1772
|
percentMatch: number;
|
|
1775
1773
|
};
|
|
1776
|
-
declare const _default$
|
|
1774
|
+
declare const _default$_: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
|
|
1777
1775
|
|
|
1778
1776
|
interface Props$8 {
|
|
1779
1777
|
className?: string;
|
|
1780
1778
|
title: string;
|
|
1781
1779
|
}
|
|
1782
|
-
declare const _default
|
|
1780
|
+
declare const _default$Z: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$8>>;
|
|
1783
1781
|
|
|
1784
|
-
declare const _default$
|
|
1782
|
+
declare const _default$Y: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
|
|
1785
1783
|
|
|
1786
1784
|
type Props$7 = {
|
|
1787
1785
|
className?: string;
|
|
@@ -1842,8 +1840,6 @@ type SolidInputProps = {
|
|
|
1842
1840
|
onButtonClick?: () => void;
|
|
1843
1841
|
onChange?: (event: IonInputCustomEvent<InputChangeEventDetail>) => void;
|
|
1844
1842
|
onKeyDown?: KeyboardEventHandler;
|
|
1845
|
-
readonly?: boolean;
|
|
1846
|
-
onClick?: () => void;
|
|
1847
1843
|
};
|
|
1848
1844
|
|
|
1849
1845
|
declare const SolidInput: React__default.ForwardRefExoticComponent<SolidInputProps & React__default.RefAttributes<HTMLIonInputElement>>;
|
|
@@ -1857,14 +1853,14 @@ type CounterProps = {
|
|
|
1857
1853
|
declare const Counter: React__default.FC<CounterProps>;
|
|
1858
1854
|
|
|
1859
1855
|
type PromptCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
1860
|
-
title
|
|
1861
|
-
description
|
|
1856
|
+
title: string;
|
|
1857
|
+
description: string;
|
|
1862
1858
|
badgeText?: string;
|
|
1863
1859
|
onStartConversation?: () => void;
|
|
1864
1860
|
isLoading?: boolean;
|
|
1865
1861
|
};
|
|
1866
1862
|
|
|
1867
|
-
declare const _default$
|
|
1863
|
+
declare const _default$X: React$1.NamedExoticComponent<PromptCardProps>;
|
|
1868
1864
|
|
|
1869
1865
|
interface ExploreCardProps {
|
|
1870
1866
|
title: string;
|
|
@@ -1872,26 +1868,10 @@ interface ExploreCardProps {
|
|
|
1872
1868
|
badgeText?: string;
|
|
1873
1869
|
badgeVariant?: 'success' | 'info' | 'attention' | 'warning' | 'neutral' | 'brand';
|
|
1874
1870
|
placeholder?: string;
|
|
1875
|
-
|
|
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;
|
|
1871
|
+
onSendMessage?: (message: string) => void;
|
|
1886
1872
|
className?: string;
|
|
1887
|
-
loadingImage: string;
|
|
1888
|
-
placeholder: string;
|
|
1889
|
-
circleText: string;
|
|
1890
|
-
onInputClicked?: () => void;
|
|
1891
1873
|
}
|
|
1892
1874
|
|
|
1893
|
-
declare const _default$X: React$1.NamedExoticComponent<ProgressCardProps>;
|
|
1894
|
-
|
|
1895
1875
|
declare enum appThemes {
|
|
1896
1876
|
client = "client",
|
|
1897
1877
|
specialist = "specialist"
|
|
@@ -3475,11 +3455,6 @@ type TabsFeatureProps = {
|
|
|
3475
3455
|
}[];
|
|
3476
3456
|
className?: string;
|
|
3477
3457
|
isLoading?: boolean;
|
|
3478
|
-
/**
|
|
3479
|
-
* When true, tabs will stretch to fill the available width equally
|
|
3480
|
-
*/
|
|
3481
|
-
fullWidth?: boolean;
|
|
3482
|
-
defaultActiveTab?: string;
|
|
3483
3458
|
onTabClick?(tab: string): void;
|
|
3484
3459
|
};
|
|
3485
3460
|
|
|
@@ -3552,28 +3527,14 @@ interface ExploreCardData {
|
|
|
3552
3527
|
badgeText?: string;
|
|
3553
3528
|
badgeVariant?: 'success' | 'info' | 'attention' | 'warning' | 'neutral' | 'brand';
|
|
3554
3529
|
placeholder?: string;
|
|
3555
|
-
isProgressState?: boolean;
|
|
3556
|
-
currentMessageCount?: number;
|
|
3557
|
-
requiredMessageCount?: number;
|
|
3558
3530
|
}
|
|
3559
3531
|
interface ExploreCardSwiperFeatureProps {
|
|
3560
3532
|
cards?: ExploreCardData[];
|
|
3561
3533
|
className?: string;
|
|
3562
|
-
|
|
3534
|
+
onCardSendMessage?: (cardId: string, message: string) => void;
|
|
3563
3535
|
isLoading?: boolean;
|
|
3564
|
-
slidesToShow?: number;
|
|
3565
|
-
progressImage: string;
|
|
3566
|
-
progressPlaceholder: string;
|
|
3567
|
-
progressSentCount: number;
|
|
3568
|
-
progressNeededCount: number;
|
|
3569
|
-
progressTitle: string;
|
|
3570
|
-
progressDescription: string;
|
|
3571
|
-
progressCircleText: string;
|
|
3572
|
-
showProgress: boolean;
|
|
3573
3536
|
}
|
|
3574
3537
|
|
|
3575
|
-
declare const ExploreCardSwiperFeature: React$1.ForwardRefExoticComponent<ExploreCardSwiperFeatureProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3576
|
-
|
|
3577
3538
|
type SupportedCountryLocale = string;
|
|
3578
3539
|
type Tabs = {
|
|
3579
3540
|
behavior: 'tax-country' | 'profile-lang';
|
|
@@ -4731,4 +4692,4 @@ type RowSelectProps = {
|
|
|
4731
4692
|
|
|
4732
4693
|
declare const RowSelect: FC<RowSelectProps>;
|
|
4733
4694
|
|
|
4734
|
-
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 };
|
|
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 };
|
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.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/polyfill": "7.12.1",
|
|
19
|
-
"@capacitor/core": "7.4.1",
|
|
20
19
|
"@capacitor/app": "7.0.1",
|
|
21
20
|
"@capacitor/clipboard": "7.0.1",
|
|
22
21
|
"@capacitor/haptics": "7.0.1",
|
|
@@ -44,7 +43,7 @@
|
|
|
44
43
|
"react-mobile-picker": "1.0.0",
|
|
45
44
|
"react-photo-view": "1.2.4",
|
|
46
45
|
"react-rating": "2.0.5",
|
|
47
|
-
"react-slick": "^0.
|
|
46
|
+
"react-slick": "^0.30.3",
|
|
48
47
|
"react-stately": "3.24.0",
|
|
49
48
|
"recharts": "^2.15.4",
|
|
50
49
|
"slick-carousel": "^1.8.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function useSlidesToShow(): number;
|
|
@@ -1 +0,0 @@
|
|
|
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>>;
|
|
@@ -1,11 +0,0 @@
|
|
|
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 +0,0 @@
|
|
|
1
|
-
export declare function useSlidesToShow(): number;
|
|
@@ -1 +0,0 @@
|
|
|
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>>;
|
|
@@ -1,11 +0,0 @@
|
|
|
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
|
-
}
|