Skip to content

Commit

Permalink
feat (Typescript): Add typescript support , work done by @Metavirulent,…
Browse files Browse the repository at this point in the history
… just correcting for #PR24
  • Loading branch information
Jason Finch committed Apr 18, 2018
1 parent 0433a5e commit 1d25cbb
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 3 deletions.
67 changes: 67 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
import * as React from "react";

export type Position =
| "top"
| "top-start"
| "top-end"
| "bottom"
| "bottom-start"
| "bottom-end"
| "left"
| "left-start"
| "left-end"
| "right"
| "right-start"
| "right-end";
export type Trigger = "mouseenter" | "focus click" | "manual";
export type Animation = "shift" | "perspective" | "fade scale" | "none";
export type Size = "small" | "regular" | "big";
export type Theme = "dark" | "light" | "transparent";

export interface TooltipProps {
title?: string;
disabled?: boolean;
open?: boolean;
useContext?: boolean;
onRequestClose?: () => void;
position?: Position;
trigger?: Trigger;
tabIndex?: number;
interactive?: boolean;
interactiveBorder?: number;
delay?: number;
hideDelay?: number;
animation?: Animation;
arrow?: boolean;
arrowSize?: Size;
animateFill?: boolean;
duration?: number;
hideDuration?: number;
distance?: number;
offset?: number;
hideOnClick?: boolean | "persistent";
multiple?: boolean;
followCursor?: boolean;
inertia?: boolean;
transitionFlip?: boolean;
popperOptions?: any;
html?: React.ReactElement<any>;
unmountHTMLWhenHide?: boolean;
size?: Size;
sticky?: boolean;
stickyDuration?: boolean;

This comment has been minimized.

Copy link
@justincorrigible

justincorrigible May 20, 2021

👍 fix for this typo #133

beforeShown?: () => void;
shown?: () => void;
beforeHidden?: () => void;
hidden?: () => void;
theme?: Theme;
className?: string;
style?: React.CSSProperties;
}

export class Tooltip extends React.Component<TooltipProps> {}

export declare function withTooltip<P>(
component: React.ComponentType<P>,
options: TooltipProps
);
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
"start": "react-scripts start"
},
"dependencies": {
"popper.js": "^1.11.1"
}
}
"popper.js": "^1.11.1",
"@types/react": "*"
},
"typings": "./index.d.ts"
}

0 comments on commit 1d25cbb

Please sign in to comment.