@yamlresume/core 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -203,7 +203,7 @@ declare const FLUENCY_OPTIONS: readonly ["Elementary Proficiency", "Limited Work
|
|
|
203
203
|
/** The options for the latex layout font size. */
|
|
204
204
|
declare const LATEX_FONT_SIZE_OPTIONS: readonly ["10pt", "11pt", "12pt"];
|
|
205
205
|
/** The options for the HTML layout font size. */
|
|
206
|
-
declare const HTML_FONT_SIZE_OPTIONS: readonly ["
|
|
206
|
+
declare const HTML_FONT_SIZE_OPTIONS: readonly ["14px", "15px", "16px", "17px", "18px", "19px", "20px"];
|
|
207
207
|
/** Defines identifiers for the available HTML layout templates. */
|
|
208
208
|
declare const HTML_TEMPLATE_OPTIONS: readonly ["calm"];
|
|
209
209
|
/** The options for the latex layout fontspec numbers style. */
|
|
@@ -2483,7 +2483,7 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2483
2483
|
}, z.core.$strip>>>;
|
|
2484
2484
|
}, z.core.$strip>>>;
|
|
2485
2485
|
typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2486
|
-
fontSize: z.ZodOptional<z.ZodNullable<z.ZodType<"
|
|
2486
|
+
fontSize: z.ZodOptional<z.ZodNullable<z.ZodType<"14px" | "15px" | "16px" | "17px" | "18px" | "19px" | "20px", unknown, z.core.$ZodTypeInternals<"14px" | "15px" | "16px" | "17px" | "18px" | "19px" | "20px", unknown>>>>;
|
|
2487
2487
|
}, z.core.$strip>>>;
|
|
2488
2488
|
template: z.ZodOptional<z.ZodNullable<z.ZodType<"calm", unknown, z.core.$ZodTypeInternals<"calm", unknown>>>>;
|
|
2489
2489
|
engine: z.ZodLiteral<"html">;
|