@syncfusion/ej2-angular-gantt 25.2.7-ngcc → 26.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 +98 -20
- package/@syncfusion/ej2-angular-gantt.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-gantt.js +94 -20
- package/@syncfusion/ej2-angular-gantt.js.map +1 -1
- package/dist/ej2-angular-gantt.umd.js +101 -20
- package/dist/ej2-angular-gantt.umd.js.map +1 -1
- package/dist/ej2-angular-gantt.umd.min.js +2 -2
- package/dist/ej2-angular-gantt.umd.min.js.map +1 -1
- package/ej2-angular-gantt.metadata.json +1 -1
- package/package.json +9 -9
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/gantt/gantt.component.d.ts +8 -0
- package/src/gantt/weekworkingtime.directive.d.ts +38 -0
- package/src/index.d.ts +1 -0
- package/styles/bootstrap-dark.css +2188 -1
- package/styles/bootstrap.css +2318 -1
- package/styles/bootstrap4.css +2531 -1
- package/styles/bootstrap5-dark.css +2213 -1
- package/styles/bootstrap5.css +2213 -1
- package/styles/fabric-dark.css +2133 -1
- package/styles/fabric.css +2121 -1
- package/styles/fluent-dark.css +2209 -1
- package/styles/fluent.css +2209 -1
- package/styles/fluent2.css +3458 -0
- package/styles/fluent2.scss +1 -0
- package/styles/gantt/bootstrap-dark.css +2188 -1
- package/styles/gantt/bootstrap.css +2318 -1
- package/styles/gantt/bootstrap4.css +2531 -1
- package/styles/gantt/bootstrap5-dark.css +2213 -1
- package/styles/gantt/bootstrap5.css +2213 -1
- package/styles/gantt/fabric-dark.css +2133 -1
- package/styles/gantt/fabric.css +2121 -1
- package/styles/gantt/fluent-dark.css +2209 -1
- package/styles/gantt/fluent.css +2209 -1
- package/styles/gantt/fluent2.css +3458 -0
- package/styles/gantt/fluent2.scss +1 -0
- package/styles/gantt/highcontrast-light.css +2092 -1
- package/styles/gantt/highcontrast.css +2219 -1
- package/styles/gantt/material-dark.css +2240 -1
- package/styles/gantt/material.css +2292 -1
- package/styles/gantt/material3-dark.css +2367 -1
- package/styles/gantt/material3.css +2479 -1
- package/styles/gantt/tailwind-dark.css +2218 -1
- package/styles/gantt/tailwind.css +2218 -1
- package/styles/highcontrast-light.css +2092 -1
- package/styles/highcontrast.css +2219 -1
- package/styles/material-dark.css +2240 -1
- package/styles/material.css +2292 -1
- package/styles/material3-dark.css +2367 -1
- package/styles/material3.css +2479 -1
- package/styles/tailwind-dark.css +2218 -1
- package/styles/tailwind.css +2218 -1
- package/CHANGELOG.md +0 -2396
- package/postinstall/tagchange.js +0 -18
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-gantt';
|
|
4
|
-
exports.pkgVer = '^
|
|
4
|
+
exports.pkgVer = '^26.1.35';
|
|
5
5
|
exports.moduleName = 'GanttModule';
|
|
6
|
-
exports.themeVer = '~
|
|
6
|
+
exports.themeVer = '~26.1.35';
|
|
@@ -5,6 +5,7 @@ import { ColumnsDirective } from './columns.directive';
|
|
|
5
5
|
import { AddDialogFieldsDirective } from './adddialogfields.directive';
|
|
6
6
|
import { EditDialogFieldsDirective } from './editdialogfields.directive';
|
|
7
7
|
import { DayWorkingTimeCollectionDirective } from './dayworkingtime.directive';
|
|
8
|
+
import { WeekWorkingTimesDirective } from './weekworkingtime.directive';
|
|
8
9
|
import { HolidaysDirective } from './holidays.directive';
|
|
9
10
|
import { EventMarkersDirective } from './eventmarkers.directive';
|
|
10
11
|
export declare const inputs: string[];
|
|
@@ -88,6 +89,7 @@ export declare class GanttComponent extends Gantt implements IComponentBase {
|
|
|
88
89
|
childAddDialogFields: QueryList<AddDialogFieldsDirective>;
|
|
89
90
|
childEditDialogFields: QueryList<EditDialogFieldsDirective>;
|
|
90
91
|
childDayWorkingTime: QueryList<DayWorkingTimeCollectionDirective>;
|
|
92
|
+
childWeekWorkingTime: QueryList<WeekWorkingTimesDirective>;
|
|
91
93
|
childHolidays: QueryList<HolidaysDirective>;
|
|
92
94
|
childEventMarkers: QueryList<EventMarkersDirective>;
|
|
93
95
|
tags: string[];
|
|
@@ -98,6 +100,12 @@ export declare class GanttComponent extends Gantt implements IComponentBase {
|
|
|
98
100
|
* @asptype string
|
|
99
101
|
*/
|
|
100
102
|
parentTaskbarTemplate: any;
|
|
103
|
+
/**
|
|
104
|
+
* Renders customized html elements for timeline cell from the given template.
|
|
105
|
+
* @default null
|
|
106
|
+
* @asptype string
|
|
107
|
+
*/
|
|
108
|
+
timelineTemplate: any;
|
|
101
109
|
/**
|
|
102
110
|
* The milestone template that renders customized milestone task from the given template.
|
|
103
111
|
* @default null
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
/**
|
|
4
|
+
* `e-week-working-times` directive represent a working time ranges in a day.
|
|
5
|
+
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
6
|
+
* ```html
|
|
7
|
+
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
8
|
+
* <e-week-working-times>
|
|
9
|
+
* <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
|
|
10
|
+
* <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
|
|
11
|
+
* </e-week-working-times>
|
|
12
|
+
* </ejs-gantt>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class WeekWorkingTimeDirective extends ComplexBase<WeekWorkingTimeDirective> {
|
|
16
|
+
private viewContainerRef;
|
|
17
|
+
directivePropList: any;
|
|
18
|
+
/**
|
|
19
|
+
* Defines day for setting time customized time range.
|
|
20
|
+
* @default null
|
|
21
|
+
*/
|
|
22
|
+
dayOfWeek: any;
|
|
23
|
+
/**
|
|
24
|
+
* Defines time range of each day in week.
|
|
25
|
+
* @default []
|
|
26
|
+
* @asptype List<GanttDayWorkingTime>
|
|
27
|
+
|
|
28
|
+
*/
|
|
29
|
+
timeRange: any;
|
|
30
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* WeekWorkingTime Array Directive
|
|
34
|
+
* @private
|
|
35
|
+
*/
|
|
36
|
+
export declare class WeekWorkingTimesDirective extends ArrayBase<WeekWorkingTimesDirective> {
|
|
37
|
+
constructor();
|
|
38
|
+
}
|
package/src/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { ColumnDirective, ColumnsDirective } from './gantt/columns.directive';
|
|
|
2
2
|
export { AddDialogFieldDirective, AddDialogFieldsDirective } from './gantt/adddialogfields.directive';
|
|
3
3
|
export { EditDialogFieldDirective, EditDialogFieldsDirective } from './gantt/editdialogfields.directive';
|
|
4
4
|
export { DayWorkingTimeDirective, DayWorkingTimeCollectionDirective } from './gantt/dayworkingtime.directive';
|
|
5
|
+
export { WeekWorkingTimeDirective, WeekWorkingTimesDirective } from './gantt/weekworkingtime.directive';
|
|
5
6
|
export { HolidayDirective, HolidaysDirective } from './gantt/holidays.directive';
|
|
6
7
|
export { EventMarkerDirective, EventMarkersDirective } from './gantt/eventmarkers.directive';
|
|
7
8
|
export { GanttComponent } from './gantt/gantt.component';
|