@syncfusion/ej2-pdf-export 24.2.3 → 25.1.35
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 +0 -10
- package/dist/ej2-pdf-export.min.js +2 -2
- 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 +10 -7
- package/dist/es6/ej2-pdf-export.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf-export.es5.js +10 -7
- 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 +7 -7
- package/src/implementation/structured-elements/grid/layout/grid-layouter.js +8 -6
- package/src/implementation/structured-elements/grid/pdf-grid-cell.js +2 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version :
|
|
3
|
+
* version : 25.1.35
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. 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@
|
|
3
|
+
"_id": "@syncfusion/ej2-pdf-export@0.38.8",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-5BHZBo2BqowXVMzv2XBYF/+uE5NfGB8qPIxrK8ggSh5xfNi/s2LqZOGI5IKQSZVvKL85nfZ2RY8dCBKBsk81Bw==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-pdf-export",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"/@syncfusion/ej2-pivotview",
|
|
28
28
|
"/@syncfusion/ej2-treemap"
|
|
29
29
|
],
|
|
30
|
-
"_resolved": "https://nexus.
|
|
31
|
-
"_shasum": "
|
|
30
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-0.38.8.tgz",
|
|
31
|
+
"_shasum": "18c36ba03bd6801752c8b8a43c632bea356f8938",
|
|
32
32
|
"_spec": "@syncfusion/ej2-pdf-export@*",
|
|
33
|
-
"_where": "/jenkins/workspace/elease-
|
|
33
|
+
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
|
34
34
|
"author": {
|
|
35
35
|
"name": "Syncfusion Inc."
|
|
36
36
|
},
|
|
37
37
|
"bundleDependencies": false,
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@syncfusion/ej2-compression": "~
|
|
39
|
+
"@syncfusion/ej2-compression": "~25.1.35"
|
|
40
40
|
},
|
|
41
41
|
"deprecated": false,
|
|
42
42
|
"description": "Syncfusion TypeScript Component",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"module": "./index.js",
|
|
48
48
|
"name": "@syncfusion/ej2-pdf-export",
|
|
49
49
|
"typings": "index.d.ts",
|
|
50
|
-
"version": "
|
|
50
|
+
"version": "25.1.35",
|
|
51
51
|
"sideEffects": false,
|
|
52
52
|
"homepage": "https://www.syncfusion.com/javascript-ui-controls"
|
|
53
53
|
}
|
|
@@ -1379,14 +1379,16 @@ var PdfGridLayouter = /** @class */ (function (_super) {
|
|
|
1379
1379
|
// }
|
|
1380
1380
|
}
|
|
1381
1381
|
for (var i = this.cellStartIndex; i <= this.cellEndIndex; i++) {
|
|
1382
|
+
var gridColumnWidth = this.Grid.columns.getColumn(i).width;
|
|
1382
1383
|
var cancelSpans = ((row.cells.getCell(i).columnSpan + i > this.cellEndIndex + 1) &&
|
|
1383
1384
|
(row.cells.getCell(i).columnSpan > 1));
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1385
|
+
if (!cancelSpans) {
|
|
1386
|
+
for (var k = 1; k < row.cells.getCell(i).columnSpan; k++) {
|
|
1387
|
+
row.cells.getCell(i + k).isCellMergeContinue = true;
|
|
1388
|
+
gridColumnWidth += this.Grid.columns.getColumn(i + k).width;
|
|
1389
|
+
}
|
|
1390
|
+
}
|
|
1391
|
+
var size = new SizeF(gridColumnWidth, this.gridHeight > 0.0 ? this.gridHeight :
|
|
1390
1392
|
this.currentPageBounds.height);
|
|
1391
1393
|
// if (size.width === 0) {
|
|
1392
1394
|
// size = new SizeF(row.cells.getCell(i).width, size.height);
|
|
@@ -619,7 +619,8 @@ var PdfGridCell = /** @class */ (function () {
|
|
|
619
619
|
}
|
|
620
620
|
if (param.page != childGridResult.page) //&& (isWidthGreaterthanParent != true))
|
|
621
621
|
{
|
|
622
|
-
|
|
622
|
+
if (this.row.rowBreakHeightValue !== null && typeof this.row.rowBreakHeightValue !== 'undefined')
|
|
623
|
+
childGridResult.bounds.height = this.row.rowBreakHeightValue;
|
|
623
624
|
if (this.row.rowBreakHeight == 0)
|
|
624
625
|
this.row.NestedGridLayoutResult = childGridResult;
|
|
625
626
|
else
|