@mindly/ui-components 3.22.2 → 3.22.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.
@@ -113,3 +113,5 @@ export { default as ReSchedule } from './lib/Consultations/ReSchedule';
113
113
  export * from './lib/Consultations/ReSchedule';
114
114
  export { default as ReScheduleSuccess } from './lib/Consultations/ReScheduleSuccess';
115
115
  export * from './lib/Consultations/ReScheduleSuccess';
116
+ export { default as TooltipComponent } from './lib/TooltipComponent';
117
+ export * from './lib/TooltipComponent';
@@ -0,0 +1,9 @@
1
+ import { FC } from 'react';
2
+ declare type TooltipComponentProps = {
3
+ text: string;
4
+ alignment?: 'center' | 'center-left' | 'left' | 'center-right' | 'right';
5
+ widthPx?: number;
6
+ makeVisible?: boolean;
7
+ };
8
+ export declare const TooltipComponent: FC<TooltipComponentProps>;
9
+ export {};
@@ -0,0 +1,10 @@
1
+ declare type TooltipWrapperProps = {
2
+ makeVisible?: boolean;
3
+ };
4
+ export declare const TooltipWrapper: import("styled-components").StyledComponent<"div", any, TooltipWrapperProps, never>;
5
+ declare type TooltipContentType = {
6
+ alignment: 'center' | 'center-left' | 'left' | 'center-right' | 'right';
7
+ widthPx?: number;
8
+ };
9
+ export declare const TooltipContent: import("styled-components").StyledComponent<"div", any, TooltipContentType, never>;
10
+ export {};
@@ -0,0 +1 @@
1
+ export { TooltipComponent as default } from './TooltipComponent';
package/dist/index.d.ts CHANGED
@@ -813,4 +813,12 @@ declare type ReScheduleSuccessProps = {
813
813
  };
814
814
  declare const ReScheduleSuccess: FC<ReScheduleSuccessProps>;
815
815
 
816
- export { AppFooter, AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, Button, CancelSession, _default$f as ChatListItem, _default$d as ChatListSkeleton, _default$e as ChatMessage, ChatMessageSkeleton, _default$6 as ConsultationCard, ConsultationCardDeprecated, ConsultationCardDeprecatedProps, ConsultationCardDeprecatedSkeleton, ConsultationCardProps, ConsultationCardType, _default$3 as ConsultationModal, _default$1 as ConsultationSpecialistCard, Container, ContentCard, DatePicker, DateTimeType, DayOfWeeks, DayToRender, _default$c as EmptyChatList, EmptyChatMessages, _default$4 as EmptyConsultations, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageWithFallback, ImpressionEmojiEnum, Input, _default$j as LetterAvatar, ListButton, ListSelect, LouseConnect, _default$g as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, _default$i as PersonDateTimeCard, Range, _default as ReSchedule, ReScheduleSuccess, RoundButton, RowSelect, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$h as SelectImpressionEmoji, _default$5 as SignUpSessionButton, _default$2 as SignUpSessionModal, Skeleton, SpecialistAbout, _default$a as SpecialistEducationCard, SpecialistInfoModal, _default$9 as SpecialistProfileViewCard, SpecialistStatisticsCard, SpecialistWorkDirections, StatusTag, SwitchDeviceCard, TabBar, Tag, _default$b as Textarea, TherapistCard, TherapistInformationComponent, Toggle, UpdatesCard, UsersPsychologistScrollList, _default$7 as VideoCallInfo, _default$8 as VideoPlayer, YourLocalTimeBlock, toast };
816
+ declare type TooltipComponentProps = {
817
+ text: string;
818
+ alignment?: 'center' | 'center-left' | 'left' | 'center-right' | 'right';
819
+ widthPx?: number;
820
+ makeVisible?: boolean;
821
+ };
822
+ declare const TooltipComponent: FC<TooltipComponentProps>;
823
+
824
+ export { AppFooter, AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, Button, CancelSession, _default$f as ChatListItem, _default$d as ChatListSkeleton, _default$e as ChatMessage, ChatMessageSkeleton, _default$6 as ConsultationCard, ConsultationCardDeprecated, ConsultationCardDeprecatedProps, ConsultationCardDeprecatedSkeleton, ConsultationCardProps, ConsultationCardType, _default$3 as ConsultationModal, _default$1 as ConsultationSpecialistCard, Container, ContentCard, DatePicker, DateTimeType, DayOfWeeks, DayToRender, _default$c as EmptyChatList, EmptyChatMessages, _default$4 as EmptyConsultations, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageWithFallback, ImpressionEmojiEnum, Input, _default$j as LetterAvatar, ListButton, ListSelect, LouseConnect, _default$g as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, _default$i as PersonDateTimeCard, Range, _default as ReSchedule, ReScheduleSuccess, RoundButton, RowSelect, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$h as SelectImpressionEmoji, _default$5 as SignUpSessionButton, _default$2 as SignUpSessionModal, Skeleton, SpecialistAbout, _default$a as SpecialistEducationCard, SpecialistInfoModal, _default$9 as SpecialistProfileViewCard, SpecialistStatisticsCard, SpecialistWorkDirections, StatusTag, SwitchDeviceCard, TabBar, Tag, _default$b as Textarea, TherapistCard, TherapistInformationComponent, Toggle, TooltipComponent, UpdatesCard, UsersPsychologistScrollList, _default$7 as VideoCallInfo, _default$8 as VideoPlayer, YourLocalTimeBlock, toast };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.22.2",
3
+ "version": "3.22.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",