@syncfusion/ej2-vue-gantt 20.4.54 → 21.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 (61) hide show
  1. package/CHANGELOG.md +186 -0
  2. package/dist/ej2-vue-gantt.umd.min.js +2 -2
  3. package/dist/ej2-vue-gantt.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-vue-gantt.es2015.js +462 -685
  5. package/dist/es6/ej2-vue-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-vue-gantt.es5.js +507 -807
  7. package/dist/es6/ej2-vue-gantt.es5.js.map +1 -1
  8. package/dist/global/ej2-vue-gantt.min.js +2 -2
  9. package/package.json +11 -10
  10. package/src/gantt/adddialogfields.directive.d.ts +2 -12
  11. package/src/gantt/adddialogfields.directive.js +22 -71
  12. package/src/gantt/columns.directive.d.ts +2 -12
  13. package/src/gantt/columns.directive.js +22 -71
  14. package/src/gantt/dayworkingtime.directive.d.ts +2 -12
  15. package/src/gantt/dayworkingtime.directive.js +22 -71
  16. package/src/gantt/editdialogfields.directive.d.ts +2 -12
  17. package/src/gantt/editdialogfields.directive.js +22 -71
  18. package/src/gantt/eventmarkers.directive.d.ts +2 -12
  19. package/src/gantt/eventmarkers.directive.js +22 -71
  20. package/src/gantt/gantt.component.d.ts +3 -100
  21. package/src/gantt/gantt.component.js +345 -376
  22. package/src/gantt/holidays.directive.d.ts +2 -12
  23. package/src/gantt/holidays.directive.js +22 -71
  24. package/styles/bootstrap-dark.css +63 -56
  25. package/styles/bootstrap.css +63 -58
  26. package/styles/bootstrap4.css +60 -55
  27. package/styles/bootstrap5-dark.css +60 -55
  28. package/styles/bootstrap5.css +60 -55
  29. package/styles/fabric-dark.css +58 -53
  30. package/styles/fabric.css +58 -53
  31. package/styles/fluent-dark.css +84 -76
  32. package/styles/fluent.css +84 -76
  33. package/styles/gantt/bootstrap-dark.css +63 -56
  34. package/styles/gantt/bootstrap.css +63 -58
  35. package/styles/gantt/bootstrap4.css +60 -55
  36. package/styles/gantt/bootstrap5-dark.css +60 -55
  37. package/styles/gantt/bootstrap5.css +60 -55
  38. package/styles/gantt/fabric-dark.css +58 -53
  39. package/styles/gantt/fabric.css +58 -53
  40. package/styles/gantt/fluent-dark.css +84 -76
  41. package/styles/gantt/fluent.css +84 -76
  42. package/styles/gantt/highcontrast-light.css +58 -55
  43. package/styles/gantt/highcontrast.css +58 -53
  44. package/styles/gantt/material-dark.css +61 -60
  45. package/styles/gantt/material.css +58 -53
  46. package/styles/gantt/material3-dark.css +2193 -0
  47. package/styles/gantt/material3-dark.scss +2 -0
  48. package/styles/gantt/material3.css +2249 -0
  49. package/styles/gantt/material3.scss +2 -0
  50. package/styles/gantt/tailwind-dark.css +58 -53
  51. package/styles/gantt/tailwind.css +58 -53
  52. package/styles/highcontrast-light.css +58 -55
  53. package/styles/highcontrast.css +58 -53
  54. package/styles/material-dark.css +61 -60
  55. package/styles/material.css +58 -53
  56. package/styles/material3-dark.css +2193 -0
  57. package/styles/material3-dark.scss +2 -0
  58. package/styles/material3.css +2249 -0
  59. package/styles/material3.scss +2 -0
  60. package/styles/tailwind-dark.css +58 -53
  61. package/styles/tailwind.css +58 -53
