Interface OnRenderTabParams

interface OnRenderTabParams {
    app: any;
    data: any;
    element: HTMLElement;
    isFullRender: boolean;
    tabContentsElement: HTMLElement;
}

Hierarchy (view full)

Properties

app: any

The sheet application instance.

data: any

The item sheet context which is typically passed to the handlebars template

element: HTMLElement

The document sheet application element. This is the entire application window, including the header.

isFullRender: boolean

Denotes whether this is a full/forced render or a change detection cycle. For non-svelte content, this field allows content to react to partial re-rendering.

tabContentsElement: HTMLElement