Interface TasksPanelParams

interface TasksPanelParams {
    container?: HTMLElement;
    runner: SDKTaskRunner;
    storageKey?: string;
    visible?: boolean;
}

Properties

container?: HTMLElement

DOM container; defaults to document.body.

The SDKTaskRunner whose currently-registered SDKTasks this panel surfaces. Doubles as the WeakMap key for TasksPanel.openFor idempotence — one panel per runner.

storageKey?: string

localStorage key for persisting drag position + closed state. Defaults to "xkt-tasks-panel".

visible?: boolean

Show on construction (default true).