Interface OnContentReadyParams

interface OnContentReadyParams {
    app: any;
    content: string;
    data: any;
    element: HTMLElement;
    isFullRender: boolean;
}

Hierarchy (view full)

Properties

app: any

The sheet application instance.

content: string

An HTML string that is ready to be rendered to the sheet.

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.