feat: implement free-form resume page formats, resolves #2991

This commit is contained in:
Amruth Pillai
2026-05-08 11:28:18 +02:00
parent 9cbb30d3ba
commit 2cd774dab7
94 changed files with 860 additions and 443 deletions
@@ -94,7 +94,7 @@ function PageSectionForm() {
hasError={field.state.meta.isTouched && field.state.meta.errors.length > 0}
>
<FormLabel>
<Trans context="Page Format (A4, Letter)">Format</Trans>
<Trans context="Page Format (A4, Letter, Free-form)">Format</Trans>
</FormLabel>
<FormControl
render={
@@ -102,6 +102,7 @@ function PageSectionForm() {
options={[
{ value: "a4", label: t`A4` },
{ value: "letter", label: t`Letter` },
{ value: "free-form", label: t`Free-form` },
]}
value={field.state.value}
onValueChange={(value) => {