@syncfusion/ej2-angular-grids 23.1.43-ngcc → 23.1.43

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 (191) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/grid/aggregate-columns.directive.mjs +84 -0
  3. package/esm2020/src/grid/aggregates.directive.mjs +69 -0
  4. package/esm2020/src/grid/columns.directive.mjs +100 -0
  5. package/esm2020/src/grid/grid-all.module.mjs +98 -0
  6. package/esm2020/src/grid/grid.component.mjs +274 -0
  7. package/esm2020/src/grid/grid.module.mjs +61 -0
  8. package/esm2020/src/grid/stacked-column.directive.mjs +100 -0
  9. package/esm2020/src/index.mjs +12 -0
  10. package/esm2020/src/pager/pager-all.module.mjs +23 -0
  11. package/esm2020/src/pager/pager.component.mjs +66 -0
  12. package/esm2020/src/pager/pager.module.mjs +25 -0
  13. package/esm2020/syncfusion-ej2-angular-grids.mjs +5 -0
  14. package/fesm2015/syncfusion-ej2-angular-grids.mjs +859 -0
  15. package/fesm2015/syncfusion-ej2-angular-grids.mjs.map +1 -0
  16. package/fesm2020/syncfusion-ej2-angular-grids.mjs +859 -0
  17. package/fesm2020/syncfusion-ej2-angular-grids.mjs.map +1 -0
  18. package/package.json +26 -12
  19. package/src/grid/aggregate-columns.directive.d.ts +5 -0
  20. package/src/grid/aggregates.directive.d.ts +5 -0
  21. package/src/grid/columns.directive.d.ts +5 -0
  22. package/src/grid/grid-all.module.d.ts +6 -0
  23. package/src/grid/grid.component.d.ts +3 -0
  24. package/src/grid/grid.module.d.ts +10 -0
  25. package/src/grid/stacked-column.directive.d.ts +5 -0
  26. package/src/pager/pager-all.module.d.ts +6 -0
  27. package/src/pager/pager.component.d.ts +3 -0
  28. package/src/pager/pager.module.d.ts +6 -0
  29. package/styles/bootstrap-dark.css +9 -2
  30. package/styles/bootstrap.css +9 -2
  31. package/styles/bootstrap4.css +9 -2
  32. package/styles/bootstrap5-dark.css +9 -2
  33. package/styles/bootstrap5.css +9 -2
  34. package/styles/excel-filter/_all.scss +2 -0
  35. package/styles/excel-filter/_bootstrap-dark-definition.scss +62 -0
  36. package/styles/excel-filter/_bootstrap-definition.scss +67 -0
  37. package/styles/excel-filter/_bootstrap4-definition.scss +72 -0
  38. package/styles/excel-filter/_bootstrap5-dark-definition.scss +1 -0
  39. package/styles/excel-filter/_bootstrap5-definition.scss +73 -0
  40. package/styles/excel-filter/_fabric-dark-definition.scss +62 -0
  41. package/styles/excel-filter/_fabric-definition.scss +67 -0
  42. package/styles/excel-filter/_fluent-dark-definition.scss +1 -0
  43. package/styles/excel-filter/_fluent-definition.scss +73 -0
  44. package/styles/excel-filter/_fusionnew-definition.scss +73 -0
  45. package/styles/excel-filter/_highcontrast-definition.scss +62 -0
  46. package/styles/excel-filter/_highcontrast-light-definition.scss +60 -0
  47. package/styles/excel-filter/_layout.scss +511 -0
  48. package/styles/excel-filter/_material-dark-definition.scss +64 -0
  49. package/styles/excel-filter/_material-definition.scss +65 -0
  50. package/styles/excel-filter/_material3-dark-definition.scss +1 -0
  51. package/styles/excel-filter/_material3-definition.scss +73 -0
  52. package/styles/excel-filter/_office-365-definition.scss +1 -0
  53. package/styles/excel-filter/_tailwind-dark-definition.scss +1 -0
  54. package/styles/excel-filter/_tailwind-definition.scss +72 -0
  55. package/styles/excel-filter/_theme.scss +31 -0
  56. package/styles/excel-filter/bootstrap-dark.scss +17 -1
  57. package/styles/excel-filter/bootstrap.scss +17 -1
  58. package/styles/excel-filter/bootstrap4.scss +17 -1
  59. package/styles/excel-filter/bootstrap5-dark.scss +17 -1
  60. package/styles/excel-filter/bootstrap5.scss +17 -1
  61. package/styles/excel-filter/fabric-dark.scss +17 -1
  62. package/styles/excel-filter/fabric.scss +17 -1
  63. package/styles/excel-filter/fluent-dark.scss +17 -1
  64. package/styles/excel-filter/fluent.scss +17 -1
  65. package/styles/excel-filter/highcontrast-light.scss +17 -1
  66. package/styles/excel-filter/highcontrast.scss +17 -1
  67. package/styles/excel-filter/icons/_bootstrap-dark.scss +38 -0
  68. package/styles/excel-filter/icons/_bootstrap.scss +38 -0
  69. package/styles/excel-filter/icons/_bootstrap4.scss +42 -0
  70. package/styles/excel-filter/icons/_bootstrap5-dark.scss +1 -0
  71. package/styles/excel-filter/icons/_bootstrap5.scss +42 -0
  72. package/styles/excel-filter/icons/_fabric-dark.scss +38 -0
  73. package/styles/excel-filter/icons/_fabric.scss +38 -0
  74. package/styles/excel-filter/icons/_fluent-dark.scss +1 -0
  75. package/styles/excel-filter/icons/_fluent.scss +42 -0
  76. package/styles/excel-filter/icons/_fusionnew.scss +42 -0
  77. package/styles/excel-filter/icons/_highcontrast-light.scss +38 -0
  78. package/styles/excel-filter/icons/_highcontrast.scss +38 -0
  79. package/styles/excel-filter/icons/_material-dark.scss +38 -0
  80. package/styles/excel-filter/icons/_material.scss +38 -0
  81. package/styles/excel-filter/icons/_material3-dark.scss +1 -0
  82. package/styles/excel-filter/icons/_material3.scss +42 -0
  83. package/styles/excel-filter/icons/_tailwind-dark.scss +1 -0
  84. package/styles/excel-filter/icons/_tailwind.scss +42 -0
  85. package/styles/excel-filter/material-dark.scss +17 -1
  86. package/styles/excel-filter/material.scss +17 -1
  87. package/styles/excel-filter/material3-dark.scss +17 -1
  88. package/styles/excel-filter/material3.scss +17 -1
  89. package/styles/excel-filter/tailwind-dark.scss +17 -1
  90. package/styles/excel-filter/tailwind.scss +17 -1
  91. package/styles/fabric-dark.css +10 -3
  92. package/styles/fabric.css +10 -3
  93. package/styles/fluent-dark.css +9 -2
  94. package/styles/fluent.css +9 -2
  95. package/styles/grid/_all.scss +2 -0
  96. package/styles/grid/_bootstrap-dark-definition.scss +633 -0
  97. package/styles/grid/_bootstrap-definition.scss +635 -0
  98. package/styles/grid/_bootstrap4-definition.scss +640 -0
  99. package/styles/grid/_bootstrap5-dark-definition.scss +1 -0
  100. package/styles/grid/_bootstrap5-definition.scss +634 -0
  101. package/styles/grid/_fabric-dark-definition.scss +631 -0
  102. package/styles/grid/_fabric-definition.scss +631 -0
  103. package/styles/grid/_fluent-dark-definition.scss +1 -0
  104. package/styles/grid/_fluent-definition.scss +626 -0
  105. package/styles/grid/_fusionnew-definition.scss +610 -0
  106. package/styles/grid/_highcontrast-definition.scss +631 -0
  107. package/styles/grid/_highcontrast-light-definition.scss +627 -0
  108. package/styles/grid/_layout.scss +5335 -0
  109. package/styles/grid/_material-dark-definition.scss +631 -0
  110. package/styles/grid/_material-definition.scss +629 -0
  111. package/styles/grid/_material3-dark-definition.scss +1 -0
  112. package/styles/grid/_material3-definition.scss +641 -0
  113. package/styles/grid/_office-365-definition.scss +1 -0
  114. package/styles/grid/_tailwind-dark-definition.scss +1 -0
  115. package/styles/grid/_tailwind-definition.scss +640 -0
  116. package/styles/grid/_theme.scss +943 -0
  117. package/styles/grid/bootstrap-dark.css +9 -2
  118. package/styles/grid/bootstrap-dark.scss +21 -1
  119. package/styles/grid/bootstrap.css +9 -2
  120. package/styles/grid/bootstrap.scss +21 -1
  121. package/styles/grid/bootstrap4.css +9 -2
  122. package/styles/grid/bootstrap4.scss +21 -1
  123. package/styles/grid/bootstrap5-dark.css +9 -2
  124. package/styles/grid/bootstrap5-dark.scss +21 -1
  125. package/styles/grid/bootstrap5.css +9 -2
  126. package/styles/grid/bootstrap5.scss +21 -1
  127. package/styles/grid/fabric-dark.css +10 -3
  128. package/styles/grid/fabric-dark.scss +21 -1
  129. package/styles/grid/fabric.css +10 -3
  130. package/styles/grid/fabric.scss +21 -1
  131. package/styles/grid/fluent-dark.css +9 -2
  132. package/styles/grid/fluent-dark.scss +21 -1
  133. package/styles/grid/fluent.css +9 -2
  134. package/styles/grid/fluent.scss +21 -1
  135. package/styles/grid/highcontrast-light.css +10 -3
  136. package/styles/grid/highcontrast-light.scss +21 -1
  137. package/styles/grid/highcontrast.css +10 -3
  138. package/styles/grid/highcontrast.scss +21 -1
  139. package/styles/grid/icons/_bootstrap-dark.scss +226 -0
  140. package/styles/grid/icons/_bootstrap.scss +226 -0
  141. package/styles/grid/icons/_bootstrap4.scss +225 -0
  142. package/styles/grid/icons/_bootstrap5-dark.scss +1 -0
  143. package/styles/grid/icons/_bootstrap5.scss +246 -0
  144. package/styles/grid/icons/_fabric-dark.scss +225 -0
  145. package/styles/grid/icons/_fabric.scss +225 -0
  146. package/styles/grid/icons/_fluent-dark.scss +1 -0
  147. package/styles/grid/icons/_fluent.scss +246 -0
  148. package/styles/grid/icons/_fusionnew.scss +246 -0
  149. package/styles/grid/icons/_highcontrast-light.scss +225 -0
  150. package/styles/grid/icons/_highcontrast.scss +225 -0
  151. package/styles/grid/icons/_material-dark.scss +225 -0
  152. package/styles/grid/icons/_material.scss +225 -0
  153. package/styles/grid/icons/_material3-dark.scss +1 -0
  154. package/styles/grid/icons/_material3.scss +249 -0
  155. package/styles/grid/icons/_tailwind-dark.scss +1 -0
  156. package/styles/grid/icons/_tailwind.scss +246 -0
  157. package/styles/grid/material-dark.css +10 -3
  158. package/styles/grid/material-dark.scss +21 -1
  159. package/styles/grid/material.css +10 -3
  160. package/styles/grid/material.scss +21 -1
  161. package/styles/grid/material3-dark.css +9 -2
  162. package/styles/grid/material3-dark.scss +21 -1
  163. package/styles/grid/material3.css +9 -2
  164. package/styles/grid/material3.scss +21 -1
  165. package/styles/grid/tailwind-dark.css +9 -2
  166. package/styles/grid/tailwind-dark.scss +21 -1
  167. package/styles/grid/tailwind.css +9 -2
  168. package/styles/grid/tailwind.scss +21 -1
  169. package/styles/highcontrast-light.css +10 -3
  170. package/styles/highcontrast.css +10 -3
  171. package/styles/material-dark.css +10 -3
  172. package/styles/material.css +10 -3
  173. package/styles/material3-dark.css +9 -57
  174. package/styles/material3-dark.scss +1 -0
  175. package/styles/material3.css +9 -113
  176. package/styles/material3.scss +1 -0
  177. package/styles/tailwind-dark.css +9 -2
  178. package/styles/tailwind.css +9 -2
  179. package/syncfusion-ej2-angular-grids.d.ts +5 -0
  180. package/@syncfusion/ej2-angular-grids.es5.js +0 -988
  181. package/@syncfusion/ej2-angular-grids.es5.js.map +0 -1
  182. package/@syncfusion/ej2-angular-grids.js +0 -927
  183. package/@syncfusion/ej2-angular-grids.js.map +0 -1
  184. package/CHANGELOG.md +0 -2828
  185. package/dist/ej2-angular-grids.umd.js +0 -1585
  186. package/dist/ej2-angular-grids.umd.js.map +0 -1
  187. package/dist/ej2-angular-grids.umd.min.js +0 -11
  188. package/dist/ej2-angular-grids.umd.min.js.map +0 -1
  189. package/ej2-angular-grids.d.ts +0 -6
  190. package/ej2-angular-grids.metadata.json +0 -1
  191. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,249 @@
