UNPKG

@thetechcompany/react-gantt-timeline

Version:

[![npm](https://img.shields.io/npm/v/react-gantt-timeline.svg?style=flat-square)](http://npm.im/react-gantt-timeline) [![MIT License](https://img.shields.io/npm/l/react-list.svg?style=flat-square)](http://opensource.org/licenses/MIT) [![Travis](https://tr

26 lines (25 loc) 682 B
import { Component } from 'react'; export default class ContentEditable extends Component<any, any> { private textInput; isFocus: boolean; constructor(props: any); componentDidUpdate(prevProps: any, prevState: any): void; onFocus: () => void; onBlur: () => void; handleKey: (e: { keyCode: any; which: any; }) => void; finishEditing: () => void; handleChange: (e: { target: { value: any; }; }) => void; renderDiv: () => JSX.Element; shouldComponentUpdate(nextProps: { value: any; }, nextState: any): boolean; renderEditor: () => JSX.Element; render(): JSX.Element; }