@mindly/ui-components 3.32.1 → 3.33.1

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.
Files changed (32) hide show
  1. package/dist/cjs/index.js +55 -49
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/index.d.ts +8 -0
  4. package/dist/cjs/types/lib/ChevronHeader/ChevronHeader.d.ts +9 -0
  5. package/dist/cjs/types/lib/ChevronHeader/ChevronHeader.styled.d.ts +3 -0
  6. package/dist/cjs/types/lib/ChevronHeader/index.d.ts +1 -0
  7. package/dist/cjs/types/lib/Inputs/CheckboxList/CheckboxList.d.ts +25 -0
  8. package/dist/cjs/types/lib/Inputs/CheckboxList/CheckboxList.style.d.ts +3 -0
  9. package/dist/cjs/types/lib/Inputs/CheckboxList/index.d.ts +2 -0
  10. package/dist/cjs/types/lib/Inputs/CustomCheckbox/CustomCheckbox.d.ts +19 -0
  11. package/dist/cjs/types/lib/Inputs/CustomCheckbox/CustomCheckbox.style.d.ts +1 -0
  12. package/dist/cjs/types/lib/Inputs/CustomCheckbox/index.d.ts +2 -0
  13. package/dist/cjs/types/lib/ProgressBar/ProgressBar.d.ts +6 -0
  14. package/dist/cjs/types/lib/ProgressBar/ProgressBar.style.d.ts +5 -0
  15. package/dist/cjs/types/lib/ProgressBar/index.d.ts +1 -0
  16. package/dist/esm/index.js +50 -44
  17. package/dist/esm/index.js.map +1 -1
  18. package/dist/esm/types/index.d.ts +8 -0
  19. package/dist/esm/types/lib/ChevronHeader/ChevronHeader.d.ts +9 -0
  20. package/dist/esm/types/lib/ChevronHeader/ChevronHeader.styled.d.ts +3 -0
  21. package/dist/esm/types/lib/ChevronHeader/index.d.ts +1 -0
  22. package/dist/esm/types/lib/Inputs/CheckboxList/CheckboxList.d.ts +25 -0
  23. package/dist/esm/types/lib/Inputs/CheckboxList/CheckboxList.style.d.ts +3 -0
  24. package/dist/esm/types/lib/Inputs/CheckboxList/index.d.ts +2 -0
  25. package/dist/esm/types/lib/Inputs/CustomCheckbox/CustomCheckbox.d.ts +19 -0
  26. package/dist/esm/types/lib/Inputs/CustomCheckbox/CustomCheckbox.style.d.ts +1 -0
  27. package/dist/esm/types/lib/Inputs/CustomCheckbox/index.d.ts +2 -0
  28. package/dist/esm/types/lib/ProgressBar/ProgressBar.d.ts +6 -0
  29. package/dist/esm/types/lib/ProgressBar/ProgressBar.style.d.ts +5 -0
  30. package/dist/esm/types/lib/ProgressBar/index.d.ts +1 -0
  31. package/dist/index.d.ts +84 -30
  32. package/package.json +1 -1
@@ -145,3 +145,11 @@ export { default as CustomSelect } from './lib/Inputs/CustomSelect';
145
145
  export * from './lib/Inputs/CustomSelect';
146
146
  export { default as CustomButton } from './lib/CustomButton';
147
147
  export * from './lib/CustomButton';
