html-to-pdfmake
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -386,3 +386,3 @@ // source: https://github.com/OpenSlides/OpenSlides/blob/f4f8b8422f9b3fbab58e35ac3f8f870d35813b7d/client/src/app/core/ui-services/html-to-pdf.service.ts | ||
case "margin": { | ||
value = value.replace(/(\d+)([^\d]+)/g,"$1 ").trim().split(' '); | ||
value = value.replace(/(\d+)(\.\d+)?([^\d]+)/g,"$1$2 ").trim().split(' '); | ||
// pdfMake uses a different order than CSS | ||
@@ -423,3 +423,3 @@ if (value.length===1) value=+value[0]; // single value | ||
if (value) { | ||
value = value.replace(/(\d+)([^\d]+)/g,"$1 ").trim(); | ||
value = value.replace(/(\d+)(\.\d+)?([^\d]+)/g,"$1$2 ").trim(); | ||
if (!isNaN(value)) value=+value; // turn it into a number | ||
@@ -426,0 +426,0 @@ ret.push({key:key, value:value}); |
{ | ||
"name": "html-to-pdfmake", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Convert HTML code to PDFMake", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
110592