@syncfusion/ej2-vue-pdfviewer 20.3.60 → 20.4.40

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-pdfviewer@*",
3
- "_id": "@syncfusion/ej2-vue-pdfviewer@20.3.59",
3
+ "_id": "@syncfusion/ej2-vue-pdfviewer@20.4.38",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-NXcRXICRwKq8QU1dHEReszOegxFKIU6Z3BGYzjyGNmDdhb+VPlyVKnBbC+K7/SJAK/YmzFze45PK0fVLu7t4gg==",
5
+ "_integrity": "sha512-HYo0FRyM6FWRyAW4tPvkOcGUKzsBZNvCIIGRmp8mMm5K7iOuZfQ53TK7yWIhRpTGqRhNGZyUc5741x9+2XprEQ==",
6
6
  "_location": "/@syncfusion/ej2-vue-pdfviewer",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-pdfviewer/-/ej2-vue-pdfviewer-20.3.59.tgz",
23
- "_shasum": "b40a1b4e06d1ac81aa7369d6c96695db90ca7162",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-pdfviewer/-/ej2-vue-pdfviewer-20.4.38.tgz",
23
+ "_shasum": "20cb56540f6f748ba5e949dcf9a97c8d80b363e8",
24
24
  "_spec": "@syncfusion/ej2-vue-pdfviewer@*",
25
25
  "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
26
26
  "author": {
@@ -31,27 +31,19 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~20.3.56",
35
- "@syncfusion/ej2-pdfviewer": "20.3.60",
36
- "@syncfusion/ej2-vue-base": "~20.3.59"
34
+ "@syncfusion/ej2-base": "~20.4.40",
35
+ "@syncfusion/ej2-pdfviewer": "20.4.40",
36
+ "@syncfusion/ej2-vue-base": "~20.4.40"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 PDF viewer Component for Vue",
40
40
  "devDependencies": {},
41
41
  "es2015": "dist/es6/ej2-vue-pdfviewer.es2015.js",
42
- "homepage": "https://github.com/syncfusion/ej2-vue-ui-components#readme",
42
+ "homepage": "https://www.syncfusion.com/vue-components",
43
43
  "keywords": [
44
- "ej2",
45
- "ej2-pdfviewer",
46
- "syncfusion",
47
- "web-components",
48
- "viewer",
49
- "pdf",
50
- "typescript",
51
44
  "vue",
52
45
  "vuejs",
53
- "vue-grids",
54
- "ej2-vue-grids"
46
+ "vue-pdf-viewer"
55
47
  ],
56
48
  "license": "SEE LICENSE IN license",
57
49
  "main": "./dist/ej2-vue-pdfviewer.umd.min.js",
@@ -64,6 +56,6 @@
64
56
  "scripts": {
65
57
  "postinstall": "node ../ej2-vue-base/postinstall.js"
66
58
  },
67
- "version": "20.3.60",
59
+ "version": "20.4.40",
68
60
  "sideEffects": false
69
61
  }
@@ -38,12 +38,12 @@ export declare class PdfViewerComponent extends ComponentBase {
38
38
  exportAnnotation(annotationDataFormat?: Object): void;
39
39
  exportAnnotationsAsBase64String(annotationDataFormat: Object): Object;
40
40
  exportAnnotationsAsObject(): Object;
41
- exportFormFields(path?: string): void;
42
- exportFormFieldsAsObject(): Object;
41
+ exportFormFields(data?: string, formFieldDataFormat?: Object): void;
42
+ exportFormFieldsAsObject(formFieldDataFormat?: Object): Object;
43
43
  focusFormField(field: any): void;
44
44
  getPageNumberFromClientPoint(clientPoint: Object): number;
45
45
  importAnnotation(importData: any, annotationDataFormat?: Object): void;
46
- importFormFields(formFields: any): void;
46
+ importFormFields(data?: string, formFieldDataFormat?: Object): void;
47
47
  load(document: string, password: string): void;
48
48
  redo(): void;
49
49
  requiredModules(): Object[];
@@ -146,11 +146,11 @@ var PdfViewerComponent = /** @class */ (function (_super) {
146
146
  PdfViewerComponent.prototype.exportAnnotationsAsObject = function () {
147
147
  return this.ej2Instances.exportAnnotationsAsObject();
148
148
  };
149
- PdfViewerComponent.prototype.exportFormFields = function (path) {
150
- return this.ej2Instances.exportFormFields(path);
149
+ PdfViewerComponent.prototype.exportFormFields = function (data, formFieldDataFormat) {
150
+ return this.ej2Instances.exportFormFields(data, formFieldDataFormat);
151
151
  };
152
- PdfViewerComponent.prototype.exportFormFieldsAsObject = function () {
153
- return this.ej2Instances.exportFormFieldsAsObject();
152
+ PdfViewerComponent.prototype.exportFormFieldsAsObject = function (formFieldDataFormat) {
153
+ return this.ej2Instances.exportFormFieldsAsObject(formFieldDataFormat);
154
154
  };
155
155
  PdfViewerComponent.prototype.focusFormField = function (field) {
156
156
  return this.ej2Instances.focusFormField(field);
@@ -161,8 +161,8 @@ var PdfViewerComponent = /** @class */ (function (_super) {
161
161
  PdfViewerComponent.prototype.importAnnotation = function (importData, annotationDataFormat) {
162
162
  return this.ej2Instances.importAnnotation(importData, annotationDataFormat);
163
163
  };
164
- PdfViewerComponent.prototype.importFormFields = function (formFields) {
165
- return this.ej2Instances.importFormFields(formFields);
164
+ PdfViewerComponent.prototype.importFormFields = function (data, formFieldDataFormat) {
165
+ return this.ej2Instances.importFormFields(data, formFieldDataFormat);
166
166
  };
167
167
  PdfViewerComponent.prototype.load = function (document, password) {
168
168
  return this.ej2Instances.load(document, password);