engineeringresumes: include `date_and_location_width` setting

This commit is contained in:
Sina Atalay 2024-04-15 01:03:15 +03:00
parent 1ad6370c19
commit 5008837682
1 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,4 @@
from typing import Literal
from typing import ClassVar as NotUsedInput
import pydantic
import pydantic_extra_types.color as pydantic_color
@ -23,15 +22,13 @@ class EntryAreaMarginsForEngineeringresumes(EntryAreaMargins):
)
vertical_between: LaTeXDimension = pydantic.Field(
default="0.1 cm",
default="0.15 cm",
title="Vertical Margin Between Entry Areas",
description=(
"The vertical margin between entry areas. The default value is 0.1 cm."
),
)
date_and_location_width: NotUsedInput
class HighlightsAreaMarginsForEngineeringresumes(HighlightsAreaMargins):
"""This class is a data model for the highlights area margins."""
@ -112,7 +109,9 @@ class EngineeringresumesThemeOptions(ThemeOptions):
" in the header. The default value is false."
),
)
text_alignment: Literal["left-aligned", "justified", "justified-with-no-hyphenation"] = pydantic.Field(
text_alignment: Literal[
"left-aligned", "justified", "justified-with-no-hyphenation"
] = pydantic.Field(
default="left-aligned",
title="Text Alignment",
description="The alignment of the text. The default value is left-aligned.",