@syncfusion/ej2-vue-treemap 24.2.3 → 25.2.3

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-treemap@*",
3
- "_id": "@syncfusion/ej2-vue-treemap@24.1.41",
3
+ "_id": "@syncfusion/ej2-vue-treemap@25.1.35",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-MwktCjcRiLqZgIr07+ESxtwCd2+pKqemrdms3c4WLIafcz+lup06gW9FvBUq8qAeNakGVtKnU/8G4xqVJkijoA==",
5
+ "_integrity": "sha512-Ed921OaC1BMsi4VRSFuiQR9AL9SbYcg8PtNKv5rTqTMdD3iX12IzkJ02E+3SaBze/CB++yqAT86iYjiXXYYFxg==",
6
6
  "_location": "/@syncfusion/ej2-vue-treemap",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,10 +19,10 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-treemap/-/ej2-vue-treemap-24.1.41.tgz",
23
- "_shasum": "c31d34bf7c303b2a3b0dc1bdfd46f92176f27bb0",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-treemap/-/ej2-vue-treemap-25.1.35.tgz",
23
+ "_shasum": "14a38ca7e9084e8dea14dd6d90d53fb51a28edd2",
24
24
  "_spec": "@syncfusion/ej2-vue-treemap@*",
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.3",
35
- "@syncfusion/ej2-treemap": "24.2.3",
36
- "@syncfusion/ej2-vue-base": "~24.2.3"
34
+ "@syncfusion/ej2-base": "~25.2.3",
35
+ "@syncfusion/ej2-treemap": "25.2.3",
36
+ "@syncfusion/ej2-vue-base": "~25.2.3"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 TreeMap Components 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.3",
61
+ "version": "25.2.3",
62
62
  "sideEffects": false
63
63
  }
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { TreeMapModel } from '@syncfusion/ej2-treemap';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { TreeMap, TreeMapModel } from '@syncfusion/ej2-treemap';
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 TreeMapComponent: DefineVueComponent<TreeMapModel>;
14
- export declare type TreeMapComponent = InstanceType<typeof TreeMapComponent>;
14
+ export declare type TreeMapComponent = typeof ComponentBase & {
15
+ ej2Instances: TreeMap;
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
+ doubleClickOnTreeMap(e: Object): void;
31
+ export(type: Object, fileName: string, orientation?: Object, allowDownload?: boolean): Object;
32
+ print(id?: string[] | string | Object): void;
33
+ selectItem(levelOrder: string[], isSelected?: boolean): void;
34
+ };
15
35
  export declare const TreeMapPlugin: {
16
36
  name: string;
17
37
  install(Vue: any): void;
@@ -27,7 +27,7 @@ export var TreeMapComponent = vueDefineComponent({
27
27
  provide: function () { return { custom: this.custom }; },
28
28
  data: function () {
29
29
  return {
30
- ej2Instance: new TreeMap({}),
30
+ ej2Instances: new TreeMap({}),
31
31
  propKeys: properties,
32
32
  models: modelProps,
33
33
  hasChildDirective: true,