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.

11 lines (10 loc) 469 B
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;