@yamlresume/core 0.10.0 → 0.10.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 +18 -0
- package/dist/index.js +117 -76
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1086,6 +1086,14 @@ type HtmlTypography = {
|
|
|
1086
1086
|
type HtmlAdvanced = {
|
|
1087
1087
|
/** Whether to show icons for links and profiles. */
|
|
1088
1088
|
showIcons?: boolean;
|
|
1089
|
+
/** Custom title for the HTML document. */
|
|
1090
|
+
title?: string;
|
|
1091
|
+
/** Custom footer for the HTML document. */
|
|
1092
|
+
footer?: string;
|
|
1093
|
+
/** Meta description for the HTML document. */
|
|
1094
|
+
description?: string;
|
|
1095
|
+
/** Meta keywords for the HTML document. */
|
|
1096
|
+
keywords?: string;
|
|
1089
1097
|
};
|
|
1090
1098
|
/**
|
|
1091
1099
|
* HTML layout configuration.
|
|
@@ -2025,6 +2033,12 @@ declare class HtmlRenderer extends Renderer {
|
|
|
2025
2033
|
* @returns {string} The rendered volunteer section
|
|
2026
2034
|
*/
|
|
2027
2035
|
renderVolunteer(): string;
|
|
2036
|
+
/**
|
|
2037
|
+
* Render the footer section of the resume.
|
|
2038
|
+
*
|
|
2039
|
+
* @returns {string} The rendered footer section
|
|
2040
|
+
*/
|
|
2041
|
+
renderFooter(): string;
|
|
2028
2042
|
/**
|
|
2029
2043
|
* Render the complete HTML resume.
|
|
2030
2044
|
*
|
|
@@ -2516,6 +2530,10 @@ declare const ResumeSchema: z.ZodObject<{
|
|
|
2516
2530
|
}, z.core.$strip>>>;
|
|
2517
2531
|
advanced: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2518
2532
|
showIcons: z.ZodDefault<z.ZodBoolean>;
|
|
2533
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2534
|
+
footer: z.ZodDefault<z.ZodString>;
|
|
2535
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2536
|
+
keywords: z.ZodOptional<z.ZodString>;
|
|
2519
2537
|
}, z.core.$strip>>>;
|
|
2520
2538
|
typography: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2521
2539
|
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>>>>;
|