UNPKG

material-form-builder

Version:
13 lines (12 loc) 411 B
import { TextFieldProps } from '@mui/material'; import { BaseInput } from '../../types/input.base'; export type MaskInputValueType = string | null; export interface MaskInputProps extends BaseInput<MaskInputValueType>, Omit<TextFieldProps, 'defaultValue' | 'ref'> { type: 'mask'; pattern: string; /** * @default _ */ char?: string; defaultValue?: MaskInputValueType; }