@syncfusion/ej2-pdf-export 19.4.50 → 19.4.52
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.
- package/CHANGELOG.md +10 -0
- package/dist/ej2-pdf-export.umd.min.js +2 -2
- package/dist/ej2-pdf-export.umd.min.js.map +1 -1
- package/dist/es6/ej2-pdf-export.es2015.js +1 -4
- package/dist/es6/ej2-pdf-export.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf-export.es5.js +1 -4
- package/dist/es6/ej2-pdf-export.es5.js.map +1 -1
- package/dist/global/ej2-pdf-export.min.js +2 -2
- package/dist/global/ej2-pdf-export.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/src/implementation/structured-elements/grid/layout/grid-layouter.js +1 -4
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 19.4.
|
|
3
|
+
* version : 19.4.52
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-pdf-export@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-pdf-export@19.4.
|
|
3
|
+
"_id": "@syncfusion/ej2-pdf-export@19.4.50",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-V51w1S6QL9OXYLxaB0eo6HZwm4xG6b0tqxJjs6HFJt1gRzXJepwxitXRmCPpWfjzd8cNqZ22KTYeI9t6g9ZMaQ==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-pdf-export",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"/@syncfusion/ej2-pivotview",
|
|
29
29
|
"/@syncfusion/ej2-treemap"
|
|
30
30
|
],
|
|
31
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-19.4.
|
|
32
|
-
"_shasum": "
|
|
31
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-19.4.50.tgz",
|
|
32
|
+
"_shasum": "87d66735bc446f84c9e2985086b9b57b86a98a21",
|
|
33
33
|
"_spec": "@syncfusion/ej2-pdf-export@*",
|
|
34
34
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
35
35
|
"author": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"bundleDependencies": false,
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@syncfusion/ej2-compression": "~19.4.
|
|
40
|
+
"@syncfusion/ej2-compression": "~19.4.52"
|
|
41
41
|
},
|
|
42
42
|
"deprecated": false,
|
|
43
43
|
"description": "Syncfusion TypeScript Component",
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
"module": "./index.js",
|
|
49
49
|
"name": "@syncfusion/ej2-pdf-export",
|
|
50
50
|
"typings": "index.d.ts",
|
|
51
|
-
"version": "19.4.
|
|
51
|
+
"version": "19.4.52",
|
|
52
52
|
"sideEffects": false
|
|
53
53
|
}
|
|
@@ -200,10 +200,7 @@ var PdfGridLayouter = /** @class */ (function (_super) {
|
|
|
200
200
|
var index = 0;
|
|
201
201
|
index = this.currentGraphics.page.section.indexOf(this.currentGraphics.page);
|
|
202
202
|
this.listOfNavigatePages.push(index);
|
|
203
|
-
if (
|
|
204
|
-
this.currentBounds = new RectangleF(new PointF(param.bounds.x, param.bounds.y), new SizeF(param.bounds.width, param.bounds.height));
|
|
205
|
-
}
|
|
206
|
-
else if (format != null && format.break === PdfLayoutBreakType.FitColumnsToPage) {
|
|
203
|
+
if (format != null && format.break === PdfLayoutBreakType.FitColumnsToPage) {
|
|
207
204
|
this.currentBounds = new RectangleF(new PointF(param.bounds.x, param.bounds.y), new SizeF(this.Grid.columns.width, this.currentGraphics.clientSize.height));
|
|
208
205
|
}
|
|
209
206
|
else {
|