@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.
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/cjs/types/lib/Consultations/SpecialistInfoModal/SpecialistInfoModal.d.ts +1 -0
- package/dist/cjs/types/lib/TooltipComponent/TooltipComponent.d.ts +9 -0
- package/dist/cjs/types/lib/TooltipComponent/TooltipComponent.style.d.ts +10 -0
- package/dist/cjs/types/lib/TooltipComponent/index.d.ts +1 -0
- package/dist/esm/index.js +5 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/esm/types/lib/Consultations/SpecialistInfoModal/SpecialistInfoModal.d.ts +1 -0
- package/dist/esm/types/lib/TooltipComponent/TooltipComponent.d.ts +9 -0
- package/dist/esm/types/lib/TooltipComponent/TooltipComponent.style.d.ts +10 -0
- package/dist/esm/types/lib/TooltipComponent/index.d.ts +1 -0
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
|
@@ -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';
|