@ind-rcg/plugins-printengine 254.1005.0 → 258.1001.0
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.
|
@@ -111,6 +111,7 @@ class MacroHandler {
|
|
|
111
111
|
for (let i = 0; i < macroList.length; i++) {
|
|
112
112
|
this.__parseKeyValuePair(macroList[i], result);
|
|
113
113
|
}
|
|
114
|
+
// eslint-disable-next-line no-unused-vars
|
|
114
115
|
} catch (err){
|
|
115
116
|
// some invalid value encountered during parse
|
|
116
117
|
result = {};
|
|
@@ -1207,7 +1207,7 @@ class PdfConverter {
|
|
|
1207
1207
|
} else {
|
|
1208
1208
|
let pdfDocGenerator = null;
|
|
1209
1209
|
if (pdfDefinition.defaultStyle.font !== "PrintFont") {
|
|
1210
|
-
pdfDocGenerator = this.__pdfMake.createPdf(pdfDefinition, TableLayouts, BrowserFonts, BrowserFontsVfs.
|
|
1210
|
+
pdfDocGenerator = this.__pdfMake.createPdf(pdfDefinition, TableLayouts, BrowserFonts, BrowserFontsVfs.vfs);
|
|
1211
1211
|
}
|
|
1212
1212
|
else {
|
|
1213
1213
|
pdfDocGenerator = this.__pdfMake.createPdf(pdfDefinition, TableLayouts, BrowserFonts, pdfDefinition.printFont);
|