@progress/kendo-react-gantt 6.1.1 → 7.0.0-develop.10

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 (292) hide show
  1. package/{dist/npm/Gantt.d.ts → Gantt.d.ts} +4 -0
  2. package/LICENSE.md +1 -1
  3. package/{dist/es/cells → cells}/FilterCells/GanttBooleanFilter.d.ts +4 -0
  4. package/{dist/npm/cells → cells}/FilterCells/GanttDateFilter.d.ts +4 -0
  5. package/{dist/es/cells → cells}/FilterCells/GanttNumericFilter.d.ts +4 -0
  6. package/{dist/npm/cells → cells}/FilterCells/GanttTextFilter.d.ts +4 -0
  7. package/{dist/npm/cells → cells}/FilterCells/utils.d.ts +4 -0
  8. package/{dist/npm/components → components}/BaseView.d.ts +4 -0
  9. package/components/GanttDependency.d.ts +13 -0
  10. package/{dist/npm/components → components}/GanttTask.d.ts +4 -0
  11. package/{dist/npm/components → components}/GanttTreelist.d.ts +6 -2
  12. package/{dist/npm/components → components}/toolbar/AddButton.d.ts +4 -0
  13. package/{dist/npm/components → components}/toolbar/Toolbar.d.ts +4 -0
  14. package/{dist/es/components → components}/toolbar/view-selector/ViewSelector.d.ts +4 -0
  15. package/components/toolbar/view-selector/ViewSelectorItem.d.ts +15 -0
  16. package/components/toolbar/view-selector/ViewSelectorList.d.ts +7 -0
  17. package/{dist/npm/constants → constants}/index.d.ts +4 -0
  18. package/{dist/es/context → context}/GanttContext.d.ts +17 -13
  19. package/{dist/npm/context → context}/GanttViewContext.d.ts +8 -4
  20. package/dist/cdn/js/kendo-react-gantt.js +5 -1
  21. package/editors/FormDateTimePicker.d.ts +8 -0
  22. package/editors/FormInput.d.ts +8 -0
  23. package/editors/FormNumericTextBox.d.ts +8 -0
  24. package/editors/GanttEditor.d.ts +8 -0
  25. package/{dist/npm/editors → editors}/GanttForm.d.ts +4 -0
  26. package/{dist/es/editors → editors}/GanttRemoveDialog.d.ts +4 -0
  27. package/hooks/useControlledState.d.ts +8 -0
  28. package/{dist/es/hooks → hooks}/useDictionaryStore.d.ts +5 -1
  29. package/hooks/useGanttTask.d.ts +8 -0
  30. package/index.d.ts +30 -0
  31. package/index.js +5 -0
  32. package/index.mjs +2582 -0
  33. package/interfaces/AddDirection.d.ts +10 -0
  34. package/interfaces/DataItem.d.ts +10 -0
  35. package/interfaces/DateRange.d.ts +12 -0
  36. package/{dist/es/interfaces → interfaces}/DependencyModelFields.d.ts +4 -0
  37. package/{dist/npm/interfaces → interfaces}/GanttBaseProps.d.ts +4 -1
  38. package/{dist/es/interfaces → interfaces}/GanttCellProps.d.ts +4 -1
  39. package/{dist/npm/interfaces → interfaces}/GanttColumnProps.d.ts +4 -0
  40. package/{dist/npm/interfaces → interfaces}/GanttDependencyModelFields.d.ts +4 -0
  41. package/interfaces/GanttFilterCellProps.d.ts +10 -0
  42. package/interfaces/GanttFilterOperator.d.ts +10 -0
  43. package/interfaces/GanttHeaderCellProps.d.ts +10 -0
  44. package/interfaces/GanttNoRecordsProps.d.ts +13 -0
  45. package/{dist/npm/interfaces → interfaces}/GanttProps.d.ts +4 -1
  46. package/{dist/es/interfaces → interfaces}/GanttRowProps.d.ts +4 -1
  47. package/{dist/es/interfaces → interfaces}/GanttSelectableSettings.d.ts +5 -1
  48. package/interfaces/GanttSlotType.d.ts +8 -0
  49. package/interfaces/GanttSortSettings.d.ts +17 -0
  50. package/{dist/es/interfaces → interfaces}/GanttTaskModelFields.d.ts +4 -0
  51. package/{dist/npm/interfaces → interfaces}/GanttView.d.ts +6 -3
  52. package/{dist/es/interfaces → interfaces}/GanttViewTimelineHeaderCellProps.d.ts +4 -0
  53. package/interfaces/Rectangle.d.ts +10 -0
  54. package/interfaces/Slot.d.ts +16 -0
  55. package/interfaces/TaskModelFields.d.ts +19 -0
  56. package/{dist/npm/interfaces → interfaces}/events.d.ts +4 -0
  57. package/{dist/es/messages → messages}/index.d.ts +4 -0
  58. package/package-metadata.d.ts +9 -0
  59. package/package.json +40 -57
  60. package/rows/GanttRow.d.ts +8 -0
  61. package/{dist/es/utils → utils}/data-operations.d.ts +4 -0
  62. package/{dist/es/utils → utils}/index.d.ts +11 -7
  63. package/{dist/npm/views → views}/GanttDayView.d.ts +4 -0
  64. package/{dist/npm/views → views}/GanttMonthView.d.ts +4 -0
  65. package/{dist/es/views → views}/GanttWeekView.d.ts +4 -0
  66. package/{dist/npm/views → views}/GanttYearView.d.ts +4 -0
  67. package/about.md +0 -3
  68. package/dist/es/Gantt.d.ts +0 -25
  69. package/dist/es/Gantt.js +0 -332
  70. package/dist/es/GanttNoRecords.d.ts +0 -12
  71. package/dist/es/GanttNoRecords.js +0 -37
  72. package/dist/es/cells/FilterCells/GanttBooleanFilter.js +0 -31
  73. package/dist/es/cells/FilterCells/GanttDateFilter.d.ts +0 -10
  74. package/dist/es/cells/FilterCells/GanttDateFilter.js +0 -31
  75. package/dist/es/cells/FilterCells/GanttNumericFilter.js +0 -31
  76. package/dist/es/cells/FilterCells/GanttTextFilter.d.ts +0 -10
  77. package/dist/es/cells/FilterCells/GanttTextFilter.js +0 -31
  78. package/dist/es/cells/FilterCells/utils.d.ts +0 -38
  79. package/dist/es/cells/FilterCells/utils.js +0 -66
  80. package/dist/es/components/BaseView.d.ts +0 -20
  81. package/dist/es/components/BaseView.js +0 -253
  82. package/dist/es/components/GanttDependency.d.ts +0 -10
  83. package/dist/es/components/GanttDependency.js +0 -56
  84. package/dist/es/components/GanttTask.d.ts +0 -12
  85. package/dist/es/components/GanttTask.js +0 -164
  86. package/dist/es/components/GanttTreelist.d.ts +0 -138
  87. package/dist/es/components/GanttTreelist.js +0 -607
  88. package/dist/es/components/toolbar/AddButton.d.ts +0 -12
  89. package/dist/es/components/toolbar/AddButton.js +0 -47
  90. package/dist/es/components/toolbar/Toolbar.d.ts +0 -21
  91. package/dist/es/components/toolbar/Toolbar.js +0 -41
  92. package/dist/es/components/toolbar/view-selector/ViewSelector.js +0 -38
  93. package/dist/es/components/toolbar/view-selector/ViewSelectorItem.d.ts +0 -12
  94. package/dist/es/components/toolbar/view-selector/ViewSelectorItem.js +0 -17
  95. package/dist/es/components/toolbar/view-selector/ViewSelectorList.d.ts +0 -3
  96. package/dist/es/components/toolbar/view-selector/ViewSelectorList.js +0 -42
  97. package/dist/es/constants/index.d.ts +0 -53
  98. package/dist/es/constants/index.js +0 -63
  99. package/dist/es/context/GanttContext.js +0 -105
  100. package/dist/es/context/GanttViewContext.d.ts +0 -40
  101. package/dist/es/context/GanttViewContext.js +0 -31
  102. package/dist/es/editors/FormAssingmentsEditor.d.ts +0 -5
  103. package/dist/es/editors/FormAssingmentsEditor.js +0 -20
  104. package/dist/es/editors/FormDateTimePicker.d.ts +0 -5
  105. package/dist/es/editors/FormDateTimePicker.js +0 -45
  106. package/dist/es/editors/FormInput.d.ts +0 -5
  107. package/dist/es/editors/FormInput.js +0 -44
  108. package/dist/es/editors/FormNumericTextBox.d.ts +0 -5
  109. package/dist/es/editors/FormNumericTextBox.js +0 -44
  110. package/dist/es/editors/GanttEditor.d.ts +0 -5
  111. package/dist/es/editors/GanttEditor.js +0 -39
  112. package/dist/es/editors/GanttForm.d.ts +0 -44
  113. package/dist/es/editors/GanttForm.js +0 -72
  114. package/dist/es/editors/GanttRemoveDialog.js +0 -61
  115. package/dist/es/hooks/useControlledState.d.ts +0 -4
  116. package/dist/es/hooks/useControlledState.js +0 -23
  117. package/dist/es/hooks/useDictionaryStore.js +0 -24
  118. package/dist/es/hooks/useGanttTask.d.ts +0 -4
  119. package/dist/es/hooks/useGanttTask.js +0 -27
  120. package/dist/es/interfaces/AddDirection.d.ts +0 -6
  121. package/dist/es/interfaces/AddDirection.js +0 -1
  122. package/dist/es/interfaces/DataAction.d.ts +0 -25
  123. package/dist/es/interfaces/DataAction.js +0 -9
  124. package/dist/es/interfaces/DataItem.d.ts +0 -6
  125. package/dist/es/interfaces/DataItem.js +0 -1
  126. package/dist/es/interfaces/DateRange.d.ts +0 -8
  127. package/dist/es/interfaces/DateRange.js +0 -1
  128. package/dist/es/interfaces/DependencyModelFields.js +0 -1
  129. package/dist/es/interfaces/DragEvent.d.ts +0 -14
  130. package/dist/es/interfaces/DragEvent.js +0 -1
  131. package/dist/es/interfaces/GanttBaseProps.d.ts +0 -63
  132. package/dist/es/interfaces/GanttBaseProps.js +0 -1
  133. package/dist/es/interfaces/GanttCellProps.js +0 -1
  134. package/dist/es/interfaces/GanttColumnProps.d.ts +0 -36
  135. package/dist/es/interfaces/GanttColumnProps.js +0 -1
  136. package/dist/es/interfaces/GanttDependencyModelFields.d.ts +0 -25
  137. package/dist/es/interfaces/GanttDependencyModelFields.js +0 -1
  138. package/dist/es/interfaces/GanttFilterCellProps.d.ts +0 -6
  139. package/dist/es/interfaces/GanttFilterCellProps.js +0 -1
  140. package/dist/es/interfaces/GanttFilterOperator.d.ts +0 -6
  141. package/dist/es/interfaces/GanttFilterOperator.js +0 -1
  142. package/dist/es/interfaces/GanttHeaderCellProps.d.ts +0 -6
  143. package/dist/es/interfaces/GanttHeaderCellProps.js +0 -1
  144. package/dist/es/interfaces/GanttNoRecordsProps.d.ts +0 -10
  145. package/dist/es/interfaces/GanttNoRecordsProps.js +0 -1
  146. package/dist/es/interfaces/GanttProps.d.ts +0 -147
  147. package/dist/es/interfaces/GanttProps.js +0 -1
  148. package/dist/es/interfaces/GanttRowProps.js +0 -1
  149. package/dist/es/interfaces/GanttSelectableSettings.js +0 -2
  150. package/dist/es/interfaces/GanttSlotType.d.ts +0 -4
  151. package/dist/es/interfaces/GanttSlotType.js +0 -1
  152. package/dist/es/interfaces/GanttSortSettings.d.ts +0 -13
  153. package/dist/es/interfaces/GanttSortSettings.js +0 -19
  154. package/dist/es/interfaces/GanttTaskModelFields.js +0 -1
  155. package/dist/es/interfaces/GanttView.d.ts +0 -77
  156. package/dist/es/interfaces/GanttView.js +0 -1
  157. package/dist/es/interfaces/GanttViewTimelineHeaderCellProps.js +0 -1
  158. package/dist/es/interfaces/Rectangle.d.ts +0 -6
  159. package/dist/es/interfaces/Rectangle.js +0 -1
  160. package/dist/es/interfaces/Slot.d.ts +0 -12
  161. package/dist/es/interfaces/Slot.js +0 -1
  162. package/dist/es/interfaces/TaskModelFields.d.ts +0 -15
  163. package/dist/es/interfaces/TaskModelFields.js +0 -1
  164. package/dist/es/interfaces/events.d.ts +0 -294
  165. package/dist/es/interfaces/events.js +0 -84
  166. package/dist/es/main.d.ts +0 -26
  167. package/dist/es/main.js +0 -17
  168. package/dist/es/messages/index.js +0 -138
  169. package/dist/es/package-metadata.d.ts +0 -5
  170. package/dist/es/package-metadata.js +0 -11
  171. package/dist/es/rows/GanttRow.d.ts +0 -5
  172. package/dist/es/rows/GanttRow.js +0 -5
  173. package/dist/es/utils/data-operations.js +0 -319
  174. package/dist/es/utils/index.js +0 -455
  175. package/dist/es/views/GanttDayView.d.ts +0 -17
  176. package/dist/es/views/GanttDayView.js +0 -102
  177. package/dist/es/views/GanttMonthView.d.ts +0 -13
  178. package/dist/es/views/GanttMonthView.js +0 -78
  179. package/dist/es/views/GanttWeekView.js +0 -84
  180. package/dist/es/views/GanttYearView.d.ts +0 -13
  181. package/dist/es/views/GanttYearView.js +0 -70
  182. package/dist/npm/Gantt.js +0 -335
  183. package/dist/npm/GanttNoRecords.d.ts +0 -12
  184. package/dist/npm/GanttNoRecords.js +0 -40
  185. package/dist/npm/cells/FilterCells/GanttBooleanFilter.d.ts +0 -10
  186. package/dist/npm/cells/FilterCells/GanttBooleanFilter.js +0 -35
  187. package/dist/npm/cells/FilterCells/GanttDateFilter.js +0 -35
  188. package/dist/npm/cells/FilterCells/GanttNumericFilter.d.ts +0 -10
  189. package/dist/npm/cells/FilterCells/GanttNumericFilter.js +0 -35
  190. package/dist/npm/cells/FilterCells/GanttTextFilter.js +0 -35
  191. package/dist/npm/cells/FilterCells/utils.js +0 -70
  192. package/dist/npm/components/BaseView.js +0 -256
  193. package/dist/npm/components/GanttDependency.d.ts +0 -10
  194. package/dist/npm/components/GanttDependency.js +0 -60
  195. package/dist/npm/components/GanttTask.js +0 -167
  196. package/dist/npm/components/GanttTreelist.js +0 -610
  197. package/dist/npm/components/toolbar/AddButton.js +0 -50
  198. package/dist/npm/components/toolbar/Toolbar.js +0 -44
  199. package/dist/npm/components/toolbar/view-selector/ViewSelector.d.ts +0 -24
  200. package/dist/npm/components/toolbar/view-selector/ViewSelector.js +0 -41
  201. package/dist/npm/components/toolbar/view-selector/ViewSelectorItem.d.ts +0 -12
  202. package/dist/npm/components/toolbar/view-selector/ViewSelectorItem.js +0 -21
  203. package/dist/npm/components/toolbar/view-selector/ViewSelectorList.d.ts +0 -3
  204. package/dist/npm/components/toolbar/view-selector/ViewSelectorList.js +0 -45
  205. package/dist/npm/constants/index.js +0 -67
  206. package/dist/npm/context/GanttContext.d.ts +0 -121
  207. package/dist/npm/context/GanttContext.js +0 -121
  208. package/dist/npm/context/GanttViewContext.js +0 -38
  209. package/dist/npm/editors/FormAssingmentsEditor.d.ts +0 -5
  210. package/dist/npm/editors/FormAssingmentsEditor.js +0 -24
  211. package/dist/npm/editors/FormDateTimePicker.d.ts +0 -5
  212. package/dist/npm/editors/FormDateTimePicker.js +0 -49
  213. package/dist/npm/editors/FormInput.d.ts +0 -5
  214. package/dist/npm/editors/FormInput.js +0 -48
  215. package/dist/npm/editors/FormNumericTextBox.d.ts +0 -5
  216. package/dist/npm/editors/FormNumericTextBox.js +0 -48
  217. package/dist/npm/editors/GanttEditor.d.ts +0 -5
  218. package/dist/npm/editors/GanttEditor.js +0 -43
  219. package/dist/npm/editors/GanttForm.js +0 -76
  220. package/dist/npm/editors/GanttRemoveDialog.d.ts +0 -44
  221. package/dist/npm/editors/GanttRemoveDialog.js +0 -65
  222. package/dist/npm/hooks/useControlledState.d.ts +0 -4
  223. package/dist/npm/hooks/useControlledState.js +0 -27
  224. package/dist/npm/hooks/useDictionaryStore.d.ts +0 -18
  225. package/dist/npm/hooks/useDictionaryStore.js +0 -28
  226. package/dist/npm/hooks/useGanttTask.d.ts +0 -4
  227. package/dist/npm/hooks/useGanttTask.js +0 -31
  228. package/dist/npm/interfaces/AddDirection.d.ts +0 -6
  229. package/dist/npm/interfaces/AddDirection.js +0 -2
  230. package/dist/npm/interfaces/DataAction.d.ts +0 -25
  231. package/dist/npm/interfaces/DataAction.js +0 -12
  232. package/dist/npm/interfaces/DataItem.d.ts +0 -6
  233. package/dist/npm/interfaces/DataItem.js +0 -2
  234. package/dist/npm/interfaces/DateRange.d.ts +0 -8
  235. package/dist/npm/interfaces/DateRange.js +0 -2
  236. package/dist/npm/interfaces/DependencyModelFields.d.ts +0 -25
  237. package/dist/npm/interfaces/DependencyModelFields.js +0 -2
  238. package/dist/npm/interfaces/DragEvent.d.ts +0 -14
  239. package/dist/npm/interfaces/DragEvent.js +0 -2
  240. package/dist/npm/interfaces/GanttBaseProps.js +0 -2
  241. package/dist/npm/interfaces/GanttCellProps.d.ts +0 -42
  242. package/dist/npm/interfaces/GanttCellProps.js +0 -2
  243. package/dist/npm/interfaces/GanttColumnProps.js +0 -2
  244. package/dist/npm/interfaces/GanttDependencyModelFields.js +0 -2
  245. package/dist/npm/interfaces/GanttFilterCellProps.d.ts +0 -6
  246. package/dist/npm/interfaces/GanttFilterCellProps.js +0 -2
  247. package/dist/npm/interfaces/GanttFilterOperator.d.ts +0 -6
  248. package/dist/npm/interfaces/GanttFilterOperator.js +0 -2
  249. package/dist/npm/interfaces/GanttHeaderCellProps.d.ts +0 -6
  250. package/dist/npm/interfaces/GanttHeaderCellProps.js +0 -2
  251. package/dist/npm/interfaces/GanttNoRecordsProps.d.ts +0 -10
  252. package/dist/npm/interfaces/GanttNoRecordsProps.js +0 -2
  253. package/dist/npm/interfaces/GanttProps.js +0 -2
  254. package/dist/npm/interfaces/GanttRowProps.d.ts +0 -92
  255. package/dist/npm/interfaces/GanttRowProps.js +0 -2
  256. package/dist/npm/interfaces/GanttSelectableSettings.d.ts +0 -18
  257. package/dist/npm/interfaces/GanttSelectableSettings.js +0 -3
  258. package/dist/npm/interfaces/GanttSlotType.d.ts +0 -4
  259. package/dist/npm/interfaces/GanttSlotType.js +0 -2
  260. package/dist/npm/interfaces/GanttSortSettings.d.ts +0 -13
  261. package/dist/npm/interfaces/GanttSortSettings.js +0 -23
  262. package/dist/npm/interfaces/GanttTaskModelFields.d.ts +0 -55
  263. package/dist/npm/interfaces/GanttTaskModelFields.js +0 -2
  264. package/dist/npm/interfaces/GanttView.js +0 -2
  265. package/dist/npm/interfaces/GanttViewTimelineHeaderCellProps.d.ts +0 -19
  266. package/dist/npm/interfaces/GanttViewTimelineHeaderCellProps.js +0 -2
  267. package/dist/npm/interfaces/Rectangle.d.ts +0 -6
  268. package/dist/npm/interfaces/Rectangle.js +0 -2
  269. package/dist/npm/interfaces/Slot.d.ts +0 -12
  270. package/dist/npm/interfaces/Slot.js +0 -2
  271. package/dist/npm/interfaces/TaskModelFields.d.ts +0 -15
  272. package/dist/npm/interfaces/TaskModelFields.js +0 -2
  273. package/dist/npm/interfaces/events.js +0 -85
  274. package/dist/npm/main.d.ts +0 -26
  275. package/dist/npm/main.js +0 -46
  276. package/dist/npm/messages/index.d.ts +0 -137
  277. package/dist/npm/messages/index.js +0 -141
  278. package/dist/npm/package-metadata.d.ts +0 -5
  279. package/dist/npm/package-metadata.js +0 -14
  280. package/dist/npm/rows/GanttRow.d.ts +0 -5
  281. package/dist/npm/rows/GanttRow.js +0 -8
  282. package/dist/npm/utils/data-operations.d.ts +0 -43
  283. package/dist/npm/utils/data-operations.js +0 -326
  284. package/dist/npm/utils/index.d.ts +0 -178
  285. package/dist/npm/utils/index.js +0 -485
  286. package/dist/npm/views/GanttDayView.js +0 -105
  287. package/dist/npm/views/GanttMonthView.js +0 -81
  288. package/dist/npm/views/GanttWeekView.d.ts +0 -13
  289. package/dist/npm/views/GanttWeekView.js +0 -87
  290. package/dist/npm/views/GanttYearView.js +0 -73
  291. package/dist/systemjs/kendo-react-gantt.js +0 -1
  292. package/e2e-next/gantt.basic.tests.ts +0 -24
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { GanttProps } from './interfaces/GanttProps';
3
7
  /**
package/LICENSE.md CHANGED
@@ -8,4 +8,4 @@ This is commercial software. To use it, you need to agree to the [**End User Lic
8
8
 
9
9
  All available KendoReact commercial licenses may be obtained at the [KendoReact website](https://www.telerik.com/kendo-react-ui/pricing).
10
10
 
11
- *Copyright © 2022 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.*
11
+ *Copyright © 2023 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.*
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { FilterComponentProps } from '@progress/kendo-react-data-tools';
3
7
  import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { FilterComponentProps } from '@progress/kendo-react-data-tools';
3
7
  import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { FilterComponentProps } from '@progress/kendo-react-data-tools';
3
7
  import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { FilterComponentProps } from '@progress/kendo-react-data-tools';
3
7
  import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import { LocalizationService } from '@progress/kendo-react-intl';
2
6
  import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
3
7
  /**
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { Slot } from '../interfaces/Slot';
3
7
  import { GanttViewTimelineHeaderCellProps } from '../interfaces/GanttViewTimelineHeaderCellProps';
@@ -0,0 +1,13 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ /** @hidden */
6
+ export interface GanttDependencyProps {
7
+ dependency: any;
8
+ }
9
+ /** @hidden */
10
+ export declare const GanttDependency: {
11
+ (props: GanttDependencyProps): import("react/jsx-runtime").JSX.Element;
12
+ displayName: string;
13
+ };
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { TreeListCellProps } from '@progress/kendo-react-treelist';
3
7
  /** @hidden */
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import * as PropTypes from 'prop-types';
3
7
  import { CommonDragLogic, ExtendedColumnProps, TableKeyboardNavigationContextType } from '@progress/kendo-react-data-tools';
