@syncfusion/ej2-gantt 21.2.9 → 22.1.34

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 (99) hide show
  1. package/.eslintrc.json +1 -0
  2. package/CHANGELOG.md +23 -0
  3. package/dist/ej2-gantt.min.js +2 -2
  4. package/dist/ej2-gantt.umd.min.js +2 -2
  5. package/dist/ej2-gantt.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es2015.js +751 -715
  7. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  8. package/dist/es6/ej2-gantt.es5.js +790 -755
  9. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  10. package/dist/global/ej2-gantt.min.js +2 -2
  11. package/dist/global/ej2-gantt.min.js.map +1 -1
  12. package/dist/global/index.d.ts +1 -1
  13. package/package.json +19 -18
  14. package/src/gantt/actions/connector-line-edit.js +21 -26
  15. package/src/gantt/actions/context-menu.js +2 -2
  16. package/src/gantt/actions/critical-path.js +4 -9
  17. package/src/gantt/actions/day-markers.js +4 -1
  18. package/src/gantt/actions/edit.js +9 -6
  19. package/src/gantt/actions/pdf-export.js +1 -1
  20. package/src/gantt/actions/taskbar-edit.d.ts +6 -0
  21. package/src/gantt/actions/taskbar-edit.js +120 -45
  22. package/src/gantt/base/css-constants.d.ts +5 -10
  23. package/src/gantt/base/css-constants.js +5 -10
  24. package/src/gantt/base/date-processor.js +10 -20
  25. package/src/gantt/base/enum.d.ts +215 -231
  26. package/src/gantt/base/gantt-chart.js +112 -5
  27. package/src/gantt/base/gantt-model.d.ts +6 -3
  28. package/src/gantt/base/gantt.d.ts +7 -3
  29. package/src/gantt/base/gantt.js +17 -13
  30. package/src/gantt/base/interface.d.ts +36 -1
  31. package/src/gantt/base/task-processor.js +21 -18
  32. package/src/gantt/base/tree-grid.js +1 -1
  33. package/src/gantt/export/export-helper.js +1 -0
  34. package/src/gantt/export/pdf-connector-line.d.ts +4 -4
  35. package/src/gantt/export/pdf-connector-line.js +11 -22
  36. package/src/gantt/export/pdf-gantt.d.ts +1 -2
  37. package/src/gantt/export/pdf-gantt.js +4 -4
  38. package/src/gantt/models/column.d.ts +8 -4
  39. package/src/gantt/models/edit-settings-model.d.ts +1 -0
  40. package/src/gantt/models/edit-settings.d.ts +1 -0
  41. package/src/gantt/models/filter-settings-model.d.ts +3 -0
  42. package/src/gantt/models/filter-settings.d.ts +3 -0
  43. package/src/gantt/models/search-settings-model.d.ts +1 -0
  44. package/src/gantt/models/search-settings.d.ts +1 -0
  45. package/src/gantt/models/sort-settings-model.d.ts +1 -0
  46. package/src/gantt/models/sort-settings.d.ts +1 -0
  47. package/src/gantt/models/tooltip-settings-model.d.ts +8 -4
  48. package/src/gantt/models/tooltip-settings.d.ts +8 -4
  49. package/src/gantt/renderer/chart-rows.d.ts +1 -1
  50. package/src/gantt/renderer/chart-rows.js +27 -65
  51. package/src/gantt/renderer/connector-line.d.ts +23 -0
  52. package/src/gantt/renderer/connector-line.js +287 -384
  53. package/src/gantt/renderer/edit-tooltip.js +4 -4
  54. package/src/gantt/renderer/nonworking-day.js +2 -2
  55. package/src/gantt/renderer/tooltip.d.ts +3 -3
  56. package/src/gantt/renderer/tooltip.js +103 -76
  57. package/styles/bootstrap-dark.css +27 -47
  58. package/styles/bootstrap.css +29 -49
  59. package/styles/bootstrap4.css +29 -49
  60. package/styles/bootstrap5-dark.css +27 -47
  61. package/styles/bootstrap5.css +27 -47
  62. package/styles/fabric-dark.css +27 -47
  63. package/styles/fabric.css +27 -47
  64. package/styles/fluent-dark.css +28 -47
  65. package/styles/fluent.css +28 -47
  66. package/styles/gantt/_layout.scss +53 -7
  67. package/styles/gantt/_material3-dark-definition.scss +1 -0
  68. package/styles/gantt/_material3-definition.scss +220 -0
  69. package/styles/gantt/_theme.scss +53 -53
  70. package/styles/gantt/bootstrap-dark.css +27 -47
  71. package/styles/gantt/bootstrap.css +29 -49
  72. package/styles/gantt/bootstrap4.css +29 -49
  73. package/styles/gantt/bootstrap5-dark.css +27 -47
  74. package/styles/gantt/bootstrap5.css +27 -47
  75. package/styles/gantt/fabric-dark.css +27 -47
  76. package/styles/gantt/fabric.css +27 -47
  77. package/styles/gantt/fluent-dark.css +28 -47
  78. package/styles/gantt/fluent.css +28 -47
  79. package/styles/gantt/highcontrast-light.css +27 -47
  80. package/styles/gantt/highcontrast.css +27 -47
  81. package/styles/gantt/icons/_material3-dark.scss +1 -0
  82. package/styles/gantt/material-dark.css +27 -47
  83. package/styles/gantt/material.css +27 -47
  84. package/styles/gantt/material3-dark.css +2184 -0
  85. package/styles/gantt/material3-dark.scss +23 -0
  86. package/styles/gantt/material3.css +2240 -0
  87. package/styles/gantt/material3.scss +23 -0
  88. package/styles/gantt/tailwind-dark.css +27 -47
  89. package/styles/gantt/tailwind.css +27 -47
  90. package/styles/highcontrast-light.css +27 -47
  91. package/styles/highcontrast.css +27 -47
  92. package/styles/material-dark.css +27 -47
  93. package/styles/material.css +27 -47
  94. package/styles/material3-dark.css +2184 -0
  95. package/styles/material3-dark.scss +3 -0
  96. package/styles/material3.css +2240 -0
  97. package/styles/material3.scss +3 -0
  98. package/styles/tailwind-dark.css +27 -47
  99. package/styles/tailwind.css +27 -47
