@syncfusion/ej2-vue-documenteditor 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-documenteditor@*",
3
- "_id": "@syncfusion/ej2-vue-documenteditor@24.2.7",
3
+ "_id": "@syncfusion/ej2-vue-documenteditor@19.92.0",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-v9p2ceGqEtgjjLZqTFiw2P+2MxHGTJYD71TDkGnCH2blmJCFjzVNlIccKezIGZR0eQO6ykJZmE8I+EaVVVp9SA==",
5
+ "_integrity": "sha512-MD0YyArp+slxLrnoZlFNnll2Uy9euLHzRlnI3iTWCGc1BowjEZNbN1BJyn+qrT4QbA87HuGIreuODuOBm6IPIg==",
6
6
  "_location": "/@syncfusion/ej2-vue-documenteditor",
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-documenteditor/-/ej2-vue-documenteditor-24.2.7.tgz",
23
- "_shasum": "abb9169601b748b23e02931ad75408466e0c7abb",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-vue-documenteditor/-/ej2-vue-documenteditor-19.92.0.tgz",
23
+ "_shasum": "fbb2ac48aff40854c1126b5961f347363629acfd",
24
24
  "_spec": "@syncfusion/ej2-vue-documenteditor@*",
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-documenteditor": "24.2.8",
36
- "@syncfusion/ej2-vue-base": "~24.2.3"
34
+ "@syncfusion/ej2-base": "~25.1.35",
35
+ "@syncfusion/ej2-documenteditor": "25.1.35",
36
+ "@syncfusion/ej2-vue-base": "~25.1.35"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
@@ -57,6 +57,6 @@
57
57
  "ci-publish": "gulp ci-publish",
58
58
  "compile": "gulp ci-compile && gulp vue-global-script"
59
59
  },
60
- "version": "24.2.8",
60
+ "version": "25.1.35",
61
61
  "sideEffects": false
62
62
  }
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { DocumentEditorModel } from '@syncfusion/ej2-documenteditor';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { DocumentEditor, DocumentEditorModel } from '@syncfusion/ej2-documenteditor';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,51 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let DocumentEditorComponent: DefineVueComponent<DocumentEditorModel>;
14
- export declare type DocumentEditorComponent = InstanceType<typeof DocumentEditorComponent>;
14
+ export declare type DocumentEditorComponent = typeof ComponentBase & {
15
+ ej2Instance: DocumentEditor;
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
+ enableAllModules(): void;
31
+ exportAsImage(pageNumber: number, format: Object): Object;
32
+ exportFormData(): Object[];
33
+ fitPage(pageFitType?: Object): void;
34
+ focusIn(): void;
35
+ getBookmarks(): string[];
36
+ getFormFieldInfo(name: string): Object | Object | Object;
37
+ getFormFieldNames(): string[];
38
+ getStyleNames(styleType?: Object): string[];
39
+ getStyles(styleType?: Object): Object[];
40
+ importFormData(formData: Object[]): void;
41
+ open(sfdtText: string): void;
42
+ openBlank(): void;
43
+ print(printWindow?: Object): void;
44
+ resetFormFields(name?: string): void;
45
+ resize(width?: number, height?: number): void;
46
+ save(fileName: string, formatType?: Object): void;
47
+ saveAsBlob(formatType?: Object): Object;
48
+ scrollToPage(pageNumber: number): boolean;
49
+ serialize(): string;
50
+ setDefaultCharacterFormat(characterFormat: Object): void;
51
+ setDefaultParagraphFormat(paragraphFormat: Object): void;
52
+ setDefaultSectionFormat(sectionFormat: Object): void;
53
+ setFormFieldInfo(name: string, formFieldInfo: Object | Object | Object): void;
54
+ showDialog(dialogType: Object): void;
55
+ showOptionsPane(): void;
56
+ showRestrictEditingPane(show?: boolean): void;
57
+ updateFields(): void;
58
+ };
15
59
  export declare const DocumentEditorPlugin: {
16
60
  name: string;
17
61
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { DocumentEditorContainerModel } from '@syncfusion/ej2-documenteditor';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { DocumentEditorContainer, DocumentEditorContainerModel } from '@syncfusion/ej2-documenteditor';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,27 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let DocumentEditorContainerComponent: DefineVueComponent<DocumentEditorContainerModel>;
14
- export declare type DocumentEditorContainerComponent = InstanceType<typeof DocumentEditorContainerComponent>;
14
+ export declare type DocumentEditorContainerComponent = typeof ComponentBase & {
15
+ ej2Instance: DocumentEditorContainer;
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
+ resize(width?: number, height?: number): void;
31
+ setDefaultCharacterFormat(characterFormat: Object): void;
32
+ setDefaultParagraphFormat(paragraphFormat: Object): void;
33
+ setDefaultSectionFormat(sectionFormat: Object): void;
34
+ };
15
35
  export declare const DocumentEditorContainerPlugin: {
16
36
  name: string;
17
37
  install(Vue: any): void;