@syncfusion/ej2-angular-gantt 31.2.18 → 32.1.19
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 +0 -142
- package/esm2020/src/gantt/columns.directive.mjs +9 -3
- package/esm2020/src/gantt/eventmarkers.directive.mjs +3 -3
- package/esm2020/src/gantt/gantt-all.module.mjs +7 -4
- package/esm2020/src/gantt/gantt.component.mjs +16 -3
- package/esm2020/src/gantt/holidays.directive.mjs +1 -1
- package/esm2020/src/index.mjs +2 -2
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs +32 -10
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs +32 -10
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -1
- package/package.json +4 -4
- 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/columns.directive.d.ts +14 -1
- package/src/gantt/eventmarkers.directive.d.ts +8 -1
- package/src/gantt/gantt-all.module.d.ts +1 -0
- package/src/gantt/gantt.component.d.ts +11 -1
- package/src/gantt/holidays.directive.d.ts +17 -4
- package/src/index.d.ts +1 -1
- package/styles/bds-lite.scss +1 -1
- package/styles/bds.scss +1 -1
- package/styles/bootstrap-dark-lite.scss +1 -1
- package/styles/bootstrap-dark.scss +1 -1
- package/styles/bootstrap-lite.scss +1 -1
- package/styles/bootstrap.scss +1 -1
- package/styles/bootstrap4-lite.scss +1 -1
- package/styles/bootstrap4.scss +1 -1
- package/styles/bootstrap5-dark-lite.scss +1 -1
- package/styles/bootstrap5-dark.scss +1 -1
- package/styles/bootstrap5-lite.scss +1 -1
- package/styles/bootstrap5.3-lite.scss +1 -1
- package/styles/bootstrap5.3.scss +1 -1
- package/styles/bootstrap5.scss +1 -1
- package/styles/fabric-dark-lite.scss +1 -1
- package/styles/fabric-dark.scss +1 -1
- package/styles/fabric-lite.scss +1 -1
- package/styles/fabric.scss +1 -1
- package/styles/fluent-dark-lite.scss +1 -1
- package/styles/fluent-dark.scss +1 -1
- package/styles/fluent-lite.scss +1 -1
- package/styles/fluent.scss +1 -1
- package/styles/fluent2-lite.scss +1 -1
- package/styles/fluent2.scss +1 -1
- package/styles/gantt/bds.scss +1 -1
- package/styles/gantt/bootstrap-dark.scss +1 -1
- package/styles/gantt/bootstrap.scss +1 -1
- package/styles/gantt/bootstrap4.scss +1 -1
- package/styles/gantt/bootstrap5-dark.scss +1 -1
- package/styles/gantt/bootstrap5.3.scss +1 -1
- package/styles/gantt/bootstrap5.scss +1 -1
- package/styles/gantt/fabric-dark.scss +1 -1
- package/styles/gantt/fabric.scss +1 -1
- package/styles/gantt/fluent-dark.scss +1 -1
- package/styles/gantt/fluent.scss +1 -1
- package/styles/gantt/fluent2.scss +1 -1
- package/styles/gantt/highcontrast-light.scss +1 -1
- package/styles/gantt/highcontrast.scss +1 -1
- package/styles/gantt/material-dark.scss +1 -1
- package/styles/gantt/material.scss +1 -1
- package/styles/gantt/material3-dark.scss +1 -2
- package/styles/gantt/material3.scss +1 -2
- package/styles/gantt/tailwind-dark.scss +1 -1
- package/styles/gantt/tailwind.scss +1 -1
- package/styles/gantt/tailwind3.scss +1 -1
- package/styles/highcontrast-light-lite.scss +1 -1
- package/styles/highcontrast-light.scss +1 -1
- package/styles/highcontrast-lite.scss +1 -1
- package/styles/highcontrast.scss +1 -1
- package/styles/material-dark-lite.scss +1 -1
- package/styles/material-dark.scss +1 -1
- package/styles/material-lite.scss +1 -1
- package/styles/material.scss +1 -1
- package/styles/material3-dark-lite.scss +1 -1
- package/styles/material3-dark.scss +1 -2
- package/styles/material3-lite.scss +1 -1
- package/styles/material3.scss +1 -2
- package/styles/tailwind-dark-lite.scss +1 -1
- package/styles/tailwind-dark.scss +1 -1
- package/styles/tailwind-lite.scss +1 -1
- package/styles/tailwind.scss +1 -1
- package/styles/tailwind3-lite.scss +1 -1
- package/styles/tailwind3.scss +1 -1
|
@@ -17,22 +17,35 @@ export declare class HolidayDirective extends ComplexBase<HolidayDirective> {
|
|
|
17
17
|
private viewContainerRef;
|
|
18
18
|
directivePropList: any;
|
|
19
19
|
/**
|
|
20
|
-
* Defines custom
|
|
20
|
+
* Defines a custom CSS class for styling the holiday marker and label.
|
|
21
|
+
*
|
|
22
|
+
* Use this to apply custom background, borders, or font styles.
|
|
23
|
+
*
|
|
21
24
|
* @default null
|
|
22
25
|
*/
|
|
23
26
|
cssClass: any;
|
|
24
27
|
/**
|
|
25
|
-
*
|
|
28
|
+
* Specifies the start date of the holiday.
|
|
29
|
+
*
|
|
30
|
+
* Accepts a `Date` object or ISO-formatted string.
|
|
31
|
+
*
|
|
26
32
|
* @default null
|
|
27
33
|
*/
|
|
28
34
|
from: any;
|
|
29
35
|
/**
|
|
30
|
-
* Defines label
|
|
36
|
+
* Defines a label or description for the holiday.
|
|
37
|
+
*
|
|
38
|
+
* Useful for tooltips, annotations, and export metadata.
|
|
39
|
+
*
|
|
31
40
|
* @default null
|
|
32
41
|
*/
|
|
33
42
|
label: any;
|
|
34
43
|
/**
|
|
35
|
-
*
|
|
44
|
+
* Specifies the end date of the holiday.
|
|
45
|
+
*
|
|
46
|
+
* Accepts a `Date` object or ISO-formatted string.
|
|
47
|
+
*If omitted, the holiday is treated as a single-day event.
|
|
48
|
+
*
|
|
36
49
|
* @default null
|
|
37
50
|
*/
|
|
38
51
|
to: any;
|
package/src/index.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ export { HolidayDirective, HolidaysDirective } from './gantt/holidays.directive'
|
|
|
7
7
|
export { EventMarkerDirective, EventMarkersDirective } from './gantt/eventmarkers.directive';
|
|
8
8
|
export { GanttComponent } from './gantt/gantt.component';
|
|
9
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';
|
|
10
|
+
export { GanttAllModule, FilterService, SelectionService, SortService, ReorderService, ResizeService, EditService, DayMarkersService, ToolbarService, ContextMenuService, ExcelExportService, RowDDService, ColumnMenuService, PdfExportService, VirtualScrollService, CriticalPathService, UndoRedoService, FreezeService } from './gantt/gantt-all.module';
|
|
11
11
|
export * from '@syncfusion/ej2-gantt';
|
package/styles/bds-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/bds-lite' as *;
|
package/styles/bds.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/bds' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/bootstrap-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/bootstrap-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/bootstrap-lite' as *;
|
package/styles/bootstrap.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/bootstrap' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/bootstrap4-lite' as *;
|
package/styles/bootstrap4.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/bootstrap4' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/bootstrap5-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/bootstrap5-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/bootstrap5-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/bootstrap5.3-lite' as *;
|
package/styles/bootstrap5.3.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/bootstrap5.3' as *;
|
package/styles/bootstrap5.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/bootstrap5' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/fabric-dark-lite' as *;
|
package/styles/fabric-dark.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/fabric-dark' as *;
|
package/styles/fabric-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/fabric-lite' as *;
|
package/styles/fabric.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/fabric' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/fluent-dark-lite' as *;
|
package/styles/fluent-dark.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/fluent-dark' as *;
|
package/styles/fluent-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/fluent-lite' as *;
|
package/styles/fluent.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/fluent' as *;
|
package/styles/fluent2-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/fluent2-lite' as *;
|
package/styles/fluent2.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/fluent2' as *;
|
package/styles/gantt/bds.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/bds' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/bootstrap-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/bootstrap' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/bootstrap4' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/bootstrap5-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/bootstrap5.3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/bootstrap5' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/fabric-dark' as *;
|
package/styles/gantt/fabric.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/fabric' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/fluent-dark' as *;
|
package/styles/gantt/fluent.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/fluent' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/fluent2' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/highcontrast-light' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/highcontrast' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/material-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/material' as *;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
@import 'ej2-gantt/styles/gantt/material3-dark.scss';
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/material3-dark' as *;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
@import 'ej2-gantt/styles/gantt/material3.scss';
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/material3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/tailwind-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/tailwind' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/styles/gantt/tailwind3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/highcontrast-light-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/highcontrast-light' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/highcontrast-lite' as *;
|
package/styles/highcontrast.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/highcontrast' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/material-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/material-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/material-lite' as *;
|
package/styles/material.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/material' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/material3-dark-lite' as *;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
@import 'gantt/material3-dark.scss';
|
|
1
|
+
@use 'gantt/material3-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/material3-lite' as *;
|
package/styles/material3.scss
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
@import 'gantt/material3.scss';
|
|
1
|
+
@use 'gantt/material3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/tailwind-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/tailwind-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/tailwind-lite' as *;
|
package/styles/tailwind.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/tailwind' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-gantt/tailwind3-lite' as *;
|
package/styles/tailwind3.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'gantt/tailwind3' as *;
|