@syncfusion/ej2-angular-gantt 20.2.36-ngcc → 20.2.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 (166) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/gantt/adddialogfields.directive.mjs +58 -0
  3. package/esm2020/src/gantt/columns.directive.mjs +72 -0
  4. package/esm2020/src/gantt/dayworkingtime.directive.mjs +58 -0
  5. package/esm2020/src/gantt/editdialogfields.directive.mjs +58 -0
  6. package/esm2020/src/gantt/eventmarkers.directive.mjs +57 -0
  7. package/esm2020/src/gantt/gantt-all.module.mjs +68 -0
  8. package/esm2020/src/gantt/gantt.component.mjs +248 -0
  9. package/esm2020/src/gantt/gantt.module.mjs +79 -0
  10. package/esm2020/src/gantt/holidays.directive.mjs +58 -0
  11. package/esm2020/src/index.mjs +11 -0
  12. package/esm2020/syncfusion-ej2-angular-gantt.mjs +5 -0
  13. package/fesm2015/syncfusion-ej2-angular-gantt.mjs +724 -0
  14. package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  15. package/fesm2020/syncfusion-ej2-angular-gantt.mjs +724 -0
  16. package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  17. package/package.json +27 -13
  18. package/schematics/utils/lib-details.ts +2 -2
  19. package/src/gantt/adddialogfields.directive.d.ts +5 -0
  20. package/src/gantt/columns.directive.d.ts +5 -0
  21. package/src/gantt/dayworkingtime.directive.d.ts +5 -0
  22. package/src/gantt/editdialogfields.directive.d.ts +5 -0
  23. package/src/gantt/eventmarkers.directive.d.ts +5 -0
  24. package/src/gantt/gantt-all.module.d.ts +6 -1
  25. package/src/gantt/gantt.component.d.ts +3 -0
  26. package/src/gantt/gantt.module.d.ts +12 -0
  27. package/src/gantt/holidays.directive.d.ts +5 -0
  28. package/src/index.d.ts +1 -1
  29. package/styles/bootstrap-dark.css +11 -0
  30. package/styles/bootstrap.css +11 -0
  31. package/styles/bootstrap4.css +11 -0
  32. package/styles/bootstrap5-dark.css +11 -0
  33. package/styles/bootstrap5.css +11 -0
  34. package/styles/fabric-dark.css +11 -0
  35. package/styles/fabric.css +11 -0
  36. package/styles/fluent-dark.css +11 -0
  37. package/styles/fluent.css +11 -0
  38. package/styles/gantt/_all.scss +2 -0
  39. package/styles/gantt/_bootstrap-dark-definition.scss +207 -0
  40. package/styles/gantt/_bootstrap-definition.scss +208 -0
  41. package/styles/gantt/_bootstrap4-definition.scss +210 -0
  42. package/styles/gantt/_bootstrap5-dark-definition.scss +1 -0
  43. package/styles/gantt/_bootstrap5-definition.scss +213 -0
  44. package/styles/gantt/_fabric-dark-definition.scss +208 -0
  45. package/styles/gantt/_fabric-definition.scss +208 -0
  46. package/styles/gantt/_fluent-dark-definition.scss +1 -0
  47. package/styles/gantt/_fluent-definition.scss +213 -0
  48. package/styles/gantt/_fusionnew-definition.scss +212 -0
  49. package/styles/gantt/_highcontrast-definition.scss +208 -0
  50. package/styles/gantt/_highcontrast-light-definition.scss +208 -0
  51. package/styles/gantt/_layout.scss +1378 -0
  52. package/styles/gantt/_material-dark-definition.scss +209 -0
  53. package/styles/gantt/_material-definition.scss +209 -0
  54. package/styles/gantt/_material3-definition.scss +213 -0
  55. package/styles/gantt/_tailwind-dark-definition.scss +1 -0
  56. package/styles/gantt/_tailwind-definition.scss +213 -0
  57. package/styles/gantt/_theme.scss +720 -0
  58. package/styles/gantt/bootstrap-dark.css +11 -0
  59. package/styles/gantt/bootstrap-dark.scss +22 -1
  60. package/styles/gantt/bootstrap.css +11 -0
  61. package/styles/gantt/bootstrap.scss +22 -1
  62. package/styles/gantt/bootstrap4.css +11 -0
  63. package/styles/gantt/bootstrap4.scss +22 -1
  64. package/styles/gantt/bootstrap5-dark.css +11 -0
  65. package/styles/gantt/bootstrap5-dark.scss +22 -1
  66. package/styles/gantt/bootstrap5.css +11 -0
  67. package/styles/gantt/bootstrap5.scss +22 -1
  68. package/styles/gantt/fabric-dark.css +11 -0
  69. package/styles/gantt/fabric-dark.scss +22 -1
  70. package/styles/gantt/fabric.css +11 -0
  71. package/styles/gantt/fabric.scss +22 -1
  72. package/styles/gantt/fluent-dark.css +11 -0
  73. package/styles/gantt/fluent-dark.scss +22 -1
  74. package/styles/gantt/fluent.css +11 -0
  75. package/styles/gantt/fluent.scss +22 -1
  76. package/styles/gantt/highcontrast-light.css +11 -0
  77. package/styles/gantt/highcontrast-light.scss +21 -1
  78. package/styles/gantt/highcontrast.css +11 -0
  79. package/styles/gantt/highcontrast.scss +22 -1
  80. package/styles/gantt/icons/_bootstrap-dark.scss +124 -0
  81. package/styles/gantt/icons/_bootstrap.scss +124 -0
  82. package/styles/gantt/icons/_bootstrap4.scss +124 -0
  83. package/styles/gantt/icons/_bootstrap5-dark.scss +1 -0
  84. package/styles/gantt/icons/_bootstrap5.scss +124 -0
  85. package/styles/gantt/icons/_fabric-dark.scss +124 -0
  86. package/styles/gantt/icons/_fabric.scss +124 -0
  87. package/styles/gantt/icons/_fluent-dark.scss +1 -0
  88. package/styles/gantt/icons/_fluent.scss +124 -0
  89. package/styles/gantt/icons/_fusionnew.scss +120 -0
  90. package/styles/gantt/icons/_highcontrast.scss +124 -0
  91. package/styles/gantt/icons/_material-dark.scss +124 -0
  92. package/styles/gantt/icons/_material.scss +124 -0
  93. package/styles/gantt/icons/_material3.scss +124 -0
  94. package/styles/gantt/icons/_tailwind-dark.scss +124 -0
  95. package/styles/gantt/icons/_tailwind.scss +124 -0
  96. package/styles/gantt/material-dark.css +11 -0
  97. package/styles/gantt/material-dark.scss +22 -1
  98. package/styles/gantt/material.css +11 -0
  99. package/styles/gantt/material.scss +22 -1
  100. package/styles/gantt/tailwind-dark.css +11 -0
  101. package/styles/gantt/tailwind-dark.scss +22 -1
  102. package/styles/gantt/tailwind.css +11 -0
  103. package/styles/gantt/tailwind.scss +22 -1
  104. package/styles/highcontrast-light.css +11 -0
  105. package/styles/highcontrast.css +11 -0
  106. package/styles/material-dark.css +11 -0
  107. package/styles/material.css +11 -0
  108. package/styles/tailwind-dark.css +11 -0
  109. package/styles/tailwind.css +11 -0
  110. package/{ej2-angular-gantt.d.ts → syncfusion-ej2-angular-gantt.d.ts} +1 -1
  111. package/@syncfusion/ej2-angular-gantt.es5.js +0 -812
  112. package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
  113. package/@syncfusion/ej2-angular-gantt.js +0 -764
  114. package/@syncfusion/ej2-angular-gantt.js.map +0 -1
  115. package/CHANGELOG.md +0 -1274
  116. package/dist/ej2-angular-gantt.umd.js +0 -908
  117. package/dist/ej2-angular-gantt.umd.js.map +0 -1
  118. package/dist/ej2-angular-gantt.umd.min.js +0 -11
  119. package/dist/ej2-angular-gantt.umd.min.js.map +0 -1
  120. package/ej2-angular-gantt.metadata.json +0 -1
  121. package/postinstall/tagchange.js +0 -18
  122. package/schematics/collection.json +0 -30
  123. package/schematics/generators/gantt-daymarkers/index.d.ts +0 -3
  124. package/schematics/generators/gantt-daymarkers/index.js +0 -8
  125. package/schematics/generators/gantt-daymarkers/sample-details.d.ts +0 -5
  126. package/schematics/generators/gantt-daymarkers/sample-details.js +0 -7
  127. package/schematics/generators/gantt-daymarkers/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  128. package/schematics/generators/gantt-daymarkers/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
  129. package/schematics/generators/gantt-daymarkers/schema.d.ts +0 -3
  130. package/schematics/generators/gantt-daymarkers/schema.js +0 -2
  131. package/schematics/generators/gantt-daymarkers/schema.json +0 -125
  132. package/schematics/generators/gantt-default/index.d.ts +0 -3
  133. package/schematics/generators/gantt-default/index.js +0 -8
  134. package/schematics/generators/gantt-default/sample-details.d.ts +0 -5
  135. package/schematics/generators/gantt-default/sample-details.js +0 -7
  136. package/schematics/generators/gantt-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
  137. package/schematics/generators/gantt-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  138. package/schematics/generators/gantt-default/schema.d.ts +0 -3
  139. package/schematics/generators/gantt-default/schema.js +0 -2
  140. package/schematics/generators/gantt-default/schema.json +0 -125
  141. package/schematics/generators/gantt-editing/index.d.ts +0 -3
  142. package/schematics/generators/gantt-editing/index.js +0 -8
  143. package/schematics/generators/gantt-editing/sample-details.d.ts +0 -5
  144. package/schematics/generators/gantt-editing/sample-details.js +0 -7
  145. package/schematics/generators/gantt-editing/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  146. package/schematics/generators/gantt-editing/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  147. package/schematics/generators/gantt-editing/schema.d.ts +0 -3
  148. package/schematics/generators/gantt-editing/schema.js +0 -2
  149. package/schematics/generators/gantt-editing/schema.json +0 -125
  150. package/schematics/generators/gantt-localdata/index.d.ts +0 -3
  151. package/schematics/generators/gantt-localdata/index.js +0 -8
  152. package/schematics/generators/gantt-localdata/sample-details.d.ts +0 -5
  153. package/schematics/generators/gantt-localdata/sample-details.js +0 -7
  154. package/schematics/generators/gantt-localdata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  155. package/schematics/generators/gantt-localdata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  156. package/schematics/generators/gantt-localdata/schema.d.ts +0 -3
  157. package/schematics/generators/gantt-localdata/schema.js +0 -2
  158. package/schematics/generators/gantt-localdata/schema.json +0 -125
  159. package/schematics/ng-add/index.d.ts +0 -3
  160. package/schematics/ng-add/index.js +0 -9
  161. package/schematics/ng-add/schema.d.ts +0 -13
  162. package/schematics/ng-add/schema.js +0 -2
  163. package/schematics/ng-add/schema.json +0 -34
  164. package/schematics/tsconfig.json +0 -25
  165. package/schematics/utils/lib-details.d.ts +0 -4
  166. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,124 @@