@@ -1,10 +1,4 @@
1
- declare let vueImport: any;
2
- export declare class HolidaysDirective extends vueImport {
3
- constructor();
4
- render(createElement: any): void;
5
- updated(): void;
6
- getTag(): string;
7
- }
1
+ export declare let HolidaysDirective: any;
8
2
  export declare const HolidaysPlugin: {
9
3
  name: string;
10
4
  install(Vue: any): void;
@@ -21,12 +15,8 @@ export declare const HolidaysPlugin: {
21
15
  * </ejs-gantt>
22
16
  * ```
23
17
  */
24
- export declare class HolidayDirective extends vueImport {
25
- render(): void;
26
- getTag(): string;
27
- }
18
+ export declare let HolidayDirective: any;
28
19
  export declare const HolidayPlugin: {
29
20
  name: string;
30
21
  install(Vue: any): void;
31
22
  };
32
- export {};
@@ -1,40 +1,8 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
20
- import { EJComponentDecorator, allVue, gh, isExecute } from '@syncfusion/ej2-vue-base';
21
- import * as Vue3 from 'vue-class-component';
1
+ import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
22
2
  import { isNullOrUndefined } from '@syncfusion/ej2-base';
23
- import Vue from 'vue';
24
- import { Options } from 'vue-class-component';
25
- var vueImport;
26
- if (!isExecute || parseInt(allVue.version) < 3) {
27
- vueImport = Vue3.Vue;
28
- }
29
- else {
30
- vueImport = Vue;
31
- }
32
- var HolidaysDirective = /** @class */ (function (_super) {
33
- __extends(HolidaysDirective, _super);
34
- function HolidaysDirective() {
35
- return _super.call(this, arguments) || this;
36
- }
37
- HolidaysDirective.prototype.render = function (createElement) {
3
+ export var HolidaysDirective = vueDefineComponent({
4
+ inject: { custom: { default: null } },
5
+ render: function (createElement) {
38
6
  if (!isExecute) {
39
7
  var h = !isExecute ? gh : createElement;
40
8
  var slots = null;
@@ -44,28 +12,18 @@ var HolidaysDirective = /** @class */ (function (_super) {
44
12
  return h('div', { class: 'e-directive' }, slots);
45
13
  }
46
14
  return;
47
- };
48
- HolidaysDirective.prototype.updated = function () {
15
+ },
16
+ updated: function () {
49
17
  if (!isExecute && this.custom) {
50
18
  this.custom();
51
19
  }
52
- };
53
- HolidaysDirective.prototype.getTag = function () {
54
- return 'e-holidays';
55
- };
56
- HolidaysDirective = __decorate([
57
- EJComponentDecorator({}, isExecute)
58
- ,Options({
59
- inject: {
60
- custom: {
61
- default: null
62
- }
63
- }
64
- })
65
- ], HolidaysDirective);
66
- return HolidaysDirective;
67
- }(vueImport));
68
- export { HolidaysDirective };
20
+ },
21
+ methods: {
22
+ getTag: function () {
23
+ return 'e-holidays';
24
+ }
25
+ }
26
+ });
69
27
  export var HolidaysPlugin = {
70
28
  name: 'e-holidays',
71
29
  install: function (Vue) {
@@ -84,23 +42,16 @@ export var HolidaysPlugin = {
84
42
  * </ejs-gantt>
85
43
  * ```
86
44
  */
87
- var HolidayDirective = /** @class */ (function (_super) {
88
- __extends(HolidayDirective, _super);
89
- function HolidayDirective() {
90
- return _super !== null && _super.apply(this, arguments) || this;
91
- }
92
- HolidayDirective.prototype.render = function () {
45
+ export var HolidayDirective = vueDefineComponent({
46
+ render: function () {
93
47
  return;
94
- };
95
- HolidayDirective.prototype.getTag = function () {
96
- return 'e-holidays';
97
- };
98
- HolidayDirective = __decorate([
99
- EJComponentDecorator({}, isExecute)
100
- ], HolidayDirective);
101
- return HolidayDirective;
102
- }(vueImport));
103
- export { HolidayDirective };
48
+ },
49
+ methods: {
50
+ getTag: function () {
51
+ return 'e-holidays';
52
+ }
53
+ }
54
+ });
104
55
  export var HolidayPlugin = {
105
56
  name: 'e-holidays',
106
57
  install: function (Vue) {
@@ -312,6 +312,12 @@
312
312
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
313
313
  height: 63px !important; /* stylelint-disable-line declaration-no-important */
314
314
  }
315
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
316
+ padding-left: 12px;
317
+ }
318
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
319
+ display: block;
320
+ }
315
321
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
316
322
  padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
317
323
  }
