UI state data accessible by UIState store.

type UIStateData = {
    activeWindow: Window;
    dragging: boolean;
    headerButtons: HeaderButton[];
    minimized: boolean;
    resizing: boolean;
}
Index

Properties

activeWindow: Window

Active browser window for the app.

dragging: boolean

App dragging state.

headerButtons: HeaderButton[]

Current app header buttons.

minimized: boolean

App minimized state.

resizing: boolean

App resizing state.