@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
|
@@ -28699,10 +28699,7 @@ class PdfGridLayouter extends ElementLayouter {
|
|
|
28699
28699
|
let index = 0;
|
|
28700
28700
|
index = this.currentGraphics.page.section.indexOf(this.currentGraphics.page);
|
|
28701
28701
|
this.listOfNavigatePages.push(index);
|
|
28702
|
-
if (
|
|
28703
|
-
this.currentBounds = new RectangleF(new PointF(param.bounds.x, param.bounds.y), new SizeF(param.bounds.width, param.bounds.height));
|
|
28704
|
-
}
|
|
28705
|
-
else if (format != null && format.break === PdfLayoutBreakType.FitColumnsToPage) {
|
|
28702
|
+
if (format != null && format.break === PdfLayoutBreakType.FitColumnsToPage) {
|
|
28706
28703
|
this.currentBounds = new RectangleF(new PointF(param.bounds.x, param.bounds.y), new SizeF(this.Grid.columns.width, this.currentGraphics.clientSize.height));
|
|
28707
28704
|
}
|
|
28708
28705
|
else {
|