@@ -331,9 +337,6 @@
331
337
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
332
338
  line-height: 28px;
333
339
  }
334
- .e-bigger .e-gantt .e-filter-popup.e-popup {
335
- width: 350px !important;
336
- }
337
340
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
338
341
  padding: 16px 0 0 !important;
339
342
  }
@@ -341,7 +344,7 @@
341
344
  border-radius: 6px !important;
342
345
  padding: 32px 16px 16px !important;
343
346
  }
344
- .e-bigger .e-grid .e-columnmenu {
347
+ .e-bigger .e-gantt .e-grid .e-columnmenu {
345
348
  top: 40px;
346
349
  }
347
350
  .e-bigger .e-gantt-dialog .e-dialog {
@@ -380,6 +383,7 @@
380
383
  border-radius: 50%;
381
384
  height: auto !important; /* stylelint-disable-line declaration-no-important */
382
385
  width: auto;
386
+ box-shadow: none;
383
387
  }
384
388
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
385
389
  margin-left: 5px !important;
@@ -671,6 +675,9 @@
671
675
  line-height: 10px;
672
676
  vertical-align: middle;
673
677
  }
678
+ .e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
679
+ pointer-events: none;
680
+ }
674
681
  .e-gantt .e-gantt-chart {
675
682
  height: 100%;
676
683
  overflow: hidden;
@@ -1361,6 +1368,7 @@
1361
1368
  border-radius: 50%;
1362
1369
  height: auto !important; /* stylelint-disable-line declaration-no-important */
1363
1370
  width: auto;
1371
+ box-shadow: none;
1364
1372
  }
1365
1373
 
1366
1374
  .e-icon-rowselect::before {
@@ -1546,6 +1554,9 @@
1546
1554
  border-color: #484848;
1547
1555
  border-radius: 4px;
1548
1556
  }
1557
+ .e-gantt .e-grid .e-spinner-pane {
1558
+ display: none;
1559
+ }
1549
1560
  .e-gantt .e-cloneproperties.e-draganddrop {
1550
1561
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
1551
1562
  opacity: 0.95;
@@ -1590,6 +1601,9 @@
1590
1601
  background: #484848;
1591
1602
  opacity: 1;
1592
1603
  }
1604
+ .e-gantt .e-taskbar-resize-div {
1605
+ border-color: #0070f0;
1606
+ }
1593
1607
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1594
1608
  background: #1a1a1a;
1595
1609
  border-bottom-color: #484848;
@@ -1637,7 +1651,7 @@
1637
1651
  outline-color: #248aff;
1638
1652
  }
1639
1653
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1640
- background-color: #248aff;
1654
+ background: #248aff;
1641
1655
  outline: 1px solid #0070f0;
1642
1656
  border-radius: 4px;
1643
1657
  }
@@ -1665,16 +1679,16 @@
1665
1679
  }
1666
1680
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1667
1681
  background-color: #4cc7ba;
1668
- border: 1px solid #4cc7ba;
1682
+ border: 0px solid #4cc7ba;
1669
1683
  border-radius: 4px;
1670
1684
  }
1671
1685
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1672
1686
  background-color: #0070f0;