1
+ @include export-module('grid-material3-icons') {
2
+
3
+ /*! component icons */
4
+
5
+ .e-icon-check::before {
6
+ content: '\e774';
7
+ }
8
+
9
+ #{&}.e-grid,
10
+ .e-grid-menu {
11
+
12
+ .e-group-animate .e-drag.e-icon-drag::before {
13
+ content: '\e726';
14
+ }
15
+
16
+ .e-group-animate .e-nextgroup.e-icon-next::before {
17
+ content: '\e748';
18
+ }
19
+
20
+ .e-icon-ascending::before {
21
+ content: '\e823';
22
+ }
23
+
24
+ .e-icon-descending::before {
25
+ content: '\e87c';
26
+ }
27
+
28
+ .e-icon-hide::before {
29
+ content: '\e7e7';
30
+ }
31
+
32
+ .e-ungroupbutton.e-icon-hide::before {
33
+ content: '\e7e7';
34
+ }
35
+
36
+ .e-icon-rowselect::before {
37
+ content: '\e7d4';
38
+ }
39
+
40
+ .e-icon-sortdirect::before {
41
+ content: '\e824';
42
+ }
43
+
44
+ .e-icon-gdownarrow::before {
45
+ content: '\e729';
46
+ }
47
+
48
+ .e-icon-grightarrow::before {
49
+ content: '\e748';
50
+ }
51
+
52
+ .e-icon-filter::before {
53
+ content: '\e7f7';
54
+ }
55
+
56
+ .e-icon-filter.e-filtered::before {
57
+ content: '\e735';
58
+ }
59
+
60
+ .e-resfilter-icon::before {
61
+ content: '\e7f7';
62
+ }
63
+
64
+ .e-ressort-icon::before {
65
+ content: '\e823';
66
+ }
67
+
68
+ .e-excl-filter-icon::before {
69
+ content: '\e7f7';
70
+ }
71
+
72
+ .e-excl-filter-icon.e-filtered::before {
73
+ content: '\e72c';
74
+ }
75
+
76
+ &.e-rtl {
77
+ .e-icon-grightarrow::before {
78
+ content: '\e765';
79
+ }
80
+ }
81
+
82
+ .e-icon-group::before {
83
+ content: '\e724';
84
+ }
85
+
86
+ .e-icon-ungroup::before {
87
+ content: '\e724';
88
+ }
89
+
90
+ .e-icon-reorderuparrow::before {
91
+ content: '\e87a';
92
+ }
93
+
94
+ .e-icon-reorderdownarrow::before {
95
+ content: '\e70d';
96
+ }
97
+
98
+ .e-print::before {
99
+ content: '\e75d';
100
+ }
101
+
102
+ .e-add::before {
103
+ content: '\e805';
104
+ }
105
+
106
+ .e-resback-icon::before {
107
+ content: '\e773';
108
+ }
109
+
110
+ .e-wordexport::before {
111
+ content: '\e7d0';
112
+ }
113
+
114
+ .e-pdfexport::before {
115
+ content: '\e700';
116
+ }
117
+
118
+ .e-csvexport::before {
119
+ content: '\e7ba';
120
+ }
121
+
122
+ .e-excelexport::before {
123
+ content: '\e7c1';
124
+ }
125
+
126
+ .e-edit::before {
127
+ content: '\e730';
128
+ }
129
+
130
+ .e-columnmenu::before,
131
+ .e-columnmenu.e-filtered::before {
132
+ content: '\e770';
133
+ }
134
+
135
+ .e-delete::before {
136
+ content: '\e820';
137
+ }
138
+
139
+ .e-cancel::before {
140
+ content: '\e7e7';
141
+ }
142
+
143
+ .e-copy::before {
144
+ content: '\e77c';
145
+ }
146
+
147
+ .e-save::before {
148
+ content: '\e7c8';
149
+ }
150
+
151
+ .e-update::before {
152
+ content: '\e7c8';
153
+ }
154
+
155
+ .e-search-icon::before {
156
+ content: '\e754';
157
+ }
158
+
159
+ .e-cancel-icon::before {
160
+ content: '\e7e7';
161
+ }
162
+
163
+ .e-columnchooserdiv::before {
164
+ content: '\e7f7';
165
+ }
166
+
167
+ .e-ccsearch-icon::before {
168
+ content: '\e754';
169
+ }
170
+
171
+ .e-columnchooser::before {
172
+ content: '\e21e'; // icon not found
173
+ }
174
+
175
+ .e-columnchooser-btn::before {
176
+ content: '\e70d';
177
+ }
178
+
179
+ .e-cc-icon::before {
180
+ content: '\e70d';
181
+ }
182
+
183
+ .e-icon-rowdragicon::before {
184
+ content: '\e726';
185
+ }
186
+
187
+ &.e-rtl {
188
+ .e-icon-rowdragicon::before {
189
+ content: '\e726';
190
+ }
191
+ }
192
+
193
+ .e-ccsearch-icon.e-cc-cancel::before,
194
+ .e-chkcancel-icon::before {
195
+ content: '\e7e7';
196
+ }
197
+ }
198
+ }
199
+
200
+ .e-responsive-dialog {
201
+
202
+ & .e-resfilterback::before {
203
+ content: '\e773';
204
+ }
205
+
206
+ &.e-rtl .e-resfilterback::before {
207
+ content: '\e7f9';
208
+ }
209
+
210
+ & .e-filterset::before {
211
+ content: '\e7f7';
212
+ }
213
+
214
+ & .e-search-icon::before {
215
+ content: '\e754';
216
+ }
217
+
218
+ & .e-chkcancel-icon::before {
219
+ content: '\e7e7';
220
+ }
221
+
222
+ & .e-icon-filter-clear::before {
223
+ content: '\e72c';
224
+ }
225
+ }
226
+
227
+ .e-row-responsive-filter {
228
+ & .e-dlg-closeicon-btn {
229
+ & .e-icon-dlg-close::before {
230
+ content: '\e773';
231
+ }
232
+ }
233
+
234
+ &.e-rtl .e-dlg-closeicon-btn {
235
+ & .e-icon-dlg-close::before {
236
+ content: '\e7f9';
237
+ }
238
+ }
239
+ }
240
+
241
+ .e-checkboxfilter {
242
+ .e-search-icon::before {
243
+ content: '\e754';
244
+ }
245
+
246
+ .e-chkcancel-icon::before {
247
+ content: '\e7e7';
248
+ }
249
+ }
@@ -0,0 +1 @@
1
+ @import './tailwind.scss';
@@ -0,0 +1,246 @@
1
+ @include export-module('grid-tailwind-icons') {
2
+
3
+ /*! component icons */
4
+
5
+ .e-icon-check::before {
6
+ content: '\e774';
7
+ }
8
+
9
+ #{&}.e-grid,
10
+ .e-grid-menu {
11
+
12
+ .e-group-animate .e-drag.e-icon-drag::before {
13
+ content: '\e726';
14
+ }
15
+
16
+ .e-group-animate .e-nextgroup.e-icon-next::before {
17
+ content: '\e748';
18
+ }
19
+
20
+ .e-icon-ascending::before {
21
+ content: '\e7df';
22
+ }
23
+
24
+ .e-icon-descending::before {
25
+ content: '\e7d8';
26
+ }
27
+
28
+ .e-icon-hide::before {
29
+ content: '\e7e7';
30
+ }
31
+
32
+ .e-ungroupbutton.e-icon-hide::before {
33
+ content: '\e7e7';
34
+ }
35
+
36
+ .e-icon-rowselect::before {
37
+ content: '\e7d4';
38
+ }
39
+
40
+ .e-icon-sortdirect::before {
41
+ content: '\e824';
42
+ }
43
+
44
+ .e-icon-gdownarrow::before {
45
+ content: '\e729';
46
+ }
47
+
48
+ .e-icon-grightarrow::before {
49
+ content: '\e748';
50
+ }
51
+
52
+ .e-icon-filter::before,
53
+ .e-icon-filter.e-filtered::before {
54
+ content: '\e7f7';
55
+ }
56
+
57
+ .e-resfilter-icon::before {
58
+ content: '\e7f7';
59
+ }
60
+
61
+ .e-ressort-icon::before {
62
+ content: '\e823';
63
+ }
64
+
65
+ .e-excl-filter-icon::before {
66
+ content: '\e7f7';
67
+ }
68
+
69
+ .e-excl-filter-icon.e-filtered::before {
70
+ content: '\e72c';
71
+ }
72
+
73
+ &.e-rtl {
74
+ .e-icon-grightarrow::before {
75
+ content: '\e765';
76
+ }
77
+ }
78
+
79
+ .e-icon-group::before {
80
+ content: '\e724';
81
+ }
82
+
83
+ .e-icon-ungroup::before {
84
+ content: '\e724';
85
+ }
86
+
87
+ .e-icon-reorderuparrow::before {
88
+ content: '\e87a';
89
+ }
90
+
91
+ .e-icon-reorderdownarrow::before {
92
+ content: '\e70d';
93
+ }
94
+
95
+ .e-print::before {
96
+ content: '\e75d';
97
+ }
98
+
99
+ .e-add::before {
100
+ content: '\e805';
101
+ }
102
+
103
+ .e-resback-icon::before {
104
+ content: '\e773';
105
+ }
106
+
107
+ .e-wordexport::before {
108
+ content: '\e7d0';
109
+ }
110
+
111
+ .e-pdfexport::before {
112
+ content: '\e700';
113
+ }
114
+
115
+ .e-csvexport::before {
116
+ content: '\e7ba';
117
+ }
118
+
119
+ .e-excelexport::before {
120
+ content: '\e7c1';
121
+ }
122
+
123
+ .e-edit::before {
124
+ content: '\e730';
125
+ }
126
+
127
+ .e-columnmenu::before,
128
+ .e-columnmenu.e-filtered::before {
129
+ content: '\e770';
130
+ }
131
+
132
+ .e-delete::before {
133
+ content: '\e820';
134
+ }
135
+
136
+ .e-cancel::before {
137
+ content: '\e7e7';
138
+ }
139
+
140
+ .e-copy::before {
141
+ content: '\e77c';
142
+ }
143
+
144
+ .e-save::before {
145
+ content: '\e7c8';
146
+ }
147
+
148
+ .e-update::before {
149
+ content: '\e7c8';
150
+ }
151
+
152
+ .e-search-icon::before {
153
+ content: '\e754';
154
+ }
155
+
156
+ .e-cancel-icon::before {
157
+ content: '\e7e7';
158
+ }
159
+
160
+ .e-columnchooserdiv::before {
161
+ content: '\e7f7';
162
+ }
163
+
164
+ .e-ccsearch-icon::before {
165
+ content: '\e754';
166
+ }
167
+
168
+ .e-columnchooser::before {
169
+ content: '\e21e'; // icon not found
170
+ }
171
+
172
+ .e-columnchooser-btn::before {
173
+ content: '\e70d';
174
+ }
175
+
176
+ .e-cc-icon::before {
177
+ content: '\e70d';
178
+ }
179
+
180
+ .e-icon-rowdragicon::before {
181
+ content: '\e726';
182
+ }
183
+
184
+ &.e-rtl {
185
+ .e-icon-rowdragicon::before {
186
+ content: '\e726';
187
+ }
188
+ }
189
+
190
+ .e-ccsearch-icon.e-cc-cancel::before,
191
+ .e-chkcancel-icon::before {
192
+ content: '\e7e7';
193
+ }
194
+ }
195
+ }
196
+
197
+ .e-responsive-dialog {
198
+
199
+ & .e-resfilterback::before {
200
+ content: '\e773';
201
+ }
202
+
203
+ &.e-rtl .e-resfilterback::before {
204
+ content: '\e7f9';
205
+ }
206
+
207
+ & .e-filterset::before {
208
+ content: '\e7f7';
209
+ }
210
+
211
+ & .e-search-icon::before {
212
+ content: '\e754';
213
+ }
214
+
215
+ & .e-chkcancel-icon::before {
216
+ content: '\e7e7';
217
+ }
218
+
219
+ & .e-icon-filter-clear::before {
220
+ content: '\e72c';
221
+ }
222
+ }
223
+
224
+ .e-row-responsive-filter {
225
+ & .e-dlg-closeicon-btn {
226
+ & .e-icon-dlg-close::before {
227
+ content: '\e773';
228
+ }
229
+ }
230
+
231
+ &.e-rtl .e-dlg-closeicon-btn {
232
+ & .e-icon-dlg-close::before {
233
+ content: '\e7f9';
234
+ }
235
+ }
236
+ }
237
+
238
+ .e-checkboxfilter {
239
+ .e-search-icon::before {
240
+ content: '\e754';
241
+ }
242
+
243
+ .e-chkcancel-icon::before {
244
+ content: '\e7e7';
245
+ }
246
+ }
@@ -1312,8 +1312,9 @@
1312
1312
  display: none;
