@mindly/ui-components 6.0.0-dev.2 → 6.0.0-dev.4
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.d.ts +17 -16
- package/dist/cjs/index.js +18 -19
- package/dist/cjs/lib/CustomButton/CustomButton.d.ts +3 -0
- package/dist/cjs/lib/Filters/ListSelect/ListSelect.style.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +1 -1
- package/dist/esm/index.d.ts +17 -16
- package/dist/esm/index.js +18 -19
- package/dist/esm/lib/CustomButton/CustomButton.d.ts +3 -0
- package/dist/esm/lib/Filters/ListSelect/ListSelect.style.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +1 -1
- package/dist/index.d.ts +186 -220
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -27,21 +27,6 @@ interface ButtonProps$2 {
|
|
|
27
27
|
*/
|
|
28
28
|
declare const Button: React__default.FC<ButtonProps$2>;
|
|
29
29
|
|
|
30
|
-
interface FloatingButtonType {
|
|
31
|
-
bottomHeight: number;
|
|
32
|
-
rightWidth: number;
|
|
33
|
-
['data-testid']?: string;
|
|
34
|
-
}
|
|
35
|
-
declare const FloatingButton: React__default.FC<FloatingButtonType>;
|
|
36
|
-
|
|
37
|
-
interface ListButtonProps {
|
|
38
|
-
children: React__default.ReactNode;
|
|
39
|
-
icon: string;
|
|
40
|
-
onClick: (props?: React__default.SyntheticEvent) => void;
|
|
41
|
-
['data-testid']?: string;
|
|
42
|
-
}
|
|
43
|
-
declare const ListButton: React__default.FC<ListButtonProps>;
|
|
44
|
-
|
|
45
30
|
interface NavigationBarProps {
|
|
46
31
|
isInternetConnected: boolean;
|
|
47
32
|
children?: ReactNode;
|
|
@@ -49,37 +34,11 @@ interface NavigationBarProps {
|
|
|
49
34
|
}
|
|
50
35
|
declare const NavigationBar: React__default.FC<NavigationBarProps>;
|
|
51
36
|
|
|
52
|
-
interface ContentCardProps {
|
|
53
|
-
contentVideo?: {
|
|
54
|
-
title: string;
|
|
55
|
-
url: string;
|
|
56
|
-
};
|
|
57
|
-
contentArticle?: {
|
|
58
|
-
link: string;
|
|
59
|
-
photoURL: string;
|
|
60
|
-
title: string;
|
|
61
|
-
};
|
|
62
|
-
['data-testid']?: string;
|
|
63
|
-
}
|
|
64
|
-
declare const ContentCard: React__default.FC<ContentCardProps>;
|
|
65
|
-
|
|
66
37
|
/**
|
|
67
38
|
* Toast that work line an API, we can call it anywhere, need message text and duration(default 3 seconds)
|
|
68
39
|
*/
|
|
69
40
|
declare const toast: (message: string, duration?: number) => Promise<void>;
|
|
70
41
|
|
|
71
|
-
interface DatePickerProps {
|
|
72
|
-
type: 'date' | 'weekday';
|
|
73
|
-
weekday?: string;
|
|
74
|
-
day?: string;
|
|
75
|
-
date?: string;
|
|
76
|
-
month?: string;
|
|
77
|
-
isActive: boolean;
|
|
78
|
-
onClick: (props?: React__default.SyntheticEvent) => void;
|
|
79
|
-
['data-testid']?: string;
|
|
80
|
-
}
|
|
81
|
-
declare const DatePicker: React__default.FC<DatePickerProps>;
|
|
82
|
-
|
|
83
42
|
interface NoInternetConnectionProps {
|
|
84
43
|
isInternetConnected: boolean;
|
|
85
44
|
isIos: boolean;
|
|
@@ -128,54 +87,6 @@ interface YourLocalTimeBlockProps {
|
|
|
128
87
|
}
|
|
129
88
|
declare const YourLocalTimeBlock: React__default.FC<YourLocalTimeBlockProps>;
|
|
130
89
|
|
|
131
|
-
type ModalCalendarProps = {
|
|
132
|
-
onDaySelected: (day: Date) => void;
|
|
133
|
-
consultationDays: Date[];
|
|
134
|
-
smileDays?: Date[];
|
|
135
|
-
noteDays?: Date[];
|
|
136
|
-
selectedDate?: Date;
|
|
137
|
-
};
|
|
138
|
-
declare const ModalCalendar: React__default.FC<ModalCalendarProps>;
|
|
139
|
-
|
|
140
|
-
type HorizontalCalendarProps = {
|
|
141
|
-
consultationDatesSeconds?: number[];
|
|
142
|
-
myNotesDatesSeconds?: number[];
|
|
143
|
-
toMeNotesDatesSeconds?: number[];
|
|
144
|
-
/**
|
|
145
|
-
* Days to be rendered. e.g. 15 - means 7 before today and 7 after today
|
|
146
|
-
*/
|
|
147
|
-
daysToRender?: number;
|
|
148
|
-
value?: DayToRender | Date;
|
|
149
|
-
onChange?: (value: DayToRender) => void;
|
|
150
|
-
/**
|
|
151
|
-
* date from which a component should start coordinates.
|
|
152
|
-
* e.g. startFrom = "15.01.2022", daysToRender=5
|
|
153
|
-
* return ["13.02.2022", "14.01.2022", "15.01.2022", "16.01.2022", "17.01.2022"]
|
|
154
|
-
*
|
|
155
|
-
*/
|
|
156
|
-
startFrom?: Date;
|
|
157
|
-
showSkeleton?: boolean;
|
|
158
|
-
};
|
|
159
|
-
declare enum DayOfWeek {
|
|
160
|
-
SUN = "\u041D\u0434",
|
|
161
|
-
MON = "\u041F\u043D",
|
|
162
|
-
TUE = "\u0412\u0442",
|
|
163
|
-
WED = "\u0421\u0440",
|
|
164
|
-
THU = "\u0427\u0442",
|
|
165
|
-
FRI = "\u041F\u0442",
|
|
166
|
-
SAT = "\u0421\u0431"
|
|
167
|
-
}
|
|
168
|
-
type DayToRender = {
|
|
169
|
-
/**
|
|
170
|
-
* e.g. "2.2.122", "24.4.122"
|
|
171
|
-
*/
|
|
172
|
-
shortDate: string;
|
|
173
|
-
dayOfMonth: number;
|
|
174
|
-
dayOfWeek: DayOfWeek;
|
|
175
|
-
date: Date;
|
|
176
|
-
};
|
|
177
|
-
declare const HorizontalCalendar: React__default.FC<HorizontalCalendarProps>;
|
|
178
|
-
|
|
179
90
|
declare enum ImpressionEmojiEnum {
|
|
180
91
|
DEPRESSED = -2,
|
|
181
92
|
SAD = -1,
|
|
@@ -196,7 +107,7 @@ type LetterAvatarProps = {
|
|
|
196
107
|
fontSize?: number;
|
|
197
108
|
onClick?: () => void;
|
|
198
109
|
};
|
|
199
|
-
declare const _default$
|
|
110
|
+
declare const _default$1i: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
200
111
|
|
|
201
112
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
202
113
|
onErrorContent: React__default.ReactElement;
|
|
@@ -208,7 +119,7 @@ type PersonDateTimeCardProps = {
|
|
|
208
119
|
name: string;
|
|
209
120
|
dateTime: Date;
|
|
210
121
|
};
|
|
211
|
-
declare const _default$
|
|
122
|
+
declare const _default$1h: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
|
|
212
123
|
|
|
213
124
|
type PsychologistProfileType = {
|
|
214
125
|
id: string;
|
|
@@ -305,35 +216,6 @@ type ToggleProps = {
|
|
|
305
216
|
};
|
|
306
217
|
declare const Toggle: FC<ToggleProps>;
|
|
307
218
|
|
|
308
|
-
type EntryNotFoundProps = {
|
|
309
|
-
title?: string;
|
|
310
|
-
};
|
|
311
|
-
declare const EntryNotFound: FC<EntryNotFoundProps>;
|
|
312
|
-
|
|
313
|
-
type AvatarProps$1 = {
|
|
314
|
-
dimensions?: number;
|
|
315
|
-
width?: number;
|
|
316
|
-
height?: number;
|
|
317
|
-
/**
|
|
318
|
-
* @deprecated
|
|
319
|
-
*/
|
|
320
|
-
fontSize?: number;
|
|
321
|
-
borderRadius?: string;
|
|
322
|
-
src?: string;
|
|
323
|
-
/**
|
|
324
|
-
* @deprecated
|
|
325
|
-
*/
|
|
326
|
-
firstName?: string;
|
|
327
|
-
style?: CSSProperties;
|
|
328
|
-
className?: string;
|
|
329
|
-
withBorder?: boolean;
|
|
330
|
-
onClick?: () => void;
|
|
331
|
-
};
|
|
332
|
-
/**
|
|
333
|
-
* @deprecated
|
|
334
|
-
*/
|
|
335
|
-
declare const Avatar: FC<AvatarProps$1>;
|
|
336
|
-
|
|
337
219
|
type AppHeaderProps$1 = {
|
|
338
220
|
fullwidth?: boolean;
|
|
339
221
|
className?: string;
|
|
@@ -369,27 +251,12 @@ type SegmentProps = {
|
|
|
369
251
|
};
|
|
370
252
|
declare const Segment: FC<SegmentProps>;
|
|
371
253
|
|
|
372
|
-
interface ModalProps {
|
|
373
|
-
fullwidth?: boolean;
|
|
374
|
-
isOpen: boolean;
|
|
375
|
-
onDidDismiss: () => void;
|
|
376
|
-
}
|
|
377
|
-
declare const Modal: FC<ModalProps>;
|
|
378
|
-
|
|
379
254
|
type SelectImpressionEmojiProps = {
|
|
380
255
|
value?: ImpressionEmojiEnum;
|
|
381
256
|
onChange?: (val: ImpressionEmojiEnum) => void;
|
|
382
257
|
};
|
|
383
258
|
|
|
384
|
-
declare const _default$
|
|
385
|
-
|
|
386
|
-
interface FooterForBookingProps {
|
|
387
|
-
eventHandler: (props?: React__default.SyntheticEvent) => void;
|
|
388
|
-
duration: number;
|
|
389
|
-
price: string;
|
|
390
|
-
['data-testid']?: string;
|
|
391
|
-
}
|
|
392
|
-
declare const FooterForBooking: React__default.FC<FooterForBookingProps>;
|
|
259
|
+
declare const _default$1g: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
|
|
393
260
|
|
|
394
261
|
type StatusTagPropsType = {
|
|
395
262
|
dimension?: number;
|
|
@@ -397,6 +264,24 @@ type StatusTagPropsType = {
|
|
|
397
264
|
} & HTMLAttributes<HTMLDivElement>;
|
|
398
265
|
declare const StatusTag: React__default.FC<StatusTagPropsType>;
|
|
399
266
|
|
|
267
|
+
interface Playable {
|
|
268
|
+
play: (...args: any[]) => any;
|
|
269
|
+
}
|
|
270
|
+
type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined> = {
|
|
271
|
+
fullwidth?: boolean;
|
|
272
|
+
cameraTrack?: TCameraTrack;
|
|
273
|
+
audioTrack?: TAudioTrack;
|
|
274
|
+
isVideoTrackMuted?: boolean;
|
|
275
|
+
isAudioTrackMuted?: boolean;
|
|
276
|
+
networkQuality?: number;
|
|
277
|
+
fallbackAvatar?: string;
|
|
278
|
+
fallbackAvatarDimensions?: number;
|
|
279
|
+
fallbackName?: string;
|
|
280
|
+
showControls: boolean;
|
|
281
|
+
isScreenSharing?: boolean;
|
|
282
|
+
} & HTMLAttributes<HTMLDivElement>;
|
|
283
|
+
declare const _default$1f: <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;
|
|
284
|
+
|
|
400
285
|
type RoundButtonPropsType = {
|
|
401
286
|
disabled?: boolean;
|
|
402
287
|
onClickHandler?: () => void;
|
|
@@ -409,6 +294,90 @@ type RoundButtonPropsType = {
|
|
|
409
294
|
};
|
|
410
295
|
declare const RoundButton: React__default.FC<RoundButtonPropsType>;
|
|
411
296
|
|
|
297
|
+
type ChatListItemProps = {
|
|
298
|
+
name: string;
|
|
299
|
+
message?: string;
|
|
300
|
+
avatar?: string;
|
|
301
|
+
avatarReplacer?: JSX.Element;
|
|
302
|
+
newMessagesCount?: number;
|
|
303
|
+
onClick?: () => void;
|
|
304
|
+
status?: 'sent' | 'viewed';
|
|
305
|
+
time?: number;
|
|
306
|
+
timeZone?: string;
|
|
307
|
+
lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system' | 'broadcast';
|
|
308
|
+
locale?: string;
|
|
309
|
+
isDisabled?: boolean;
|
|
310
|
+
t?: WithTranslation['t'];
|
|
311
|
+
};
|
|
312
|
+
declare const _default$1e: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
313
|
+
|
|
314
|
+
type ChatMessageProps = {
|
|
315
|
+
message: string | File;
|
|
316
|
+
/**
|
|
317
|
+
* This property is specifically for broadcast messages.
|
|
318
|
+
* It allows a separate file (e.g., an image URL) to be associated with the broadcast message,
|
|
319
|
+
* while the 'message' property contains the text content.
|
|
320
|
+
*/
|
|
321
|
+
fileUrl?: string;
|
|
322
|
+
position: 'left' | 'right';
|
|
323
|
+
time: number;
|
|
324
|
+
timeZone?: string;
|
|
325
|
+
status?: 'loading' | 'sent' | 'viewed';
|
|
326
|
+
messageType?: 'text' | 'file' | 'image' | 'video' | 'system' | 'broadcast';
|
|
327
|
+
onFileClick?: (type: 'file' | 'image', link: string) => void;
|
|
328
|
+
fileInfo?: {
|
|
329
|
+
originalName: string;
|
|
330
|
+
size: number;
|
|
331
|
+
width?: number;
|
|
332
|
+
height?: number;
|
|
333
|
+
};
|
|
334
|
+
locale?: string;
|
|
335
|
+
buttons?: {
|
|
336
|
+
text: string;
|
|
337
|
+
onClickHandler: () => void;
|
|
338
|
+
}[] | null;
|
|
339
|
+
};
|
|
340
|
+
declare const _default$1d: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
341
|
+
|
|
342
|
+
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
343
|
+
|
|
344
|
+
declare const _default$1c: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
345
|
+
|
|
346
|
+
type EmptyChatList = {
|
|
347
|
+
title?: string;
|
|
348
|
+
text?: string;
|
|
349
|
+
withButton?: boolean;
|
|
350
|
+
buttonTitle?: string;
|
|
351
|
+
onClick?: () => void;
|
|
352
|
+
};
|
|
353
|
+
declare const EmptyChatList: FC<EmptyChatList>;
|
|
354
|
+
declare const _default$1b: React__default.NamedExoticComponent<EmptyChatList>;
|
|
355
|
+
|
|
356
|
+
type EmptyChatMessagesProps = {
|
|
357
|
+
title?: string;
|
|
358
|
+
text: string;
|
|
359
|
+
};
|
|
360
|
+
declare const EmptyChatMessages: FC<EmptyChatMessagesProps>;
|
|
361
|
+
|
|
362
|
+
type FileInfoType = {
|
|
363
|
+
originalName: string;
|
|
364
|
+
size: number;
|
|
365
|
+
width?: number;
|
|
366
|
+
height?: number;
|
|
367
|
+
};
|
|
368
|
+
type TextareaProps = {
|
|
369
|
+
onSend: (value: string) => void;
|
|
370
|
+
defaultValue?: string;
|
|
371
|
+
onFocus?: () => void;
|
|
372
|
+
onBlur?: () => void;
|
|
373
|
+
isOpen: boolean;
|
|
374
|
+
maxLength: number;
|
|
375
|
+
onError?: (message: string) => void;
|
|
376
|
+
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
377
|
+
t?: WithTranslation['t'];
|
|
378
|
+
};
|
|
379
|
+
declare const _default$1a: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
380
|
+
|
|
412
381
|
type UpdatesPopupPropsType = {
|
|
413
382
|
text?: string;
|
|
414
383
|
closeHandler?: () => void;
|
|
@@ -486,7 +455,7 @@ type VideoPlayerProps = {
|
|
|
486
455
|
closeModalHandler?: () => void;
|
|
487
456
|
onErrorContent: React__default.ReactElement;
|
|
488
457
|
} & JSX$1.IonModal;
|
|
489
|
-
declare const _default$
|
|
458
|
+
declare const _default$19: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
490
459
|
|
|
491
460
|
type NotSupportModalProps = {
|
|
492
461
|
closeModal?: () => void;
|
|
@@ -522,7 +491,7 @@ type VideoCallInfoProps = {
|
|
|
522
491
|
abbreviatedSeconds: string;
|
|
523
492
|
};
|
|
524
493
|
};
|
|
525
|
-
declare const _default$
|
|
494
|
+
declare const _default$18: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
526
495
|
|
|
527
496
|
declare enum ConsultationCardType {
|
|
528
497
|
FEATURE = "feature",
|
|
@@ -558,14 +527,14 @@ type ConsultationCardProps = {
|
|
|
558
527
|
isBlockedText?: string;
|
|
559
528
|
};
|
|
560
529
|
|
|
561
|
-
declare const _default$
|
|
530
|
+
declare const _default$17: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
562
531
|
|
|
563
532
|
type SignUpSessionButtonProps = {
|
|
564
533
|
label: string;
|
|
565
534
|
isLoading?: boolean;
|
|
566
535
|
onClick?: () => void;
|
|
567
536
|
};
|
|
568
|
-
declare const _default$
|
|
537
|
+
declare const _default$16: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
569
538
|
|
|
570
539
|
type EmptyConsultationsProps = {
|
|
571
540
|
title: string;
|
|
@@ -573,7 +542,7 @@ type EmptyConsultationsProps = {
|
|
|
573
542
|
buttonLabel?: string;
|
|
574
543
|
onClick?: () => void;
|
|
575
544
|
};
|
|
576
|
-
declare const _default$
|
|
545
|
+
declare const _default$15: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
577
546
|
|
|
578
547
|
type ConsultationModalProps = {
|
|
579
548
|
isOpen: boolean;
|
|
@@ -609,7 +578,7 @@ type ConsultationModalProps = {
|
|
|
609
578
|
started?: string;
|
|
610
579
|
};
|
|
611
580
|
};
|
|
612
|
-
declare const _default$
|
|
581
|
+
declare const _default$14: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
613
582
|
|
|
614
583
|
type SpecialistData = {
|
|
615
584
|
id: string;
|
|
@@ -627,7 +596,7 @@ type SignUpSessionModalProps = {
|
|
|
627
596
|
title: string;
|
|
628
597
|
cancelBtnLabel: string;
|
|
629
598
|
};
|
|
630
|
-
declare const _default$
|
|
599
|
+
declare const _default$13: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
631
600
|
|
|
632
601
|
type ConsultationSpecialistCardProps = {
|
|
633
602
|
id: string;
|
|
@@ -639,7 +608,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
639
608
|
signInBtnLabel: string;
|
|
640
609
|
isBlockedText?: string;
|
|
641
610
|
};
|
|
642
|
-
declare const _default$
|
|
611
|
+
declare const _default$12: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
643
612
|
|
|
644
613
|
type UserInfoModalProps = {
|
|
645
614
|
isOpen: boolean;
|
|
@@ -710,7 +679,7 @@ type ReScheduleProps = {
|
|
|
710
679
|
btnLabel: string;
|
|
711
680
|
};
|
|
712
681
|
};
|
|
713
|
-
declare const _default$
|
|
682
|
+
declare const _default$11: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
714
683
|
|
|
715
684
|
type ReScheduleSuccessProps = {
|
|
716
685
|
name: string;
|
|
@@ -748,7 +717,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
748
717
|
tomorrow?: string;
|
|
749
718
|
};
|
|
750
719
|
};
|
|
751
|
-
declare const _default$
|
|
720
|
+
declare const _default$10: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
752
721
|
|
|
753
722
|
type SpecialistWorkDirectionsPropsType = {
|
|
754
723
|
workDirections?: string[] | [];
|
|
@@ -757,7 +726,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
757
726
|
moreLabel?: string;
|
|
758
727
|
hideLabel?: string;
|
|
759
728
|
};
|
|
760
|
-
declare const _default
|
|
729
|
+
declare const _default$$: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
761
730
|
|
|
762
731
|
type SpecialistProfileViewCardProps = {
|
|
763
732
|
videoLink?: string;
|
|
@@ -767,7 +736,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
767
736
|
isLoading?: boolean;
|
|
768
737
|
videoDurationSeconds?: number;
|
|
769
738
|
};
|
|
770
|
-
declare const _default
|
|
739
|
+
declare const _default$_: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
771
740
|
|
|
772
741
|
type SpecialistAboutProps = {
|
|
773
742
|
text?: string;
|
|
@@ -776,7 +745,7 @@ type SpecialistAboutProps = {
|
|
|
776
745
|
moreLabel?: string;
|
|
777
746
|
hideLabel?: string;
|
|
778
747
|
};
|
|
779
|
-
declare const _default$
|
|
748
|
+
declare const _default$Z: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
780
749
|
|
|
781
750
|
type SpecialistEducationCardProps = {
|
|
782
751
|
institutionName?: string;
|
|
@@ -787,7 +756,7 @@ type SpecialistEducationCardProps = {
|
|
|
787
756
|
yearEnd?: number | null;
|
|
788
757
|
showLoader?: boolean;
|
|
789
758
|
};
|
|
790
|
-
declare const _default$
|
|
759
|
+
declare const _default$Y: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
791
760
|
|
|
792
761
|
type SpecialistStatisticsCardProps = {
|
|
793
762
|
trust?: boolean;
|
|
@@ -833,7 +802,7 @@ type BookingScheduleTimeProps = {
|
|
|
833
802
|
onClick?: (index: number, item: string) => void;
|
|
834
803
|
isLoading?: boolean;
|
|
835
804
|
};
|
|
836
|
-
declare const _default$
|
|
805
|
+
declare const _default$X: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
837
806
|
|
|
838
807
|
type BookingSpecialistInfoProps = {
|
|
839
808
|
name: string;
|
|
@@ -842,7 +811,7 @@ type BookingSpecialistInfoProps = {
|
|
|
842
811
|
avatar?: string;
|
|
843
812
|
isLoading?: boolean;
|
|
844
813
|
};
|
|
845
|
-
declare const _default$
|
|
814
|
+
declare const _default$W: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
846
815
|
|
|
847
816
|
declare enum TypographyVariantsEnum {
|
|
848
817
|
Title48Bold = "Title/48 Bold",
|
|
@@ -891,7 +860,7 @@ type TypographyProps = {
|
|
|
891
860
|
isError?: boolean;
|
|
892
861
|
};
|
|
893
862
|
|
|
894
|
-
declare const _default$
|
|
863
|
+
declare const _default$V: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
|
|
895
864
|
|
|
896
865
|
type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
|
|
897
866
|
type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -907,7 +876,7 @@ type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
907
876
|
};
|
|
908
877
|
};
|
|
909
878
|
|
|
910
|
-
declare const _default$
|
|
879
|
+
declare const _default$U: React$1.NamedExoticComponent<AlertCardProps>;
|
|
911
880
|
|
|
912
881
|
type AppFooterProps = {
|
|
913
882
|
children?: React__default.ReactNode;
|
|
@@ -918,7 +887,7 @@ type AppFooterProps = {
|
|
|
918
887
|
toolbarStyle?: CSSProperties;
|
|
919
888
|
className?: string;
|
|
920
889
|
};
|
|
921
|
-
declare const _default$
|
|
890
|
+
declare const _default$T: React__default.NamedExoticComponent<AppFooterProps>;
|
|
922
891
|
|
|
923
892
|
type AvatarRoundVariants = 'circle' | 'drop' | 'small';
|
|
924
893
|
|
|
@@ -933,14 +902,14 @@ type AvatarProps = {
|
|
|
933
902
|
onClick?(): void;
|
|
934
903
|
border?: boolean | string;
|
|
935
904
|
};
|
|
936
|
-
declare const _default$
|
|
905
|
+
declare const _default$S: React__default.NamedExoticComponent<AvatarProps>;
|
|
937
906
|
|
|
938
907
|
type SkeletonProps = {
|
|
939
908
|
animated?: boolean;
|
|
940
909
|
className?: string;
|
|
941
910
|
style?: React__default.CSSProperties;
|
|
942
911
|
};
|
|
943
|
-
declare const _default$
|
|
912
|
+
declare const _default$R: React__default.NamedExoticComponent<SkeletonProps>;
|
|
944
913
|
|
|
945
914
|
type ButtonProps$1 = {
|
|
946
915
|
fill?: 'outline' | 'clear';
|
|
@@ -975,11 +944,11 @@ type ContainerProps = {
|
|
|
975
944
|
};
|
|
976
945
|
declare const Container_v2: React__default.ForwardRefExoticComponent<ContainerProps & React__default.RefAttributes<HTMLIonContentElement>>;
|
|
977
946
|
|
|
978
|
-
type FlagProps
|
|
947
|
+
type FlagProps = {
|
|
979
948
|
name: string;
|
|
980
949
|
className?: string;
|
|
981
950
|
};
|
|
982
|
-
declare const _default$
|
|
951
|
+
declare const _default$Q: React__default.NamedExoticComponent<FlagProps>;
|
|
983
952
|
|
|
984
953
|
type PictureProps = {
|
|
985
954
|
width: number;
|
|
@@ -996,7 +965,7 @@ type PictureProps = {
|
|
|
996
965
|
responsive?: boolean;
|
|
997
966
|
containerWidth?: number;
|
|
998
967
|
};
|
|
999
|
-
declare const _default$
|
|
968
|
+
declare const _default$P: React__default.NamedExoticComponent<PictureProps>;
|
|
1000
969
|
|
|
1001
970
|
type BadgeType = 'default' | 'accent';
|
|
1002
971
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -1007,7 +976,7 @@ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
|
|
|
1007
976
|
iconType?: 'check' | React$1.ReactNode;
|
|
1008
977
|
};
|
|
1009
978
|
|
|
1010
|
-
declare const _default$
|
|
979
|
+
declare const _default$O: React$1.NamedExoticComponent<BadgeProps>;
|
|
1011
980
|
|
|
1012
981
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1013
982
|
type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1015,7 +984,7 @@ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
|
|
|
1015
984
|
size?: 'M' | 'M4' | 'M45';
|
|
1016
985
|
};
|
|
1017
986
|
|
|
1018
|
-
declare const _default$
|
|
987
|
+
declare const _default$N: React$1.NamedExoticComponent<ItemCardProps>;
|
|
1019
988
|
|
|
1020
989
|
type AppHeaderProps = {
|
|
1021
990
|
fullwidth?: boolean;
|
|
@@ -1932,7 +1901,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1932
1901
|
onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
|
|
1933
1902
|
}
|
|
1934
1903
|
|
|
1935
|
-
declare const _default$
|
|
1904
|
+
declare const _default$M: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1936
1905
|
|
|
1937
1906
|
type RatingProps = {
|
|
1938
1907
|
initialRating?: number;
|
|
@@ -1944,7 +1913,7 @@ type RatingProps = {
|
|
|
1944
1913
|
readonly?: boolean;
|
|
1945
1914
|
} & RatingComponentProps;
|
|
1946
1915
|
|
|
1947
|
-
declare const _default$
|
|
1916
|
+
declare const _default$L: React__default.NamedExoticComponent<RatingProps>;
|
|
1948
1917
|
|
|
1949
1918
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1950
1919
|
t: WithTranslation['t'] | any;
|
|
@@ -1958,7 +1927,7 @@ type IconButtonProps = {
|
|
|
1958
1927
|
fill?: 'clear' | 'filled';
|
|
1959
1928
|
type?: 'button' | 'submit' | 'reset';
|
|
1960
1929
|
};
|
|
1961
|
-
declare const _default$
|
|
1930
|
+
declare const _default$K: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1962
1931
|
|
|
1963
1932
|
type ToastProviderProps = ToastStateProps;
|
|
1964
1933
|
type MindlyToastProps = {
|
|
@@ -2004,17 +1973,17 @@ type ProgressBar_v2Props = {
|
|
|
2004
1973
|
animationDuration?: number;
|
|
2005
1974
|
onProgressEnd?: () => void;
|
|
2006
1975
|
};
|
|
2007
|
-
declare const _default$
|
|
1976
|
+
declare const _default$J: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
2008
1977
|
|
|
2009
1978
|
type LoadingProps = {
|
|
2010
1979
|
isOpen: boolean;
|
|
2011
1980
|
};
|
|
2012
|
-
declare const _default$
|
|
1981
|
+
declare const _default$I: React__default.NamedExoticComponent<LoadingProps>;
|
|
2013
1982
|
|
|
2014
1983
|
type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
|
|
2015
1984
|
withBorders?: boolean;
|
|
2016
1985
|
};
|
|
2017
|
-
declare const _default$
|
|
1986
|
+
declare const _default$H: React$1.NamedExoticComponent<ListItemsProps>;
|
|
2018
1987
|
|
|
2019
1988
|
type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
2020
1989
|
leftContent?: React$1.ReactNode;
|
|
@@ -2026,7 +1995,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
2026
1995
|
isError?: boolean;
|
|
2027
1996
|
status?: 'error' | 'attention';
|
|
2028
1997
|
};
|
|
2029
|
-
declare const _default$
|
|
1998
|
+
declare const _default$G: React$1.NamedExoticComponent<ItemProps>;
|
|
2030
1999
|
|
|
2031
2000
|
declare enum VariantEnum {
|
|
2032
2001
|
default = "default",
|
|
@@ -2053,7 +2022,7 @@ type VideoMethods = {
|
|
|
2053
2022
|
play(): void;
|
|
2054
2023
|
};
|
|
2055
2024
|
type VideoRef = HTMLVideoElement | VideoMethods;
|
|
2056
|
-
declare const _default$
|
|
2025
|
+
declare const _default$F: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
|
|
2057
2026
|
children?: React__default.ReactNode;
|
|
2058
2027
|
} & React__default.RefAttributes<VideoRef>>>;
|
|
2059
2028
|
|
|
@@ -2170,15 +2139,15 @@ type MatchProgressProps = {
|
|
|
2170
2139
|
className?: string;
|
|
2171
2140
|
percentMatch: number;
|
|
2172
2141
|
};
|
|
2173
|
-
declare const _default$
|
|
2142
|
+
declare const _default$E: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
|
|
2174
2143
|
|
|
2175
2144
|
interface Props$7 {
|
|
2176
2145
|
className?: string;
|
|
2177
2146
|
title: string;
|
|
2178
2147
|
}
|
|
2179
|
-
declare const _default$
|
|
2148
|
+
declare const _default$D: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$7>>;
|
|
2180
2149
|
|
|
2181
|
-
declare const _default$
|
|
2150
|
+
declare const _default$C: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
|
|
2182
2151
|
|
|
2183
2152
|
type Props$6 = {
|
|
2184
2153
|
className?: string;
|
|
@@ -2858,9 +2827,9 @@ type SlotsGridItemProps = {
|
|
|
2858
2827
|
onSelectionChange: () => void;
|
|
2859
2828
|
};
|
|
2860
2829
|
|
|
2861
|
-
declare const _default$
|
|
2830
|
+
declare const _default$B: React__default.NamedExoticComponent<SlotsGridProps>;
|
|
2862
2831
|
|
|
2863
|
-
declare const _default$
|
|
2832
|
+
declare const _default$A: React$1.NamedExoticComponent<SlotsGridItemProps>;
|
|
2864
2833
|
|
|
2865
2834
|
type PushNotificationsModalProps = {
|
|
2866
2835
|
onApplyPermission: () => void;
|
|
@@ -2975,23 +2944,23 @@ type ShareModalFeatureProps = {
|
|
|
2975
2944
|
};
|
|
2976
2945
|
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
2977
2946
|
|
|
2978
|
-
declare const _default$
|
|
2947
|
+
declare const _default$z: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
|
|
2979
2948
|
|
|
2980
|
-
declare const _default$
|
|
2949
|
+
declare const _default$y: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
|
|
2981
2950
|
|
|
2982
2951
|
type SpecialistPaymentCommonCardSkeletonType = {
|
|
2983
2952
|
className?: string;
|
|
2984
2953
|
};
|
|
2985
2954
|
declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
|
|
2986
2955
|
|
|
2987
|
-
declare const _default$
|
|
2956
|
+
declare const _default$x: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2988
2957
|
|
|
2989
2958
|
type ConsultationsListProps = {
|
|
2990
2959
|
consultations: SpecialistConsultation[];
|
|
2991
2960
|
locale?: string;
|
|
2992
2961
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
2993
2962
|
};
|
|
2994
|
-
declare const _default$
|
|
2963
|
+
declare const _default$w: React__default.NamedExoticComponent<ConsultationsListProps>;
|
|
2995
2964
|
|
|
2996
2965
|
type ConsultationsListSkeletonType = {
|
|
2997
2966
|
className?: string;
|
|
@@ -3006,9 +2975,9 @@ type CalendarPickerFeatureProps = {
|
|
|
3006
2975
|
dateCallback: (date: Date) => void;
|
|
3007
2976
|
lastDate: Date;
|
|
3008
2977
|
};
|
|
3009
|
-
declare const _default$
|
|
2978
|
+
declare const _default$v: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
|
|
3010
2979
|
|
|
3011
|
-
declare const _default$
|
|
2980
|
+
declare const _default$u: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
|
|
3012
2981
|
|
|
3013
2982
|
type GoogleCalendarModalFeatureProps = {
|
|
3014
2983
|
isOpen: boolean;
|
|
@@ -3023,7 +2992,7 @@ type GoogleCalendarModalFeatureProps = {
|
|
|
3023
2992
|
declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): JSX.Element;
|
|
3024
2993
|
|
|
3025
2994
|
type ReviewCardFeatureVariantType = 'default' | 'outlined' | 'full' | 'store';
|
|
3026
|
-
declare const _default$
|
|
2995
|
+
declare const _default$t: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
3027
2996
|
id?: string | undefined;
|
|
3028
2997
|
avatarSrc?: string | undefined;
|
|
3029
2998
|
name: string;
|
|
@@ -3127,7 +3096,7 @@ type ScreenInputFormFeatureProps = {
|
|
|
3127
3096
|
icon?: ReactNode | string;
|
|
3128
3097
|
isKeyboardShown?: boolean;
|
|
3129
3098
|
};
|
|
3130
|
-
declare const _default$
|
|
3099
|
+
declare const _default$s: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
|
|
3131
3100
|
|
|
3132
3101
|
type SelectionType = {
|
|
3133
3102
|
value: any;
|
|
@@ -3145,7 +3114,7 @@ type SpecialistDrumPickerWidgetProps = {
|
|
|
3145
3114
|
onTouchStart?: () => void;
|
|
3146
3115
|
onTouchEnd?: () => void;
|
|
3147
3116
|
};
|
|
3148
|
-
declare const _default$
|
|
3117
|
+
declare const _default$r: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
|
|
3149
3118
|
|
|
3150
3119
|
type TextAreaFormFeatureProps = {
|
|
3151
3120
|
title?: string;
|
|
@@ -3161,7 +3130,7 @@ type TextAreaFormFeatureProps = {
|
|
|
3161
3130
|
maxlength?: number;
|
|
3162
3131
|
HeaderComponent?: FC;
|
|
3163
3132
|
};
|
|
3164
|
-
declare const _default$
|
|
3133
|
+
declare const _default$q: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
|
|
3165
3134
|
|
|
3166
3135
|
type AcceptAgreementFeatureProps = {
|
|
3167
3136
|
isAccepted: boolean;
|
|
@@ -3182,7 +3151,7 @@ type SelectWithSearchFormFeatureProps = {
|
|
|
3182
3151
|
otherText?: string;
|
|
3183
3152
|
buttonLabel?: string;
|
|
3184
3153
|
} & WithTranslation;
|
|
3185
|
-
declare const _default$
|
|
3154
|
+
declare const _default$p: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
|
|
3186
3155
|
|
|
3187
3156
|
type MarkdownContainerFeatureProps = {
|
|
3188
3157
|
children?: string | null;
|
|
@@ -3190,18 +3159,18 @@ type MarkdownContainerFeatureProps = {
|
|
|
3190
3159
|
className?: string;
|
|
3191
3160
|
forceBlock?: boolean;
|
|
3192
3161
|
};
|
|
3193
|
-
declare const _default$
|
|
3162
|
+
declare const _default$o: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
|
|
3194
3163
|
|
|
3195
|
-
declare const _default$
|
|
3164
|
+
declare const _default$n: React__default.NamedExoticComponent<OnBoardingStartScreenType>;
|
|
3196
3165
|
|
|
3197
|
-
declare const _default$
|
|
3166
|
+
declare const _default$m: React__default.NamedExoticComponent<OnBoardingInfoScreenType>;
|
|
3198
3167
|
|
|
3199
3168
|
type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
|
|
3200
3169
|
onChange?: (value: string[]) => void;
|
|
3201
3170
|
defaultValues?: string[];
|
|
3202
3171
|
variant?: OnboardingVariant;
|
|
3203
3172
|
} & OnBoardingMultiSelectScreenType;
|
|
3204
|
-
declare const _default$
|
|
3173
|
+
declare const _default$l: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
|
|
3205
3174
|
|
|
3206
3175
|
type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
3207
3176
|
onChange?: (value: string) => void;
|
|
@@ -3209,7 +3178,7 @@ type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
|
|
|
3209
3178
|
variant?: OnboardingVariant;
|
|
3210
3179
|
template?: 'radio' | 'image' | 'emoji';
|
|
3211
3180
|
} & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType & OnBoardingSingleScaleSelectScreenType;
|
|
3212
|
-
declare const _default$
|
|
3181
|
+
declare const _default$k: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
|
|
3213
3182
|
|
|
3214
3183
|
declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
|
|
3215
3184
|
t?: WithTranslation['t'];
|
|
@@ -3225,9 +3194,9 @@ type OnBoardingProgressFeatureProps = {
|
|
|
3225
3194
|
startAdornment?: React__default.ReactNode;
|
|
3226
3195
|
variant?: OnboardingVariant;
|
|
3227
3196
|
};
|
|
3228
|
-
declare const _default$
|
|
3197
|
+
declare const _default$j: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
|
|
3229
3198
|
|
|
3230
|
-
declare const _default$
|
|
3199
|
+
declare const _default$i: React__default.NamedExoticComponent<OnBoardingReviewsScreenType>;
|
|
3231
3200
|
|
|
3232
3201
|
type OnBoardingEmailScreenPreviewFeatureProps = OnBoardingEmailScreenType & {
|
|
3233
3202
|
email: string | null;
|
|
@@ -3235,7 +3204,7 @@ type OnBoardingEmailScreenPreviewFeatureProps = OnBoardingEmailScreenType & {
|
|
|
3235
3204
|
onChangeEmail?: (email: string) => void;
|
|
3236
3205
|
onSubmit?: () => void;
|
|
3237
3206
|
};
|
|
3238
|
-
declare const _default$
|
|
3207
|
+
declare const _default$h: React__default.NamedExoticComponent<OnBoardingEmailScreenPreviewFeatureProps>;
|
|
3239
3208
|
|
|
3240
3209
|
type OnBoardingConfirmScreenPreviewFeatureProps = OnBoardingConfirmScreenType & {
|
|
3241
3210
|
email: string | null;
|
|
@@ -3246,7 +3215,7 @@ type OnBoardingConfirmScreenPreviewFeatureProps = OnBoardingConfirmScreenType &
|
|
|
3246
3215
|
onChangePassword?: (password: string) => void;
|
|
3247
3216
|
onSubmit?: () => void;
|
|
3248
3217
|
};
|
|
3249
|
-
declare const _default$
|
|
3218
|
+
declare const _default$g: React__default.NamedExoticComponent<OnBoardingConfirmScreenPreviewFeatureProps>;
|
|
3250
3219
|
|
|
3251
3220
|
type OnBoardingPaywallScreenPreviewFeatureProps$2 = {
|
|
3252
3221
|
variant?: OnboardingVariant;
|
|
@@ -3307,7 +3276,7 @@ interface Props$2 extends Omit<TypographyProps, 'children'> {
|
|
|
3307
3276
|
presentingElement?: HTMLElement;
|
|
3308
3277
|
}
|
|
3309
3278
|
|
|
3310
|
-
declare const _default$
|
|
3279
|
+
declare const _default$f: React__default.NamedExoticComponent<Props$2>;
|
|
3311
3280
|
|
|
3312
3281
|
type Props$1 = {
|
|
3313
3282
|
className?: string;
|
|
@@ -3810,7 +3779,7 @@ type SpecialistCardProps = {
|
|
|
3810
3779
|
};
|
|
3811
3780
|
declare const SpecialistCard: React__default.FC<SpecialistCardProps>;
|
|
3812
3781
|
|
|
3813
|
-
declare const _default$
|
|
3782
|
+
declare const _default$e: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
3814
3783
|
isError?: boolean | undefined;
|
|
3815
3784
|
errorStyle?: "filled" | "unfilled" | undefined;
|
|
3816
3785
|
type?: "number" | "text" | "email" | undefined;
|
|
@@ -3834,11 +3803,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
|
|
|
3834
3803
|
error?: string | null | undefined;
|
|
3835
3804
|
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
3836
3805
|
|
|
3837
|
-
declare const _default$
|
|
3806
|
+
declare const _default$d: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
3838
3807
|
isError?: boolean | undefined;
|
|
3839
3808
|
} & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
3840
3809
|
|
|
3841
|
-
declare const _default$
|
|
3810
|
+
declare const _default$c: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
3842
3811
|
options: {
|
|
3843
3812
|
id: string | number;
|
|
3844
3813
|
label: string | number;
|
|
@@ -3852,6 +3821,9 @@ type ButtonProps = {
|
|
|
3852
3821
|
buttonType?: PossibleButtonTypes;
|
|
3853
3822
|
loading?: boolean;
|
|
3854
3823
|
} & React__default.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
3824
|
+
/**
|
|
3825
|
+
* @deprecated
|
|
3826
|
+
*/
|
|
3855
3827
|
declare const CustomButton: React__default.FC<ButtonProps>;
|
|
3856
3828
|
|
|
3857
3829
|
declare enum CheckboxTypes {
|
|
@@ -3870,7 +3842,7 @@ type CustomCheckboxProps = {
|
|
|
3870
3842
|
isCheckbox?: boolean;
|
|
3871
3843
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
3872
3844
|
};
|
|
3873
|
-
declare const _default$
|
|
3845
|
+
declare const _default$b: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
3874
3846
|
|
|
3875
3847
|
type CheckboxListItem = {
|
|
3876
3848
|
id: ReactText;
|
|
@@ -3898,7 +3870,7 @@ type CheckboxListProps = {
|
|
|
3898
3870
|
from: string;
|
|
3899
3871
|
};
|
|
3900
3872
|
};
|
|
3901
|
-
declare const _default$
|
|
3873
|
+
declare const _default$a: React__default.NamedExoticComponent<CheckboxListProps>;
|
|
3902
3874
|
|
|
3903
3875
|
type BookingHeaderProps = {
|
|
3904
3876
|
title?: string;
|
|
@@ -3912,9 +3884,9 @@ type ProgressBarProps = {
|
|
|
3912
3884
|
progress: number;
|
|
3913
3885
|
loaderTitle?: string;
|
|
3914
3886
|
};
|
|
3915
|
-
declare const _default$
|
|
3887
|
+
declare const _default$9: React__default.NamedExoticComponent<ProgressBarProps>;
|
|
3916
3888
|
|
|
3917
|
-
declare const _default$
|
|
3889
|
+
declare const _default$8: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
3918
3890
|
title: string;
|
|
3919
3891
|
subTitle?: string | undefined;
|
|
3920
3892
|
isError?: boolean | undefined;
|
|
@@ -3932,22 +3904,6 @@ type SuccessScreenProps = {
|
|
|
3932
3904
|
};
|
|
3933
3905
|
declare const SuccessScreen: FC<SuccessScreenProps>;
|
|
3934
3906
|
|
|
3935
|
-
declare const FlagTypes: {
|
|
3936
|
-
uk: JSX.Element;
|
|
3937
|
-
ua: JSX.Element;
|
|
3938
|
-
pl: JSX.Element;
|
|
3939
|
-
gb: JSX.Element;
|
|
3940
|
-
en: JSX.Element;
|
|
3941
|
-
ru: JSX.Element;
|
|
3942
|
-
es: JSX.Element;
|
|
3943
|
-
};
|
|
3944
|
-
type FlagProps = {
|
|
3945
|
-
name: keyof typeof FlagTypes;
|
|
3946
|
-
dimensions?: number;
|
|
3947
|
-
className?: string;
|
|
3948
|
-
};
|
|
3949
|
-
declare const _default$8: React__default.NamedExoticComponent<FlagProps>;
|
|
3950
|
-
|
|
3951
3907
|
type SpecialistLangsProps = {
|
|
3952
3908
|
showLoader?: boolean;
|
|
3953
3909
|
langs: string[];
|
|
@@ -4015,6 +3971,16 @@ type RatingWithLabelProps = {
|
|
|
4015
3971
|
} & RatingComponentProps;
|
|
4016
3972
|
declare const StarRating: React__default.FC<RatingWithLabelProps>;
|
|
4017
3973
|
|
|
3974
|
+
declare const FlagTypes: {
|
|
3975
|
+
uk: JSX.Element;
|
|
3976
|
+
ua: JSX.Element;
|
|
3977
|
+
pl: JSX.Element;
|
|
3978
|
+
gb: JSX.Element;
|
|
3979
|
+
en: JSX.Element;
|
|
3980
|
+
ru: JSX.Element;
|
|
3981
|
+
es: JSX.Element;
|
|
3982
|
+
};
|
|
3983
|
+
|
|
4018
3984
|
type ReviewCardProps = {
|
|
4019
3985
|
reviewerAvatar: string;
|
|
4020
3986
|
reviewerFirstName: string;
|
|
@@ -4263,4 +4229,4 @@ type SpecialistPreviewWidgetProps = {
|
|
|
4263
4229
|
|
|
4264
4230
|
declare const _default: React__default.NamedExoticComponent<SpecialistPreviewWidgetProps>;
|
|
4265
4231
|
|
|
4266
|
-
export { AcceptAgreementFeature, Action, _default$V as AlertCard, AllowFilterValueType, AppFooter, _default$U as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$T as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$P as Badge, _default$Y as BookingScheduleTime, _default$X as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$w as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$b as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$18 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$15 as ConsultationModal, _default$A as ConsultationPricingFeature, _default$13 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$c as CustomCheckbox, CustomRadioButton, _default$d as CustomSelect, _default$e as CustomTextarea, DatePicker, _default$11 as DaySlider, DayToRender, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$Z as EducationCard, EmptyChatModalFeature, _default$16 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$8 as Flag, FlagTypes, _default$R as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$L as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$D as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$H as Item, _default$O as ItemCard, LabelArrowRedirect, _default$1d as LetterAvatar, _default$9 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$E as ListItemWithColumns, _default$I as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$J as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$p as MarkdownContainerFeature, _default$F as MatchProgress, MenuFeature, MindlyReview, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$h as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$i as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$n as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$m as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$k as OnBoardingProgressFeature, _default$j as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithImageType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$l as OnBoardingSingleSelectionScreenPreviewFeature, _default$o as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$v as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$x as PaymentSessionsList, _default$1c as PersonDateTimeCard, _default$Q as Picture, PoweredByStripeFeature, _default$7 as ProfileInformation, _default$$ as ProfileView, _default$a as ProgressBar, ProgressBarDashed, _default$K as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$M as Rating, RatingCircleWrapper, _default$12 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$u as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$s as ScreenDrumPickerFormFeature, ScreenInput, _default$t as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1b as SelectImpressionEmoji, SelectItemType, _default$q as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$D as ShowMore, _default$17 as SignUpSessionButton, _default$14 as SignUpSessionModal, SizeValues, Skeleton, _default$S as Skeleton_v2, _default$C as SlotsGrid, _default$B as SlotsGridItem, SolidInput, Specialist, _default$_ as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$4 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$1 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$6 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$z as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$y as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$2 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$3 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$5 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$r as TextAreaFormFeature, _default$f as TextInput, _default$g as TextWithClampFeature, _default$N as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$W as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$G as Video, _default$19 as VideoCallInfo, _default$1a as VideoPlayer, VideoProvider, _default$10 as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|
|
4232
|
+
export { AcceptAgreementFeature, Action, _default$U as AlertCard, AllowFilterValueType, AppFooter, _default$T as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, _default$S as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$O as Badge, _default$X as BookingScheduleTime, _default$W as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$v as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$1e as ChatListItem, _default$1c as ChatListSkeleton, _default$1d as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$17 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$14 as ConsultationModal, _default$z as ConsultationPricingFeature, _default$12 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, _default$10 as DaySlider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$Y as EducationCard, _default$1b as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$15 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$Q as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$K as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$D as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$G as Item, _default$N as ItemCard, LabelArrowRedirect, _default$1i as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$D as ListItemWithColumns, _default$H as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$I as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$o as MarkdownContainerFeature, _default$E as MatchProgress, _default$1f as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$g as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$h as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$m as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$l as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$j as OnBoardingProgressFeature, _default$i as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithImageType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$k as OnBoardingSingleSelectionScreenPreviewFeature, _default$n as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$u as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$w as PaymentSessionsList, _default$1h as PersonDateTimeCard, _default$P as Picture, PoweredByStripeFeature, _default$7 as ProfileInformation, _default$_ as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$J as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$L as Rating, RatingCircleWrapper, _default$11 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$t as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$r as ScreenDrumPickerFormFeature, ScreenInput, _default$s as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1g as SelectImpressionEmoji, SelectItemType, _default$p as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$C as ShowMore, _default$16 as SignUpSessionButton, _default$13 as SignUpSessionModal, SizeValues, Skeleton, _default$R as Skeleton_v2, _default$B as SlotsGrid, _default$A as SlotsGridItem, SolidInput, Specialist, _default$Z as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$4 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$1 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$6 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$y as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$x as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$2 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$3 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$5 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$q as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1a as Textarea, _default$M as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$V as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as Video, _default$18 as VideoCallInfo, _default$19 as VideoPlayer, VideoProvider, _default$$ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
|