@mindly/ui-components 3.31.0 → 3.32.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/index.js +6 -6
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/{lib → deprecated}/button/Button.d.ts +3 -0
- package/dist/cjs/types/index.d.ts +3 -1
- package/dist/cjs/types/lib/CustomButton/CustomButton.d.ts +9 -0
- package/dist/cjs/types/lib/CustomButton/CustomButton.styled.d.ts +9 -0
- package/dist/cjs/types/lib/CustomButton/index.d.ts +1 -0
- package/dist/cjs/types/lib/Inputs/CustomSelect/CustomSelect.d.ts +3 -4
- package/dist/cjs/types/lib/Inputs/CustomTextarea/CustomTextarea.d.ts +3 -4
- package/dist/cjs/types/lib/Inputs/ImageInput/ImageInput.d.ts +9 -10
- package/dist/cjs/types/lib/Inputs/PasswordInput/PasswordInput.d.ts +3 -1
- package/dist/cjs/types/lib/Inputs/TextInput/TextInput.d.ts +3 -4
- package/dist/cjs/types/lib/UpdatesCard/UpdatesCard.d.ts +1 -1
- package/dist/esm/index.js +6 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/{lib → deprecated}/button/Button.d.ts +3 -0
- package/dist/esm/types/index.d.ts +3 -1
- package/dist/esm/types/lib/CustomButton/CustomButton.d.ts +9 -0
- package/dist/esm/types/lib/CustomButton/CustomButton.styled.d.ts +9 -0
- package/dist/esm/types/lib/CustomButton/index.d.ts +1 -0
- package/dist/esm/types/lib/Inputs/CustomSelect/CustomSelect.d.ts +3 -4
- package/dist/esm/types/lib/Inputs/CustomTextarea/CustomTextarea.d.ts +3 -4
- package/dist/esm/types/lib/Inputs/ImageInput/ImageInput.d.ts +9 -10
- package/dist/esm/types/lib/Inputs/PasswordInput/PasswordInput.d.ts +3 -1
- package/dist/esm/types/lib/Inputs/TextInput/TextInput.d.ts +3 -4
- package/dist/esm/types/lib/UpdatesCard/UpdatesCard.d.ts +1 -1
- package/dist/index.d.ts +41 -32
- package/package.json +1 -1
- /package/dist/cjs/types/{lib → deprecated}/button/Button.style.d.ts +0 -0
- /package/dist/esm/types/{lib → deprecated}/button/Button.style.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Button } from './
|
|
1
|
+
import { Button } from './deprecated/button/Button';
|
|
2
2
|
import { FloatingButton } from './lib/floating-button/FloatingButton';
|
|
3
3
|
import { ListButton } from './lib/list-button/ListButton';
|
|
4
4
|
import { NavigationBar } from './lib/navigation-bar/NavigationBar';
|
|
@@ -143,3 +143,5 @@ export { default as CustomTextarea } from './lib/Inputs/CustomTextarea';
|
|
|
143
143
|
export * from './lib/Inputs/CustomTextarea';
|
|
144
144
|
export { default as CustomSelect } from './lib/Inputs/CustomSelect';
|
|
145
145
|
export * from './lib/Inputs/CustomSelect';
|
|
146
|
+
export { default as CustomButton } from './lib/CustomButton';
|
|
147
|
+
export * from './lib/CustomButton';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare type PossibleButtonTypes = 'primary';
|
|
3
|
+
declare type ButtonProps = {
|
|
4
|
+
buttonType: PossibleButtonTypes;
|
|
5
|
+
borderRadius?: number;
|
|
6
|
+
loading?: boolean;
|
|
7
|
+
} & React.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
8
|
+
declare const CustomButton: React.FC<ButtonProps>;
|
|
9
|
+
export default CustomButton;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { PossibleButtonTypes } from './CustomButton';
|
|
3
|
+
declare type StyledButtonProps = {
|
|
4
|
+
buttonType?: PossibleButtonTypes;
|
|
5
|
+
borderRadius?: number;
|
|
6
|
+
};
|
|
7
|
+
export declare const StyledButton: import("styled-components").StyledComponent<"button", any, StyledButtonProps, never>;
|
|
8
|
+
export declare const StyledSpinner: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@ionic/core/dist/types/components").JSX.IonSpinner & Pick<import("react").HTMLAttributes<HTMLIonSpinnerElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSpinnerElement>>, any, {}, never>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './CustomButton';
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
declare
|
|
2
|
+
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
3
3
|
options: {
|
|
4
4
|
id: string | number;
|
|
5
5
|
label: string | number;
|
|
6
6
|
}[];
|
|
7
|
-
isError?: boolean;
|
|
8
|
-
} & React.SelectHTMLAttributes<HTMLSelectElement
|
|
9
|
-
declare const _default: React.NamedExoticComponent<CustomSelectProps>;
|
|
7
|
+
isError?: boolean | undefined;
|
|
8
|
+
} & React.SelectHTMLAttributes<HTMLSelectElement> & React.RefAttributes<HTMLSelectElement>>>;
|
|
10
9
|
export default _default;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
declare
|
|
3
|
-
isError?: boolean;
|
|
4
|
-
} & React.TextareaHTMLAttributes<HTMLTextAreaElement
|
|
5
|
-
declare const _default: React.NamedExoticComponent<CustomTextareaProps>;
|
|
2
|
+
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
3
|
+
isError?: boolean | undefined;
|
|
4
|
+
} & React.TextareaHTMLAttributes<HTMLTextAreaElement> & React.RefAttributes<HTMLTextAreaElement>>>;
|
|
6
5
|
export default _default;
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
declare
|
|
3
|
-
dimension?: number;
|
|
4
|
-
buttonLabel?: string;
|
|
5
|
-
isRoundedImage?: boolean;
|
|
6
|
-
isCloseButton?: boolean;
|
|
7
|
-
onCloseClick?: () => void;
|
|
8
|
-
isVideoContent?: boolean;
|
|
9
|
-
isError?: boolean;
|
|
10
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>,
|
|
11
|
-
declare const ImageInput: React.FC<ImageInputProps>;
|
|
2
|
+
declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
3
|
+
dimension?: number | undefined;
|
|
4
|
+
buttonLabel?: string | undefined;
|
|
5
|
+
isRoundedImage?: boolean | undefined;
|
|
6
|
+
isCloseButton?: boolean | undefined;
|
|
7
|
+
onCloseClick?: (() => void) | undefined;
|
|
8
|
+
isVideoContent?: boolean | undefined;
|
|
9
|
+
isError?: boolean | undefined;
|
|
10
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
12
11
|
export default ImageInput;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
declare const PasswordInput: React.
|
|
2
|
+
declare const PasswordInput: React.ForwardRefExoticComponent<{
|
|
3
|
+
error?: string | null | undefined;
|
|
4
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
3
5
|
export default PasswordInput;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
declare
|
|
3
|
-
isError?: boolean;
|
|
4
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>,
|
|
5
|
-
declare const _default: React.NamedExoticComponent<TextInputProps>;
|
|
2
|
+
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
3
|
+
isError?: boolean | undefined;
|
|
4
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>>;
|
|
6
5
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -3,14 +3,17 @@ import React, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, Rea
|
|
|
3
3
|
import { JSX as JSX$1 } from '@ionic/core/components';
|
|
4
4
|
import { ILocalVideoTrack, IRemoteVideoTrack, ILocalAudioTrack, IRemoteAudioTrack } from 'agora-rtc-sdk-ng';
|
|
5
5
|
|
|
6
|
-
interface ButtonProps {
|
|
6
|
+
interface ButtonProps$1 {
|
|
7
7
|
buttonType: 'primary' | 'secondary' | 'actionButton' | 'actionButtonDisabled' | 'secondaryWithStroke' | 'secondaryCancel' | 'actionButtonActive' | 'actionButtonGreen';
|
|
8
8
|
isDisabled: boolean;
|
|
9
9
|
children: React.ReactNode;
|
|
10
10
|
onClick?: (props?: React.SyntheticEvent) => void;
|
|
11
11
|
['data-testid']?: string;
|
|
12
12
|
}
|
|
13
|
-
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated
|
|
15
|
+
*/
|
|
16
|
+
declare const Button: React.FC<ButtonProps$1>;
|
|
14
17
|
|
|
15
18
|
interface FloatingButtonType {
|
|
16
19
|
bottomHeight: number;
|
|
@@ -524,9 +527,9 @@ declare type UpdatesPopupPropsType = {
|
|
|
524
527
|
text?: string;
|
|
525
528
|
closeHandler?: () => void;
|
|
526
529
|
buttonHandler?: () => void;
|
|
527
|
-
buttonType?: Extract<ButtonProps, 'buttonType'>;
|
|
530
|
+
buttonType?: Extract<ButtonProps$1, 'buttonType'>;
|
|
528
531
|
buttonText?: string;
|
|
529
|
-
disabledButton?: Extract<ButtonProps, 'isDisabled'>;
|
|
532
|
+
disabledButton?: Extract<ButtonProps$1, 'isDisabled'>;
|
|
530
533
|
};
|
|
531
534
|
declare const UpdatesCard: React.FC<UpdatesPopupPropsType>;
|
|
532
535
|
|
|
@@ -882,36 +885,42 @@ declare type SpecialistCardProps = {
|
|
|
882
885
|
};
|
|
883
886
|
declare const SpecialistCard: React.FC<SpecialistCardProps>;
|
|
884
887
|
|
|
885
|
-
declare
|
|
886
|
-
isError?: boolean;
|
|
887
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>,
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
declare const
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
declare
|
|
904
|
-
isError?: boolean;
|
|
905
|
-
} & React.TextareaHTMLAttributes<HTMLTextAreaElement
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
declare type CustomSelectProps = {
|
|
888
|
+
declare const _default$2: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
889
|
+
isError?: boolean | undefined;
|
|
890
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>>;
|
|
891
|
+
|
|
892
|
+
declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
893
|
+
dimension?: number | undefined;
|
|
894
|
+
buttonLabel?: string | undefined;
|
|
895
|
+
isRoundedImage?: boolean | undefined;
|
|
896
|
+
isCloseButton?: boolean | undefined;
|
|
897
|
+
onCloseClick?: (() => void) | undefined;
|
|
898
|
+
isVideoContent?: boolean | undefined;
|
|
899
|
+
isError?: boolean | undefined;
|
|
900
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
901
|
+
|
|
902
|
+
declare const PasswordInput: React.ForwardRefExoticComponent<{
|
|
903
|
+
error?: string | null | undefined;
|
|
904
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
905
|
+
|
|
906
|
+
declare const _default$1: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
907
|
+
isError?: boolean | undefined;
|
|
908
|
+
} & React.TextareaHTMLAttributes<HTMLTextAreaElement> & React.RefAttributes<HTMLTextAreaElement>>>;
|
|
909
|
+
|
|
910
|
+
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
909
911
|
options: {
|
|
910
912
|
id: string | number;
|
|
911
913
|
label: string | number;
|
|
912
914
|
}[];
|
|
913
|
-
isError?: boolean;
|
|
914
|
-
} & React.SelectHTMLAttributes<HTMLSelectElement
|
|
915
|
-
|
|
915
|
+
isError?: boolean | undefined;
|
|
916
|
+
} & React.SelectHTMLAttributes<HTMLSelectElement> & React.RefAttributes<HTMLSelectElement>>>;
|
|
917
|
+
|
|
918
|
+
declare type PossibleButtonTypes = 'primary';
|
|
919
|
+
declare type ButtonProps = {
|
|
920
|
+
buttonType: PossibleButtonTypes;
|
|
921
|
+
borderRadius?: number;
|
|
922
|
+
loading?: boolean;
|
|
923
|
+
} & React.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
924
|
+
declare const CustomButton: React.FC<ButtonProps>;
|
|
916
925
|
|
|
917
|
-
export { AppFooter, AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, _default$4 as BookingScheduleTime, _default$3 as BookingSpecialistInfo, Button, CancelSession, _default$n as ChatListItem, _default$l as ChatListSkeleton, _default$m as ChatMessage, ChatMessageSkeleton, _default$e as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$b as ConsultationModal, _default$9 as ConsultationSpecialistCard, Container, ContentCard, _default as CustomSelect, _default$1 as CustomTextarea, DatePicker, _default$7 as DaySlider, DayToRender, _default$5 as EducationCard, _default$k as EmptyChatList, EmptyChatMessages, _default$c as EmptyConsultations, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$r as LetterAvatar, ListButton, ListSelect, LouseConnect, _default$o as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$q as PersonDateTimeCard, _default$6 as ProfileView, Range, _default$8 as ReSchedule, ReScheduleSuccess, RoundButton, RowSelect, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$p as SelectImpressionEmoji, _default$d as SignUpSessionButton, _default$a as SignUpSessionModal, Skeleton, SpecialistAbout, SpecialistCard, _default$i as SpecialistEducationCard, _default$h as SpecialistProfileViewCard, SpecialistStatisticsCard, SpecialistWorkDirections, StatisticsScroll, StatusTag, SwitchDeviceCard, TabBar, Tag, _default$2 as TextInput, _default$j as Textarea, TherapistCard, TherapistInformationComponent, Toggle, TooltipComponent, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$f as VideoCallInfo, _default$g as VideoPlayer, WorkDirections, YourLocalTimeBlock, decOfNum, toast };
|
|
926
|
+
export { AppFooter, AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, _default$4 as BookingScheduleTime, _default$3 as BookingSpecialistInfo, Button, CancelSession, _default$n as ChatListItem, _default$l as ChatListSkeleton, _default$m as ChatMessage, ChatMessageSkeleton, _default$e as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$b as ConsultationModal, _default$9 as ConsultationSpecialistCard, Container, ContentCard, CustomButton, _default as CustomSelect, _default$1 as CustomTextarea, DatePicker, _default$7 as DaySlider, DayToRender, _default$5 as EducationCard, _default$k as EmptyChatList, EmptyChatMessages, _default$c as EmptyConsultations, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$r as LetterAvatar, ListButton, ListSelect, LouseConnect, _default$o as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$q as PersonDateTimeCard, _default$6 as ProfileView, Range, _default$8 as ReSchedule, ReScheduleSuccess, RoundButton, RowSelect, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$p as SelectImpressionEmoji, _default$d as SignUpSessionButton, _default$a as SignUpSessionModal, Skeleton, SpecialistAbout, SpecialistCard, _default$i as SpecialistEducationCard, _default$h as SpecialistProfileViewCard, SpecialistStatisticsCard, SpecialistWorkDirections, StatisticsScroll, StatusTag, SwitchDeviceCard, TabBar, Tag, _default$2 as TextInput, _default$j as Textarea, TherapistCard, TherapistInformationComponent, Toggle, TooltipComponent, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$f as VideoCallInfo, _default$g as VideoPlayer, WorkDirections, YourLocalTimeBlock, decOfNum, toast };
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|