UNPKG

formgen-react

Version:

Formula generator with JSON for react. UI Fabric controls are used for rendering

20 lines (19 loc) 708 B
import { FormBaseInput, IFormBaseInputProps } from '../../formBaseInput/FormBaseInput'; import { IFormContext } from '../../form/Form.types'; import { IFormBaseInputState } from '../../formBaseInput/FormBaseInput.types'; import { ILabelProps } from 'office-ui-fabric-react'; /** * Info Text input for the Form. */ export declare class FormInfoText extends FormBaseInput<ILabelProps, IFormBaseInputProps, IFormBaseInputState> { private listDataStore; constructor(props: IFormBaseInputProps, context: IFormContext); /** * Render a row of the grid. */ private _onRenderCell(item, index); /** * Render a Fabric TextBox */ render(): JSX.Element; }