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
|
|
4
|
+
export interface TooltipPropsTypes extends TippyProps {
|
|
5
5
|
color?: 'white' | 'dark-blue';
|
|
6
6
|
}
|
|
7
|
-
declare const Tooltip: React.FC<
|
|
7
|
+
declare const Tooltip: React.FC<TooltipPropsTypes>;
|
|
8
8
|
export default Tooltip;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -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;
|