@@ -47,8 +47,8 @@
47
47
  .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-fontcolor-dropdown,
48
48
  .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-numberformatlist-dropdown,
49
49
  .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-bulletformatlist-dropdown {
50
- padding-bottom: 0;
51
- padding-top: 0;
50
+ padding-bottom: 1px;
51
+ padding-top: 1px;
52
52
  }
53
53
  .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn.e-btn:hover, .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn.e-btn.e-active, .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn.e-btn.e-active:hover,
54
54
  .e-rte-toolbar .e-toolbar-items .e-rte-fontcolor-dropdown.e-tbar-btn.e-btn:hover,
@@ -481,9 +481,6 @@
481
481
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
482
482
  line-height: 28px;
483
483
  }
484
- .e-bigger .e-gantt .e-filter-popup.e-popup {
485
- width: 350px !important;
486
- }
487
484
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
488
485
  padding: 16px 0 0 !important;
489
486
  }
@@ -821,6 +818,9 @@
821
818
  line-height: 10px;
822
819
  vertical-align: middle;
823
820
  }
821
+ .e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
822
+ pointer-events: none;
823
+ }
824
824
  .e-gantt .e-gantt-chart {
825
825
  height: 100%;
826
826
  overflow: hidden;
@@ -1743,6 +1743,9 @@
1743
1743
  background: #c6ddf0;
1744
1744
  opacity: 1;
1745
1745
  }
1746
+ .e-gantt .e-taskbar-resize-div {
1747
+ border-color: #317ab9;
1748
+ }
1746
1749
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1747
1750
  background: #fff;
1748
1751
  border-bottom-color: #ddd;
@@ -1790,7 +1793,7 @@
1790
1793
  outline-color: #66afe9;
1791
1794
  }
1792
1795
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1793
- background-color: #317ab9;
1796
+ background: #317ab9;
1794
1797
  outline: 1px solid #21527d;
1795
1798
  border-radius: 4px;
1796
1799
  }
@@ -1827,7 +1830,7 @@
1827
1830
  border-radius: 3px;
1828
1831
  }
