@syncfusion/ej2-gantt 22.2.11 → 23.1.36

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 (127) hide show
  1. package/CHANGELOG.md +195 -163
  2. package/dist/ej2-gantt.min.js +2 -2
  3. package/dist/ej2-gantt.umd.min.js +2 -2
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +1003 -292
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +1040 -313
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +2 -2
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +21 -21
  13. package/src/gantt/actions/cell-edit.js +4 -1
  14. package/src/gantt/actions/context-menu.js +4 -1
  15. package/src/gantt/actions/critical-path.d.ts +2 -0
  16. package/src/gantt/actions/critical-path.js +81 -59
  17. package/src/gantt/actions/dependency.d.ts +1 -0
  18. package/src/gantt/actions/dependency.js +43 -25
  19. package/src/gantt/actions/dialog-edit.js +27 -7
  20. package/src/gantt/actions/edit.d.ts +12 -1
  21. package/src/gantt/actions/edit.js +91 -10
  22. package/src/gantt/actions/filter.js +3 -0
  23. package/src/gantt/actions/pdf-export.d.ts +4 -1
  24. package/src/gantt/actions/pdf-export.js +36 -3
  25. package/src/gantt/actions/rowdragdrop.js +10 -2
  26. package/src/gantt/actions/selection.js +22 -5
  27. package/src/gantt/actions/taskbar-edit.js +51 -36
  28. package/src/gantt/actions/toolbar.js +8 -0
  29. package/src/gantt/base/date-processor.js +3 -3
  30. package/src/gantt/base/gantt-chart.d.ts +1 -0
  31. package/src/gantt/base/gantt-chart.js +79 -6
  32. package/src/gantt/base/gantt-model.d.ts +7 -0
  33. package/src/gantt/base/gantt.d.ts +6 -0
  34. package/src/gantt/base/gantt.js +83 -13
  35. package/src/gantt/base/interface.d.ts +14 -0
  36. package/src/gantt/base/task-processor.d.ts +4 -4
  37. package/src/gantt/base/task-processor.js +86 -36
  38. package/src/gantt/base/tree-grid.js +19 -10
  39. package/src/gantt/export/export-helper.d.ts +5 -1
  40. package/src/gantt/export/export-helper.js +152 -4
  41. package/src/gantt/export/pdf-base/pdf-grid-table.js +2 -2
  42. package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +8 -0
  43. package/src/gantt/export/pdf-base/treegrid-layouter.js +6 -1
  44. package/src/gantt/export/pdf-connector-line.js +3 -1
  45. package/src/gantt/export/pdf-gantt.js +6 -0
  46. package/src/gantt/export/pdf-taskbar.d.ts +13 -0
  47. package/src/gantt/export/pdf-taskbar.js +39 -5
  48. package/src/gantt/export/pdf-timeline.js +17 -8
  49. package/src/gantt/export/pdf-treegrid.js +3 -0
  50. package/src/gantt/models/task-fields-model.d.ts +7 -0
  51. package/src/gantt/models/task-fields.d.ts +6 -0
  52. package/src/gantt/models/task-fields.js +3 -0
  53. package/src/gantt/renderer/chart-rows.d.ts +1 -1
  54. package/src/gantt/renderer/chart-rows.js +39 -20
  55. package/src/gantt/renderer/connector-line.js +49 -9
  56. package/src/gantt/renderer/edit-tooltip.js +11 -7
  57. package/src/gantt/renderer/timeline.js +19 -9
  58. package/src/gantt/renderer/tooltip.js +37 -33
  59. package/styles/bootstrap-dark.css +44 -100
  60. package/styles/bootstrap.css +44 -100
  61. package/styles/bootstrap4.css +44 -100
  62. package/styles/bootstrap5-dark.css +44 -100
  63. package/styles/bootstrap5.css +44 -100
  64. package/styles/fabric-dark.css +44 -100
  65. package/styles/fabric.css +44 -100
  66. package/styles/fluent-dark.css +44 -100
  67. package/styles/fluent.css +44 -100
  68. package/styles/gantt/_layout.scss +44 -31
  69. package/styles/gantt/_theme.scss +104 -98
  70. package/styles/gantt/bootstrap-dark.css +44 -100
  71. package/styles/gantt/bootstrap-dark.scss +1 -1
  72. package/styles/gantt/bootstrap.css +44 -100
  73. package/styles/gantt/bootstrap.scss +1 -1
  74. package/styles/gantt/bootstrap4.css +44 -100
  75. package/styles/gantt/bootstrap4.scss +1 -1
  76. package/styles/gantt/bootstrap5-dark.css +44 -100
  77. package/styles/gantt/bootstrap5-dark.scss +1 -1
  78. package/styles/gantt/bootstrap5.css +44 -100
  79. package/styles/gantt/bootstrap5.scss +1 -1
  80. package/styles/gantt/fabric-dark.css +44 -100
  81. package/styles/gantt/fabric-dark.scss +1 -1
  82. package/styles/gantt/fabric.css +44 -100
  83. package/styles/gantt/fabric.scss +1 -1
  84. package/styles/gantt/fluent-dark.css +44 -100
  85. package/styles/gantt/fluent-dark.scss +1 -1
  86. package/styles/gantt/fluent.css +44 -100
  87. package/styles/gantt/fluent.scss +1 -1
  88. package/styles/gantt/highcontrast-light.css +40 -100
  89. package/styles/gantt/highcontrast-light.scss +1 -1
  90. package/styles/gantt/highcontrast.css +44 -100
  91. package/styles/gantt/highcontrast.scss +1 -1
  92. package/styles/gantt/icons/_bootstrap-dark.scss +4 -0
  93. package/styles/gantt/icons/_bootstrap.scss +4 -0
  94. package/styles/gantt/icons/_bootstrap4.scss +4 -0
  95. package/styles/gantt/icons/_bootstrap5.scss +4 -0
  96. package/styles/gantt/icons/_fabric-dark.scss +4 -0
  97. package/styles/gantt/icons/_fabric.scss +4 -0
  98. package/styles/gantt/icons/_fluent.scss +4 -0
  99. package/styles/gantt/icons/_fusionnew.scss +4 -0
  100. package/styles/gantt/icons/_highcontrast.scss +4 -0
  101. package/styles/gantt/icons/_material-dark.scss +4 -0
  102. package/styles/gantt/icons/_material.scss +4 -0
  103. package/styles/gantt/icons/_material3.scss +4 -0
  104. package/styles/gantt/icons/_tailwind-dark.scss +4 -0
  105. package/styles/gantt/icons/_tailwind.scss +4 -0
  106. package/styles/gantt/material-dark.css +44 -101
  107. package/styles/gantt/material-dark.scss +1 -1
  108. package/styles/gantt/material.css +44 -101
  109. package/styles/gantt/material.scss +1 -1
  110. package/styles/gantt/material3-dark.css +45 -102
  111. package/styles/gantt/material3-dark.scss +1 -1
  112. package/styles/gantt/material3.css +45 -102
  113. package/styles/gantt/material3.scss +1 -1
  114. package/styles/gantt/tailwind-dark.css +44 -101
  115. package/styles/gantt/tailwind-dark.scss +1 -1
  116. package/styles/gantt/tailwind.css +44 -101
  117. package/styles/gantt/tailwind.scss +1 -1
  118. package/styles/highcontrast-light.css +40 -100
  119. package/styles/highcontrast.css +44 -100
  120. package/styles/material-dark.css +44 -101
  121. package/styles/material.css +44 -101
  122. package/styles/material3-dark.css +45 -102
  123. package/styles/material3-dark.scss +1 -1
  124. package/styles/material3.css +45 -102
  125. package/styles/material3.scss +1 -1
  126. package/styles/tailwind-dark.css +44 -101
  127. package/styles/tailwind.css +44 -101
