@timlassiter11/yatl
    Preparing search index...

    Interface InputEditorOptions<T>

    interface InputEditorOptions<T extends object = UnspecifiedRecord> {
        canEdit?: (field: NestedKeyOf<T>, row: T) => boolean;
        max?: string | number;
        maxlength?: number;
        min?: string | number;
        minlength?: number;
        pattern?: string;
        placeholder?: string;
        step?: number;
        type?: InputType;
    }

    Type Parameters

    Hierarchy

    • BaseEditorOptions<T>
      • InputEditorOptions
    Index

    Properties

    canEdit?: (field: NestedKeyOf<T>, row: T) => boolean
    max?: string | number
    maxlength?: number
    min?: string | number
    minlength?: number
    pattern?: string
    placeholder?: string
    step?: number
    type?: InputType