1673
- border: 1px solid #0070f0;
1674
- border-radius: 4px;
1687
+ border: 0px solid #0070f0;
1688
+ border-radius: 3px;
1675
1689
  }
1676
1690
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1677
- background-color: #8dd1c4;
1691
+ background: #8dd1c4;
1678
1692
  outline: #4fb29f;
1679
1693
  }
1680
1694
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
@@ -1682,7 +1696,7 @@
1682
1696
  }
1683
1697
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1684
1698
  background-color: #67c1b2;
1685
- border: #4fb29f;
1699
+ outline: #4fb29f;
1686
1700
  }
1687
1701
  .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1688
1702
  background-color: #67c1b2;
@@ -1742,6 +1756,18 @@
1742
1756
  .e-gantt .e-gantt-chart .e-line {
1743
1757
  border-color: #0070f0;
1744
1758
  }
1759
+ .e-gantt .e-gantt-chart .e-connector-line {
1760
+ stroke: #0070f0;
1761
+ }
1762
+ .e-gantt .e-gantt-chart .e-critical-line {
1763
+ stroke: #d13438;
1764
+ }
1765
+ .e-gantt .e-gantt-chart .e-connector-line-arrow {
1766
+ fill: #0070f0;
1767
+ }
1768
+ .e-gantt .e-gantt-chart .e-critical-line-arrow {
1769
+ fill: #d13438;
1770
+ }
1745
1771
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1746
1772
  border-left-color: #0070f0;
1747
1773
  }
@@ -1793,7 +1819,10 @@
1793
1819
  padding-right: 25px;
1794
1820
  }
1795
1821
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1796
- margin-left: 2px;
1822
+ margin-left: 3px;
1823
+ }
1824
+ .e-gantt .e-gantt-chart .e-connectorpoint-left {
1825
+ margin-right: 3px;
1797
1826
  }
1798
1827
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1799
1828
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
@@ -1827,23 +1856,16 @@
1827
1856
  .e-gantt .e-gantt-chart .e-icon {
1828
1857
  color: #fff;
1829
1858
  }
1830
- .e-gantt .e-gantt-chart .e-milestone-top {
1831
- border-bottom-color: #dadada;
1832
- }
1833
- .e-gantt .e-gantt-chart .e-milestone-bottom {
1834
- border-top-color: #dadada;
1835
- }
1836
- .e-gantt .e-gantt-chart .e-parent-milestone-top {
1837
- border-bottom-color: #4cc7ba;
1838
- }
1839
- .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
1840
- border-top-color: #4cc7ba;
1859
+ .e-gantt .e-gantt-chart .e-gantt-milestone {
1860
+ background-color: #dadada;
1861
+ border-color: #0070f0;
1841
1862
  }
1842
- .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
1843
- border-bottom-color: #989A9C;
1863
+ .e-gantt .e-gantt-chart .e-gantt-parent-milestone {
1864
+ background-color: #4cc7ba;
1844
1865
  }
1845
- .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
1846
- border-top-color: #989A9C;
1866
+ .e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
1867
+ background-color: #989A9C;
1868
+ border-color: #0070f0;
1847
1869
  }
1848
1870
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
1849
1871
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
@@ -1863,11 +1885,8 @@
1863
1885
  .e-gantt .e-gantt-chart .e-baseline-bar {
1864
1886
  background-color: #fac168;
1865
1887
  }
1866
- .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1867
- border-bottom-color: #fac168;
1868
- }
1869
- .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1870
- border-top-color: #fac168;
1888
+ .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
1889
+ background-color: #fac168;
1871
1890
  }
1872
1891
  .e-gantt .e-gantt-chart .e-uptail::before {
1873
1892
  border-bottom-color: #e0e0e0;
@@ -1921,11 +1940,8 @@
1921
1940
  background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1922
1941
  border: transparent !important; /* stylelint-disable-line declaration-no-important */
1923
1942
  }
