@syncfusion/ej2-gantt 20.1.56 → 20.1.60

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 (76) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist/ej2-gantt.umd.min.js +2 -2
  3. package/dist/ej2-gantt.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-gantt.es2015.js +31 -18
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +31 -18
  7. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  8. package/dist/global/ej2-gantt.min.js +2 -2
  9. package/dist/global/ej2-gantt.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +15 -15
  12. package/src/gantt/actions/dialog-edit.js +1 -1
  13. package/src/gantt/actions/edit.js +5 -1
  14. package/src/gantt/actions/taskbar-edit.js +1 -3
  15. package/src/gantt/actions/toolbar.js +2 -0
  16. package/src/gantt/base/gantt-chart.js +6 -1
  17. package/src/gantt/base/gantt.js +2 -5
  18. package/src/gantt/base/task-processor.js +7 -3
  19. package/src/gantt/export/export-helper.js +3 -3
  20. package/src/gantt/renderer/connector-line.js +1 -1
  21. package/src/gantt/renderer/timeline.js +3 -0
  22. package/styles/bootstrap-dark.css +217 -11
  23. package/styles/bootstrap.css +218 -13
  24. package/styles/bootstrap4.css +220 -11
  25. package/styles/bootstrap5-dark.css +218 -13
  26. package/styles/bootstrap5.css +218 -13
  27. package/styles/fabric-dark.css +216 -10
  28. package/styles/fabric.css +217 -11
  29. package/styles/fluent-dark.css +217 -11
  30. package/styles/fluent.css +217 -11
  31. package/styles/gantt/_bootstrap-dark-definition.scss +41 -4
  32. package/styles/gantt/_bootstrap-definition.scss +41 -4
  33. package/styles/gantt/_bootstrap4-definition.scss +42 -4
  34. package/styles/gantt/_bootstrap5-definition.scss +41 -4
  35. package/styles/gantt/_fabric-dark-definition.scss +40 -3
  36. package/styles/gantt/_fabric-definition.scss +41 -4
  37. package/styles/gantt/_fluent-definition.scss +41 -4
  38. package/styles/gantt/_highcontrast-definition.scss +41 -4
  39. package/styles/gantt/_highcontrast-light-definition.scss +41 -4
  40. package/styles/gantt/_layout.scss +298 -7
  41. package/styles/gantt/_material-dark-definition.scss +42 -4
  42. package/styles/gantt/_material-definition.scss +42 -4
  43. package/styles/gantt/_tailwind-definition.scss +42 -4
  44. package/styles/gantt/bootstrap-dark.css +217 -11
  45. package/styles/gantt/bootstrap.css +218 -13
  46. package/styles/gantt/bootstrap4.css +220 -11
  47. package/styles/gantt/bootstrap5-dark.css +218 -13
  48. package/styles/gantt/bootstrap5.css +218 -13
  49. package/styles/gantt/fabric-dark.css +216 -10
  50. package/styles/gantt/fabric.css +217 -11
  51. package/styles/gantt/fluent-dark.css +217 -11
  52. package/styles/gantt/fluent.css +217 -11
  53. package/styles/gantt/highcontrast-light.css +209 -11
  54. package/styles/gantt/highcontrast.css +217 -11
  55. package/styles/gantt/icons/_bootstrap-dark.scss +8 -0
  56. package/styles/gantt/icons/_bootstrap.scss +8 -0
  57. package/styles/gantt/icons/_bootstrap4.scss +8 -0
  58. package/styles/gantt/icons/_bootstrap5.scss +8 -0
  59. package/styles/gantt/icons/_fabric-dark.scss +8 -0
  60. package/styles/gantt/icons/_fabric.scss +8 -0
  61. package/styles/gantt/icons/_fluent.scss +8 -0
  62. package/styles/gantt/icons/_highcontrast.scss +8 -0
  63. package/styles/gantt/icons/_material-dark.scss +8 -0
  64. package/styles/gantt/icons/_material.scss +8 -0
  65. package/styles/gantt/icons/_tailwind-dark.scss +8 -0
  66. package/styles/gantt/icons/_tailwind.scss +8 -0
  67. package/styles/gantt/material-dark.css +224 -11
  68. package/styles/gantt/material.css +224 -11
  69. package/styles/gantt/tailwind-dark.css +223 -11
  70. package/styles/gantt/tailwind.css +223 -11
  71. package/styles/highcontrast-light.css +209 -11
  72. package/styles/highcontrast.css +217 -11
  73. package/styles/material-dark.css +224 -11
  74. package/styles/material.css +224 -11
  75. package/styles/tailwind-dark.css +223 -11
  76. package/styles/tailwind.css +223 -11
