@syncfusion/ej2-pdfviewer 17.3.49-4568 → 17.3.51-4568

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.
@@ -17998,9 +17998,6 @@ var PdfViewerBase = /** @class */ (function () {
17998
17998
  */
17999
17999
  // eslint-disable-next-line
18000
18000
  this.zoomInterval = 5;
18001
- /**
18002
- * @private
18003
- */
18004
18001
  /**
18005
18002
  * EJ2CORE-813 - This flag is represent current device is 'iPad' or 'iPhone' or'iPod' device.
18006
18003
  * @private
@@ -18018,6 +18015,8 @@ var PdfViewerBase = /** @class */ (function () {
18018
18015
  // tslint:disable-next-line
18019
18016
  this.previousContainerHeight = 0;
18020
18017
  this.isGotoPageEnabled = false;
18018
+ this.taggedTextHandler = null;
18019
+ this.taggedCollection = [];
18021
18020
  this.clearSessionStorage = function () {
18022
18021
  var documentId = window.sessionStorage.getItem('hashId');
18023
18022
  var documentLiveCount = window.sessionStorage.getItem('documentLiveCount');
@@ -19124,6 +19123,7 @@ var PdfViewerBase = /** @class */ (function () {
19124
19123
  this.pdfViewer = viewer;
19125
19124
  this.navigationPane = new NavigationPane(this.pdfViewer, this);
19126
19125
  this.textLayer = new TextLayer(this.pdfViewer, this);
19126
+ this.taggedPdf = new TaggedPDF(this.pdfViewer, this);
19127
19127
  this.signatureModule = new Signature(this.pdfViewer, this);
19128
19128
  // tslint:disable-next-line:max-line-length
19129
19129
  this.isWebkitMobile = /Chrome/.test(navigator.userAgent) || /Google Inc/.test(navigator.vendor) || (navigator.userAgent.indexOf('Safari') !== -1);
@@ -19951,6 +19951,9 @@ var PdfViewerBase = /** @class */ (function () {
19951
19951
  if (this.renderedPagesList) {
19952
19952
  this.renderedPagesList = [];
19953
19953
  }
19954
+ if (this.taggedCollection) {
19955
+ this.taggedCollection = [];
19956
+ }
19954
19957
  if (this.pageContainer) {
19955
19958
  while (this.pageContainer.hasChildNodes()) {
19956
19959
  this.pageContainer.removeChild(this.pageContainer.lastChild);
@@ -20597,7 +20600,7 @@ var PdfViewerBase = /** @class */ (function () {
20597
20600
  if (this.isDeviceiOS) {
20598
20601
  var obj = findActiveElement(event, this, this.pdfViewer);
20599
20602
  // eslint-disable-next-line
20600
- var isRemoveFocus_1 = !this.pdfViewer.annotation.freeTextAnnotationModule.isNewFreeTextAnnot && (obj && this.pdfViewer.selectedItems.annotations[0] ? obj.id !== this.pdfViewer.selectedItems.annotations[0].id : true) && document.activeElement.classList.contains('free-text-input') && this.isFreeTextAnnotation(this.pdfViewer.selectedItems.annotations);
20603
+ var isRemoveFocus_1 = (!isNullOrUndefined(this.pdfViewer.annotation) && !isNullOrUndefined(this.pdfViewer.annotation.freeTextAnnotationModule) && !this.pdfViewer.annotation.freeTextAnnotationModule.isNewFreeTextAnnot) && (obj && this.pdfViewer.selectedItems.annotations[0] ? obj.id !== this.pdfViewer.selectedItems.annotations[0].id : true) && document.activeElement.classList.contains('free-text-input') && this.isFreeTextAnnotation(this.pdfViewer.selectedItems.annotations);
20601
20604
  if (!this.singleTapTimer) {
20602
20605
  this.singleTapTimer = setTimeout(function () {
20603
20606
  if (isRemoveFocus_1) {
@@ -20612,6 +20615,9 @@ var PdfViewerBase = /** @class */ (function () {
20612
20615
  else {
20613
20616
  if (this.pdfViewer.enablePinchZoom) {
20614
20617
  this.tapCount++;
20618
+ if (this.tapCount > 2) {
20619
+ this.tapCount = 2;
20620
+ }
20615
20621
  clearTimeout(this.singleTapTimer);
20616
20622
  this.singleTapTimer = null;
20617
20623
  this.onDoubleTap(touchPoints);
@@ -20629,6 +20635,9 @@ var PdfViewerBase = /** @class */ (function () {
20629
20635
  else {
20630
20636
  if (this.pdfViewer.enablePinchZoom) {
20631
20637
  this.tapCount++;
20638
+ if (this.tapCount > 2) {
20639
+ this.tapCount = 2;
20640
+ }
20632
20641
  clearTimeout(this.singleTapTimer);
20633
20642
  this.singleTapTimer = null;
20634
20643
  this.onDoubleTap(touchPoints);
@@ -21197,6 +21206,14 @@ var PdfViewerBase = /** @class */ (function () {
21197
21206
  if (this.pdfViewer.textSelectionModule && !this.isTextSelectionDisabled) {
21198
21207
  this.pdfViewer.textSelectionModule.applySelectionRangeOnScroll(pageIndex);
21199
21208
  }
21209
+ if (this.pdfViewer.taggedPDFModule && this.pdfViewer.enableTaggedPDF) {
21210
+ if (this.taggedCollection[pageIndex.toString()]) {
21211
+ this.renderTaggedTextContentsFromServer(pageIndex, this.taggedCollection[pageIndex.toString()]);
21212
+ }
21213
+ else {
21214
+ this.createRequestForTaggedText(pageIndex);
21215
+ }
21216
+ }
21200
21217
  if (this.documentAnnotationCollections) {
21201
21218
  var isAnnotationAdded = false;
21202
21219
  for (var i = 0; i < this.annotationRenderredList.length; i++) {
@@ -21391,6 +21408,33 @@ var PdfViewerBase = /** @class */ (function () {
21391
21408
  }
21392
21409
  }
21393
21410
  };
21411
+ PdfViewerBase.prototype.renderTaggedTextContentsFromServer = function (pageIndex, taggedTextResponse) {
21412
+ this.taggedPdf.renderTaggedTextContentsFromServer(pageIndex, taggedTextResponse);
21413
+ };
21414
+ PdfViewerBase.prototype.createRequestForTaggedText = function (pageIndex) {
21415
+ var jsonObject;
21416
+ var proxy = this;
21417
+ jsonObject = { action: 'RenderTaggedContent', elementId: this.pdfViewer.element.id, hashId: this.hashId, uniqueId: this.documentId, pageIndex: pageIndex };
21418
+ if (this.jsonDocumentId) {
21419
+ jsonObject.documentId = this.jsonDocumentId;
21420
+ }
21421
+ var url = this.pdfViewer.serviceUrl + '/' + "RenderTaggedContent";
21422
+ this.taggedTextHandler = new AjaxHandler(this.pdfViewer);
21423
+ this.taggedTextHandler.url = url;
21424
+ this.taggedTextHandler.mode = true;
21425
+ this.taggedTextHandler.responseType = 'text';
21426
+ this.taggedTextHandler.send(jsonObject);
21427
+ this.taggedTextHandler.onSuccess = function (result) {
21428
+ var data = JSON.parse(result.data);
21429
+ var pageData = data.filter(function (item) { return (item.PageNumber).toString() === pageIndex.toString(); });
21430
+ proxy.taggedCollection[pageIndex.toString()] = pageData;
21431
+ proxy.renderTaggedTextContentsFromServer(pageIndex, pageData);
21432
+ };
21433
+ this.taggedTextHandler.onFailure = function (result) {
21434
+ console.log("error");
21435
+ };
21436
+ };
21437
+
21394
21438
  PdfViewerBase.prototype.renderPageContainer = function (pageNumber, pageWidth, pageHeight, topValue) {
21395
21439
  // tslint:disable-next-line:max-line-length
21396
21440
  var pageDiv = createElement('div', { id: this.pdfViewer.element.id + '_pageDiv_' + pageNumber, className: 'e-pv-page-div', attrs: { 'tabindex': '0' } });
@@ -24692,6 +24736,9 @@ var TextLayer = /** @class */ (function () {
24692
24736
  textLayer = createElement('div', { id: this.pdfViewer.element.id + '_textLayer_' + pageNumber, className: 'e-pv-text-layer' });
24693
24737
  textLayer.style.width = pageWidth + 'px';
24694
24738
  textLayer.style.height = pageHeight + 'px';
24739
+ if (this.pdfViewer.taggedPDFModule && this.pdfViewer.enableTaggedPDF) {
24740
+ textLayer.setAttribute('aria-hidden', 'true');
24741
+ }
24695
24742
  pageDiv.appendChild(textLayer);
24696
24743
  }
24697
24744
  this.pdfViewerBase.applyElementStyles(textLayer, pageNumber);
@@ -27433,6 +27480,7 @@ var Magnification = /** @class */ (function () {
27433
27480
  * @private
27434
27481
  */
27435
27482
  Magnification.prototype.onDoubleTapMagnification = function () {
27483
+ var _this = this;
27436
27484
  if (this.pdfViewer.toolbarModule) {
27437
27485
  this.pdfViewer.toolbarModule.showToolbar(false);
27438
27486
  }
@@ -27452,6 +27500,7 @@ var Magnification = /** @class */ (function () {
27452
27500
  }
27453
27501
  this.calculateScrollValues(scrollValue);
27454
27502
  this.isTapToFitZoom = !this.isTapToFitZoom;
27503
+ setTimeout(function () { _this.isMagnified = false; }, 500);
27455
27504
  this.isDoubleTapZoom = false;
27456
27505
  }
27457
27506
  };
@@ -36142,6 +36191,20 @@ var PdfViewer = /** @class */ (function (_super) {
36142
36191
  enumerable: true,
36143
36192
  configurable: true
36144
36193
  });
36194
+ Object.defineProperty(PdfViewer.prototype, "taggedPdf", {
36195
+ /**
36196
+ * Gets the tagged layer object of the pdf viewer.
36197
+ *
36198
+ * @asptype TaggedPDF
36199
+ * @blazorType TaggedPDF
36200
+ * @returns { TaggedPDF }
36201
+ */
36202
+ get: function () {
36203
+ return this.taggedPDFModule;
36204
+ },
36205
+ enumerable: true,
36206
+ configurable: true
36207
+ });
36145
36208
  Object.defineProperty(PdfViewer.prototype, "toolbar", {
36146
36209
  /**
36147
36210
  * Gets the toolbar object of the pdf viewer.
@@ -36375,6 +36438,11 @@ var PdfViewer = /** @class */ (function (_super) {
36375
36438
  member: 'FormFields', args: [this, this.viewerBase]
36376
36439
  });
36377
36440
  }
36441
+ if (this.enableTaggedPDF) {
36442
+ modules.push({
36443
+ member: 'TaggedPDF', args: [this, this.viewerBase]
36444
+ });
36445
+ }
36378
36446
  return modules;
36379
36447
  };
36380
36448
  /**
@@ -37234,6 +37302,9 @@ var PdfViewer = /** @class */ (function (_super) {
37234
37302
  __decorate$2([
37235
37303
  Property(false)
37236
37304
  ], PdfViewer.prototype, "isExtractText", void 0);
37305
+ __decorate$2([
37306
+ Property(true)
37307
+ ], PdfViewer.prototype, "enableTaggedPDF", void 0);
37237
37308
  __decorate$2([
37238
37309
  Property({ showTooltip: true, toolbarItems: ['OpenOption', 'UndoRedoTool', 'PageNavigationTool', 'MagnificationTool', 'PanTool', 'SelectionTool', 'CommentTool', 'AnnotationEditTool', 'FreeTextAnnotationOption', 'InkAnnotationOption', 'ShapeAnnotationOption', 'StampAnnotation', 'SignatureOption', 'SearchOption', 'PrintOption', 'DownloadOption'] })
37239
37310
  ], PdfViewer.prototype, "toolbarSettings", void 0);
@@ -42093,6 +42164,204 @@ var FormFields = /** @class */ (function () {
42093
42164
  return FormFields;
42094
42165
  }());
42095
42166
 
42167
+ /**
42168
+ * export types
42169
+ */
42170
+
42171
+ /**
42172
+ * Tagged PDF module is used to handle tagged pdf document
42173
+ *
42174
+ * @hidden
42175
+ */
42176
+ var TaggedPDF = /** @class */ (function () {
42177
+ /**
42178
+ * @param {PdfViewer} pdfViewer - The PdfViewer.
42179
+ * @param {PdfViewerBase} pdfViewerBase - The PdfViewerBase.
42180
+ * @private
42181
+ */
42182
+ function TaggedPDF(pdfViewer, pdfViewerBase) {
42183
+ this.createTag = function (taggedTextResponse) {
42184
+ var _this = this;
42185
+ var tagType = taggedTextResponse.TagType;
42186
+ var parentTagType = taggedTextResponse.ParentTagType;
42187
+ var text = taggedTextResponse.Text;
42188
+ var altText = taggedTextResponse.AltText;
42189
+ var bounds = taggedTextResponse.Bounds;
42190
+ var childTags = taggedTextResponse.ChildElements;
42191
+ var textTag = document.createElement(this.getTag(tagType));
42192
+ textTag.style = "padding:0px;margin:0px";
42193
+ if (parentTagType != "Document" && parentTagType != "Part") {
42194
+ textTag.style.position = 'absolute';
42195
+ }
42196
+ if (bounds) {
42197
+ this.setStyleToTaggedTextDiv(textTag, bounds);
42198
+ this.setTextElementProperties(textTag);
42199
+ }
42200
+ if (text.trim() != "") {
42201
+ textTag.innerText = text;
42202
+ }
42203
+ if (altText && altText.trim() !== "" && (tagType === "Image" || tagType === "Figure")) {
42204
+ textTag.alt = altText;
42205
+ textTag.src = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNgYAAAAAMAASsJTYQAAAAASUVORK5CYII=";
42206
+ }
42207
+ if (childTags && childTags.length > 0) {
42208
+ childTags.forEach(function (element) {
42209
+ if (tagType === "Table") {
42210
+ element.ChildElements.forEach(function (newelement) {
42211
+ textTag.appendChild(_this.createTag(newelement));
42212
+ });
42213
+ }
42214
+ else {
42215
+ textTag.appendChild(_this.createTag(element));
42216
+ }
42217
+ });
42218
+ }
42219
+ return textTag;
42220
+ };
42221
+ this.pdfViewer = pdfViewer;
42222
+ this.pdfViewerBase = pdfViewerBase;
42223
+ }
42224
+ TaggedPDF.prototype.addTaggedLayer = function (pageIndex) {
42225
+ var taggedLayer;
42226
+ if (this.pdfViewer.enableTaggedPDF) {
42227
+ var pageDiv = document.getElementById(this.pdfViewer.element.id + '_pageDiv_' + pageIndex);
42228
+ taggedLayer = document.getElementById(this.pdfViewer.element.id + '_taggedLayer_' + pageIndex);
42229
+ if (!taggedLayer) {
42230
+ taggedLayer = createElement('div', { id: this.pdfViewer.element.id + '_taggedLayer_' + pageIndex, className: 'e-pv-tagged-layer e-pv-text-layer' });
42231
+ }
42232
+ taggedLayer.innerHTML = "";
42233
+ taggedLayer.style.width = this.pdfViewerBase.pageSize[parseInt(pageIndex.toString(), 10)].width * this.pdfViewerBase.getZoomFactor() + 'px';
42234
+ taggedLayer.style.height = this.pdfViewerBase.pageSize[parseInt(pageIndex.toString(), 10)].height * this.pdfViewerBase.getZoomFactor() + 'px';
42235
+ taggedLayer.style.pointerEvents = "none";
42236
+ if (pageDiv) {
42237
+ pageDiv.appendChild(taggedLayer);
42238
+ }
42239
+ }
42240
+ return taggedLayer;
42241
+ };
42242
+ TaggedPDF.prototype.renderTaggedTextContentsFromServer = function (pageIndex, taggedTextResponse) {
42243
+ var taggedLayer = this.addTaggedLayer(pageIndex);
42244
+ for (var i = 0; i < taggedTextResponse.length; i++) {
42245
+ var textDiv = createElement('div', { id: this.pdfViewer.element.id + '_taggedText_' + pageIndex + '_' + i, className: 'e-pv-text', attrs: { 'tabindex': '-1' } });
42246
+ var bounds = taggedTextResponse[i].Bounds;
42247
+ if (taggedTextResponse[i].TagType === "Paragraph" && taggedTextResponse[i].ChildElements === null && taggedTextResponse[i].Text.trim() === "") {
42248
+ continue;
42249
+ }
42250
+ else {
42251
+ textDiv.appendChild(this.createTag(taggedTextResponse[i]));
42252
+ }
42253
+ textDiv.style.display = "inline";
42254
+ this.setStyleToTaggedTextDiv(textDiv, bounds);
42255
+ this.setTextElementProperties(textDiv);
42256
+ taggedLayer.appendChild(textDiv);
42257
+ }
42258
+ };
42259
+ TaggedPDF.prototype.getTag = function (tagType) {
42260
+ switch (tagType) {
42261
+ case "Paragraph":
42262
+ return "p";
42263
+ case "Figure":
42264
+ return "img";
42265
+ case "Article":
42266
+ return "art";
42267
+ case "Annotation":
42268
+ return "annot";
42269
+ case "BibliographyEntry":
42270
+ return "bibentry";
42271
+ case "BlockQuotation":
42272
+ return "blockQuote";
42273
+ case "Caption":
42274
+ return "caption";
42275
+ case "Code":
42276
+ return "code";
42277
+ case "Division":
42278
+ return "div";
42279
+ case "Document":
42280
+ return "document";
42281
+ case "Form":
42282
+ return "form";
42283
+ case "Formula":
42284
+ return "formula";
42285
+ case "Index":
42286
+ return "index";
42287
+ case "Heading":
42288
+ return "h";
42289
+ case "HeadingLevel1":
42290
+ return "h1";
42291
+ case "HeadingLevel2":
42292
+ return "h2";
42293
+ case "HeadingLevel3":
42294
+ return "h3";
42295
+ case "HeadingLevel4":
42296
+ return "h4";
42297
+ case "HeadingLevel5":
42298
+ return "h5";
42299
+ case "HeadingLevel6":
42300
+ return "h6";
42301
+ case "Label":
42302
+ return "label";
42303
+ case "Link":
42304
+ return "a";
42305
+ case "List":
42306
+ return "ul";
42307
+ case "ListItem":
42308
+ return "li";
42309
+ case "ListBody":
42310
+ return "p";
42311
+ case "Note":
42312
+ return "note";
42313
+ case "Part":
42314
+ return "part";
42315
+ case "Quotation":
42316
+ return "quote";
42317
+ case "Reference":
42318
+ return "reference";
42319
+ case "Section":
42320
+ return "sect";
42321
+ case "Span":
42322
+ return "span";
42323
+ case "Table":
42324
+ return "table";
42325
+ case "TableDataCell":
42326
+ return "td";
42327
+ case "TableHeader":
42328
+ return "th";
42329
+ case "TableOfContent":
42330
+ return "toc";
42331
+ case "TableOfContentItem":
42332
+ return "toci";
42333
+ case "TableRow":
42334
+ return "tr";
42335
+ case "Image":
42336
+ return "img";
42337
+ default:
42338
+ return "p";
42339
+ }
42340
+ };
42341
+
42342
+ TaggedPDF.prototype.setStyleToTaggedTextDiv = function (textDiv, bounds) {
42343
+ textDiv.style.left = bounds.X * (96 / 72) * this.pdfViewerBase.getZoomFactor() + 'px';
42344
+ textDiv.style.top = bounds.Y * (96 / 72) * this.pdfViewerBase.getZoomFactor() + 'px';
42345
+ textDiv.style.width = bounds.Width * (96 / 72) * this.pdfViewerBase.getZoomFactor() + 'px';
42346
+ var textHeight = bounds.Height * (96 / 72) * this.pdfViewerBase.getZoomFactor();
42347
+ textDiv.style.height = textHeight + 'px';
42348
+ textDiv.style.fontSize = 16 * this.pdfViewerBase.getZoomFactor() + 'px';
42349
+ textDiv.style.color = 'transparent';
42350
+ };
42351
+
42352
+ TaggedPDF.prototype.setTextElementProperties = function (textDiv) {
42353
+ textDiv.style.fontFamily = 'serif';
42354
+ textDiv.style.transformOrigin = '0%';
42355
+ };
42356
+ /**
42357
+ * @private
42358
+ */
42359
+ TaggedPDF.prototype.getModuleName = function () {
42360
+ return 'TaggedPDF';
42361
+ };
42362
+ return TaggedPDF;
42363
+ }());
42364
+
42096
42365
  /**
42097
42366
  * export types
42098
42367
  */
@@ -42109,5 +42378,5 @@ var FormFields = /** @class */ (function () {
42109
42378
  * export PDF viewer modules
42110
42379
  */
42111
42380
 
42112
- export { Annotation, LinkAnnotation, TextMarkupAnnotation, MeasureAnnotation, ShapeAnnotation, StampAnnotation, StickyNotesAnnotation, FreeTextAnnotation, InputElement, NavigationPane, PdfViewerBase, TextLayer, ContextMenu$1 as ContextMenu, FontStyle, AnnotationResizerLocation, CursorType, AjaxHandler, Signature, Magnification, Navigation, ThumbnailView, Toolbar$1 as Toolbar, AnnotationToolbar, ToolbarSettings, AjaxRequestSettings, CustomStampItem, AnnotationToolbarSettings, ServerActionSettings, StrikethroughSettings, UnderlineSettings, HighlightSettings, LineSettings, ArrowSettings, RectangleSettings, CircleSettings, ShapeLabelSettings, PolygonSettings, StampSettings, CustomStampSettings, DistanceSettings, PerimeterSettings, AreaSettings, RadiusSettings, VolumeSettings, StickyNotesSettings, MeasurementSettings, FreeTextSettings, AnnotationSelectorSettings, TextSearchColorSettings, HandWrittenSignatureSettings, AnnotationSettings, DocumentTextCollectionSettings, TextDataSettings, RectangleBounds, TileRenderingSettings, ScrollSettings, PdfViewer, BookmarkView, TextSelection, TextSearch, Print, FormFields, Drawing, findActiveElement, findObjectsUnderMouse, findObjectUnderMouse, CalculateLeaderPoints, findElementUnderMouse, insertObject, findTargetShapeElement, findObjects, findActivePage, ActiveElements, getConnectorPoints, getSegmentPath, updateSegmentElement, getSegmentElement, updateDecoratorElement, getDecoratorElement, clipDecorators, clipDecorator, initDistanceLabel, updateDistanceLabel, updateRadiusLabel, initPerimeterLabel, updatePerimeterLabel, removePerimeterLabel, updateCalibrateLabel, getPolygonPath, textElement, initLeaders, initLeader, isPointOverConnector, findNearestPoint, getDecoratorShape, renderAdornerLayer, createSvg, isLineShapes, setElementStype, findPointsLength, findPerimeterLength, getBaseShapeAttributes, getFunction, cloneObject, cloneArray, getInternalProperties, isLeader, PdfBounds, PdfFont, PdfAnnotationBase, ZOrderPageTable, Selector, ToolBase, SelectTool, MoveTool, StampTool, ConnectTool, ResizeTool, NodeDrawingTool, PolygonDrawingTool, LineTool, RotateTool };
42381
+ export { Annotation, LinkAnnotation, TextMarkupAnnotation, MeasureAnnotation, ShapeAnnotation, StampAnnotation, StickyNotesAnnotation, FreeTextAnnotation, InputElement, NavigationPane, PdfViewerBase, TextLayer, ContextMenu$1 as ContextMenu, FontStyle, AnnotationResizerLocation, CursorType, AjaxHandler, Signature, Magnification, Navigation, ThumbnailView, Toolbar$1 as Toolbar, AnnotationToolbar, ToolbarSettings, AjaxRequestSettings, CustomStampItem, AnnotationToolbarSettings, ServerActionSettings, StrikethroughSettings, UnderlineSettings, HighlightSettings, LineSettings, ArrowSettings, RectangleSettings, CircleSettings, ShapeLabelSettings, PolygonSettings, StampSettings, CustomStampSettings, DistanceSettings, PerimeterSettings, AreaSettings, RadiusSettings, VolumeSettings, StickyNotesSettings, MeasurementSettings, FreeTextSettings, AnnotationSelectorSettings, TextSearchColorSettings, HandWrittenSignatureSettings, AnnotationSettings, DocumentTextCollectionSettings, TextDataSettings, RectangleBounds, TileRenderingSettings, ScrollSettings, PdfViewer, BookmarkView, TextSelection, TextSearch, Print, FormFields, TaggedPDF, Drawing, findActiveElement, findObjectsUnderMouse, findObjectUnderMouse, CalculateLeaderPoints, findElementUnderMouse, insertObject, findTargetShapeElement, findObjects, findActivePage, ActiveElements, getConnectorPoints, getSegmentPath, updateSegmentElement, getSegmentElement, updateDecoratorElement, getDecoratorElement, clipDecorators, clipDecorator, initDistanceLabel, updateDistanceLabel, updateRadiusLabel, initPerimeterLabel, updatePerimeterLabel, removePerimeterLabel, updateCalibrateLabel, getPolygonPath, textElement, initLeaders, initLeader, isPointOverConnector, findNearestPoint, getDecoratorShape, renderAdornerLayer, createSvg, isLineShapes, setElementStype, findPointsLength, findPerimeterLength, getBaseShapeAttributes, getFunction, cloneObject, cloneArray, getInternalProperties, isLeader, PdfBounds, PdfFont, PdfAnnotationBase, ZOrderPageTable, Selector, ToolBase, SelectTool, MoveTool, StampTool, ConnectTool, ResizeTool, NodeDrawingTool, PolygonDrawingTool, LineTool, RotateTool };
42113
42382
  //# sourceMappingURL=ej2-pdfviewer.es5.js.map