devexpress-gantt
Advanced tools
Comparing version 4.1.56 to 4.1.57
/*! | ||
* DevExpress Gantt (dx-gantt.min) | ||
* Version: 4.1.56 | ||
* Build date: Mon Jun 10 2024 | ||
* Version: 4.1.57 | ||
* Build date: Mon Jan 20 2025 | ||
* | ||
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED | ||
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED | ||
* Read about DevExpress licensing here: https://www.devexpress.com/Support/EULAs | ||
@@ -8,0 +8,0 @@ */ |
{ | ||
"name": "devexpress-gantt", | ||
"version": "4.1.56", | ||
"version": "4.1.57", | ||
"description": "DevExpress Gantt Control", | ||
@@ -5,0 +5,0 @@ "main": "dist/dx-gantt.min.js", |
@@ -119,5 +119,7 @@ import { Size } from "@devexpress/utils/lib/geometry/size"; | ||
drawCustomTask(taskTemplateContainer: HTMLElement, taskIndex: number):void { | ||
if(!this.taskElements[taskIndex]) | ||
const viewItem = this.getViewItem(taskIndex); | ||
if(!viewItem || !this.taskElements[taskIndex]) | ||
return; | ||
const viewItem = this.getViewItem(taskIndex); | ||
viewItem.visible = !!taskTemplateContainer.innerHTML; | ||
@@ -124,0 +126,0 @@ this.taskElements[taskIndex].innerHTML = taskTemplateContainer.innerHTML; |
{ | ||
"name": "devexpress-gantt", | ||
"version": "4.1.56", | ||
"version": "4.1.57", | ||
"description": "DevExpress Gantt Control", | ||
@@ -5,0 +5,0 @@ "main": "dist/dx-gantt.min.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
2202754