1313
1313
  }
1314
1314
  .e-grid .e-groupdroparea.e-group-animate.e-grouped {
1315
- padding: 0 12px 0;
1316
- height: auto;
1315
+ overflow: hidden;
1316
+ padding: 0;
1317
+ height: 48px;
1317
1318
  border-bottom-width: 0;
1318
1319
  }
1319
1320
  .e-grid.e-rtl .e-group-animator {
@@ -1327,6 +1328,12 @@
1327
1328
  transform: rotate(180deg);
1328
1329
  margin-top: 16px;
1329
1330
  }
1331
+ .e-grid.e-rtl .e-group-animator:first-child .e-groupheadercell {
1332
+ margin: 12px 16px 12px 0;
1333
+ }
1334
+ .e-grid .e-group-animator:first-child .e-groupheadercell {
1335
+ margin: 12px 0 12px 16px;
1336
+ }
1330
1337
  .e-grid .e-group-animate.e-groupdroparea .e-nextgroup {
1331
1338
  margin-top: 9px;
1332
1339
  }
@@ -2338,7 +2345,7 @@
2338
2345
  overflow: hidden;
2339
2346
  text-overflow: ellipsis;
2340
2347
  white-space: nowrap;
2341
- width: auto;
2348
+ width: 57px;
2342
2349
  }
