@syncfusion/ej2-pdf
Advanced tools
Comparing version 24.2.3 to 24.2.5
@@ -5,2 +5,9 @@ # Changelog | ||
### PDF Parser | ||
#### Bug Fixes | ||
- Resolved an exception during form field reordering. | ||
- Resolved an exception encountered while parsing destination from document link annotation. | ||
## 24.1.47 (2024-01-23) | ||
@@ -37,2 +44,2 @@ | ||
- Import and export form fields and annotations. | ||
- The ability to parse existing bookmarks. | ||
- The ability to parse existing bookmarks. |
/*! | ||
* filename: index.d.ts | ||
* version : 24.2.3 | ||
* version : 24.2.5 | ||
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-pdf@*", | ||
"_id": "@syncfusion/ej2-pdf@24.1.47", | ||
"_id": "@syncfusion/ej2-pdf@24.2.3", | ||
"_inBundle": false, | ||
"_integrity": "sha512-QTgs7ywpkjEhzHxKJbKiVNVzwG98Yghd17lY1jdvFwMY3F2pqGjSlT+eyZvD3YXRaKxw1qJEbpaAuzHC7QHX1Q==", | ||
"_integrity": "sha512-vQG0fDg5tvHuRtT/9uTMa3Orr6hK7VAq1lcYCxbkCPVBWmi1c9drr18BPcByXRDZZLn2rRx/850Oehg3YokBAg==", | ||
"_location": "/@syncfusion/ej2-pdf", | ||
@@ -24,4 +24,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-pdf/-/ej2-pdf-24.1.47.tgz", | ||
"_shasum": "7c23a2f46e7f68cf7a8e566f60e2d07f779984a5", | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-pdf/-/ej2-pdf-24.2.3.tgz", | ||
"_shasum": "5ccb8b9c1e40253e3cf7377bfbc82c7803b5bb53", | ||
"_spec": "@syncfusion/ej2-pdf@*", | ||
@@ -34,3 +34,3 @@ "_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~24.2.3", | ||
"@syncfusion/ej2-base": "~24.2.5", | ||
"@syncfusion/ej2-compression": "~24.2.3" | ||
@@ -60,5 +60,5 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "24.2.3", | ||
"version": "24.2.5", | ||
"sideEffects": false, | ||
"homepage": "https://www.syncfusion.com/javascript-ui-controls" | ||
} |
@@ -379,19 +379,23 @@ import { _PdfDictionary, _PdfName, _PdfReference } from './../pdf-primitives'; | ||
var field = this._fieldCollection[Number.parseInt(i.toString(), 10)]; | ||
var index = _getPageIndex(document_1, field.page._pageDictionary); | ||
if (fieldCollection.has(index)) { | ||
value = fieldCollection.get(index); | ||
value.push(field); | ||
if (field.page) { | ||
var index = _getPageIndex(document_1, field.page._pageDictionary); | ||
if (index >= 0) { | ||
if (fieldCollection.has(index)) { | ||
value = fieldCollection.get(index); | ||
value.push(field); | ||
} | ||
else { | ||
value = []; | ||
value.push(field); | ||
fieldCollection.set(index, value); | ||
} | ||
var page_1 = document_1.getPage(index); | ||
if (!this._tabCollection.has(index)) { | ||
this._tabCollection.set(index, page_1.tabOrder); | ||
} | ||
if (setTabOrder) { | ||
page_1.tabOrder = this._tabCollection.get(index); | ||
} | ||
} | ||
} | ||
else { | ||
value = []; | ||
value.push(field); | ||
fieldCollection.set(index, value); | ||
} | ||
var page_1 = document_1.getPage(index); | ||
if (!this._tabCollection.has(index)) { | ||
this._tabCollection.set(index, page_1.tabOrder); | ||
} | ||
if (setTabOrder) { | ||
page_1.tabOrder = this._tabCollection.get(index); | ||
} | ||
} | ||
@@ -398,0 +402,0 @@ var fieldsCount_1 = 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
22429357
175284
Updated@syncfusion/ej2-base@~24.2.5