@syncfusion/ej2-pdf-export 21.2.10 → 22.1.37
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/.eslintrc.json +1 -0
- 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 +748 -93
- package/dist/es6/ej2-pdf-export.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf-export.es5.js +933 -225
- 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/document/pdf-catalog.d.ts +7 -0
- package/src/implementation/document/pdf-catalog.js +16 -0
- package/src/implementation/document/pdf-document-base.d.ts +13 -0
- package/src/implementation/document/pdf-document-base.js +18 -0
- package/src/implementation/document/pdf-viewer-preferences.d.ts +467 -0
- package/src/implementation/document/pdf-viewer-preferences.js +624 -0
- package/src/implementation/input-output/pdf-dictionary-properties.d.ts +55 -0
- package/src/implementation/input-output/pdf-dictionary-properties.js +55 -0
|
@@ -510,6 +510,61 @@ var DictionaryProperties = /** @class */ (function () {
|
|
|
510
510
|
* @private
|
|
511
511
|
*/
|
|
512
512
|
this.yStep = 'YStep';
|
|
513
|
+
/**
|
|
514
|
+
* Specifies the value of viewer preferences.
|
|
515
|
+
* @private
|
|
516
|
+
*/
|
|
517
|
+
this.viewerPreferences = 'ViewerPreferences';
|
|
518
|
+
/**
|
|
519
|
+
* Specifies the value of center window.
|
|
520
|
+
* @private
|
|
521
|
+
*/
|
|
522
|
+
this.centerWindow = 'CenterWindow';
|
|
523
|
+
/**
|
|
524
|
+
* Specifies the value of display title.
|
|
525
|
+
* @private
|
|
526
|
+
*/
|
|
527
|
+
this.displayTitle = 'DisplayTitle';
|
|
528
|
+
/**
|
|
529
|
+
* Specifies the value of fit window.
|
|
530
|
+
* @private
|
|
531
|
+
*/
|
|
532
|
+
this.fitWindow = 'FitWindow';
|
|
533
|
+
/**
|
|
534
|
+
* Specifies the value of hide menu bar.
|
|
535
|
+
* @private
|
|
536
|
+
*/
|
|
537
|
+
this.hideMenuBar = 'HideMenubar';
|
|
538
|
+
/**
|
|
539
|
+
* Specifies the value of hide tool bar.
|
|
540
|
+
* @private
|
|
541
|
+
*/
|
|
542
|
+
this.hideToolBar = 'HideToolbar';
|
|
543
|
+
/**
|
|
544
|
+
* Specifies the value of hide window UI.
|
|
545
|
+
* @private
|
|
546
|
+
*/
|
|
547
|
+
this.hideWindowUI = 'HideWindowUI';
|
|
548
|
+
/**
|
|
549
|
+
* Specifies the value of page mode.
|
|
550
|
+
* @private
|
|
551
|
+
*/
|
|
552
|
+
this.pageMode = 'PageMode';
|
|
553
|
+
/**
|
|
554
|
+
* Specifies the value of page layout.
|
|
555
|
+
* @private
|
|
556
|
+
*/
|
|
557
|
+
this.pageLayout = 'PageLayout';
|
|
558
|
+
/**
|
|
559
|
+
* Specifies the value of duplex.
|
|
560
|
+
* @private
|
|
561
|
+
*/
|
|
562
|
+
this.duplex = 'Duplex';
|
|
563
|
+
/**
|
|
564
|
+
* Specifies the value of print scaling.
|
|
565
|
+
* @private
|
|
566
|
+
*/
|
|
567
|
+
this.printScaling = 'PrintScaling';
|
|
513
568
|
//
|
|
514
569
|
}
|
|
515
570
|
return DictionaryProperties;
|