@progress/kendo-angular-gantt 17.0.0-develop.4 → 17.0.0-develop.41

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 (164) hide show
  1. package/README.md +41 -17
  2. package/binding-directives/flat-binding.directive.d.ts +1 -1
  3. package/binding-directives/hierarchy-binding.directive.d.ts +1 -1
  4. package/columns/column-base.component.d.ts +1 -74
  5. package/columns/column-group.component.d.ts +1 -80
  6. package/columns/column.component.d.ts +1 -80
  7. package/columns/span-column.component.d.ts +1 -90
  8. package/dependencies/gantt-dependency.directive.d.ts +1 -1
  9. package/dragging/dependency-drag-create.directive.d.ts +1 -1
  10. package/editing/add-task.component.d.ts +1 -1
  11. package/editing/dependencies-table.component.d.ts +1 -1
  12. package/editing/edit-dialog.component.d.ts +1 -1
  13. package/{esm2020 → esm2022}/binding-directives/flat-binding.directive.mjs +7 -3
  14. package/{esm2020 → esm2022}/binding-directives/hierarchy-binding.directive.mjs +7 -3
  15. package/{esm2020 → esm2022}/columns/cell-template.directive.mjs +4 -3
  16. package/esm2022/columns/column-base.component.mjs +22 -0
  17. package/esm2022/columns/column-group.component.mjs +66 -0
  18. package/{esm2020 → esm2022}/columns/column-menu-template.directive.mjs +4 -3
  19. package/{esm2020 → esm2022}/columns/column.component.mjs +37 -65
  20. package/{esm2020 → esm2022}/columns/edit-template.directive.mjs +4 -3
  21. package/{esm2020 → esm2022}/columns/filter-cell-template.directive.mjs +4 -3
  22. package/{esm2020 → esm2022}/columns/filter-menu-template.directive.mjs +4 -3
  23. package/{esm2020 → esm2022}/columns/footer-template.directive.mjs +4 -3
  24. package/{esm2020 → esm2022}/columns/header-template.directive.mjs +4 -3
  25. package/esm2022/columns/span-column.component.mjs +66 -0
  26. package/{esm2020 → esm2022}/common/mapping.service.mjs +5 -7
  27. package/{esm2020 → esm2022}/common/option-changes.service.mjs +6 -8
  28. package/{esm2020 → esm2022}/dependencies/dependency-dom.service.mjs +21 -12
  29. package/{esm2020 → esm2022}/dependencies/gantt-dependency.directive.mjs +10 -4
  30. package/{esm2020 → esm2022}/dragging/dependency-drag-create.directive.mjs +41 -18
  31. package/{esm2020 → esm2022}/dragging/drag-validation-tooltip.component.mjs +24 -12
  32. package/{esm2020 → esm2022}/editing/add-task.component.mjs +31 -28
  33. package/{esm2020 → esm2022}/editing/dependencies-table.component.mjs +23 -16
  34. package/{esm2020 → esm2022}/editing/edit-dialog.component.mjs +14 -8
  35. package/{esm2020 → esm2022}/editing/edit.service.mjs +23 -17
  36. package/{esm2020 → esm2022}/editing/task-fields.component.mjs +8 -5
  37. package/{esm2020 → esm2022}/expanded-state/expand-event.mjs +4 -0
  38. package/{esm2020 → esm2022}/expanded-state/expandable.directive.mjs +3 -3
  39. package/{esm2020 → esm2022}/gantt.component.mjs +434 -364
  40. package/{esm2020 → esm2022}/gantt.module.mjs +31 -31
  41. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  42. package/{esm2020 → esm2022}/localization/gantt-localization.service.mjs +4 -3
  43. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  44. package/esm2022/localization/messages.mjs +441 -0
  45. package/esm2022/models/events/cell-close-event.interface.mjs +45 -0
  46. package/{esm2020 → esm2022}/navigation/navigation.service.mjs +40 -35
  47. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  48. package/{esm2020 → esm2022}/rendering/gantt-header-table-body.component.mjs +7 -7
  49. package/{esm2020 → esm2022}/rendering/gantt-milestone-task.component.mjs +11 -11
  50. package/{esm2020 → esm2022}/rendering/gantt-summary-task.component.mjs +16 -14
  51. package/{esm2020 → esm2022}/rendering/gantt-task-base.mjs +37 -18
  52. package/{esm2020 → esm2022}/rendering/gantt-task.component.mjs +14 -11
  53. package/{esm2020 → esm2022}/rendering/gantt-tasks-table-body.component.mjs +20 -8
  54. package/{esm2020 → esm2022}/scrolling/scroll-sync.service.mjs +9 -6
  55. package/{esm2020 → esm2022}/scrolling/timeline-scroll.directive.mjs +10 -4
  56. package/{esm2020 → esm2022}/scrolling/timeline-scroll.service.mjs +6 -8
  57. package/{esm2020 → esm2022}/selection/selectable.directive.mjs +18 -14
  58. package/{esm2020 → esm2022}/template-directives/summary-task-template.directive.mjs +4 -3
  59. package/{esm2020 → esm2022}/template-directives/task-content-template.directive.mjs +4 -3
  60. package/{esm2020 → esm2022}/template-directives/task-template.directive.mjs +4 -3
  61. package/{esm2020 → esm2022}/timeline/current-time-marker.service.mjs +36 -27
  62. package/{esm2020 → esm2022}/timeline/gantt-timeline.component.mjs +54 -16
  63. package/{esm2020 → esm2022}/timeline/timeline-base-view.service.mjs +6 -3
  64. package/{esm2020 → esm2022}/timeline/timeline-day-view.component.mjs +12 -12
  65. package/{esm2020 → esm2022}/timeline/timeline-day-view.service.mjs +4 -3
  66. package/{esm2020 → esm2022}/timeline/timeline-month-view.component.mjs +12 -12
  67. package/{esm2020 → esm2022}/timeline/timeline-month-view.service.mjs +4 -3
  68. package/{esm2020 → esm2022}/timeline/timeline-view.service.mjs +5 -4
  69. package/{esm2020 → esm2022}/timeline/timeline-week-view.component.mjs +12 -12
  70. package/{esm2020 → esm2022}/timeline/timeline-week-view.service.mjs +4 -3
  71. package/{esm2020 → esm2022}/timeline/timeline-year-view.component.mjs +12 -12
  72. package/{esm2020 → esm2022}/timeline/timeline-year-view.service.mjs +4 -3
  73. package/{esm2020 → esm2022}/timeline/view-base.mjs +22 -9
  74. package/{esm2020 → esm2022}/toolbar/toolbar-navigation.service.mjs +6 -4
  75. package/{esm2020 → esm2022}/toolbar/toolbar-template.directive.mjs +8 -7
  76. package/{esm2020 → esm2022}/toolbar/toolbar.component.mjs +21 -12
  77. package/{esm2020 → esm2022}/toolbar/view-selector.component.mjs +20 -15
  78. package/expanded-state/expandable.directive.d.ts +1 -1
  79. package/{fesm2020 → fesm2022}/progress-kendo-angular-gantt.mjs +1581 -1116
  80. package/gantt.component.d.ts +1 -1
  81. package/localization/messages.d.ts +1 -1
  82. package/models/cell-content-type.interface.d.ts +1 -1
  83. package/models/class-callbacks.d.ts +2 -2
  84. package/models/events/task-edit-event.interface.d.ts +1 -1
  85. package/models/filterable-settings.d.ts +1 -1
  86. package/models/sort-settings.d.ts +2 -2
  87. package/models/timeline-view.d.ts +1 -1
  88. package/models/toolbar-settings.d.ts +1 -1
  89. package/package.json +25 -31
  90. package/rendering/gantt-header-table-body.component.d.ts +1 -1
  91. package/rendering/gantt-summary-task.component.d.ts +1 -1
  92. package/rendering/gantt-task-base.d.ts +1 -1
  93. package/rendering/gantt-task.component.d.ts +1 -1
  94. package/rendering/gantt-tasks-table-body.component.d.ts +1 -1
  95. package/schematics/ngAdd/index.js +7 -7
  96. package/scrolling/scroll-sync.service.d.ts +2 -2
  97. package/scrolling/timeline-scroll.directive.d.ts +1 -1
  98. package/selection/selectable.directive.d.ts +1 -1
  99. package/timeline/gantt-timeline.component.d.ts +1 -1
  100. package/timeline/view-base.d.ts +1 -1
  101. package/toolbar/toolbar-template.directive.d.ts +1 -1
  102. package/toolbar/toolbar.component.d.ts +1 -1
  103. package/toolbar/view-selector.component.d.ts +1 -1
  104. package/utils.d.ts +1 -1
  105. package/esm2020/columns/column-base.component.mjs +0 -55
  106. package/esm2020/columns/column-group.component.mjs +0 -101
  107. package/esm2020/columns/span-column.component.mjs +0 -120
  108. package/esm2020/localization/messages.mjs +0 -157
  109. package/esm2020/models/events/cell-close-event.interface.mjs +0 -14
  110. package/fesm2015/progress-kendo-angular-gantt.mjs +0 -8219
  111. /package/{esm2020 → esm2022}/columns/columns.mjs +0 -0
  112. /package/{esm2020 → esm2022}/common/default-callbacks.mjs +0 -0
  113. /package/{esm2020 → esm2022}/dependencies/dom-dependency-args.mjs +0 -0
  114. /package/{esm2020 → esm2022}/dependencies/utils.mjs +0 -0
  115. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  116. /package/{esm2020 → esm2022}/editing/utils.mjs +0 -0
  117. /package/{esm2020 → esm2022}/index.mjs +0 -0
  118. /package/{esm2020 → esm2022}/models/cell-content-type.interface.mjs +0 -0
  119. /package/{esm2020 → esm2022}/models/class-callbacks.mjs +0 -0
  120. /package/{esm2020 → esm2022}/models/column-menu-settings.interface.mjs +0 -0
  121. /package/{esm2020 → esm2022}/models/column-reorder-config.mjs +0 -0
  122. /package/{esm2020 → esm2022}/models/current-time-settings.interface.mjs +0 -0
  123. /package/{esm2020 → esm2022}/models/date-range.interface.mjs +0 -0
  124. /package/{esm2020 → esm2022}/models/dependency-type.enum.mjs +0 -0
  125. /package/{esm2020 → esm2022}/models/events/cell-click-event.interface.mjs +0 -0
  126. /package/{esm2020 → esm2022}/models/events/click-event.interface.mjs +0 -0
  127. /package/{esm2020 → esm2022}/models/events/column-locked-change-event.interface.mjs +0 -0
  128. /package/{esm2020 → esm2022}/models/events/column-reorder-event.interface.mjs +0 -0
  129. /package/{esm2020 → esm2022}/models/events/column-resize-event.interface.mjs +0 -0
  130. /package/{esm2020 → esm2022}/models/events/column-visibility-change-event.interface.mjs +0 -0
  131. /package/{esm2020 → esm2022}/models/events/data-state-change-event.interface.mjs +0 -0
  132. /package/{esm2020 → esm2022}/models/events/dependency-add-event.interface.mjs +0 -0
  133. /package/{esm2020 → esm2022}/models/events/selected-view-change-event.interface.mjs +0 -0
  134. /package/{esm2020 → esm2022}/models/events/task-add-event.interface.mjs +0 -0
  135. /package/{esm2020 → esm2022}/models/events/task-click-event.interface.mjs +0 -0
  136. /package/{esm2020 → esm2022}/models/events/task-delete-event.interface.mjs +0 -0
  137. /package/{esm2020 → esm2022}/models/events/task-edit-event.interface.mjs +0 -0
  138. /package/{esm2020 → esm2022}/models/events/task-move-end-event.interface.mjs +0 -0
  139. /package/{esm2020 → esm2022}/models/events/task-move-event.interface.mjs +0 -0
  140. /package/{esm2020 → esm2022}/models/events/task-move-start-event.interface.mjs +0 -0
  141. /package/{esm2020 → esm2022}/models/events/task-resize-end-event.interface.mjs +0 -0
  142. /package/{esm2020 → esm2022}/models/events/task-resize-event.interface.mjs +0 -0
  143. /package/{esm2020 → esm2022}/models/events/task-resize-start-event.interface.mjs +0 -0
  144. /package/{esm2020 → esm2022}/models/filterable-settings.mjs +0 -0
  145. /package/{esm2020 → esm2022}/models/gantt-dependency-model-fields.interface.mjs +0 -0
  146. /package/{esm2020 → esm2022}/models/gantt-dependency.interface.mjs +0 -0
  147. /package/{esm2020 → esm2022}/models/gantt-task-model-fields.interface.mjs +0 -0
  148. /package/{esm2020 → esm2022}/models/gantt-task.interface.mjs +0 -0
  149. /package/{esm2020 → esm2022}/models/models.mjs +0 -0
  150. /package/{esm2020 → esm2022}/models/slot.interface.mjs +0 -0
  151. /package/{esm2020 → esm2022}/models/sort-settings.mjs +0 -0
  152. /package/{esm2020 → esm2022}/models/splitter-pane-options.interface.mjs +0 -0
  153. /package/{esm2020 → esm2022}/models/timeline-header-date-format.mjs +0 -0
  154. /package/{esm2020 → esm2022}/models/timeline-options.interface.mjs +0 -0
  155. /package/{esm2020 → esm2022}/models/timeline-view.mjs +0 -0
  156. /package/{esm2020 → esm2022}/models/toolbar-settings.mjs +0 -0
  157. /package/{esm2020 → esm2022}/models/view-item.interface.mjs +0 -0
  158. /package/{esm2020 → esm2022}/navigation/navigation-models.mjs +0 -0
  159. /package/{esm2020 → esm2022}/navigation/utils.mjs +0 -0
  160. /package/{esm2020 → esm2022}/progress-kendo-angular-gantt.mjs +0 -0
  161. /package/{esm2020 → esm2022}/scrolling/drag-scroll-settings.mjs +0 -0
  162. /package/{esm2020 → esm2022}/scrolling/utils.mjs +0 -0
  163. /package/{esm2020 → esm2022}/selection/selection-change-event.mjs +0 -0
  164. /package/{esm2020 → esm2022}/utils.mjs +0 -0
