@syncfusion/ej2-vue-richtexteditor 19.4.50 → 19.4.54
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/CHANGELOG.md +27 -0
- package/dist/ej2-vue-richtexteditor.umd.min.js +1 -1
- package/dist/es6/ej2-vue-richtexteditor.es2015.js +3 -0
- package/dist/es6/ej2-vue-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-richtexteditor.es5.js +3 -0
- package/dist/es6/ej2-vue-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-vue-richtexteditor.min.js +2 -2
- package/package.json +8 -8
- package/src/rich-text-editor/richtexteditor.component.d.ts +1 -0
- package/src/rich-text-editor/richtexteditor.component.js +3 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-richtexteditor@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-richtexteditor@19.4.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-richtexteditor@19.4.53",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-vN0OOf2Z+fIveYos2j+UIkJqtpD8MDSuT5YXCOuRqcoB5OBJVbm2N4sLZlAiGuI7j3iJg0vAR84lSjOztMViBQ==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-richtexteditor",
|
|
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-richtexteditor/-/ej2-vue-richtexteditor-19.4.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-richtexteditor/-/ej2-vue-richtexteditor-19.4.53.tgz",
|
|
23
|
+
"_shasum": "39e3a57bdad720cf4964cdc65533352bc7863835",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-richtexteditor@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~19.4.
|
|
35
|
-
"@syncfusion/ej2-richtexteditor": "19.4.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~19.4.
|
|
34
|
+
"@syncfusion/ej2-base": "~19.4.52",
|
|
35
|
+
"@syncfusion/ej2-richtexteditor": "19.4.54",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~19.4.53"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 RichTextEditor component for Vue",
|
|
@@ -59,6 +59,6 @@
|
|
|
59
59
|
"type": "git",
|
|
60
60
|
"url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
|
|
61
61
|
},
|
|
62
|
-
"version": "19.4.
|
|
62
|
+
"version": "19.4.54",
|
|
63
63
|
"sideEffects": false
|
|
64
64
|
}
|
|
@@ -31,6 +31,7 @@ export declare class RichTextEditorComponent extends ComponentBase {
|
|
|
31
31
|
[key: string]: Object;
|
|
32
32
|
}, successHandler?: Function): void;
|
|
33
33
|
render(createElement: any): any;
|
|
34
|
+
cleanList(e: Object): void;
|
|
34
35
|
closeDialog(type: Object): void;
|
|
35
36
|
disableToolbarItem(items: string | string[], muteToolbarUpdate?: boolean): void;
|
|
36
37
|
enableToolbarItem(items: string | string[], muteToolbarUpdate?: boolean): void;
|
|
@@ -154,6 +154,9 @@ var RichTextEditorComponent = /** @class */ (function (_super) {
|
|
|
154
154
|
}
|
|
155
155
|
return h('textarea', slots);
|
|
156
156
|
};
|
|
157
|
+
RichTextEditorComponent.prototype.cleanList = function (e) {
|
|
158
|
+
return this.ej2Instances.cleanList(e);
|
|
159
|
+
};
|
|
157
160
|
RichTextEditorComponent.prototype.closeDialog = function (type) {
|
|
158
161
|
return this.ej2Instances.closeDialog(type);
|
|
159
162
|
};
|