UNPKG

@linzjs/step-ag-grid

Version:

[![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release) > Reusable [ag-grid](https://www.ag-grid.com/) component for LINZ / Toitū te whenua.

13 lines (12 loc) 598 B
import { ReactElement } from 'react'; import { TextInputValidatorProps } from '../../utils/textValidator'; import { GridBaseRow } from '../Grid'; import { CellEditorCommon } from '../GridCell'; export interface GridSubComponentTextAreaProps<TData extends GridBaseRow> extends TextInputValidatorProps<TData>, CellEditorCommon { placeholder?: string; width?: string | number; defaultValue: string; className?: string; helpText?: string; } export declare const GridFormSubComponentTextArea: <TData extends GridBaseRow>(props: GridSubComponentTextAreaProps<TData>) => ReactElement;