@syncfusion/ej2-gantt 19.3.53 → 19.4.38
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 +31 -0
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +127 -51
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +124 -48
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +18 -18
- package/src/gantt/actions/context-menu.js +36 -15
- package/src/gantt/actions/dialog-edit.js +7 -2
- package/src/gantt/actions/edit.js +4 -0
- package/src/gantt/actions/rowdragdrop.js +2 -0
- package/src/gantt/actions/taskbar-edit.d.ts +0 -15
- package/src/gantt/actions/taskbar-edit.js +6 -24
- package/src/gantt/base/gantt.d.ts +17 -0
- package/src/gantt/base/gantt.js +32 -3
- package/src/gantt/base/task-processor.js +20 -3
- package/src/gantt/renderer/timeline.js +17 -1
- package/styles/bootstrap-dark.css +1 -1
- package/styles/bootstrap.css +1 -1
- package/styles/bootstrap4.css +1 -1
- package/styles/bootstrap5-dark.css +7 -6
- package/styles/bootstrap5.css +7 -6
- package/styles/fabric-dark.css +1 -1
- package/styles/fabric.css +1 -1
- package/styles/gantt/_bootstrap4-definition.scss +1 -0
- package/styles/gantt/_bootstrap5-definition.scss +1 -1
- package/styles/gantt/_fluent-definition.scss +163 -0
- package/styles/gantt/_layout.scss +2 -7
- package/styles/gantt/_theme.scss +2 -1
- package/styles/gantt/bootstrap-dark.css +1 -1
- package/styles/gantt/bootstrap.css +1 -1
- package/styles/gantt/bootstrap4.css +1 -1
- package/styles/gantt/bootstrap5-dark.css +7 -6
- package/styles/gantt/bootstrap5.css +7 -6
- package/styles/gantt/fabric-dark.css +1 -1
- package/styles/gantt/fabric.css +1 -1
- package/styles/gantt/highcontrast-light.css +1 -1
- package/styles/gantt/highcontrast.css +1 -1
- package/styles/gantt/icons/_fluent.scss +112 -0
- package/styles/gantt/icons/_tailwind-dark.scss +112 -112
- package/styles/gantt/material-dark.css +1 -1
- package/styles/gantt/material.css +1 -1
- package/styles/gantt/tailwind-dark.css +2 -2
- package/styles/gantt/tailwind.css +2 -2
- package/styles/highcontrast-light.css +1 -1
- package/styles/highcontrast.css +1 -1
- package/styles/material-dark.css +1 -1
- package/styles/material.css +1 -1
- package/styles/tailwind-dark.css +2 -2
- package/styles/tailwind.css +2 -2
|
@@ -1,113 +1,113 @@
|
|
|
1
|
-
@include export-module('gantt-tailwind-dark-icons') {
|
|
2
|
-
#{&}.e-gantt {
|
|
3
|
-
.e-add::before {
|
|
4
|
-
content: '\e78a';
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.e-edit::before {
|
|
8
|
-
content: '\e7d2';
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.e-delete::before {
|
|
12
|
-
content: '\e78d';
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.e-cancel::before {
|
|
16
|
-
content: '\e771';
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.e-save::before {
|
|
20
|
-
content: '\e704';
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.e-update::before {
|
|
24
|
-
content: '\e704';
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.e-search-icon::before {
|
|
28
|
-
content: '\e737';
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.e-cancel-icon::before {
|
|
32
|
-
content: '\e771';
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.e-notes-info::before {
|
|
36
|
-
content: '\e7a6';
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.e-left-resize-gripper::before,
|
|
40
|
-
.e-right-resize-gripper::before {
|
|
41
|
-
content: '\e75b';
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.e-expandall::before {
|
|
45
|
-
content: '\e762';
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.e-collapseall::before {
|
|
49
|
-
content: '\e750';
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.e-prevtimespan::before {
|
|
53
|
-
content: '\e7a5';
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.e-nexttimespan::before {
|
|
57
|
-
content: '\e7a8';
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.e-zoomin::before {
|
|
61
|
-
content: '\e70a';
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.e-zoomout::before {
|
|
65
|
-
content: '\e779';
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.e-zoomtofit::before {
|
|
69
|
-
content: '\e808';
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.e-csvexport::before {
|
|
73
|
-
content: '\e73d';
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.e-excelexport::before {
|
|
77
|
-
content: '\e780';
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.e-pdfexport::before {
|
|
81
|
-
content: '\e741';
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.e-indent::before {
|
|
85
|
-
content: '\e7ac';
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.e-outdent::before {
|
|
89
|
-
content: '\e735';
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.e-add-above::before {
|
|
93
|
-
content: '\e7dd';
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.e-add-below::before {
|
|
97
|
-
content: '\e757';
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
#{&}.e-gantt.e-device {
|
|
102
|
-
.e-backarrowspan::before,
|
|
103
|
-
.e-icon-dlg-close::before {
|
|
104
|
-
content: '\e7a5';
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.e-left-resize-gripper::before,
|
|
108
|
-
.e-right-resize-gripper::before {
|
|
109
|
-
content: '\e781';
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
1
|
+
@include export-module('gantt-tailwind-dark-icons') {
|
|
2
|
+
#{&}.e-gantt {
|
|
3
|
+
.e-add::before {
|
|
4
|
+
content: '\e78a';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-edit::before {
|
|
8
|
+
content: '\e7d2';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-delete::before {
|
|
12
|
+
content: '\e78d';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-cancel::before {
|
|
16
|
+
content: '\e771';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-save::before {
|
|
20
|
+
content: '\e704';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-update::before {
|
|
24
|
+
content: '\e704';
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.e-search-icon::before {
|
|
28
|
+
content: '\e737';
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-cancel-icon::before {
|
|
32
|
+
content: '\e771';
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.e-notes-info::before {
|
|
36
|
+
content: '\e7a6';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.e-left-resize-gripper::before,
|
|
40
|
+
.e-right-resize-gripper::before {
|
|
41
|
+
content: '\e75b';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-expandall::before {
|
|
45
|
+
content: '\e762';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-collapseall::before {
|
|
49
|
+
content: '\e750';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.e-prevtimespan::before {
|
|
53
|
+
content: '\e7a5';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.e-nexttimespan::before {
|
|
57
|
+
content: '\e7a8';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.e-zoomin::before {
|
|
61
|
+
content: '\e70a';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.e-zoomout::before {
|
|
65
|
+
content: '\e779';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-zoomtofit::before {
|
|
69
|
+
content: '\e808';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.e-csvexport::before {
|
|
73
|
+
content: '\e73d';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-excelexport::before {
|
|
77
|
+
content: '\e780';
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-pdfexport::before {
|
|
81
|
+
content: '\e741';
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-indent::before {
|
|
85
|
+
content: '\e7ac';
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.e-outdent::before {
|
|
89
|
+
content: '\e735';
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-add-above::before {
|
|
93
|
+
content: '\e7dd';
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-add-below::before {
|
|
97
|
+
content: '\e757';
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
#{&}.e-gantt.e-device {
|
|
102
|
+
.e-backarrowspan::before,
|
|
103
|
+
.e-icon-dlg-close::before {
|
|
104
|
+
content: '\e7a5';
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-left-resize-gripper::before,
|
|
108
|
+
.e-right-resize-gripper::before {
|
|
109
|
+
content: '\e781';
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
113
|
|
|
@@ -893,7 +893,7 @@
|
|
|
893
893
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
894
894
|
-ms-flex-align: center;
|
|
895
895
|
align-items: center;
|
|
896
|
-
cursor:
|
|
896
|
+
cursor: ew-resize;
|
|
897
897
|
display: -ms-inline-flexbox;
|
|
898
898
|
display: inline-flex;
|
|
899
899
|
}
|
|
@@ -987,7 +987,7 @@
|
|
|
987
987
|
}
|
|
988
988
|
|
|
989
989
|
.e-gantt .e-gantt-chart .e-connector-line-z-index {
|
|
990
|
-
z-index:
|
|
990
|
+
z-index: 1;
|
|
991
991
|
}
|
|
992
992
|
|
|
993
993
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
@@ -893,7 +893,7 @@
|
|
|
893
893
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
894
894
|
-ms-flex-align: center;
|
|
895
895
|
align-items: center;
|
|
896
|
-
cursor:
|
|
896
|
+
cursor: ew-resize;
|
|
897
897
|
display: -ms-inline-flexbox;
|
|
898
898
|
display: inline-flex;
|
|
899
899
|
}
|
|
@@ -987,7 +987,7 @@
|
|
|
987
987
|
}
|
|
988
988
|
|
|
989
989
|
.e-gantt .e-gantt-chart .e-connector-line-z-index {
|
|
990
|
-
z-index:
|
|
990
|
+
z-index: 1;
|
|
991
991
|
}
|
|
992
992
|
|
|
993
993
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
package/styles/highcontrast.css
CHANGED
package/styles/material-dark.css
CHANGED
package/styles/material.css
CHANGED
package/styles/tailwind-dark.css
CHANGED
|
@@ -893,7 +893,7 @@
|
|
|
893
893
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
894
894
|
-ms-flex-align: center;
|
|
895
895
|
align-items: center;
|
|
896
|
-
cursor:
|
|
896
|
+
cursor: ew-resize;
|
|
897
897
|
display: -ms-inline-flexbox;
|
|
898
898
|
display: inline-flex;
|
|
899
899
|
}
|
|
@@ -987,7 +987,7 @@
|
|
|
987
987
|
}
|
|
988
988
|
|
|
989
989
|
.e-gantt .e-gantt-chart .e-connector-line-z-index {
|
|
990
|
-
z-index:
|
|
990
|
+
z-index: 1;
|
|
991
991
|
}
|
|
992
992
|
|
|
993
993
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
package/styles/tailwind.css
CHANGED
|
@@ -893,7 +893,7 @@
|
|
|
893
893
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
894
894
|
-ms-flex-align: center;
|
|
895
895
|
align-items: center;
|
|
896
|
-
cursor:
|
|
896
|
+
cursor: ew-resize;
|
|
897
897
|
display: -ms-inline-flexbox;
|
|
898
898
|
display: inline-flex;
|
|
899
899
|
}
|
|
@@ -987,7 +987,7 @@
|
|
|
987
987
|
}
|
|
988
988
|
|
|
989
989
|
.e-gantt .e-gantt-chart .e-connector-line-z-index {
|
|
990
|
-
z-index:
|
|
990
|
+
z-index: 1;
|
|
991
991
|
}
|
|
992
992
|
|
|
993
993
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|