All files / src/shared/HFInputs/HFRichInput richInput.types.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

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",
}