mirror of https://github.com/eyhc1/rendercv.git
engineeringresumes: include `date_and_location_width` setting
This commit is contained in:
parent
1ad6370c19
commit
5008837682
|
@ -1,5 +1,4 @@
|
||||||
from typing import Literal
|
from typing import Literal
|
||||||
from typing import ClassVar as NotUsedInput
|
|
||||||
|
|
||||||
import pydantic
|
import pydantic
|
||||||
import pydantic_extra_types.color as pydantic_color
|
import pydantic_extra_types.color as pydantic_color
|
||||||
|
@ -23,15 +22,13 @@ class EntryAreaMarginsForEngineeringresumes(EntryAreaMargins):
|
||||||
)
|
)
|
||||||
|
|
||||||
vertical_between: LaTeXDimension = pydantic.Field(
|
vertical_between: LaTeXDimension = pydantic.Field(
|
||||||
default="0.1 cm",
|
default="0.15 cm",
|
||||||
title="Vertical Margin Between Entry Areas",
|
title="Vertical Margin Between Entry Areas",
|
||||||
description=(
|
description=(
|
||||||
"The vertical margin between entry areas. The default value is 0.1 cm."
|
"The vertical margin between entry areas. The default value is 0.1 cm."
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
date_and_location_width: NotUsedInput
|
|
||||||
|
|
||||||
|
|
||||||
class HighlightsAreaMarginsForEngineeringresumes(HighlightsAreaMargins):
|
class HighlightsAreaMarginsForEngineeringresumes(HighlightsAreaMargins):
|
||||||
"""This class is a data model for the highlights area margins."""
|
"""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."
|
" 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",
|
default="left-aligned",
|
||||||
title="Text Alignment",
|
title="Text Alignment",
|
||||||
description="The alignment of the text. The default value is left-aligned.",
|
description="The alignment of the text. The default value is left-aligned.",
|
||||||
|
|
Loading…
Reference in New Issue