@mindly/ui-components 4.1.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/configs/tailwind/colors.d.ts +38 -0
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/lib2/shared/ui/Badge/Badge.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/Badge/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/Badge/styles.d.ts +127 -0
- package/dist/cjs/lib2/shared/ui/Badge/types.d.ts +8 -0
- package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
- package/dist/esm/configs/tailwind/colors.d.ts +38 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/shared/ui/Badge/Badge.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/Badge/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/Badge/styles.d.ts +127 -0
- package/dist/esm/lib2/shared/ui/Badge/types.d.ts +8 -0
- package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
- package/dist/index.d.ts +135 -124
- package/package.json +3 -2
- package/src/configs/tailwind/colors.ts +39 -0
- package/src/lib2/shared/css/tailwind.css +30 -0
- package/src/lib2/shared/css/variables.css +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText, ReactElement, ChangeEvent } from 'react';
|
|
2
3
|
import { JSX as JSX$1 } from '@ionic/core/components';
|
|
3
4
|
import { RatingComponentProps } from 'react-rating';
|
|
4
5
|
import { RefresherEventDetail, ScrollDetail, ScrollBaseDetail } from '@ionic/react';
|
|
@@ -7,36 +8,36 @@ import { IonContentCustomEvent } from '@ionic/core/dist/types/components';
|
|
|
7
8
|
interface ButtonProps$2 {
|
|
8
9
|
buttonType: 'primary' | 'secondary' | 'actionButton' | 'actionButtonDisabled' | 'secondaryWithStroke' | 'secondaryCancel' | 'actionButtonActive' | 'actionButtonGreen';
|
|
9
10
|
isDisabled: boolean;
|
|
10
|
-
children:
|
|
11
|
-
onClick?: (props?:
|
|
11
|
+
children: React__default.ReactNode;
|
|
12
|
+
onClick?: (props?: React__default.SyntheticEvent) => void;
|
|
12
13
|
['data-testid']?: string;
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
15
16
|
* @deprecated
|
|
16
17
|
*/
|
|
17
|
-
declare const Button:
|
|
18
|
+
declare const Button: React__default.FC<ButtonProps$2>;
|
|
18
19
|
|
|
19
20
|
interface FloatingButtonType {
|
|
20
21
|
bottomHeight: number;
|
|
21
22
|
rightWidth: number;
|
|
22
23
|
['data-testid']?: string;
|
|
23
24
|
}
|
|
24
|
-
declare const FloatingButton:
|
|
25
|
+
declare const FloatingButton: React__default.FC<FloatingButtonType>;
|
|
25
26
|
|
|
26
27
|
interface ListButtonProps {
|
|
27
|
-
children:
|
|
28
|
+
children: React__default.ReactNode;
|
|
28
29
|
icon: string;
|
|
29
|
-
onClick: (props?:
|
|
30
|
+
onClick: (props?: React__default.SyntheticEvent) => void;
|
|
30
31
|
['data-testid']?: string;
|
|
31
32
|
}
|
|
32
|
-
declare const ListButton:
|
|
33
|
+
declare const ListButton: React__default.FC<ListButtonProps>;
|
|
33
34
|
|
|
34
35
|
interface NavigationBarProps {
|
|
35
36
|
isInternetConnected: boolean;
|
|
36
37
|
children?: ReactNode;
|
|
37
38
|
isIos: boolean;
|
|
38
39
|
}
|
|
39
|
-
declare const NavigationBar:
|
|
40
|
+
declare const NavigationBar: React__default.FC<NavigationBarProps>;
|
|
40
41
|
|
|
41
42
|
interface ContentCardProps {
|
|
42
43
|
contentVideo?: {
|
|
@@ -50,7 +51,7 @@ interface ContentCardProps {
|
|
|
50
51
|
};
|
|
51
52
|
['data-testid']?: string;
|
|
52
53
|
}
|
|
53
|
-
declare const ContentCard:
|
|
54
|
+
declare const ContentCard: React__default.FC<ContentCardProps>;
|
|
54
55
|
|
|
55
56
|
interface TherapistCardProps {
|
|
56
57
|
psychologistName: string;
|
|
@@ -60,13 +61,13 @@ interface TherapistCardProps {
|
|
|
60
61
|
psychologistPrice: number;
|
|
61
62
|
psychologistDuration: number;
|
|
62
63
|
psychologistExperience: number;
|
|
63
|
-
handleClick: (props?:
|
|
64
|
+
handleClick: (props?: React__default.SyntheticEvent) => void;
|
|
64
65
|
['data-testid']?: string;
|
|
65
66
|
}
|
|
66
67
|
/**
|
|
67
68
|
* @deprecated
|
|
68
69
|
*/
|
|
69
|
-
declare const TherapistCard:
|
|
70
|
+
declare const TherapistCard: React__default.FC<TherapistCardProps>;
|
|
70
71
|
|
|
71
72
|
/**
|
|
72
73
|
* Toast that work line an API, we can call it anywhere, need message text and duration(default 3 seconds)
|
|
@@ -84,7 +85,7 @@ interface ArchivedConsultationCardProps {
|
|
|
84
85
|
price: string;
|
|
85
86
|
['data-testid']?: string;
|
|
86
87
|
}
|
|
87
|
-
declare const ArchivedConsultationCard:
|
|
88
|
+
declare const ArchivedConsultationCard: React__default.FC<ArchivedConsultationCardProps>;
|
|
88
89
|
|
|
89
90
|
interface DatePickerProps {
|
|
90
91
|
type: 'date' | 'weekday';
|
|
@@ -93,17 +94,17 @@ interface DatePickerProps {
|
|
|
93
94
|
date?: string;
|
|
94
95
|
month?: string;
|
|
95
96
|
isActive: boolean;
|
|
96
|
-
onClick: (props?:
|
|
97
|
+
onClick: (props?: React__default.SyntheticEvent) => void;
|
|
97
98
|
['data-testid']?: string;
|
|
98
99
|
}
|
|
99
|
-
declare const DatePicker:
|
|
100
|
+
declare const DatePicker: React__default.FC<DatePickerProps>;
|
|
100
101
|
|
|
101
102
|
interface NoInternetConnectionProps {
|
|
102
103
|
isInternetConnected: boolean;
|
|
103
104
|
isIos: boolean;
|
|
104
105
|
heading?: string;
|
|
105
106
|
}
|
|
106
|
-
declare const NoInternetConnection:
|
|
107
|
+
declare const NoInternetConnection: React__default.FC<NoInternetConnectionProps>;
|
|
107
108
|
|
|
108
109
|
interface TherapistInformationComponentProps {
|
|
109
110
|
avatar: string;
|
|
@@ -112,7 +113,7 @@ interface TherapistInformationComponentProps {
|
|
|
112
113
|
price: string;
|
|
113
114
|
['data-testid']?: string;
|
|
114
115
|
}
|
|
115
|
-
declare const TherapistInformationComponent:
|
|
116
|
+
declare const TherapistInformationComponent: React__default.FC<TherapistInformationComponentProps>;
|
|
116
117
|
|
|
117
118
|
interface InputProps {
|
|
118
119
|
isActive: boolean;
|
|
@@ -127,24 +128,24 @@ interface InputProps {
|
|
|
127
128
|
/**
|
|
128
129
|
* @deprecated
|
|
129
130
|
*/
|
|
130
|
-
declare const Input:
|
|
131
|
+
declare const Input: React__default.FC<InputProps>;
|
|
131
132
|
|
|
132
133
|
interface ScrollTabsProps {
|
|
133
134
|
setActiveTab: (e?: string) => void;
|
|
134
135
|
value: 'profile' | 'video' | 'articles';
|
|
135
136
|
}
|
|
136
|
-
declare const ScrollTabs:
|
|
137
|
+
declare const ScrollTabs: React__default.FC<ScrollTabsProps>;
|
|
137
138
|
|
|
138
139
|
interface TabBarProps {
|
|
139
140
|
children: ReactNode;
|
|
140
141
|
isIos: boolean;
|
|
141
142
|
}
|
|
142
|
-
declare const TabBar:
|
|
143
|
+
declare const TabBar: React__default.FC<TabBarProps>;
|
|
143
144
|
|
|
144
145
|
interface YourLocalTimeBlockProps {
|
|
145
146
|
text?: string;
|
|
146
147
|
}
|
|
147
|
-
declare const YourLocalTimeBlock:
|
|
148
|
+
declare const YourLocalTimeBlock: React__default.FC<YourLocalTimeBlockProps>;
|
|
148
149
|
|
|
149
150
|
type ModalCalendarProps = {
|
|
150
151
|
onDaySelected: (day: Date) => void;
|
|
@@ -153,7 +154,7 @@ type ModalCalendarProps = {
|
|
|
153
154
|
noteDays?: Date[];
|
|
154
155
|
selectedDate?: Date;
|
|
155
156
|
};
|
|
156
|
-
declare const ModalCalendar:
|
|
157
|
+
declare const ModalCalendar: React__default.FC<ModalCalendarProps>;
|
|
157
158
|
|
|
158
159
|
type HorizontalCalendarProps = {
|
|
159
160
|
consultationDatesSeconds?: number[];
|
|
@@ -192,7 +193,7 @@ type DayToRender = {
|
|
|
192
193
|
dayOfWeek: DayOfWeek;
|
|
193
194
|
date: Date;
|
|
194
195
|
};
|
|
195
|
-
declare const HorizontalCalendar:
|
|
196
|
+
declare const HorizontalCalendar: React__default.FC<HorizontalCalendarProps>;
|
|
196
197
|
|
|
197
198
|
declare enum ImpressionEmojiEnum {
|
|
198
199
|
DEPRESSED = -2,
|
|
@@ -214,19 +215,19 @@ type LetterAvatarProps = {
|
|
|
214
215
|
fontSize?: number;
|
|
215
216
|
onClick?: () => void;
|
|
216
217
|
};
|
|
217
|
-
declare const _default$
|
|
218
|
+
declare const _default$I: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
218
219
|
|
|
219
220
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
220
|
-
onErrorContent:
|
|
221
|
+
onErrorContent: React__default.ReactElement;
|
|
221
222
|
};
|
|
222
|
-
declare const ImageWithFallback:
|
|
223
|
+
declare const ImageWithFallback: React__default.FC<ImageWithFallbackProps>;
|
|
223
224
|
|
|
224
225
|
type PersonDateTimeCardProps = {
|
|
225
226
|
photoSrc?: string;
|
|
226
227
|
name: string;
|
|
227
228
|
dateTime: Date;
|
|
228
229
|
};
|
|
229
|
-
declare const _default$
|
|
230
|
+
declare const _default$H: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
|
|
230
231
|
|
|
231
232
|
type PsychologistProfileType = {
|
|
232
233
|
id: string;
|
|
@@ -287,7 +288,7 @@ type PsychologistType = {
|
|
|
287
288
|
};
|
|
288
289
|
|
|
289
290
|
type UsersPsychologistScrollListPropsType = {
|
|
290
|
-
psychologistClickHandler:
|
|
291
|
+
psychologistClickHandler: React__default.Dispatch<React__default.SetStateAction<{
|
|
291
292
|
isShow: boolean;
|
|
292
293
|
psychologist_id: string;
|
|
293
294
|
}>>;
|
|
@@ -296,12 +297,12 @@ type UsersPsychologistScrollListPropsType = {
|
|
|
296
297
|
declare const UsersPsychologistScrollList: ({ psychologistClickHandler, usersPsychologists, }: UsersPsychologistScrollListPropsType) => JSX.Element | null;
|
|
297
298
|
|
|
298
299
|
type NotesEditorProps = JSX$1.IonTextarea & HTMLAttributes<HTMLIonTextareaElement> & RefAttributes<HTMLIonTextareaElement>;
|
|
299
|
-
declare const NotesEditor:
|
|
300
|
+
declare const NotesEditor: React__default.ForwardRefExoticComponent<Omit<NotesEditorProps, "ref"> & React__default.RefAttributes<HTMLIonTextareaElement>>;
|
|
300
301
|
|
|
301
302
|
type NotesCardTextProps = {
|
|
302
303
|
text: string;
|
|
303
304
|
};
|
|
304
|
-
declare const NotesCardText:
|
|
305
|
+
declare const NotesCardText: React__default.FC<NotesCardTextProps>;
|
|
305
306
|
|
|
306
307
|
type RangeValue = {
|
|
307
308
|
lower: number;
|
|
@@ -392,21 +393,21 @@ type SelectImpressionEmojiProps = {
|
|
|
392
393
|
onChange?: (val: ImpressionEmojiEnum) => void;
|
|
393
394
|
};
|
|
394
395
|
|
|
395
|
-
declare const _default$
|
|
396
|
+
declare const _default$G: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
|
|
396
397
|
|
|
397
398
|
interface FooterForBookingProps {
|
|
398
|
-
eventHandler: (props?:
|
|
399
|
+
eventHandler: (props?: React__default.SyntheticEvent) => void;
|
|
399
400
|
duration: number;
|
|
400
401
|
price: string;
|
|
401
402
|
['data-testid']?: string;
|
|
402
403
|
}
|
|
403
|
-
declare const FooterForBooking:
|
|
404
|
+
declare const FooterForBooking: React__default.FC<FooterForBookingProps>;
|
|
404
405
|
|
|
405
406
|
type StatusTagPropsType = {
|
|
406
407
|
dimension?: number;
|
|
407
408
|
tagColor?: string;
|
|
408
409
|
} & HTMLAttributes<HTMLDivElement>;
|
|
409
|
-
declare const StatusTag:
|
|
410
|
+
declare const StatusTag: React__default.FC<StatusTagPropsType>;
|
|
410
411
|
|
|
411
412
|
interface Playable {
|
|
412
413
|
play: (...args: any[]) => any;
|
|
@@ -424,7 +425,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
424
425
|
showControls: boolean;
|
|
425
426
|
isScreenSharing?: boolean;
|
|
426
427
|
} & HTMLAttributes<HTMLDivElement>;
|
|
427
|
-
declare const _default$
|
|
428
|
+
declare const _default$F: <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;
|
|
428
429
|
|
|
429
430
|
type RoundButtonPropsType = {
|
|
430
431
|
disabled?: boolean;
|
|
@@ -436,7 +437,7 @@ type RoundButtonPropsType = {
|
|
|
436
437
|
transformed?: boolean;
|
|
437
438
|
isLoading?: boolean;
|
|
438
439
|
};
|
|
439
|
-
declare const RoundButton:
|
|
440
|
+
declare const RoundButton: React__default.FC<RoundButtonPropsType>;
|
|
440
441
|
|
|
441
442
|
type ChatListItemProps = {
|
|
442
443
|
name: string;
|
|
@@ -450,7 +451,7 @@ type ChatListItemProps = {
|
|
|
450
451
|
lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system';
|
|
451
452
|
locale?: string;
|
|
452
453
|
};
|
|
453
|
-
declare const _default$
|
|
454
|
+
declare const _default$E: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
454
455
|
|
|
455
456
|
type ChatMessageProps = {
|
|
456
457
|
message: string | File;
|
|
@@ -468,11 +469,11 @@ type ChatMessageProps = {
|
|
|
468
469
|
};
|
|
469
470
|
locale?: string;
|
|
470
471
|
};
|
|
471
|
-
declare const _default$
|
|
472
|
+
declare const _default$D: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
472
473
|
|
|
473
474
|
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
474
475
|
|
|
475
|
-
declare const _default$
|
|
476
|
+
declare const _default$C: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
476
477
|
|
|
477
478
|
type EmptyChatList = {
|
|
478
479
|
title?: string;
|
|
@@ -482,7 +483,7 @@ type EmptyChatList = {
|
|
|
482
483
|
onClick?: () => void;
|
|
483
484
|
};
|
|
484
485
|
declare const EmptyChatList: FC<EmptyChatList>;
|
|
485
|
-
declare const _default$
|
|
486
|
+
declare const _default$B: React__default.NamedExoticComponent<EmptyChatList>;
|
|
486
487
|
|
|
487
488
|
type EmptyChatMessagesProps = {
|
|
488
489
|
title?: string;
|
|
@@ -506,7 +507,7 @@ type TextareaProps = {
|
|
|
506
507
|
onError?: (message: string) => void;
|
|
507
508
|
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
508
509
|
};
|
|
509
|
-
declare const _default$
|
|
510
|
+
declare const _default$A: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
510
511
|
|
|
511
512
|
type LouseConnectProps = {
|
|
512
513
|
onClick?: () => void;
|
|
@@ -521,7 +522,7 @@ type UpdatesPopupPropsType = {
|
|
|
521
522
|
buttonText?: string;
|
|
522
523
|
disabledButton?: Extract<ButtonProps$2, 'isDisabled'>;
|
|
523
524
|
};
|
|
524
|
-
declare const UpdatesCard:
|
|
525
|
+
declare const UpdatesCard: React__default.FC<UpdatesPopupPropsType>;
|
|
525
526
|
|
|
526
527
|
type VideoCallSwitchDevice = {
|
|
527
528
|
/**
|
|
@@ -558,7 +559,7 @@ type VideoCallSwitchDevice = {
|
|
|
558
559
|
offText: string;
|
|
559
560
|
};
|
|
560
561
|
};
|
|
561
|
-
declare const SwitchDeviceCard:
|
|
562
|
+
declare const SwitchDeviceCard: React__default.FC<VideoCallSwitchDevice>;
|
|
562
563
|
|
|
563
564
|
type SectionHeadingProps = {
|
|
564
565
|
text: string;
|
|
@@ -567,14 +568,14 @@ type SectionHeadingProps = {
|
|
|
567
568
|
color?: string;
|
|
568
569
|
showLoader?: boolean;
|
|
569
570
|
};
|
|
570
|
-
declare const SectionHeading:
|
|
571
|
+
declare const SectionHeading: React__default.FC<SectionHeadingProps>;
|
|
571
572
|
|
|
572
573
|
type SkeletonProps$1 = {
|
|
573
574
|
widthPx?: number;
|
|
574
575
|
heightPx?: number;
|
|
575
|
-
style?:
|
|
576
|
+
style?: React__default.CSSProperties;
|
|
576
577
|
} & Omit<JSX$1.IonSkeletonText, 'animated'>;
|
|
577
|
-
declare const Skeleton:
|
|
578
|
+
declare const Skeleton: React__default.FC<SkeletonProps$1>;
|
|
578
579
|
|
|
579
580
|
type SpecialistEducationCardProps$1 = {
|
|
580
581
|
institutionName?: string;
|
|
@@ -585,7 +586,7 @@ type SpecialistEducationCardProps$1 = {
|
|
|
585
586
|
yearEnd?: number | null;
|
|
586
587
|
showLoader?: boolean;
|
|
587
588
|
};
|
|
588
|
-
declare const _default$
|
|
589
|
+
declare const _default$z: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
|
|
589
590
|
|
|
590
591
|
type SpecialistProfileViewCardProps$1 = {
|
|
591
592
|
avatarLink?: string | null;
|
|
@@ -597,8 +598,8 @@ type SpecialistProfileViewCardProps$1 = {
|
|
|
597
598
|
onImageClick?: () => void;
|
|
598
599
|
videoLinkUrl?: string | null;
|
|
599
600
|
showLoader?: boolean;
|
|
600
|
-
} &
|
|
601
|
-
declare const _default$
|
|
601
|
+
} & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
602
|
+
declare const _default$y: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
|
|
602
603
|
|
|
603
604
|
type SpecialistStatisticsCardProps$1 = {
|
|
604
605
|
activeClients?: number;
|
|
@@ -608,7 +609,7 @@ type SpecialistStatisticsCardProps$1 = {
|
|
|
608
609
|
/**
|
|
609
610
|
* @deprecated
|
|
610
611
|
*/
|
|
611
|
-
declare const SpecialistStatisticsCard:
|
|
612
|
+
declare const SpecialistStatisticsCard: React__default.FC<SpecialistStatisticsCardProps$1>;
|
|
612
613
|
|
|
613
614
|
type SpecialistWorkDirectionsPropsType$1 = {
|
|
614
615
|
workDirections?: string[] | [];
|
|
@@ -618,9 +619,9 @@ type SpecialistWorkDirectionsPropsType$1 = {
|
|
|
618
619
|
/**
|
|
619
620
|
* @deprecated
|
|
620
621
|
*/
|
|
621
|
-
declare const SpecialistWorkDirections:
|
|
622
|
+
declare const SpecialistWorkDirections: React__default.FC<SpecialistWorkDirectionsPropsType$1>;
|
|
622
623
|
|
|
623
|
-
declare const Tag:
|
|
624
|
+
declare const Tag: React__default.FC;
|
|
624
625
|
|
|
625
626
|
type AppFooterProps$1 = {
|
|
626
627
|
fullwidth?: boolean;
|
|
@@ -632,14 +633,14 @@ declare const AppFooter: FC<AppFooterProps$1>;
|
|
|
632
633
|
type VideoPlayerProps = {
|
|
633
634
|
videoLink: string;
|
|
634
635
|
closeModalHandler?: () => void;
|
|
635
|
-
onErrorContent:
|
|
636
|
+
onErrorContent: React__default.ReactElement;
|
|
636
637
|
} & JSX$1.IonModal;
|
|
637
|
-
declare const _default$
|
|
638
|
+
declare const _default$x: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
638
639
|
|
|
639
640
|
type NotSupportModalProps = {
|
|
640
641
|
closeModal?: () => void;
|
|
641
|
-
redText?:
|
|
642
|
-
mainText?:
|
|
642
|
+
redText?: React__default.ReactElement;
|
|
643
|
+
mainText?: React__default.ReactElement;
|
|
643
644
|
buttonLink?: string;
|
|
644
645
|
type?: 'danger' | 'primary';
|
|
645
646
|
title?: string;
|
|
@@ -649,7 +650,7 @@ type NotSupportModalProps = {
|
|
|
649
650
|
attention: string;
|
|
650
651
|
};
|
|
651
652
|
} & JSX$1.IonModal;
|
|
652
|
-
declare const NotSupportModal:
|
|
653
|
+
declare const NotSupportModal: React__default.FC<NotSupportModalProps>;
|
|
653
654
|
|
|
654
655
|
type UserInfo = {
|
|
655
656
|
name: string;
|
|
@@ -670,7 +671,7 @@ type VideoCallInfoProps = {
|
|
|
670
671
|
abbreviatedSeconds: string;
|
|
671
672
|
};
|
|
672
673
|
};
|
|
673
|
-
declare const _default$
|
|
674
|
+
declare const _default$w: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
674
675
|
|
|
675
676
|
declare enum ConsultationCardType {
|
|
676
677
|
FEATURE = "feature",
|
|
@@ -705,14 +706,14 @@ type ConsultationCardProps = {
|
|
|
705
706
|
};
|
|
706
707
|
};
|
|
707
708
|
|
|
708
|
-
declare const _default$
|
|
709
|
+
declare const _default$v: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
709
710
|
|
|
710
711
|
type SignUpSessionButtonProps = {
|
|
711
712
|
label: string;
|
|
712
713
|
isLoading?: boolean;
|
|
713
714
|
onClick?: () => void;
|
|
714
715
|
};
|
|
715
|
-
declare const _default$
|
|
716
|
+
declare const _default$u: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
716
717
|
|
|
717
718
|
type EmptyConsultationsProps = {
|
|
718
719
|
title: string;
|
|
@@ -720,7 +721,7 @@ type EmptyConsultationsProps = {
|
|
|
720
721
|
buttonLabel?: string;
|
|
721
722
|
onClick?: () => void;
|
|
722
723
|
};
|
|
723
|
-
declare const _default$
|
|
724
|
+
declare const _default$t: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
724
725
|
|
|
725
726
|
type ConsultationModalProps = {
|
|
726
727
|
isOpen: boolean;
|
|
@@ -755,7 +756,7 @@ type ConsultationModalProps = {
|
|
|
755
756
|
started?: string;
|
|
756
757
|
};
|
|
757
758
|
};
|
|
758
|
-
declare const _default$
|
|
759
|
+
declare const _default$s: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
759
760
|
|
|
760
761
|
type SpecialistData = {
|
|
761
762
|
id: string;
|
|
@@ -772,7 +773,7 @@ type SignUpSessionModalProps = {
|
|
|
772
773
|
title: string;
|
|
773
774
|
cancelBtnLabel: string;
|
|
774
775
|
};
|
|
775
|
-
declare const _default$
|
|
776
|
+
declare const _default$r: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
776
777
|
|
|
777
778
|
type ConsultationSpecialistCardProps = {
|
|
778
779
|
id: string;
|
|
@@ -783,7 +784,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
783
784
|
onSignUp?: (id: string) => void;
|
|
784
785
|
signInBtnLabel: string;
|
|
785
786
|
};
|
|
786
|
-
declare const _default$
|
|
787
|
+
declare const _default$q: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
787
788
|
|
|
788
789
|
type UserInfoModalProps = {
|
|
789
790
|
isOpen: boolean;
|
|
@@ -848,7 +849,7 @@ type ReScheduleProps = {
|
|
|
848
849
|
btnLabel: string;
|
|
849
850
|
};
|
|
850
851
|
};
|
|
851
|
-
declare const _default$
|
|
852
|
+
declare const _default$p: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
852
853
|
|
|
853
854
|
type ReScheduleSuccessProps = {
|
|
854
855
|
name: string;
|
|
@@ -886,7 +887,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
886
887
|
tomorrow?: string;
|
|
887
888
|
};
|
|
888
889
|
};
|
|
889
|
-
declare const _default$
|
|
890
|
+
declare const _default$o: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
890
891
|
|
|
891
892
|
type SpecialistWorkDirectionsPropsType = {
|
|
892
893
|
workDirections?: string[] | [];
|
|
@@ -895,7 +896,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
895
896
|
moreLabel?: string;
|
|
896
897
|
hideLabel?: string;
|
|
897
898
|
};
|
|
898
|
-
declare const _default$
|
|
899
|
+
declare const _default$n: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
899
900
|
|
|
900
901
|
type SpecialistProfileViewCardProps = {
|
|
901
902
|
videoLink?: string;
|
|
@@ -905,7 +906,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
905
906
|
isLoading?: boolean;
|
|
906
907
|
videoDurationSeconds?: number;
|
|
907
908
|
};
|
|
908
|
-
declare const _default$
|
|
909
|
+
declare const _default$m: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
909
910
|
|
|
910
911
|
type SpecialistAboutProps = {
|
|
911
912
|
text?: string;
|
|
@@ -914,7 +915,7 @@ type SpecialistAboutProps = {
|
|
|
914
915
|
moreLabel?: string;
|
|
915
916
|
hideLabel?: string;
|
|
916
917
|
};
|
|
917
|
-
declare const _default$
|
|
918
|
+
declare const _default$l: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
918
919
|
|
|
919
920
|
type SpecialistEducationCardProps = {
|
|
920
921
|
institutionName?: string;
|
|
@@ -925,7 +926,7 @@ type SpecialistEducationCardProps = {
|
|
|
925
926
|
yearEnd?: number | null;
|
|
926
927
|
showLoader?: boolean;
|
|
927
928
|
};
|
|
928
|
-
declare const _default$
|
|
929
|
+
declare const _default$k: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
929
930
|
|
|
930
931
|
type SpecialistStatisticsCardProps = {
|
|
931
932
|
trust?: boolean;
|
|
@@ -957,7 +958,7 @@ type SpecialistStatisticsCardProps = {
|
|
|
957
958
|
perSession?: string;
|
|
958
959
|
};
|
|
959
960
|
};
|
|
960
|
-
declare const StatisticsScroll:
|
|
961
|
+
declare const StatisticsScroll: React__default.FC<SpecialistStatisticsCardProps>;
|
|
961
962
|
|
|
962
963
|
declare const decOfNum: (number: number, titles: string[]) => string;
|
|
963
964
|
|
|
@@ -971,7 +972,7 @@ type BookingScheduleTimeProps = {
|
|
|
971
972
|
onClick?: (index: number, item: string) => void;
|
|
972
973
|
isLoading?: boolean;
|
|
973
974
|
};
|
|
974
|
-
declare const _default$
|
|
975
|
+
declare const _default$j: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
975
976
|
|
|
976
977
|
type BookingSpecialistInfoProps = {
|
|
977
978
|
name: string;
|
|
@@ -980,7 +981,7 @@ type BookingSpecialistInfoProps = {
|
|
|
980
981
|
avatar?: string;
|
|
981
982
|
isLoading?: boolean;
|
|
982
983
|
};
|
|
983
|
-
declare const _default$
|
|
984
|
+
declare const _default$i: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
984
985
|
|
|
985
986
|
type SpecialistCardProps = {
|
|
986
987
|
fullName?: string;
|
|
@@ -1027,15 +1028,15 @@ type SpecialistCardProps = {
|
|
|
1027
1028
|
uploadButton?: boolean;
|
|
1028
1029
|
onUploadButtonClick?: () => void;
|
|
1029
1030
|
};
|
|
1030
|
-
declare const SpecialistCard:
|
|
1031
|
+
declare const SpecialistCard: React__default.FC<SpecialistCardProps>;
|
|
1031
1032
|
|
|
1032
|
-
declare const _default$
|
|
1033
|
+
declare const _default$h: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1033
1034
|
isError?: boolean | undefined;
|
|
1034
1035
|
errorStyle?: "filled" | "unfilled" | undefined;
|
|
1035
1036
|
type?: "number" | "text" | "email" | undefined;
|
|
1036
|
-
} &
|
|
1037
|
+
} & React__default.InputHTMLAttributes<HTMLInputElement> & React__default.RefAttributes<HTMLInputElement>>>;
|
|
1037
1038
|
|
|
1038
|
-
declare const ImageInput:
|
|
1039
|
+
declare const ImageInput: React__default.ForwardRefExoticComponent<{
|
|
1039
1040
|
dimension?: number | undefined;
|
|
1040
1041
|
buttonLabel?: string | undefined;
|
|
1041
1042
|
isRoundedImage?: boolean | undefined;
|
|
@@ -1047,31 +1048,31 @@ declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
|
1047
1048
|
loadedFileValue?: string | undefined;
|
|
1048
1049
|
renderMediaAfterLoad?: boolean | undefined;
|
|
1049
1050
|
isFilledButton?: boolean | undefined;
|
|
1050
|
-
} & Omit<
|
|
1051
|
+
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1051
1052
|
|
|
1052
|
-
declare const PasswordInput:
|
|
1053
|
+
declare const PasswordInput: React__default.ForwardRefExoticComponent<{
|
|
1053
1054
|
error?: string | null | undefined;
|
|
1054
|
-
} & Omit<
|
|
1055
|
+
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1055
1056
|
|
|
1056
|
-
declare const _default$
|
|
1057
|
+
declare const _default$g: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1057
1058
|
isError?: boolean | undefined;
|
|
1058
|
-
} &
|
|
1059
|
+
} & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
1059
1060
|
|
|
1060
|
-
declare const _default$
|
|
1061
|
+
declare const _default$f: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1061
1062
|
options: {
|
|
1062
1063
|
id: string | number;
|
|
1063
1064
|
label: string | number;
|
|
1064
1065
|
}[];
|
|
1065
1066
|
isError?: boolean | undefined;
|
|
1066
1067
|
selectedBy?: "label" | "id" | undefined;
|
|
1067
|
-
} &
|
|
1068
|
+
} & React__default.SelectHTMLAttributes<HTMLSelectElement> & React__default.RefAttributes<HTMLSelectElement>>>;
|
|
1068
1069
|
|
|
1069
1070
|
type PossibleButtonTypes = 'primary' | 'secondary' | 'accent' | 'accent-dark-green' | 'accent-light-grey' | 'transparent' | 'border' | 'border-white' | 'white' | 'outline';
|
|
1070
1071
|
type ButtonProps$1 = {
|
|
1071
1072
|
buttonType?: PossibleButtonTypes;
|
|
1072
1073
|
loading?: boolean;
|
|
1073
|
-
} &
|
|
1074
|
-
declare const CustomButton:
|
|
1074
|
+
} & React__default.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
1075
|
+
declare const CustomButton: React__default.FC<ButtonProps$1>;
|
|
1075
1076
|
|
|
1076
1077
|
declare enum CheckboxTypes {
|
|
1077
1078
|
WITH_ICON = "with-icon",
|
|
@@ -1089,7 +1090,7 @@ type CustomCheckboxProps = {
|
|
|
1089
1090
|
isCheckbox?: boolean;
|
|
1090
1091
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1091
1092
|
};
|
|
1092
|
-
declare const _default$
|
|
1093
|
+
declare const _default$e: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
1093
1094
|
|
|
1094
1095
|
type CheckboxListItem = {
|
|
1095
1096
|
id: ReactText;
|
|
@@ -1117,7 +1118,7 @@ type CheckboxListProps = {
|
|
|
1117
1118
|
from: string;
|
|
1118
1119
|
};
|
|
1119
1120
|
};
|
|
1120
|
-
declare const _default$
|
|
1121
|
+
declare const _default$d: React__default.NamedExoticComponent<CheckboxListProps>;
|
|
1121
1122
|
|
|
1122
1123
|
type BookingHeaderProps = {
|
|
1123
1124
|
title?: string;
|
|
@@ -1125,15 +1126,15 @@ type BookingHeaderProps = {
|
|
|
1125
1126
|
isLoading?: boolean;
|
|
1126
1127
|
onClick?: () => void;
|
|
1127
1128
|
};
|
|
1128
|
-
declare const ChevronHeader:
|
|
1129
|
+
declare const ChevronHeader: React__default.FC<BookingHeaderProps>;
|
|
1129
1130
|
|
|
1130
1131
|
type ProgressBarProps = {
|
|
1131
1132
|
progress: number;
|
|
1132
1133
|
loaderTitle?: string;
|
|
1133
1134
|
};
|
|
1134
|
-
declare const _default$
|
|
1135
|
+
declare const _default$c: React__default.NamedExoticComponent<ProgressBarProps>;
|
|
1135
1136
|
|
|
1136
|
-
declare const _default$
|
|
1137
|
+
declare const _default$b: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1137
1138
|
title: string;
|
|
1138
1139
|
subTitle?: string | undefined;
|
|
1139
1140
|
isError?: boolean | undefined;
|
|
@@ -1141,7 +1142,7 @@ declare const _default$a: React.MemoExoticComponent<React.ForwardRefExoticCompon
|
|
|
1141
1142
|
onCloseClick?: (() => void) | undefined;
|
|
1142
1143
|
buttonLabel?: string | undefined;
|
|
1143
1144
|
renderMediaAfterLoad?: boolean | undefined;
|
|
1144
|
-
} & Omit<
|
|
1145
|
+
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>>;
|
|
1145
1146
|
|
|
1146
1147
|
type SuccessScreenProps = {
|
|
1147
1148
|
title: string;
|
|
@@ -1164,7 +1165,7 @@ type FlagProps$1 = {
|
|
|
1164
1165
|
dimensions?: number;
|
|
1165
1166
|
className?: string;
|
|
1166
1167
|
};
|
|
1167
|
-
declare const _default$
|
|
1168
|
+
declare const _default$a: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1168
1169
|
|
|
1169
1170
|
type SpecialistLangsProps = {
|
|
1170
1171
|
showLoader?: boolean;
|
|
@@ -1203,8 +1204,8 @@ type ProfileInformationProps = {
|
|
|
1203
1204
|
translations?: {
|
|
1204
1205
|
reviews: string[];
|
|
1205
1206
|
};
|
|
1206
|
-
} &
|
|
1207
|
-
declare const _default$
|
|
1207
|
+
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1208
|
+
declare const _default$9: React__default.NamedExoticComponent<ProfileInformationProps>;
|
|
1208
1209
|
|
|
1209
1210
|
type SpecialistMatchProps = {
|
|
1210
1211
|
specialistFirstName?: string;
|
|
@@ -1215,8 +1216,8 @@ type SpecialistMatchProps = {
|
|
|
1215
1216
|
matchYou: string;
|
|
1216
1217
|
howWeMatchThis: string;
|
|
1217
1218
|
};
|
|
1218
|
-
} &
|
|
1219
|
-
declare const _default$
|
|
1219
|
+
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1220
|
+
declare const _default$8: React__default.NamedExoticComponent<SpecialistMatchProps>;
|
|
1220
1221
|
|
|
1221
1222
|
type SpecialistStatisticProps = {
|
|
1222
1223
|
learnMoreClick: () => void;
|
|
@@ -1235,8 +1236,8 @@ type SpecialistStatisticProps = {
|
|
|
1235
1236
|
sessions: string[];
|
|
1236
1237
|
bookedSession: string;
|
|
1237
1238
|
};
|
|
1238
|
-
} &
|
|
1239
|
-
declare const _default$
|
|
1239
|
+
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1240
|
+
declare const _default$7: React__default.NamedExoticComponent<SpecialistStatisticProps>;
|
|
1240
1241
|
|
|
1241
1242
|
type RatingWithLabelProps = {
|
|
1242
1243
|
countOfReviews?: number;
|
|
@@ -1245,7 +1246,7 @@ type RatingWithLabelProps = {
|
|
|
1245
1246
|
reviews: string[];
|
|
1246
1247
|
};
|
|
1247
1248
|
} & RatingComponentProps;
|
|
1248
|
-
declare const StarRating:
|
|
1249
|
+
declare const StarRating: React__default.FC<RatingWithLabelProps>;
|
|
1249
1250
|
|
|
1250
1251
|
type ReviewCardProps = {
|
|
1251
1252
|
reviewerAvatar: string;
|
|
@@ -1264,8 +1265,8 @@ type ReviewCardProps = {
|
|
|
1264
1265
|
showAllReviews: string;
|
|
1265
1266
|
};
|
|
1266
1267
|
cutReview?: boolean;
|
|
1267
|
-
} &
|
|
1268
|
-
declare const ReviewCard:
|
|
1268
|
+
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1269
|
+
declare const ReviewCard: React__default.FC<ReviewCardProps>;
|
|
1269
1270
|
|
|
1270
1271
|
type ReviewStatisticsProps = {
|
|
1271
1272
|
averageStarsCount: number;
|
|
@@ -1281,8 +1282,8 @@ type ReviewStatisticsProps = {
|
|
|
1281
1282
|
translations: {
|
|
1282
1283
|
reviews: string[];
|
|
1283
1284
|
};
|
|
1284
|
-
} &
|
|
1285
|
-
declare const ReviewStatistics:
|
|
1285
|
+
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1286
|
+
declare const ReviewStatistics: React__default.FC<ReviewStatisticsProps>;
|
|
1286
1287
|
|
|
1287
1288
|
interface ISpecialistReview {
|
|
1288
1289
|
id: string;
|
|
@@ -1317,13 +1318,13 @@ type ReviewSwiperProps = {
|
|
|
1317
1318
|
reviews: string;
|
|
1318
1319
|
};
|
|
1319
1320
|
};
|
|
1320
|
-
declare const ReviewSwiperSection:
|
|
1321
|
+
declare const ReviewSwiperSection: React__default.FC<ReviewSwiperProps>;
|
|
1321
1322
|
|
|
1322
1323
|
type FrequentlyAskedQuestions = {
|
|
1323
1324
|
text: string;
|
|
1324
1325
|
alignment: 'right' | 'center' | 'left';
|
|
1325
1326
|
};
|
|
1326
|
-
declare const FrequentlyAskedQuestions:
|
|
1327
|
+
declare const FrequentlyAskedQuestions: React__default.FC<FrequentlyAskedQuestions>;
|
|
1327
1328
|
|
|
1328
1329
|
declare const Spinner: () => JSX.Element;
|
|
1329
1330
|
|
|
@@ -1333,7 +1334,7 @@ type RefresherProps = {
|
|
|
1333
1334
|
};
|
|
1334
1335
|
declare const Refresher: FC<RefresherProps>;
|
|
1335
1336
|
|
|
1336
|
-
declare const Toast:
|
|
1337
|
+
declare const Toast: React__default.FC<ToastProps>;
|
|
1337
1338
|
|
|
1338
1339
|
type ToastButton = {
|
|
1339
1340
|
text: string;
|
|
@@ -1356,7 +1357,7 @@ type CustomRadioButtonProps = {
|
|
|
1356
1357
|
checked?: boolean;
|
|
1357
1358
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1358
1359
|
};
|
|
1359
|
-
declare const CustomRadioButton:
|
|
1360
|
+
declare const CustomRadioButton: React__default.ForwardRefExoticComponent<CustomRadioButtonProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1360
1361
|
|
|
1361
1362
|
type ListItemType = {
|
|
1362
1363
|
id: ReactText;
|
|
@@ -1414,14 +1415,14 @@ type TypographyProps = {
|
|
|
1414
1415
|
opacity?: TypographyOpacityType;
|
|
1415
1416
|
isAppearCase?: boolean;
|
|
1416
1417
|
className?: string;
|
|
1417
|
-
children:
|
|
1418
|
+
children: React__default.ReactNode;
|
|
1418
1419
|
};
|
|
1419
|
-
declare const _default$
|
|
1420
|
+
declare const _default$6: React__default.NamedExoticComponent<TypographyProps>;
|
|
1420
1421
|
|
|
1421
1422
|
type AppFooterProps = {
|
|
1422
|
-
children:
|
|
1423
|
+
children: React__default.ReactNode;
|
|
1423
1424
|
};
|
|
1424
|
-
declare const _default$
|
|
1425
|
+
declare const _default$5: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1425
1426
|
|
|
1426
1427
|
type AvatarRoundVariants = 'circle' | 'drop';
|
|
1427
1428
|
|
|
@@ -1433,14 +1434,14 @@ type AvatarProps = {
|
|
|
1433
1434
|
alt?: string;
|
|
1434
1435
|
showSkeleton?: boolean;
|
|
1435
1436
|
};
|
|
1436
|
-
declare const _default$
|
|
1437
|
+
declare const _default$4: React__default.NamedExoticComponent<AvatarProps>;
|
|
1437
1438
|
|
|
1438
1439
|
type SkeletonProps = {
|
|
1439
1440
|
animated?: boolean;
|
|
1440
1441
|
className?: string;
|
|
1441
|
-
style?:
|
|
1442
|
+
style?: React__default.CSSProperties;
|
|
1442
1443
|
};
|
|
1443
|
-
declare const _default$
|
|
1444
|
+
declare const _default$3: React__default.NamedExoticComponent<SkeletonProps>;
|
|
1444
1445
|
|
|
1445
1446
|
type ButtonProps = {
|
|
1446
1447
|
fill?: 'outline' | 'clear';
|
|
@@ -1449,7 +1450,7 @@ type ButtonProps = {
|
|
|
1449
1450
|
fullWidth?: boolean;
|
|
1450
1451
|
className?: string;
|
|
1451
1452
|
routerLink?: string;
|
|
1452
|
-
onClick?: (e:
|
|
1453
|
+
onClick?: (e: React__default.MouseEvent<HTMLIonButtonElement>) => void;
|
|
1453
1454
|
isLoading?: boolean;
|
|
1454
1455
|
} & JSX$1.IonButton;
|
|
1455
1456
|
declare const Button_v2: FC<ButtonProps>;
|
|
@@ -1459,22 +1460,22 @@ type ContainerProps = {
|
|
|
1459
1460
|
scrollEvents?: boolean;
|
|
1460
1461
|
onIonScroll?: (e: IonContentCustomEvent<ScrollDetail>) => void | undefined;
|
|
1461
1462
|
onIonScrollStart?: (e: IonContentCustomEvent<ScrollBaseDetail>) => void | undefined;
|
|
1462
|
-
children:
|
|
1463
|
+
children: React__default.ReactNode;
|
|
1463
1464
|
style?: CSSProperties;
|
|
1464
|
-
as?:
|
|
1465
|
+
as?: React__default.ElementType;
|
|
1465
1466
|
};
|
|
1466
|
-
declare const Container_v2:
|
|
1467
|
+
declare const Container_v2: React__default.ForwardRefExoticComponent<ContainerProps & React__default.RefAttributes<HTMLIonContentElement>>;
|
|
1467
1468
|
|
|
1468
1469
|
declare const flagsComponents: {
|
|
1469
|
-
uk:
|
|
1470
|
-
pl:
|
|
1470
|
+
uk: React__default.LazyExoticComponent<() => JSX.Element>;
|
|
1471
|
+
pl: React__default.LazyExoticComponent<() => JSX.Element>;
|
|
1471
1472
|
};
|
|
1472
1473
|
type AvailableFlags = keyof typeof flagsComponents;
|
|
1473
1474
|
type FlagProps = {
|
|
1474
1475
|
name: AvailableFlags;
|
|
1475
1476
|
className?: string;
|
|
1476
1477
|
};
|
|
1477
|
-
declare const _default$
|
|
1478
|
+
declare const _default$2: React__default.NamedExoticComponent<FlagProps>;
|
|
1478
1479
|
|
|
1479
1480
|
type PictureProps = {
|
|
1480
1481
|
width: number;
|
|
@@ -1489,7 +1490,17 @@ type PictureProps = {
|
|
|
1489
1490
|
alt?: string;
|
|
1490
1491
|
className?: string;
|
|
1491
1492
|
};
|
|
1492
|
-
declare const _default:
|
|
1493
|
+
declare const _default$1: React__default.NamedExoticComponent<PictureProps>;
|
|
1494
|
+
|
|
1495
|
+
type BadgeType = 'default' | 'accent';
|
|
1496
|
+
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
1497
|
+
type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
1498
|
+
variant: BadgeVariants;
|
|
1499
|
+
size?: 'S' | 'M';
|
|
1500
|
+
type?: BadgeType;
|
|
1501
|
+
};
|
|
1502
|
+
|
|
1503
|
+
declare const _default: React.NamedExoticComponent<BadgeProps>;
|
|
1493
1504
|
|
|
1494
1505
|
declare enum appThemes {
|
|
1495
1506
|
client = "client",
|
|
@@ -1501,4 +1512,4 @@ type ThemeProviderProps = {
|
|
|
1501
1512
|
|
|
1502
1513
|
declare const ThemeProvider: FC<ThemeProviderProps>;
|
|
1503
1514
|
|
|
1504
|
-
export { AppFooter, _default$
|
|
1515
|
+
export { AppFooter, _default$5 as AppFooter_v2, AppHeader, ArchivedConsultationCard, AvailableFlags, Avatar, AvatarProps$1 as AvatarProps, _default$4 as Avatar_v2, _default as Badge, _default$j as BookingScheduleTime, _default$i as BookingSpecialistInfo, Button, Button_v2, CancelSession, ChangeLangModal, _default$E as ChatListItem, _default$C as ChatListSkeleton, _default$D as ChatMessage, ChatMessageSkeleton, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$v as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$s as ConsultationModal, _default$q as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$o as DaySlider, DayToRender, _default$k as EducationCard, _default$B as EmptyChatList, EmptyChatMessages, _default$t as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$a as Flag, FlagTypes, _default$2 as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$I as LetterAvatar, _default$b as LineFileInput, ListButton, ListItemType, ListSelect, ListSelectProps, LouseConnect, _default$F as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$H as PersonDateTimeCard, _default$1 as Picture, _default$9 as ProfileInformation, _default$m as ProfileView, _default$c as ProgressBar, Range, _default$p as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$G as SelectImpressionEmoji, _default$u as SignUpSessionButton, _default$r as SignUpSessionModal, Skeleton, _default$3 as Skeleton_v2, _default$l as SpecialistAbout, SpecialistCard, _default$z as SpecialistEducationCard, SpecialistLangs, _default$8 as SpecialistMatch, _default$y as SpecialistProfileViewCard, _default$7 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$h as TextInput, _default$A as Textarea, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastProps, Toggle, TooltipComponent, _default$6 as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$w as VideoCallInfo, _default$x as VideoPlayer, _default$n as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, toast };
|