Membrane React - v0.2.1
    Preparing search index...

    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;
    }
    Index

    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