@@ -287,6 +287,10 @@
287
287
  content: "\e903";
288
288
  }
289
289
 
290
+ .e-icon-rowselect::before {
291
+ content: "\e930";
292
+ }
293
+
290
294
  .e-gantt-tooltip-arrow-left::before {
291
295
  content: "\e85b";
292
296
  }
@@ -339,6 +343,7 @@
339
343
  .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
340
344
  background-color: #ffd939;
341
345
  border-color: #000;
346
+ position: relative;
342
347
  }
343
348
  .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
344
349
  .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
@@ -346,6 +351,17 @@
346
351
  border-color: #000;
347
352
  outline: 2px solid #685708;
348
353
  }
354
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover::after,
355
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover::after {
356
+ content: "";
357
+ position: absolute;
358
+ width: 30px;
359
+ height: 40px;
360
+ top: -10px;
361
+ }
362
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-allow-block {
363
+ cursor: no-drop;
364
+ }
349
365
  .e-bigger .e-gantt .e-tab .e-content {
350
366
  height: 241px !important;
351
367
  }
@@ -389,7 +405,6 @@
389
405
  }
390
406
  .e-bigger .e-gantt-dialog .e-dialog {
391
407
  border-radius: 6px;
392
- width: 554px !important;
393
408
  }
394
409
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
395
410
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -531,10 +546,6 @@
531
546
  border-right: none !important; /* stylelint-disable-line declaration-no-important */
