@syncfusion/ej2-vue-treemap 20.3.56 → 20.4.38

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@20.3.47",
3
+ "_id": "@syncfusion/ej2-vue-treemap@16.31.3",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-jaH8x2WXAI1lOr206j0gwPq2XKqb74VgHrtdlu261rOnXDLjpwtUQqWUItqnKX5WwKpkB+momBwkmajW1Ocvug==",
5
+ "_integrity": "sha512-nmXirzRsl72fwRKH76IAwMSZ99a7GFo7ZCxBLCOBeGElqhtaXMSqxF003BVF2Hd9ncamA5x0jHgYG9qVdr/K4Q==",
6
6
  "_location": "/@syncfusion/ej2-vue-treemap",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-treemap/-/ej2-vue-treemap-20.3.47.tgz",
23
- "_shasum": "a8924b134617ffac861c886e5e78eb39f8d86018",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-vue-treemap/-/ej2-vue-treemap-16.31.3.tgz",
23
+ "_shasum": "8024dac8db432d56f61cea2ace16ebec232b5d1f",
24
24
  "_spec": "@syncfusion/ej2-vue-treemap@*",
25
25
  "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~20.3.56",
35
- "@syncfusion/ej2-treemap": "20.3.56",
36
- "@syncfusion/ej2-vue-base": "~20.3.56"
34
+ "@syncfusion/ej2-base": "~20.4.38",
35
+ "@syncfusion/ej2-treemap": "20.4.38",
36
+ "@syncfusion/ej2-vue-base": "~20.4.38"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 TreeMap Components for Vue",
@@ -45,18 +45,25 @@
45
45
  "syncfusion",
46
46
  "ej2-treemap",
47
47
  "web-components",
48
+ "data-visualization",
49
+ "typescript",
50
+ "javascript",
48
51
  "treemap",
52
+ "hierarchy",
53
+ "hierarchical-data",
54
+ "flat-data",
49
55
  "layout",
50
- "leaf-node",
51
56
  "levels",
52
- "legend",
57
+ "leaf-node",
58
+ "data-labels",
59
+ "label-template",
60
+ "header-template",
61
+ "drill-down",
53
62
  "color-mapping",
54
- "labels",
55
- "tooltip",
56
- "drilldown",
63
+ "selection",
64
+ "highlight",
57
65
  "legend",
58
- "label-template",
59
- "typescript",
66
+ "template",
60
67
  "vue",
61
68
  "vuejs",
62
69
  "vue-treemap",
@@ -73,6 +80,6 @@
73
80
  "scripts": {
74
81
  "postinstall": "node ../ej2-vue-base/postinstall.js"
75
82
  },
76
- "version": "20.3.56",
83
+ "version": "20.4.38",
77
84
  "sideEffects": false
78
85
  }
@@ -28,7 +28,6 @@ export declare class TreeMapComponent extends ComponentBase {
28
28
  setProperties(prop: any, muteOnChange: boolean): void;
29
29
  render(createElement: any): any;
30
30
  custom(): void;
31
- calculatePreviousLevelChildItems(labelText: string, drillLevelValues: any, item: any, directLevel: boolean): boolean;
32
31
  calculateSelectedTextLevels(labelText: string, item: any): any;
33
32
  clickOnTreeMap(e: Object): void;
34
33
  compareSelectedLabelWithDrillDownItems(drillLevelValues: any, item: any, i: number): any;
@@ -118,9 +118,6 @@ var TreeMapComponent = /** @class */ (function (_super) {
118
118
  TreeMapComponent.prototype.custom = function () {
119
119
  this.updated();
120
120
  };
121
- TreeMapComponent.prototype.calculatePreviousLevelChildItems = function (labelText, drillLevelValues, item, directLevel) {
122
- return this.ej2Instances.calculatePreviousLevelChildItems(labelText, drillLevelValues, item, directLevel);
123
- };
124
121
  TreeMapComponent.prototype.calculateSelectedTextLevels = function (labelText, item) {
125
122
  return this.ej2Instances.calculateSelectedTextLevels(labelText, item);
126
123
  };