@timlassiter11/yatl
    Preparing search index...

    Interface SelectEditorOptions<T>

    interface SelectEditorOptions<T extends object = UnspecifiedRecord> {
        canEdit?: (field: NestedKeyOf<T>, row: T) => boolean;
        labelRenderer?: (value: unknown) => [string, string];
        options?: TemplateResult | [string, string][];
    }

    Type Parameters

    Hierarchy

    • BaseEditorOptions<T>
      • SelectEditorOptions
    Index

    Properties

    canEdit?: (field: NestedKeyOf<T>, row: T) => boolean
    labelRenderer?: (value: unknown) => [string, string]
    options?: TemplateResult | [string, string][]