labsense-ui-kit 1.1.50 → 1.1.52

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.
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+ import { IconProps } from '../Icons';
3
+ interface ITooltipProps {
4
+ icon: IconProps;
5
+ infoIcon?: IconProps;
6
+ infoText: string;
7
+ infoText2?: string;
8
+ infoText3?: string;
9
+ infoText4?: string;
10
+ tooltipCSS?: {
11
+ background?: string;
12
+ color?: string;
13
+ gap?: string;
14
+ minWidth?: string;
15
+ position?: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
16
+ tooltipTop?: string;
17
+ fontSize?: string;
18
+ fontWeight?: string;
19
+ };
20
+ }
21
+ declare const IconTooltip: React.FC<ITooltipProps>;
22
+ export default IconTooltip;
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+ import { IconProps } from '../Icons';
3
+ interface ITooltipProps {
4
+ icon: IconProps;
5
+ infoIcon?: IconProps;
6
+ infoText: string;
7
+ infoText2?: string;
8
+ infoText3?: string;
9
+ infoText4?: string;
10
+ tooltipCSS?: {
11
+ background?: string;
12
+ color?: string;
13
+ gap?: string;
14
+ minWidth?: string;
15
+ position?: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
16
+ tooltipTop?: string;
17
+ fontSize?: string;
18
+ fontWeight?: string;
19
+ };
20
+ }
21
+ declare const InfoTooltip: React.FC<ITooltipProps>;
22
+ export default InfoTooltip;
@@ -1,2 +1,3 @@
1
1
  import Badge from './Badge';
2
- export { Badge };
2
+ import IconTooltip from './IconTooltip';
3
+ export { Badge, IconTooltip };
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Badge } from './Badge';
1
+ import { Badge, IconTooltip } from './Badge';
2
2
  import { Breadcrumbs, BreadcrumbDetail } from './Breadcrums';
3
3
  import { Button, ButtonProps, ButtonLoaderProps } from './Buttons';
4
4
  import { ButtonCarousel } from './Carousel';
@@ -17,7 +17,7 @@ import { InternalTabs, Tabs, TabContentProps } from './Tabs';
17
17
  import { ThemeColorsInterface } from './Themes';
18
18
  import { colorVariables, themes } from './Themes/Colors';
19
19
  import { convertToEpoch, formatDate, formatTimestamp, formatCalendarDateTime, timeAgo, formatEpochToIST, convertEpochToDateString, convertEpochToOnlyDate, getSystemTimezoneAbbreviation, timeStringToSeconds } from './Utils/Date&Time';
20
- export { Badge };
20
+ export { Badge, IconTooltip };
21
21
  export { Breadcrumbs, BreadcrumbDetail };
22
22
  export { Button, ButtonProps, ButtonLoaderProps };
23
23
  export { ButtonCarousel };