Type Alias: HintsState
ts
type HintsState = {
activeId?: string;
isVisible: boolean;
mounted: MountedHint[];
overlayRect?: StageRect;
popover?: PopoverRenderModel;
popoverAnchor?: Element | StageRect;
refreshTick: number;
};Properties
| Property | Type | Description |
|---|---|---|
activeId? | string | - |
isVisible | boolean | - |
mounted | MountedHint[] | - |
overlayRect? | StageRect | The active element's rect while the overlay is shown. |
popover? | PopoverRenderModel | The open hint's popover, or undefined. |
popoverAnchor? | Element | StageRect | What the popover points at: the element (overlay mode) or the beacon. |
refreshTick | number | - |