2343
2350
  .e-grid .e-grid-icon {
2344
2351
  float: left;
@@ -1 +1,21 @@
1
- @import 'ej2-grids/styles/grid/material-dark.scss';
1
+ @import 'ej2-base/styles/definition/material-dark.scss';
2
+ @import 'ej2-navigations/styles/pager/material-dark-definition.scss';
3
+ @import '../excel-filter/material-dark-definition.scss';
4
+ @import 'ej2-inputs/styles/input/material-dark-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/material-dark-definition.scss';
6
+ @import 'ej2-buttons/styles/button/material-dark-definition.scss';
7
+ @import 'ej2-buttons/styles/radio-button/material-dark-definition.scss';
8
+ @import 'ej2-buttons/styles/check-box/material-dark-definition.scss';
9
+ @import 'ej2-dropdowns/styles/auto-complete/material-dark-definition.scss';
10
+ @import 'ej2-dropdowns/styles/drop-down-list/material-dark-definition.scss';
11
+ @import 'ej2-popups/styles/dialog/material-dark-definition.scss';
12
+ @import 'ej2-popups/styles/spinner/material-dark-definition.scss';
13
+ @import 'ej2-popups/styles/tooltip/material-dark-definition.scss';
14
+ @import 'ej2-calendars/styles/datepicker/material-dark-definition.scss';
15
+ @import 'ej2-calendars/styles/datetimepicker/material-dark-definition.scss';
16
+ @import 'ej2-navigations/styles/toolbar/material-dark-definition.scss';
17
+ @import 'ej2-navigations/styles/context-menu/material-dark-definition.scss';
18
+ @import 'ej2-notifications/styles/skeleton/material-dark-definition.scss';
19
+ @import 'material-dark-definition.scss';
20
+ @import 'icons/material-dark.scss';
21
+ @import 'all.scss';
@@ -1346,8 +1346,9 @@
1346
1346
  display: none;
1347
1347
  }
