@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
39 lines (38 loc) • 1.16 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { QueryList } from "@angular/core";
import { TreeListComponent } from "@progress/kendo-angular-treelist";
import { GanttColumnBase } from "../columns/column-base.component";
/**
* @hidden
*/
export interface NavigationMetadata {
treeList: TreeListComponent;
host: HTMLElement;
treeListElement: HTMLElement;
timelineElement: HTMLElement;
columns: QueryList<GanttColumnBase>;
data: any[];
}
/**
* @hidden
*/
export interface TableCellCoords {
rowIndex: number;
colIndex: number;
}
/**
* @hidden
*/
export interface TaskActivityStatus {
/**
* Represents the timeline task index of the task element which should have tabindex="0".
*/
activeIndex: number;
/**
* Specifies if the active task should be focused.
*/
isFocused: boolean;
}