@syncfusion/ej2-angular-gantt 27.2.5 → 28.1.33
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/CHANGELOG.md +20 -1
- package/README.md +1 -1
- package/esm2020/src/gantt/adddialogfields.directive.mjs +1 -1
- package/esm2020/src/gantt/columns.directive.mjs +1 -1
- package/esm2020/src/gantt/dayworkingtime.directive.mjs +1 -1
- package/esm2020/src/gantt/editdialogfields.directive.mjs +1 -1
- package/esm2020/src/gantt/eventmarkers.directive.mjs +1 -1
- package/esm2020/src/gantt/gantt.component.mjs +1 -1
- package/esm2020/src/gantt/weekworkingtime.directive.mjs +1 -1
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -1
- package/package.json +8 -8
- 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
- package/styles/bds-lite.css +1 -0
- package/styles/bds-lite.scss +1 -0
- package/styles/bds.css +1 -0
- package/styles/bds.scss +1 -0
- package/styles/gantt/bds.css +1 -0
- package/styles/gantt/bds.scss +1 -0
- package/styles/gantt/tailwind3.css +1 -0
- package/styles/gantt/tailwind3.scss +1 -0
- package/styles/tailwind3-lite.css +1 -0
- package/styles/tailwind3-lite.scss +1 -0
- package/styles/tailwind3.css +1 -0
- package/styles/tailwind3.scss +1 -0
|
@@ -95,7 +95,7 @@ export declare class GanttComponent extends Gantt implements IComponentBase {
|
|
|
95
95
|
childEventMarkers: QueryList<EventMarkersDirective>;
|
|
96
96
|
tags: string[];
|
|
97
97
|
/**
|
|
98
|
-
*
|
|
98
|
+
* 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.
|
|
99
99
|
* {% codeBlock src='gantt/parentTaskbarTemplate/index.md' %}{% endcodeBlock %}
|
|
100
100
|
* @default null
|
|
101
101
|
* @asptype string
|
|
@@ -108,13 +108,14 @@ export declare class GanttComponent extends Gantt implements IComponentBase {
|
|
|
108
108
|
*/
|
|
109
109
|
timelineTemplate: any;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* Defines a custom template for rendering milestone tasks in the Gantt chart. This template allows you to customize the appearance of milestone tasks.
|
|
112
112
|
* @default null
|
|
113
113
|
* @asptype string
|
|
114
114
|
*/
|
|
115
115
|
milestoneTemplate: any;
|
|
116
116
|
/**
|
|
117
117
|
* The task bar template that renders customized child task bars from the given template.
|
|
118
|
+
* This property allows users to define a custom template for rendering child task bars in the Gantt chart.
|
|
118
119
|
* {% codeBlock src='gantt/taskbarTemplate/index.md' %}{% endcodeBlock %}
|
|
119
120
|
* @default null
|
|
120
121
|
* @asptype string
|
|
@@ -17,12 +17,12 @@ export declare class WeekWorkingTimeDirective extends ComplexBase<WeekWorkingTim
|
|
|
17
17
|
private viewContainerRef;
|
|
18
18
|
directivePropList: any;
|
|
19
19
|
/**
|
|
20
|
-
* Defines day
|
|
20
|
+
* Defines the day of the week to apply customized working time.
|
|
21
21
|
* @default null
|
|
22
22
|
*/
|
|
23
23
|
dayOfWeek: any;
|
|
24
24
|
/**
|
|
25
|
-
* Defines time range
|
|
25
|
+
* Defines the time range for each day of the week.
|
|
26
26
|
* @default []
|
|
27
27
|
* @asptype List<GanttDayWorkingTime>
|
|
28
28
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-gantt/styles/bds-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-gantt/styles/bds-lite.scss';
|
package/styles/bds.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-gantt/styles/bds.css';
|
package/styles/bds.scss
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'gantt/bds.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-gantt/styles/gantt/bds.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-gantt/styles/gantt/bds.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-gantt/styles/gantt/tailwind3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-gantt/styles/gantt/tailwind3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-gantt/styles/tailwind3-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-gantt/styles/tailwind3-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-gantt/styles/tailwind3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'gantt/tailwind3.scss';
|