1
+ @include export-module('gantt-material-icons') {
2
+ #{&}.e-gantt {
3
+ .e-add::before {
4
+ content: '\e7f9';
5
+ }
6
+
7
+ .e-critical-path::before {
8
+ content: '\e93a';
9
+ }
10
+
11
+ .e-edit::before {
12
+ content: '\e81e';
13
+ }
14
+
15
+ .e-delete::before {
16
+ content: '\e84e';
17
+ }
18
+
19
+ .e-cancel::before {
20
+ content: '\e825';
21
+ }
22
+
23
+ .e-save::before {
24
+ content: '\e98e';
25
+ }
26
+
27
+ .e-update::before {
28
+ content: '\e735';
29
+ }
30
+
31
+ .e-search-icon::before {
32
+ content: '\e993';
33
+ }
34
+
35
+ .e-cancel-icon::before {
36
+ content: '\e825';
37
+ }
38
+
39
+ .e-notes-info::before {
40
+ content: '\1F6C8';
41
+ }
42
+
43
+ .e-left-resize-gripper::before,
44
+ .e-right-resize-gripper::before {
45
+ content: '\ec16';
46
+ }
47
+
48
+ .e-expandall::before {
49
+ content: '\e556';
50
+ }
51
+
52
+ .e-collapseall::before {
53
+ content: '\e554';
54
+ }
55
+
56
+ .e-prevtimespan::before {
57
+ content: '\e85b';
58
+ }
59
+
60
+ .e-nexttimespan::before {
61
+ content: '\e85f';
62
+ }
63
+
64
+ .e-zoomin::before {
65
+ content: '\e349';
66
+ }
67
+
68
+ .e-zoomout::before {
69
+ content: '\e351';
70
+ }
71
+
72
+ .e-zoomtofit::before {
73
+ content: '\e657';
74
+ }
75
+
76
+ .e-csvexport::before {
77
+ content: '\e241';
78
+ }
79
+
80
+ .e-excelexport::before {
81
+ content: '\e242';
82
+ }
83
+
84
+ .e-pdfexport::before {
85
+ content: '\e240';
86
+ }
87
+
88
+ .e-indent::before {
89
+ content: '\e33f';
90
+ }
91
+
92
+ .e-outdent::before {
93
+ content: '\e35d';
94
+ }
95
+
96
+ .e-add-above::before {
97
+ content: '\e658';
98
+ }
99
+
100
+ .e-add-below::before {
101
+ content: '\e659';
102
+ }
103
+ }
104
+
105
+ #{&}.e-gantt.e-device {
106
+ .e-backarrowspan::before,
107
+ .e-icon-dlg-close::before {
108
+ content: '\e85b';
109
+ }
110
+
111
+ .e-left-resize-gripper::before,
112
+ .e-right-resize-gripper::before {
113
+ content: '\e903';
114
+ }
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-left::before {
118
+ content: '\e977';
119
+ }
120
+
121
+ .e-gantt-tooltip-arrow-right::before {
122
+ content: '\e85f';
123
+ }
124
+ }
@@ -0,0 +1,124 @@
1
+ @include export-module('gantt-tailwind-icons') {
2
+ #{&}.e-gantt {
3
+ .e-add::before {
4
+ content: '\e805';
5
+ }
6
+
7
+ .e-critical-path::before {
8
+ content: '\e88c';
9
+ }
10
+
11
+ .e-edit::before {
12
+ content: '\e730';
13
+ }
14
+
15
+ .e-delete::before {
16
+ content: '\e820';
17
+ }
18
+
19
+ .e-cancel::before {
20
+ content: '\e7e7';
21
+ }
22
+
23
+ .e-save::before {
24
+ content: '\e7c8';
25
+ }
26
+
27
+ .e-update::before {
28
+ content: '\e7c8';
29
+ }
30
+
31
+ .e-search-icon::before {
32
+ content: '\e754';
33
+ }
34
+
35
+ .e-cancel-icon::before {
36
+ content: '\e7e7';
37
+ }
38
+
39
+ .e-notes-info::before {
40
+ content: '\e72d';
41
+ }
42
+
43
+ .e-left-resize-gripper::before,
44
+ .e-right-resize-gripper::before {
45
+ content: '\e770';
46
+ }
47
+
48
+ .e-expandall::before {
49
+ content: '\e7c9';
50
+ }
51
+
52
+ .e-collapseall::before {
53
+ content: '\e80f';
54
+ }
55
+
56
+ .e-prevtimespan::before {
57
+ content: '\e773';
58
+ }
59
+
60
+ .e-nexttimespan::before {
61
+ content: '\e7f9';
62
+ }
63
+
64
+ .e-zoomin::before {
65
+ content: '\e795';
66
+ }
67
+
68
+ .e-zoomout::before {
69
+ content: '\e825';
70
+ }
71
+
72
+ .e-zoomtofit::before {
73
+ content: '\e838';
74
+ }
75
+
76
+ .e-csvexport::before {
77
+ content: '\e7ba';
78
+ }
79
+
80
+ .e-excelexport::before {
81
+ content: '\e7c1';
82
+ }
83
+
84
+ .e-pdfexport::before {
85
+ content: '\e700';
86
+ }
87
+
88
+ .e-indent::before {
89
+ content: '\e810';
90
+ }
91
+
92
+ .e-outdent::before {
93
+ content: '\e72a';
94
+ }
95
+
96
+ .e-add-above::before {
97
+ content: '\e836';
98
+ }
99
+
100
+ .e-add-below::before {
101
+ content: '\e801';
102
+ }
103
+ }
104
+
105
+ #{&}.e-gantt.e-device {
106
+ .e-backarrowspan::before,
107
+ .e-icon-dlg-close::before {
108
+ content: '\e773';
109
+ }
110
+
111
+ .e-left-resize-gripper::before,
112
+ .e-right-resize-gripper::before {
113
+ content: '\e770';
114
+ }
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-left::before {
118
+ content: '\e773';
119
+ }
120
+
121
+ .e-gantt-tooltip-arrow-right::before {
122
+ content: '\e7f9';
123
+ }
124
+ }
@@ -0,0 +1,124 @@
1
+ @include export-module('gantt-tailwind-icons') {
2
+ #{&}.e-gantt {
3
+ .e-add::before {
4
+ content: '\e805';
5
+ }
6
+
7
+ .e-critical-path::before {
8
+ content: '\e88c';
9
+ }
10
+
11
+ .e-edit::before {
12
+ content: '\e730';
13
+ }
14
+
15
+ .e-delete::before {
16
+ content: '\e820';
17
+ }
18
+
19
+ .e-cancel::before {
20
+ content: '\e7e7';
21
+ }
22
+
23
+ .e-save::before {
24
+ content: '\e7c8';
25
+ }
26
+
27
+ .e-update::before {
28
+ content: '\e7c8';
29
+ }
30
+
31
+ .e-search-icon::before {
32
+ content: '\e754';
33
+ }
34
+
35
+ .e-cancel-icon::before {
36
+ content: '\e7e7';
37
+ }
38
+
39
+ .e-notes-info::before {
40
+ content: '\e72d';
41
+ }
42
+
43
+ .e-left-resize-gripper::before,
44
+ .e-right-resize-gripper::before {
45
+ content: '\e770';
46
+ }
47
+
48
+ .e-expandall::before {
49
+ content: '\e7c9';
50
+ }
51
+
52
+ .e-collapseall::before {
53
+ content: '\e80f';
54
+ }
55
+
56
+ .e-prevtimespan::before {
57
+ content: '\e773';
58
+ }
59
+
60
+ .e-nexttimespan::before {
61
+ content: '\e7f9';
62
+ }
63
+
64
+ .e-zoomin::before {
65
+ content: '\e795';
66
+ }
67
+
68
+ .e-zoomout::before {
69
+ content: '\e825';
70
+ }
71
+
72
+ .e-zoomtofit::before {
73
+ content: '\e838';
74
+ }
75
+
76
+ .e-csvexport::before {
77
+ content: '\e7ba';
78
+ }
79
+
80
+ .e-excelexport::before {
81
+ content: '\e7c1';
82
+ }
83
+
84
+ .e-pdfexport::before {
85
+ content: '\e700';
86
+ }
87
+
88
+ .e-indent::before {
89
+ content: '\e810';
90
+ }
91
+
92
+ .e-outdent::before {
93
+ content: '\e72a';
94
+ }
95
+
96
+ .e-add-above::before {
97
+ content: '\e836';
98
+ }
99
+
100
+ .e-add-below::before {
101
+ content: '\e801';
102
+ }
103
+ }
104
+
105
+ #{&}.e-gantt.e-device {
106
+ .e-backarrowspan::before,
107
+ .e-icon-dlg-close::before {
108
+ content: '\e773';
109
+ }
110
+
111
+ .e-left-resize-gripper::before,
112
+ .e-right-resize-gripper::before {
113
+ content: '\e770';
114
+ }
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-left::before {
118
+ content: '\e773';
119
+ }
120
+
121
+ .e-gantt-tooltip-arrow-right::before {
122
+ content: '\e7f9';
123
+ }
124
+ }
@@ -0,0 +1,124 @@
1
+ @include export-module('gantt-tailwind-icons') {
2
+ #{&}.e-gantt {
3
+ .e-add::before {
4
+ content: '\e805';
5
+ }
6
+
7
+ .e-critical-path::before {
8
+ content: '\e88c';
9
+ }
10
+
11
+ .e-edit::before {
12
+ content: '\e730';
13
+ }
14
+
15
+ .e-delete::before {
16
+ content: '\e820';
17
+ }
18
+
19
+ .e-cancel::before {
20
+ content: '\e7e7';
21
+ }
22
+
23
+ .e-save::before {
24
+ content: '\e7c8';
25
+ }
26
+
27
+ .e-update::before {
28
+ content: '\e7c8';
29
+ }
30
+
31
+ .e-search-icon::before {
32
+ content: '\e754';
33
+ }
34
+
35
+ .e-cancel-icon::before {
36
+ content: '\e7e7';
37
+ }
38
+
39
+ .e-notes-info::before {
40
+ content: '\e72d';
41
+ }
42
+
43
+ .e-left-resize-gripper::before,
44
+ .e-right-resize-gripper::before {
45
+ content: '\e770';
46
+ }
47
+
48
+ .e-expandall::before {
49
+ content: '\e7c9';
50
+ }
51
+
52
+ .e-collapseall::before {
53
+ content: '\e80f';
54
+ }
55
+
56
+ .e-prevtimespan::before {
57
+ content: '\e773';
58
+ }
59
+
60
+ .e-nexttimespan::before {
61
+ content: '\e7f9';
62
+ }
63
+
64
+ .e-zoomin::before {
65
+ content: '\e795';
66
+ }
67
+
68
+ .e-zoomout::before {
69
+ content: '\e825';
70
+ }
71
+
72
+ .e-zoomtofit::before {
73
+ content: '\e838';
74
+ }
75
+
76
+ .e-csvexport::before {
77
+ content: '\e7ba';
78
+ }
79
+
80
+ .e-excelexport::before {
81
+ content: '\e7c1';
82
+ }
83
+
84
+ .e-pdfexport::before {
85
+ content: '\e700';
86
+ }
87
+
88
+ .e-indent::before {
89
+ content: '\e810';
90
+ }
91
+
92
+ .e-outdent::before {
93
+ content: '\e72a';
94
+ }
95
+
96
+ .e-add-above::before {
97
+ content: '\e836';
98
+ }
99
+
100
+ .e-add-below::before {
101
+ content: '\e801';
102
+ }
103
+ }
104
+
105
+ #{&}.e-gantt.e-device {
106
+ .e-backarrowspan::before,
107
+ .e-icon-dlg-close::before {
108
+ content: '\e773';
109
+ }
110
+
111
+ .e-left-resize-gripper::before,
112
+ .e-right-resize-gripper::before {
113
+ content: '\e770';
114
+ }
115
+ }
116
+
117
+ .e-gantt-tooltip-arrow-left::before {
118
+ content: '\e773';
119
+ }
120
+
121
+ .e-gantt-tooltip-arrow-right::before {
122
+ content: '\e7f9';
123
+ }
124
+ }
@@ -255,6 +255,14 @@
255
255
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
256
256
  height: 32px;
