@linzjs/step-ag-grid
Version:
[](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
TypeScript
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;