@syncfusion/ej2-angular-gantt 19.2.62 → 19.3.46
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 +1 -1
- package/@syncfusion/ej2-angular-gantt.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-gantt.js +1 -1
- package/@syncfusion/ej2-angular-gantt.js.map +1 -1
- package/CHANGELOG.md +46 -1
- package/dist/ej2-angular-gantt.umd.js +2 -2
- 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 +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/columns.directive.d.ts +5 -4
- package/src/gantt/dayworkingtime.directive.d.ts +0 -4
- package/src/gantt/gantt.component.d.ts +61 -1
- package/styles/bootstrap-dark.css +17 -0
- package/styles/bootstrap.css +17 -0
- package/styles/bootstrap4.css +22 -0
- package/styles/bootstrap5-dark.css +1922 -0
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +1922 -0
- package/styles/bootstrap5.scss +1 -0
- package/styles/fabric-dark.css +17 -0
- package/styles/fabric.css +17 -0
- package/styles/gantt/bootstrap-dark.css +17 -0
- package/styles/gantt/bootstrap.css +17 -0
- package/styles/gantt/bootstrap4.css +22 -0
- package/styles/gantt/bootstrap5-dark.css +1922 -0
- package/styles/gantt/bootstrap5-dark.scss +1 -0
- package/styles/gantt/bootstrap5.css +1922 -0
- package/styles/gantt/bootstrap5.scss +1 -0
- package/styles/gantt/fabric-dark.css +17 -0
- package/styles/gantt/fabric.css +17 -0
- package/styles/gantt/highcontrast-light.css +17 -0
- package/styles/gantt/highcontrast.css +17 -0
- package/styles/gantt/material-dark.css +19 -2
- package/styles/gantt/material.css +17 -0
- package/styles/gantt/tailwind-dark.css +41 -25
- package/styles/gantt/tailwind.css +39 -23
- package/styles/highcontrast-light.css +17 -0
- package/styles/highcontrast.css +17 -0
- package/styles/material-dark.css +19 -2
- package/styles/material.css +17 -0
- package/styles/tailwind-dark.css +41 -25
- package/styles/tailwind.css +39 -23
|
@@ -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 = '^19.
|
|
4
|
+
exports.pkgVer = '^19.3.45';
|
|
5
5
|
exports.moduleName = 'GanttModule';
|
|
6
|
-
exports.themeVer = '~19.
|
|
6
|
+
exports.themeVer = '~19.3.45';
|
|
@@ -58,7 +58,6 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
|
|
|
58
58
|
* @default Syncfusion.EJ2.Grids.ClipMode.EllipsisWithTooltip
|
|
59
59
|
* @isenumeration true
|
|
60
60
|
* @asptype Syncfusion.EJ2.Grids.ClipMode
|
|
61
|
-
* @blazortype Syncfusion.EJ2.Blazor.Grids.ClipMode
|
|
62
61
|
*/
|
|
63
62
|
clipMode: any;
|
|
64
63
|
/**
|
|
@@ -109,7 +108,6 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
|
|
|
109
108
|
* and [`date`](../../../common/internationalization/#formatting) formats.
|
|
110
109
|
* @default null
|
|
111
110
|
* @asptype string
|
|
112
|
-
* @blazortype object
|
|
113
111
|
*/
|
|
114
112
|
format: any;
|
|
115
113
|
/**
|
|
@@ -129,7 +127,6 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
|
|
|
129
127
|
* @default Syncfusion.EJ2.Grids.TextAlign.Left
|
|
130
128
|
* @isenumeration true
|
|
131
129
|
* @asptype Syncfusion.EJ2.Grids.TextAlign
|
|
132
|
-
* @blazortype Syncfusion.EJ2.Blazor.Grids.TextAlign
|
|
133
130
|
*/
|
|
134
131
|
headerTextAlign: any;
|
|
135
132
|
/**
|
|
@@ -153,12 +150,16 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
|
|
|
153
150
|
* @default null
|
|
154
151
|
*/
|
|
155
152
|
minWidth: any;
|
|
153
|
+
/**
|
|
154
|
+
* Defines the sort comparer property.
|
|
155
|
+
* @default null
|
|
156
|
+
*/
|
|
157
|
+
sortComparer: any;
|
|
156
158
|
/**
|
|
157
159
|
* Defines the alignment of the column in both header and content cells.
|
|
158
160
|
* @default Syncfusion.EJ2.Grids.TextAlign.Left
|
|
159
161
|
* @isenumeration true
|
|
160
162
|
* @asptype Syncfusion.EJ2.Grids.TextAlign
|
|
161
|
-
* @blazortype Syncfusion.EJ2.Blazor.Grids.TextAlign
|
|
162
163
|
*/
|
|
163
164
|
textAlign: any;
|
|
164
165
|
/**
|
|
@@ -18,15 +18,11 @@ export declare class DayWorkingTimeDirective extends ComplexBase<DayWorkingTimeD
|
|
|
18
18
|
/**
|
|
19
19
|
* Defines start time of working time range.
|
|
20
20
|
* @default null
|
|
21
|
-
* @blazortype double?
|
|
22
|
-
* @blazordefaultvalue null
|
|
23
21
|
*/
|
|
24
22
|
from: any;
|
|
25
23
|
/**
|
|
26
24
|
* Defines end time of working time range.
|
|
27
25
|
* @default null
|
|
28
|
-
* @blazortype double?
|
|
29
|
-
* @blazordefaultvalue null
|
|
30
26
|
*/
|
|
31
27
|
to: any;
|
|
32
28
|
constructor(viewContainerRef: ViewContainerRef);
|
|
@@ -23,6 +23,67 @@ export declare class GanttComponent extends Gantt implements IComponentBase {
|
|
|
23
23
|
private injector;
|
|
24
24
|
context: any;
|
|
25
25
|
tagObjects: any;
|
|
26
|
+
actionBegin: any;
|
|
27
|
+
actionComplete: any;
|
|
28
|
+
actionFailure: any;
|
|
29
|
+
beforeExcelExport: any;
|
|
30
|
+
beforePdfExport: any;
|
|
31
|
+
beforeTooltipRender: any;
|
|
32
|
+
cellDeselected: any;
|
|
33
|
+
cellDeselecting: any;
|
|
34
|
+
cellEdit: any;
|
|
35
|
+
cellSelected: any;
|
|
36
|
+
cellSelecting: any;
|
|
37
|
+
collapsed: any;
|
|
38
|
+
collapsing: any;
|
|
39
|
+
columnDrag: any;
|
|
40
|
+
columnDragStart: any;
|
|
41
|
+
columnDrop: any;
|
|
42
|
+
columnMenuClick: any;
|
|
43
|
+
columnMenuOpen: any;
|
|
44
|
+
contextMenuClick: any;
|
|
45
|
+
contextMenuOpen: any;
|
|
46
|
+
created: any;
|
|
47
|
+
dataBound: any;
|
|
48
|
+
dataStateChange: any;
|
|
49
|
+
destroyed: any;
|
|
50
|
+
endEdit: any;
|
|
51
|
+
excelExportComplete: any;
|
|
52
|
+
excelHeaderQueryCellInfo: any;
|
|
53
|
+
excelQueryCellInfo: any;
|
|
54
|
+
expanded: any;
|
|
55
|
+
expanding: any;
|
|
56
|
+
headerCellInfo: any;
|
|
57
|
+
load: any;
|
|
58
|
+
onMouseMove: any;
|
|
59
|
+
onTaskbarClick: any;
|
|
60
|
+
pdfColumnHeaderQueryCellInfo: any;
|
|
61
|
+
pdfExportComplete: any;
|
|
62
|
+
pdfQueryCellInfo: any;
|
|
63
|
+
pdfQueryTaskbarInfo: any;
|
|
64
|
+
pdfQueryTimelineCellInfo: any;
|
|
65
|
+
queryCellInfo: any;
|
|
66
|
+
queryTaskbarInfo: any;
|
|
67
|
+
recordDoubleClick: any;
|
|
68
|
+
resizeStart: any;
|
|
69
|
+
resizeStop: any;
|
|
70
|
+
resizing: any;
|
|
71
|
+
rowDataBound: any;
|
|
72
|
+
rowDeselected: any;
|
|
73
|
+
rowDeselecting: any;
|
|
74
|
+
rowDrag: any;
|
|
75
|
+
rowDragStart: any;
|
|
76
|
+
rowDragStartHelper: any;
|
|
77
|
+
rowDrop: any;
|
|
78
|
+
rowSelected: any;
|
|
79
|
+
rowSelecting: any;
|
|
80
|
+
splitterResizeStart: any;
|
|
81
|
+
splitterResized: any;
|
|
82
|
+
splitterResizing: any;
|
|
83
|
+
taskbarEdited: any;
|
|
84
|
+
taskbarEditing: any;
|
|
85
|
+
toolbarClick: any;
|
|
86
|
+
dataSourceChange: any;
|
|
26
87
|
childColumns: QueryList<ColumnsDirective>;
|
|
27
88
|
childAddDialogFields: QueryList<AddDialogFieldsDirective>;
|
|
28
89
|
childEditDialogFields: QueryList<EditDialogFieldsDirective>;
|
|
@@ -30,7 +91,6 @@ export declare class GanttComponent extends Gantt implements IComponentBase {
|
|
|
30
91
|
childHolidays: QueryList<HolidaysDirective>;
|
|
31
92
|
childEventMarkers: QueryList<EventMarkersDirective>;
|
|
32
93
|
tags: string[];
|
|
33
|
-
dataSourceChange: any;
|
|
34
94
|
/**
|
|
35
95
|
* The parent task bar template that renders customized parent task bars from the given template.
|
|
36
96
|
* @default null
|
|
@@ -738,6 +738,10 @@
|
|
|
738
738
|
user-select: none;
|
|
739
739
|
}
|
|
740
740
|
|
|
741
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
742
|
+
line-height: initial;
|
|
743
|
+
}
|
|
744
|
+
|
|
741
745
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
742
746
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
743
747
|
display: inline-block;
|
|
@@ -1183,6 +1187,14 @@
|
|
|
1183
1187
|
opacity: 1;
|
|
1184
1188
|
}
|
|
1185
1189
|
|
|
1190
|
+
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1191
|
+
content: '';
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
.e-bigger .e-gantt .e-gantt-chart .e-label {
|
|
1195
|
+
font-size: 14px;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1186
1198
|
.e-gantt-tooltip-label {
|
|
1187
1199
|
padding-bottom: 2px;
|
|
1188
1200
|
padding-right: 2px;
|
|
@@ -1272,6 +1284,10 @@
|
|
|
1272
1284
|
border-radius: 4px;
|
|
1273
1285
|
}
|
|
1274
1286
|
|
|
1287
|
+
.e-gantt .e-gantt-splitter-height {
|
|
1288
|
+
height: calc(100% - 41px) !important;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1275
1291
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1276
1292
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
|
1277
1293
|
opacity: .95;
|
|
@@ -1381,6 +1397,7 @@
|
|
|
1381
1397
|
|
|
1382
1398
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1383
1399
|
background: #484848;
|
|
1400
|
+
opacity: 1;
|
|
1384
1401
|
}
|
|
1385
1402
|
|
|
1386
1403
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
package/styles/bootstrap.css
CHANGED
|
@@ -888,6 +888,10 @@
|
|
|
888
888
|
user-select: none;
|
|
889
889
|
}
|
|
890
890
|
|
|
891
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
892
|
+
line-height: initial;
|
|
893
|
+
}
|
|
894
|
+
|
|
891
895
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
892
896
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
893
897
|
display: inline-block;
|
|
@@ -1333,6 +1337,14 @@
|
|
|
1333
1337
|
opacity: 1;
|
|
1334
1338
|
}
|
|
1335
1339
|
|
|
1340
|
+
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1341
|
+
content: '';
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
.e-bigger .e-gantt .e-gantt-chart .e-label {
|
|
1345
|
+
font-size: 14px;
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1336
1348
|
.e-gantt-tooltip-label {
|
|
1337
1349
|
padding-bottom: 2px;
|
|
1338
1350
|
padding-right: 2px;
|
|
@@ -1422,6 +1434,10 @@
|
|
|
1422
1434
|
border-radius: 4px;
|
|
1423
1435
|
}
|
|
1424
1436
|
|
|
1437
|
+
.e-gantt .e-gantt-splitter-height {
|
|
1438
|
+
height: calc(100% - 41px) !important;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1425
1441
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1426
1442
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1427
1443
|
opacity: .95;
|
|
@@ -1531,6 +1547,7 @@
|
|
|
1531
1547
|
|
|
1532
1548
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1533
1549
|
background: #c6ddf0;
|
|
1550
|
+
opacity: 1;
|
|
1534
1551
|
}
|
|
1535
1552
|
|
|
1536
1553
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
package/styles/bootstrap4.css
CHANGED
|
@@ -358,6 +358,11 @@
|
|
|
358
358
|
background: transparent;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
362
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
363
|
+
background: #e9ecef;
|
|
364
|
+
}
|
|
365
|
+
|
|
361
366
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
362
367
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
363
368
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -1100,6 +1105,10 @@
|
|
|
1100
1105
|
user-select: none;
|
|
1101
1106
|
}
|
|
1102
1107
|
|
|
1108
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
1109
|
+
line-height: initial;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1103
1112
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1104
1113
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1105
1114
|
display: inline-block;
|
|
@@ -1545,6 +1554,14 @@
|
|
|
1545
1554
|
opacity: 1;
|
|
1546
1555
|
}
|
|
1547
1556
|
|
|
1557
|
+
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1558
|
+
content: '';
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.e-bigger .e-gantt .e-gantt-chart .e-label {
|
|
1562
|
+
font-size: 16px;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1548
1565
|
.e-gantt-tooltip-label {
|
|
1549
1566
|
padding-bottom: 2px;
|
|
1550
1567
|
padding-right: 2px;
|
|
@@ -1634,6 +1651,10 @@
|
|
|
1634
1651
|
border-radius: 0px;
|
|
1635
1652
|
}
|
|
1636
1653
|
|
|
1654
|
+
.e-gantt .e-gantt-splitter-height {
|
|
1655
|
+
height: calc(100% - 38px) !important;
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1637
1658
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1638
1659
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1639
1660
|
opacity: .95;
|
|
@@ -1743,6 +1764,7 @@
|
|
|
1743
1764
|
|
|
1744
1765
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1745
1766
|
background: rgba(0, 123, 255, 0.16);
|
|
1767
|
+
opacity: 1;
|
|
1746
1768
|
}
|
|
1747
1769
|
|
|
1748
1770
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|