Interface PanelTeleportObject

interface PanelTeleportObject {
    breakpoints?: {
        [key: string]: number;
    };
    showAppbarButton?: boolean;
    showHeader?: boolean;
    target?: string | Element;
}

Properties

breakpoints?: {
    [key: string]: number;
}

Custom class breakpoints for the teleported panel.

PanelTeleportObject

showAppbarButton?: boolean

Whether or not opening/closing the panel will show/hide an appbar button for it. Will only apply to temporary appbar buttons.

PanelTeleportObject

showHeader?: boolean

Whether or not to show the panel header.

PanelTeleportObject

target?: string | Element

The element to teleport the panel to. Can be the actual element or a query selector string.

PanelTeleportObject