1829
1832
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1830
- background-color: #7538C9;
1833
+ background: #7538C9;
1831
1834
  outline: 1px solid #572A96;
1832
1835
  }
1833
1836
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
@@ -1995,23 +1998,16 @@
1995
1998
  .e-gantt .e-gantt-chart .e-icon {
1996
1999
  color: #fff;
1997
2000
  }
1998
- .e-gantt .e-gantt-chart .e-milestone-top {
1999
- border-bottom-color: #555;
2000
- }
2001
- .e-gantt .e-gantt-chart .e-milestone-bottom {
2002
- border-top-color: #555;
2003
- }
2004
- .e-gantt .e-gantt-chart .e-parent-milestone-top {
2005
- border-bottom-color: #555;
2006
- }
2007
- .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
2008
- border-top-color: #555;
2001
+ .e-gantt .e-gantt-chart .e-gantt-milestone {
2002
+ background-color: #555;
2003
+ border-color: #21527d;
2009
2004
  }
2010
- .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
2011
- border-bottom-color: #989A9C;
2005
+ .e-gantt .e-gantt-chart .e-gantt-parent-milestone {
2006
+ background-color: #555;
2012
2007
  }
2013
- .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
2014
- border-top-color: #989A9C;
2008
+ .e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
2009
+ background-color: #989A9C;
2010
+ border-color: #21527d;
2015
2011
  }
2016
2012
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
2017
2013
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
@@ -2031,11 +2027,8 @@
2031
2027
  .e-gantt .e-gantt-chart .e-baseline-bar {
2032
2028
  background-color: #f0ad4e;
2033
2029
  }
2034
- .e-gantt .e-gantt-chart .e-baseline-milestone-top {
2035
- border-bottom-color: #f0ad4e;
2036
- }
2037
- .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
2038
- border-top-color: #f0ad4e;
2030
+ .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
2031
+ background-color: #f0ad4e;
2039
2032
  }
2040
2033
  .e-gantt .e-gantt-chart .e-uptail::before {
2041
2034
  border-bottom-color: #e0e0e0;
@@ -2089,11 +2082,8 @@
2089
2082
  background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
2090
2083
  border: transparent !important; /* stylelint-disable-line declaration-no-important */
2091
2084
  }
2092
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
2093
- border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2094
- }
2095
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
2096
- border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2085
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
2086
+ background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2097
2087
  }
2098
2088
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
2099
2089
  background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
@@ -2107,21 +2097,15 @@
2107
2097
  background: #21527d !important; /* stylelint-disable-line declaration-no-important */
2108
2098
  border: #21527d !important; /* stylelint-disable-line declaration-no-important */
2109
2099
  }
2110
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
2111
- border-bottom-color: #21527d !important; /* stylelint-disable-line declaration-no-important */
2112
- }
2113
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
2114
- border-top-color: #21527d !important; /* stylelint-disable-line declaration-no-important */
2100
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
2101
+ background-color: #21527d !important; /* stylelint-disable-line declaration-no-important */
2115
2102
  }
2116
2103
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
2117
2104
  background: #75acdb !important; /* stylelint-disable-line declaration-no-important */
2118
2105
  border: #75acdb !important; /* stylelint-disable-line declaration-no-important */
2119
2106
  }
2120
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
2121
- border-bottom-color: #75acdb !important; /* stylelint-disable-line declaration-no-important */
2122
- }
2123
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
2124
- border-top-color: #75acdb !important; /* stylelint-disable-line declaration-no-important */
2107
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
2108
+ background-color: #75acdb !important; /* stylelint-disable-line declaration-no-important */
2125
2109
  }
2126
2110
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
2127
2111
  border-color: #21527d !important; /* stylelint-disable-line declaration-no-important */
@@ -2221,7 +2205,7 @@
2221
2205
  }
2222
2206
 
2223
2207
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2224
- background-color: #F3D8DA;
2208
+ background: #F3D8DA;
2225
2209
  outline: 1px solid #F3D8DA;
2226
2210
  border-radius: 4px;
2227
2211
  }
@@ -2240,10 +2224,6 @@
2240
2224
  border-radius: 4px;
2241
2225
  }
2242
2226
 