257
257
  }
258
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
259
+ padding-right: 10px;
260
+ width: 25px;
261
+ }
262
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
263
+ padding-left: 10px;
264
+ width: 25px;
265
+ }
258
266
  .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
259
267
  border-radius: 4px !important;
260
268
  font-size: 12px !important;
@@ -378,6 +386,9 @@
378
386
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
379
387
  margin-left: 4px !important;
380
388
  }
389
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
390
+ width: 250px !important;
391
+ }
381
392
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
382
393
  font-size: 16px !important;
383
394
  }
@@ -1 +1,22 @@
1
- @import 'ej2-gantt/styles/gantt/material-dark.scss';
1
+ @import 'ej2-base/styles/material-dark-definition.scss';
2
+ @import 'ej2-grids/styles/grid/material-dark-definition.scss';
3
+ @import 'ej2-treegrid/styles/treegrid/material-dark-definition.scss';
4
+ @import 'ej2-richtexteditor/styles/rich-text-editor/material-dark-definition.scss';
5
+ @import 'ej2-calendars/styles/datepicker/material-dark-definition.scss';
6
+ @import 'ej2-calendars/styles/datetimepicker/material-dark-definition.scss';
7
+ @import 'ej2-buttons/styles/button/material-dark-definition.scss';
8
+ @import 'ej2-dropdowns/styles/drop-down-list/material-dark-definition.scss';
9
+ @import 'ej2-dropdowns/styles/combo-box/material-dark-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/material-dark-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/material-dark-definition.scss';
12
+ @import 'ej2-navigations/styles/tab/material-dark-definition.scss';
13
+ @import 'ej2-navigations/styles/context-menu/material-dark-definition.scss';
14
+ @import 'ej2-inputs/styles/input/material-dark-definition.scss';
15
+ @import 'ej2-inputs/styles/numerictextbox/material-dark-definition.scss';
16
+ @import 'ej2-popups/styles/dialog/material-dark-definition.scss';
17
+ @import 'ej2-popups/styles/spinner/material-dark-definition.scss';
18
+ @import 'ej2-popups/styles/tooltip/material-dark-definition.scss';
19
+ @import 'ej2-layouts/styles/splitter/material-dark-definition.scss';
20
+ @import 'material-dark-definition.scss';
21
+ @import 'icons/material-dark.scss';
22
+ @import 'all.scss';
@@ -295,6 +295,14 @@
295
295
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
296
296
  height: 32px;
