fix: make nested lists work in PDF renderer, resolves #2993

This commit is contained in:
Amruth Pillai
2026-05-08 12:29:16 +02:00
parent bf1a540fd1
commit 296f7951ec
63 changed files with 277 additions and 714 deletions
@@ -0,0 +1,6 @@
export type BuilderPreviewPageLayout = "horizontal" | "vertical";
export const DEFAULT_BUILDER_PREVIEW_PAGE_LAYOUT: BuilderPreviewPageLayout = "horizontal";
export const getNextBuilderPreviewPageLayout = (pageLayout: BuilderPreviewPageLayout): BuilderPreviewPageLayout =>
pageLayout === "horizontal" ? "vertical" : "horizontal";