@@ -279,26 +279,228 @@
279
279
  content: "\e903";
280
280
  }
281
281
 
282
+ .e-gantt-tooltip-arrow-left::before {
283
+ content: "\e85b";
284
+ }
285
+
286
+ .e-gantt-tooltip-arrow-right::before {
287
+ content: "\e85f";
288
+ }
289
+
282
290
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
283
291
  height: 64px;
284
292
  }
285
293
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
286
294
  height: 32px;
287
295
  }
296
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
297
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
298
+ padding-left: 10px;
299
+ padding-right: 10px;
300
+ width: 30px;
301
+ }
302
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
303
+ border-radius: 4px !important;
304
+ font-size: 12px !important;
305
+ height: 26px !important;
306
+ padding: 4px 11px 4px 8px !important;
307
+ top: 36px !important;
308
+ }
309
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
310
+ border-bottom: 6px solid transparent;
311
+ border-right: 6px solid transparent;
312
+ border-right-color: #FFF;
313
+ border-top: 6px solid transparent;
314
+ top: 43px !important;
315
+ }
316
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
317
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
318
+ content: "\e92c";
319
+ }
320
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
321
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
322
+ .e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
323
+ .e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
324
+ border-radius: 50%;
325
+ display: inline-block;
326
+ position: absolute;
327
+ }
328
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
329
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
330
+ border-style: solid;
331
+ border-width: 1px;
332
+ box-sizing: content-box;
333
+ cursor: pointer;
334
+ display: inline-block;
335
+ }
336
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
337
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
338
+ background-color: #ffd939;
339
+ border-color: #000;
340
+ }
341
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
342
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
343
+ background-color: #ffd939;
344
+ border-color: #000;
345
+ outline: 2px solid #685708;
346
+ }
347
+ .e-bigger .e-gantt .e-tab .e-content {
348
+ height: 241px !important;
349
+ }
288
350
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
289
351
  height: 63px !important;
290
352
  }
353
+ .e-bigger .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
354
+ background-color: #000000;
355
+ border-color: #000000;
356
+ color: #F9FAFB;
357
+ font-size: 12px;
358
+ line-height: 18px;
359
+ padding: 0 8px 0 0;
360
+ }
361
+ .e-bigger .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
362
+ background-color: #000000;
363
+ border-color: #000000;
364
+ color: #F9FAFB;
365
+ font-size: 12px;
366
+ line-height: 18px;
367
+ padding: 0 0 0 8px;
368
+ }
369
+ .e-bigger .e-tooltip-wrap .e-tip-content {
370
+ padding: 3px !important;
371
+ }
372
+ .e-bigger .e-grid .e-flmenu-valuediv {
373
+ padding: 20px 0 0 !important;
374
+ }
375
+ .e-bigger .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
376
+ padding: 0 16px !important;
377
+ }
291
378
  .e-bigger .e-columnmenu {
292
379
  top: 45px;
293
380
  }
381
+ .e-bigger .e-gantt-dialog {
382
+ border-radius: 6px;
383
+ width: 554px !important;
384
+ }
294
385
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
295
- padding: 16px 18px 0 18px;
386
+ padding: 16px 9px 0 18px;
296
387
  }
297
388
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
298
- padding: 16px 18px 0 0;
389
+ padding: 16px 18px 0 9px;
299
390
  }
300
391
  .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
