Interface: StatusItem
Defined in: packages/sdk/src/types.ts:316
A widget in the status bar (the strip along the bottom of the window).
Properties
id
id: string;Defined in: packages/sdk/src/types.ts:318
Unique id for this status item.
alignment
alignment: "left" | "right";Defined in: packages/sdk/src/types.ts:320
Which end of the status bar this item sits at.
priority?
optional priority?: number;Defined in: packages/sdk/src/types.ts:322
Sort order within its alignment group. Lower sorts first. Defaults to 0.
tooltip?
optional tooltip?: string;Defined in: packages/sdk/src/types.ts:330
Tooltip shown on hover over the entire status item. The host renders a custom-styled popup (not the browser's native title tooltip). For items that need per-button or reactive tooltips, omit this and manage tooltips inside the component instead (core extensions use <Tooltip> from the internal barrel; external extensions may use the native title attribute).
component
component: ComponentType;Defined in: packages/sdk/src/types.ts:332
The React component (renders its own content; no props).