@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.
Files changed (86) hide show
  1. package/Gantt.d.ts +42 -0
  2. package/GanttNoRecords.d.ts +19 -0
  3. package/cells/FilterCells/GanttBooleanFilter.d.ts +17 -0
  4. package/cells/FilterCells/GanttDateFilter.d.ts +17 -0
  5. package/cells/FilterCells/GanttNumericFilter.d.ts +17 -0
  6. package/cells/FilterCells/GanttTextFilter.d.ts +17 -0
  7. package/cells/FilterCells/utils.d.ts +45 -0
  8. package/cells/FilterCells/utils.mjs +11 -11
  9. package/components/BaseView.d.ts +27 -0
  10. package/components/GanttDependency.d.ts +17 -0
  11. package/components/GanttTask.d.ts +19 -0
  12. package/components/GanttTreelist.d.ts +146 -0
  13. package/components/GanttTreelist.mjs +8 -8
  14. package/components/toolbar/AddButton.d.ts +19 -0
  15. package/components/toolbar/AddButton.mjs +2 -2
  16. package/components/toolbar/Toolbar.d.ts +28 -0
  17. package/components/toolbar/view-selector/ViewSelector.d.ts +31 -0
  18. package/components/toolbar/view-selector/ViewSelectorItem.d.ts +19 -0
  19. package/components/toolbar/view-selector/ViewSelectorList.d.ts +10 -0
  20. package/constants/index.d.ts +60 -0
  21. package/constants/index.mjs +2 -2
  22. package/context/GanttContext.d.ts +128 -0
  23. package/context/GanttViewContext.d.ts +47 -0
  24. package/dist/cdn/js/kendo-react-gantt.js +1 -1
  25. package/editors/FormAssingmentsEditor.d.ts +13 -0
  26. package/editors/FormDateTimePicker.d.ts +13 -0
  27. package/editors/FormDropDownList.d.ts +13 -0
  28. package/editors/FormInput.d.ts +13 -0
  29. package/editors/FormNumericTextBox.d.ts +13 -0
  30. package/editors/GanttEditor.d.ts +46 -0
  31. package/editors/GanttEditor.mjs +5 -5
  32. package/editors/GanttEditorPredecessors.d.ts +53 -0
  33. package/editors/GanttEditorSuccessors.d.ts +53 -0
  34. package/editors/GanttForm.d.ts +73 -0
  35. package/editors/GanttForm.mjs +2 -2
  36. package/editors/GanttRemoveDialog.d.ts +51 -0
  37. package/editors/GanttRemoveDialog.mjs +2 -2
  38. package/hooks/useControlledState.d.ts +11 -0
  39. package/hooks/useDictionaryStore.d.ts +25 -0
  40. package/hooks/useGanttTask.d.ts +11 -0
  41. package/index.d.mts +28 -1607
  42. package/index.d.ts +28 -1607
  43. package/interfaces/AddDirection.d.ts +13 -0
  44. package/interfaces/DataAction.d.ts +32 -0
  45. package/interfaces/DataItem.d.ts +13 -0
  46. package/interfaces/DateRange.d.ts +15 -0
  47. package/interfaces/DependencyModelFields.d.ts +32 -0
  48. package/interfaces/DependencyType.d.ts +22 -0
  49. package/interfaces/DragEvent.d.ts +21 -0
  50. package/interfaces/GanttBaseProps.d.ts +81 -0
  51. package/interfaces/GanttCellProps.d.ts +48 -0
  52. package/interfaces/GanttColumnProps.d.ts +43 -0
  53. package/interfaces/GanttDependency.d.ts +33 -0
  54. package/interfaces/GanttDependencyModelFields.d.ts +32 -0
  55. package/interfaces/GanttFilterCellProps.d.ts +13 -0
  56. package/interfaces/GanttFilterOperator.d.ts +13 -0
  57. package/interfaces/GanttHeaderCellProps.d.ts +13 -0
  58. package/interfaces/GanttNoRecordsProps.d.ts +16 -0
  59. package/interfaces/GanttProps.d.ts +238 -0
  60. package/interfaces/GanttRowProps.d.ts +98 -0
  61. package/interfaces/GanttSelectableSettings.d.ts +25 -0
  62. package/interfaces/GanttSlotType.d.ts +11 -0
  63. package/interfaces/GanttSortSettings.d.ts +20 -0
  64. package/interfaces/GanttTaskModelFields.d.ts +67 -0
  65. package/interfaces/GanttView.d.ts +147 -0
  66. package/interfaces/GanttViewTimelineHeaderCellProps.d.ts +38 -0
  67. package/interfaces/Rectangle.d.ts +13 -0
  68. package/interfaces/Slot.d.ts +19 -0
  69. package/interfaces/TaskModelFields.d.ts +56 -0
  70. package/interfaces/events.d.ts +304 -0
  71. package/messages/index.d.ts +197 -0
  72. package/package-metadata.d.ts +12 -0
  73. package/package-metadata.js +1 -1
  74. package/package-metadata.mjs +10 -16
  75. package/package.json +14 -14
  76. package/rows/GanttRow.d.ts +11 -0
  77. package/utils/data-operations.d.ts +50 -0
  78. package/utils/data-operations.mjs +1 -1
  79. package/utils/index.d.ts +185 -0
  80. package/utils/index.mjs +4 -4
  81. package/views/GanttDayView.d.ts +24 -0
  82. package/views/GanttDayView.mjs +5 -5
  83. package/views/GanttMonthView.d.ts +20 -0
  84. package/views/GanttWeekView.d.ts +20 -0
  85. package/views/GanttWeekView.mjs +4 -4
  86. package/views/GanttYearView.d.ts +20 -0
