@syncfusion/ej2-pdf-export 24.1.47 → 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 -8
- 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
|
@@ -30572,7 +30572,8 @@ var PdfGridCell = /** @__PURE__ @class */ (function () {
|
|
|
30572
30572
|
}
|
|
30573
30573
|
if (param.page != childGridResult.page) //&& (isWidthGreaterthanParent != true))
|
|
30574
30574
|
{
|
|
30575
|
-
|
|
30575
|
+
if (this.row.rowBreakHeightValue !== null && typeof this.row.rowBreakHeightValue !== 'undefined')
|
|
30576
|
+
childGridResult.bounds.height = this.row.rowBreakHeightValue;
|
|
30576
30577
|
if (this.row.rowBreakHeight == 0)
|
|
30577
30578
|
this.row.NestedGridLayoutResult = childGridResult;
|
|
30578
30579
|
else
|
|
@@ -33896,14 +33897,16 @@ var PdfGridLayouter = /** @__PURE__ @class */ (function (_super) {
|
|
|
33896
33897
|
// }
|
|
33897
33898
|
}
|
|
33898
33899
|
for (var i = this.cellStartIndex; i <= this.cellEndIndex; i++) {
|
|
33900
|
+
var gridColumnWidth = this.Grid.columns.getColumn(i).width;
|
|
33899
33901
|
var cancelSpans = ((row.cells.getCell(i).columnSpan + i > this.cellEndIndex + 1) &&
|
|
33900
33902
|
(row.cells.getCell(i).columnSpan > 1));
|
|
33901
|
-
|
|
33902
|
-
|
|
33903
|
-
|
|
33904
|
-
|
|
33905
|
-
|
|
33906
|
-
|
|
33903
|
+
if (!cancelSpans) {
|
|
33904
|
+
for (var k = 1; k < row.cells.getCell(i).columnSpan; k++) {
|
|
33905
|
+
row.cells.getCell(i + k).isCellMergeContinue = true;
|
|
33906
|
+
gridColumnWidth += this.Grid.columns.getColumn(i + k).width;
|
|
33907
|
+
}
|
|
33908
|
+
}
|
|
33909
|
+
var size = new SizeF(gridColumnWidth, this.gridHeight > 0.0 ? this.gridHeight :
|
|
33907
33910
|
this.currentPageBounds.height);
|
|
33908
33911
|
// if (size.width === 0) {
|
|
33909
33912
|
// size = new SizeF(row.cells.getCell(i).width, size.height);
|