@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.
- package/@syncfusion/ej2-angular-gantt.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-gantt.js.map +1 -1
- package/README.md +1 -1
- package/dist/ej2-angular-gantt.umd.js +1 -1
- package/dist/ej2-angular-gantt.umd.js.map +1 -1
- package/dist/ej2-angular-gantt.umd.min.js +1 -1
- package/dist/ej2-angular-gantt.umd.min.js.map +1 -1
- package/package.json +6 -6
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/gantt/adddialogfields.directive.d.ts +10 -8
- package/src/gantt/columns.directive.d.ts +10 -10
- package/src/gantt/dayworkingtime.directive.d.ts +2 -2
- package/src/gantt/editdialogfields.directive.d.ts +10 -8
- package/src/gantt/eventmarkers.directive.d.ts +5 -3
- package/src/gantt/gantt.component.d.ts +3 -2
- package/src/gantt/weekworkingtime.directive.d.ts +2 -2
|
@@ -16,22 +16,24 @@ export declare class EditDialogFieldDirective extends ComplexBase<EditDialogFiel
|
|
|
16
16
|
private viewContainerRef;
|
|
17
17
|
directivePropList: any;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
* * `
|
|
22
|
-
* * `
|
|
23
|
-
* * `
|
|
24
|
-
* * `
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
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
|
|
24
|
+
* Defines the time range for each day of the week.
|
|
25
25
|
* @default []
|
|
26
26
|
* @asptype List<GanttDayWorkingTime>
|
|
27
27
|
|