-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Milestone
Description
We currently don’t handle RepeatableComponent or GroupComponent in the visitor translation. This follow‑on issue should add support for these component types, with a preference for translating them at the top level (instead of recursively handling each subcomponent individually) if feasible.
Preferred translation behavior
RepeatableComponent→ render as HTML unordered list (<ul><li>…</li></ul>)GroupComponent→ render as a group of key/value pairs in HTMLRepeatableComponentcontaining aGroupComponent→ render as an HTML table
Acceptance criteria
- Rendering exists for
RepeatableComponentandGroupComponentin the visitor translation output - Top‑level translation approach is used if it can cover the above behaviors cleanly
- Nested
RepeatableComponent+GroupComponentcase produces a table layout - Output is predictable and consistent with existing visitor HTML conventions
Follows on from the PR #3518
Reactions are currently unavailable