532
547
  border-left-color: #29c400;
533
548
  }
534
- .e-gantt.e-gantt-rtl .e-toolbar-right {
535
- left: auto !important; /* stylelint-disable-line declaration-no-important */
536
- right: 0 !important; /* stylelint-disable-line declaration-no-important */
537
- }
538
549
  .e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
539
550
  border-right: none !important; /* stylelint-disable-line declaration-no-important */
540
551
  border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
@@ -854,6 +865,12 @@
854
865
  vertical-align: middle;
855
866
  z-index: 3;
856
867
  }
868
+ .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
869
+ z-index: 4;
870
+ }
871
+ .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
872
+ z-index: 4;
873
+ }
857
874
  .e-gantt .e-gantt-chart .e-left-label-container.e-left-label-temp-container {
858
875
  -ms-flex-align: center;
859
876
  align-items: center;
@@ -993,72 +1010,61 @@
993
1010
  height: 16px;
994
1011
  width: 16px;
995
1012
  left: 14px;
996
- background: #e1dfdd;
997
1013
  }
998
1014
  .e-gantt .e-gantt-chart .e-innerHTML1 {
999
1015
  height: 16px;
1000
1016
  width: 16px;
1001
1017
  left: 30px;
1002
- background: #e1dfdd;
1003
1018
  }
1004
1019
  .e-gantt .e-gantt-chart .e-innerHTML2 {
1005
1020
  height: 16px;
1006
1021
  width: 16px;
1007
1022
  left: 60px;
1008
- background: #e1dfdd;
1009
1023
  }
1010
1024
  .e-gantt .e-gantt-chart .e-timelineHeader {
1011
1025
  height: 16px;
1012
1026
  width: 82px;
1013
1027
  left: 20px;
1014
- background: #e1dfdd;
1015
1028
  }
1016
1029
  .e-gantt .e-gantt-chart .e-maskcell01 {
1017
1030
  height: 12px;
1018
1031
  width: 88px;
1019
1032
  left: 14px;
1020
1033
  border-radius: 0;
1021
- background: #e1dfdd;
1022
1034
  }
1023
1035
  .e-gantt .e-gantt-chart .e-maskcell02 {
1024
1036
  height: 18px;
1025
1037
  width: 410px;
1026
1038
  border-radius: 0;
1027
- background: #e1dfdd;
1028
1039
  }
1029
1040
  .e-gantt .e-gantt-chart .e-maskcell03 {
1030
1041
  height: 12px;
1031
1042
  width: 88px;
1032
1043
  left: 14px;
1033
1044
  border-radius: 0;
1034
- background: #e1dfdd;
1035
1045
  }
