@progress/kendo-angular-gantt 17.0.0-develop.8 → 17.0.0

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 (163) hide show
  1. package/binding-directives/flat-binding.directive.d.ts +1 -1
  2. package/binding-directives/hierarchy-binding.directive.d.ts +1 -1
  3. package/columns/column-base.component.d.ts +1 -74
  4. package/columns/column-group.component.d.ts +1 -80
  5. package/columns/column.component.d.ts +1 -80
  6. package/columns/span-column.component.d.ts +1 -90
  7. package/dependencies/gantt-dependency.directive.d.ts +1 -1
  8. package/dragging/dependency-drag-create.directive.d.ts +1 -1
  9. package/editing/add-task.component.d.ts +1 -1
  10. package/editing/dependencies-table.component.d.ts +1 -1
  11. package/editing/edit-dialog.component.d.ts +1 -1
  12. package/{esm2020 → esm2022}/binding-directives/flat-binding.directive.mjs +7 -3
  13. package/{esm2020 → esm2022}/binding-directives/hierarchy-binding.directive.mjs +7 -3
  14. package/{esm2020 → esm2022}/columns/cell-template.directive.mjs +4 -3
  15. package/esm2022/columns/column-base.component.mjs +22 -0
  16. package/esm2022/columns/column-group.component.mjs +66 -0
  17. package/{esm2020 → esm2022}/columns/column-menu-template.directive.mjs +4 -3
  18. package/{esm2020 → esm2022}/columns/column.component.mjs +37 -65
  19. package/{esm2020 → esm2022}/columns/edit-template.directive.mjs +4 -3
  20. package/{esm2020 → esm2022}/columns/filter-cell-template.directive.mjs +4 -3
  21. package/{esm2020 → esm2022}/columns/filter-menu-template.directive.mjs +4 -3
  22. package/{esm2020 → esm2022}/columns/footer-template.directive.mjs +4 -3
  23. package/{esm2020 → esm2022}/columns/header-template.directive.mjs +4 -3
  24. package/esm2022/columns/span-column.component.mjs +66 -0
  25. package/{esm2020 → esm2022}/common/mapping.service.mjs +5 -7
  26. package/{esm2020 → esm2022}/common/option-changes.service.mjs +6 -8
  27. package/{esm2020 → esm2022}/dependencies/dependency-dom.service.mjs +21 -12
  28. package/{esm2020 → esm2022}/dependencies/gantt-dependency.directive.mjs +10 -4
  29. package/{esm2020 → esm2022}/dragging/dependency-drag-create.directive.mjs +41 -18
  30. package/{esm2020 → esm2022}/dragging/drag-validation-tooltip.component.mjs +24 -12
  31. package/{esm2020 → esm2022}/editing/add-task.component.mjs +31 -28
  32. package/{esm2020 → esm2022}/editing/dependencies-table.component.mjs +22 -15
  33. package/{esm2020 → esm2022}/editing/edit-dialog.component.mjs +14 -8
  34. package/{esm2020 → esm2022}/editing/edit.service.mjs +23 -17
  35. package/{esm2020 → esm2022}/editing/task-fields.component.mjs +8 -5
  36. package/{esm2020 → esm2022}/expanded-state/expand-event.mjs +4 -0
  37. package/{esm2020 → esm2022}/expanded-state/expandable.directive.mjs +3 -3
  38. package/{esm2020 → esm2022}/gantt.component.mjs +434 -364
  39. package/{esm2020 → esm2022}/gantt.module.mjs +31 -31
  40. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  41. package/{esm2020 → esm2022}/localization/gantt-localization.service.mjs +4 -3
  42. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  43. package/esm2022/localization/messages.mjs +441 -0
  44. package/esm2022/models/events/cell-close-event.interface.mjs +45 -0
  45. package/{esm2020 → esm2022}/navigation/navigation.service.mjs +40 -35
  46. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  47. package/{esm2020 → esm2022}/rendering/gantt-header-table-body.component.mjs +7 -7
  48. package/{esm2020 → esm2022}/rendering/gantt-milestone-task.component.mjs +11 -11
  49. package/{esm2020 → esm2022}/rendering/gantt-summary-task.component.mjs +16 -14
  50. package/{esm2020 → esm2022}/rendering/gantt-task-base.mjs +37 -18
  51. package/{esm2020 → esm2022}/rendering/gantt-task.component.mjs +14 -11
  52. package/{esm2020 → esm2022}/rendering/gantt-tasks-table-body.component.mjs +20 -8
  53. package/{esm2020 → esm2022}/scrolling/scroll-sync.service.mjs +9 -6
  54. package/{esm2020 → esm2022}/scrolling/timeline-scroll.directive.mjs +10 -4
  55. package/{esm2020 → esm2022}/scrolling/timeline-scroll.service.mjs +6 -8
  56. package/{esm2020 → esm2022}/selection/selectable.directive.mjs +18 -14
  57. package/{esm2020 → esm2022}/template-directives/summary-task-template.directive.mjs +4 -3
  58. package/{esm2020 → esm2022}/template-directives/task-content-template.directive.mjs +4 -3
  59. package/{esm2020 → esm2022}/template-directives/task-template.directive.mjs +4 -3
  60. package/{esm2020 → esm2022}/timeline/current-time-marker.service.mjs +36 -27
  61. package/{esm2020 → esm2022}/timeline/gantt-timeline.component.mjs +54 -16
  62. package/{esm2020 → esm2022}/timeline/timeline-base-view.service.mjs +6 -3
  63. package/{esm2020 → esm2022}/timeline/timeline-day-view.component.mjs +12 -12
  64. package/{esm2020 → esm2022}/timeline/timeline-day-view.service.mjs +4 -3
  65. package/{esm2020 → esm2022}/timeline/timeline-month-view.component.mjs +12 -12
  66. package/{esm2020 → esm2022}/timeline/timeline-month-view.service.mjs +4 -3
  67. package/{esm2020 → esm2022}/timeline/timeline-view.service.mjs +5 -4
  68. package/{esm2020 → esm2022}/timeline/timeline-week-view.component.mjs +12 -12
  69. package/{esm2020 → esm2022}/timeline/timeline-week-view.service.mjs +4 -3
  70. package/{esm2020 → esm2022}/timeline/timeline-year-view.component.mjs +12 -12
  71. package/{esm2020 → esm2022}/timeline/timeline-year-view.service.mjs +4 -3
  72. package/{esm2020 → esm2022}/timeline/view-base.mjs +22 -9
  73. package/{esm2020 → esm2022}/toolbar/toolbar-navigation.service.mjs +6 -4
  74. package/{esm2020 → esm2022}/toolbar/toolbar-template.directive.mjs +8 -7
  75. package/{esm2020 → esm2022}/toolbar/toolbar.component.mjs +21 -12
  76. package/{esm2020 → esm2022}/toolbar/view-selector.component.mjs +19 -14
  77. package/expanded-state/expandable.directive.d.ts +1 -1
  78. package/{fesm2020 → fesm2022}/progress-kendo-angular-gantt.mjs +1579 -1114
  79. package/gantt.component.d.ts +1 -1
  80. package/localization/messages.d.ts +1 -1
  81. package/models/cell-content-type.interface.d.ts +1 -1
  82. package/models/class-callbacks.d.ts +2 -2
  83. package/models/events/task-edit-event.interface.d.ts +1 -1
  84. package/models/filterable-settings.d.ts +1 -1
  85. package/models/sort-settings.d.ts +2 -2
  86. package/models/timeline-view.d.ts +1 -1
  87. package/models/toolbar-settings.d.ts +1 -1
  88. package/package.json +25 -31
  89. package/rendering/gantt-header-table-body.component.d.ts +1 -1
  90. package/rendering/gantt-summary-task.component.d.ts +1 -1
  91. package/rendering/gantt-task-base.d.ts +1 -1
  92. package/rendering/gantt-task.component.d.ts +1 -1
  93. package/rendering/gantt-tasks-table-body.component.d.ts +1 -1
  94. package/schematics/ngAdd/index.js +8 -8
  95. package/scrolling/scroll-sync.service.d.ts +2 -2
  96. package/scrolling/timeline-scroll.directive.d.ts +1 -1
  97. package/selection/selectable.directive.d.ts +1 -1
  98. package/timeline/gantt-timeline.component.d.ts +1 -1
  99. package/timeline/view-base.d.ts +1 -1
  100. package/toolbar/toolbar-template.directive.d.ts +1 -1
  101. package/toolbar/toolbar.component.d.ts +1 -1
  102. package/toolbar/view-selector.component.d.ts +1 -1
  103. package/utils.d.ts +1 -1
  104. package/esm2020/columns/column-base.component.mjs +0 -55
  105. package/esm2020/columns/column-group.component.mjs +0 -101
  106. package/esm2020/columns/span-column.component.mjs +0 -120
  107. package/esm2020/localization/messages.mjs +0 -157
  108. package/esm2020/models/events/cell-close-event.interface.mjs +0 -14
  109. package/fesm2015/progress-kendo-angular-gantt.mjs +0 -8219
  110. /package/{esm2020 → esm2022}/columns/columns.mjs +0 -0
  111. /package/{esm2020 → esm2022}/common/default-callbacks.mjs +0 -0
  112. /package/{esm2020 → esm2022}/dependencies/dom-dependency-args.mjs +0 -0
  113. /package/{esm2020 → esm2022}/dependencies/utils.mjs +0 -0
  114. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  115. /package/{esm2020 → esm2022}/editing/utils.mjs +0 -0
  116. /package/{esm2020 → esm2022}/index.mjs +0 -0
  117. /package/{esm2020 → esm2022}/models/cell-content-type.interface.mjs +0 -0
  118. /package/{esm2020 → esm2022}/models/class-callbacks.mjs +0 -0
  119. /package/{esm2020 → esm2022}/models/column-menu-settings.interface.mjs +0 -0
  120. /package/{esm2020 → esm2022}/models/column-reorder-config.mjs +0 -0
  121. /package/{esm2020 → esm2022}/models/current-time-settings.interface.mjs +0 -0
  122. /package/{esm2020 → esm2022}/models/date-range.interface.mjs +0 -0
  123. /package/{esm2020 → esm2022}/models/dependency-type.enum.mjs +0 -0
  124. /package/{esm2020 → esm2022}/models/events/cell-click-event.interface.mjs +0 -0
  125. /package/{esm2020 → esm2022}/models/events/click-event.interface.mjs +0 -0
  126. /package/{esm2020 → esm2022}/models/events/column-locked-change-event.interface.mjs +0 -0
  127. /package/{esm2020 → esm2022}/models/events/column-reorder-event.interface.mjs +0 -0
  128. /package/{esm2020 → esm2022}/models/events/column-resize-event.interface.mjs +0 -0
  129. /package/{esm2020 → esm2022}/models/events/column-visibility-change-event.interface.mjs +0 -0
  130. /package/{esm2020 → esm2022}/models/events/data-state-change-event.interface.mjs +0 -0
  131. /package/{esm2020 → esm2022}/models/events/dependency-add-event.interface.mjs +0 -0
  132. /package/{esm2020 → esm2022}/models/events/selected-view-change-event.interface.mjs +0 -0
  133. /package/{esm2020 → esm2022}/models/events/task-add-event.interface.mjs +0 -0
  134. /package/{esm2020 → esm2022}/models/events/task-click-event.interface.mjs +0 -0
  135. /package/{esm2020 → esm2022}/models/events/task-delete-event.interface.mjs +0 -0
  136. /package/{esm2020 → esm2022}/models/events/task-edit-event.interface.mjs +0 -0
  137. /package/{esm2020 → esm2022}/models/events/task-move-end-event.interface.mjs +0 -0
  138. /package/{esm2020 → esm2022}/models/events/task-move-event.interface.mjs +0 -0
  139. /package/{esm2020 → esm2022}/models/events/task-move-start-event.interface.mjs +0 -0
  140. /package/{esm2020 → esm2022}/models/events/task-resize-end-event.interface.mjs +0 -0
  141. /package/{esm2020 → esm2022}/models/events/task-resize-event.interface.mjs +0 -0
  142. /package/{esm2020 → esm2022}/models/events/task-resize-start-event.interface.mjs +0 -0
  143. /package/{esm2020 → esm2022}/models/filterable-settings.mjs +0 -0
  144. /package/{esm2020 → esm2022}/models/gantt-dependency-model-fields.interface.mjs +0 -0
  145. /package/{esm2020 → esm2022}/models/gantt-dependency.interface.mjs +0 -0
  146. /package/{esm2020 → esm2022}/models/gantt-task-model-fields.interface.mjs +0 -0
  147. /package/{esm2020 → esm2022}/models/gantt-task.interface.mjs +0 -0
  148. /package/{esm2020 → esm2022}/models/models.mjs +0 -0
  149. /package/{esm2020 → esm2022}/models/slot.interface.mjs +0 -0
  150. /package/{esm2020 → esm2022}/models/sort-settings.mjs +0 -0
  151. /package/{esm2020 → esm2022}/models/splitter-pane-options.interface.mjs +0 -0
  152. /package/{esm2020 → esm2022}/models/timeline-header-date-format.mjs +0 -0
  153. /package/{esm2020 → esm2022}/models/timeline-options.interface.mjs +0 -0
  154. /package/{esm2020 → esm2022}/models/timeline-view.mjs +0 -0
  155. /package/{esm2020 → esm2022}/models/toolbar-settings.mjs +0 -0
  156. /package/{esm2020 → esm2022}/models/view-item.interface.mjs +0 -0
  157. /package/{esm2020 → esm2022}/navigation/navigation-models.mjs +0 -0
  158. /package/{esm2020 → esm2022}/navigation/utils.mjs +0 -0
  159. /package/{esm2020 → esm2022}/progress-kendo-angular-gantt.mjs +0 -0
  160. /package/{esm2020 → esm2022}/scrolling/drag-scroll-settings.mjs +0 -0
  161. /package/{esm2020 → esm2022}/scrolling/utils.mjs +0 -0
  162. /package/{esm2020 → esm2022}/selection/selection-change-event.mjs +0 -0
  163. /package/{esm2020 → esm2022}/utils.mjs +0 -0