package/README.md CHANGED
@@ -2,30 +2,54 @@
2
2
  <img width="631" src="https://www.telerik.com/kendo-angular-ui/npm-banner.svg">
3
3
  </a>
4
4
 
5
- ## Native UI and Data Visualization Components for Angular
5
+ ## Kendo UI for Angular Gantt Component
6
6
 
7
- Kendo UI for Angular is a commercial UI library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
7
+ > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui)&mdash;a commercial library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
8
+ > * You must [install a license key](https://www.telerik.com/kendo-angular-ui/my-license) when adding the package to your project. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
9
+ > * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular dev team!
10
+ >
11
+ > [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
8
12
 
9
- > **Important**
10
- > * This package is part of the [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)&mdash;a commercial UI library.
11
- > * You will need to install a license key when adding the package to your project. For more information, please refer to the [My License page](https://www.telerik.com/kendo-angular-ui/my-license/).
12
- > * To receive a license key, you need to either [purchase a license](https://www.telerik.com/purchase/kendo-ui/) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui). Doing so indicates that you [Kendo UI for Angular License Agreement](https://www.telerik.com/purchase/license-agreement/kendo-ui).
13
- > * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI dev team!
13
+ ## Angular Gantt Component
14
+
15
+ The [Kendo UI for Angular Gantt](https://www.telerik.com/kendo-angular-ui/components/gantt) displays hierarchical tasks data in tabular and timeline formats and comes with a comprehensive set of ready-to-use features covering everything from data binding directives, sorting, filtering, tasks, dependencies, and intuitive display of task timelines, progression, and styling.
16
+
17
+ ## Key Features
18
+
19
+ Among the many features which the Kendo UI for Angular Gantt delivers are:
20
+
21
+ * [Data Binding](https://www.telerik.com/kendo-angular-ui/components/gantt/data-binding/basics)&mdash;The Gantt features automatic data-binding directives for flat and hierarchical data that provide data operations like sorting and filtering out-of-the-box.
22
+ * [Editing](https://www.telerik.com/kendo-angular-ui/components/gantt/editing/incell)&mdash;There are two editing modes that the Gantt component provides&mdash;in-cell and a built-in dialog. You can implement the more suitable edit mode depending on the specific requirements.
23
+ * [Sorting](https://www.telerik.com/kendo-angular-ui/components/gantt/sorting)&mdash;The Gantt supports a number of sorting options including sorting and unsorting single and multiple columns as well as sorting its data records in advance.
24
+ * [Filtering](https://www.telerik.com/kendo-angular-ui/components/gantt/filtering)&mdash;The Gantt provides options for displaying only those data records which meet specified criteria and also enables you to additionally customize its filtering behavior.
25
+ * [Tasks](https://www.telerik.com/kendo-angular-ui/components/gantt/tasks)&mdash;The Gantt renders a task element for each of its expanded data item row, also automatically displays the relevant dependencies between the tasks, and provides task templates for showing additional information and custom content for each Gantt task.
26
+ * [Toolbar](https://www.telerik.com/kendo-angular-ui/components/gantt/toolbar)&mdash;The Gantt displays a default top toolbar with a view selector component which allows you to customize both its position and content.
27
+ * [Columns](https://www.telerik.com/kendo-angular-ui/components/gantt/columns)&mdash;The Gantt supports extensive configuration settings for controlling the display and behavior of its columns, including options for hiding, locking, spanning row content, reordering, resizing, and using templates for customization.
28
+ * [Views](https://www.telerik.com/kendo-angular-ui/components/gantt/views)&mdash;The Gantt component comes with built-in support for day, week, and month timeline views, and an intuitive view selector component. The views can either be accessed from the default toolbar or configured as a standalone component in a custom toolbar template.
29
+ * [Panes](https://www.telerik.com/kendo-angular-ui/components/gantt/panes)&mdash;The Gantt contains two resizable and collapsible panes&mdash;a TreeList pane for the data representation of the Gantt, and a Timeline pane for the tasks and the task dependencies. Both panes provide configuration options for customization.
30
+ * [Selection](https://www.telerik.com/kendo-angular-ui/components/gantt/selection)&mdash;The Gantt enables the user to perform selection on single or multiple items in the task pane or items on the timeline.
31
+ * [Globalization](https://www.telerik.com/kendo-angular-ui/components/gantt/globalization)&mdash;By using the available globalization options in Kendo UI for Angular, you can translate the Gantt messages by adapting them to specific culture locales. Additionally, the Gantt supports rendering in a right-to-left (RTL) direction.
32
+ * [Accessibility](https://www.telerik.com/kendo-angular-ui/components/gantt/accessibility)&mdash;The Gantt is accessible for screen readers and support WAI-ARIA attributes.
33
+ * [Keyboard Navigation](https://www.telerik.com/kendo-angular-ui/components/gantt/keyboard-navigation)&mdash;The Gantt supports a number of keyboard shortcuts which alow users to accomplish various commands.
34
+
35
+ ## Support Options
36
+
37
+ For any issues you might encounter while working with the Kendo UI for Angular Gantt, you have the following support channels available:
38
+
39
+ * Industry-leading technical support&mdash;Kendo UI for Angular paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use the [dedicated Kendo UI for Angular support system](https://www.telerik.com/account/support-tickets).
40
+ * Product forums&mdash;The [Kendo UI for Angular forums](https://www.telerik.com/forums/kendo-angular-ui) are part of the free support you can get from the community and from the Kendo UI for Angular team.
41
+ * Feedback portal&mdash;The [Kendo UI for Angular feedback portal](https://feedback.telerik.com/kendo-angular-ui) is where you can request and vote for new features to be added.
14
42
 
15
43
  ## Resources
16
44
 
17
- * [Get Started with Kendo UI for Angular (requires trial registration)](https://www.telerik.com/kendo-angular-ui/getting-started)
18
- * [Demos, documentation, and component reference](https://www.telerik.com/kendo-angular-ui/components)
45
+ * [Getting Started with Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/getting-started)
46
+ * [Getting Started with the Kendo UI for Angular Gantt](https://www.telerik.com/kendo-angular-ui/components/gantt/installation/getting-started)
47
+ * [Gantt Overview page](https://www.telerik.com/kendo-angular-ui/components/gantt) and [Gantt API reference](https://www.telerik.com/kendo-angular-ui/components/gantt/api)
48
+ * [Kendo UI for Angular roadmap](https://www.telerik.com/kendo-angular-ui/roadmap)
19
49
  * [Blogs](http://www.telerik.com/blogs/kendo-ui)
50
+ * [Demos, documentation, and component reference](https://www.telerik.com/kendo-angular-ui/components)
20
51
  * [Kendo UI for Angular pricing and licensing](https://www.telerik.com/purchase/kendo-ui)
21
52
 
22
- ## Questions and Feedback
23
-
24
- * [Official Forums](https://www.telerik.com/forums/kendo-angular-ui)
25
- * [GitHub Issues](https://github.com/telerik/kendo-angular/issues)
26
- * [Feedback Portal](https://feedback.telerik.com/kendo-angular-ui)
27
- * [StackOverflow](https://stackoverflow.com/questions/tagged/kendo-ui-angular2)
28
-
29
- *Copyright © 2021 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
53
+ *Copyright © 2024 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
30
54
 
31
55
  *Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
@@ -20,5 +20,5 @@ export declare class GanttFlatBindingDirective extends FlatBindingDirective {
20
20
  */
21
21
  set aggregate(value: any);
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<GanttFlatBindingDirective, never>;
23
- static ɵdir: i0.ɵɵDirectiveDeclaration<GanttFlatBindingDirective, "[kendoGanttFlatBinding]", ["kendoGanttFlatBinding"], { "data": "kendoGanttFlatBinding"; }, {}, never, never, true, never>;
23
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GanttFlatBindingDirective, "[kendoGanttFlatBinding]", ["kendoGanttFlatBinding"], { "data": { "alias": "kendoGanttFlatBinding"; "required": false; }; }, {}, never, never, true, never>;
24
24
  }
@@ -18,5 +18,5 @@ export declare class GanttHierarchyBindingDirective extends HierarchyBindingDire
18
18
  */
19
19
  set aggregate(value: any);
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<GanttHierarchyBindingDirective, never>;
21
- static ɵdir: i0.ɵɵDirectiveDeclaration<GanttHierarchyBindingDirective, "[kendoGanttHierarchyBinding]", ["kendoGanttHierarchyBinding"], { "data": "kendoGanttHierarchyBinding"; }, {}, never, never, true, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GanttHierarchyBindingDirective, "[kendoGanttHierarchyBinding]", ["kendoGanttHierarchyBinding"], { "data": { "alias": "kendoGanttHierarchyBinding"; "required": false; }; }, {}, never, never, true, never>;
22
22
  }
@@ -8,79 +8,6 @@ import * as i0 from "@angular/core";
8
8
  * The base class for the column components of the Gantt.
9
9
  */
10
10
  export declare class GanttColumnBase extends ColumnBase {
11
- /**
12
- * Toggles the locked (frozen) state of the columns.
13
- *
14
- * @default false
15
- * @hidden
16
- */
17
- set locked(value: boolean);
18
- get locked(): boolean;
19
- /**
20
- * Specifies if the column can be locked or unlocked from the column menu or by reordering the columns.
21
- * @hidden
22
- */
23
- lockable: boolean;
24
- /**
25
- * Sets the visibility of the column.
26
- *
27
- * @default false
28
- */
29
- hidden: boolean;
30
- /**
31
- * Sets the condition that needs to be satisfied for a column to remain visible.
32
- * If you set the `hidden` property, the behavior of `media` is overridden.
33
- */
34
- media: string;
35
- /**
36
- * Sets the custom styles for the table cells (excluding the footer and header ones) of the column. Under the hood,
37
- * to apply the property, the `style` option uses the
38
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
39
- */
40
- style: {
41
- [key: string]: string;
42
- };
43
- /**
44
- * Sets the custom styles for the header cell of the column. Under the hood, to apply the property,
45
- * the `headerStyle` option uses the
46
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
47
- */
48
- headerStyle: {
49
- [key: string]: string;
50
- };
51
- /**
52
- * Sets the custom styles for the footer cell of the column. Under the hood, to apply the property,
53
- * the `footerStyle` option uses the
54
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
55
- */
56
- footerStyle: {
57
- [key: string]: string;
58
- };
59
- /**
60
- * Sets the custom CSS classes to the column cells. Under the hood, to apply the property, the `class` option uses the
61
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
62
- * To customize header and footer column cells, use the `headerClass`
63
- * and `footerClass` inputs.
64
- */
65
- cssClass: string | string[] | Set<string> | {
66
- [key: string]: any;
67
- };
68
- /**
69
- * Sets the custom CSS classes to the column header cell. Under the hood, to apply the property,
70
- * the `headerClass` option uses the
71
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
72
- */
73
- headerClass: string | string[] | Set<string> | {
74
- [key: string]: any;
75
- };
76
- /**
77
- * Sets the custom CSS classes to the column footer cell. Under the hood, to apply the property,
78
- * the `footerClass` option uses the
79
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
80
- */
81
- footerClass: string | string[] | Set<string> | {
82
- [key: string]: any;
83
- };
84
11
  static ɵfac: i0.ɵɵFactoryDeclaration<GanttColumnBase, never>;
85
- static ɵcmp: i0.ɵɵComponentDeclaration<GanttColumnBase, "kendo-gantt-column-base", never, { "locked": "locked"; "lockable": "lockable"; "hidden": "hidden"; "media": "media"; "style": "style"; "headerStyle": "headerStyle"; "footerStyle": "footerStyle"; "cssClass": "class"; "headerClass": "headerClass"; "footerClass": "footerClass"; }, {}, never, never, false, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<GanttColumnBase, "kendo-gantt-column-base", never, {}, {}, never, never, false, never>;
86
13
  }
@@ -6,7 +6,6 @@ import { QueryList } from '@angular/core';
6
6
  import { ColumnGroupComponent } from '@progress/kendo-angular-treelist';
7
7
  import { OptionChangesService } from '../common/option-changes.service';
8
8
  import { GanttColumnBase } from './column-base.component';
9
- import { ColumnSortSettings } from './../models/sort-settings';
10
9
  import { HeaderTemplateDirective } from './header-template.directive';
11
10
  import * as i0 from "@angular/core";
12
11
  export declare class GanttColumnGroupComponent extends ColumnGroupComponent {
@@ -19,86 +18,8 @@ export declare class GanttColumnGroupComponent extends ColumnGroupComponent {
19
18
  * @hidden
20
19
  */
21
20
  headerTemplates: QueryList<HeaderTemplateDirective>;
22
- /**
23
- * Toggles the locked (frozen) state of the columns.
24
- *
25
- * @default false
26
- * @hidden
27
- */
28
- set locked(value: boolean);
29
- get locked(): boolean;
30
- /**
31
- * Specifies if the column can be locked or unlocked from the column menu or by reordering the columns.
32
- * @hidden
33
- */
34
- lockable: boolean;
35
- /**
36
- * Sets the visibility of the column.
37
- *
38
- * @default false
39
- */
40
- hidden: boolean;
41
- /**
42
- * Allows the column headers to be clicked and the `sortChange` event emitted.
43
- * You have to handle the `sortChange` event yourself and sort the data.
44
- */
45
- sortable: boolean | ColumnSortSettings;
46
- /**
47
- * Sets the condition that needs to be satisfied for a column to remain visible.
48
- * If you set the `hidden` property, the behavior of `media` is overridden.
49
- */
50
- media: string;
51
- /**
52
- * Sets the custom styles for the table cells (excluding the footer and header ones) of the column. Under the hood,
53
- * to apply the property, the `style` option uses the
54
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
55
- */
56
- style: {
57
- [key: string]: string;
58
- };
59
- /**
60
- * Sets the custom styles for the header cell of the column. Under the hood, to apply the property,
61
- * the `headerStyle` option uses the
62
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
63
- */
64
- headerStyle: {
65
- [key: string]: string;
66
- };
67
- /**
68
- * Sets the custom styles for the footer cell of the column. Under the hood, to apply the property,
69
- * the `footerStyle` option uses the
70
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
71
- */
72
- footerStyle: {
73
- [key: string]: string;
74
- };
75
- /**
76
- * Sets the custom CSS classes to the column cells. Under the hood, to apply the property, the `class` option uses the
77
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
78
- * To customize header and footer column cells, use the `headerClass`
79
- * and `footerClass` inputs.
80
- */
81
- cssClass: string | string[] | Set<string> | {
82
- [key: string]: any;
83
- };
84
- /**
85
- * Sets the custom CSS classes to the column header cell. Under the hood, to apply the property,
86
- * the `headerClass` option uses the
87
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
88
- */
89
- headerClass: string | string[] | Set<string> | {
90
- [key: string]: any;
91
- };
92
- /**
93
- * Sets the custom CSS classes to the column footer cell. Under the hood, to apply the property,
94
- * the `footerClass` option uses the
95
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
96
- */
97
- footerClass: string | string[] | Set<string> | {
98
- [key: string]: any;
99
- };
100
21
  constructor(options: OptionChangesService, parent?: GanttColumnBase);
101
22
  ngOnChanges(): void;
102
23
  static ɵfac: i0.ɵɵFactoryDeclaration<GanttColumnGroupComponent, [null, { optional: true; host: true; skipSelf: true; }]>;
103
- static ɵcmp: i0.ɵɵComponentDeclaration<GanttColumnGroupComponent, "kendo-gantt-column-group", never, { "locked": "locked"; "lockable": "lockable"; "hidden": "hidden"; "sortable": "sortable"; "media": "media"; "style": "style"; "headerStyle": "headerStyle"; "footerStyle": "footerStyle"; "cssClass": "class"; "headerClass": "headerClass"; "footerClass": "footerClass"; }, {}, ["children", "headerTemplates"], never, true, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<GanttColumnGroupComponent, "kendo-gantt-column-group", never, {}, {}, ["children", "headerTemplates"], never, true, never>;
104
25
  }
@@ -24,13 +24,6 @@ export declare class GanttColumnComponent extends ColumnComponent {
24
24
  editTemplate: EditTemplateDirective;
25
25
  filterCellTemplate: FilterCellTemplateDirective;
26
26
  filterMenuTemplate: FilterMenuTemplateDirective;
27
- /**
28
- * The format that is applied to the value before it is displayed.
29
- * Takes the `{0:format}` form where `format` is a standard number format, a custom number format,
30
- * a standard date format, a custom date format or a format object. For more information on the supported date and number formats,
31
- * refer to the [kendo-intl](https://github.com/telerik/kendo-intl/blob/develop/docs/index.md) documentation.
32
- */
33
- format: any;
34
27
  /**
35
28
  * Defines the filter type that is displayed inside the filter row. The default value is `text`.
36
29
  */
@@ -52,80 +45,8 @@ export declare class GanttColumnComponent extends ColumnComponent {
52
45
  * Defines whether the column is editable. The default value is `true`.
53
46
  */
54
47
  editable: boolean;
55
- /**
56
- * Toggles the locked (frozen) state of the columns.
57
- * @hidden
58
- * @default false
59
- */
60
- set locked(value: boolean);
61
- get locked(): boolean;
62
- /**
63
- * Specifies if the column can be locked or unlocked from the column menu or by reordering the columns.
64
- * @hidden
65
- */
66
- lockable: boolean;
67
- /**
68
- * Sets the visibility of the column.
69
- *
70
- * @default false
71
- */
72
- hidden: boolean;
73
- /**
74
- * Sets the condition that needs to be satisfied for a column to remain visible.
75
- * If you set the `hidden` property, the behavior of `media` is overridden.
76
- */
77
- media: string;
78
- /**
79
- * Sets the custom styles for the table cells (excluding the footer and header ones) of the column. Under the hood,
80
- * to apply the property, the `style` option uses the
81
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
82
- */
83
- style: {
84
- [key: string]: string;
85
- };
86
- /**
87
- * Sets the custom styles for the header cell of the column. Under the hood, to apply the property,
88
- * the `headerStyle` option uses the
89
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
90
- */
91
- headerStyle: {
92
- [key: string]: string;
93
- };
94
- /**
95
- * Sets the custom styles for the footer cell of the column. Under the hood, to apply the property,
96
- * the `footerStyle` option uses the
97
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
98
- */
99
- footerStyle: {
100
- [key: string]: string;
101
- };
102
- /**
103
- * Sets the custom CSS classes to the column cells. Under the hood, to apply the property, the `class` option uses the
104
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
105
- * To customize header and footer column cells, use the `headerClass`
106
- * and `footerClass` inputs.
107
- */
108
- cssClass: string | string[] | Set<string> | {
109
- [key: string]: any;
110
- };
111
- /**
112
- * Sets the custom CSS classes to the column header cell. Under the hood, to apply the property,
113
- * the `headerClass` option uses the
114
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
115
- */
116
- headerClass: string | string[] | Set<string> | {
117
- [key: string]: any;
118
- };
119
- /**
120
- * Sets the custom CSS classes to the column footer cell. Under the hood, to apply the property,
121
- * the `footerClass` option uses the
122
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
123
- */
124
- footerClass: string | string[] | Set<string> | {
125
- [key: string]: any;
126
- };
127
48
  constructor(options: OptionChangesService, parent?: GanttColumnBase);
128
49
  ngOnChanges(): void;
129
50
  static ɵfac: i0.ɵɵFactoryDeclaration<GanttColumnComponent, [null, { optional: true; host: true; skipSelf: true; }]>;
130
- static ɵcmp: i0.ɵɵComponentDeclaration<GanttColumnComponent, "kendo-gantt-column", never, { "format": "format"; "filter": "filter"; "filterable": "filterable"; "editor": "editor"; "editable": "editable"; "locked": "locked"; "lockable": "lockable"; "hidden": "hidden"; "media": "media"; "style": "style"; "headerStyle": "headerStyle"; "footerStyle": "footerStyle"; "cssClass": "class"; "headerClass": "headerClass"; "footerClass": "footerClass"; }, {}, ["footerTemplate", "template", "editTemplate", "filterCellTemplate", "filterMenuTemplate", "headerTemplates", "columnMenuTemplates"], never, true, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<GanttColumnComponent, "kendo-gantt-column", never, { "filter": { "alias": "filter"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "editor": { "alias": "editor"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; }, {}, ["footerTemplate", "template", "editTemplate", "filterCellTemplate", "filterMenuTemplate", "headerTemplates", "columnMenuTemplates"], never, true, never>;
131
52
  }
@@ -18,97 +18,8 @@ export declare class GanttSpanColumnComponent extends SpanColumnComponent {
18
18
  childColumns: QueryList<GanttColumnComponent>;
19
19
  template: QueryList<CellTemplateDirective>;
20
20
  editTemplate: QueryList<EditTemplateDirective>;
21
- /**
22
- * Toggles the locked (frozen) state of the columns. Locked columns are visible
23
- * at all times during the horizontal scrolling of the Gantt.
24
- *
25
- * For the option to work properly, make sure that:
26
- * - Scrolling is enabled.
27
- * - The `height` option of the Gantt is set.
28
- * - The widths of all Gantt columns are explicitly set in pixels. In this way,
29
- * the Gantt adjusts the layout of the locked and unlocked columns.
30
- *
31
- * @default false
32
- * @hidden
33
- */
34
- set locked(value: boolean);
35
- get locked(): boolean;
36
- /**
37
- * Specifies if the column can be locked or unlocked from the column menu or by reordering the columns.
38
- * @hidden
39
- */
40
- lockable: boolean;
41
- /**
42
- * @hidden
43
- *
44
- * Defines whether the edit template of the column will be rendered. The default value is `false`.
45
- *
46
- * > To enable the editing functionality for a spanned column, set an edit template for it.
47
- */
48
- set editable(value: boolean);
49
- get editable(): boolean;
50
- /**
51
- * Sets the visibility of the column.
52
- *
53
- * @default false
54
- */
55
- hidden: boolean;
56
- /**
57
- * Sets the condition that needs to be satisfied for a column to remain visible.
58
- * If you set the `hidden` property, the behavior of `media` is overridden.
59
- */
60
- media: string;
61
- /**
62
- * Sets the custom styles for the table cells (excluding the footer and header ones) of the column. Under the hood,
63
- * to apply the property, the `style` option uses the
64
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
65
- */
66
- style: {
67
- [key: string]: string;
68
- };
69
- /**
70
- * Sets the custom styles for the header cell of the column. Under the hood, to apply the property,
71
- * the `headerStyle` option uses the
72
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
73
- */
74
- headerStyle: {
75
- [key: string]: string;
76
- };
77
- /**
78
- * Sets the custom styles for the footer cell of the column. Under the hood, to apply the property,
79
- * the `footerStyle` option uses the
80
- * [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
81
- */
82
- footerStyle: {
83
- [key: string]: string;
84
- };
85
- /**
86
- * Sets the custom CSS classes to the column cells. Under the hood, to apply the property, the `class` option uses the
87
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
88
- * To customize header and footer column cells, use the `headerClass`
89
- * and `footerClass` inputs.
90
- */
91
- cssClass: string | string[] | Set<string> | {
92
- [key: string]: any;
93
- };
94
- /**
95
- * Sets the custom CSS classes to the column header cell. Under the hood, to apply the property,
96
- * the `headerClass` option uses the
97
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
98
- */
99
- headerClass: string | string[] | Set<string> | {
100
- [key: string]: any;
101
- };
102
- /**
103
- * Sets the custom CSS classes to the column footer cell. Under the hood, to apply the property,
104
- * the `footerClass` option uses the
105
- * [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
106
- */
107
- footerClass: string | string[] | Set<string> | {
108
- [key: string]: any;
109
- };
110
21
  constructor(options: OptionChangesService, parent?: GanttColumnBase);
111
22
  ngOnChanges(): void;
112
23
  static ɵfac: i0.ɵɵFactoryDeclaration<GanttSpanColumnComponent, [null, { optional: true; host: true; skipSelf: true; }]>;
113
- static ɵcmp: i0.ɵɵComponentDeclaration<GanttSpanColumnComponent, "kendo-gantt-span-column", never, { "locked": "locked"; "lockable": "lockable"; "editable": "editable"; "hidden": "hidden"; "media": "media"; "style": "style"; "headerStyle": "headerStyle"; "footerStyle": "footerStyle"; "cssClass": "class"; "headerClass": "headerClass"; "footerClass": "footerClass"; }, {}, ["childColumns", "template", "editTemplate"], never, true, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<GanttSpanColumnComponent, "kendo-gantt-span-column", never, {}, {}, ["childColumns", "template", "editTemplate"], never, true, never>;
114
25
  }
@@ -25,5 +25,5 @@ export declare class GanttDependencyDirective {
25
25
  private clearPoints;
26
26
  private drawPoints;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<GanttDependencyDirective, never>;
28
- static ɵdir: i0.ɵɵDirectiveDeclaration<GanttDependencyDirective, "[kendoGanttDependency]", never, { "dependency": "dependency"; }, {}, never, never, true, never>;
28
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GanttDependencyDirective, "[kendoGanttDependency]", never, { "dependency": { "alias": "dependency"; "required": false; }; }, {}, never, never, true, never>;
29
29
  }
@@ -71,5 +71,5 @@ export declare class DependencyDragCreateDirective implements AfterViewInit, OnD
71
71
  */
72
72
  private normalizePopupPosition;
73
73
  static ɵfac: i0.ɵɵFactoryDeclaration<DependencyDragCreateDirective, never>;
74
- static ɵdir: i0.ɵɵDirectiveDeclaration<DependencyDragCreateDirective, "[kendoGanttDependencyDragCreate]", never, { "displayValidationTooltip": "displayValidationTooltip"; }, {}, never, never, true, never>;
74
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DependencyDragCreateDirective, "[kendoGanttDependencyDragCreate]", never, { "displayValidationTooltip": { "alias": "displayValidationTooltip"; "required": false; }; }, {}, never, never, true, never>;
75
75
  }
@@ -49,5 +49,5 @@ export declare class GanttAddTaskComponent {
49
49
  */
50
50
  handleItemClick(e: any): void;
51
51
  static ɵfac: i0.ɵɵFactoryDeclaration<GanttAddTaskComponent, never>;
52
- static ɵcmp: i0.ɵɵComponentDeclaration<GanttAddTaskComponent, "kendo-gantt-add-task", never, { "data": "data"; "icon": "icon"; "svgIcon": "svgIcon"; }, {}, never, never, true, never>;
52
+ static ɵcmp: i0.ɵɵComponentDeclaration<GanttAddTaskComponent, "kendo-gantt-add-task", never, { "data": { "alias": "data"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; }, {}, never, never, true, never>;
53
53
  }
@@ -41,5 +41,5 @@ export declare class DependenciesTableComponent {
41
41
  addHandler(): void;
42
42
  removeHandler(): void;
43
43
  static ɵfac: i0.ɵɵFactoryDeclaration<DependenciesTableComponent, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<DependenciesTableComponent, "kendo-gantt-dependencies-table", never, { "tasks": "tasks"; "dependencies": "dependencies"; "dependencyType": "dependencyType"; }, { "dependenciesChange": "dependenciesChange"; }, never, never, true, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<DependenciesTableComponent, "kendo-gantt-dependencies-table", never, { "tasks": { "alias": "tasks"; "required": false; }; "dependencies": { "alias": "dependencies"; "required": false; }; "dependencyType": { "alias": "dependencyType"; "required": false; }; }, { "dependenciesChange": "dependenciesChange"; }, never, never, true, never>;
45
45
  }
@@ -33,5 +33,5 @@ export declare class EditDialogComponent {
33
33
  handleEditingResult(editResultType: 'save' | 'cancel'): void;
34
34
  handleTaskDelete(): void;
35
35
  static ɵfac: i0.ɵɵFactoryDeclaration<EditDialogComponent, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<EditDialogComponent, "kendo-gantt-edit-dialog", never, { "data": "data"; }, {}, never, never, true, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditDialogComponent, "kendo-gantt-edit-dialog", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
37
37
  }
@@ -12,16 +12,20 @@ import * as i0 from "@angular/core";
12
12
  * The directive encapsulates the in-memory handling of data operations such as sorting and filtering.
13
13
  */
14
14
  export class GanttFlatBindingDirective extends FlatBindingDirective {
15
+ /**
16
+ * The array of data which will be used to populate the Gantt.
17
+ */
18
+ data;
15
19
  /**
16
20
  * @hidden
17
21
  */
18
22
  set aggregate(value) {
19
23
  super.aggregate = value;
20
24
  }
25
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GanttFlatBindingDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
26
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: GanttFlatBindingDirective, isStandalone: true, selector: "[kendoGanttFlatBinding]", inputs: { data: ["kendoGanttFlatBinding", "data"] }, exportAs: ["kendoGanttFlatBinding"], usesInheritance: true, ngImport: i0 });
21
27
  }
22
- GanttFlatBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GanttFlatBindingDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
23
- GanttFlatBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: GanttFlatBindingDirective, isStandalone: true, selector: "[kendoGanttFlatBinding]", inputs: { data: ["kendoGanttFlatBinding", "data"] }, exportAs: ["kendoGanttFlatBinding"], usesInheritance: true, ngImport: i0 });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GanttFlatBindingDirective, decorators: [{
28
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GanttFlatBindingDirective, decorators: [{
25
29
  type: Directive,
26
30
  args: [{
27
31
  selector: '[kendoGanttFlatBinding]',
@@ -10,16 +10,20 @@ import * as i0 from "@angular/core";
10
10
  * which encapsulates the in-memory handling of data operations such as sorting and filtering.
11
11
  */
12
12
  export class GanttHierarchyBindingDirective extends HierarchyBindingDirective {
13
+ /**
14
+ * The array of data which will be used to populate the Gantt.
15
+ */
16
+ data;
13
17
  /**
14
18
  * @hidden
15
19
  */
16
20
  set aggregate(value) {
17
21
  super.aggregate = value;
18
22
  }
23
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GanttHierarchyBindingDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
24
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: GanttHierarchyBindingDirective, isStandalone: true, selector: "[kendoGanttHierarchyBinding]", inputs: { data: ["kendoGanttHierarchyBinding", "data"] }, exportAs: ["kendoGanttHierarchyBinding"], usesInheritance: true, ngImport: i0 });
19
25
  }
20
- GanttHierarchyBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GanttHierarchyBindingDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
21
- GanttHierarchyBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: GanttHierarchyBindingDirective, isStandalone: true, selector: "[kendoGanttHierarchyBinding]", inputs: { data: ["kendoGanttHierarchyBinding", "data"] }, exportAs: ["kendoGanttHierarchyBinding"], usesInheritance: true, ngImport: i0 });
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GanttHierarchyBindingDirective, decorators: [{
26
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GanttHierarchyBindingDirective, decorators: [{
23
27
  type: Directive,
24
28
  args: [{
25
29
  selector: '[kendoGanttHierarchyBinding]',
@@ -21,13 +21,14 @@ import * as i0 from "@angular/core";
21
21
  * - `rowIndex`&mdash;The current row index. Use it as an alias for a template variable by utilizing the `let-rowIndex="rowIndex"` syntax.
22
22
  */
23
23
  export class CellTemplateDirective {
24
+ templateRef;
24
25
  constructor(templateRef) {
25
26
  this.templateRef = templateRef;
26
27
  }
28
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CellTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
29
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: CellTemplateDirective, isStandalone: true, selector: "[kendoGanttCellTemplate]", ngImport: i0 });
27
30
  }
28
- CellTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CellTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
29
- CellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CellTemplateDirective, isStandalone: true, selector: "[kendoGanttCellTemplate]", ngImport: i0 });
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CellTemplateDirective, decorators: [{
31
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CellTemplateDirective, decorators: [{
31
32
  type: Directive,
32
33
  args: [{
33
34
  selector: '[kendoGanttCellTemplate]',
@@ -0,0 +1,22 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Component } from '@angular/core';
6
+ import { ColumnBase } from '@progress/kendo-angular-treelist';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * The base class for the column components of the Gantt.
10
+ */
11
+ export class GanttColumnBase extends ColumnBase {
12
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GanttColumnBase, deps: null, target: i0.ɵɵFactoryTarget.Component });
13
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GanttColumnBase, selector: "kendo-gantt-column-base", usesInheritance: true, ngImport: i0, template: '', isInline: true });
14
+ }
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GanttColumnBase, decorators: [{
16
+ type: Component,
17
+ args: [{
18
+ template: '',
19
+ // eslint-disable-next-line @angular-eslint/directive-selector
20
+ selector: 'kendo-gantt-column-base'
21
+ }]
22
+ }] });