@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.
@@ -10490,8 +10490,8 @@ class ChartRows extends DateProcessor {
10490
10490
  taskbarElement.querySelector(classCollections[0]).style.backgroundColor = args.taskbarBgColor;
10491
10491
  }
10492
10492
  if (taskbarElement.querySelector(classCollections[0]) &&
10493
- getComputedStyle(taskbarElement.querySelector(classCollections[0])).borderColor !== args.taskbarBorderColor) {
10494
- taskbarElement.querySelector(classCollections[0]).style.borderColor = args.taskbarBorderColor;
10493
+ getComputedStyle(taskbarElement.querySelector(classCollections[0])).outlineColor !== args.taskbarBorderColor) {
10494
+ taskbarElement.querySelector(classCollections[0]).style.outlineColor = args.taskbarBorderColor;
10495
10495
  }
10496
10496
  if (taskbarElement.querySelector(classCollections[1]) &&
10497
10497
  getComputedStyle(taskbarElement.querySelector(classCollections[1])).backgroundColor !== args.progressBarBgColor) {
@@ -10502,8 +10502,8 @@ class ChartRows extends DateProcessor {
10502
10502
  taskbarElement.style.backgroundColor = args.taskbarBgColor;
10503
10503
  }
10504
10504
  if (taskbarElement.classList.contains(traceChildTaskBar) &&
10505
- getComputedStyle(taskbarElement).borderColor !== args.taskbarBorderColor) {
10506
- taskbarElement.style.borderColor = args.taskbarBorderColor;
10505
+ getComputedStyle(taskbarElement).outlineColor !== args.taskbarBorderColor) {
10506
+ taskbarElement.style.outlineColor = args.taskbarBorderColor;
10507
10507
  }
10508
10508
  if (taskbarElement.classList.contains(traceChildProgressBar) &&
10509
10509
  getComputedStyle(taskbarElement).backgroundColor !== args.progressBarBgColor) {
@@ -22561,7 +22561,7 @@ class DialogEdit {
22561
22561
  }
22562
22562
  for (let i = 0; i < childNodes.length; i++) {
22563
22563
  const div = childNodes[i];
22564
- const inputElement = div.querySelector('input[id^="' + ganttObj.element.id + '"]');
22564
+ const inputElement = div.querySelector('input[id^="' + ganttObj.element.id + '"]') || div.querySelector('textarea[id^="' + ganttObj.element.id + '"]');
22565
22565
  if (inputElement) {
22566
22566
  const fieldName = inputElement.id.replace(ganttObj.element.id, '');
22567
22567
  const controlObj = div.querySelector('#' + ganttObj.element.id + fieldName).ej2_instances[0];
@@ -22581,7 +22581,7 @@ class DialogEdit {
22581
22581
  }
22582
22582
  }
22583
22583
  else if (isCustom && column.editType === 'booleanedit') {
22584
- if (inputElement.checked === true) {
22584
+ if (inputElement instanceof HTMLInputElement && inputElement.checked === true) {
22585
22585
  tasksData[fieldName] = true;
22586
22586
  }
22587
22587
  else {