UNPKG

react-widgets-up

Version:

An à la carte set of polished, extensible, and accessible inputs built for React

28 lines 961 B
import * as React from 'react'; export interface SlideDownTransitionProps { in: boolean; innerClassName?: string; dropUp?: boolean; onExit?: () => void; onExited?: () => void; onEntering?: () => void; onEntered?: () => void; className?: string; children: React.ReactElement<{ className?: string; }>; } declare class SlideDownTransition extends React.Component<SlideDownTransitionProps> { nodeRef: React.RefObject<HTMLElement | null>; getHeight(container: HTMLElement): number; setContainerHeight: () => void; clearContainerHeight: (elem: HTMLElement) => void; handleEntered: () => void; handleEntering: () => void; handleExit: () => void; handleExited: () => void; handleTransitionEnd: (_: HTMLElement, done: () => void) => void; render(): React.JSX.Element; } export default SlideDownTransition; //# sourceMappingURL=SlideDownTransition.d.ts.map