@progress/kendo-react-gantt 13.3.0 → 13.4.0-develop.2
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.
- package/Gantt.d.ts +42 -0
- package/GanttNoRecords.d.ts +19 -0
- package/cells/FilterCells/GanttBooleanFilter.d.ts +17 -0
- package/cells/FilterCells/GanttDateFilter.d.ts +17 -0
- package/cells/FilterCells/GanttNumericFilter.d.ts +17 -0
- package/cells/FilterCells/GanttTextFilter.d.ts +17 -0
- package/cells/FilterCells/utils.d.ts +45 -0
- package/cells/FilterCells/utils.mjs +11 -11
- package/components/BaseView.d.ts +27 -0
- package/components/GanttDependency.d.ts +17 -0
- package/components/GanttTask.d.ts +19 -0
- package/components/GanttTreelist.d.ts +146 -0
- package/components/GanttTreelist.mjs +8 -8
- package/components/toolbar/AddButton.d.ts +19 -0
- package/components/toolbar/AddButton.mjs +2 -2
- package/components/toolbar/Toolbar.d.ts +28 -0
- package/components/toolbar/view-selector/ViewSelector.d.ts +31 -0
- package/components/toolbar/view-selector/ViewSelectorItem.d.ts +19 -0
- package/components/toolbar/view-selector/ViewSelectorList.d.ts +10 -0
- package/constants/index.d.ts +60 -0
- package/constants/index.mjs +2 -2
- package/context/GanttContext.d.ts +128 -0
- package/context/GanttViewContext.d.ts +47 -0
- package/dist/cdn/js/kendo-react-gantt.js +1 -1
- package/editors/FormAssingmentsEditor.d.ts +13 -0
- package/editors/FormDateTimePicker.d.ts +13 -0
- package/editors/FormDropDownList.d.ts +13 -0
- package/editors/FormInput.d.ts +13 -0
- package/editors/FormNumericTextBox.d.ts +13 -0
- package/editors/GanttEditor.d.ts +46 -0
- package/editors/GanttEditor.mjs +5 -5
- package/editors/GanttEditorPredecessors.d.ts +53 -0
- package/editors/GanttEditorSuccessors.d.ts +53 -0
- package/editors/GanttForm.d.ts +73 -0
- package/editors/GanttForm.mjs +2 -2
- package/editors/GanttRemoveDialog.d.ts +51 -0
- package/editors/GanttRemoveDialog.mjs +2 -2
- package/hooks/useControlledState.d.ts +11 -0
- package/hooks/useDictionaryStore.d.ts +25 -0
- package/hooks/useGanttTask.d.ts +11 -0
- package/index.d.mts +28 -1607
- package/index.d.ts +28 -1607
- package/interfaces/AddDirection.d.ts +13 -0
- package/interfaces/DataAction.d.ts +32 -0
- package/interfaces/DataItem.d.ts +13 -0
- package/interfaces/DateRange.d.ts +15 -0
- package/interfaces/DependencyModelFields.d.ts +32 -0
- package/interfaces/DependencyType.d.ts +22 -0
- package/interfaces/DragEvent.d.ts +21 -0
- package/interfaces/GanttBaseProps.d.ts +81 -0
- package/interfaces/GanttCellProps.d.ts +48 -0
- package/interfaces/GanttColumnProps.d.ts +43 -0
- package/interfaces/GanttDependency.d.ts +33 -0
- package/interfaces/GanttDependencyModelFields.d.ts +32 -0
- package/interfaces/GanttFilterCellProps.d.ts +13 -0
- package/interfaces/GanttFilterOperator.d.ts +13 -0
- package/interfaces/GanttHeaderCellProps.d.ts +13 -0
- package/interfaces/GanttNoRecordsProps.d.ts +16 -0
- package/interfaces/GanttProps.d.ts +238 -0
- package/interfaces/GanttRowProps.d.ts +98 -0
- package/interfaces/GanttSelectableSettings.d.ts +25 -0
- package/interfaces/GanttSlotType.d.ts +11 -0
- package/interfaces/GanttSortSettings.d.ts +20 -0
- package/interfaces/GanttTaskModelFields.d.ts +67 -0
- package/interfaces/GanttView.d.ts +147 -0
- package/interfaces/GanttViewTimelineHeaderCellProps.d.ts +38 -0
- package/interfaces/Rectangle.d.ts +13 -0
- package/interfaces/Slot.d.ts +19 -0
- package/interfaces/TaskModelFields.d.ts +56 -0
- package/interfaces/events.d.ts +304 -0
- package/messages/index.d.ts +197 -0
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +10 -16
- package/package.json +14 -14
- package/rows/GanttRow.d.ts +11 -0
- package/utils/data-operations.d.ts +50 -0
- package/utils/data-operations.mjs +1 -1
- package/utils/index.d.ts +185 -0
- package/utils/index.mjs +4 -4
- package/views/GanttDayView.d.ts +24 -0
- package/views/GanttDayView.mjs +5 -5
- package/views/GanttMonthView.d.ts +20 -0
- package/views/GanttWeekView.d.ts +20 -0
- package/views/GanttWeekView.mjs +4 -4
- package/views/GanttYearView.d.ts +20 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* The direction of the add new task action.
|
|
10
|
+
* If set to 'none' the task should be added at the end of the data collection.
|
|
11
|
+
* If set to 'above', 'below' or 'child', `selectedTask` option should be provided.
|
|
12
|
+
*/
|
|
13
|
+
export type AddDirection = 'none' | 'above' | 'below' | 'child';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { DataItem } from './DataItem.js';
|
|
9
|
+
/**
|
|
10
|
+
* Specifies the available [DataAction](https://www.telerik.com/kendo-react-ui/components/gantt/api/data_action) types.
|
|
11
|
+
*/
|
|
12
|
+
export declare enum DATA_ACTION {
|
|
13
|
+
create = 0,
|
|
14
|
+
update = 1,
|
|
15
|
+
remove = 2
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Specifies the action which can be dispatched through the Gantt context.
|
|
19
|
+
*/
|
|
20
|
+
export interface DataAction {
|
|
21
|
+
/**
|
|
22
|
+
* The `type` of the action. The available types are:
|
|
23
|
+
* - `create`
|
|
24
|
+
* - `update`
|
|
25
|
+
* - `remove`
|
|
26
|
+
*/
|
|
27
|
+
type: DATA_ACTION;
|
|
28
|
+
/**
|
|
29
|
+
* Specifies the `dataItem` being edited.
|
|
30
|
+
*/
|
|
31
|
+
dataItem: DataItem;
|
|
32
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Represents the items which the [`data`](https://www.telerik.com/kendo-react-ui/components/gantt/api/ganttprops#toc-data) property accepts.
|
|
10
|
+
* The `data` has no strict type. However, to visualize it correctly,
|
|
11
|
+
* use it in combination with the [`modelFields`](https://www.telerik.com/kendo-react-ui/components/gantt/api/ganttprops#toc-modelfields) property.
|
|
12
|
+
*/
|
|
13
|
+
export type DataItem = any;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ZonedDate } from '@progress/kendo-date-math';
|
|
9
|
+
/** @hidden */
|
|
10
|
+
export interface DateRange {
|
|
11
|
+
start: Date;
|
|
12
|
+
end: Date;
|
|
13
|
+
zonedStart: ZonedDate;
|
|
14
|
+
zonedEnd: ZonedDate;
|
|
15
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Represents the combined object of the default and custom GanttDependencyModelFields.
|
|
10
|
+
*/
|
|
11
|
+
export interface DependencyModelFields {
|
|
12
|
+
/**
|
|
13
|
+
* The unique identifier of the Gantt dependency. Dependencies, whose id is not set, are considered as "new".
|
|
14
|
+
* Defaults to `"id"`.
|
|
15
|
+
*/
|
|
16
|
+
id: string;
|
|
17
|
+
/**
|
|
18
|
+
* The unique identifier of the from task.
|
|
19
|
+
* Defaults to `"fromId"`.
|
|
20
|
+
*/
|
|
21
|
+
fromId: string;
|
|
22
|
+
/**
|
|
23
|
+
* The unique identifier of the to task.
|
|
24
|
+
* Defaults to `"toId"`.
|
|
25
|
+
*/
|
|
26
|
+
toId: string;
|
|
27
|
+
/**
|
|
28
|
+
* The type of the dependency.
|
|
29
|
+
* Defaults to `"type"`.
|
|
30
|
+
*/
|
|
31
|
+
type: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* The dependency type when two tasks are connected.
|
|
10
|
+
*
|
|
11
|
+
* The supported values are:
|
|
12
|
+
* * `FF`—from 'finish' to 'finish'
|
|
13
|
+
* * `FS`—from 'finish' to 'start'
|
|
14
|
+
* * `SS`—from 'start' to 'start'
|
|
15
|
+
* * `SF`—from 'start' to 'finish'
|
|
16
|
+
*/
|
|
17
|
+
export declare enum DependencyType {
|
|
18
|
+
FF = 0,
|
|
19
|
+
FS = 1,
|
|
20
|
+
SF = 2,
|
|
21
|
+
SS = 3
|
|
22
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/** @hidden */
|
|
9
|
+
export interface DragEvent {
|
|
10
|
+
pageX: number;
|
|
11
|
+
pageY: number;
|
|
12
|
+
clientX: number;
|
|
13
|
+
clientY: number;
|
|
14
|
+
offsetX: number;
|
|
15
|
+
offsetY: number;
|
|
16
|
+
type: string;
|
|
17
|
+
ctrlKey: boolean;
|
|
18
|
+
shiftKey: boolean;
|
|
19
|
+
altKey: boolean;
|
|
20
|
+
originalEvent: PointerEvent;
|
|
21
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { GanttColumnProps } from './GanttColumnProps.js';
|
|
9
|
+
import { GanttNoRecordsProps } from './GanttNoRecordsProps.js';
|
|
10
|
+
import { SortDescriptor, FilterDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
11
|
+
import { GanttRowProps } from './GanttRowProps.js';
|
|
12
|
+
import { GanttSelectableSettings } from './GanttSelectableSettings.js';
|
|
13
|
+
import { GanttSortSettings } from './GanttSortSettings.js';
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
*/
|
|
17
|
+
export interface GanttBaseProps {
|
|
18
|
+
/**
|
|
19
|
+
* Represents the component that will be rendered when the `data` property of the Gantt is empty or undefined.
|
|
20
|
+
*/
|
|
21
|
+
noRecords?: React.ReactElement<GanttNoRecordsProps>;
|
|
22
|
+
/**
|
|
23
|
+
* A collection of `GanttColumnProps` for creating columns.
|
|
24
|
+
*/
|
|
25
|
+
columns?: GanttColumnProps[];
|
|
26
|
+
/**
|
|
27
|
+
* Specifies the id of the timezone that will be displayed in the Gantt.
|
|
28
|
+
* For example, `Europe/Sofia`.
|
|
29
|
+
*
|
|
30
|
+
* Defaults to `Etc/UTC`.
|
|
31
|
+
*/
|
|
32
|
+
timezone?: string;
|
|
33
|
+
/**
|
|
34
|
+
* If set to `true`, the user can resize columns by dragging the edges (resize handles) of their header cells.
|
|
35
|
+
*
|
|
36
|
+
* @default false
|
|
37
|
+
*/
|
|
38
|
+
resizable?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Enables sorting ([see example](https://www.telerik.com/kendo-react-ui/components/gantt/sorting)).
|
|
41
|
+
*/
|
|
42
|
+
sortable?: GanttSortSettings;
|
|
43
|
+
/**
|
|
44
|
+
* The descriptors by which the data is sorted. Applies the sorting styles and buttons to the affected columns.
|
|
45
|
+
*/
|
|
46
|
+
sort?: SortDescriptor[];
|
|
47
|
+
/**
|
|
48
|
+
* The descriptors by which the data is filtered ([more information and examples](https://www.telerik.com/kendo-react-ui/components/gantt/filtering)).
|
|
49
|
+
* This affects the values and buttons in the `FilterRow` of the Gantt.
|
|
50
|
+
*/
|
|
51
|
+
filter?: FilterDescriptor[];
|
|
52
|
+
/**
|
|
53
|
+
* If set to `true`, the user can reorder columns by dragging their header cells.
|
|
54
|
+
*
|
|
55
|
+
* @default false
|
|
56
|
+
*/
|
|
57
|
+
reorderable?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* If set to `true`, the user can use dedicated shortcuts to interact with the Gantt.
|
|
60
|
+
* By default, navigation is disabled and the Gantt content is accessible in the normal tab sequence.
|
|
61
|
+
*
|
|
62
|
+
* @default false
|
|
63
|
+
*/
|
|
64
|
+
navigatable?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* The descriptors by which the data is filtered in the column menu.
|
|
67
|
+
*/
|
|
68
|
+
columnMenuFilter?: CompositeFilterDescriptor[];
|
|
69
|
+
/**
|
|
70
|
+
* The component to render as the column menu.
|
|
71
|
+
*/
|
|
72
|
+
columnMenu?: React.ComponentType<any>;
|
|
73
|
+
/**
|
|
74
|
+
* The Gantt row component.
|
|
75
|
+
*/
|
|
76
|
+
row?: React.ComponentType<GanttRowProps>;
|
|
77
|
+
/**
|
|
78
|
+
* The Gantt selectable settings.
|
|
79
|
+
*/
|
|
80
|
+
selectable?: GanttSelectableSettings;
|
|
81
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { CellProps } from '@progress/kendo-react-data-tools';
|
|
9
|
+
/**
|
|
10
|
+
* Represents the props of the GanttCell component.
|
|
11
|
+
*/
|
|
12
|
+
export interface GanttCellProps extends Omit<CellProps, 'onChange' | 'render'> {
|
|
13
|
+
/**
|
|
14
|
+
* An array of indexes of each parent and current item in the data tree.
|
|
15
|
+
*/
|
|
16
|
+
level: number[];
|
|
17
|
+
/**
|
|
18
|
+
* Indicates that the data item of the cell has subitems.
|
|
19
|
+
*/
|
|
20
|
+
hasChildren?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* If set to `true`, the cell will render indentation based on its level prop and
|
|
23
|
+
* the icons that are used for expanding and collapsing child rows.
|
|
24
|
+
*/
|
|
25
|
+
expandable?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* The index of the column. Useful for applying `aria-colindex` accessibility attribute.
|
|
28
|
+
*/
|
|
29
|
+
colIndex: number;
|
|
30
|
+
/**
|
|
31
|
+
* The event that is fired when the expand or collapse icon of the cell is clicked.
|
|
32
|
+
*/
|
|
33
|
+
onExpandChange: (event: React.MouseEvent<HTMLSpanElement>, dataItem: any, level: number[]) => void;
|
|
34
|
+
/**
|
|
35
|
+
* A function for overriding the default rendering of the cell.
|
|
36
|
+
*/
|
|
37
|
+
render?: (defaultRendering: React.ReactElement<HTMLTableCellElement> | null, props: GanttCellProps) => React.ReactElement<HTMLTableCellElement> | null;
|
|
38
|
+
/**
|
|
39
|
+
* The event that is fired when the cell value is changed.
|
|
40
|
+
*/
|
|
41
|
+
onChange?: (event: {
|
|
42
|
+
dataItem: any;
|
|
43
|
+
level: number[];
|
|
44
|
+
syntheticEvent: React.SyntheticEvent<any>;
|
|
45
|
+
field?: string;
|
|
46
|
+
value?: any;
|
|
47
|
+
}) => void;
|
|
48
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ComponentType } from 'react';
|
|
9
|
+
import { TreeColumnBaseProps } from '@progress/kendo-react-data-tools';
|
|
10
|
+
import { GanttCellProps } from './GanttCellProps.js';
|
|
11
|
+
import { GanttHeaderCellProps } from './GanttHeaderCellProps.js';
|
|
12
|
+
import { GanttFilterCellProps } from './GanttFilterCellProps.js';
|
|
13
|
+
/**
|
|
14
|
+
* The props of the columns of the Gantt component.
|
|
15
|
+
*/
|
|
16
|
+
export interface GanttColumnProps extends Omit<TreeColumnBaseProps, 'children' | 'editCell' | 'cell' | 'disableReorder'> {
|
|
17
|
+
/**
|
|
18
|
+
* Defines the component that will be rendered as a cell. If not set, a `GanttCell` will be rendered by default.
|
|
19
|
+
*/
|
|
20
|
+
cell?: ComponentType<GanttCellProps>;
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
* Defines the component that will be rendered as an edit cell.
|
|
24
|
+
*/
|
|
25
|
+
editCell?: ComponentType<GanttCellProps>;
|
|
26
|
+
/**
|
|
27
|
+
* Defines the component that will be rendered as a header cell.
|
|
28
|
+
* If not set, a `GanttHeaderCell` will be rendered by default.
|
|
29
|
+
*/
|
|
30
|
+
headerCell?: ComponentType<GanttHeaderCellProps>;
|
|
31
|
+
/**
|
|
32
|
+
* **Deprecated**. Use `filterCell` prop instead.
|
|
33
|
+
*/
|
|
34
|
+
filter?: ComponentType<GanttFilterCellProps>;
|
|
35
|
+
/**
|
|
36
|
+
* Defines the component that will be rendered as a filter cell.
|
|
37
|
+
*/
|
|
38
|
+
filterCell?: ComponentType<GanttFilterCellProps>;
|
|
39
|
+
/**
|
|
40
|
+
* A collection of child columns.
|
|
41
|
+
*/
|
|
42
|
+
children?: GanttColumnProps[];
|
|
43
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { DependencyType } from './DependencyType.js';
|
|
9
|
+
/**
|
|
10
|
+
* Represents an instance of a Gantt dependency.
|
|
11
|
+
*/
|
|
12
|
+
export interface GanttDependency {
|
|
13
|
+
/**
|
|
14
|
+
* The `id` of the origin task of this dependency.
|
|
15
|
+
*/
|
|
16
|
+
fromId: string | number;
|
|
17
|
+
/**
|
|
18
|
+
* The unique identifier of the dependency.
|
|
19
|
+
*/
|
|
20
|
+
id: string | number;
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
uid?: string | number;
|
|
25
|
+
/**
|
|
26
|
+
* The `id` of the destination task of this dependency.
|
|
27
|
+
*/
|
|
28
|
+
toId: string | number;
|
|
29
|
+
/**
|
|
30
|
+
* The type of the dependency.
|
|
31
|
+
*/
|
|
32
|
+
type: DependencyType;
|
|
33
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Defines the model fields that will be used for creating `GanttDependency` instances.
|
|
10
|
+
*/
|
|
11
|
+
export interface GanttDependencyModelFields {
|
|
12
|
+
/**
|
|
13
|
+
* The name of the `ID` model field.
|
|
14
|
+
* Defaults to `"id"`.
|
|
15
|
+
*/
|
|
16
|
+
id?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The name of the from task id model field.
|
|
19
|
+
* Defaults to `"fromId"`.
|
|
20
|
+
*/
|
|
21
|
+
fromId?: string;
|
|
22
|
+
/**
|
|
23
|
+
* The name of the to task id model field.
|
|
24
|
+
* Defaults to `"toId"`.
|
|
25
|
+
*/
|
|
26
|
+
toId?: string;
|
|
27
|
+
/**
|
|
28
|
+
* The name of the type model field.
|
|
29
|
+
* Defaults to `"type"`.
|
|
30
|
+
*/
|
|
31
|
+
type?: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { FilterCellProps } from '@progress/kendo-react-data-tools';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export interface GanttFilterCellProps extends FilterCellProps {
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { FilterOperator } from '@progress/kendo-react-data-tools';
|
|
9
|
+
/**
|
|
10
|
+
* The filter operator for the Gantt filters.
|
|
11
|
+
*/
|
|
12
|
+
export interface GanttFilterOperator extends FilterOperator {
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { HeaderCellProps } from '@progress/kendo-react-data-tools';
|
|
9
|
+
/**
|
|
10
|
+
* The props of the GanttHeaderCell component.
|
|
11
|
+
*/
|
|
12
|
+
export interface GanttHeaderCellProps extends HeaderCellProps {
|
|
13
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* The props of the GanttNoRecords component.
|
|
10
|
+
*/
|
|
11
|
+
export interface GanttNoRecordsProps {
|
|
12
|
+
/**
|
|
13
|
+
* The React elements which will be rendered inside the Gantt when no records are available.
|
|
14
|
+
*/
|
|
15
|
+
children?: React.ReactNode;
|
|
16
|
+
}
|