1924
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1925
- border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1926
- }
1927
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1928
- border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1943
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
1944
+ background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1929
1945
  }
1930
1946
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1931
1947
  background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
@@ -1939,21 +1955,15 @@
1939
1955
  background: #0070f0 !important; /* stylelint-disable-line declaration-no-important */
1940
1956
  border: #0070f0 !important; /* stylelint-disable-line declaration-no-important */
1941
1957
  }
1942
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
1943
- border-bottom-color: #0070f0 !important; /* stylelint-disable-line declaration-no-important */
1944
- }
1945
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
1946
- border-top-color: #0070f0 !important; /* stylelint-disable-line declaration-no-important */
1958
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
1959
+ background-color: #0070f0 !important; /* stylelint-disable-line declaration-no-important */
1947
1960
  }
1948
1961
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
1949
1962
  background: #57a5ff !important; /* stylelint-disable-line declaration-no-important */
1950
1963
  border: #57a5ff !important; /* stylelint-disable-line declaration-no-important */
1951
1964
  }
1952
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
1953
- border-bottom-color: #57a5ff !important; /* stylelint-disable-line declaration-no-important */
1954
- }
1955
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
1956
- border-top-color: #57a5ff !important; /* stylelint-disable-line declaration-no-important */
1965
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
1966
+ background-color: #57a5ff !important; /* stylelint-disable-line declaration-no-important */
1957
1967
  }
1958
1968
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
1959
1969
  border-color: #0070f0 !important; /* stylelint-disable-line declaration-no-important */
@@ -2053,15 +2063,16 @@
2053
2063
  }
2054
2064
 
2055
2065
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2056
- background-color: #F3D8DA;
2057
- border: 1px solid #F3D8DA;
2066
+ background: #F3D8DA;
2067
+ outline: 1px solid #F3D8DA;
2058
2068
  border-radius: 4px;
2059
2069
  }
2060
2070
 
2061
2071
  .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2062
2072
  background-color: #D13438;
2063
- border: 1px solid #0070f0;
2064
- border-radius: 4px;
2073
+ border: 0px solid #0070f0;
2074
+ position: absolute;
2075
+ border-radius: 3px;
2065
2076
  }
2066
2077
 
2067
2078
  .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
@@ -2071,10 +2082,6 @@
2071
2082
  border-radius: 4px;
2072
2083
  }
2073
2084
 
2074
- .e-gantt .e-gantt-chart .e-critical-milestone-top {
2075
- border-bottom-color: #D13438;
2076
- }
2077
-
2078
- .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2079
- border-top-color: #D13438;
2085
+ .e-gantt .e-gantt-chart .e-critical-milestone {
2086
+ background-color: #D13438;
2080
2087
  }
@@ -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,
@@ -456,6 +456,12 @@
456
456
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
457
457
  height: 63px !important; /* stylelint-disable-line declaration-no-important */
458
458
  }
459
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
460
+ padding-left: 12px;
461
+ }
462
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
463
+ display: block;
464
+ }
459
465
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
460
466
  padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
461
467
  }
@@ -475,9 +481,6 @@
475
481
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
476
482
  line-height: 28px;
477
483
  }
478
- .e-bigger .e-gantt .e-filter-popup.e-popup {
479
- width: 350px !important;
480
- }
481
484
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
482
485
  padding: 16px 0 0 !important;
483
486
  }
@@ -485,7 +488,7 @@
485
488
  border-radius: 6px !important;
486
489
  padding: 32px 16px 16px !important;
487
490
  }
488
- .e-bigger .e-grid .e-columnmenu {
491
+ .e-bigger .e-gantt .e-grid .e-columnmenu {
489
492
  top: 40px;
490
493
  }
491
494
  .e-bigger .e-gantt-dialog .e-dialog {
@@ -815,6 +818,9 @@
815
818
  line-height: 10px;
816
819
  vertical-align: middle;
817
820
  }
821
+ .e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
822
+ pointer-events: none;
823
+ }
818
824
  .e-gantt .e-gantt-chart {
819
825
  height: 100%;
820
826
  overflow: hidden;
@@ -1690,6 +1696,9 @@
1690
1696
  border-color: #ddd;
1691
1697
  border-radius: 4px;
1692
1698
  }
