Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-pdfviewer

Package Overview
Dependencies
23
Maintainers
3
Versions
271
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 25.1.35 to 25.1.37

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 25.1.35
* version : 25.1.37
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"_from": "@syncfusion/ej2-pdfviewer@*",
"_id": "@syncfusion/ej2-pdfviewer@22.16.57",
"_id": "@syncfusion/ej2-pdfviewer@25.1.35",
"_inBundle": false,
"_integrity": "sha512-oJTECf9nzqC6uhetqXqG3JOaKtSEiPvHas4XxxKgtEGBEOgkkZiXahkbzo/oVltMhQuP+8rizWVsVoPmhdXhNw==",
"_integrity": "sha512-S7YJAPCj6NL7b6vZU9+0WE1rvQum1/kVdC6hv3PQzgMZiw25X9jDv8aBvMkHUHVS2AM3gszuvgNRWoMHOkdiYg==",
"_location": "/@syncfusion/ej2-pdfviewer",

@@ -26,4 +26,4 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-pdfviewer/-/ej2-pdfviewer-22.16.57.tgz",
"_shasum": "4c21cf372dd4b8dc268b096dc2908f60d709ba73",
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-pdfviewer/-/ej2-pdfviewer-25.1.35.tgz",
"_shasum": "a6352a241c3f8d26c6e33b1a8d5b38d65f966355",
"_spec": "@syncfusion/ej2-pdfviewer@*",

@@ -42,10 +42,10 @@ "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",

"@syncfusion/ej2-data": "~25.1.35",
"@syncfusion/ej2-drawings": "~25.1.35",
"@syncfusion/ej2-dropdowns": "~25.1.35",
"@syncfusion/ej2-drawings": "~25.1.37",
"@syncfusion/ej2-dropdowns": "~25.1.37",
"@syncfusion/ej2-inplace-editor": "~25.1.35",
"@syncfusion/ej2-inputs": "~25.1.35",
"@syncfusion/ej2-inputs": "~25.1.37",
"@syncfusion/ej2-lists": "~25.1.35",
"@syncfusion/ej2-navigations": "~25.1.35",
"@syncfusion/ej2-navigations": "~25.1.37",
"@syncfusion/ej2-notifications": "~25.1.35",
"@syncfusion/ej2-pdf": "~25.1.35",
"@syncfusion/ej2-pdf": "~25.1.37",
"@syncfusion/ej2-popups": "~25.1.35"

@@ -77,4 +77,4 @@ },

"typings": "index.d.ts",
"version": "25.1.35",
"version": "25.1.37",
"sideEffects": false
}

@@ -448,6 +448,9 @@ import { FreeTextSettings, HighlightSettings, LineSettings, StickyNotesSettings, StrikethroughSettings, UnderlineSettings, RectangleSettings, CircleSettings, ArrowSettings, PerimeterSettings, DistanceSettings, AreaSettings, RadiusSettings, VolumeSettings, PolygonSettings, InkAnnotationSettings, StampSettings, CustomStampSettings } from './../pdfviewer';

modifyDynamicTextValue(dynamicText: string, annotName: string): void;
private modifyInCollections;
/**
* @private
*/
modifyInCollections(annotationBase: PdfAnnotationBaseModel, property: string): any;
/**
* @private
*/
createPropertiesWindow(): void;

@@ -454,0 +457,0 @@ private updatePropertiesWindowInBlazor;

@@ -197,3 +197,3 @@ import { splitArrayCollection, processPathData, getPathString } from '@syncfusion/ej2-drawings';

var subject = (this.pdfViewer.annotationSettings.subject !== "" && !isNullOrUndefined(this.pdfViewer.annotationSettings.subject)) ? this.pdfViewer.annotationSettings.subject : this.pdfViewer.inkAnnotationSettings.subject ? this.pdfViewer.inkAnnotationSettings.subject : 'Ink';
var customData = this.pdfViewer.inkAnnotationSettings.customData;
var customData = !isNullOrUndefined(this.pdfViewer.annotationSettings.customData) ? this.pdfViewer.annotationSettings.customData : this.pdfViewer.inkAnnotationSettings.customData ? this.pdfViewer.inkAnnotationSettings.customData : null;
var isPrint = this.pdfViewer.inkAnnotationSettings.isPrint;

@@ -200,0 +200,0 @@ // eslint-disable-next-line

@@ -1688,2 +1688,3 @@ import { PdfViewer, TextLayer, Signature, AccessibilityTags } from '../index';

private findImportedAnnotations;
private setAnnotationSettings;
private drawPageAnnotations;

@@ -1717,2 +1718,3 @@ private checkSignatureCollections;

deleteAnnotations(): void;
private updateAnnotationsUndoRedo;
/**

@@ -1719,0 +1721,0 @@ * @param pageNumber

@@ -309,3 +309,3 @@ import { DrawingElement, PointModel } from "@syncfusion/ej2-drawings";

*/
removeFieldsFromAnnotationCollections(annotationId: string): any;
removeFieldsFromAnnotationCollections(annotationId: string, fieldName: string): any;
/**

@@ -312,0 +312,0 @@ * @private

@@ -179,2 +179,6 @@ import { PageRenderer, FormFieldsBase, AnnotationRenderer, PdfRenderedFields, SignatureBase, BookmarkStyles, BookmarkDestination, BookmarkBase, AnnotBounds } from './index';

private textExtraction;
/**
* @private
*/
textExtractionOnmessage(event: any): Promise<{}>;
extractTextWithPageSize(pageIndex: number): Promise<{

@@ -181,0 +185,0 @@ [key: number]: PageTextData;

@@ -207,2 +207,4 @@ // eslint-disable-next-line

data.message = 'textExtracted';
data.isLayout = event.data.isLayout;
data.isRenderText = event.data.isRenderText;
ctx.postMessage(data);

@@ -209,0 +211,0 @@ }

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc