@syncfusion/ej2-pdf-export 21.1.37 → 21.2.8
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 +9 -0
- 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 +4 -0
- package/dist/es6/ej2-pdf-export.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf-export.es5.js +4 -0
- 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 -0
- package/src/implementation/structured-elements/grid/pdf-grid-cell.d.ts +1 -0
- package/src/implementation/structured-elements/grid/pdf-grid-cell.js +3 -0
|
@@ -29644,6 +29644,9 @@ var PdfGridCell = /** @__PURE__ @class */ (function () {
|
|
|
29644
29644
|
// If to break row to next page.
|
|
29645
29645
|
if (this.row.grid.allowRowBreakAcrossPages) {
|
|
29646
29646
|
innerLayoutArea.height -= innerLayoutArea.y;
|
|
29647
|
+
if (typeof this._rowHeight !== 'undefined' && this._rowHeight !== null && innerLayoutArea.height > this._rowHeight) {
|
|
29648
|
+
innerLayoutArea.height = this._rowHeight;
|
|
29649
|
+
}
|
|
29647
29650
|
//bounds.height -= bounds.y;
|
|
29648
29651
|
// if(this.row.grid.isChildGrid)
|
|
29649
29652
|
// {
|
|
@@ -33106,6 +33109,7 @@ var PdfGridLayouter = /** @__PURE__ @class */ (function (_super) {
|
|
|
33106
33109
|
var skipcell = false;
|
|
33107
33110
|
var stringResult = null;
|
|
33108
33111
|
if (!skipcell) {
|
|
33112
|
+
row.cells.getCell(i)._rowHeight = row.height;
|
|
33109
33113
|
stringResult = row.cells.getCell(i).draw(this.currentGraphics, new RectangleF(location, size), cancelSpans);
|
|
33110
33114
|
}
|
|
33111
33115
|
//If still row is to be drawn, set cell finished drawing cell as false and update the text to be drawn.
|