148
+ export { default as CustomCheckbox } from './lib/Inputs/CustomCheckbox';
149
+ export * from './lib/Inputs/CustomCheckbox';
150
+ export { default as CheckboxList } from './lib/Inputs/CheckboxList';
151
+ export * from './lib/Inputs/CheckboxList';
152
+ export { default as ChevronHeader } from './lib/ChevronHeader';
153
+ export * from './lib/ChevronHeader';
154
+ export { default as ProgressBar } from './lib/ProgressBar';
155
+ export * from './lib/ProgressBar';
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ declare type BookingHeaderProps = {
3
+ title?: string;
4
+ subTitle?: string;
5
+ isLoading?: boolean;
6
+ onClick?: () => void;
7
+ };
8
+ declare const ChevronHeader: React.FC<BookingHeaderProps>;
9
+ export default ChevronHeader;
@@ -0,0 +1,3 @@
1
+ export declare const BackButton: import("styled-components").StyledComponent<"button", any, {}, never>;
2
+ export declare const BookingSteps: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export declare const BookingTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './ChevronHeader';
@@ -0,0 +1,25 @@
1
+ import React, { ReactElement, ReactText } from 'react';
2
+ import { CheckboxTypes } from '../CustomCheckbox/CustomCheckbox';
3
+ export declare type CheckboxListItem = {
4
+ id: ReactText;
5
+ label: string;
6
+ icon?: ReactElement;
7
+ isFavorite?: boolean;
8
+ };
9
+ export declare type CheckboxListCategory = {
10
+ name: string;
11
+ items: CheckboxListItem[];
12
+ };
13
+ declare type CheckboxListProps = {
14
+ type: CheckboxTypes;
15
+ items: CheckboxListItem[];
16
+ allItems?: CheckboxListCategory[];
17
+ selected?: ReactText[];
18
+ onChange?: (id: ReactText, checked: boolean) => void;
19
+ name: string;
20
+ moreLabel?: string;
21
+ title?: string;
22
+ className?: string;
23
+ };
24
+ declare const _default: React.NamedExoticComponent<CheckboxListProps>;
25
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const CheckboxListWrapper: import("styled-components").StyledComponent<"ul", any, {}, never>;
2
+ export declare const ListMoreButton: import("styled-components").StyledComponent<"button", any, {}, never>;
3
+ export declare const FullListWrapper: import("styled-components").StyledComponent<"ul", any, {}, never>;
@@ -0,0 +1,2 @@
1
+ export { default } from './CheckboxList';
2
+ export * from './CheckboxList';
@@ -0,0 +1,19 @@
1
+ import React, { ChangeEvent, ReactElement, ReactText } from 'react';
2
+ export declare enum CheckboxTypes {
3
+ WITH_ICON = "with-icon",
4
+ TAG = "tag",
5
+ LIST = "list"
6
+ }
7
+ declare type CustomCheckboxProps = {
8
+ type: CheckboxTypes;
9
+ value?: ReactText;
10
+ label?: string;
11
+ icon?: ReactElement;
12
+ name?: string;
13
+ className?: string;
14
+ defaultChecked?: boolean;
15
+ isCheckbox?: boolean;
16
+ onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
17
+ };
18
+ declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<CustomCheckboxProps & React.RefAttributes<HTMLInputElement>>>;
19
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const CheckboxLabel: import("styled-components").StyledComponent<"label", any, {}, never>;
@@ -0,0 +1,2 @@
1
+ export { default } from './CustomCheckbox';
2
+ export * from './CustomCheckbox';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ declare type ProgressBarProps = {
3
+ progress: number;
4
+ };
5
+ declare const _default: React.NamedExoticComponent<ProgressBarProps>;
6
+ export default _default;
@@ -0,0 +1,5 @@
1
+ declare type ProgressBarWrapperProps = {
2
+ progress: number;
3
+ };
4
+ export declare const ProgressBarWrapper: import("styled-components").StyledComponent<"div", any, ProgressBarWrapperProps, never>;
5
+ export {};
@@ -0,0 +1 @@
1
+ export { default } from './ProgressBar';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import React, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText } from 'react';
2
+ import React, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText, ReactElement, ChangeEvent } from 'react';
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
 
@@ -212,7 +212,7 @@ declare type LetterAvatarProps = {
212
212
  fontSize?: number;
213
213
  onClick?: () => void;
214
214
  };
215
- declare const _default$r: React.NamedExoticComponent<LetterAvatarProps>;
215
+ declare const _default$u: React.NamedExoticComponent<LetterAvatarProps>;
216
216
 
217
217
  declare type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
218
218
  onErrorContent: React.ReactElement;
@@ -224,7 +224,7 @@ declare type PersonDateTimeCardProps = {
224
224
  name: string;
225
225
  dateTime: Date;
226
226
  };
