@syncfusion/ej2-angular-gantt 30.1.42-ngcc → 30.1.42

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 (43) hide show
  1. package/CHANGELOG.md +2812 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/gantt/adddialogfields.directive.mjs +58 -0
  4. package/esm2020/src/gantt/columns.directive.mjs +78 -0
  5. package/esm2020/src/gantt/dayworkingtime.directive.mjs +58 -0
  6. package/esm2020/src/gantt/editdialogfields.directive.mjs +58 -0
  7. package/esm2020/src/gantt/eventmarkers.directive.mjs +57 -0
  8. package/esm2020/src/gantt/gantt-all.module.mjs +74 -0
  9. package/esm2020/src/gantt/gantt.component.mjs +285 -0
  10. package/esm2020/src/gantt/gantt.module.mjs +88 -0
  11. package/esm2020/src/gantt/holidays.directive.mjs +58 -0
  12. package/esm2020/src/gantt/weekworkingtime.directive.mjs +58 -0
  13. package/esm2020/src/index.mjs +12 -0
  14. package/esm2020/syncfusion-ej2-angular-gantt.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-gantt.mjs +833 -0
  16. package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-gantt.mjs +833 -0
  18. package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  19. package/package.json +20 -7
  20. package/public_api.d.ts +1 -1
  21. package/src/gantt/adddialogfields.directive.d.ts +58 -53
  22. package/src/gantt/columns.directive.d.ts +212 -207
  23. package/src/gantt/dayworkingtime.directive.d.ts +41 -36
  24. package/src/gantt/editdialogfields.directive.d.ts +58 -53
  25. package/src/gantt/eventmarkers.directive.d.ts +47 -42
  26. package/src/gantt/gantt-all.module.d.ts +28 -22
  27. package/src/gantt/gantt.component.d.ts +144 -141
  28. package/src/gantt/gantt.module.d.ts +18 -5
  29. package/src/gantt/holidays.directive.d.ts +51 -46
  30. package/src/gantt/weekworkingtime.directive.d.ts +43 -38
  31. package/src/index.d.ts +11 -11
  32. package/syncfusion-ej2-angular-gantt.d.ts +5 -0
  33. package/@syncfusion/ej2-angular-gantt.es5.js +0 -914
  34. package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
  35. package/@syncfusion/ej2-angular-gantt.js +0 -862
  36. package/@syncfusion/ej2-angular-gantt.js.map +0 -1
  37. package/LICENSE +0 -10
  38. package/dist/ej2-angular-gantt.umd.js +0 -1035
  39. package/dist/ej2-angular-gantt.umd.js.map +0 -1
  40. package/dist/ej2-angular-gantt.umd.min.js +0 -11
  41. package/dist/ej2-angular-gantt.umd.min.js.map +0 -1
  42. package/ej2-angular-gantt.d.ts +0 -5
  43. package/ej2-angular-gantt.metadata.json +0 -1
@@ -1,38 +1,43 @@
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 the day of the week to apply customized working time.
20
- * @default null
21
- */
22
- dayOfWeek: any;
23
- /**
24
- * Defines the time range for each day of the 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
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * `e-week-working-times` directive represent a working time ranges in a day.
6
+ * It must be contained in a Gantt component(`ejs-gantt`).
7
+ * ```html
8
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
9
+ * <e-week-working-times>
10
+ * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
11
+ * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
12
+ * </e-week-working-times>
13
+ * </ejs-gantt>
14
+ * ```
15
+ */
16
+ export declare class WeekWorkingTimeDirective extends ComplexBase<WeekWorkingTimeDirective> {
17
+ private viewContainerRef;
18
+ directivePropList: any;
19
+ /**
20
+ * Defines the day of the week to apply customized working time.
21
+ * @default null
22
+ */
23
+ dayOfWeek: any;
24
+ /**
25
+ * Defines the time range for each day of the week.
26
+ * @default []
27
+ * @asptype List<GanttDayWorkingTime>
28
+
29
+ */
30
+ timeRange: any;
31
+ constructor(viewContainerRef: ViewContainerRef);
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<WeekWorkingTimeDirective, never>;
33
+ static ɵdir: i0.ɵɵDirectiveDeclaration<WeekWorkingTimeDirective, "ejs-gantt>e-week-working-times>e-week-working-time", never, { "dayOfWeek": "dayOfWeek"; "timeRange": "timeRange"; }, {}, never>;
34
+ }
35
+ /**
36
+ * WeekWorkingTime Array Directive
37
+ * @private
38
+ */
39
+ export declare class WeekWorkingTimesDirective extends ArrayBase<WeekWorkingTimesDirective> {
40
+ constructor();
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<WeekWorkingTimesDirective, never>;
42
+ static ɵdir: i0.ɵɵDirectiveDeclaration<WeekWorkingTimesDirective, "ejs-gantt>e-week-working-times", never, {}, {}, ["children"]>;
43
+ }
package/src/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- export { ColumnDirective, ColumnsDirective } from './gantt/columns.directive';
2
- export { AddDialogFieldDirective, AddDialogFieldsDirective } from './gantt/adddialogfields.directive';
3
- export { EditDialogFieldDirective, EditDialogFieldsDirective } from './gantt/editdialogfields.directive';
4
- export { DayWorkingTimeDirective, DayWorkingTimeCollectionDirective } from './gantt/dayworkingtime.directive';
5
- export { WeekWorkingTimeDirective, WeekWorkingTimesDirective } from './gantt/weekworkingtime.directive';
6
- export { HolidayDirective, HolidaysDirective } from './gantt/holidays.directive';
7
- export { EventMarkerDirective, EventMarkersDirective } from './gantt/eventmarkers.directive';
8
- export { GanttComponent } from './gantt/gantt.component';
9
- export { GanttModule } from './gantt/gantt.module';
10
- export { GanttAllModule, FilterService, SelectionService, SortService, ReorderService, ResizeService, EditService, DayMarkersService, ToolbarService, ContextMenuService, ExcelExportService, RowDDService, ColumnMenuService, PdfExportService, VirtualScrollService, CriticalPathService, UndoRedoService } from './gantt/gantt-all.module';
11
- export * from '@syncfusion/ej2-gantt';
1
+ export { ColumnDirective, ColumnsDirective } from './gantt/columns.directive';
2
+ export { AddDialogFieldDirective, AddDialogFieldsDirective } from './gantt/adddialogfields.directive';
3
+ export { EditDialogFieldDirective, EditDialogFieldsDirective } from './gantt/editdialogfields.directive';
4
+ export { DayWorkingTimeDirective, DayWorkingTimeCollectionDirective } from './gantt/dayworkingtime.directive';
5
+ export { WeekWorkingTimeDirective, WeekWorkingTimesDirective } from './gantt/weekworkingtime.directive';
6
+ export { HolidayDirective, HolidaysDirective } from './gantt/holidays.directive';
7
+ export { EventMarkerDirective, EventMarkersDirective } from './gantt/eventmarkers.directive';
8
+ export { GanttComponent } from './gantt/gantt.component';
9
+ export { GanttModule } from './gantt/gantt.module';
10
+ export { GanttAllModule, FilterService, SelectionService, SortService, ReorderService, ResizeService, EditService, DayMarkersService, ToolbarService, ContextMenuService, ExcelExportService, RowDDService, ColumnMenuService, PdfExportService, VirtualScrollService, CriticalPathService, UndoRedoService } from './gantt/gantt-all.module';
11
+ export * from '@syncfusion/ej2-gantt';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-gantt" />
5
+ export * from './public_api';