Interface FieldNameInputProps

interface FieldNameInputProps {
    value: string;
    className?: string;
    placeholder?: string;
    editable?: boolean;
    required?: boolean;
    autoFocus?: boolean;
    onChange?: (value: string) => void;
    onEnter?: (value: string) => void;
    onEsc?: (value: string) => void;
    onFocus?: (value: string) => void;
    onBlur?: (value: string) => void;
}

Properties

value: string
className?: string
placeholder?: string
editable?: boolean
required?: boolean
autoFocus?: boolean
onChange?: (value: string) => void
onEnter?: (value: string) => void
onEsc?: (value: string) => void
onFocus?: (value: string) => void
onBlur?: (value: string) => void