@syncfusion/ej2-angular-gantt 28.1.33-ngcc → 28.1.35-ngcc

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.
@@ -16,22 +16,24 @@ export declare class EditDialogFieldDirective extends ComplexBase<EditDialogFiel
16
16
  private viewContainerRef;
17
17
  directivePropList: any;
18
18
  /**
19
- * Defines types of tab which contains editor for columns.
20
- * * `General` - Defines tab container type as general.
21
- * * `Dependency` - Defines tab as dependency editor.
22
- * * `Resources` - Defines tab as resources editor.
23
- * * `Notes` - Defines tab as notes editor.
24
- * * `Custom` - Defines tab as custom column editor.
19
+ * Specifies the types of tabs that contain editors for columns.
20
+ * Available tab types:
21
+ * * `General` - Represents the general information editor tab.
22
+ * * `Dependency` - Represents the dependency editor tab.
23
+ * * `Resources` - Represents the resource editor tab.
24
+ * * `Notes` - Represents the notes editor tab.
25
+ * * `Segments` - Represents the segments editor tab.
26
+ * * `Custom` - Represents the custom column editor tab.
25
27
  * @default null
26
28
  */
27
29
  type: any;
28
30
  /**
29
- * Defines the properties of Grid or RTE or TreeGrid controls in Gantt edit dialog.
31
+ * Specifies the configuration properties for Grid, Rich Text Editor (RTE), or TreeGrid controls within the Gantt edit dialog.
30
32
  * @default null
31
33
  */
32
34
  additionalParams: any;
33
35
  /**
34
- * Defines edited column fields placed inside the tab.
36
+ * Specifies the edited column fields to be placed inside the tab.
35
37
  * @default null
36
38
  */
37
39
  fields: any;
@@ -15,17 +15,19 @@ export declare class EventMarkerDirective extends ComplexBase<EventMarkerDirecti
15
15
  private viewContainerRef;
16
16
  directivePropList: any;
17
17
  /**
18
- * Define custom css class for event marker to customize line and label.
18
+ * Specifies a custom CSS class for the event marker.
19
+ * This can be used to apply custom styles to the line and label of the marker.
19
20
  * @default null
20
21
  */
21
22
  cssClass: any;
22
23
  /**
23
- * Defines day of event marker.
24
+ * Specifies the date or day of the event marker.
25
+ * The value can be a `Date` object or a date string.
24
26
  * @default null
25
27
  */
26
28
  day: any;
27
29
  /**
28
- * Defines label of event marker.
30
+ * Specifies the label for the event marker.
29
31
  * @default null
30
32
  */
31
33
  label: any;
@@ -94,7 +94,7 @@ export declare class GanttComponent extends Gantt implements IComponentBase {
94
94
  childEventMarkers: QueryList<EventMarkersDirective>;
95
95
  tags: string[];
96
96
  /**
97
- * The parent task bar template that renders customized parent task bars from the given template.
97
+ * Defines a custom template for rendering parent task bars in the Gantt chart. This template allows you to customize the appearance of parent task bars.
98
98
  * {% codeBlock src='gantt/parentTaskbarTemplate/index.md' %}{% endcodeBlock %}
99
99
  * @default null
100
100
  * @asptype string
@@ -107,13 +107,14 @@ export declare class GanttComponent extends Gantt implements IComponentBase {
107
107
  */
108
108
  timelineTemplate: any;
109
109
  /**
110
- * The milestone template that renders customized milestone task from the given template.
110
+ * Defines a custom template for rendering milestone tasks in the Gantt chart. This template allows you to customize the appearance of milestone tasks.
111
111
  * @default null
112
112
  * @asptype string
113
113
  */
114
114
  milestoneTemplate: any;
115
115
  /**
116
116
  * The task bar template that renders customized child task bars from the given template.
117
+ * This property allows users to define a custom template for rendering child task bars in the Gantt chart.
117
118
  * {% codeBlock src='gantt/taskbarTemplate/index.md' %}{% endcodeBlock %}
118
119
  * @default null
119
120
  * @asptype string
@@ -16,12 +16,12 @@ export declare class WeekWorkingTimeDirective extends ComplexBase<WeekWorkingTim
16
16
  private viewContainerRef;
17
17
  directivePropList: any;
18
18
  /**
19
- * Defines day for setting time customized time range.
19
+ * Defines the day of the week to apply customized working time.
20
20
  * @default null
21
21
  */
22
22
  dayOfWeek: any;
23
23
  /**
24
- * Defines time range of each day in week.
24
+ * Defines the time range for each day of the week.
25
25
  * @default []
26
26
  * @asptype List<GanttDayWorkingTime>
27
27