Interface AddComponentOptions<T>

interface AddComponentOptions<T> {
    component: string;
    id: string;
    location?: number[];
    maximumHeight?: number;
    maximumWidth?: number;
    minimumHeight?: number;
    minimumWidth?: number;
    params?: T;
    position?: {
        direction: Direction;
        referencePanel: string;
    };
    priority?: Low | High | Normal;
    size?: number;
    snap?: boolean;
}

Type Parameters

Hierarchy (view full)

Properties

component: string
id: string
location?: number[]
maximumHeight?: number
maximumWidth?: number
minimumHeight?: number
minimumWidth?: number
params?: T
position?: {
    direction: Direction;
    referencePanel: string;
}

Type declaration

priority?: Low | High | Normal
size?: number
snap?: boolean

Generated using TypeDoc