@mindly/ui-components 3.22.1 → 3.22.3

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';
@@ -5,6 +5,7 @@ declare type SpecialistInfoModalProps = {
5
5
  name: string;
6
6
  avatar?: string;
7
7
  sessions: number;
8
+ unused_balance?: number;
8
9
  onMessage?: (id: string) => void;
9
10
  onBuy?: (id: string) => void;
10
11
  onProfile?: (id: string) => void;
@@ -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';