@syncfusion/ej2-vue-richtexteditor 24.2.8 → 25.1.35

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-richtexteditor@*",
3
- "_id": "@syncfusion/ej2-vue-richtexteditor@24.2.7",
3
+ "_id": "@syncfusion/ej2-vue-richtexteditor@23.1.54",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-yFBjw5d3b7khVd6dKMn7stukuvncVL4yB+AowLxRrAq8c7cI2wcUwYNCBRv8xYqObmdboVxa2KXf6PnXGIBqHg==",
5
+ "_integrity": "sha512-Shpug9v2sQL5D2EU9iRZUx1CV5qruPbVOTbyawQhBj/U9o5xD/xdli3eeYht0wI2TOC53BJUkGJeJxhYtigzug==",
6
6
  "_location": "/@syncfusion/ej2-vue-richtexteditor",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,10 +19,10 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-richtexteditor/-/ej2-vue-richtexteditor-24.2.7.tgz",
23
- "_shasum": "11134cdf5c893ef0ee1433651c514a7cb9d07e48",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-vue-richtexteditor/-/ej2-vue-richtexteditor-23.1.54.tgz",
23
+ "_shasum": "aecb21fa911395761c3f43961d2738783ab68596",
24
24
  "_spec": "@syncfusion/ej2-vue-richtexteditor@*",
25
- "_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
25
+ "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
26
26
  "author": {
27
27
  "name": "Syncfusion Inc."
28
28
  },
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~24.2.7",
35
- "@syncfusion/ej2-richtexteditor": "24.2.8",
36
- "@syncfusion/ej2-vue-base": "~24.2.3"
34
+ "@syncfusion/ej2-base": "~25.1.35",
35
+ "@syncfusion/ej2-richtexteditor": "25.1.35",
36
+ "@syncfusion/ej2-vue-base": "~25.1.35"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 RichTextEditor component for Vue",
@@ -58,6 +58,6 @@
58
58
  "ci-publish": "gulp ci-publish",
59
59
  "compile": "gulp ci-compile && gulp vue-global-script"
60
60
  },
61
- "version": "24.2.8",
61
+ "version": "25.1.35",
62
62
  "sideEffects": false
63
63
  }
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { RichTextEditorModel } from '@syncfusion/ej2-richtexteditor';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { RichTextEditor, RichTextEditorModel } from '@syncfusion/ej2-richtexteditor';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,52 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let RichTextEditorComponent: DefineVueComponent<RichTextEditorModel>;
14
- export declare type RichTextEditorComponent = InstanceType<typeof RichTextEditorComponent>;
14
+ export declare type RichTextEditorComponent = typeof ComponentBase & {
15
+ ej2Instances: RichTextEditor;
16
+ isVue3: boolean;
17
+ isLazyUpdate: Boolean;
18
+ plugins: any[];
19
+ propKeys: string[];
20
+ models: string[];
21
+ hasChildDirective: boolean;
22
+ tagMapper: {
23
+ [key: string]: Object;
24
+ };
25
+ tagNameMapper: Object;
26
+ setProperties(prop: any, muteOnChange: boolean): void;
27
+ trigger(eventName: string, eventProp: {
28
+ [key: string]: Object;
29
+ }, successHandler?: Function): void;
30
+ addAnchorAriaLabel(value: string): string;
31
+ cleanList(e: Object): void;
32
+ closeDialog(type: Object): void;
33
+ disableToolbarItem(items: string | string[], muteToolbarUpdate?: boolean): void;
34
+ enableToolbarItem(items: string | string[], muteToolbarUpdate?: boolean): void;
35
+ executeCommand(commandName: Object, value?: string | Object | Object | Object | Object | Object, option?: Object): void;
36
+ focusIn(): void;
37
+ focusOut(): void;
38
+ getCharCount(): number;
39
+ getContent(): Object;
40
+ getHtml(): string;
41
+ getRange(): Object;
42
+ getSelectedHtml(): string;
43
+ getSelection(): string;
44
+ getText(): string;
45
+ getXhtml(): string;
46
+ hideInlineToolbar(): void;
47
+ print(): void;
48
+ refreshUI(): void;
49
+ removeToolbarItem(items: string | string[]): void;
50
+ renderTemplates(callBack: any): void;
51
+ sanitizeHtml(value: string): string;
52
+ selectAll(): void;
53
+ selectRange(range: Object): void;
54
+ showDialog(type: Object): void;
55
+ showEmojiPicker(x?: number, y?: number): void;
56
+ showFullScreen(): void;
57
+ showInlineToolbar(): void;
58
+ showSourceCode(): void;
59
+ };
15
60
  export declare const RichTextEditorPlugin: {
16
61
  name: string;
17
62
  install(Vue: any): void;