@syncfusion/ej2-gantt 22.1.38 → 22.1.39

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 : 22.1.38
3
+ * version : 22.1.39
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@22.1.37",
3
+ "_id": "@syncfusion/ej2-gantt@22.1.38",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-TPv0yQVVQ7urz0QkQgQRYrexjSghhirdKW9uclu5RPOsByATIf6kwgskqNxLI3rgUg9r7DuT5U73Exa/RxkwBA==",
5
+ "_integrity": "sha512-7FedUEMWDQKsmt0e1+CD2/34MjEu9feyw9UQYunIzqsUCu1qDRWFkf4nic/+sA4oY0vBEt2l62pS+co4QgnBwQ==",
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": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-gantt/-/ej2-gantt-22.1.37.tgz",
27
- "_shasum": "86f0da8b12060d757e0b729750fdbd8e7d1cbb08",
26
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-gantt/-/ej2-gantt-22.1.38.tgz",
27
+ "_shasum": "9e008d4d18aadf6f4e10de761d95397499fd9053",
28
28
  "_spec": "@syncfusion/ej2-gantt@*",
29
29
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
30
30
  "author": {
@@ -36,20 +36,20 @@
36
36
  "bundleDependencies": false,
37
37
  "dependencies": {
38
38
  "@syncfusion/ej2-base": "~22.1.38",
39
- "@syncfusion/ej2-buttons": "~22.1.38",
39
+ "@syncfusion/ej2-buttons": "~22.1.39",
40
40
  "@syncfusion/ej2-calendars": "~22.1.38",
41
41
  "@syncfusion/ej2-data": "~22.1.38",
42
- "@syncfusion/ej2-dropdowns": "~22.1.38",
43
- "@syncfusion/ej2-grids": "~22.1.38",
44
- "@syncfusion/ej2-inputs": "~22.1.38",
42
+ "@syncfusion/ej2-dropdowns": "~22.1.39",
43
+ "@syncfusion/ej2-grids": "~22.1.39",
44
+ "@syncfusion/ej2-inputs": "~22.1.39",
45
45
  "@syncfusion/ej2-layouts": "~22.1.37",
46
46
  "@syncfusion/ej2-lists": "~22.1.34",
47
- "@syncfusion/ej2-navigations": "~22.1.38",
47
+ "@syncfusion/ej2-navigations": "~22.1.39",
48
48
  "@syncfusion/ej2-notifications": "~22.1.34",
49
49
  "@syncfusion/ej2-popups": "~22.1.38",
50
- "@syncfusion/ej2-richtexteditor": "~22.1.38",
51
- "@syncfusion/ej2-svg-base": "~22.1.34",
52
- "@syncfusion/ej2-treegrid": "~22.1.38"
50
+ "@syncfusion/ej2-richtexteditor": "~22.1.39",
51
+ "@syncfusion/ej2-svg-base": "~22.1.39",
52
+ "@syncfusion/ej2-treegrid": "~22.1.39"
53
53
  },
54
54
  "deprecated": false,
55
55
  "description": "Essential JS 2 Gantt Component",
@@ -74,6 +74,6 @@
74
74
  "url": "git+https://github.com/syncfusion/ej2-gantt.git"
75
75
  },
76
76
  "typings": "index.d.ts",
77
- "version": "22.1.38",
77
+ "version": "22.1.39",
78
78
  "sideEffects": false
79
79
  }
@@ -2196,7 +2196,7 @@ var DialogEdit = /** @class */ (function () {
2196
2196
  }
2197
2197
  for (var i = 0; i < childNodes.length; i++) {
2198
2198
  var div = childNodes[i];
2199
- var inputElement = div.querySelector('input[id^="' + ganttObj.element.id + '"]');
2199
+ var inputElement = div.querySelector('input[id^="' + ganttObj.element.id + '"]') || div.querySelector('textarea[id^="' + ganttObj.element.id + '"]');
2200
2200
  if (inputElement) {
2201
2201
  var fieldName = inputElement.id.replace(ganttObj.element.id, '');
2202
2202
  var controlObj = div.querySelector('#' + ganttObj.element.id + fieldName).ej2_instances[0];
@@ -2216,7 +2216,7 @@ var DialogEdit = /** @class */ (function () {
2216
2216
  }
2217
2217
  }
2218
2218
  else if (isCustom && column.editType === 'booleanedit') {
2219
- if (inputElement.checked === true) {
2219
+ if (inputElement instanceof HTMLInputElement && inputElement.checked === true) {
2220
2220
  tasksData[fieldName] = true;
2221
2221
  }
2222
2222
  else {
@@ -1696,8 +1696,8 @@ var ChartRows = /** @class */ (function (_super) {
1696
1696
  taskbarElement.querySelector(classCollections[0]).style.backgroundColor = args.taskbarBgColor;
1697
1697
  }
1698
1698
  if (taskbarElement.querySelector(classCollections[0]) &&
1699
- getComputedStyle(taskbarElement.querySelector(classCollections[0])).borderColor !== args.taskbarBorderColor) {
1700
- taskbarElement.querySelector(classCollections[0]).style.borderColor = args.taskbarBorderColor;
1699
+ getComputedStyle(taskbarElement.querySelector(classCollections[0])).outlineColor !== args.taskbarBorderColor) {
1700
+ taskbarElement.querySelector(classCollections[0]).style.outlineColor = args.taskbarBorderColor;
1701
1701
  }
1702
1702
  if (taskbarElement.querySelector(classCollections[1]) &&
1703
1703
  getComputedStyle(taskbarElement.querySelector(classCollections[1])).backgroundColor !== args.progressBarBgColor) {
@@ -1708,8 +1708,8 @@ var ChartRows = /** @class */ (function (_super) {
1708
1708
  taskbarElement.style.backgroundColor = args.taskbarBgColor;
1709
1709
  }
1710
1710
  if (taskbarElement.classList.contains(cls.traceChildTaskBar) &&
1711
- getComputedStyle(taskbarElement).borderColor !== args.taskbarBorderColor) {
1712
- taskbarElement.style.borderColor = args.taskbarBorderColor;
1711
+ getComputedStyle(taskbarElement).outlineColor !== args.taskbarBorderColor) {
1712
+ taskbarElement.style.outlineColor = args.taskbarBorderColor;
1713
1713
  }
1714
1714
  if (taskbarElement.classList.contains(cls.traceChildProgressBar) &&
1715
1715
  getComputedStyle(taskbarElement).backgroundColor !== args.progressBarBgColor) {