297
297
  }
298
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
299
+ padding-right: 10px;
300
+ width: 25px;
301
+ }
302
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
303
+ padding-left: 10px;
304
+ width: 25px;
305
+ }
298
306
  .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
299
307
  border-radius: 4px !important;
300
308
  font-size: 12px !important;
@@ -418,6 +426,9 @@
418
426
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
419
427
  margin-left: 4px !important;
420
428
  }
429
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
430
+ width: 250px !important;
431
+ }
421
432
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
422
433
  font-size: 16px !important;
423
434
  }
@@ -1 +1,22 @@
1
- @import 'ej2-gantt/styles/gantt/material.scss';
1
+ @import 'ej2-base/styles/material-definition.scss';
2
+ @import 'ej2-grids/styles/grid/material-definition.scss';
3
+ @import 'ej2-treegrid/styles/treegrid/material-definition.scss';
4
+ @import 'ej2-richtexteditor/styles/rich-text-editor/material-definition.scss';
5
+ @import 'ej2-calendars/styles/datepicker/material-definition.scss';
6
+ @import 'ej2-calendars/styles/datetimepicker/material-definition.scss';
7
+ @import 'ej2-buttons/styles/button/material-definition.scss';
8
+ @import 'ej2-dropdowns/styles/drop-down-list/material-definition.scss';
9
+ @import 'ej2-dropdowns/styles/combo-box/material-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/material-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/material-definition.scss';
12
+ @import 'ej2-navigations/styles/tab/material-definition.scss';
13
+ @import 'ej2-navigations/styles/context-menu/material-definition.scss';
14
+ @import 'ej2-inputs/styles/input/material-definition.scss';
15
+ @import 'ej2-inputs/styles/numerictextbox/material-definition.scss';
16
+ @import 'ej2-popups/styles/dialog/material-definition.scss';
17
+ @import 'ej2-popups/styles/spinner/material-definition.scss';
18
+ @import 'ej2-popups/styles/tooltip/material-definition.scss';
19
+ @import 'ej2-layouts/styles/splitter/material-definition.scss';
20
+ @import 'material-definition.scss';
21
+ @import 'icons/material.scss';
22
+ @import 'all.scss';
@@ -263,6 +263,14 @@
263
263
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
264
264
  height: 32px;