1036
1046
  .e-gantt .e-gantt-chart .e-maskcell04 {
1037
1047
  height: 18px;
1038
1048
  width: 208px;
1039
1049
  border-radius: 0;
1040
- background: #e1dfdd;
1041
1050
  }
1042
1051
  .e-gantt .e-gantt-chart .e-maskcell05 {
1043
1052
  height: 12px;
1044
1053
  width: 108px;
1045
1054
  left: 64px;
1046
1055
  border-radius: 0;
1047
- background: #e1dfdd;
1048
1056
  }
1049
1057
  .e-gantt .e-gantt-chart .e-maskcell06 {
1050
1058
  height: 18px;
1051
1059
  width: 195px;
1052
1060
  left: 192px;
1053
1061
  border-radius: 0;
1054
- background: #e1dfdd;
1055
1062
  }
1056
1063
  .e-gantt .e-gantt-chart .e-maskcell07 {
1057
1064
  height: 18px;
1058
1065
  width: 156px;
1059
1066
  left: 388px;
1060
1067
  border-radius: 0;
1061
- background: #e1dfdd;
1062
1068
  }
1063
1069
  .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
1064
1070
  .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
@@ -1193,7 +1199,7 @@
1193
1199
  border-left: 1px dashed;
1194
1200
  position: absolute;
1195
1201
  width: 1px;
1196
- z-index: 2;
1202
+ z-index: 4;
1197
1203
  }
1198
1204
  .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
1199
1205
  border-radius: 3px;
@@ -1410,10 +1416,6 @@
1410
1416
  width: auto;
1411
1417
  }
1412
1418
 
1413
- .e-icon-rowselect::before {
1414
- content: "\e930";
1415
- }
1416
-
1417
1419
  .e-ganttpopup {
1418
1420
  -moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1419
1421
  -ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
@@ -1472,6 +1474,15 @@
1472
1474
  font-size: 13px;
1473
1475
  }
1474
1476
 
1477
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1478
+ height: 64px !important; /* stylelint-disable-line declaration-no-important */
1479
+ }
1480
+
1481
+ .e-bigger .e-timeline-single-header-cell {
1482
+ height: 64px !important; /* stylelint-disable-line declaration-no-important */
1483
+ line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1484
+ }
1485
+
1475
1486
  .e-gantt-tooltip-label {
1476
1487
  padding-bottom: 2px;
1477
1488
  padding-right: 2px;
@@ -1516,16 +1527,6 @@
1516
1527
  .e-gantt.e-device .e-gridheader .e-icons {
1517
1528
  font-size: 12px;
1518
1529
  }
1519
- .e-gantt.e-device .e-right-resize-gripper,
1520
- .e-gantt.e-device .e-left-resize-gripper {
1521
- border: 7px solid;
1522
- z-index: -1;
1523
- }
1524
- .e-gantt.e-device .e-right-resize-gripper::before,
1525
- .e-gantt.e-device .e-left-resize-gripper::before {
1526
- font-size: 14px;
1527
- margin-left: -7px;
1528
- }
1529
1530
  .e-gantt.e-device .e-dependent-div .e-content {
1530
1531
  height: 100%;
1531
1532
  }
@@ -1589,6 +1590,12 @@
1589
1590
  color: #fff;
1590
1591
  }
1591
1592
 
1593
+ .e-gantt-chart-resize-indicator {
1594
+ height: 100%;
1595
+ position: absolute;
1596
+ z-index: 1;
1597
+ }
1598
+
1592
1599
  /*! Gantt theme */
