@pdfme/schemas 3.1.5-dev.4 → 3.1.5-dev.6
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.
@@ -90,7 +90,7 @@ const pdfRender = async (arg) => {
|
|
90
90
|
boxWidthInPt: width,
|
91
91
|
};
|
92
92
|
let lines = [];
|
93
|
-
value.split(/\r
|
93
|
+
value.split(/\r\n|\r|\n/g).forEach((line) => {
|
94
94
|
lines = lines.concat((0, helper_js_1.getSplittedLines)(line, fontWidthCalcValues));
|
95
95
|
});
|
96
96
|
// Text lines are rendered from the bottom upwards, we need to adjust the position down
|
@@ -87,7 +87,7 @@ export const pdfRender = async (arg) => {
|
|
87
87
|
boxWidthInPt: width,
|
88
88
|
};
|
89
89
|
let lines = [];
|
90
|
-
value.split(/\r
|
90
|
+
value.split(/\r\n|\r|\n/g).forEach((line) => {
|
91
91
|
lines = lines.concat(getSplittedLines(line, fontWidthCalcValues));
|
92
92
|
});
|
93
93
|
// Text lines are rendered from the bottom upwards, we need to adjust the position down
|
package/package.json
CHANGED
package/src/text/pdfRender.ts
CHANGED
@@ -162,7 +162,7 @@ export const pdfRender = async (arg: PDFRenderProps<TextSchema>) => {
|
|
162
162
|
};
|
163
163
|
|
164
164
|
let lines: string[] = [];
|
165
|
-
value.split(/\r
|
165
|
+
value.split(/\r\n|\r|\n/g).forEach((line: string) => {
|
166
166
|
lines = lines.concat(getSplittedLines(line, fontWidthCalcValues));
|
167
167
|
});
|
168
168
|
|