Variable WIDGET_DIALOGSConst

WIDGET_DIALOGS: {
    contextMenu: (
        ctx: WidgetContext,
        anchor?: HTMLElement,
        opts?: ContextMenuOptions,
    ) => PanelHandle;
    drawingProperties: (
        ctx: WidgetContext,
        anchor?: HTMLElement,
        opts?: DrawingPropertiesOptions,
    ) => PanelHandle;
    indicatorPicker: (
        ctx: WidgetContext,
        anchor?: HTMLElement,
        opts?: IndicatorPickerOptions,
    ) => PanelHandle;
    indicatorSettings: (
        ctx: WidgetContext,
        anchor?: HTMLElement,
        opts?: IndicatorSettingsOptions,
    ) => PanelHandle;
    levelEditor: (
        ctx: WidgetContext,
        anchor?: HTMLElement,
        opts?: LevelEditorOptions,
    ) => PanelHandle;
    settings: (
        ctx: WidgetContext,
        _anchor?: HTMLElement,
        opts?: SettingsDialogOptions,
    ) => PanelHandle;
    textEditor: (
        ctx: WidgetContext,
        _anchor?: HTMLElement,
        opts?: TextEditorOptions,
    ) => TextEditorHandle;
} = ...

The seven mounts under the names the shell's registry knows them by.

Type declaration