@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.
11 lines (10 loc) • 469 B
TypeScript
import './TextInputFormatted.scss';
import { DetailedHTMLProps, InputHTMLAttributes, ReactElement } from 'react';
export interface LuiTextInputProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
value: string;
helpText?: string;
error?: ReactElement | string | boolean | null;
formatted?: string;
allowTabToSave?: boolean;
}
export declare const TextInputFormatted: (props: LuiTextInputProps) => ReactElement;