2243
- .e-gantt .e-gantt-chart .e-critical-milestone-top {
2244
- border-bottom-color: #D13438;
2245
- }
2246
-
2247
- .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2248
- border-top-color: #D13438;
2227
+ .e-gantt .e-gantt-chart .e-critical-milestone {
2228
+ background-color: #D13438;
2249
2229
  }
@@ -38,8 +38,8 @@
38
38
  }
39
39
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-inline-dropdown.e-control.e-tbar-btn.e-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-inline-dropdown.e-control.e-tbar-btn.e-btn {
40
40
  border: 1px solid transparent;
41
- padding-bottom: 1px;
42
- padding-top: 1px;
41
+ padding-bottom: 0;
42
+ padding-top: 0;
43
43
  }
44
44
  .e-richtexteditor .e-rte-content {
45
45
  border-bottom-left-radius: 4px;
@@ -662,9 +662,6 @@
662
662
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
663
663
  line-height: 28px;
664
664
  }
665
- .e-bigger .e-gantt .e-filter-popup.e-popup {
666
- width: 350px !important;
667
- }
668
665
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
669
666
  padding: 16px 0 0 !important;
670
667
  }
@@ -1005,6 +1002,9 @@
1005
1002
  line-height: 10px;
1006
1003
  vertical-align: middle;
1007
1004
  }
1005
+ .e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
1006
+ pointer-events: none;
1007
+ }
1008
1008
  .e-gantt .e-gantt-chart {
1009
1009
  height: 100%;
1010
1010
  overflow: hidden;
@@ -1927,6 +1927,9 @@
1927
1927
  background: rgba(0, 123, 255, 0.16);
1928
1928
  opacity: 1;
1929
1929
  }
1930
+ .e-gantt .e-taskbar-resize-div {
1931
+ border-color: #007bff;
1932
+ }
1930
1933
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1931
1934
  background: #fff;
1932
1935
  border-bottom-color: #dee2e6;
@@ -1974,7 +1977,7 @@
1974
1977
  outline-color: #66afe9;
1975
1978
  }
1976
1979
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1977
- background-color: #007bff;
1980
+ background: #007bff;
1978
1981
  outline: 1px solid #0056b3;
1979
1982
  border-radius: 4px;
1980
1983
  }
@@ -2011,7 +2014,7 @@
2011
2014
  border-radius: 3px;
2012
2015
  }
2013
2016
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
2014
- background-color: #8553F1;
2017
+ background: #8553F1;
2015
2018
  outline: 1px solid #6628EE;
2016
2019
  }
2017
2020
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
@@ -2179,23 +2182,16 @@
2179
2182
  .e-gantt .e-gantt-chart .e-icon {
2180
2183
  color: #fff;
2181
2184
  }
2182
- .e-gantt .e-gantt-chart .e-milestone-top {
2183
- border-bottom-color: #495057;
2184
- }
2185
- .e-gantt .e-gantt-chart .e-milestone-bottom {
2186
- border-top-color: #495057;
2187
- }
2188
- .e-gantt .e-gantt-chart .e-parent-milestone-top {
2189
- border-bottom-color: #495057;
2190
- }
2191
- .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
2192
- border-top-color: #495057;
2185
+ .e-gantt .e-gantt-chart .e-gantt-milestone {
2186
+ background-color: #495057;
2187
+ border-color: #0056b3;
2193
2188
  }
2194
- .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
2195
- border-bottom-color: #989A9C;
2189
+ .e-gantt .e-gantt-chart .e-gantt-parent-milestone {
2190
+ background-color: #495057;
2196
2191
  }
2197
- .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
2198
- border-top-color: #989A9C;
2192
+ .e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
2193
+ background-color: #989A9C;
2194
+ border-color: #0056b3;
2199
2195
  }
2200
2196
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
2201
2197
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
@@ -2215,11 +2211,8 @@
2215
2211
  .e-gantt .e-gantt-chart .e-baseline-bar {
2216
2212
  background-color: #ffc107;
2217
2213
  }
2218
- .e-gantt .e-gantt-chart .e-baseline-milestone-top {
2219
- border-bottom-color: #ffc107;
2220
- }
2221
- .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
2222
- border-top-color: #ffc107;
2214
+ .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
2215
+ background-color: #ffc107;
2223
2216
  }