227
- declare const _default$q: React.NamedExoticComponent<PersonDateTimeCardProps>;
227
+ declare const _default$t: React.NamedExoticComponent<PersonDateTimeCardProps>;
228
228
 
229
229
  declare type PsychologistProfileType = {
230
230
  id: string;
@@ -407,7 +407,7 @@ declare type SelectImpressionEmojiProps = {
407
407
  onChange?: (val: ImpressionEmojiEnum) => void;
408
408
  };
409
409
 
410
- declare const _default$p: React.NamedExoticComponent<SelectImpressionEmojiProps>;
410
+ declare const _default$s: React.NamedExoticComponent<SelectImpressionEmojiProps>;
411
411
 
412
412
  interface FooterForBookingProps {
413
413
  eventHandler: (props?: React.SyntheticEvent) => void;
@@ -436,7 +436,7 @@ declare type MediaPlayerProps = {
436
436
  showControls: boolean;
437
437
  isScreenSharing?: boolean;
438
438
  } & HTMLAttributes<HTMLDivElement>;
439
- declare const _default$o: React.NamedExoticComponent<MediaPlayerProps>;
439
+ declare const _default$r: React.NamedExoticComponent<MediaPlayerProps>;
440
440
 
441
441
  declare type RoundButtonPropsType = {
442
442
  disabled?: boolean;
@@ -461,7 +461,7 @@ declare type ChatListItemProps = {
461
461
  timeZone?: string;
462
462
  lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system';
463
463
  };
464
- declare const _default$n: React.NamedExoticComponent<ChatListItemProps>;
464
+ declare const _default$q: React.NamedExoticComponent<ChatListItemProps>;
465
465
 
466
466
  declare type ChatMessageProps = {
467
467
  message: string | File;
@@ -478,11 +478,11 @@ declare type ChatMessageProps = {
478
478
  height?: number;
479
479
  };
480
480
  };
481
- declare const _default$m: React.NamedExoticComponent<ChatMessageProps>;
481
+ declare const _default$p: React.NamedExoticComponent<ChatMessageProps>;
482
482
 
483
483
  declare const ChatMessageSkeleton: () => JSX.Element;
484
484
 
485
- declare const _default$l: React.MemoExoticComponent<() => JSX.Element>;
485
+ declare const _default$o: React.MemoExoticComponent<() => JSX.Element>;
486
486
 
487
487
  declare type EmptyChatList = {
488
488
  title?: string;
@@ -492,7 +492,7 @@ declare type EmptyChatList = {
492
492
  onClick?: () => void;
493
493
  };
494
494
  declare const EmptyChatList: FC<EmptyChatList>;
495
- declare const _default$k: React.NamedExoticComponent<EmptyChatList>;
495
+ declare const _default$n: React.NamedExoticComponent<EmptyChatList>;
496
496
 
497
497
  declare type EmptyChatMessagesProps = {
498
498
  title?: string;
@@ -516,7 +516,7 @@ declare type TextareaProps = {
516
516
  onError?: (message: string) => void;
517
517
  onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
518
518
  };
519
- declare const _default$j: React.NamedExoticComponent<TextareaProps>;
519
+ declare const _default$m: React.NamedExoticComponent<TextareaProps>;
520
520
 
521
521
  declare type LouseConnectProps = {
522
522
  onClick?: () => void;
@@ -590,7 +590,7 @@ declare type SpecialistEducationCardProps$1 = {
590
590
  yearEnd?: number | null;
591
591
  showLoader?: boolean;
592
592
  };
593
- declare const _default$i: React.NamedExoticComponent<SpecialistEducationCardProps$1>;
593
+ declare const _default$l: React.NamedExoticComponent<SpecialistEducationCardProps$1>;
594
594
 
595
595
  declare type SpecialistProfileViewCardProps$1 = {
596
596
  avatarLink?: string | null;
@@ -603,7 +603,7 @@ declare type SpecialistProfileViewCardProps$1 = {
603
603
  videoLinkUrl?: string | null;
604
604
  showLoader?: boolean;
605
605
  } & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
606
- declare const _default$h: React.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
606
+ declare const _default$k: React.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
607
607
 
608
608
  declare type SpecialistStatisticsCardProps$1 = {
609
609
  activeClients?: number;
@@ -639,7 +639,7 @@ declare type VideoPlayerProps = {
639
639
  closeModalHandler?: () => void;
640
640
  onErrorContent: React.ReactElement;
641
641
  } & JSX$1.IonModal;
642
- declare const _default$g: React.NamedExoticComponent<VideoPlayerProps>;
642
+ declare const _default$j: React.NamedExoticComponent<VideoPlayerProps>;
643
643
 
644
644
  declare type NotSupportModalProps = {
645
645
  closeModal?: () => void;
@@ -661,7 +661,7 @@ declare type VideoCallInfoProps = {
661
661
  consultationDate?: number;
662
662
  timeZone?: string;
663
663
  };
664
- declare const _default$f: React.NamedExoticComponent<VideoCallInfoProps>;
664
+ declare const _default$i: React.NamedExoticComponent<VideoCallInfoProps>;
665
665
 
666
666
  declare enum ConsultationCardType {
667
667
  FEATURE = "feature",
@@ -680,14 +680,14 @@ declare type ConsultationCardProps = {
680
680
  onVideoCall?: (sessionId: string) => void;
681
681
  };
682
682
 
683
- declare const _default$e: React.NamedExoticComponent<ConsultationCardProps>;
683
+ declare const _default$h: React.NamedExoticComponent<ConsultationCardProps>;
684
684
 
685
685
  declare type SignUpSessionButtonProps = {
686
686
  label: string;
687
687
  isLoading?: boolean;
688
688
  onClick?: () => void;
689
689
  };
690
- declare const _default$d: React.NamedExoticComponent<SignUpSessionButtonProps>;
690
+ declare const _default$g: React.NamedExoticComponent<SignUpSessionButtonProps>;
691
691
 
692
692
  declare type EmptyConsultationsProps = {
693
693
  title: string;
@@ -695,7 +695,7 @@ declare type EmptyConsultationsProps = {
695
695
  buttonLabel?: string;
696
696
  onClick?: () => void;
697
697
  };
698
- declare const _default$c: React.NamedExoticComponent<EmptyConsultationsProps>;
698
+ declare const _default$f: React.NamedExoticComponent<EmptyConsultationsProps>;
699
699
 
700
700
  declare type ConsultationModalProps = {
701
701
  isOpen: boolean;
@@ -713,7 +713,7 @@ declare type ConsultationModalProps = {
713
713
  onReschedule?: (sessionId: string) => void;
714
714
  onModalClose?: () => void;
715
715
  };
716
- declare const _default$b: React.NamedExoticComponent<ConsultationModalProps>;
716
+ declare const _default$e: React.NamedExoticComponent<ConsultationModalProps>;
717
717
 
718
718
  declare type SpecialistData = {
719
719
  id: string;
@@ -728,7 +728,7 @@ declare type SignUpSessionModalProps = {
728
728
  onCancel?: () => void;
729
729
  viewportHeight: number;
730
730
  };
731
- declare const _default$a: React.NamedExoticComponent<SignUpSessionModalProps>;
731
+ declare const _default$d: React.NamedExoticComponent<SignUpSessionModalProps>;
732
732
 
733
733
  declare type ConsultationSpecialistCardProps = {
734
734
  id: string;
@@ -738,7 +738,7 @@ declare type ConsultationSpecialistCardProps = {
738
738
  onClick?: (id: string) => void;
739
739
  onSignUp?: (id: string) => void;
740
740
  };
741
- declare const _default$9: React.NamedExoticComponent<ConsultationSpecialistCardProps>;
741
+ declare const _default$c: React.NamedExoticComponent<ConsultationSpecialistCardProps>;
742
742
 
743
743
  declare type UserInfoModalProps = {
744
744
  isOpen: boolean;
@@ -775,7 +775,7 @@ declare type ReScheduleProps = {
775
775
  onSubmit?: (message: string) => void;
776
776
  isLoading?: boolean;
777
777
  };
778
- declare const _default$8: React.NamedExoticComponent<ReScheduleProps>;
778
+ declare const _default$b: React.NamedExoticComponent<ReScheduleProps>;
779
779
 
780
780
  declare type ReScheduleSuccessProps = {
781
781
  name: string;
@@ -802,7 +802,7 @@ declare type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElem
802
802
  slides: number[];
803
803
  onDayClick?: (i: number, item: number) => void;
804
804
  };
805
- declare const _default$7: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<DaySliderProps, "key" | keyof JSX$1.IonSlides | keyof React.HTMLAttributes<HTMLIonSlidesElement> | "slides" | "onDayClick"> & React.RefAttributes<HTMLIonSlidesElement>>>;
805
+ declare const _default$a: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<DaySliderProps, "key" | keyof JSX$1.IonSlides | keyof React.HTMLAttributes<HTMLIonSlidesElement> | "slides" | "onDayClick"> & React.RefAttributes<HTMLIonSlidesElement>>>;
806
806
 
807
807
  declare type SpecialistWorkDirectionsPropsType = {
808
808
  workDirections?: string[] | [];
@@ -818,7 +818,7 @@ declare type SpecialistProfileViewCardProps = {
818
818
  onImageClick?: () => void;
819
819
  isLoading?: boolean;
820
820
  };
821
- declare const _default$6: React.NamedExoticComponent<SpecialistProfileViewCardProps>;
821
+ declare const _default$9: React.NamedExoticComponent<SpecialistProfileViewCardProps>;
822
822
 
823
823
  declare type SpecialistAboutProps = {
824
824
  text?: string;
@@ -836,7 +836,7 @@ declare type SpecialistEducationCardProps = {
836
836
  yearEnd?: number | null;
837
837
  showLoader?: boolean;
838
838
  };
839
- declare const _default$5: React.NamedExoticComponent<SpecialistEducationCardProps>;
839
+ declare const _default$8: React.NamedExoticComponent<SpecialistEducationCardProps>;
840
840
 
841
841
  declare type SpecialistStatisticsCardProps = {
842
842
  activeClients?: number;
@@ -856,7 +856,7 @@ declare type BookingScheduleTimeProps = {
856
856
  onClick?: (index: number, item: string) => void;
857
857
  isLoading?: boolean;
858
858
  };
859
- declare const _default$4: React.NamedExoticComponent<BookingScheduleTimeProps>;
859
+ declare const _default$7: React.NamedExoticComponent<BookingScheduleTimeProps>;
860
860
 
861
861
  declare type BookingSpecialistInfoProps = {
862
862
  name: string;
@@ -865,7 +865,7 @@ declare type BookingSpecialistInfoProps = {
865
865
  avatar?: string;
866
866
  isLoading?: boolean;
867
867
  };
868
- declare const _default$3: React.NamedExoticComponent<BookingSpecialistInfoProps>;
868
+ declare const _default$6: React.NamedExoticComponent<BookingSpecialistInfoProps>;
869
869
 
870
870
  declare type SpecialistCardProps = {
871
871
  fullName?: string;
@@ -885,7 +885,7 @@ declare type SpecialistCardProps = {
885
885
  };
886
886
  declare const SpecialistCard: React.FC<SpecialistCardProps>;
887
887
 
888
- declare const _default$2: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
888
+ declare const _default$5: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
889
889
  isError?: boolean | undefined;
890
890
  } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>>;
891
891
 
@@ -903,11 +903,11 @@ declare const PasswordInput: React.ForwardRefExoticComponent<{
903
903
  error?: string | null | undefined;
904
904
  } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
905
905
 
906
- declare const _default$1: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
906
+ declare const _default$4: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
907
907
  isError?: boolean | undefined;
908
908
  } & React.TextareaHTMLAttributes<HTMLTextAreaElement> & React.RefAttributes<HTMLTextAreaElement>>>;
909
909
 
910
- declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
910
+ declare const _default$3: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
911
911
  options: {
912
912
  id: string | number;
913
913
  label: string | number;
@@ -923,4 +923,58 @@ declare type ButtonProps = {
923
923
  } & React.ButtonHTMLAttributes<HTMLButtonElement>;
924
924
  declare const CustomButton: React.FC<ButtonProps>;
925
925
 
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 };
926
+ declare enum CheckboxTypes {
927
+ WITH_ICON = "with-icon",
928
+ TAG = "tag",
929
+ LIST = "list"
930
+ }
931
+ declare type CustomCheckboxProps = {
932
+ type: CheckboxTypes;
933
+ value?: ReactText;
934
+ label?: string;
935
+ icon?: ReactElement;
936
+ name?: string;
937
+ className?: string;
938
+ defaultChecked?: boolean;
939
+ isCheckbox?: boolean;
940
+ onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
941
+ };
942
+ declare const _default$2: React.MemoExoticComponent<React.ForwardRefExoticComponent<CustomCheckboxProps & React.RefAttributes<HTMLInputElement>>>;
943
+
944
+ declare type CheckboxListItem = {
945
+ id: ReactText;
946
+ label: string;
947
+ icon?: ReactElement;
948
+ isFavorite?: boolean;
949
+ };
950
+ declare type CheckboxListCategory = {
951
+ name: string;
952
+ items: CheckboxListItem[];
953
+ };
954
+ declare type CheckboxListProps = {
955
+ type: CheckboxTypes;
956
+ items: CheckboxListItem[];
957
+ allItems?: CheckboxListCategory[];
958
+ selected?: ReactText[];
959
+ onChange?: (id: ReactText, checked: boolean) => void;
960
+ name: string;
961
+ moreLabel?: string;
962
+ title?: string;
963
+ className?: string;
964
+ };
965
+ declare const _default$1: React.NamedExoticComponent<CheckboxListProps>;
966
+
967
+ declare type BookingHeaderProps = {
968
+ title?: string;
969
+ subTitle?: string;
970
+ isLoading?: boolean;
971
+ onClick?: () => void;
972
+ };
973
+ declare const ChevronHeader: React.FC<BookingHeaderProps>;
974
+
975
+ declare type ProgressBarProps = {
976
+ progress: number;
977
+ };
978
+ declare const _default: React.NamedExoticComponent<ProgressBarProps>;
979
+
980
+ export { AppFooter, AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, _default$7 as BookingScheduleTime, _default$6 as BookingSpecialistInfo, Button, CancelSession, _default$q as ChatListItem, _default$o as ChatListSkeleton, _default$p as ChatMessage, ChatMessageSkeleton, _default$1 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$h as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$e as ConsultationModal, _default$c as ConsultationSpecialistCard, Container, ContentCard, CustomButton, _default$2 as CustomCheckbox, _default$3 as CustomSelect, _default$4 as CustomTextarea, DatePicker, _default$a as DaySlider, DayToRender, _default$8 as EducationCard, _default$n as EmptyChatList, EmptyChatMessages, _default$f as EmptyConsultations, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$u as LetterAvatar, ListButton, ListSelect, LouseConnect, _default$r as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$t as PersonDateTimeCard, _default$9 as ProfileView, _default as ProgressBar, Range, _default$b as ReSchedule, ReScheduleSuccess, RoundButton, RowSelect, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$s as SelectImpressionEmoji, _default$g as SignUpSessionButton, _default$d as SignUpSessionModal, Skeleton, SpecialistAbout, SpecialistCard, _default$l as SpecialistEducationCard, _default$k as SpecialistProfileViewCard, SpecialistStatisticsCard, SpecialistWorkDirections, StatisticsScroll, StatusTag, SwitchDeviceCard, TabBar, Tag, _default$5 as TextInput, _default$m as Textarea, TherapistCard, TherapistInformationComponent, Toggle, TooltipComponent, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$i as VideoCallInfo, _default$j as VideoPlayer, WorkDirections, YourLocalTimeBlock, decOfNum, toast };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.32.1",
3
+ "version": "3.33.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",