265
265
  }
266
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
267
+ padding-right: 10px;
268
+ width: 25px;
269
+ }
270
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
271
+ padding-left: 10px;
272
+ width: 25px;
273
+ }
266
274
  .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
267
275
  border-radius: 4px !important;
268
276
  font-size: 12px !important;
@@ -389,6 +397,9 @@
389
397
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
390
398
  margin-left: 12px !important;
391
399
  }
400
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
401
+ width: 250px !important;
402
+ }
392
403
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
393
404
  font-size: 16px !important;
394
405
  }
@@ -1 +1,22 @@
1
- @import 'ej2-gantt/styles/gantt/tailwind-dark.scss';
1
+ @import 'ej2-base/styles/tailwind-dark-definition.scss';
2
+ @import 'ej2-grids/styles/grid/tailwind-dark-definition.scss';
3
+ @import 'ej2-treegrid/styles/treegrid/tailwind-dark-definition.scss';
4
+ @import 'ej2-richtexteditor/styles/rich-text-editor/tailwind-dark-definition.scss';
5
+ @import 'ej2-calendars/styles/datepicker/tailwind-dark-definition.scss';
6
+ @import 'ej2-calendars/styles/datetimepicker/tailwind-dark-definition.scss';
7
+ @import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
8
+ @import 'ej2-dropdowns/styles/drop-down-list/tailwind-dark-definition.scss';
9
+ @import 'ej2-dropdowns/styles/combo-box/tailwind-dark-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/tailwind-dark-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/tailwind-dark-definition.scss';
12
+ @import 'ej2-navigations/styles/tab/tailwind-dark-definition.scss';
13
+ @import 'ej2-navigations/styles/context-menu/tailwind-dark-definition.scss';
14
+ @import 'ej2-inputs/styles/input/tailwind-dark-definition.scss';
15
+ @import 'ej2-inputs/styles/numerictextbox/tailwind-dark-definition.scss';
16
+ @import 'ej2-popups/styles/dialog/tailwind-dark-definition.scss';
17
+ @import 'ej2-popups/styles/spinner/tailwind-dark-definition.scss';
18
+ @import 'ej2-popups/styles/tooltip/tailwind-dark-definition.scss';
19
+ @import 'ej2-layouts/styles/splitter/tailwind-dark-definition.scss';
20
+ @import 'tailwind-dark-definition.scss';
21
+ @import 'icons/tailwind-dark.scss';
22
+ @import 'all.scss';
@@ -263,6 +263,14 @@
263
263
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
264
264
  height: 32px;