1593
1600
  .e-gantt .e-gantt-splitter {
1594
1601
  border-color: #969696;
@@ -1945,75 +1952,6 @@
1945
1952
  .e-gantt .e-gantt-chart .e-grid .e-gridpopup .e-spanclicked {
1946
1953
  border-color: #000;
1947
1954
  }
1948
- .e-gantt .e-gantt-chart .e-active-parent-task {
1949
- border-radius: 4px;
1950
- box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.5);
1951
- }
1952
- .e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-taskbar-inner-div {
1953
- background: #1a1a1a;
1954
- border: #1a1a1a;
1955
- }
1956
- .e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-progressbar-inner-div {
1957
- background-color: transparent;
1958
- border: transparent;
1959
- }
1960
- .e-gantt .e-gantt-chart .e-active-parent-task .e-task-label {
1961
- color: transparent;
1962
- }
1963
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
1964
- color: transparent !important; /* stylelint-disable-line declaration-no-important */
1965
- }
1966
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
1967
- border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1968
- }
1969
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
1970
- border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1971
- }
1972
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
1973
- border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1974
- }
1975
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
1976
- background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1977
- border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1978
- }
1979
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
1980
- background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1981
- border: transparent !important; /* stylelint-disable-line declaration-no-important */
1982
- }
1983
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
1984
- background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1985
- }
1986
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1987
- background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1988
- border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1989
- }
1990
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
1991
- background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1992
- border: transparent !important; /* stylelint-disable-line declaration-no-important */
1993
- }
1994
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
1995
- background: #3e047d !important; /* stylelint-disable-line declaration-no-important */
1996
- border: #3e047d !important; /* stylelint-disable-line declaration-no-important */
1997
- }
1998
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
1999
- background-color: #3e047d !important; /* stylelint-disable-line declaration-no-important */
2000
- }
2001
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
2002
- background: #a662fb !important; /* stylelint-disable-line declaration-no-important */
2003
- border: #a662fb !important; /* stylelint-disable-line declaration-no-important */
2004
- }
2005
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
2006
- background-color: #a662fb !important; /* stylelint-disable-line declaration-no-important */
2007
- }
2008
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
2009
- border-color: #3e047d !important; /* stylelint-disable-line declaration-no-important */
2010
- }
2011
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
2012
- border-left-color: #3e047d !important; /* stylelint-disable-line declaration-no-important */
2013
- }
2014
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
2015
- border-right-color: #3e047d !important; /* stylelint-disable-line declaration-no-important */
2016
- }
2017
1955
  .e-gantt .e-icons {
2018
1956
  color: #fff;
2019
1957
  }
@@ -2123,4 +2061,10 @@
2123
2061
 
2124
2062
  .e-gantt .e-gantt-chart .e-critical-milestone {
2125
2063
  background-color: #D13438;
2064
+ }
2065
+
2066
+ .e-gantt-chart-resize-indicator {
2067
+ border: 1px dashed #6e06f1;
2068
+ border-bottom: none;
2069
+ border-top: none;
2126
2070
  }
@@ -1,4 +1,4 @@
1
- @import 'ej2-base/styles/highcontrast-definition.scss';
1
+ @import 'ej2-base/styles/definition/highcontrast.scss';
2
2
  @import 'ej2-grids/styles/grid/highcontrast-definition.scss';
3
3
  @import 'ej2-treegrid/styles/treegrid/highcontrast-definition.scss';
4
4
  @import 'ej2-richtexteditor/styles/rich-text-editor/highcontrast-definition.scss';
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e930';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e85b';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e930';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e85b';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e7cc';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e7c1';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e7d4';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e773';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e930';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e85b';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e930';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e85b';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e7d4';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e773';
119
123
  }
@@ -110,6 +110,10 @@
110
110
  }
111
111
  }
112
112
 
113
+ .e-icon-rowselect::before {
114
+ content: '\e7d4';
115
+ }
116
+
113
117
  .e-gantt-tooltip-arrow-left::before {
114
118
  content: '\e773';
115
119
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e930';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e85b';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e930';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e977';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e930';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e977';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e7d4';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e773';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e7d4';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e773';
119
123
  }
@@ -114,6 +114,10 @@
114
114
  }
115
115
  }
116
116
 
117
+ .e-icon-rowselect::before {
118
+ content: '\e7d4';
119
+ }
120
+
117
121
  .e-gantt-tooltip-arrow-left::before {
118
122
  content: '\e773';
119
123
  }