@syncfusion/ej2-vue-pdfviewer 19.4.55 → 19.4.56

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@19.4.54",
3
+ "_id": "@syncfusion/ej2-vue-pdfviewer@19.4.55",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-4AaJInMihuMCR3A8Ic2iC9yCug5/svs1F6guyyMlGIqhQXepJU7A7CHTAEtDTfPUkmSK+qQIoY7QKSrpCaYdGg==",
5
+ "_integrity": "sha512-JBGvq9znDa6eU1w8+B1fvydJqCT0u2d3/hUp78xGB/8/IyRiWzggnIpB1VP7UGLYXFkXzmt+COlatbhwnBiRVw==",
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": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-pdfviewer/-/ej2-vue-pdfviewer-19.4.54.tgz",
23
- "_shasum": "25aecfa8994d73204663f75d8733dad9e9224616",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-pdfviewer/-/ej2-vue-pdfviewer-19.4.55.tgz",
23
+ "_shasum": "ec236ba62c821b7b6b9da17b506a8cbf9d65290c",
24
24
  "_spec": "@syncfusion/ej2-vue-pdfviewer@*",
25
25
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
26
26
  "author": {
@@ -32,8 +32,8 @@
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-base": "~19.4.52",
35
- "@syncfusion/ej2-pdfviewer": "19.4.55",
36
- "@syncfusion/ej2-vue-base": "~19.4.53"
35
+ "@syncfusion/ej2-pdfviewer": "19.4.56",
36
+ "@syncfusion/ej2-vue-base": "~19.4.56"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 PDF viewer Component for Vue",
@@ -61,6 +61,6 @@
61
61
  "type": "git",
62
62
  "url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
63
63
  },
64
- "version": "19.4.55",
64
+ "version": "19.4.56",
65
65
  "sideEffects": false
66
66
  }
@@ -28,6 +28,7 @@ export declare class PdfViewerComponent extends ComponentBase {
28
28
  clearTemplate(templateNames?: string[]): any;
29
29
  setProperties(prop: any, muteOnChange: boolean): void;
30
30
  render(createElement: any): any;
31
+ custom(): void;
31
32
  addAnnotation(annotation: any): void;
32
33
  clearFormFields(formField?: any): void;
33
34
  deleteAnnotations(): void;
@@ -37,6 +38,7 @@ export declare class PdfViewerComponent extends ComponentBase {
37
38
  exportAnnotationsAsObject(): Object;
38
39
  exportFormFields(path?: string): void;
39
40
  exportFormFieldsAsObject(): Object;
41
+ focusFormField(field: any): void;
40
42
  importAnnotation(importData: any, annotationDataFormat?: Object): void;
41
43
  importFormFields(formFields: any): void;
42
44
  load(document: string, password: string): void;
@@ -55,6 +55,7 @@ var PdfViewerComponent = /** @class */ (function (_super) {
55
55
  _this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
56
56
  _this.ej2Instances.setProperties = _this.setProperties;
57
57
  _this.ej2Instances.clearTemplate = _this.clearTemplate;
58
+ _this.updated = _this.updated;
58
59
  return _this;
59
60
  }
60
61
  PdfViewerComponent.prototype.clearTemplate = function (templateNames) {
@@ -113,6 +114,9 @@ var PdfViewerComponent = /** @class */ (function (_super) {
113
114
  }
114
115
  return h('div', slots);
115
116
  };
117
+ PdfViewerComponent.prototype.custom = function () {
118
+ this.updated();
119
+ };
116
120
  PdfViewerComponent.prototype.addAnnotation = function (annotation) {
117
121
  return this.ej2Instances.addAnnotation(annotation);
118
122
  };
@@ -140,6 +144,9 @@ var PdfViewerComponent = /** @class */ (function (_super) {
140
144
  PdfViewerComponent.prototype.exportFormFieldsAsObject = function () {
141
145
  return this.ej2Instances.exportFormFieldsAsObject();
142
146
  };
147
+ PdfViewerComponent.prototype.focusFormField = function (field) {
148
+ return this.ej2Instances.focusFormField(field);
149
+ };
143
150
  PdfViewerComponent.prototype.importAnnotation = function (importData, annotationDataFormat) {
144
151
  return this.ej2Instances.importAnnotation(importData, annotationDataFormat);
145
152
  };
@@ -192,7 +199,12 @@ var PdfViewerComponent = /** @class */ (function (_super) {
192
199
  ,Options({
193
200
  props: props,
194
201
  watch: watch,
195
- emits: emitProbs
202
+ emits: emitProbs,
203
+ provide: function provide() {
204
+ return {
205
+ custom: this.custom
206
+ };
207
+ }
196
208
  })
197
209
  ], PdfViewerComponent);
198
210
  return PdfViewerComponent;