cross-platform-pdf-generator
Advanced tools
Comparing version 2.0.1 to 2.0.2
{ | ||
"name": "cross-platform-pdf-generator", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "pulsation PDF generator for web and ios", | ||
@@ -5,0 +5,0 @@ "main": "main.js", |
@@ -128,3 +128,7 @@ import { PDFDocument, StandardFonts, rgb, PDFFont, PDFPage, PDFTextField, PDFImage } from 'pdf-lib'; | ||
const name = field.getName(); | ||
const value = data.find(v => v.title === name || v.id === name); | ||
let value = data.find(v => (v.title === name || v.id === name) && v.type === "text"); | ||
if (value?.component === "signature") { | ||
const imageValue = data.find(v => (v.title === name || v.id === name) && v.type === "image") | ||
await drawTextInField(imageValue, field, document); | ||
} | ||
if (value?.value === undefined) continue; | ||
@@ -131,0 +135,0 @@ unhandeld = unhandeld.filter(e => e.title !== name && e.id !== name); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74203
1753