1699
+ .e-gantt .e-grid .e-spinner-pane {
1700
+ display: none;
1701
+ }
1693
1702
  .e-gantt .e-cloneproperties.e-draganddrop {
1694
1703
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1695
1704
  opacity: 0.95;
@@ -1734,6 +1743,9 @@
1734
1743
  background: #c6ddf0;
1735
1744
  opacity: 1;
1736
1745
  }
1746
+ .e-gantt .e-taskbar-resize-div {
1747
+ border-color: #317ab9;
1748
+ }
1737
1749
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1738
1750
  background: #fff;
1739
1751
  border-bottom-color: #ddd;
@@ -1781,7 +1793,7 @@
1781
1793
  outline-color: #66afe9;
1782
1794
  }
1783
1795
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1784
- background-color: #317ab9;
1796
+ background: #317ab9;
1785
1797
  outline: 1px solid #21527d;
1786
1798
  border-radius: 4px;
1787
1799
  }
@@ -1809,16 +1821,16 @@
1809
1821
  }
1810
1822
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1811
1823
  background-color: #555;
1812
- border: 1px solid #555;
1824
+ border: 0px solid #555;
1813
1825
  border-radius: 4px;
1814
1826
  }
1815
1827
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1816
1828
  background-color: #21527d;
1817
- border: 1px solid #21527d;
1818
- border-radius: 4px;
1829
+ border: 0px solid #21527d;
1830
+ border-radius: 3px;
1819
1831
  }
1820
1832
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1821
- background-color: #7538C9;
1833
+ background: #7538C9;
1822
1834
  outline: 1px solid #572A96;
1823
1835
  }
1824
1836
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
@@ -1826,7 +1838,7 @@
1826
1838
  }
1827
1839
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1828
1840
  background-color: #572A96;
1829
- border: 0px;
1841
+ outline: 0px;
1830
1842
  }
1831
1843
  .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1832
1844
  background-color: #572A96;
@@ -1886,6 +1898,18 @@
1886
1898
  .e-gantt .e-gantt-chart .e-line {
1887
1899
  border-color: #21527d;
1888
1900
  }
1901
+ .e-gantt .e-gantt-chart .e-connector-line {
1902
+ stroke: #21527d;
1903
+ }
1904
+ .e-gantt .e-gantt-chart .e-critical-line {
1905
+ stroke: #d13438;
1906
+ }
1907
+ .e-gantt .e-gantt-chart .e-connector-line-arrow {
1908
+ fill: #21527d;
1909
+ }
1910
+ .e-gantt .e-gantt-chart .e-critical-line-arrow {
1911
+ fill: #d13438;
1912
+ }
1889
1913
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1890
1914
  border-left-color: #21527d;
1891
1915
  }
@@ -1937,7 +1961,10 @@
1937
1961
  padding-right: 25px;
1938
1962
  }
1939
1963
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1940
- margin-left: 2px;
1964
+ margin-left: 3px;
1965
+ }
1966
+ .e-gantt .e-gantt-chart .e-connectorpoint-left {
1967
+ margin-right: 3px;
1941
1968
  }
1942
1969
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1943
1970
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
@@ -1971,23 +1998,16 @@
1971
1998
  .e-gantt .e-gantt-chart .e-icon {
1972
1999
  color: #fff;
1973
2000
  }