301
- padding: 16px 18px 0 0;
392
+ padding: 16px 18px 0 9px;
393
+ }
394
+ .e-bigger .e-gantt-dialog .e-edit-form-row {
395
+ height: 241px !important;
396
+ }
397
+ .e-bigger .e-gantt-dialog .e-edit-form-column {
398
+ height: 78px !important;
399
+ }
400
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
401
+ border-bottom: 0 !important;
402
+ }
403
+ .e-bigger .e-gantt-dialog > .e-dlg-content {
404
+ border-radius: 0 !important;
405
+ }
406
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
407
+ border-radius: 6px 6px 0px 0px;
408
+ padding-bottom: 4px;
409
+ }
410
+ .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
411
+ border-radius: 50%;
412
+ height: auto !important;
413
+ width: auto !important;
414
+ }
415
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
416
+ margin-left: 6px !important;
417
+ }
418
+ .e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
419
+ font-size: 16px !important;
420
+ }
421
+ .e-bigger .e-float-input.e-control-wrapper {
422
+ width: 250px !important;
423
+ }
424
+ .e-bigger .e-predecessor-tooltip {
425
+ background-color: #000000;
426
+ }
427
+ .e-bigger .e-predecessor-dialog {
428
+ background-color: #1a1a1a;
429
+ }
430
+ .e-bigger .e-predecessor-dialog .e-dlg-content {
431
+ background-color: #1a1a1a;
432
+ padding: 10px 9px 9px 14px !important;
433
+ }
434
+ .e-bigger .e-dialog .e-dlg-header-content {
435
+ padding: 16px 4px 12px 18px !important;
436
+ }
437
+ .e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
438
+ left: 2px !important;
439
+ }
440
+ .e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
441
+ font-size: 12px !important;
442
+ }
443
+ .e-bigger .e-dialog .e-footer-content {
444
+ height: 76px !important;
445
+ padding: 19px 18px 19px 16px !important;
446
+ }
447
+ .e-bigger .e-dialog .e-footer-content .e-btn {
448
+ margin-left: 12px;
449
+ }
450
+ .e-bigger .e-dialog .e-dlg-header {
451
+ line-height: 28px;
452
+ }
453
+ .e-bigger .e-filter-popup {
454
+ width: 307px !important;
455
+ }
456
+ .e-bigger .e-dlg-content {
457
+ border-radius: 0px !important;
458
+ padding: 20px 18px 0px 18px !important;
459
+ }
460
+ .e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
461
+ font-size: 14px;
462
+ line-height: 22px;
463
+ }
464
+ .e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
465
+ font-size: 14px;
466
+ line-height: 22px;
467
+ }
468
+ .e-bigger .e-float-input.e-control-wrapper input {
469
+ height: 38px !important;
470
+ }
471
+ .e-bigger .e-left-btn:disabled {
472
+ color: #757575 !important;
473
+ }
474
+ .e-bigger .e-right-btn:disabled {
475
+ color: #757575 !important;
476
+ }
477
+ .e-bigger .e-input-group-icon.e-date-icon {
478
+ min-width: 36px !important;
479
+ }
480
+ .e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
481
+ min-height: 38px !important;
482
+ min-width: 35.82px !important;
483
+ }
484
+ .e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
485
+ min-height: 38px !important;
486
+ min-width: 35.82px !important;
487
+ }
488
+ .e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
489
+ min-height: 38px !important;
490
+ min-width: 35.82px !important;
491
+ }
492
+ .e-bigger .e-input-group.e-control-wrapper {
493
+ height: 40px;
494
+ }
495
+ .e-bigger .e-datetime-wrapper .e-time-icon.e-icons::before {
496
+ font-size: 16px !important;
497
+ }
498
+ .e-bigger .e-btn.e-flat {
499
+ line-height: 24px;
500
+ padding: 6px 16px 6px 15px !important;
501
+ }
502
+ .e-bigger .e-btn.e-primary {
503
+ padding: 6px 21px 6px 23px !important;
302
504
  }
303
505
 
304
506
  .e-gantt {
@@ -453,9 +655,11 @@
453
655
  position: absolute;
454
656
  }
455
657
  .e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
658
+ height: 100%;
456
659
  position: absolute;
