@syncfusion/ej2-gantt 19.3.55 → 19.3.56

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 19.3.55
3
+ * version : 19.3.56
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-gantt@*",
3
- "_id": "@syncfusion/ej2-gantt@19.3.53",
3
+ "_id": "@syncfusion/ej2-gantt@19.3.55",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-U/p3jxN5jnp69SFmscoROYZ5BzSZniFIGIaJoGYLzGA86OOXgeXaMnMe4ZX31hbDR994LlgTMolzp6uoHYsA9w==",
5
+ "_integrity": "sha512-vNRdUvWlJJMgMIx1G7wBtMWrlWpflfRAXNQsM5UaxDxpAjc5rg8z/OQOw/jdlvgL6l3doAxsggtfGcMDfn86yQ==",
6
6
  "_location": "/@syncfusion/ej2-gantt",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -23,8 +23,8 @@
23
23
  "/@syncfusion/ej2-react-gantt",
24
24
  "/@syncfusion/ej2-vue-gantt"
25
25
  ],
26
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-gantt/-/ej2-gantt-19.3.53.tgz",
27
- "_shasum": "09ad17fec4db43b1da7931fd236686090ea7b6ea",
26
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-gantt/-/ej2-gantt-19.3.55.tgz",
27
+ "_shasum": "d1f4499c21f075fdfbbe9e41a289f490cb326556",
28
28
  "_spec": "@syncfusion/ej2-gantt@*",
29
29
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
30
30
  "author": {
@@ -35,16 +35,16 @@
35
35
  },
36
36
  "bundleDependencies": false,
37
37
  "dependencies": {
38
- "@syncfusion/ej2-base": "~19.3.54",
38
+ "@syncfusion/ej2-base": "~19.3.56",
39
39
  "@syncfusion/ej2-buttons": "~19.3.53",
40
- "@syncfusion/ej2-calendars": "~19.3.55",
41
- "@syncfusion/ej2-data": "~19.3.53",
42
- "@syncfusion/ej2-dropdowns": "~19.3.55",
43
- "@syncfusion/ej2-grids": "~19.3.55",
40
+ "@syncfusion/ej2-calendars": "~19.3.56",
41
+ "@syncfusion/ej2-data": "~19.3.56",
42
+ "@syncfusion/ej2-dropdowns": "~19.3.56",
43
+ "@syncfusion/ej2-grids": "~19.3.56",
44
44
  "@syncfusion/ej2-inputs": "~19.3.53",
45
45
  "@syncfusion/ej2-layouts": "~19.3.53",
46
46
  "@syncfusion/ej2-lists": "~19.3.53",
47
- "@syncfusion/ej2-navigations": "~19.3.54",
47
+ "@syncfusion/ej2-navigations": "~19.3.56",
48
48
  "@syncfusion/ej2-popups": "~19.3.53",
49
49
  "@syncfusion/ej2-richtexteditor": "~19.3.55",
50
50
  "@syncfusion/ej2-treegrid": "~19.3.55"
@@ -75,6 +75,6 @@
75
75
  "url": "git+https://github.com/syncfusion/ej2-gantt.git"
76
76
  },
77
77
  "typings": "index.d.ts",
78
- "version": "19.3.55",
78
+ "version": "19.3.56",
79
79
  "sideEffects": false
80
80
  }
@@ -493,7 +493,7 @@ var ContextMenu = /** @class */ (function () {
493
493
  };
494
494
  ContextMenu.prototype.contextMenuOpen = function (args) {
495
495
  this.isOpen = true;
496
- var firstMenuItem = args.element.querySelectorAll('li:not(.e-menu-hide)')[0];
496
+ var firstMenuItem = args.element.querySelectorAll('li:not(.e-menu-hide):not(.e-disabled)')[0];
497
497
  addClass([firstMenuItem], 'e-focused');
498
498
  };
499
499
  ContextMenu.prototype.getMenuItems = function () {
@@ -360,6 +360,8 @@ var Gantt = /** @class */ (function (_super) {
360
360
  Gantt.prototype.renderGantt = function (isChange) {
361
361
  // predecessor calculation
362
362
  if (this.predecessorModule && this.taskFields.dependency) {
363
+ this.predecessorModule['parentIds'] = [];
364
+ this.predecessorModule['parentRecord'] = [];
363
365
  this.predecessorModule.updatePredecessors();
364
366
  if (this.isInPredecessorValidation && this.enableValidation) {
365
367
  this.predecessorModule.updatedRecordsDateByPredecessor();