digitinary-ui 1.0.242 → 1.0.243

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.
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
2
  import { TippyProps } from '@tippyjs/react';
3
3
  import './style.scss';
4
- interface TooltipProps extends TippyProps {
4
+ export interface TooltipPropsTypes extends TippyProps {
5
5
  color?: 'white' | 'dark-blue';
6
6
  }
7
- declare const Tooltip: React.FC<TooltipProps>;
7
+ declare const Tooltip: React.FC<TooltipPropsTypes>;
8
8
  export default Tooltip;
@@ -203,6 +203,7 @@ export type StepperProps = {
203
203
  stepsGap?: string;
204
204
  };
205
205
  export type { TaskTableProps } from '../components/TableV2/types';
206
+ export type { TooltipPropsTypes } from '../components/Tooltip/Tooltip';
206
207
  type singleTimeRecord = {
207
208
  status?: string;
208
209
  date?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digitinary-ui",
3
- "version": "1.0.242",
3
+ "version": "1.0.243",
4
4
  "description": "Digitinary UI Library",
5
5
  "author": "Digitinary Company",
6
6
  "repository": {