@@ -0,0 +1,56 @@
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
+ * Maps field names from your task data to the fields that the Gantt component expects.
10
+ */
11
+ export interface TaskModelFields {
12
+ /**
13
+ * Maps to the field that contains the unique ID for each task.
14
+ */
15
+ id: string;
16
+ /**
17
+ * Maps to the field that contains the task start date.
18
+ */
19
+ start: string;
20
+ /**
21
+ * Maps to the field that contains the task end date.
22
+ */
23
+ end: string;
24
+ /**
25
+ * Maps to the field that contains the task title or name.
26
+ */
27
+ title: string;
28
+ /**
29
+ * Maps to the field that contains the task completion percentage.
30
+ */
31
+ percentComplete: string;
32
+ /**
33
+ * Maps to the field that contains the parent task ID for child tasks.
34
+ */
35
+ parentId?: string;
36
+ /**
37
+ * Maps to the field that indicates if a task is a summary of child tasks.
38
+ */
39
+ isRollup: string;
40
+ /**
41
+ * Maps to the field that indicates if a task is expanded to show child tasks.
42
+ */
43
+ isExpanded: string;
44
+ /**
45
+ * Maps to the field that contains child tasks.
46
+ */
47
+ children: string;
48
+ /**
49
+ * Maps to the field that indicates if a task is currently being edited.
50
+ */
51
+ isInEdit: string;
52
+ /**
53
+ * Maps to the field that indicates if a task is selected.
54
+ */
55
+ isSelected: string;
56
+ }
@@ -0,0 +1,304 @@
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 { SortDescriptor, FilterDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query';
9
+ import { GanttColumnProps } from './GanttColumnProps.js';
10
+ import { BaseEvent } from '@progress/kendo-react-common';
11
+ import { GanttHandle } from '../Gantt.js';
12
+ import { AddDirection } from './AddDirection.js';
13
+ import { TableKeyDownEvent, TableSelectionChangeEvent } from '@progress/kendo-react-data-tools';
14
+ /**
15
+ * Represents the base event object of the Gantt.
16
+ */
17
+ export interface GanttEvent extends BaseEvent<GanttHandle> {
18
+ }
19
+ /**
20
+ * Represents the object of the `onDataStateChange` Gantt event.
21
+ */
22
+ export interface GanttDataStateChangeEvent extends GanttEvent {
23
+ /**
24
+ * The state of the Gantt based on the user action.
25
+ */
26
+ dataState: {
27
+ /**
28
+ * The descriptors that are used for sorting.
29
+ */
30
+ sort?: Array<SortDescriptor>;
31
+ /**
32
+ * The descriptors that are used for filtering.
33
+ */
34
+ filter?: Array<FilterDescriptor>;
35
+ /**
36
+ * The field of the column which triggers the event.
37
+ */
38
+ field?: string;
39
+ };
40
+ }
41
+ /**
42
+ * Represents the object of the `onSortChange` Gantt event.
43
+ */
44
+ export interface GanttSortChangeEvent extends GanttEvent {
45
+ /**
46
+ * The new `SortDescriptor` according to the user action.
47
+ */
48
+ sort: SortDescriptor[];
49
+ /**
50
+ * The field of the column which triggers the event.
51
+ */
52
+ field: string;
53
+ }
54
+ /**
55
+ * Represents the object of the `onFilterChange` Gantt event.
56
+ */
57
+ export interface GanttFilterChangeEvent extends GanttEvent {
58
+ /**
59
+ * The new `FilterDescriptor` based on the user action.
60
+ */
61
+ filter: FilterDescriptor[];
62
+ /**
63
+ * The field of the column which triggers the event.
64
+ */
65
+ field: string;
66
+ }
67
+ /**
68
+ * Represents the object of the `onColumnMenuFilterChange` Gantt event.
69
+ */
70
+ export interface GanttColumnMenuFilterChangeEvent extends GanttEvent {
71
+ /**
72
+ * The new `CompositeFilterDescriptor` based on the user action.
73
+ */
74
+ filter: CompositeFilterDescriptor[];
75
+ /**
76
+ * The field of the column which triggers the event.
77
+ */
78
+ field: string;
79
+ }
80
+ /**
81
+ * Represents the object of the `onExpandChange` Gantt event.
82
+ */
83
+ export interface GanttExpandChangeEvent extends GanttEvent {
84
+ /**
85
+ * The data item which is expanded or collapsed.
86
+ */
87
+ dataItem: any;
88
+ /**
89
+ * An array of indexes of each parent and current item in the data tree.
90
+ */
91
+ level: number[];
92
+ /**
93
+ * The available values are:
94
+ * - `true`&mdash;If the data item is expanded.
95
+ * - `false`&mdash;If the data item is collapsed.
96
+ */
97
+ value: boolean;
98
+ }
99
+ /**
100
+ * Represents the object of the `onAddClick` Gantt event.
101
+ */
102
+ export interface GanttAddClickEvent extends GanttEvent {
103
+ /**
104
+ * The direction of the add action.
105
+ */
106
+ direction: AddDirection;
107
+ /**
108
+ * The data item which is currently selected.
109
+ */
110
+ selectedDataItem?: any;
111
+ /**
112
+ * Current view first slot range start date.
113
+ */
114
+ slotStart: Date;
115
+ /**
116
+ * Current view first slot range end date.
117
+ */
118
+ slotEnd: Date;
119
+ }
120
+ /**
121
+ * Represents the object of the `onKeyDownEvent` Gantt event.
122
+ */
123
+ export interface GanttKeyDownEvent extends GanttEvent, TableKeyDownEvent<GanttHandle> {
124
+ }
125
+ /**
126
+ * Represents the object of the `onHeaderSelectionChange` Gantt event.
127
+ */
128
+ export interface GanttHeaderSelectionChangeEvent extends GanttEvent {
129
+ /**
130
+ * The field of the column in which the cell is located.
131
+ */
132
+ field?: string;
133
+ }
134
+ /**
135
+ * Represents the object of the `onSelectionChange` Gantt event.
136
+ */
137
+ export interface GanttSelectionChangeEvent extends GanttEvent, TableSelectionChangeEvent<GanttHandle> {
138
+ /**
139
+ * An array of indexes of each parent and current item in the data tree.
140
+ */
141
+ level: number[];
142
+ }
143
+ /**
144
+ * Called every time the user changes the active `view`.
145
+ */
146
+ export interface GanttViewChangeEvent extends GanttEvent {
147
+ /**
148
+ * The value of the selected view.
149
+ */
150
+ value: string;
151
+ }
152
+ interface ColumnDragEvent {
153
+ /**
154
+ * An event target.
155
+ */
156
+ target: GanttHandle;
157
+ /**
158
+ * A native DOM event.
159
+ */
160
+ nativeEvent: any;
161
+ /**
162
+ * The current columns collection.
163
+ */
164
+ columns: GanttColumnProps[];
165
+ }
166
+ /**
167
+ * Represents the object of the `onColumnResize` Gantt event.
168
+ */
169
+ export interface GanttColumnResizeEvent extends ColumnDragEvent {
170
+ /**
171
+ * The index of the column.
172
+ */
173
+ index: number;
174
+ /**
175
+ * The new width of the column.
176
+ */
177
+ newWidth: number;
178
+ /**
179
+ * The actual width of the column prior to resizing.
180
+ */
181
+ oldWidth: number;
182
+ /**
183
+ * Indicates that resizing is complete and the user has dropped the resize handler.
184
+ */
185
+ end: boolean;
186
+ /**
187
+ * The total width of the columns after the resizing.
188
+ */
189
+ totalWidth: number;
190
+ }
191
+ /**
192
+ * Represents the object of the `onColumnReorder` Gantt event.
193
+ */
194
+ export interface GanttColumnReorderEvent extends ColumnDragEvent {
195
+ }
196
+ /**
197
+ * Represents the object of the `onRowClick` Gantt event.
198
+ */
199
+ export interface GanttRowClickEvent extends GanttEvent {
200
+ /**
201
+ * The data item which corresponds to the clicked row.
202
+ */
203
+ dataItem: any;
204
+ /**
205
+ * An array of indexes of each parent and current item in the data tree.
206
+ */
207
+ level: number[];
208
+ }
209
+ /**
210
+ * Represents the object of the `onRowDoubleClick` Gantt event.
211
+ */
212
+ export interface GanttRowDoubleClickEvent extends GanttEvent {
213
+ /**
214
+ * The data item which corresponds to the clicked row.
215
+ */
216
+ dataItem: any;
217
+ /**
218
+ * An array of indexes of each parent and current item in the data tree.
219
+ */
220
+ level: number[];
221
+ }
222
+ /**
223
+ * Represents the object of the `onRowContextMenu` Gantt event.
224
+ */
225
+ export interface GanttRowContextMenuEvent extends GanttEvent {
226
+ /**
227
+ * The data item which corresponds to the clicked row.
228
+ */
229
+ dataItem: any;
230
+ /**
231
+ * An array of indexes of each parent and current item in the data tree.
232
+ */
233
+ level: number[];
234
+ }
235
+ /**
236
+ * Represents the object of the `onTaskClick` Gantt event.
237
+ */
238
+ export interface GanttTaskClickEvent extends GanttEvent {
239
+ /**
240
+ * The data item which corresponds to the clicked task.
241
+ */
242
+ dataItem: any;
243
+ /**
244
+ * An array of indexes of each parent and current item in the data tree.
245
+ */
246
+ level: number[];
247
+ }
248
+ /**
249
+ * Represents the object of the `onTaskDoubleClick` Gantt event.
250
+ */
251
+ export interface GanttTaskDoubleClickEvent extends GanttEvent {
252
+ /**
253
+ * The data item which corresponds to the double clicked task.
254
+ */
255
+ dataItem: any;
256
+ /**
257
+ * An array of indexes of each parent and current item in the data tree.
258
+ */
259
+ level: number[];
260
+ }
261
+ /**
262
+ * Represents the object of the `onTaskContextMenu` Gantt event.
263
+ */
264
+ export interface GanttTaskContextMenuEvent extends GanttEvent {
265
+ /**
266
+ * The data item which corresponds to the clicked task.
267
+ */
268
+ dataItem: any;
269
+ /**
270
+ * An array of indexes of each parent and current item in the data tree.
271
+ */
272
+ level: number[];
273
+ }
274
+ /**
275
+ * Represents the object of the `onTaskRemoveClick` Gantt event.
276
+ */
277
+ export interface GanttTaskRemoveClickEvent extends GanttEvent {
278
+ /**
279
+ * The data item which corresponds to the clicked task.
280
+ */
281
+ dataItem: any;
282
+ /**
283
+ * An array of indexes of each parent and current item in the data tree.
284
+ */
285
+ level: number[];
286
+ }
287
+ /**
288
+ * Represents the object of the `onDependencyCreateEvent` Gantt event.
289
+ */
290
+ export interface GanttDependencyCreateEvent extends GanttEvent {
291
+ /**
292
+ * The id of the source task.
293
+ */
294
+ fromId: any;
295
+ /**
296
+ * The id of the destination task.
297
+ */
298
+ toId: any;
299
+ /**
300
+ * The type of the dependency.
301
+ */
302
+ type: number;
303
+ }
304
+ export {};
@@ -0,0 +1,197 @@
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 declare const weekViewTitle = "gantt.weekViewTitle";
10
+ /** @hidden */
11
+ export declare const dayViewTitle = "gantt.dayViewTitle";
12
+ /** @hidden */
13
+ export declare const monthViewTitle = "gantt.monthViewTitle";
14
+ /** @hidden */
15
+ export declare const yearViewTitle = "gantt.yearViewTitle";
16
+ /** @hidden */
17
+ export declare const filterClearButton = "gantt.filterClearButton";
18
+ /** @hidden */
19
+ export declare const filterEqOperator = "gantt.filterEqOperator";
20
+ /** @hidden */
21
+ export declare const filterNotEqOperator = "gantt.filterNotEqOperator";
22
+ /** @hidden */
23
+ export declare const filterIsNullOperator = "gantt.filterIsNullOperator";
24
+ /** @hidden */
25
+ export declare const filterIsNotNullOperator = "gantt.filterIsNotNullOperator";
26
+ /** @hidden */
27
+ export declare const filterIsEmptyOperator = "gantt.filterIsEmptyOperator";
28
+ /** @hidden */
29
+ export declare const filterIsNotEmptyOperator = "gantt.filterIsNotEmptyOperator";
30
+ /** @hidden */
31
+ export declare const filterStartsWithOperator = "gantt.filterStartsWithOperator";
32
+ /** @hidden */
33
+ export declare const filterContainsOperator = "gantt.filterContainsOperator";
34
+ /** @hidden */
35
+ export declare const filterNotContainsOperator = "gantt.filterNotContainsOperator";
36
+ /** @hidden */
37
+ export declare const filterEndsWithOperator = "gantt.filterEndsWithOperator";
38
+ /** @hidden */
39
+ export declare const filterGteOperator = "gantt.filterGteOperator";
40
+ /** @hidden */
41
+ export declare const filterGtOperator = "gantt.filterGtOperator";
42
+ /** @hidden */
43
+ export declare const filterLteOperator = "gantt.filterLteOperator";
44
+ /** @hidden */
45
+ export declare const filterLtOperator = "gantt.filterLtOperator";
46
+ /** @hidden */
47
+ export declare const filterIsTrue = "gantt.filterIsTrue";
48
+ /** @hidden */
49
+ export declare const filterIsFalse = "gantt.filterIsFalse";
50
+ /** @hidden */
51
+ export declare const filterBooleanAll = "gantt.filterBooleanAll";
52
+ /** @hidden */
53
+ export declare const filterAfterOrEqualOperator = "gantt.filterAfterOrEqualOperator";
54
+ /** @hidden */
55
+ export declare const filterAfterOperator = "gantt.filterAfterOperator";
56
+ /** @hidden */
57
+ export declare const filterBeforeOperator = "gantt.filterBeforeOperator";
58
+ /** @hidden */
59
+ export declare const filterBeforeOrEqualOperator = "gantt.filterBeforeOrEqualOperator";
60
+ /** @hidden */
61
+ export declare const noRecords = "gantt.noRecords";
62
+ /** @hidden */
63
+ export declare const editorSave = "gantt.editSave";
64
+ /** @hidden */
65
+ export declare const editorCancel = "gantt.editCancel";
66
+ /** @hidden */
67
+ export declare const editorAdd = "gantt.editAdd";
68
+ /** @hidden */
69
+ export declare const editorRemove = "gantt.editRemove";
70
+ /** @hidden */
71
+ export declare const editorTabGeneral = "gantt.editTabGeneral";
72
+ /** @hidden */
73
+ export declare const editorTabPredecessors = "gantt.editTabPredecessors";
74
+ /** @hidden */
75
+ export declare const editorTabSuccessors = "gantt.editTabSuccessors";
76
+ /** @hidden */
77
+ export declare const editorTitle = "gantt.editorTitle";
78
+ /** @hidden */
79
+ export declare const editorTaskTitle = "gantt.editorTaskTitle";
80
+ /** @hidden */
81
+ export declare const editorTaskStart = "gantt.editorTaskStart";
82
+ /** @hidden */
83
+ export declare const editorTaskEnd = "gantt.editorTaskEnd";
84
+ /** @hidden */
85
+ export declare const editorTaskPlannedStart = "gantt.editorTaskPlannedStart";
86
+ /** @hidden */
87
+ export declare const editorTaskPlannedEnd = "gantt.editorTaskPlannedEnd";
88
+ /** @hidden */
89
+ export declare const editorTaskActualStart = "gantt.editorTaskActualStart";
90
+ /** @hidden */
91
+ export declare const editorTaskActualEnd = "gantt.editorTaskActualEnd";
92
+ /** @hidden */
93
+ export declare const editorTaskComplete = "gantt.editorTaskComplete";
94
+ /** @hidden */
95
+ export declare const editorTaskParent = "gantt.editorTaskParent";
96
+ /** @hidden */
97
+ export declare const editorValidationRequired = "gantt.editorValidationRequired";
98
+ /** @hidden */
99
+ export declare const editorValidationStart = "gantt.editorValidationStart";
100
+ /** @hidden */
101
+ export declare const editorValidationEnd = "gantt.editorValidationEnd";
102
+ /** @hidden */
103
+ export declare const editorValidationPercentCompleteRange = "gantt.editorValidationPercentCompleteRange";
104
+ export declare const editorDependencyTypesFF = "gantt.editorDependencyTypesFF";
105
+ /** @hidden */
106
+ export declare const editorDependencyTypesSF = "gantt.editorDependencyTypesSF";
107
+ /** @hidden */
108
+ export declare const editorDependencyTypesFS = "gantt.editorDependencyTypesFS";
109
+ /** @hidden */
110
+ export declare const editorDependencyTypesSS = "gantt.editorDependencyTypesSS";
111
+ /** @hidden */
112
+ export declare const addTask = "gantt.addTask";
113
+ /** @hidden */
114
+ export declare const addChild = "gantt.addChild";
115
+ /** @hidden */
116
+ export declare const addAbove = "gantt.addAbove";
117
+ /** @hidden */
118
+ export declare const addBelow = "gantt.addBelow";
119
+ /** @hidden */
120
+ export declare const viewSelector = "gantt.viewSelector";
121
+ /** @hidden */
122
+ export declare const editorDelete = "gantt.editorDelete";
123
+ /** @hidden */
124
+ export declare const deleteConfirmation = "gantt.deleteConfirmation";
125
+ /** @hidden */
126
+ export declare const deleteDialogTitle = "gantt.deleteDialogTitle";
127
+ /** @hidden */
128
+ export declare const editorDependencyNameLabel = "gantt.editorDependencyNameLabel";
129
+ /** @hidden */
130
+ export declare const editorDependencyTypeLabel = "gantt.editorDependencyTypeLabel";
131
+ /**
132
+ * @hidden
133
+ */
134
+ export declare const messages: {
135
+ "gantt.weekViewTitle": string;
136
+ "gantt.dayViewTitle": string;
137
+ "gantt.monthViewTitle": string;
138
+ "gantt.yearViewTitle": string;
139
+ "gantt.filterClearButton": string;
140
+ "gantt.filterEqOperator": string;
141
+ "gantt.filterNotEqOperator": string;
142
+ "gantt.filterIsNullOperator": string;
143
+ "gantt.filterIsNotNullOperator": string;
144
+ "gantt.filterIsEmptyOperator": string;
145
+ "gantt.filterIsNotEmptyOperator": string;
146
+ "gantt.filterStartsWithOperator": string;
147
+ "gantt.filterContainsOperator": string;
148
+ "gantt.filterNotContainsOperator": string;
149
+ "gantt.filterEndsWithOperator": string;
150
+ "gantt.filterGteOperator": string;
151
+ "gantt.filterGtOperator": string;
152
+ "gantt.filterLteOperator": string;
153
+ "gantt.filterLtOperator": string;
154
+ "gantt.filterIsTrue": string;
155
+ "gantt.filterIsFalse": string;
156
+ "gantt.filterBooleanAll": string;
157
+ "gantt.filterAfterOrEqualOperator": string;
158
+ "gantt.filterAfterOperator": string;
159
+ "gantt.filterBeforeOperator": string;
160
+ "gantt.filterBeforeOrEqualOperator": string;
161
+ "gantt.noRecords": string;
162
+ "gantt.editSave": string;
163
+ "gantt.editCancel": string;
164
+ "gantt.editAdd": string;
165
+ "gantt.editRemove": string;
166
+ "gantt.editTabGeneral": string;
167
+ "gantt.editTabPredecessors": string;
168
+ "gantt.editTabSuccessors": string;
169
+ "gantt.editorTitle": string;
170
+ "gantt.editorTaskTitle": string;
171
+ "gantt.editorTaskStart": string;
172
+ "gantt.editorTaskEnd": string;
173
+ "gantt.editorTaskPlannedStart": string;
174
+ "gantt.editorTaskPlannedEnd": string;
175
+ "gantt.editorTaskActualStart": string;
176
+ "gantt.editorTaskActualEnd": string;
177
+ "gantt.editorTaskComplete": string;
178
+ "gantt.editorTaskParent": string;
179
+ "gantt.editorValidationRequired": string;
180
+ "gantt.editorValidationStart": string;
181
+ "gantt.editorValidationEnd": string;
182
+ "gantt.editorValidationPercentCompleteRange": string;
183
+ "gantt.editorDependencyTypesFF": string;
184
+ "gantt.editorDependencyTypesFS": string;
185
+ "gantt.editorDependencyTypesSF": string;
186
+ "gantt.editorDependencyTypesSS": string;
187
+ "gantt.addTask": string;
188
+ "gantt.addChild": string;
189
+ "gantt.addAbove": string;
190
+ "gantt.addBelow": string;
191
+ "gantt.viewSelector": string;
192
+ "gantt.editorDelete": string;
193
+ "gantt.deleteConfirmation": string;
194
+ "gantt.deleteDialogTitle": string;
195
+ "gantt.editorDependencyNameLabel": string;
196
+ "gantt.editorDependencyTypeLabel": string;
197
+ };
@@ -0,0 +1,12 @@
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 { PackageMetadata } from '@progress/kendo-licensing';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const packageMetadata: PackageMetadata;
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-gantt",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1768550552,version:"13.3.0",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"});exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-gantt",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1770288205,version:"13.4.0-develop.2",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"});exports.packageMetadata=e;
@@ -1,19 +1,13 @@
1
+ // Generated file. DO NOT EDIT.
1
2
  /**
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
- *-------------------------------------------------------------------------------------------
3
+ * @hidden
7
4
  */