457
660
  }
458
661
  .e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
662
+ height: 100%;
459
663
  position: absolute;
460
664
  }
461
665
  .e-gantt .e-gantt-chart .e-timeline-header-container {
@@ -704,37 +908,35 @@
704
908
  cursor: col-resize;
705
909
  }
706
910
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
707
- border-style: solid;
708
911
  border-width: 1px;
709
912
  box-sizing: content-box;
710
913
  cursor: col-resize;
711
914
  height: 2px;
712
915
  position: absolute;
713
916
  top: 7px;
714
- width: 12px;
715
917
  }
716
918
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
717
919
  border-bottom-style: solid;
718
- border-bottom-width: 6px;
920
+ border-bottom-width: 8px;
719
921
  border-left: 7px solid transparent;
720
922
  border-right: 7px solid transparent;
721
923
  cursor: col-resize;
722
924
  height: 0;
723
- left: -1px;
925
+ left: 0;
724
926
  position: absolute;
725
927
  top: -7px;
726
928
  width: 0;
727
929
  }
728
930
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
729
931
  border-bottom-style: solid;
730
- border-bottom-width: 6px;
932
+ border-bottom-width: 8px;
731
933
  border-left: 6px solid transparent;
732
934
  border-right: 6px solid transparent;
733
935
  cursor: col-resize;
734
936
  height: 0;
735
- left: -1px;
937
+ left: 1px;
736
938
  position: absolute;
737
- top: -6px;
939
+ top: -7px;
738
940
  width: 0;
739
941
  }
740
942
  .e-gantt .e-gantt-chart .e-baseline-bar {
@@ -1161,6 +1363,10 @@
1161
1363
  height: 100%;
1162
1364
  }
1163
1365
 
1366
+ .e-predecessor-tooltip {
1367
+ visibility: hidden;
1368
+ }
1369
+
1164
1370
  /*! Gantt theme */
1165
1371
  .e-gantt .e-gantt-splitter {
1166
1372
  border-color: #969696;
@@ -1378,7 +1584,7 @@
1378
1584
  }
1379
1585
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
1380
1586
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
1381
- background-color: #bfbfbf;
1587
+ background-color: #ffd939;
1382
1588
  border-color: #000;
1383
1589
  }
1384
1590
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
@@ -109,5 +109,13 @@
109
109
  content: '\e903';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e85b';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e85f';
119
+ }
112
120
  }
113
121
 
@@ -109,5 +109,13 @@
109
109
  content: '\e903';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e85b';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e85f';
119
+ }
112
120
  }
113
121
 
@@ -109,5 +109,13 @@
109
109
  content: '\e903';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e7c1';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e7ce';
119
+ }
112
120
  }
113
121
 
@@ -109,4 +109,12 @@
109
109
  content: '\e770';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e773';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e7f9';
119
+ }
112
120
  }
@@ -109,4 +109,12 @@
109
109
  content: '\e903';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e85b';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e85f';
119
+ }
112
120
  }
@@ -109,4 +109,12 @@
109
109
  content: '\e903';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e85b';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e85f';
119
+ }
112
120
  }
@@ -109,4 +109,12 @@
109
109
  content: '\e770';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e773';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e7f9';
119
+ }
112
120
  }
@@ -109,4 +109,12 @@
109
109
  content: '\e903';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e85b';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e85f';
119
+ }
112
120
  }
@@ -109,4 +109,12 @@
109
109
  content: '\e903';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e977';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e85f';
119
+ }
112
120
  }
@@ -109,4 +109,12 @@
109
109
  content: '\e903';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e977';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e85f';
119
+ }
112
120
  }
@@ -109,4 +109,12 @@
109
109
  content: '\e770';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e773';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e7f9';
119
+ }
112
120
  }
@@ -109,4 +109,12 @@
109
109
  content: '\e770';
110
110
  }
111
111
  }
112
+
113
+ .e-gantt-tooltip-arrow-left::before {
114
+ content: '\e773';
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-right::before {
118
+ content: '\e7f9';
119
+ }
112
120
  }