@syncfusion/ej2-pdf-export
Advanced tools
Comparing version 18.4.39 to 18.4.47
@@ -9,2 +9,10 @@ # Changelog | ||
- Undefined error occurs while getting line width of text content on particular True Type Font. | ||
## 18.4.30 (2020-12-17) | ||
### Pdf Export | ||
#### Bug Fixes | ||
- Performance issue with true type font is fixed. | ||
@@ -11,0 +19,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 18.4.39 | ||
* version : 18.4.47 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-pdf-export@*", | ||
"_id": "@syncfusion/ej2-pdf-export@18.4.30", | ||
"_id": "@syncfusion/ej2-pdf-export@18.4.39", | ||
"_inBundle": false, | ||
"_integrity": "sha512-x27HQHG+C2HqlNANIBRlcquL2awkRB6Mt06XyCoU6v95NrDj0rUPt7PPnOdkZh8/6xGDW8uxAr+fx8UOYopjNQ==", | ||
"_integrity": "sha512-3N8ETMxPfpv48CjzeIdurFsBZ7cOVajZLcoThcq1paIyThRqRMu6tbAxIc+rrvc8R1GhaCRyjU4uLFN3VDBDvg==", | ||
"_location": "/@syncfusion/ej2-pdf-export", | ||
@@ -31,4 +31,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-18.4.30.tgz", | ||
"_shasum": "d6d812ae7fbd4912ebfb8bd8cf02074ab6e1b390", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-18.4.39.tgz", | ||
"_shasum": "516d4f778e75d131eaa035d55829fe64e9967b8c", | ||
"_spec": "@syncfusion/ej2-pdf-export@*", | ||
@@ -60,4 +60,4 @@ "_where": "/jenkins/workspace/automation_release_18.4.0.1-WOJ6QVY6EU5ONBWOYGQFKS2VU2UW7E67MOXUPKCE5AX7QQX7M5JQ/packages/included", | ||
"typings": "index.d.ts", | ||
"version": "18.4.39", | ||
"version": "18.4.47", | ||
"sideEffects": false | ||
} |
@@ -53,3 +53,3 @@ var __extends = (this && this.__extends) || (function () { | ||
var width = 0; | ||
if (format !== null && format.textDirection !== PdfTextDirection.None) { | ||
if (format !== null && typeof format !== 'undefined' && format.textDirection !== PdfTextDirection.None) { | ||
var returnValue = this.getUnicodeLineWidth(line, /*out*/ width, format); | ||
@@ -56,0 +56,0 @@ width = returnValue.width; |
@@ -133,3 +133,3 @@ import { PdfString } from './../../primitives/pdf-string'; | ||
//bidirectional order. | ||
if (format !== null && format.textDirection !== PdfTextDirection.None) { | ||
if (format !== null && typeof format !== 'undefined' && format.textDirection !== PdfTextDirection.None) { | ||
var bidi = new Bidi(); | ||
@@ -148,3 +148,3 @@ result = bidi.getLogicalToVisualString(line, rtl); | ||
var layouted = null; | ||
if (format !== null && format.textDirection !== PdfTextDirection.None) { | ||
if (format !== null && typeof format !== 'undefined' && format.textDirection !== PdfTextDirection.None) { | ||
var renderer = new ArabicShapeRenderer(); | ||
@@ -151,0 +151,0 @@ var txt = renderer.shape(line, 0); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
13105834
126668