IWidgetStatus
Defined in: src/widgets/base.ts:215
Runtime snapshot of a widget's structure, used by the automated testing system. Returned by Widget.getWidgetStatus.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
description | string | null | Free-form description of the widget's current state. | src/widgets/base.ts:225 |
error | string | null | Validation error message; null means the widget is in a valid state. | src/widgets/base.ts:227 |
events | IEventType[] | Events fired by this widget. | src/widgets/base.ts:223 |
hitAreas | object | Named interactive regions: region name → bounding rectangle. | src/widgets/base.ts:219 |
parts | object | Named UI parts: part name → root DOM Element. | src/widgets/base.ts:217 |
shortcuts | object | Keyboard shortcuts: key combo string → human-readable description. | src/widgets/base.ts:221 |