8
- const e = Object.freeze({
9
- name: "@progress/kendo-react-gantt",
10
- productName: "KendoReact",
11
- productCode: "KENDOUIREACT",
12
- productCodes: ["KENDOUIREACT"],
13
- publishDate: 1768550552,
14
- version: "13.3.0",
15
- licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
5
+ export const packageMetadata = Object.freeze({
6
+ name: '@progress/kendo-react-gantt',
7
+ productName: 'KendoReact',
8
+ productCode: 'KENDOUIREACT',
9
+ productCodes: ['KENDOUIREACT'],
10
+ publishDate: 0,
11
+ version: '13.4.0-develop.2',
12
+ licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/components/my-license/'
16
13
  });
17
- export {
18
- e as packageMetadata
19
- };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-gantt",
3
- "version": "13.3.0",
3
+ "version": "13.4.0-develop.2",
4
4
  "description": "React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -29,18 +29,18 @@
29
29
  "@progress/kendo-date-math": "^1.4.1",
30
30
  "@progress/kendo-drawing": "^1.21.2",
31
31
  "@progress/kendo-licensing": "^1.7.2",
32
- "@progress/kendo-react-buttons": "13.3.0",
33
- "@progress/kendo-react-common": "13.3.0",
34
- "@progress/kendo-react-grid": "13.3.0",
35
- "@progress/kendo-react-data-tools": "13.3.0",
36
- "@progress/kendo-react-dateinputs": "13.3.0",
37
- "@progress/kendo-react-dialogs": "13.3.0",
38
- "@progress/kendo-react-dropdowns": "13.3.0",
39
- "@progress/kendo-react-form": "13.3.0",
40
- "@progress/kendo-react-inputs": "13.3.0",
41
- "@progress/kendo-react-intl": "13.3.0",
42
- "@progress/kendo-react-labels": "13.3.0",
43
- "@progress/kendo-react-treelist": "13.3.0",
32
+ "@progress/kendo-react-buttons": "13.4.0-develop.2",
33
+ "@progress/kendo-react-common": "13.4.0-develop.2",
34
+ "@progress/kendo-react-grid": "13.4.0-develop.2",
35
+ "@progress/kendo-react-data-tools": "13.4.0-develop.2",
36
+ "@progress/kendo-react-dateinputs": "13.4.0-develop.2",
37
+ "@progress/kendo-react-dialogs": "13.4.0-develop.2",
38
+ "@progress/kendo-react-dropdowns": "13.4.0-develop.2",
39
+ "@progress/kendo-react-form": "13.4.0-develop.2",
40
+ "@progress/kendo-react-inputs": "13.4.0-develop.2",
41
+ "@progress/kendo-react-intl": "13.4.0-develop.2",
42
+ "@progress/kendo-react-labels": "13.4.0-develop.2",
43
+ "@progress/kendo-react-treelist": "13.4.0-develop.2",
44
44
  "@progress/kendo-svg-icons": "^4.0.0",
45
45
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
46
46
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
@@ -69,7 +69,7 @@
69
69
  "package": {
70
70
  "productName": "KendoReact",
71
71
  "productCode": "KENDOUIREACT",
72
- "publishDate": 1768550552,
72
+ "publishDate": 1770288205,
73
73
  "licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
74
74
  }
75
75
  },
@@ -0,0 +1,11 @@
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 default row component of the Gantt.
10
+ */
11
+ export declare const GanttRow: import('react').ForwardRefExoticComponent<import('@progress/kendo-react-treelist').TreeListRowProps & import('react').RefAttributes<HTMLTableRowElement>>;