material-form-builder
Version:
FormBuilder For React.js
13 lines (12 loc) • 411 B
TypeScript
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;
}