265
265
  }
266
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
267
+ padding-right: 10px;
268
+ width: 25px;
269
+ }
270
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
271
+ padding-left: 10px;
272
+ width: 25px;
273
+ }
266
274
  .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
267
275
  border-radius: 4px !important;
268
276
  font-size: 12px !important;
@@ -389,6 +397,9 @@
389
397
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
390
398
  margin-left: 12px !important;
391
399
  }
400
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
401
+ width: 250px !important;
402
+ }
392
403
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
393
404
  font-size: 16px !important;
394
405
  }
@@ -1 +1,22 @@
1
- @import 'ej2-gantt/styles/gantt/tailwind.scss';
1
+ @import 'ej2-base/styles/tailwind-definition.scss';
2
+ @import 'ej2-grids/styles/grid/tailwind-definition.scss';
3
+ @import 'ej2-treegrid/styles/treegrid/tailwind-definition.scss';
4
+ @import 'ej2-richtexteditor/styles/rich-text-editor/tailwind-definition.scss';
5
+ @import 'ej2-calendars/styles/datepicker/tailwind-definition.scss';
6
+ @import 'ej2-calendars/styles/datetimepicker/tailwind-definition.scss';
7
+ @import 'ej2-buttons/styles/button/tailwind-definition.scss';
8
+ @import 'ej2-dropdowns/styles/drop-down-list/tailwind-definition.scss';
9
+ @import 'ej2-dropdowns/styles/combo-box/tailwind-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/tailwind-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/tailwind-definition.scss';
12
+ @import 'ej2-navigations/styles/tab/tailwind-definition.scss';
13
+ @import 'ej2-navigations/styles/context-menu/tailwind-definition.scss';
14
+ @import 'ej2-inputs/styles/input/tailwind-definition.scss';
15
+ @import 'ej2-inputs/styles/numerictextbox/tailwind-definition.scss';
16
+ @import 'ej2-popups/styles/dialog/tailwind-definition.scss';
17
+ @import 'ej2-popups/styles/spinner/tailwind-definition.scss';
18
+ @import 'ej2-popups/styles/tooltip/tailwind-definition.scss';
19
+ @import 'ej2-layouts/styles/splitter/tailwind-definition.scss';
20
+ @import 'tailwind-definition.scss';
21
+ @import 'icons/tailwind.scss';
22
+ @import 'all.scss';