2224
2217
  .e-gantt .e-gantt-chart .e-uptail::before {
2225
2218
  border-bottom-color: #e0e0e0;
@@ -2273,11 +2266,8 @@
2273
2266
  background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
2274
2267
  border: transparent !important; /* stylelint-disable-line declaration-no-important */
2275
2268
  }
2276
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
2277
- border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2278
- }
2279
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
2280
- border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2269
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
2270
+ background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2281
2271
  }
2282
2272
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
2283
2273
  background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
@@ -2291,21 +2281,15 @@
2291
2281
  background: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2292
2282
  border: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2293
2283
  }
2294
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
2295
- border-bottom-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2296
- }
2297
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
2298
- border-top-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2284
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
2285
+ background-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2299
2286
  }
2300
2287
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
2301
2288
  background: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
2302
2289
  border: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
2303
2290
  }
2304
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
2305
- border-bottom-color: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
2306
- }
2307
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
2308
- border-top-color: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
2291
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
2292
+ background-color: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
2309
2293
  }
2310
2294
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
2311
2295
  border-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
@@ -2405,7 +2389,7 @@
2405
2389
  }
2406
2390
 
2407
2391
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2408
- background-color: #F3D8DA;
2392
+ background: #F3D8DA;
2409
2393
  outline: 1px solid #F3D8DA;
2410
2394
  border-radius: 4px;
2411
2395
  }
@@ -2424,10 +2408,6 @@
2424
2408
  border-radius: 4px;
2425
2409
  }
2426
2410
 
2427
- .e-gantt .e-gantt-chart .e-critical-milestone-top {
2428
- border-bottom-color: #D13438;
2429
- }
2430
-
2431
- .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2432
- border-top-color: #D13438;
2411
+ .e-gantt .e-gantt-chart .e-critical-milestone {
2412
+ background-color: #D13438;
2433
2413
  }
@@ -381,9 +381,6 @@
381
381
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
382
382
  line-height: 28px;
383
383
  }
384
- .e-bigger .e-gantt .e-filter-popup.e-popup {
385
- width: 350px !important;
386
- }
387
384
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
388
385
  padding: 16px 0 0 !important;
389
386
  }
@@ -721,6 +718,9 @@
721
718
  line-height: 10px;
722
719
  vertical-align: middle;
723
720
  }
721
+ .e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
722
+ pointer-events: none;
723
+ }
724
724
  .e-gantt .e-gantt-chart {
725
725
  height: 100%;
726
726
  overflow: hidden;
@@ -1643,6 +1643,9 @@
1643
1643
  background: #3c444b;
1644
1644
  opacity: 0.9;
1645
1645
  }
1646
+ .e-gantt .e-taskbar-resize-div {
1647
+ border-color: #0d6efd;
1648
+ }
1646
1649
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1647
1650
  background: #212529;
1648
1651
  border-bottom-color: #444c54;
@@ -1690,7 +1693,7 @@
1690
1693
  outline-color: #6c757d;
1691
1694
  }
1692
1695
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1693
- background-color: #86b7fe;
1696
+ background: #86b7fe;
1694
1697
  outline: 1px solid #0d6efd;
1695
1698
  border-radius: 4px;
1696
1699
  }
@@ -1727,7 +1730,7 @@
1727
1730
  border-radius: 3px;
1728
1731
  }
1729
1732
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1730
- background-color: #d3f0e2;
1733
+ background: #d3f0e2;
1731
1734
  outline: 1px solid #21b26f;
1732
1735
  }
1733
1736
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
@@ -1895,23 +1898,16 @@
1895
1898
  .e-gantt .e-gantt-chart .e-icon {
1896
1899
  color: #fff;
1897
1900
  }
1898
- .e-gantt .e-gantt-chart .e-milestone-top {
1899
- border-bottom-color: #adb5bd;
1900
- }
1901
- .e-gantt .e-gantt-chart .e-milestone-bottom {
1902
- border-top-color: #adb5bd;
1903
- }
1904
- .e-gantt .e-gantt-chart .e-parent-milestone-top {
1905
- border-bottom-color: #adb5bd;
1906
- }
1907
- .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
1908
- border-top-color: #adb5bd;
1901
+ .e-gantt .e-gantt-chart .e-gantt-milestone {
1902
+ background-color: #adb5bd;
1903
+ border-color: #0d6efd;
1909
1904
  }
