Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | export type ICON_STATE = "default" | "active" | "disabled";
/**
* "form": bordered fixed-height input box (the default, e.g. PayBuilder About).
* "document": borderless long-form surface that grows with its content (legal
* documents). The form box constraints are omitted — not counter-declared — so
* page-level styles never race the shared component in the cascade.
*/
export type RichInputVariant = "form" | "document";
export enum EditorMode {
SINGLE_LINE = "single_line",
MULTI_LINE = "multi_line",
}
|