@syncfusion/ej2-vue-documenteditor 19.4.55 → 20.1.48

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,14 @@
1
1
  {
2
+ "_args": [
3
+ [
4
+ "@syncfusion/ej2-vue-documenteditor@19.4.55",
5
+ "D:\\Augest 2021\\vue package publish\\vue source from nexus"
6
+ ]
7
+ ],
2
8
  "_from": "@syncfusion/ej2-vue-documenteditor@*",
3
- "_id": "@syncfusion/ej2-vue-documenteditor@19.4.54",
9
+ "_id": "@syncfusion/ej2-vue-documenteditor@19.4.55",
4
10
  "_inBundle": false,
5
- "_integrity": "sha512-mmOg8KwXlDMIiFQRp/U8Gl5XHG6xBazwljK9gb36z8wQ2MlBO90CFF/83abxMiDITb5POTwWUQ2pK/cb3jQDzw==",
11
+ "_integrity": "sha512-TmY494PKBV02ywYgWPYb7UwKqN19zmZDt5YIG8H6X0q7wKWTBDBDzKPRrnd0YaziAVx6Rg5eat5fEidx+Ki2+Q==",
6
12
  "_location": "/@syncfusion/ej2-vue-documenteditor",
7
13
  "_phantomChildren": {},
8
14
  "_requested": {
@@ -19,8 +25,8 @@
19
25
  "_requiredBy": [
20
26
  "/"
21
27
  ],
22
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-documenteditor/-/ej2-vue-documenteditor-19.4.54.tgz",
23
- "_shasum": "095c53f1cc1800f0b7af8685fa8a41cff1fb51dd",
28
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-documenteditor/-/ej2-vue-documenteditor-19.4.55.tgz",
29
+ "_shasum": "7d0ec520d6f8e770737c138b7e28bf94fec37d66",
24
30
  "_spec": "@syncfusion/ej2-vue-documenteditor@*",
25
31
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
26
32
  "author": {
@@ -31,9 +37,9 @@
31
37
  },
32
38
  "bundleDependencies": false,
33
39
  "dependencies": {
34
- "@syncfusion/ej2-base": "~19.4.52",
35
- "@syncfusion/ej2-documenteditor": "19.4.55",
36
- "@syncfusion/ej2-vue-base": "~19.4.53"
40
+ "@syncfusion/ej2-base": "~20.1.48",
41
+ "@syncfusion/ej2-documenteditor": "20.1.48",
42
+ "@syncfusion/ej2-vue-base": "~20.1.48"
37
43
  },
38
44
  "deprecated": false,
39
45
  "description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
@@ -63,6 +69,6 @@
63
69
  "type": "git",
64
70
  "url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
65
71
  },
66
- "version": "19.4.55",
72
+ "version": "20.1.48",
67
73
  "sideEffects": false
68
74
  }
@@ -28,6 +28,7 @@ export declare class DocumentEditorComponent 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
  enableAllModules(): void;
32
33
  exportAsImage(pageNumber: number, format: Object): Object;
33
34
  exportFormData(): Object[];
@@ -55,6 +55,7 @@ var DocumentEditorComponent = /** @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
  DocumentEditorComponent.prototype.clearTemplate = function (templateNames) {
@@ -113,6 +114,9 @@ var DocumentEditorComponent = /** @class */ (function (_super) {
113
114
  }
114
115
  return h('div', slots);
115
116
  };
117
+ DocumentEditorComponent.prototype.custom = function () {
118
+ this.updated();
119
+ };
116
120
  DocumentEditorComponent.prototype.enableAllModules = function () {
117
121
  return this.ej2Instances.enableAllModules();
118
122
  };
@@ -204,7 +208,12 @@ var DocumentEditorComponent = /** @class */ (function (_super) {
204
208
  ,Options({
205
209
  props: props,
206
210
  watch: watch,
207
- emits: emitProbs
211
+ emits: emitProbs,
212
+ provide: function provide() {
213
+ return {
214
+ custom: this.custom
215
+ };
216
+ }
208
217
  })
209
218
  ], DocumentEditorComponent);
210
219
  return DocumentEditorComponent;
@@ -28,6 +28,7 @@ export declare class DocumentEditorContainerComponent 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
  resize(width?: number, height?: number): void;
32
33
  setDefaultCharacterFormat(characterFormat: Object): void;
33
34
  setDefaultParagraphFormat(paragraphFormat: Object): void;
@@ -55,6 +55,7 @@ var DocumentEditorContainerComponent = /** @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
  DocumentEditorContainerComponent.prototype.clearTemplate = function (templateNames) {
@@ -113,6 +114,9 @@ var DocumentEditorContainerComponent = /** @class */ (function (_super) {
113
114
  }
114
115
  return h('div', slots);
115
116
  };
117
+ DocumentEditorContainerComponent.prototype.custom = function () {
118
+ this.updated();
119
+ };
116
120
  DocumentEditorContainerComponent.prototype.resize = function (width, height) {
117
121
  return this.ej2Instances.resize(width, height);
118
122
  };
@@ -132,7 +136,12 @@ var DocumentEditorContainerComponent = /** @class */ (function (_super) {
132
136
  ,Options({
133
137
  props: props,
134
138
  watch: watch,
135
- emits: emitProbs
139
+ emits: emitProbs,
140
+ provide: function provide() {
141
+ return {
142
+ custom: this.custom
143
+ };
144
+ }
136
145
  })
137
146
  ], DocumentEditorContainerComponent);
138
147
  return DocumentEditorContainerComponent;