1348
1348
  .e-grid .e-groupdroparea.e-group-animate.e-grouped {
1349
- padding: 0 12px 0;
1350
- height: auto;
1349
+ overflow: hidden;
1350
+ padding: 0;
1351
+ height: 48px;
1351
1352
  border-bottom-width: 0;
1352
1353
  }
1353
1354
  .e-grid.e-rtl .e-group-animator {
@@ -1361,6 +1362,12 @@
1361
1362
  transform: rotate(180deg);
1362
1363
  margin-top: 16px;
1363
1364
  }
1365
+ .e-grid.e-rtl .e-group-animator:first-child .e-groupheadercell {
1366
+ margin: 12px 16px 12px 0;
1367
+ }
1368
+ .e-grid .e-group-animator:first-child .e-groupheadercell {
1369
+ margin: 12px 0 12px 16px;
1370
+ }
1364
1371
  .e-grid .e-group-animate.e-groupdroparea .e-nextgroup {
1365
1372
  margin-top: 9px;
1366
1373
  }
@@ -2372,7 +2379,7 @@
2372
2379
  overflow: hidden;
2373
2380
  text-overflow: ellipsis;
2374
2381
  white-space: nowrap;
2375
- width: auto;
2382
+ width: 57px;
2376
2383
  }
2377
2384
  .e-grid .e-grid-icon {
2378
2385
  float: left;
@@ -1 +1,21 @@
1
- @import 'ej2-grids/styles/grid/material.scss';
1
+ @import 'ej2-base/styles/definition/material.scss';
2
+ @import 'ej2-navigations/styles/pager/material-definition.scss';
3
+ @import '../excel-filter/material-definition.scss';
4
+ @import 'ej2-inputs/styles/input/material-definition.scss';
5
+ @import 'ej2-inputs/styles/numerictextbox/material-definition.scss';
6
+ @import 'ej2-buttons/styles/button/material-definition.scss';
7
+ @import 'ej2-buttons/styles/radio-button/material-definition.scss';
8
+ @import 'ej2-buttons/styles/check-box/material-definition.scss';
9
+ @import 'ej2-dropdowns/styles/auto-complete/material-definition.scss';
10
+ @import 'ej2-dropdowns/styles/drop-down-list/material-definition.scss';
11
+ @import 'ej2-popups/styles/dialog/material-definition.scss';
12
+ @import 'ej2-popups/styles/spinner/material-definition.scss';
13
+ @import 'ej2-popups/styles/tooltip/material-definition.scss';
14
+ @import 'ej2-calendars/styles/datepicker/material-definition.scss';
15
+ @import 'ej2-calendars/styles/datetimepicker/material-definition.scss';
16
+ @import 'ej2-navigations/styles/toolbar/material-definition.scss';
17
+ @import 'ej2-navigations/styles/context-menu/material-definition.scss';
18
+ @import 'ej2-notifications/styles/skeleton/material-definition.scss';
19
+ @import 'material-definition.scss';
20
+ @import 'icons/material.scss';
21
+ @import 'all.scss';
@@ -1516,8 +1516,9 @@
1516
1516
  display: none;
1517
1517
  }