@@ -87,7 +91,7 @@ export declare class GanttTreeList extends React.Component<GanttTreeListProps, {
87
91
  private navigationStateRef;
88
92
  constructor(props: GanttTreeListProps);
89
93
  scrollIntoView: (options: {
90
- rowIndex?: number | undefined;
94
+ rowIndex?: number;
91
95
  }) => void;
92
96
  /**
93
97
  * @hidden
@@ -108,7 +112,7 @@ export declare class GanttTreeList extends React.Component<GanttTreeListProps, {
108
112
  /**
109
113
  * @hidden
110
114
  */
111
- render(): JSX.Element;
115
+ render(): import("react/jsx-runtime").JSX.Element;
112
116
  private getColumns;
113
117
  private get flatData();
114
118
  private onKeyDown;
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { DataItem } from '../../interfaces/DataItem';
3
7
  import { AddDirection } from '../../interfaces/AddDirection';
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { ToolbarProps as KendoToolbarProps } from '@progress/kendo-react-buttons';
3
7
  /** @hidden */
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { ToolbarItemProps } from '@progress/kendo-react-buttons';
3
7
  /**
@@ -0,0 +1,15 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ButtonProps } from '@progress/kendo-react-buttons';
6
+ import { GanttViewProps } from '../../../interfaces/GanttView';
7
+ /** @hidden */
8
+ export interface ViewSelectorItemProps extends ButtonProps {
9
+ view: GanttViewProps;
10
+ }
11
+ /** @hidden */
12
+ export declare const ViewSelectorItem: {
13
+ (props: ViewSelectorItemProps): import("react/jsx-runtime").JSX.Element;
14
+ displayName: string;
15
+ };
@@ -0,0 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import * as React from 'react';
6
+ /** @hidden */
7
+ export declare const ViewSelectorList: React.ForwardRefExoticComponent<React.RefAttributes<unknown>>;
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import { MS_PER_DAY, MS_PER_HOUR, MS_PER_MINUTE } from '@progress/kendo-date-math';
2
6
  import { TaskModelFields } from '../interfaces/TaskModelFields';
3
7
  import { DependencyModelFields } from '../interfaces/DependencyModelFields';
@@ -1,3 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { TaskModelFields } from '../interfaces/TaskModelFields';
3
7
  import { DependencyModelFields } from '../interfaces/DependencyModelFields';
@@ -7,67 +11,67 @@ import { DateRange } from '../interfaces/DateRange';
7
11
  import { GanttBaseProps } from '../interfaces/GanttBaseProps';
8
12
  import { GanttDependencyCreateEvent, GanttTaskClickEvent, GanttTaskContextMenuEvent, GanttTaskDoubleClickEvent, GanttTaskRemoveClickEvent } from '../interfaces/events';
9
13
  /** @hidden */
10
- export declare type GanttTaskDataContextType = any[];
14
+ export type GanttTaskDataContextType = any[];
11
15
  /** @hidden */
12
16
  export declare const GanttTaskDataContext: React.Context<GanttTaskDataContextType>;
13
17
  /** @hidden */
14
18
  export declare const useGanttTaskDataContext: () => GanttTaskDataContextType;
15
19
  /** @hidden */
16
- export declare type GanttDependencyDataContextType = any[];
20
+ export type GanttDependencyDataContextType = any[];
17
21
  /** @hidden */
18
22
  export declare const GanttDependencyDataContext: React.Context<GanttDependencyDataContextType>;
19
23
  /** @hidden */
20
24
  export declare const useGanttDependencyDataContext: () => GanttDependencyDataContextType;
21
25
  /** @hidden */
22
- export declare type GanttTaskModelFieldsContextType = TaskModelFields;
26
+ export type GanttTaskModelFieldsContextType = TaskModelFields;
23
27
  /** @hidden */
24
28
  export declare const GanttTaskModelFieldsContext: React.Context<TaskModelFields>;
25
29
  /** @hidden */
26
30
  export declare const useGanttTaskModelFieldsContext: () => GanttTaskModelFieldsContextType;
27
31
  /** @hidden */
28
- export declare type GanttDependencyModelFieldsContextType = DependencyModelFields;
32
+ export type GanttDependencyModelFieldsContextType = DependencyModelFields;
29
33
  /** @hidden */
30
34
  export declare const GanttDependencyModelFieldsContext: React.Context<DependencyModelFields>;
31
35
  /** @hidden */
32
36
  export declare const useGanttDependencyModelFieldsContext: () => GanttDependencyModelFieldsContextType;
33
37
  /** @hidden */
34
- export declare type GanttPropsContextType = GanttBaseProps;
38
+ export type GanttPropsContextType = GanttBaseProps;
35
39
  /** @hidden */
36
40
  export declare const GanttPropsContext: React.Context<GanttBaseProps>;
37
41
  /** @hidden */
38
42
  export declare const useGanttPropsContext: () => GanttPropsContextType;
39
43
  /** @hidden */
40
- export declare type GanttDateRangeContextType = DateRange;
44
+ export type GanttDateRangeContextType = DateRange;
41
45
  /** @hidden */
42
46
  export declare const GanttDateRangeContext: React.Context<DateRange>;
43
47
  /** @hidden */
44
48
  export declare const useGanttDateRangeContext: () => GanttDateRangeContextType;
45
49
  /** @hidden */
46
- export declare type GanttViewsContextType = GanttView[];
50
+ export type GanttViewsContextType = GanttView[];
47
51
  /** @hidden */
48
52
  export declare const GanttViewsContext: React.Context<GanttViewsContextType>;
49
53
  /** @hidden */
50
54
  export declare const useGanttViewsContext: () => GanttViewsContextType;
51
55
  /** @hidden */
52
- export declare type GanttActiveViewContextType = [string, (activeView: string, event?: any) => void];
56
+ export type GanttActiveViewContextType = [string, (activeView: string, event?: any) => void];
53
57
  /** @hidden */
54
58
  export declare const GanttActiveViewContext: React.Context<GanttActiveViewContextType>;
55
59
  /** @hidden */
56
60
  export declare const useGanttActiveViewContext: () => GanttActiveViewContextType;
57
61
  /** @hidden */
58
- export declare type GanttRowHeightContextType = number;
62
+ export type GanttRowHeightContextType = number;
59
63
  /** @hidden */
60
64
  export declare const GanttRowHeightContext: React.Context<number>;
61
65
  /** @hidden */
62
66
  export declare const useGanttRowHeightContext: () => GanttRowHeightContextType;
63
67
  /** @hidden */
64
- export declare type GanttToolbarHeightContextType = number;
68
+ export type GanttToolbarHeightContextType = number;
65
69
  /** @hidden */
66
70
  export declare const GanttToolbarHeightContext: React.Context<number>;
67
71
  /** @hidden */
68
72
  export declare const useGanttToolbarHeightContext: () => GanttToolbarHeightContextType;
69
73
  /** @hidden */
70
- export declare type GanttEventsContextType = {
74
+ export type GanttEventsContextType = {
71
75
  onDataStateChange: (args: TreeListDataStateChangeEvent) => void;
72
76
  onSortChange: (args: TreeListSortChangeEvent) => void;
73
77
  onFilterChange: (args: TreeListFilterChangeEvent) => void;
@@ -88,7 +92,7 @@ export declare const GanttEventsContext: React.Context<GanttEventsContextType>;
88
92
  /** @hidden */
89
93
  export declare const useGanttEventsContext: () => GanttEventsContextType;
90
94
  /** @hidden */
91
- export declare type GanttTaskEventsContextType = {
95
+ export type GanttTaskEventsContextType = {
92
96
  onTaskClick: (args: GanttTaskClickEvent) => void;
93
97
  onTaskDoubleClick: (args: GanttTaskDoubleClickEvent) => void;
94
98
  onTaskContextMenu: (args: GanttTaskContextMenuEvent) => void;
@@ -116,6 +120,6 @@ export interface GanttContextProps {
116
120
  }
117
121
  /** @hidden */
118
122
  export declare const GanttContext: {
119
- ({ children, taskData, dependencyData, taskModelFields, dependencyModelFields, props, dateRange, views, activeView, rowHeight, toolbarHeight, events, taskEvents }: GanttContextProps): JSX.Element;
123
+ ({ children, taskData, dependencyData, taskModelFields, dependencyModelFields, props, dateRange, views, activeView, rowHeight, toolbarHeight, events, taskEvents }: GanttContextProps): import("react/jsx-runtime").JSX.Element;
120
124
  displayName: string;
121
125
  };
@@ -1,21 +1,25 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
4
+ *-------------------------------------------------------------------------------------------*/
1
5
  import * as React from 'react';
2
6
  import { NormalizedDragEvent } from '@progress/kendo-react-common';
3
7
  import { Store, StoreAction } from '../hooks/useDictionaryStore';
4
8
  import { GanttTaskHandle } from '../components/GanttTask';
5
9
  /** @hidden */
6
- export declare type GanttViewTasksContextType = [Store<GanttTaskHandle>, (event: StoreAction<GanttTaskHandle>) => void];
10
+ export type GanttViewTasksContextType = [Store<GanttTaskHandle>, (event: StoreAction<GanttTaskHandle>) => void];
7
11
  /** @hidden */
8
12
  export declare const GanttViewTasksContext: React.Context<GanttViewTasksContextType>;
9
13
  /** @hidden */
10
14
  export declare const useGanttViewTasksContext: () => GanttViewTasksContextType;
11
15
  /** @hidden */
12
- export declare type GanttViewTimelineWidthContextType = number;
16
+ export type GanttViewTimelineWidthContextType = number;
13
17
  /** @hidden */
14
18
  export declare const GanttViewTimelineWidthContext: React.Context<number>;
15
19
  /** @hidden */
16
20
  export declare const useGanttViewTimelineWidthContext: () => GanttViewTimelineWidthContextType;
17
21
  /** @hidden */
18
- export declare type GanttViewDependencyDragContextType = {
22
+ export type GanttViewDependencyDragContextType = {
19
23
  onDependencyHandlePress: (event: NormalizedDragEvent) => void;
20
24
  onDependencyHandleDrag: (event: NormalizedDragEvent) => void;
21
25
  onDependencyHandleRelease: (event: NormalizedDragEvent) => void;
@@ -35,6 +39,6 @@ export interface GanttViewContextProps {
35
39
  }
36
40
  /** @hidden */
37
41
  export declare const GanttViewContext: {
38
- ({ children, tasksStore: tasks, timelineWidth, dependencyDrag }: GanttViewContextProps): JSX.Element;
42
+ ({ children, tasksStore: tasks, timelineWidth, dependencyDrag }: GanttViewContextProps): import("react/jsx-runtime").JSX.Element;
39
43
  displayName: string;
40
44
  };