@syncfusion/ej2-angular-pdfviewer 30.2.6 → 30.2.7-ngcc
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/@syncfusion/ej2-angular-pdfviewer.es5.js +279 -0
- package/@syncfusion/ej2-angular-pdfviewer.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-pdfviewer.js +260 -0
- package/@syncfusion/ej2-angular-pdfviewer.js.map +1 -0
- package/LICENSE +10 -0
- package/dist/ej2-angular-pdfviewer.umd.js +521 -0
- package/dist/ej2-angular-pdfviewer.umd.js.map +1 -0
- package/dist/ej2-angular-pdfviewer.umd.min.js +11 -0
- package/dist/ej2-angular-pdfviewer.umd.min.js.map +1 -0
- package/ej2-angular-pdfviewer.d.ts +5 -0
- package/ej2-angular-pdfviewer.metadata.json +1 -0
- package/package.json +9 -22
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +4 -4
- package/src/pdfviewer/pdfviewer-all.module.d.ts +19 -25
- package/src/pdfviewer/pdfviewer.component.d.ts +105 -108
- package/src/pdfviewer/pdfviewer.module.d.ts +5 -11
- package/CHANGELOG.md +0 -3333
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/index.mjs +0 -5
- package/esm2020/src/pdfviewer/pdfviewer-all.module.mjs +0 -65
- package/esm2020/src/pdfviewer/pdfviewer.component.mjs +0 -150
- package/esm2020/src/pdfviewer/pdfviewer.module.mjs +0 -25
- package/esm2020/syncfusion-ej2-angular-pdfviewer.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs +0 -239
- package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs +0 -239
- package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs.map +0 -1
- package/syncfusion-ej2-angular-pdfviewer.d.ts +0 -5
|
@@ -0,0 +1,521 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* filename: ej2-angular-pdfviewer.umd.js
|
|
3
|
+
* version : 30.2.7
|
|
4
|
+
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
|
|
5
|
+
* Use of this code is subject to the terms of our license.
|
|
6
|
+
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
|
+
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
|
+
* applicable laws.
|
|
9
|
+
*/
|
|
10
|
+
(function (global, factory) {
|
|
11
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@syncfusion/ej2-angular-base'), require('@syncfusion/ej2-pdfviewer'), require('@angular/common')) :
|
|
12
|
+
typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@syncfusion/ej2-angular-base', '@syncfusion/ej2-pdfviewer', '@angular/common'], factory) :
|
|
13
|
+
(factory((global['ej2-angular-pdfviewer'] = {}),global.ng.core,global.ej2.angular.base,global.ej2.pdfviewer,global.ng.common));
|
|
14
|
+
}(this, (function (exports,core,ej2AngularBase,ej2Pdfviewer,common) { 'use strict';
|
|
15
|
+
|
|
16
|
+
var __extends = (this && this.__extends) || (function () {
|
|
17
|
+
var extendStatics = Object.setPrototypeOf ||
|
|
18
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
19
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
20
|
+
return function (d, b) {
|
|
21
|
+
extendStatics(d, b);
|
|
22
|
+
function __() { this.constructor = d; }
|
|
23
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
24
|
+
};
|
|
25
|
+
})();
|
|
26
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
27
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
28
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
29
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
30
|
+
else
|
|
31
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
32
|
+
if (d = decorators[i])
|
|
33
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
34
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
35
|
+
};
|
|
36
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
37
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
38
|
+
return Reflect.metadata(k, v);
|
|
39
|
+
};
|
|
40
|
+
var inputs = ['DropdownFieldSettings', 'ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'checkBoxFieldSettings', 'circleSettings', 'commandManager', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customContextMenuItems', 'customFonts', 'customStamp', 'customStampSettings', 'dateTimeFormat', 'designerMode', 'disableContextMenuItems', 'disableDefaultContextMenu', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAccessibilityTags', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableBookmarkStyles', 'enableCommentPanel', 'enableDesktopMode', 'enableDownload', 'enableFormDesigner', 'enableFormDesignerToolbar', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHtmlSanitizer', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableLocalStorage', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePageOrganizer', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enablePrintRotation', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'exportAnnotationFileName', 'extractTextOption', 'formFieldCollections', 'formFields', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'hideEmptyDigitalSignatureFields', 'hideSaveSignature', 'highlightSettings', 'hyperlinkOpenState', 'initialDialogSettings', 'initialFieldSettings', 'initialRenderPages', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isAnnotationToolbarVisible', 'isBookmarkPanelOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormDesignerToolbarVisible', 'isFormFieldDocument', 'isInitialFieldToolbarSelection', 'isMaintainSelection', 'isPageOrganizerOpen', 'isSignatureEditable', 'isThumbnailViewOpen', 'isValidFreeText', 'lineSettings', 'listBoxFieldSettings', 'locale', 'maxZoom', 'measurementSettings', 'minZoom', 'pageCount', 'pageOrganizerSettings', 'passwordFieldSettings', 'perimeterSettings', 'polygonSettings', 'printMode', 'printScaleFactor', 'radioButtonFieldSettings', 'radiusSettings', 'rectangleSettings', 'resourceUrl', 'restrictZoomRequest', 'retryCount', 'retryStatusCodes', 'retryTimeout', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showCustomContextMenuBottom', 'showDigitalSignatureAppearance', 'showNotificationDialog', 'signatureDialogSettings', 'signatureFieldSettings', 'signatureFitMode', 'squigglySettings', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textFieldSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue'];
|
|
41
|
+
var outputs = ['addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'ajaxRequestSuccess', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationMoving', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'annotationUnSelect', 'beforeAddFreeText', 'bookmarkClick', 'buttonFieldClick', 'commentAdd', 'commentDelete', 'commentEdit', 'commentSelect', 'commentStatusChanged', 'created', 'customContextMenuBeforeOpen', 'customContextMenuSelect', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'formFieldAdd', 'formFieldClick', 'formFieldDoubleClick', 'formFieldFocusOut', 'formFieldMouseLeave', 'formFieldMouseover', 'formFieldMove', 'formFieldPropertiesChange', 'formFieldRemove', 'formFieldResize', 'formFieldSelect', 'formFieldUnselect', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'keyboardCustomCommands', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'pageOrganizerSaveAs', 'pageRenderComplete', 'pageRenderInitiate', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'resourcesLoaded', 'signaturePropertiesChange', 'signatureSelect', 'signatureUnselect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'toolbarClick', 'validateFormFields', 'zoomChange', 'pageOrganizerZoomChanged'];
|
|
42
|
+
var twoWays = [];
|
|
43
|
+
/**
|
|
44
|
+
* `ejs-pdfviewer` represents the Angular PdfViewer Component.
|
|
45
|
+
* ```html
|
|
46
|
+
* <ejs-pdfviewer></ejs-pdfviewer>
|
|
47
|
+
* ```
|
|
48
|
+
*/
|
|
49
|
+
exports.PdfViewerComponent = /** @class */ (function (_super) {
|
|
50
|
+
__extends(PdfViewerComponent, _super);
|
|
51
|
+
/**
|
|
52
|
+
* @param {?} ngEle
|
|
53
|
+
* @param {?} srenderer
|
|
54
|
+
* @param {?} viewContainerRef
|
|
55
|
+
* @param {?} injector
|
|
56
|
+
*/
|
|
57
|
+
function PdfViewerComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
58
|
+
var _this = _super.call(this) || this;
|
|
59
|
+
_this.ngEle = ngEle;
|
|
60
|
+
_this.srenderer = srenderer;
|
|
61
|
+
_this.viewContainerRef = viewContainerRef;
|
|
62
|
+
_this.injector = injector;
|
|
63
|
+
_this.element = _this.ngEle.nativeElement;
|
|
64
|
+
_this.injectedModules = _this.injectedModules || [];
|
|
65
|
+
try {
|
|
66
|
+
var mod = _this.injector.get('PdfViewerLinkAnnotation');
|
|
67
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
68
|
+
_this.injectedModules.push(mod);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
catch (_a) { }
|
|
72
|
+
try {
|
|
73
|
+
var mod = _this.injector.get('PdfViewerBookmarkView');
|
|
74
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
75
|
+
_this.injectedModules.push(mod);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
catch (_b) { }
|
|
79
|
+
try {
|
|
80
|
+
var mod = _this.injector.get('PdfViewerMagnification');
|
|
81
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
82
|
+
_this.injectedModules.push(mod);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
catch (_c) { }
|
|
86
|
+
try {
|
|
87
|
+
var mod = _this.injector.get('PdfViewerThumbnailView');
|
|
88
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
89
|
+
_this.injectedModules.push(mod);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
catch (_d) { }
|
|
93
|
+
try {
|
|
94
|
+
var mod = _this.injector.get('PdfViewerToolbar');
|
|
95
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
96
|
+
_this.injectedModules.push(mod);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
catch (_e) { }
|
|
100
|
+
try {
|
|
101
|
+
var mod = _this.injector.get('PdfViewerNavigation');
|
|
102
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
103
|
+
_this.injectedModules.push(mod);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
catch (_f) { }
|
|
107
|
+
try {
|
|
108
|
+
var mod = _this.injector.get('PdfViewerPrint');
|
|
109
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
110
|
+
_this.injectedModules.push(mod);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
catch (_g) { }
|
|
114
|
+
try {
|
|
115
|
+
var mod = _this.injector.get('PdfViewerTextSelection');
|
|
116
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
117
|
+
_this.injectedModules.push(mod);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
catch (_h) { }
|
|
121
|
+
try {
|
|
122
|
+
var mod = _this.injector.get('PdfViewerTextSearch');
|
|
123
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
124
|
+
_this.injectedModules.push(mod);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
catch (_j) { }
|
|
128
|
+
try {
|
|
129
|
+
var mod = _this.injector.get('PdfViewerAnnotation');
|
|
130
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
131
|
+
_this.injectedModules.push(mod);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
catch (_k) { }
|
|
135
|
+
try {
|
|
136
|
+
var mod = _this.injector.get('PdfViewerFormDesigner');
|
|
137
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
138
|
+
_this.injectedModules.push(mod);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
catch (_l) { }
|
|
142
|
+
try {
|
|
143
|
+
var mod = _this.injector.get('PdfViewerFormFields');
|
|
144
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
145
|
+
_this.injectedModules.push(mod);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
catch (_m) { }
|
|
149
|
+
try {
|
|
150
|
+
var mod = _this.injector.get('PdfViewerPageOrganizer');
|
|
151
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
152
|
+
_this.injectedModules.push(mod);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
catch (_o) { }
|
|
156
|
+
_this.registerEvents(outputs);
|
|
157
|
+
_this.addTwoWay.call(_this, twoWays);
|
|
158
|
+
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
159
|
+
_this.context = new ej2AngularBase.ComponentBase();
|
|
160
|
+
return _this;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* @return {?}
|
|
164
|
+
*/
|
|
165
|
+
PdfViewerComponent.prototype.ngOnInit = function () {
|
|
166
|
+
this.context.ngOnInit(this);
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* @return {?}
|
|
170
|
+
*/
|
|
171
|
+
PdfViewerComponent.prototype.ngAfterViewInit = function () {
|
|
172
|
+
this.context.ngAfterViewInit(this);
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* @return {?}
|
|
176
|
+
*/
|
|
177
|
+
PdfViewerComponent.prototype.ngOnDestroy = function () {
|
|
178
|
+
this.context.ngOnDestroy(this);
|
|
179
|
+
};
|
|
180
|
+
/**
|
|
181
|
+
* @return {?}
|
|
182
|
+
*/
|
|
183
|
+
PdfViewerComponent.prototype.ngAfterContentChecked = function () {
|
|
184
|
+
this.context.ngAfterContentChecked(this);
|
|
185
|
+
};
|
|
186
|
+
return PdfViewerComponent;
|
|
187
|
+
}(ej2Pdfviewer.PdfViewer));
|
|
188
|
+
exports.PdfViewerComponent.decorators = [
|
|
189
|
+
{ type: core.Component, args: [{
|
|
190
|
+
selector: 'ejs-pdfviewer',
|
|
191
|
+
inputs: inputs,
|
|
192
|
+
outputs: outputs,
|
|
193
|
+
template: '',
|
|
194
|
+
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
195
|
+
queries: {}
|
|
196
|
+
},] },
|
|
197
|
+
];
|
|
198
|
+
/**
|
|
199
|
+
* @nocollapse
|
|
200
|
+
*/
|
|
201
|
+
exports.PdfViewerComponent.ctorParameters = function () { return [
|
|
202
|
+
{ type: core.ElementRef, },
|
|
203
|
+
{ type: core.Renderer2, },
|
|
204
|
+
{ type: core.ViewContainerRef, },
|
|
205
|
+
{ type: core.Injector, },
|
|
206
|
+
]; };
|
|
207
|
+
exports.PdfViewerComponent = __decorate([
|
|
208
|
+
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
|
|
209
|
+
__metadata("design:paramtypes", [core.ElementRef,
|
|
210
|
+
core.Renderer2,
|
|
211
|
+
core.ViewContainerRef,
|
|
212
|
+
core.Injector])
|
|
213
|
+
], exports.PdfViewerComponent);
|
|
214
|
+
/**
|
|
215
|
+
* NgModule definition for the PdfViewer component.
|
|
216
|
+
*/
|
|
217
|
+
var PdfViewerModule = /** @class */ (function () {
|
|
218
|
+
function PdfViewerModule() {
|
|
219
|
+
}
|
|
220
|
+
return PdfViewerModule;
|
|
221
|
+
}());
|
|
222
|
+
PdfViewerModule.decorators = [
|
|
223
|
+
{ type: core.NgModule, args: [{
|
|
224
|
+
imports: [common.CommonModule],
|
|
225
|
+
declarations: [
|
|
226
|
+
exports.PdfViewerComponent
|
|
227
|
+
],
|
|
228
|
+
exports: [
|
|
229
|
+
exports.PdfViewerComponent
|
|
230
|
+
]
|
|
231
|
+
},] },
|
|
232
|
+
];
|
|
233
|
+
/**
|
|
234
|
+
* @nocollapse
|
|
235
|
+
*/
|
|
236
|
+
PdfViewerModule.ctorParameters = function () { return []; };
|
|
237
|
+
var LinkAnnotationService = { provide: 'PdfViewerLinkAnnotation', useValue: ej2Pdfviewer.LinkAnnotation };
|
|
238
|
+
var BookmarkViewService = { provide: 'PdfViewerBookmarkView', useValue: ej2Pdfviewer.BookmarkView };
|
|
239
|
+
var MagnificationService = { provide: 'PdfViewerMagnification', useValue: ej2Pdfviewer.Magnification };
|
|
240
|
+
var ThumbnailViewService = { provide: 'PdfViewerThumbnailView', useValue: ej2Pdfviewer.ThumbnailView };
|
|
241
|
+
var ToolbarService = { provide: 'PdfViewerToolbar', useValue: ej2Pdfviewer.Toolbar };
|
|
242
|
+
var NavigationService = { provide: 'PdfViewerNavigation', useValue: ej2Pdfviewer.Navigation };
|
|
243
|
+
var PrintService = { provide: 'PdfViewerPrint', useValue: ej2Pdfviewer.Print };
|
|
244
|
+
var TextSelectionService = { provide: 'PdfViewerTextSelection', useValue: ej2Pdfviewer.TextSelection };
|
|
245
|
+
var TextSearchService = { provide: 'PdfViewerTextSearch', useValue: ej2Pdfviewer.TextSearch };
|
|
246
|
+
var AnnotationService = { provide: 'PdfViewerAnnotation', useValue: ej2Pdfviewer.Annotation };
|
|
247
|
+
var FormDesignerService = { provide: 'PdfViewerFormDesigner', useValue: ej2Pdfviewer.FormDesigner };
|
|
248
|
+
var FormFieldsService = { provide: 'PdfViewerFormFields', useValue: ej2Pdfviewer.FormFields };
|
|
249
|
+
var PageOrganizerService = { provide: 'PdfViewerPageOrganizer', useValue: ej2Pdfviewer.PageOrganizer };
|
|
250
|
+
/**
|
|
251
|
+
* NgModule definition for the PdfViewer component with providers.
|
|
252
|
+
*/
|
|
253
|
+
var PdfViewerAllModule = /** @class */ (function () {
|
|
254
|
+
function PdfViewerAllModule() {
|
|
255
|
+
}
|
|
256
|
+
return PdfViewerAllModule;
|
|
257
|
+
}());
|
|
258
|
+
PdfViewerAllModule.decorators = [
|
|
259
|
+
{ type: core.NgModule, args: [{
|
|
260
|
+
imports: [common.CommonModule, PdfViewerModule],
|
|
261
|
+
exports: [
|
|
262
|
+
PdfViewerModule
|
|
263
|
+
],
|
|
264
|
+
providers: [
|
|
265
|
+
LinkAnnotationService,
|
|
266
|
+
BookmarkViewService,
|
|
267
|
+
MagnificationService,
|
|
268
|
+
ThumbnailViewService,
|
|
269
|
+
ToolbarService,
|
|
270
|
+
NavigationService,
|
|
271
|
+
PrintService,
|
|
272
|
+
TextSelectionService,
|
|
273
|
+
TextSearchService,
|
|
274
|
+
AnnotationService,
|
|
275
|
+
FormDesignerService,
|
|
276
|
+
FormFieldsService,
|
|
277
|
+
PageOrganizerService
|
|
278
|
+
]
|
|
279
|
+
},] },
|
|
280
|
+
];
|
|
281
|
+
/**
|
|
282
|
+
* @nocollapse
|
|
283
|
+
*/
|
|
284
|
+
PdfViewerAllModule.ctorParameters = function () { return []; };
|
|
285
|
+
|
|
286
|
+
exports.PdfViewerModule = PdfViewerModule;
|
|
287
|
+
exports.PdfViewerAllModule = PdfViewerAllModule;
|
|
288
|
+
exports.LinkAnnotationService = LinkAnnotationService;
|
|
289
|
+
exports.BookmarkViewService = BookmarkViewService;
|
|
290
|
+
exports.MagnificationService = MagnificationService;
|
|
291
|
+
exports.ThumbnailViewService = ThumbnailViewService;
|
|
292
|
+
exports.ToolbarService = ToolbarService;
|
|
293
|
+
exports.NavigationService = NavigationService;
|
|
294
|
+
exports.PrintService = PrintService;
|
|
295
|
+
exports.TextSelectionService = TextSelectionService;
|
|
296
|
+
exports.TextSearchService = TextSearchService;
|
|
297
|
+
exports.AnnotationService = AnnotationService;
|
|
298
|
+
exports.FormDesignerService = FormDesignerService;
|
|
299
|
+
exports.FormFieldsService = FormFieldsService;
|
|
300
|
+
exports.PageOrganizerService = PageOrganizerService;
|
|
301
|
+
exports.ɵa = inputs;
|
|
302
|
+
exports.ɵb = outputs;
|
|
303
|
+
exports.Drawing = ej2Pdfviewer.Drawing;
|
|
304
|
+
exports.findActiveElement = ej2Pdfviewer.findActiveElement;
|
|
305
|
+
exports.findObjectsUnderMouse = ej2Pdfviewer.findObjectsUnderMouse;
|
|
306
|
+
exports.findObjectUnderMouse = ej2Pdfviewer.findObjectUnderMouse;
|
|
307
|
+
exports.CalculateLeaderPoints = ej2Pdfviewer.CalculateLeaderPoints;
|
|
308
|
+
exports.findElementUnderMouse = ej2Pdfviewer.findElementUnderMouse;
|
|
309
|
+
exports.insertObject = ej2Pdfviewer.insertObject;
|
|
310
|
+
exports.findTargetShapeElement = ej2Pdfviewer.findTargetShapeElement;
|
|
311
|
+
exports.findObjects = ej2Pdfviewer.findObjects;
|
|
312
|
+
exports.findActivePage = ej2Pdfviewer.findActivePage;
|
|
313
|
+
exports.ActiveElements = ej2Pdfviewer.ActiveElements;
|
|
314
|
+
exports.getConnectorPoints = ej2Pdfviewer.getConnectorPoints;
|
|
315
|
+
exports.getSegmentPath = ej2Pdfviewer.getSegmentPath;
|
|
316
|
+
exports.updateSegmentElement = ej2Pdfviewer.updateSegmentElement;
|
|
317
|
+
exports.getSegmentElement = ej2Pdfviewer.getSegmentElement;
|
|
318
|
+
exports.updateDecoratorElement = ej2Pdfviewer.updateDecoratorElement;
|
|
319
|
+
exports.getDecoratorElement = ej2Pdfviewer.getDecoratorElement;
|
|
320
|
+
exports.clipDecorators = ej2Pdfviewer.clipDecorators;
|
|
321
|
+
exports.clipDecorator = ej2Pdfviewer.clipDecorator;
|
|
322
|
+
exports.initDistanceLabel = ej2Pdfviewer.initDistanceLabel;
|
|
323
|
+
exports.updateDistanceLabel = ej2Pdfviewer.updateDistanceLabel;
|
|
324
|
+
exports.updateRadiusLabel = ej2Pdfviewer.updateRadiusLabel;
|
|
325
|
+
exports.initPerimeterLabel = ej2Pdfviewer.initPerimeterLabel;
|
|
326
|
+
exports.updatePerimeterLabel = ej2Pdfviewer.updatePerimeterLabel;
|
|
327
|
+
exports.removePerimeterLabel = ej2Pdfviewer.removePerimeterLabel;
|
|
328
|
+
exports.updateCalibrateLabel = ej2Pdfviewer.updateCalibrateLabel;
|
|
329
|
+
exports.getPolygonPath = ej2Pdfviewer.getPolygonPath;
|
|
330
|
+
exports.textElement = ej2Pdfviewer.textElement;
|
|
331
|
+
exports.initLeaders = ej2Pdfviewer.initLeaders;
|
|
332
|
+
exports.initLeader = ej2Pdfviewer.initLeader;
|
|
333
|
+
exports.isPointOverConnector = ej2Pdfviewer.isPointOverConnector;
|
|
334
|
+
exports.findNearestPoint = ej2Pdfviewer.findNearestPoint;
|
|
335
|
+
exports.getDecoratorShape = ej2Pdfviewer.getDecoratorShape;
|
|
336
|
+
exports.renderAdornerLayer = ej2Pdfviewer.renderAdornerLayer;
|
|
337
|
+
exports.createSvg = ej2Pdfviewer.createSvg;
|
|
338
|
+
exports.isLineShapes = ej2Pdfviewer.isLineShapes;
|
|
339
|
+
exports.setElementStype = ej2Pdfviewer.setElementStype;
|
|
340
|
+
exports.findPointsLength = ej2Pdfviewer.findPointsLength;
|
|
341
|
+
exports.findPerimeterLength = ej2Pdfviewer.findPerimeterLength;
|
|
342
|
+
exports.getBaseShapeAttributes = ej2Pdfviewer.getBaseShapeAttributes;
|
|
343
|
+
exports.getFunction = ej2Pdfviewer.getFunction;
|
|
344
|
+
exports.cloneObject = ej2Pdfviewer.cloneObject;
|
|
345
|
+
exports.cloneArray = ej2Pdfviewer.cloneArray;
|
|
346
|
+
exports.getInternalProperties = ej2Pdfviewer.getInternalProperties;
|
|
347
|
+
exports.isLeader = ej2Pdfviewer.isLeader;
|
|
348
|
+
exports.PdfBounds = ej2Pdfviewer.PdfBounds;
|
|
349
|
+
exports.PdfFont = ej2Pdfviewer.PdfFont;
|
|
350
|
+
exports.PdfAnnotationBase = ej2Pdfviewer.PdfAnnotationBase;
|
|
351
|
+
exports.PdfFormFieldBase = ej2Pdfviewer.PdfFormFieldBase;
|
|
352
|
+
exports.ZOrderPageTable = ej2Pdfviewer.ZOrderPageTable;
|
|
353
|
+
exports.Selector = ej2Pdfviewer.Selector;
|
|
354
|
+
exports.ToolBase = ej2Pdfviewer.ToolBase;
|
|
355
|
+
exports.SelectTool = ej2Pdfviewer.SelectTool;
|
|
356
|
+
exports.MoveTool = ej2Pdfviewer.MoveTool;
|
|
357
|
+
exports.StampTool = ej2Pdfviewer.StampTool;
|
|
358
|
+
exports.InkDrawingTool = ej2Pdfviewer.InkDrawingTool;
|
|
359
|
+
exports.ConnectTool = ej2Pdfviewer.ConnectTool;
|
|
360
|
+
exports.ResizeTool = ej2Pdfviewer.ResizeTool;
|
|
361
|
+
exports.NodeDrawingTool = ej2Pdfviewer.NodeDrawingTool;
|
|
362
|
+
exports.PolygonDrawingTool = ej2Pdfviewer.PolygonDrawingTool;
|
|
363
|
+
exports.LineTool = ej2Pdfviewer.LineTool;
|
|
364
|
+
exports.RotateTool = ej2Pdfviewer.RotateTool;
|
|
365
|
+
exports.Annotation = ej2Pdfviewer.Annotation;
|
|
366
|
+
exports.AnnotationBaseSettings = ej2Pdfviewer.AnnotationBaseSettings;
|
|
367
|
+
exports.AnnotBoundsRect = ej2Pdfviewer.AnnotBoundsRect;
|
|
368
|
+
exports.AnnotBoundsBase = ej2Pdfviewer.AnnotBoundsBase;
|
|
369
|
+
exports.AnnotRectBase = ej2Pdfviewer.AnnotRectBase;
|
|
370
|
+
exports.AnnotFontBase = ej2Pdfviewer.AnnotFontBase;
|
|
371
|
+
exports.IBounds = ej2Pdfviewer.IBounds;
|
|
372
|
+
exports.AnnotationsInternal = ej2Pdfviewer.AnnotationsInternal;
|
|
373
|
+
exports.AnnotationsBase = ej2Pdfviewer.AnnotationsBase;
|
|
374
|
+
exports.LinkAnnotation = ej2Pdfviewer.LinkAnnotation;
|
|
375
|
+
exports.TextMarkupAnnotation = ej2Pdfviewer.TextMarkupAnnotation;
|
|
376
|
+
exports.MeasurementScaleRatio = ej2Pdfviewer.MeasurementScaleRatio;
|
|
377
|
+
exports.MeasureAnnotation = ej2Pdfviewer.MeasureAnnotation;
|
|
378
|
+
exports.ShapeAnnotation = ej2Pdfviewer.ShapeAnnotation;
|
|
379
|
+
exports.StampAnnotation = ej2Pdfviewer.StampAnnotation;
|
|
380
|
+
exports.StickyNotesAnnotation = ej2Pdfviewer.StickyNotesAnnotation;
|
|
381
|
+
exports.FreeTextAnnotation = ej2Pdfviewer.FreeTextAnnotation;
|
|
382
|
+
exports.InputElement = ej2Pdfviewer.InputElement;
|
|
383
|
+
exports.InkAnnotation = ej2Pdfviewer.InkAnnotation;
|
|
384
|
+
exports.NavigationPane = ej2Pdfviewer.NavigationPane;
|
|
385
|
+
exports.PdfViewerBase = ej2Pdfviewer.PdfViewerBase;
|
|
386
|
+
exports.TextLayer = ej2Pdfviewer.TextLayer;
|
|
387
|
+
exports.ContextMenu = ej2Pdfviewer.ContextMenu;
|
|
388
|
+
exports.CommentStatus = ej2Pdfviewer.CommentStatus;
|
|
389
|
+
exports.FontStyle = ej2Pdfviewer.FontStyle;
|
|
390
|
+
exports.ContextMenuItem = ej2Pdfviewer.ContextMenuItem;
|
|
391
|
+
exports.SignatureType = ej2Pdfviewer.SignatureType;
|
|
392
|
+
exports.AnnotationResizerLocation = ej2Pdfviewer.AnnotationResizerLocation;
|
|
393
|
+
exports.ExtractTextOption = ej2Pdfviewer.ExtractTextOption;
|
|
394
|
+
exports.DisplayMode = ej2Pdfviewer.DisplayMode;
|
|
395
|
+
exports.CursorType = ej2Pdfviewer.CursorType;
|
|
396
|
+
exports.DynamicStampItem = ej2Pdfviewer.DynamicStampItem;
|
|
397
|
+
exports.SignStampItem = ej2Pdfviewer.SignStampItem;
|
|
398
|
+
exports.StandardBusinessStampItem = ej2Pdfviewer.StandardBusinessStampItem;
|
|
399
|
+
exports.AllowedInteraction = ej2Pdfviewer.AllowedInteraction;
|
|
400
|
+
exports.AnnotationDataFormat = ej2Pdfviewer.AnnotationDataFormat;
|
|
401
|
+
exports.FormFieldDataFormat = ej2Pdfviewer.FormFieldDataFormat;
|
|
402
|
+
exports.ModifierKeys = ej2Pdfviewer.ModifierKeys;
|
|
403
|
+
exports.PdfKeys = ej2Pdfviewer.PdfKeys;
|
|
404
|
+
exports.AjaxHandler = ej2Pdfviewer.AjaxHandler;
|
|
405
|
+
exports.Signature = ej2Pdfviewer.Signature;
|
|
406
|
+
exports.Spinner = ej2Pdfviewer.Spinner;
|
|
407
|
+
exports.createSpinner = ej2Pdfviewer.createSpinner;
|
|
408
|
+
exports.showSpinner = ej2Pdfviewer.showSpinner;
|
|
409
|
+
exports.hideSpinner = ej2Pdfviewer.hideSpinner;
|
|
410
|
+
exports.setSpinner = ej2Pdfviewer.setSpinner;
|
|
411
|
+
exports.BlazorUiAdaptor = ej2Pdfviewer.BlazorUiAdaptor;
|
|
412
|
+
exports.Magnification = ej2Pdfviewer.Magnification;
|
|
413
|
+
exports.Navigation = ej2Pdfviewer.Navigation;
|
|
414
|
+
exports.ThumbnailView = ej2Pdfviewer.ThumbnailView;
|
|
415
|
+
exports.Toolbar = ej2Pdfviewer.Toolbar;
|
|
416
|
+
exports.AnnotationToolbar = ej2Pdfviewer.AnnotationToolbar;
|
|
417
|
+
exports.FormDesignerToolbar = ej2Pdfviewer.FormDesignerToolbar;
|
|
418
|
+
exports.ToolbarSettings = ej2Pdfviewer.ToolbarSettings;
|
|
419
|
+
exports.CustomToolbarItem = ej2Pdfviewer.CustomToolbarItem;
|
|
420
|
+
exports.AjaxRequestSettings = ej2Pdfviewer.AjaxRequestSettings;
|
|
421
|
+
exports.CustomStamp = ej2Pdfviewer.CustomStamp;
|
|
422
|
+
exports.AnnotationToolbarSettings = ej2Pdfviewer.AnnotationToolbarSettings;
|
|
423
|
+
exports.FormDesignerToolbarSettings = ej2Pdfviewer.FormDesignerToolbarSettings;
|
|
424
|
+
exports.SignatureFieldSettings = ej2Pdfviewer.SignatureFieldSettings;
|
|
425
|
+
exports.InitialFieldSettings = ej2Pdfviewer.InitialFieldSettings;
|
|
426
|
+
exports.SignatureIndicatorSettings = ej2Pdfviewer.SignatureIndicatorSettings;
|
|
427
|
+
exports.SignatureDialogSettings = ej2Pdfviewer.SignatureDialogSettings;
|
|
428
|
+
exports.ServerActionSettings = ej2Pdfviewer.ServerActionSettings;
|
|
429
|
+
exports.StrikethroughSettings = ej2Pdfviewer.StrikethroughSettings;
|
|
430
|
+
exports.SquigglySettings = ej2Pdfviewer.SquigglySettings;
|
|
431
|
+
exports.UnderlineSettings = ej2Pdfviewer.UnderlineSettings;
|
|
432
|
+
exports.HighlightSettings = ej2Pdfviewer.HighlightSettings;
|
|
433
|
+
exports.LineSettings = ej2Pdfviewer.LineSettings;
|
|
434
|
+
exports.ArrowSettings = ej2Pdfviewer.ArrowSettings;
|
|
435
|
+
exports.RectangleSettings = ej2Pdfviewer.RectangleSettings;
|
|
436
|
+
exports.CircleSettings = ej2Pdfviewer.CircleSettings;
|
|
437
|
+
exports.ShapeLabelSettings = ej2Pdfviewer.ShapeLabelSettings;
|
|
438
|
+
exports.PolygonSettings = ej2Pdfviewer.PolygonSettings;
|
|
439
|
+
exports.StampSettings = ej2Pdfviewer.StampSettings;
|
|
440
|
+
exports.CustomStampSettings = ej2Pdfviewer.CustomStampSettings;
|
|
441
|
+
exports.DistanceSettings = ej2Pdfviewer.DistanceSettings;
|
|
442
|
+
exports.PerimeterSettings = ej2Pdfviewer.PerimeterSettings;
|
|
443
|
+
exports.AreaSettings = ej2Pdfviewer.AreaSettings;
|
|
444
|
+
exports.RadiusSettings = ej2Pdfviewer.RadiusSettings;
|
|
445
|
+
exports.VolumeSettings = ej2Pdfviewer.VolumeSettings;
|
|
446
|
+
exports.InkAnnotationSettings = ej2Pdfviewer.InkAnnotationSettings;
|
|
447
|
+
exports.StickyNotesSettings = ej2Pdfviewer.StickyNotesSettings;
|
|
448
|
+
exports.MeasurementSettings = ej2Pdfviewer.MeasurementSettings;
|
|
449
|
+
exports.FreeTextSettings = ej2Pdfviewer.FreeTextSettings;
|
|
450
|
+
exports.AnnotationSelectorSettings = ej2Pdfviewer.AnnotationSelectorSettings;
|
|
451
|
+
exports.TextSearchColorSettings = ej2Pdfviewer.TextSearchColorSettings;
|
|
452
|
+
exports.PageInfo = ej2Pdfviewer.PageInfo;
|
|
453
|
+
exports.HandWrittenSignatureSettings = ej2Pdfviewer.HandWrittenSignatureSettings;
|
|
454
|
+
exports.AnnotationSettings = ej2Pdfviewer.AnnotationSettings;
|
|
455
|
+
exports.DocumentTextCollectionSettings = ej2Pdfviewer.DocumentTextCollectionSettings;
|
|
456
|
+
exports.TextDataSettings = ej2Pdfviewer.TextDataSettings;
|
|
457
|
+
exports.RectangleBounds = ej2Pdfviewer.RectangleBounds;
|
|
458
|
+
exports.TileRenderingSettings = ej2Pdfviewer.TileRenderingSettings;
|
|
459
|
+
exports.ScrollSettings = ej2Pdfviewer.ScrollSettings;
|
|
460
|
+
exports.FormField = ej2Pdfviewer.FormField;
|
|
461
|
+
exports.ContextMenuSettings = ej2Pdfviewer.ContextMenuSettings;
|
|
462
|
+
exports.TextFieldSettings = ej2Pdfviewer.TextFieldSettings;
|
|
463
|
+
exports.PasswordFieldSettings = ej2Pdfviewer.PasswordFieldSettings;
|
|
464
|
+
exports.CheckBoxFieldSettings = ej2Pdfviewer.CheckBoxFieldSettings;
|
|
465
|
+
exports.RadioButtonFieldSettings = ej2Pdfviewer.RadioButtonFieldSettings;
|
|
466
|
+
exports.DropdownFieldSettings = ej2Pdfviewer.DropdownFieldSettings;
|
|
467
|
+
exports.ListBoxFieldSettings = ej2Pdfviewer.ListBoxFieldSettings;
|
|
468
|
+
exports.Item = ej2Pdfviewer.Item;
|
|
469
|
+
exports.KeyGesture = ej2Pdfviewer.KeyGesture;
|
|
470
|
+
exports.KeyboardCommand = ej2Pdfviewer.KeyboardCommand;
|
|
471
|
+
exports.CommandManager = ej2Pdfviewer.CommandManager;
|
|
472
|
+
exports.PageOrganizerSettings = ej2Pdfviewer.PageOrganizerSettings;
|
|
473
|
+
exports.SearchResult = ej2Pdfviewer.SearchResult;
|
|
474
|
+
exports.PdfViewer = ej2Pdfviewer.PdfViewer;
|
|
475
|
+
exports.BookmarkView = ej2Pdfviewer.BookmarkView;
|
|
476
|
+
exports.TextSelection = ej2Pdfviewer.TextSelection;
|
|
477
|
+
exports.TextSearch = ej2Pdfviewer.TextSearch;
|
|
478
|
+
exports.Print = ej2Pdfviewer.Print;
|
|
479
|
+
exports.FormFields = ej2Pdfviewer.FormFields;
|
|
480
|
+
exports.FormDesigner = ej2Pdfviewer.FormDesigner;
|
|
481
|
+
exports.AccessibilityTags = ej2Pdfviewer.AccessibilityTags;
|
|
482
|
+
exports.RectBounds = ej2Pdfviewer.RectBounds;
|
|
483
|
+
exports.PdfiumRunner = ej2Pdfviewer.PdfiumRunner;
|
|
484
|
+
exports.PageRenderer = ej2Pdfviewer.PageRenderer;
|
|
485
|
+
exports.StampAnnotationBase = ej2Pdfviewer.StampAnnotationBase;
|
|
486
|
+
exports.PdfRenderer = ej2Pdfviewer.PdfRenderer;
|
|
487
|
+
exports.SizeBase = ej2Pdfviewer.SizeBase;
|
|
488
|
+
exports.Annotations = ej2Pdfviewer.Annotations;
|
|
489
|
+
exports.FormFieldsBase = ej2Pdfviewer.FormFieldsBase;
|
|
490
|
+
exports.PdfRenderedFields = ej2Pdfviewer.PdfRenderedFields;
|
|
491
|
+
exports.AnnotationRenderer = ej2Pdfviewer.AnnotationRenderer;
|
|
492
|
+
exports.PointBase = ej2Pdfviewer.PointBase;
|
|
493
|
+
exports.FreeTextAnnotationBase = ej2Pdfviewer.FreeTextAnnotationBase;
|
|
494
|
+
exports.InkSignatureAnnotation = ej2Pdfviewer.InkSignatureAnnotation;
|
|
495
|
+
exports.ShapeAnnotationBase = ej2Pdfviewer.ShapeAnnotationBase;
|
|
496
|
+
exports.MeasureShapeAnnotationBase = ej2Pdfviewer.MeasureShapeAnnotationBase;
|
|
497
|
+
exports.SignatureAnnotationBase = ej2Pdfviewer.SignatureAnnotationBase;
|
|
498
|
+
exports.PopupAnnotationBase = ej2Pdfviewer.PopupAnnotationBase;
|
|
499
|
+
exports.TextMarkupAnnotationBase = ej2Pdfviewer.TextMarkupAnnotationBase;
|
|
500
|
+
exports.PdfLayer = ej2Pdfviewer.PdfLayer;
|
|
501
|
+
exports.AnnotPoint = ej2Pdfviewer.AnnotPoint;
|
|
502
|
+
exports.AnnotBounds = ej2Pdfviewer.AnnotBounds;
|
|
503
|
+
exports.AnnotColor = ej2Pdfviewer.AnnotColor;
|
|
504
|
+
exports.FontBase = ej2Pdfviewer.FontBase;
|
|
505
|
+
exports.Path = ej2Pdfviewer.Path;
|
|
506
|
+
exports.RectangleBase = ej2Pdfviewer.RectangleBase;
|
|
507
|
+
exports.SignatureBase = ej2Pdfviewer.SignatureBase;
|
|
508
|
+
exports.BookmarkBase = ej2Pdfviewer.BookmarkBase;
|
|
509
|
+
exports.BookmarkDestination = ej2Pdfviewer.BookmarkDestination;
|
|
510
|
+
exports.BookmarkStyles = ej2Pdfviewer.BookmarkStyles;
|
|
511
|
+
exports.getArialFontData = ej2Pdfviewer.getArialFontData;
|
|
512
|
+
exports.ImageStructureBase = ej2Pdfviewer.ImageStructureBase;
|
|
513
|
+
exports.PageOrganizer = ej2Pdfviewer.PageOrganizer;
|
|
514
|
+
exports.PdfPageRotateAngle = ej2Pdfviewer.PdfPageRotateAngle;
|
|
515
|
+
exports.PageRotation = ej2Pdfviewer.PageRotation;
|
|
516
|
+
exports.OrganizeDetails = ej2Pdfviewer.OrganizeDetails;
|
|
517
|
+
|
|
518
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
519
|
+
|
|
520
|
+
})));
|
|
521
|
+
//# sourceMappingURL=ej2-angular-pdfviewer.umd.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ej2-angular-pdfviewer.umd.js","sources":["~/@syncfusion/ej2-angular-pdfviewer/src/pdfviewer/pdfviewer-all.module.ts","~/@syncfusion/ej2-angular-pdfviewer/src/pdfviewer/pdfviewer.module.ts","~/@syncfusion/ej2-angular-pdfviewer/src/pdfviewer/pdfviewer.component.ts"],"sourcesContent":["import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PdfViewerComponent } from './pdfviewer.component';\nimport { PdfViewerModule } from './pdfviewer.module';\nimport {LinkAnnotation, BookmarkView, Magnification, ThumbnailView, Toolbar, Navigation, Print, TextSelection, TextSearch, Annotation, FormDesigner, FormFields, PageOrganizer} from '@syncfusion/ej2-pdfviewer';\n\n\nexport const /** @type {?} */ LinkAnnotationService: ValueProvider = { provide: 'PdfViewerLinkAnnotation', useValue: LinkAnnotation};\nexport const /** @type {?} */ BookmarkViewService: ValueProvider = { provide: 'PdfViewerBookmarkView', useValue: BookmarkView};\nexport const /** @type {?} */ MagnificationService: ValueProvider = { provide: 'PdfViewerMagnification', useValue: Magnification};\nexport const /** @type {?} */ ThumbnailViewService: ValueProvider = { provide: 'PdfViewerThumbnailView', useValue: ThumbnailView};\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'PdfViewerToolbar', useValue: Toolbar};\nexport const /** @type {?} */ NavigationService: ValueProvider = { provide: 'PdfViewerNavigation', useValue: Navigation};\nexport const /** @type {?} */ PrintService: ValueProvider = { provide: 'PdfViewerPrint', useValue: Print};\nexport const /** @type {?} */ TextSelectionService: ValueProvider = { provide: 'PdfViewerTextSelection', useValue: TextSelection};\nexport const /** @type {?} */ TextSearchService: ValueProvider = { provide: 'PdfViewerTextSearch', useValue: TextSearch};\nexport const /** @type {?} */ AnnotationService: ValueProvider = { provide: 'PdfViewerAnnotation', useValue: Annotation};\nexport const /** @type {?} */ FormDesignerService: ValueProvider = { provide: 'PdfViewerFormDesigner', useValue: FormDesigner};\nexport const /** @type {?} */ FormFieldsService: ValueProvider = { provide: 'PdfViewerFormFields', useValue: FormFields};\nexport const /** @type {?} */ PageOrganizerService: ValueProvider = { provide: 'PdfViewerPageOrganizer', useValue: PageOrganizer};\n/**\n * NgModule definition for the PdfViewer component with providers.\n */\nexport class PdfViewerAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, PdfViewerModule],\n exports: [\n PdfViewerModule\n ],\n providers:[\n LinkAnnotationService,\n BookmarkViewService,\n MagnificationService,\n ThumbnailViewService,\n ToolbarService,\n NavigationService,\n PrintService,\n TextSelectionService,\n TextSearchService,\n AnnotationService,\n FormDesignerService,\n FormFieldsService,\n PageOrganizerService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PdfViewerAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPdfViewerAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPdfViewerAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PdfViewerComponent } from './pdfviewer.component';\n/**\n * NgModule definition for the PdfViewer component.\n */\nexport class PdfViewerModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n PdfViewerComponent\n ],\n exports: [\n PdfViewerComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PdfViewerModule_tsickle_Closure_declarations() {\n/** @type {?} */\nPdfViewerModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPdfViewerModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { PdfViewer } from '@syncfusion/ej2-pdfviewer';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['DropdownFieldSettings','ajaxRequestSettings','annotationSelectorSettings','annotationSettings','annotations','areaSettings','arrowSettings','checkBoxFieldSettings','circleSettings','commandManager','contextMenuOption','contextMenuSettings','currentPageNumber','customContextMenuItems','customFonts','customStamp','customStampSettings','dateTimeFormat','designerMode','disableContextMenuItems','disableDefaultContextMenu','distanceSettings','documentPath','downloadFileName','drawingObject','enableAccessibilityTags','enableAnnotation','enableAnnotationToolbar','enableAutoComplete','enableBookmark','enableBookmarkStyles','enableCommentPanel','enableDesktopMode','enableDownload','enableFormDesigner','enableFormDesignerToolbar','enableFormFields','enableFormFieldsValidation','enableFreeText','enableHandwrittenSignature','enableHtmlSanitizer','enableHyperlink','enableImportAnnotationMeasurement','enableInkAnnotation','enableLocalStorage','enableMagnification','enableMeasureAnnotation','enableMultiLineOverlap','enableMultiPageAnnotation','enableNavigation','enableNavigationToolbar','enablePageOrganizer','enablePersistence','enablePinchZoom','enablePrint','enablePrintRotation','enableRtl','enableShapeAnnotation','enableShapeLabel','enableStampAnnotations','enableStickyNotesAnnotation','enableTextMarkupAnnotation','enableTextMarkupResizer','enableTextSearch','enableTextSelection','enableThumbnail','enableToolbar','enableZoomOptimization','exportAnnotationFileName','extractTextOption','formFieldCollections','formFields','freeTextSettings','handWrittenSignatureSettings','height','hideEmptyDigitalSignatureFields','hideSaveSignature','highlightSettings','hyperlinkOpenState','initialDialogSettings','initialFieldSettings','initialRenderPages','inkAnnotationSettings','interactionMode','isAnnotationToolbarOpen','isAnnotationToolbarVisible','isBookmarkPanelOpen','isCommandPanelOpen','isDocumentEdited','isExtractText','isFormDesignerToolbarVisible','isFormFieldDocument','isInitialFieldToolbarSelection','isMaintainSelection','isPageOrganizerOpen','isSignatureEditable','isThumbnailViewOpen','isValidFreeText','lineSettings','listBoxFieldSettings','locale','maxZoom','measurementSettings','minZoom','pageCount','pageOrganizerSettings','passwordFieldSettings','perimeterSettings','polygonSettings','printMode','printScaleFactor','radioButtonFieldSettings','radiusSettings','rectangleSettings','resourceUrl','restrictZoomRequest','retryCount','retryStatusCodes','retryTimeout','scrollSettings','selectedItems','serverActionSettings','serviceUrl','shapeLabelSettings','showCustomContextMenuBottom','showDigitalSignatureAppearance','showNotificationDialog','signatureDialogSettings','signatureFieldSettings','signatureFitMode','squigglySettings','stampSettings','stickyNotesSettings','strikethroughSettings','textFieldSettings','textSearchColorSettings','tileRenderingSettings','toolbarSettings','underlineSettings','volumeSettings','width','zoomMode','zoomValue'];\nexport const /** @type {?} */ outputs: string[] = ['addSignature','ajaxRequestFailed','ajaxRequestInitiate','ajaxRequestSuccess','annotationAdd','annotationDoubleClick','annotationMouseLeave','annotationMouseover','annotationMove','annotationMoving','annotationPropertiesChange','annotationRemove','annotationResize','annotationSelect','annotationUnSelect','beforeAddFreeText','bookmarkClick','buttonFieldClick','commentAdd','commentDelete','commentEdit','commentSelect','commentStatusChanged','created','customContextMenuBeforeOpen','customContextMenuSelect','documentLoad','documentLoadFailed','documentUnload','downloadEnd','downloadStart','exportFailed','exportStart','exportSuccess','extractTextCompleted','formFieldAdd','formFieldClick','formFieldDoubleClick','formFieldFocusOut','formFieldMouseLeave','formFieldMouseover','formFieldMove','formFieldPropertiesChange','formFieldRemove','formFieldResize','formFieldSelect','formFieldUnselect','hyperlinkClick','hyperlinkMouseOver','importFailed','importStart','importSuccess','keyboardCustomCommands','moveSignature','pageChange','pageClick','pageMouseover','pageOrganizerSaveAs','pageRenderComplete','pageRenderInitiate','printEnd','printStart','removeSignature','resizeSignature','resourcesLoaded','signaturePropertiesChange','signatureSelect','signatureUnselect','textSearchComplete','textSearchHighlight','textSearchStart','textSelectionEnd','textSelectionStart','thumbnailClick','toolbarClick','validateFormFields','zoomChange','pageOrganizerZoomChanged'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * `ejs-pdfviewer` represents the Angular PdfViewer Component.\n * ```html\n * <ejs-pdfviewer></ejs-pdfviewer>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class PdfViewerComponent extends PdfViewer implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\taddSignature: any;\n\tajaxRequestFailed: any;\n\tajaxRequestInitiate: any;\n\tajaxRequestSuccess: any;\n\tannotationAdd: any;\n\tannotationDoubleClick: any;\n\tannotationMouseLeave: any;\n\tannotationMouseover: any;\n\tannotationMove: any;\n\tannotationMoving: any;\n\tannotationPropertiesChange: any;\n\tannotationRemove: any;\n\tannotationResize: any;\n\tannotationSelect: any;\n\tannotationUnSelect: any;\n\tbeforeAddFreeText: any;\n\tbookmarkClick: any;\n\tbuttonFieldClick: any;\n\tcommentAdd: any;\n\tcommentDelete: any;\n\tcommentEdit: any;\n\tcommentSelect: any;\n\tcommentStatusChanged: any;\n\tcreated: any;\n\tcustomContextMenuBeforeOpen: any;\n\tcustomContextMenuSelect: any;\n\tdocumentLoad: any;\n\tdocumentLoadFailed: any;\n\tdocumentUnload: any;\n\tdownloadEnd: any;\n\tdownloadStart: any;\n\texportFailed: any;\n\texportStart: any;\n\texportSuccess: any;\n\textractTextCompleted: any;\n\tformFieldAdd: any;\n\tformFieldClick: any;\n\tformFieldDoubleClick: any;\n\tformFieldFocusOut: any;\n\tformFieldMouseLeave: any;\n\tformFieldMouseover: any;\n\tformFieldMove: any;\n\tformFieldPropertiesChange: any;\n\tformFieldRemove: any;\n\tformFieldResize: any;\n\tformFieldSelect: any;\n\tformFieldUnselect: any;\n\thyperlinkClick: any;\n\thyperlinkMouseOver: any;\n\timportFailed: any;\n\timportStart: any;\n\timportSuccess: any;\n\tkeyboardCustomCommands: any;\n\tmoveSignature: any;\n\tpageChange: any;\n\tpageClick: any;\n\tpageMouseover: any;\n\tpageOrganizerSaveAs: any;\n\tpageRenderComplete: any;\n\tpageRenderInitiate: any;\n\tprintEnd: any;\n\tprintStart: any;\n\tremoveSignature: any;\n\tresizeSignature: any;\n\tresourcesLoaded: any;\n\tsignaturePropertiesChange: any;\n\tsignatureSelect: any;\n\tsignatureUnselect: any;\n\ttextSearchComplete: any;\n\ttextSearchHighlight: any;\n\ttextSearchStart: any;\n\ttextSelectionEnd: any;\n\ttextSelectionStart: any;\n\tthumbnailClick: any;\n\ttoolbarClick: any;\n\tvalidateFormFields: any;\n\tzoomChange: any;\npublic pageOrganizerZoomChanged: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('PdfViewerLinkAnnotation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerBookmarkView');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerMagnification');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerThumbnailView');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerNavigation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerPrint');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerTextSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerTextSearch');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerAnnotation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerFormDesigner');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerFormFields');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('PdfViewerPageOrganizer');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-pdfviewer',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction PdfViewerComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nPdfViewerComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPdfViewerComponent.ctorParameters;\n/** @type {?} */\nPdfViewerComponent.prototype.context;\n/** @type {?} */\nPdfViewerComponent.prototype.tagObjects;\n/** @type {?} */\nPdfViewerComponent.prototype.addSignature;\n/** @type {?} */\nPdfViewerComponent.prototype.ajaxRequestFailed;\n/** @type {?} */\nPdfViewerComponent.prototype.ajaxRequestInitiate;\n/** @type {?} */\nPdfViewerComponent.prototype.ajaxRequestSuccess;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationAdd;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationDoubleClick;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationMouseLeave;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationMouseover;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationMove;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationMoving;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationPropertiesChange;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationRemove;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationResize;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationSelect;\n/** @type {?} */\nPdfViewerComponent.prototype.annotationUnSelect;\n/** @type {?} */\nPdfViewerComponent.prototype.beforeAddFreeText;\n/** @type {?} */\nPdfViewerComponent.prototype.bookmarkClick;\n/** @type {?} */\nPdfViewerComponent.prototype.buttonFieldClick;\n/** @type {?} */\nPdfViewerComponent.prototype.commentAdd;\n/** @type {?} */\nPdfViewerComponent.prototype.commentDelete;\n/** @type {?} */\nPdfViewerComponent.prototype.commentEdit;\n/** @type {?} */\nPdfViewerComponent.prototype.commentSelect;\n/** @type {?} */\nPdfViewerComponent.prototype.commentStatusChanged;\n/** @type {?} */\nPdfViewerComponent.prototype.created;\n/** @type {?} */\nPdfViewerComponent.prototype.customContextMenuBeforeOpen;\n/** @type {?} */\nPdfViewerComponent.prototype.customContextMenuSelect;\n/** @type {?} */\nPdfViewerComponent.prototype.documentLoad;\n/** @type {?} */\nPdfViewerComponent.prototype.documentLoadFailed;\n/** @type {?} */\nPdfViewerComponent.prototype.documentUnload;\n/** @type {?} */\nPdfViewerComponent.prototype.downloadEnd;\n/** @type {?} */\nPdfViewerComponent.prototype.downloadStart;\n/** @type {?} */\nPdfViewerComponent.prototype.exportFailed;\n/** @type {?} */\nPdfViewerComponent.prototype.exportStart;\n/** @type {?} */\nPdfViewerComponent.prototype.exportSuccess;\n/** @type {?} */\nPdfViewerComponent.prototype.extractTextCompleted;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldAdd;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldClick;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldDoubleClick;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldFocusOut;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldMouseLeave;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldMouseover;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldMove;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldPropertiesChange;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldRemove;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldResize;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldSelect;\n/** @type {?} */\nPdfViewerComponent.prototype.formFieldUnselect;\n/** @type {?} */\nPdfViewerComponent.prototype.hyperlinkClick;\n/** @type {?} */\nPdfViewerComponent.prototype.hyperlinkMouseOver;\n/** @type {?} */\nPdfViewerComponent.prototype.importFailed;\n/** @type {?} */\nPdfViewerComponent.prototype.importStart;\n/** @type {?} */\nPdfViewerComponent.prototype.importSuccess;\n/** @type {?} */\nPdfViewerComponent.prototype.keyboardCustomCommands;\n/** @type {?} */\nPdfViewerComponent.prototype.moveSignature;\n/** @type {?} */\nPdfViewerComponent.prototype.pageChange;\n/** @type {?} */\nPdfViewerComponent.prototype.pageClick;\n/** @type {?} */\nPdfViewerComponent.prototype.pageMouseover;\n/** @type {?} */\nPdfViewerComponent.prototype.pageOrganizerSaveAs;\n/** @type {?} */\nPdfViewerComponent.prototype.pageRenderComplete;\n/** @type {?} */\nPdfViewerComponent.prototype.pageRenderInitiate;\n/** @type {?} */\nPdfViewerComponent.prototype.printEnd;\n/** @type {?} */\nPdfViewerComponent.prototype.printStart;\n/** @type {?} */\nPdfViewerComponent.prototype.removeSignature;\n/** @type {?} */\nPdfViewerComponent.prototype.resizeSignature;\n/** @type {?} */\nPdfViewerComponent.prototype.resourcesLoaded;\n/** @type {?} */\nPdfViewerComponent.prototype.signaturePropertiesChange;\n/** @type {?} */\nPdfViewerComponent.prototype.signatureSelect;\n/** @type {?} */\nPdfViewerComponent.prototype.signatureUnselect;\n/** @type {?} */\nPdfViewerComponent.prototype.textSearchComplete;\n/** @type {?} */\nPdfViewerComponent.prototype.textSearchHighlight;\n/** @type {?} */\nPdfViewerComponent.prototype.textSearchStart;\n/** @type {?} */\nPdfViewerComponent.prototype.textSelectionEnd;\n/** @type {?} */\nPdfViewerComponent.prototype.textSelectionStart;\n/** @type {?} */\nPdfViewerComponent.prototype.thumbnailClick;\n/** @type {?} */\nPdfViewerComponent.prototype.toolbarClick;\n/** @type {?} */\nPdfViewerComponent.prototype.validateFormFields;\n/** @type {?} */\nPdfViewerComponent.prototype.zoomChange;\n/** @type {?} */\nPdfViewerComponent.prototype.pageOrganizerZoomChanged;\n/** @type {?} */\nPdfViewerComponent.prototype.registerEvents;\n/** @type {?} */\nPdfViewerComponent.prototype.addTwoWay;\n/** @type {?} */\nPdfViewerComponent.prototype.ngEle;\n/** @type {?} */\nPdfViewerComponent.prototype.srenderer;\n/** @type {?} */\nPdfViewerComponent.prototype.viewContainerRef;\n/** @type {?} */\nPdfViewerComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","PageOrganizer","FormFields","FormDesigner","Annotation","TextSearch","TextSelection","Print","Navigation","Toolbar","ThumbnailView","Magnification","BookmarkView","LinkAnnotation","PdfViewerComponent","Injector","ViewContainerRef","Renderer2","ElementRef","ComponentMixins","ComponentBase","ChangeDetectionStrategy","Component","PdfViewer","setValue"],"mappings":"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"}
|