1910
- .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
1911
- border-bottom-color: #adb5bd;
1905
+ .e-gantt .e-gantt-chart .e-gantt-parent-milestone {
1906
+ background-color: #adb5bd;
1912
1907
  }
1913
- .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
1914
- border-top-color: #adb5bd;
1908
+ .e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
1909
+ background-color: #adb5bd;
1910
+ border-color: #0d6efd;
1915
1911
  }
1916
1912
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
1917
1913
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
@@ -1931,11 +1927,8 @@
1931
1927
  .e-gantt .e-gantt-chart .e-baseline-bar {
1932
1928
  background-color: #ffc107;
1933
1929
  }
1934
- .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1935
- border-bottom-color: #ffc107;
1936
- }
1937
- .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1938
- border-top-color: #ffc107;
1930
+ .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
1931
+ background-color: #ffc107;
1939
1932
  }
1940
1933
  .e-gantt .e-gantt-chart .e-uptail::before {
1941
1934
  border-bottom-color: #444c54;
@@ -1989,11 +1982,8 @@
1989
1982
  background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1990
1983
  border: transparent !important; /* stylelint-disable-line declaration-no-important */
1991
1984
  }
1992
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1993
- border-bottom-color: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1994
- }
1995
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1996
- border-top-color: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1985
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
1986
+ background-color: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1997
1987
  }
1998
1988
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1999
1989
  background-color: #6c757d !important; /* stylelint-disable-line declaration-no-important */
@@ -2007,21 +1997,15 @@
2007
1997
  background: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2008
1998
  border: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2009
1999
  }
2010
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
2011
- border-bottom-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2012
- }
2013
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
2014
- border-top-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2000
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
2001
+ background-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2015
2002
  }
2016
2003
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
2017
2004
  background: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2018
2005
  border: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2019
2006
  }
2020
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
2021
- border-bottom-color: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2022
- }
2023
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
2024
- border-top-color: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2007
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
2008
+ background-color: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2025
2009
  }
2026
2010
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
2027
2011
  border-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
@@ -2121,7 +2105,7 @@
2121
2105
  }
2122
2106
 
2123
2107
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2124
- background-color: #fadfe2;
2108
+ background: #fadfe2;
2125
2109
  outline: 1px solid #fadfe2;
2126
2110
  border-radius: 4px;
2127
2111
  }
@@ -2140,10 +2124,6 @@
2140
2124
  border-radius: 4px;
2141
2125
  }
2142
2126
 
2143
- .e-gantt .e-gantt-chart .e-critical-milestone-top {
2144
- border-bottom-color: #e4606d;
2145
- }
2146
-
2147
- .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2148
- border-top-color: #e4606d;
2127
+ .e-gantt .e-gantt-chart .e-critical-milestone {
2128
+ background-color: #e4606d;
2149
2129
  }
@@ -381,9 +381,6 @@
381
381
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
382
382
  line-height: 28px;
383
383
  }
384
- .e-bigger .e-gantt .e-filter-popup.e-popup {
385
- width: 350px !important;
386
- }
387
384
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
388
385
  padding: 16px 0 0 !important;
389
386
  }
@@ -721,6 +718,9 @@
721
718
  line-height: 10px;
722
719
  vertical-align: middle;
723
720
  }
721
+ .e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
722
+ pointer-events: none;
723
+ }
724
724
  .e-gantt .e-gantt-chart {
725
725
  height: 100%;
726
726
  overflow: hidden;
@@ -1643,6 +1643,9 @@
1643
1643
  background: #e6eaed;
1644
1644
  opacity: 0.9;
1645
1645
  }
1646
+ .e-gantt .e-taskbar-resize-div {
1647
+ border-color: #0d6efd;
1648
+ }
1646
1649
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1647
1650
  background: #fff;
1648
1651
  border-bottom-color: #dee2e6;
@@ -1690,7 +1693,7 @@
1690
1693
  outline-color: #ced4da;
1691
1694
  }
