Interface UmbBlockEditorCustomViewProperties<LayoutType, BlockType>

interface UmbBlockEditorCustomViewProperties<LayoutType, BlockType> {
    blockType?: BlockType;
    config?: Partial<UmbBlockEditorCustomViewConfiguration>;
    content?: UmbBlockDataType;
    contentInvalid?: boolean;
    contentUdi?: string;
    icon?: string;
    index?: number;
    label?: string;
    layout?: LayoutType;
    manifest?: ManifestBlockEditorCustomView;
    settings?: UmbBlockDataType;
    settingsInvalid?: boolean;
}

Type Parameters

Hierarchy (view full)

Properties

blockType?: BlockType
contentInvalid?: boolean
contentUdi?: string
icon?: string
index?: number
label?: string
layout?: LayoutType
settings?: UmbBlockDataType
settingsInvalid?: boolean
""