@syncfusion/ej2-pdf-export 23.2.4 → 23.2.6
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 +8 -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 +6 -1
- package/dist/es6/ej2-pdf-export.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf-export.es5.js +6 -1
- 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 +5 -5
- package/src/implementation/graphics/pdf-graphics.js +7 -2
- package/src/implementation/graphics/pdf-transformation-matrix.d.ts +1 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 23.2.
|
|
3
|
+
* version : 23.2.6
|
|
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@23.
|
|
3
|
+
"_id": "@syncfusion/ej2-pdf-export@23.2.4",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-qbVejUNNK+6ZDujhgFZ5wN4PiKsFI6mdXc028v2YrG7KYVDcA+7McQMMm8w7Ga7u5y75B547rGgyHckChMowIA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-pdf-export",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"/@syncfusion/ej2-pivotview",
|
|
28
28
|
"/@syncfusion/ej2-treemap"
|
|
29
29
|
],
|
|
30
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-23.
|
|
31
|
-
"_shasum": "
|
|
30
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-23.2.4.tgz",
|
|
31
|
+
"_shasum": "0dc8b4c2215d1793bf625a277fdeba99a0a38534",
|
|
32
32
|
"_spec": "@syncfusion/ej2-pdf-export@*",
|
|
33
33
|
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
|
|
34
34
|
"author": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"module": "./index.js",
|
|
48
48
|
"name": "@syncfusion/ej2-pdf-export",
|
|
49
49
|
"typings": "index.d.ts",
|
|
50
|
-
"version": "23.2.
|
|
50
|
+
"version": "23.2.6",
|
|
51
51
|
"sideEffects": false,
|
|
52
52
|
"homepage": "https://www.syncfusion.com/javascript-ui-controls"
|
|
53
53
|
}
|
|
@@ -9,7 +9,7 @@ import { PdfPen } from './pdf-pen';
|
|
|
9
9
|
import { PdfBrush } from './brushes/pdf-brush';
|
|
10
10
|
import { PdfSolidBrush } from './brushes/pdf-solid-brush';
|
|
11
11
|
import { PdfFont } from './fonts/pdf-font';
|
|
12
|
-
import { PdfTransformationMatrix } from './pdf-transformation-matrix';
|
|
12
|
+
import { PdfTransformationMatrix, Matrix } from './pdf-transformation-matrix';
|
|
13
13
|
import { PointF, SizeF, RectangleF } from './../drawing/pdf-drawing';
|
|
14
14
|
import { ProcedureSets } from './constants';
|
|
15
15
|
import { PdfString } from './../primitives/pdf-string';
|
|
@@ -1825,7 +1825,12 @@ var PdfGraphicsState = /** @class */ (function () {
|
|
|
1825
1825
|
this.pdfColorSpace = PdfColorSpace.Rgb;
|
|
1826
1826
|
if (typeof graphics !== 'undefined') {
|
|
1827
1827
|
this.pdfGraphics = graphics;
|
|
1828
|
-
|
|
1828
|
+
var elements_1 = [];
|
|
1829
|
+
graphics.matrix.matrix.elements.forEach(function (element) {
|
|
1830
|
+
elements_1.push(element);
|
|
1831
|
+
});
|
|
1832
|
+
this.transformationMatrix = new PdfTransformationMatrix();
|
|
1833
|
+
this.transformationMatrix.matrix = new Matrix(elements_1);
|
|
1829
1834
|
}
|
|
1830
1835
|
}
|
|
1831
1836
|
Object.defineProperty(PdfGraphicsState.prototype, "graphics", {
|