1974
- .e-gantt .e-gantt-chart .e-milestone-top {
1975
- border-bottom-color: #555;
1976
- }
1977
- .e-gantt .e-gantt-chart .e-milestone-bottom {
1978
- border-top-color: #555;
1979
- }
1980
- .e-gantt .e-gantt-chart .e-parent-milestone-top {
1981
- border-bottom-color: #555;
1982
- }
1983
- .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
1984
- border-top-color: #555;
2001
+ .e-gantt .e-gantt-chart .e-gantt-milestone {
2002
+ background-color: #555;
2003
+ border-color: #21527d;
1985
2004
  }
1986
- .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
1987
- border-bottom-color: #989A9C;
2005
+ .e-gantt .e-gantt-chart .e-gantt-parent-milestone {
2006
+ background-color: #555;
1988
2007
  }
1989
- .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
1990
- border-top-color: #989A9C;
2008
+ .e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
2009
+ background-color: #989A9C;
2010
+ border-color: #21527d;
1991
2011
  }
1992
2012
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
1993
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%);
@@ -2007,11 +2027,8 @@
2007
2027
  .e-gantt .e-gantt-chart .e-baseline-bar {
2008
2028
  background-color: #f0ad4e;
2009
2029
  }
2010
- .e-gantt .e-gantt-chart .e-baseline-milestone-top {
2011
- border-bottom-color: #f0ad4e;
2012
- }
2013
- .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
2014
- border-top-color: #f0ad4e;
2030
+ .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
2031
+ background-color: #f0ad4e;
2015
2032
  }
2016
2033
  .e-gantt .e-gantt-chart .e-uptail::before {
2017
2034
  border-bottom-color: #e0e0e0;
@@ -2065,11 +2082,8 @@
2065
2082
  background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
2066
2083
  border: transparent !important; /* stylelint-disable-line declaration-no-important */
2067
2084
  }
2068
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
2069
- border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2070
- }
2071
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
2072
- 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 */
2073
2087
  }
2074
2088
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
2075
2089
  background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
@@ -2083,21 +2097,15 @@
2083
2097
  background: #21527d !important; /* stylelint-disable-line declaration-no-important */
2084
2098
  border: #21527d !important; /* stylelint-disable-line declaration-no-important */
2085
2099
  }
2086
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
2087
- border-bottom-color: #21527d !important; /* stylelint-disable-line declaration-no-important */
2088
- }
2089
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
2090
- 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 */
2091
2102
  }
2092
2103
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
2093
2104
  background: #75acdb !important; /* stylelint-disable-line declaration-no-important */
2094
2105
  border: #75acdb !important; /* stylelint-disable-line declaration-no-important */
2095
2106
  }
2096
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
2097
- border-bottom-color: #75acdb !important; /* stylelint-disable-line declaration-no-important */
2098
- }
2099
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
2100
- 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 */
2101
2109
  }
2102
2110
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
2103
2111
  border-color: #21527d !important; /* stylelint-disable-line declaration-no-important */
@@ -2197,15 +2205,16 @@
2197
2205
  }
2198
2206
 
2199
2207
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2200
- background-color: #F3D8DA;
2201
- border: 1px solid #F3D8DA;
2208
+ background: #F3D8DA;
2209
+ outline: 1px solid #F3D8DA;
2202
2210
  border-radius: 4px;
2203
2211
  }
2204
2212
 
2205
2213
  .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2206
2214
  background-color: #D13438;
2207
- border: 1px solid #21527d;
2208
- border-radius: 4px;
2215
+ border: 0px solid #21527d;
2216
+ position: absolute;
2217
+ border-radius: 3px;
2209
2218
  }
2210
2219
 
2211
2220
  .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
@@ -2215,10 +2224,6 @@
2215
2224
  border-radius: 4px;
2216
2225
  }
2217
2226
 
2218
- .e-gantt .e-gantt-chart .e-critical-milestone-top {
2219
- border-bottom-color: #D13438;
2220
- }
2221
-
2222
- .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2223
- border-top-color: #D13438;
2227
+ .e-gantt .e-gantt-chart .e-critical-milestone {
2228
+ background-color: #D13438;
2224
2229
  }