1518
1518
  .e-grid .e-groupdroparea.e-group-animate.e-grouped {
1519
- padding: 0 8px 0;
1520
- height: auto;
1519
+ overflow: hidden;
1520
+ padding: 0;
1521
+ height: 40px;
1521
1522
  border-bottom-width: 0 4px 0 4px;
1522
1523
  }
1523
1524
  .e-grid.e-rtl .e-group-animator {
@@ -1531,6 +1532,12 @@
1531
1532
  transform: rotate(180deg);
1532
1533
  margin-top: 15px;
1533
1534
  }
1535
+ .e-grid.e-rtl .e-group-animator:first-child .e-groupheadercell {
1536
+ margin: 8px 8px 8px 0;
1537
+ }
1538
+ .e-grid .e-group-animator:first-child .e-groupheadercell {
1539
+ margin: 8px 0 8px 8px;
1540
+ }
1534
1541
  .e-grid .e-group-animate.e-groupdroparea .e-nextgroup {
1535
1542
  margin-top: 5px;
1536
1543
  }
@@ -1,2 +1,22 @@
1
1
 
2
- @import 'ej2-grids/styles/grid/material3-dark.scss';
2
+
3
+ @import 'ej2-navigations/styles/pager/material3-dark-definition.scss';
4
+ @import '../excel-filter/material3-dark-definition.scss';
5
+ @import 'ej2-inputs/styles/input/material3-dark-definition.scss';
6
+ @import 'ej2-inputs/styles/numerictextbox/material3-dark-definition.scss';
7
+ @import 'ej2-buttons/styles/button/material3-dark-definition.scss';
8
+ @import 'ej2-buttons/styles/radio-button/material3-dark-definition.scss';
9
+ @import 'ej2-buttons/styles/check-box/material3-dark-definition.scss';
10
+ @import 'ej2-dropdowns/styles/auto-complete/material3-dark-definition.scss';
11
+ @import 'ej2-dropdowns/styles/drop-down-list/material3-dark-definition.scss';
12
+ @import 'ej2-popups/styles/dialog/material3-dark-definition.scss';
13
+ @import 'ej2-popups/styles/spinner/material3-dark-definition.scss';
14
+ @import 'ej2-popups/styles/tooltip/material3-dark-definition.scss';
15
+ @import 'ej2-calendars/styles/datepicker/material3-dark-definition.scss';
16
+ @import 'ej2-calendars/styles/datetimepicker/material3-dark-definition.scss';
17
+ @import 'ej2-navigations/styles/toolbar/material3-dark-definition.scss';
18
+ @import 'ej2-navigations/styles/context-menu/material3-dark-definition.scss';
19
+ @import 'ej2-notifications/styles/skeleton/material3-dark-definition.scss';
20
+ @import 'material3-dark-definition.scss';
21
+ @import 'icons/material3-dark.scss';
22
+ @import 'all.scss';
@@ -1572,8 +1572,9 @@
1572
1572
  display: none;
