@syncfusion/ej2-pdf-export 22.1.37 → 22.2.5

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 22.1.37
3
+ * version : 22.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. 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@22.1.34",
3
+ "_id": "@syncfusion/ej2-pdf-export@22.1.39",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-Du33oSyUpbY6xAQoerxc/F8r+afPLH/x2qCrw7CFZYZewWtlHVRXKsrr2lYyKP9VjDUMd066q6fR7A0xFsPbUQ==",
5
+ "_integrity": "sha512-pD9kTwnMjExpd0hJ7V0C0elmvDOJf6KViw55IxEt4nI7DIRVRIfzhih9v8CkQEUTSdEykpOjvrFo2NecrbFL/Q==",
6
6
  "_location": "/@syncfusion/ej2-pdf-export",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -28,8 +28,8 @@
28
28
  "/@syncfusion/ej2-pivotview",
29
29
  "/@syncfusion/ej2-treemap"
30
30
  ],
31
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-22.1.34.tgz",
32
- "_shasum": "ac952d6f2285d61601126cdf218bef7453b87540",
31
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-22.1.39.tgz",
32
+ "_shasum": "89400d78fb162a0392fe7371b7e551d9e3a301a4",
33
33
  "_spec": "@syncfusion/ej2-pdf-export@*",
34
34
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
35
35
  "author": {
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "bundleDependencies": false,
39
39
  "dependencies": {
40
- "@syncfusion/ej2-compression": "~22.1.34"
40
+ "@syncfusion/ej2-compression": "~22.2.5"
41
41
  },
42
42
  "deprecated": false,
43
43
  "description": "Syncfusion TypeScript Component",
@@ -48,7 +48,7 @@
48
48
  "module": "./index.js",
49
49
  "name": "@syncfusion/ej2-pdf-export",
50
50
  "typings": "index.d.ts",
51
- "version": "22.1.37",
51
+ "version": "22.2.5",
52
52
  "sideEffects": false,
53
53
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
54
54
  }
@@ -6,6 +6,7 @@ export * from './pdf-catalog';
6
6
  export * from './pdf-document';
7
7
  export * from './pdf-document-base';
8
8
  export * from './pdf-document-template';
9
+ export * from './pdf-viewer-preferences';
9
10
  export * from './automatic-fields/pdf-numbers-convertor';
10
11
  export * from './automatic-fields/pdf-page-number-field';
11
12
  export * from './automatic-fields/automatic-field-info';
@@ -6,6 +6,7 @@ export * from './pdf-catalog';
6
6
  export * from './pdf-document';
7
7
  export * from './pdf-document-base';
8
8
  export * from './pdf-document-template';
9
+ export * from './pdf-viewer-preferences';
9
10
  export * from './automatic-fields/pdf-numbers-convertor';
10
11
  export * from './automatic-fields/pdf-page-number-field';
11
12
  export * from './automatic-fields/automatic-field-info';
@@ -417,7 +417,7 @@ var PdfViewerPreferences = /** @class */ (function () {
417
417
  if (this._pageScaling === PageScalingMode.AppDefault && this._dictionary.items.containsKey(this._dictionaryProperties.printScaling)) {
418
418
  this._dictionary.items.remove(this._dictionaryProperties.printScaling);
419
419
  }
420
- else {
420
+ else if (this._pageScaling === PageScalingMode.None) {
421
421
  this._dictionary.items.setValue(this._dictionaryProperties.printScaling, new PdfName('None'));
422
422
  }
423
423
  },
@@ -17,6 +17,7 @@ export * from './document/pdf-catalog';
17
17
  export * from './document/pdf-document';
18
18
  export * from './document/pdf-document-base';
19
19
  export * from './document/pdf-document-template';
20
+ export * from './document/pdf-viewer-preferences';
20
21
  export * from './document/automatic-fields/pdf-numbers-convertor';
21
22
  export * from './document/automatic-fields/pdf-page-number-field';
22
23
  export * from './document/automatic-fields/automatic-field-info';
@@ -17,6 +17,7 @@ export * from './document/pdf-catalog';
17
17
  export * from './document/pdf-document';
18
18
  export * from './document/pdf-document-base';
19
19
  export * from './document/pdf-document-template';
20
+ export * from './document/pdf-viewer-preferences';
20
21
  export * from './document/automatic-fields/pdf-numbers-convertor';
21
22
  export * from './document/automatic-fields/pdf-page-number-field';
22
23
  export * from './document/automatic-fields/automatic-field-info';
package/src/index.d.ts CHANGED
@@ -17,6 +17,7 @@ export * from './implementation/document/pdf-catalog';
17
17
  export * from './implementation/document/pdf-document';
18
18
  export * from './implementation/document/pdf-document-base';
19
19
  export * from './implementation/document/pdf-document-template';
20
+ export * from './implementation/document/pdf-viewer-preferences';
20
21
  export * from './implementation/document/automatic-fields/pdf-page-number-field';
21
22
  export * from './implementation/document/automatic-fields/composite-field';
22
23
  export * from './implementation/document/automatic-fields/page-count-field';
package/src/index.js CHANGED
@@ -17,6 +17,7 @@ export * from './implementation/document/pdf-catalog';
17
17
  export * from './implementation/document/pdf-document';
18
18
  export * from './implementation/document/pdf-document-base';
19
19
  export * from './implementation/document/pdf-document-template';
20
+ export * from './implementation/document/pdf-viewer-preferences';
20
21
  export * from './implementation/document/automatic-fields/pdf-page-number-field';
21
22
  export * from './implementation/document/automatic-fields/composite-field';
22
23
  export * from './implementation/document/automatic-fields/page-count-field';