@@ -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
+ }] });
@@ -0,0 +1,66 @@
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, forwardRef, SkipSelf, Host, Optional, ContentChildren, QueryList } from '@angular/core';
6
+ import { ColumnGroupComponent } from '@progress/kendo-angular-treelist';
7
+ import { OptionChangesService } from '../common/option-changes.service';
8
+ import { GanttColumnBase } from './column-base.component';
9
+ import { HeaderTemplateDirective } from './header-template.directive';
10
+ import * as i0 from "@angular/core";
11
+ import * as i1 from "../common/option-changes.service";
12
+ import * as i2 from "./column-base.component";
13
+ export class GanttColumnGroupComponent extends ColumnGroupComponent {
14
+ options;
15
+ /**
16
+ * @hidden
17
+ */
18
+ children = new QueryList();
19
+ /**
20
+ * @hidden
21
+ */
22
+ headerTemplates;
23
+ constructor(options, parent) {
24
+ super(parent);
25
+ this.options = options;
26
+ if (parent && parent.isSpanColumn) {
27
+ throw new Error('ColumnGroupComponent cannot be nested inside SpanColumnComponent');
28
+ }
29
+ }
30
+ ngOnChanges() {
31
+ this.options.notifyColumnChanges();
32
+ }
33
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GanttColumnGroupComponent, deps: [{ token: i1.OptionChangesService }, { token: i2.GanttColumnBase, host: true, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
34
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GanttColumnGroupComponent, isStandalone: true, selector: "kendo-gantt-column-group", providers: [
35
+ {
36
+ provide: GanttColumnBase,
37
+ useExisting: forwardRef(() => GanttColumnGroupComponent)
38
+ }
39
+ ], queries: [{ propertyName: "children", predicate: GanttColumnBase }, { propertyName: "headerTemplates", predicate: HeaderTemplateDirective }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: '', isInline: true });
40
+ }
41
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GanttColumnGroupComponent, decorators: [{
42
+ type: Component,
43
+ args: [{
44
+ selector: 'kendo-gantt-column-group',
45
+ template: '',
46
+ providers: [
47
+ {
48
+ provide: GanttColumnBase,
49
+ useExisting: forwardRef(() => GanttColumnGroupComponent)
50
+ }
51
+ ],
52
+ standalone: true
53
+ }]
54
+ }], ctorParameters: function () { return [{ type: i1.OptionChangesService }, { type: i2.GanttColumnBase, decorators: [{
55
+ type: SkipSelf
56
+ }, {
57
+ type: Host
58
+ }, {
59
+ type: Optional
60
+ }] }]; }, propDecorators: { children: [{
61
+ type: ContentChildren,
62
+ args: [GanttColumnBase]
63
+ }], headerTemplates: [{
64
+ type: ContentChildren,
65
+ args: [HeaderTemplateDirective]
66
+ }] } });
@@ -15,13 +15,14 @@ import * as i0 from "@angular/core";
15
15
  * - `column`&mdash;Represents the Gantt column.
16
16
  */
17
17
  export class ColumnMenuTemplateDirective {
18
+ templateRef;
18
19
  constructor(templateRef) {
19
20
  this.templateRef = templateRef;
20
21
  }
22
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnMenuTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
23
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ColumnMenuTemplateDirective, isStandalone: true, selector: "[kendoGanttColumnMenuTemplate]", ngImport: i0 });
21
24
  }
22
- ColumnMenuTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnMenuTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
23
- ColumnMenuTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ColumnMenuTemplateDirective, isStandalone: true, selector: "[kendoGanttColumnMenuTemplate]", ngImport: i0 });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnMenuTemplateDirective, decorators: [{
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnMenuTemplateDirective, decorators: [{
25
26
  type: Directive,
26
27
  args: [{
27
28
  selector: '[kendoGanttColumnMenuTemplate]',