1692
1695
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1693
- background-color: #86b7fe;
1696
+ background: #86b7fe;
1694
1697
  outline: 1px solid #0d6efd;
1695
1698
  border-radius: 4px;
1696
1699
  }
@@ -1727,7 +1730,7 @@
1727
1730
  border-radius: 3px;
1728
1731
  }
1729
1732
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1730
- background-color: #d1e7dd;
1733
+ background: #d1e7dd;
1731
1734
  outline: 1px solid #198754;
1732
1735
  }
1733
1736
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
@@ -1895,23 +1898,16 @@
1895
1898
  .e-gantt .e-gantt-chart .e-icon {
1896
1899
  color: #fff;
1897
1900
  }
1898
- .e-gantt .e-gantt-chart .e-milestone-top {
1899
- border-bottom-color: #adb5bd;
1900
- }
1901
- .e-gantt .e-gantt-chart .e-milestone-bottom {
1902
- border-top-color: #adb5bd;
1903
- }
1904
- .e-gantt .e-gantt-chart .e-parent-milestone-top {
1905
- border-bottom-color: #adb5bd;
1906
- }
1907
- .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
1908
- border-top-color: #adb5bd;
1901
+ .e-gantt .e-gantt-chart .e-gantt-milestone {
1902
+ background-color: #adb5bd;
1903
+ border-color: #0d6efd;
1909
1904
  }
1910
- .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
1911
- border-bottom-color: #adb5bd;
1905
+ .e-gantt .e-gantt-chart .e-gantt-parent-milestone {
1906
+ background-color: #adb5bd;
1912
1907
  }
1913
- .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
1914
- border-top-color: #adb5bd;
1908
+ .e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
1909
+ background-color: #adb5bd;
1910
+ border-color: #0d6efd;
1915
1911
  }
1916
1912
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
1917
1913
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
@@ -1931,11 +1927,8 @@
1931
1927
  .e-gantt .e-gantt-chart .e-baseline-bar {
1932
1928
  background-color: #ffc107;
1933
1929
  }
1934
- .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1935
- border-bottom-color: #ffc107;
1936
- }
1937
- .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1938
- border-top-color: #ffc107;
1930
+ .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
1931
+ background-color: #ffc107;
1939
1932
  }
1940
1933
  .e-gantt .e-gantt-chart .e-uptail::before {
1941
1934
  border-bottom-color: #dee2e6;
@@ -1989,11 +1982,8 @@
1989
1982
  background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1990
1983
  border: transparent !important; /* stylelint-disable-line declaration-no-important */
1991
1984
  }
1992
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1993
- border-bottom-color: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1994
- }
1995
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1996
- border-top-color: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1985
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
1986
+ background-color: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1997
1987
  }
1998
1988
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1999
1989
  background-color: #ced4da !important; /* stylelint-disable-line declaration-no-important */
@@ -2007,21 +1997,15 @@
2007
1997
  background: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2008
1998
  border: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2009
1999
  }
2010
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
2011
- border-bottom-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2012
- }
2013
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
2014
- border-top-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2000
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
2001
+ background-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
2015
2002
  }
2016
2003
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
2017
2004
  background: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2018
2005
  border: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2019
2006
  }
2020
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
2021
- border-bottom-color: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2022
- }
2023
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
2024
- border-top-color: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2007
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
2008
+ background-color: #72abfe !important; /* stylelint-disable-line declaration-no-important */
2025
2009
  }
2026
2010
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
2027
2011
  border-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
@@ -2121,7 +2105,7 @@
2121
2105
  }
2122
2106
 
2123
2107
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2124
- background-color: #f8d7da;
2108
+ background: #f8d7da;
2125
2109
  outline: 1px solid #f8d7da;
2126
2110
  border-radius: 4px;
2127
2111
  }
@@ -2140,10 +2124,6 @@
2140
2124
  border-radius: 4px;
2141
2125
  }
2142
2126
 
2143
- .e-gantt .e-gantt-chart .e-critical-milestone-top {
2144
- border-bottom-color: #dc3545;
2145
- }
2146
-
2147
- .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2148
- border-top-color: #dc3545;
2127
+ .e-gantt .e-gantt-chart .e-critical-milestone {
2128
+ background-color: #dc3545;
2149
2129
  }