1573
1573
  }
1574
1574
  .e-grid .e-groupdroparea.e-group-animate.e-grouped {
1575
- padding: 0 8px 0;
1576
- height: auto;
1575
+ overflow: hidden;
1576
+ padding: 0;
1577
+ height: 40px;
1577
1578
  border-bottom-width: 0 4px 0 4px;
1578
1579
  }
1579
1580
  .e-grid.e-rtl .e-group-animator {
@@ -1587,6 +1588,12 @@
1587
1588
  transform: rotate(180deg);
1588
1589
  margin-top: 15px;
1589
1590
  }
1591
+ .e-grid.e-rtl .e-group-animator:first-child .e-groupheadercell {
1592
+ margin: 8px 8px 8px 0;
1593
+ }
1594
+ .e-grid .e-group-animator:first-child .e-groupheadercell {
1595
+ margin: 8px 0 8px 8px;
1596
+ }
1590
1597
  .e-grid .e-group-animate.e-groupdroparea .e-nextgroup {
1591
1598
  margin-top: 5px;
1592
1599
  }
@@ -1,2 +1,22 @@
1
1
 
2
- @import 'ej2-grids/styles/grid/material3.scss';
2
+
3
+ @import 'ej2-navigations/styles/pager/material3-definition.scss';
4
+ @import '../excel-filter/material3-definition.scss';
5
+ @import 'ej2-inputs/styles/input/material3-definition.scss';
6
+ @import 'ej2-inputs/styles/numerictextbox/material3-definition.scss';
7
+ @import 'ej2-buttons/styles/button/material3-definition.scss';
8
+ @import 'ej2-buttons/styles/radio-button/material3-definition.scss';
9
+ @import 'ej2-buttons/styles/check-box/material3-definition.scss';
10
+ @import 'ej2-dropdowns/styles/auto-complete/material3-definition.scss';
11
+ @import 'ej2-dropdowns/styles/drop-down-list/material3-definition.scss';
12
+ @import 'ej2-popups/styles/dialog/material3-definition.scss';
13
+ @import 'ej2-popups/styles/spinner/material3-definition.scss';
14
+ @import 'ej2-popups/styles/tooltip/material3-definition.scss';
15
+ @import 'ej2-calendars/styles/datepicker/material3-definition.scss';
16
+ @import 'ej2-calendars/styles/datetimepicker/material3-definition.scss';
17
+ @import 'ej2-navigations/styles/toolbar/material3-definition.scss';
18
+ @import 'ej2-navigations/styles/context-menu/material3-definition.scss';
19
+ @import 'ej2-notifications/styles/skeleton/material3-definition.scss';
20
+ @import 'material3-definition.scss';
21
+ @import 'icons/material3.scss';
22
+ @import 'all.scss';