@syncfusion/ej2-angular-filemanager 20.2.44-ngcc → 20.2.44

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 (155) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/file-manager/filemanager-all.module.mjs +44 -0
  3. package/esm2020/src/file-manager/filemanager.component.mjs +101 -0
  4. package/esm2020/src/file-manager/filemanager.module.mjs +25 -0
  5. package/esm2020/src/index.mjs +5 -0
  6. package/esm2020/syncfusion-ej2-angular-filemanager.mjs +5 -0
  7. package/fesm2015/syncfusion-ej2-angular-filemanager.mjs +171 -0
  8. package/fesm2015/syncfusion-ej2-angular-filemanager.mjs.map +1 -0
  9. package/fesm2020/syncfusion-ej2-angular-filemanager.mjs +171 -0
  10. package/fesm2020/syncfusion-ej2-angular-filemanager.mjs.map +1 -0
  11. package/package.json +26 -12
  12. package/schematics/utils/lib-details.ts +2 -2
  13. package/src/file-manager/filemanager-all.module.d.ts +6 -0
  14. package/src/file-manager/filemanager.component.d.ts +3 -0
  15. package/src/file-manager/filemanager.module.d.ts +6 -0
  16. package/styles/bootstrap-dark.css +10 -5
  17. package/styles/bootstrap.css +12 -6
  18. package/styles/bootstrap4.css +10 -5
  19. package/styles/bootstrap5-dark.css +14 -6
  20. package/styles/bootstrap5.css +14 -6
  21. package/styles/fabric-dark.css +10 -5
  22. package/styles/fabric.css +12 -6
  23. package/styles/file-manager/_all.scss +2 -0
  24. package/styles/file-manager/_bootstrap-dark-definition.scss +240 -0
  25. package/styles/file-manager/_bootstrap-definition.scss +241 -0
  26. package/styles/file-manager/_bootstrap4-definition.scss +242 -0
  27. package/styles/file-manager/_bootstrap5-dark-definition.scss +1 -0
  28. package/styles/file-manager/_bootstrap5-definition.scss +237 -0
  29. package/styles/file-manager/_fabric-dark-definition.scss +238 -0
  30. package/styles/file-manager/_fabric-definition.scss +240 -0
  31. package/styles/file-manager/_fluent-dark-definition.scss +1 -0
  32. package/styles/file-manager/_fluent-definition.scss +245 -0
  33. package/styles/file-manager/_fusionnew-definition.scss +237 -0
  34. package/styles/file-manager/_highcontrast-definition.scss +240 -0
  35. package/styles/file-manager/_highcontrast-light-definition.scss +240 -0
  36. package/styles/file-manager/_layout.scss +1819 -0
  37. package/styles/file-manager/_material-dark-definition.scss +240 -0
  38. package/styles/file-manager/_material-definition.scss +240 -0
  39. package/styles/file-manager/_material3-definition.scss +237 -0
  40. package/styles/file-manager/_tailwind-dark-definition.scss +1 -0
  41. package/styles/file-manager/_tailwind-definition.scss +232 -0
  42. package/styles/file-manager/_theme.scss +400 -0
  43. package/styles/file-manager/bootstrap-dark.css +10 -5
  44. package/styles/file-manager/bootstrap-dark.scss +16 -1
  45. package/styles/file-manager/bootstrap.css +12 -6
  46. package/styles/file-manager/bootstrap.scss +16 -1
  47. package/styles/file-manager/bootstrap4.css +10 -5
  48. package/styles/file-manager/bootstrap4.scss +16 -1
  49. package/styles/file-manager/bootstrap5-dark.css +14 -6
  50. package/styles/file-manager/bootstrap5-dark.scss +16 -1
  51. package/styles/file-manager/bootstrap5.css +14 -6
  52. package/styles/file-manager/bootstrap5.scss +16 -1
  53. package/styles/file-manager/fabric-dark.css +10 -5
  54. package/styles/file-manager/fabric-dark.scss +16 -1
  55. package/styles/file-manager/fabric.css +12 -6
  56. package/styles/file-manager/fabric.scss +16 -1
  57. package/styles/file-manager/fluent-dark.css +12 -6
  58. package/styles/file-manager/fluent-dark.scss +16 -1
  59. package/styles/file-manager/fluent.css +12 -6
  60. package/styles/file-manager/fluent.scss +16 -1
  61. package/styles/file-manager/highcontrast-light.css +10 -5
  62. package/styles/file-manager/highcontrast-light.scss +16 -1
  63. package/styles/file-manager/highcontrast.css +12 -6
  64. package/styles/file-manager/highcontrast.scss +16 -1
  65. package/styles/file-manager/icons/_bootstrap-dark.scss +235 -0
  66. package/styles/file-manager/icons/_bootstrap.scss +235 -0
  67. package/styles/file-manager/icons/_bootstrap4.scss +235 -0
  68. package/styles/file-manager/icons/_bootstrap5-dark.scss +1 -0
  69. package/styles/file-manager/icons/_bootstrap5.scss +235 -0
  70. package/styles/file-manager/icons/_fabric-dark.scss +229 -0
  71. package/styles/file-manager/icons/_fabric.scss +229 -0
  72. package/styles/file-manager/icons/_fluent-dark.scss +1 -0
  73. package/styles/file-manager/icons/_fluent.scss +235 -0
  74. package/styles/file-manager/icons/_fusionnew.scss +235 -0
  75. package/styles/file-manager/icons/_highcontrast-light.scss +235 -0
  76. package/styles/file-manager/icons/_highcontrast.scss +229 -0
  77. package/styles/file-manager/icons/_material-dark.scss +235 -0
  78. package/styles/file-manager/icons/_material.scss +235 -0
  79. package/styles/file-manager/icons/_material3.scss +235 -0
  80. package/styles/file-manager/icons/_tailwind-dark.scss +1 -0
  81. package/styles/file-manager/icons/_tailwind.scss +235 -0
  82. package/styles/file-manager/material-dark.css +10 -5
  83. package/styles/file-manager/material-dark.scss +16 -1
  84. package/styles/file-manager/material.css +12 -6
  85. package/styles/file-manager/material.scss +16 -1
  86. package/styles/file-manager/tailwind-dark.css +12 -6
  87. package/styles/file-manager/tailwind-dark.scss +16 -1
  88. package/styles/file-manager/tailwind.css +12 -6
  89. package/styles/file-manager/tailwind.scss +16 -1
  90. package/styles/fluent-dark.css +12 -6
  91. package/styles/fluent.css +12 -6
  92. package/styles/highcontrast-light.css +10 -5
  93. package/styles/highcontrast.css +12 -6
  94. package/styles/material-dark.css +10 -5
  95. package/styles/material.css +12 -6
  96. package/styles/tailwind-dark.css +12 -6
  97. package/styles/tailwind.css +12 -6
  98. package/syncfusion-ej2-angular-filemanager.d.ts +5 -0
  99. package/@syncfusion/ej2-angular-filemanager.es5.js +0 -216
  100. package/@syncfusion/ej2-angular-filemanager.es5.js.map +0 -1
  101. package/@syncfusion/ej2-angular-filemanager.js +0 -197
  102. package/@syncfusion/ej2-angular-filemanager.js.map +0 -1
  103. package/CHANGELOG.md +0 -436
  104. package/dist/ej2-angular-filemanager.umd.js +0 -434
  105. package/dist/ej2-angular-filemanager.umd.js.map +0 -1
  106. package/dist/ej2-angular-filemanager.umd.min.js +0 -11
  107. package/dist/ej2-angular-filemanager.umd.min.js.map +0 -1
  108. package/ej2-angular-filemanager.d.ts +0 -5
  109. package/ej2-angular-filemanager.metadata.json +0 -1
  110. package/postinstall/tagchange.js +0 -18
  111. package/schematics/collection.json +0 -30
  112. package/schematics/generators/filemanager-default/index.d.ts +0 -3
  113. package/schematics/generators/filemanager-default/index.js +0 -8
  114. package/schematics/generators/filemanager-default/sample-details.d.ts +0 -5
  115. package/schematics/generators/filemanager-default/sample-details.js +0 -7
  116. package/schematics/generators/filemanager-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  117. package/schematics/generators/filemanager-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  118. package/schematics/generators/filemanager-default/schema.d.ts +0 -3
  119. package/schematics/generators/filemanager-default/schema.js +0 -2
  120. package/schematics/generators/filemanager-default/schema.json +0 -125
  121. package/schematics/generators/filemanager-localization/index.d.ts +0 -3
  122. package/schematics/generators/filemanager-localization/index.js +0 -8
  123. package/schematics/generators/filemanager-localization/sample-details.d.ts +0 -5
  124. package/schematics/generators/filemanager-localization/sample-details.js +0 -7
  125. package/schematics/generators/filemanager-localization/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  126. package/schematics/generators/filemanager-localization/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  127. package/schematics/generators/filemanager-localization/schema.d.ts +0 -3
  128. package/schematics/generators/filemanager-localization/schema.js +0 -2
  129. package/schematics/generators/filemanager-localization/schema.json +0 -125
  130. package/schematics/generators/filemanager-overview/index.d.ts +0 -3
  131. package/schematics/generators/filemanager-overview/index.js +0 -8
  132. package/schematics/generators/filemanager-overview/sample-details.d.ts +0 -5
  133. package/schematics/generators/filemanager-overview/sample-details.js +0 -7
  134. package/schematics/generators/filemanager-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  135. package/schematics/generators/filemanager-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  136. package/schematics/generators/filemanager-overview/schema.d.ts +0 -3
  137. package/schematics/generators/filemanager-overview/schema.js +0 -2
  138. package/schematics/generators/filemanager-overview/schema.json +0 -125
  139. package/schematics/generators/filemanager-rtl/index.d.ts +0 -3
  140. package/schematics/generators/filemanager-rtl/index.js +0 -8
  141. package/schematics/generators/filemanager-rtl/sample-details.d.ts +0 -5
  142. package/schematics/generators/filemanager-rtl/sample-details.js +0 -7
  143. package/schematics/generators/filemanager-rtl/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  144. package/schematics/generators/filemanager-rtl/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  145. package/schematics/generators/filemanager-rtl/schema.d.ts +0 -3
  146. package/schematics/generators/filemanager-rtl/schema.js +0 -2
  147. package/schematics/generators/filemanager-rtl/schema.json +0 -125
  148. package/schematics/ng-add/index.d.ts +0 -3
  149. package/schematics/ng-add/index.js +0 -9
  150. package/schematics/ng-add/schema.d.ts +0 -13
  151. package/schematics/ng-add/schema.js +0 -2
  152. package/schematics/ng-add/schema.json +0 -34
  153. package/schematics/tsconfig.json +0 -25
  154. package/schematics/utils/lib-details.d.ts +0 -4
  155. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,400 @@
1
+ @mixin active-icon {
2
+ .e-fe-dot,
3
+ .e-fe-tick {
4
+ color: $fe-ddl-icon-color;
5
+ }
6
+ }
7
+
8
+ @mixin active-icon-color {
9
+ .e-btn-icon,
10
+ .e-tbar-btn-text {
11
+ @if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap5' {
12
+ color: $fe-tb-active-color;
13
+ }
14
+ }
15
+ }
16
+
17
+ @mixin hover-icon-border-color {
18
+ @if $fm-skin-name == 'bootstrap-dark' {
19
+ border: 1px solid $fe-tb-hover-border-color;
20
+ }
21
+ }
22
+
23
+ @mixin active-item {
24
+ background: $fe-active-bg-color;
25
+ border-color: $fe-active-border-color;
26
+ }
27
+
28
+ @mixin hover-item($bg-color, $border-color) {
29
+ background: $bg-color;
30
+ border-color: $border-color;
31
+ }
32
+
33
+ @include export-module('FileManager-theme') {
34
+ .e-filemanager {
35
+ background: $fe-background;
36
+ border-color: $fe-border-color;
37
+
38
+ .e-toolbar {
39
+ border-bottom-color: $fe-border-color;
40
+
41
+ .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
42
+ //Based on toolbar active background modify the dropdowns background
43
+ &.e-active {
44
+ @include hover-icon-border-color;
45
+ @include active-icon-color;
46
+ background: $fe-tb-focus-bg;
47
+ border-color: $fe-tb-focus-border-color;
48
+ }
49
+
50
+ &:hover {
51
+ @include hover-icon-border-color;
52
+ background: $fe-tb-focus-bg;
53
+ border-color: $fe-tb-hover-border-color;
54
+ }
55
+
56
+ &:focus {
57
+ @include hover-icon-border-color;
58
+ @include active-icon-color;
59
+ background: $fe-tb-focus-bg;
60
+ border-color: $fe-tb-hover-border-color;
61
+ }
62
+ }
63
+ }
64
+
65
+ @if $fm-skin-name == 'tailwind' {
66
+ .e-navigation {
67
+ &.e-pane {
68
+ background-color: $content-bg-color-alt1;
69
+ }
70
+ }
71
+ }
72
+
73
+ .e-address {
74
+ border-bottom-color: $fe-border-color;
75
+
76
+ .e-breadcrumb-menu .e-breadcrumb-submenu {
77
+ &:active,
78
+ &:focus,
79
+ &:hover {
80
+ @include active-icon-color;
81
+ }
82
+ }
83
+
84
+ .e-icons {
85
+ color: $fe-icon-color;
86
+ }
87
+
88
+ .e-list-text {
89
+ color: $fe-bc-link-color;
90
+ }
91
+
92
+ .e-address-list-item {
93
+ color: $fe-bc-link-color;
94
+
95
+ &:focus .e-list-text {
96
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
97
+ background: $fe-bc-hover-bg-color;
98
+ }
99
+ color: $fe-bc-hover-font-color;
100
+ }
101
+
102
+ &:last-child {
103
+ .e-list-text {
104
+ color: $fe-bc-color;
105
+ }
106
+ }
107
+
108
+ &:not(:last-child) {
109
+
110
+ .e-list-text {
111
+
112
+ &:hover {
113
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
114
+ background: $fe-bc-hover-bg-color;
115
+ }
116
+ color: $fe-bc-hover-font-color;
117
+ }
118
+
119
+ &:active {
120
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
121
+ background: $fe-bc-hover-bg-color;
122
+ }
123
+ color: $fe-bc-hover-font-color;
124
+ }
125
+
126
+ &:focus {
127
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
128
+ background: $fe-bc-hover-bg-color;
129
+ }
130
+ color: $fe-bc-hover-font-color;
131
+ }
132
+ }
133
+ }
134
+ }
135
+
136
+ .e-search-wrap {
137
+ .e-input-group.e-control-wrapper:not(.e-success) {
138
+ background: $fe-search-bg-color;
139
+ border-color: $fe-border-color;
140
+ @if $theme-name == 'fluentui-dark' {
141
+ border-color: $fe-search-border-color;
142
+ }
143
+ }
144
+ }
145
+ }
146
+
147
+ .e-treeview {
148
+ .e-list-item.e-active {
149
+ & > .e-fullrow {
150
+ border: $fe-ah-border-color;
151
+ }
152
+
153
+ &.e-hover > .e-fullrow {
154
+ @if $fm-skin-name == 'material-dark' {
155
+ background-color: $fe-ah-bg-color;
156
+ }
157
+ }
158
+ }
159
+
160
+ .e-list-parent .e-list-item.e-fe-drop-folder.e-hover > .e-fullrow {
161
+ border-color: $fe-drop-folder-bg-color;
162
+ }
163
+ }
164
+
165
+ .e-grid {
166
+
167
+ .e-gridheader {
168
+ @if $fm-skin-name != 'FluentUI' {
169
+ tr:first-child th {
170
+ background: $fe-grid-header-bg-color;
171
+ }
172
+ }
173
+
174
+ .e-headercell {
175
+
176
+ &:not(.e-fe-grid-icon):hover {
177
+ background: $fe-hover-bg-color;
178
+ }
179
+ @if $fm-skin-name == 'FluentUI' {
180
+ &.e-fe-checkbox:hover {
181
+ background: $content-bg-color;
182
+ }
183
+ }
184
+ @else {
185
+ &.e-fe-checkbox:hover {
186
+ background: $fe-grid-header-bg-color;
187
+ }
188
+ }
189
+
190
+ &.e-fe-grid-icon .e-headercelldiv:hover {
191
+ background: $fe-hover-bg-color;
192
+ }
193
+ }
194
+ }
195
+
196
+ .e-empty-inner-content {
197
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
198
+ color: $content-text-color-alt2;
199
+ }
200
+ }
201
+
202
+ .e-rowcell {
203
+ @if $fm-skin-name == 'material-dark' or $fm-skin-name == 'bootstrap-dark' {
204
+ color: $fe-grid-type-color;
205
+
206
+ .e-fe-text {
207
+ color: $fe-grid-text-color;
208
+ }
209
+ }
210
+ }
211
+
212
+ @if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap4' {
213
+ td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
214
+ color: $fe-active-font-color;
215
+ }
216
+ }
217
+
218
+ td.e-active {
219
+ background-color: $fe-active-bg-color;
220
+ @if $fm-skin-name != 'material-dark' {
221
+ color: $fe-active-font-color;
222
+ }
223
+ }
224
+
225
+ tr:hover {
226
+
227
+ td.e-active {
228
+ @if $fm-skin-name == 'material-dark' {
229
+ background-color: $fe-ah-bg-color;
230
+ }
231
+ }
232
+ }
233
+
234
+ .e-checkbox-wrapper {
235
+ .e-icons.e-check {
236
+ @if $fm-skin-name == 'highcontrast' or $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap-dark' or $fm-skin-name == 'bootstrap5' {
237
+ background-color: $fe-checkbox-bg-color;
238
+ color: $fe-checkbox-color;
239
+ }
240
+ }
241
+
242
+ .e-icons.e-stop {
243
+ @if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap5' {
244
+ background-color: $fe-checkbox-bg-color;
245
+ color: $fe-checkbox-color;
246
+ }
247
+ }
248
+ }
249
+
250
+ &.e-gridhover tr[role = 'row']:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
251
+ @if $fm-skin-name == 'material-dark' or $fm-skin-name == 'bootstrap-dark' {
252
+ background-color: $fe-hover-bg-color;
253
+ color: $fe-grid-type-color;
254
+ }
255
+ }
256
+
257
+ &.e-gridhover tr[role = 'row'].e-fe-drop-file:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
258
+ background-color: transparent;
259
+ }
260
+ }
261
+
262
+ .e-large-icons {
263
+
264
+ .e-list-img {
265
+ border-color: $fe-img-border-color;
266
+ }
267
+
268
+ .e-active {
269
+ color: $fe-active-font-color;
270
+ }
271
+
272
+ .e-empty-inner-content {
273
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
274
+ color: $content-text-color-alt2;
275
+ }
276
+ }
277
+
278
+ .e-large-icon {
279
+ border-color: transparent;
280
+
281
+ &.e-active {
282
+ @include active-item;
283
+ }
284
+
285
+ &.e-hover {
286
+ @include hover-item($fe-hover-bg-color, $fe-hover-border-color);
287
+ }
288
+
289
+ &.e-active.e-hover {
290
+ @include hover-item($fe-ah-bg-color, $fe-ah-border-color);
291
+ }
292
+
293
+ &.e-focus {
294
+ border-color: $fe-focus-border-color;
295
+ }
296
+
297
+ &.e-hover.e-fe-drop-folder {
298
+ border-color: $fe-drop-folder-bg-color;
299
+ }
300
+ }
301
+
302
+ .e-checkbox-wrapper {
303
+ .e-icons.e-check {
304
+ background-color: $fe-checkbox-bg-color;
305
+ color: $fe-checkbox-color;
306
+ }
307
+ }
308
+ }
309
+
310
+ .e-fe-clone {
311
+
312
+ .e-fe-content {
313
+ background-color: $fe-clone-bg-color;
314
+ @if $fm-skin-name == 'highcontrast-light' or $fm-skin-name == 'fabric-dark' or $fm-skin-name == 'bootstrap-dark' {
315
+ border-color: $fe-clone-border-color;
316
+ }
317
+ color: $fe-bc-color;
318
+
319
+ @if $fm-skin-name == 'highcontrast' {
320
+ color: $fe-active-font-color;
321
+ }
322
+ }
323
+
324
+ .e-fe-count {
325
+ background-color: $fe-clone-count-bg-color;
326
+ border-color: $fe-clone-count-border-color;
327
+ color: $fe-clone-count-font-color;
328
+ }
329
+ }
330
+
331
+ &.e-fe-mobile {
332
+
333
+ .e-large-icons {
334
+
335
+ .e-large-icon {
336
+
337
+ &.e-hover {
338
+ @include hover-item(transparent, transparent);
339
+ }
340
+
341
+ &.e-focus {
342
+ border-color: transparent;
343
+ }
344
+
345
+ &.e-active {
346
+ @include active-item;
347
+ }
348
+ }
349
+ }
350
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
351
+ .e-address {
352
+ .e-icons {
353
+ color: $icon-color;
354
+
355
+ &:hover {
356
+ color: $icon-color-hover;
357
+ }
358
+ }
359
+ }
360
+ }
361
+ }
362
+ }
363
+
364
+ .e-fe-popup {
365
+
366
+ &.e-dropdown-popup ul .e-item,
367
+ &.e-contextmenu-wrapper ul .e-menu-item,
368
+ &.e-contextmenu-container ul .e-menu-item {
369
+ @include active-icon;
370
+
371
+ &.e-separator {
372
+ @if $fm-skin-name == 'bootstrap4' {
373
+ border-bottom-color: $fe-tb-db-sep-color;
374
+ }
375
+ }
376
+ }
377
+
378
+ &.e-dialog {
379
+
380
+ td {
381
+ color: $fe-text-color;
382
+
383
+ &:first-child {
384
+ color: $fe-label-color;
385
+ }
386
+ }
387
+ }
388
+
389
+ .e-fe-error {
390
+ color: $fe-error-color;
391
+ }
392
+
393
+ .e-upload {
394
+
395
+ .e-upload-actions {
396
+ border-bottom-color: $fe-up-list-border-color;
397
+ }
398
+ }
399
+ }
400
+ }
@@ -1,3 +1,6 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */
3
+ /* stylelint-disable property-no-vendor-prefix */
1
4
  @keyframes material-spinner-rotate {
2
5
  0% {
3
6
  transform: rotate(0);
@@ -14,6 +17,7 @@
14
17
  transform: rotate(360deg);
15
18
  }
16
19
  }
20
+ /* stylelint-disable */
17
21
  /*! FileManager's bootstrap theme wise override definitions and variables */
18
22
  .e-filemanager .e-fe-icon,
19
23
  .e-filemanager .e-list-icon {
@@ -196,6 +200,7 @@
196
200
  content: "\e614";
197
201
  }
198
202
 
203
+ /* stylelint-disable property-no-vendor-prefix */
199
204
  ejs-filemanager {
200
205
  display: block;
201
206
  }
@@ -226,7 +231,7 @@ ejs-filemanager {
226
231
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
227
232
  border: 0;
228
233
  box-shadow: none;
229
- font-weight: 400;
234
+ font-weight: normal;
230
235
  height: calc(100% - 2px);
231
236
  padding: 1px 2.5px;
232
237
  }
@@ -430,7 +435,7 @@ ejs-filemanager {
430
435
  visibility: visible;
431
436
  }
432
437
  .e-filemanager .e-grid .e-content {
433
- overflow-y: auto !important;
438
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
434
439
  }
435
440
  .e-filemanager .e-grid .e-content .e-table {
436
441
  border-spacing: 0;
@@ -473,7 +478,7 @@ ejs-filemanager {
473
478
  text-align: center;
474
479
  }
475
480
  .e-filemanager .e-grid .e-gridpopup {
476
- display: none !important;
481
+ display: none !important; /* stylelint-disable-line declaration-no-important */
477
482
  }
478
483
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
479
484
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -539,10 +544,10 @@ ejs-filemanager {
539
544
  width: 18px;
540
545
  }
541
546
  .e-filemanager .e-view-container .e-grid .e-gridheader {
542
- padding-right: 0 !important;
547
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
543
548
  }
544
549
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
545
- padding-left: 0 !important;
550
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
546
551
  }
547
552
  .e-filemanager .e-large-icons {
548
553
  float: left;
@@ -1 +1,16 @@
1
- @import 'ej2-filemanager/styles/file-manager/bootstrap-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap-dark-definition.scss';
2
+ @import 'ej2-inputs/styles/input/bootstrap-dark-definition.scss';
3
+ @import 'ej2-inputs/styles/textbox/bootstrap-dark-definition.scss';
4
+ @import 'ej2-inputs/styles/uploader/bootstrap-dark-definition.scss';
5
+ @import 'ej2-popups/styles/dialog/bootstrap-dark-definition.scss';
6
+ @import 'ej2-popups/styles/spinner/bootstrap-dark-definition.scss';
7
+ @import 'ej2-buttons/styles/check-box/bootstrap-dark-definition.scss';
8
+ @import 'ej2-splitbuttons/styles/drop-down-button/bootstrap-dark-definition.scss';
9
+ @import 'ej2-navigations/styles/context-menu/bootstrap-dark-definition.scss';
10
+ @import 'ej2-navigations/styles/treeview/bootstrap-dark-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/bootstrap-dark-definition.scss';
12
+ @import 'ej2-layouts/styles/splitter/bootstrap-dark-definition.scss';
13
+ @import 'ej2-grids/styles/grid/bootstrap-dark-definition.scss';
14
+ @import 'bootstrap-dark-definition.scss';
15
+ @import 'icons/bootstrap-dark.scss';
16
+ @import 'all.scss';
@@ -1,3 +1,6 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */
3
+ /* stylelint-disable property-no-vendor-prefix */
1
4
  @keyframes material-spinner-rotate {
2
5
  0% {
3
6
  transform: rotate(0);
@@ -14,7 +17,9 @@
14
17
  transform: rotate(360deg);
15
18
  }
16
19
  }
17
- /*! TreeView's bootstrap theme wise override definitions and variables */ /*! component's theme wise override definitions and variables */ /*! FileManager's bootstrap theme wise override definitions and variables */
20
+ /*! TreeView's bootstrap theme wise override definitions and variables */
21
+ /* stylelint-disable */
22
+ /*! component's theme wise override definitions and variables */ /*! FileManager's bootstrap theme wise override definitions and variables */
18
23
  .e-filemanager .e-fe-icon,
19
24
  .e-filemanager .e-list-icon {
20
25
  background-repeat: no-repeat;
@@ -196,6 +201,7 @@
196
201
  content: "\e614";
197
202
  }
198
203
 
204
+ /* stylelint-disable property-no-vendor-prefix */
199
205
  ejs-filemanager {
200
206
  display: block;
201
207
  }
@@ -226,7 +232,7 @@ ejs-filemanager {
226
232
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
227
233
  border: 0;
228
234
  box-shadow: none;
229
- font-weight: 400;
235
+ font-weight: normal;
230
236
  height: calc(100% - 2px);
231
237
  padding: 1px 2.5px;
232
238
  }
@@ -430,7 +436,7 @@ ejs-filemanager {
430
436
  visibility: visible;
431
437
  }
432
438
  .e-filemanager .e-grid .e-content {
433
- overflow-y: auto !important;
439
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
434
440
  }
435
441
  .e-filemanager .e-grid .e-content .e-table {
436
442
  border-spacing: 0;
@@ -473,7 +479,7 @@ ejs-filemanager {
473
479
  text-align: center;
474
480
  }
475
481
  .e-filemanager .e-grid .e-gridpopup {
476
- display: none !important;
482
+ display: none !important; /* stylelint-disable-line declaration-no-important */
477
483
  }
478
484
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
479
485
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -539,10 +545,10 @@ ejs-filemanager {
539
545
  width: 18px;
540
546
  }
541
547
  .e-filemanager .e-view-container .e-grid .e-gridheader {
542
- padding-right: 0 !important;
548
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
543
549
  }
544
550
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
545
- padding-left: 0 !important;
551
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
546
552
  }
547
553
  .e-filemanager .e-large-icons {
548
554
  float: left;
@@ -1 +1,16 @@
1
- @import 'ej2-filemanager/styles/file-manager/bootstrap.scss';
1
+ @import 'ej2-base/styles/bootstrap-definition.scss';
2
+ @import 'ej2-inputs/styles/input/bootstrap-definition.scss';
3
+ @import 'ej2-inputs/styles/textbox/bootstrap-definition.scss';
4
+ @import 'ej2-inputs/styles/uploader/bootstrap-definition.scss';
5
+ @import 'ej2-popups/styles/dialog/bootstrap-definition.scss';
6
+ @import 'ej2-popups/styles/spinner/bootstrap-definition.scss';
7
+ @import 'ej2-buttons/styles/check-box/bootstrap-definition.scss';
8
+ @import 'ej2-splitbuttons/styles/drop-down-button/bootstrap-definition.scss';
9
+ @import 'ej2-navigations/styles/context-menu/bootstrap-definition.scss';
10
+ @import 'ej2-navigations/styles/treeview/bootstrap-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/bootstrap-definition.scss';
12
+ @import 'ej2-layouts/styles/splitter/bootstrap-definition.scss';
13
+ @import 'ej2-grids/styles/grid/bootstrap-definition.scss';
14
+ @import 'bootstrap-definition.scss';
15
+ @import 'icons/bootstrap.scss';
16
+ @import 'all.scss';
@@ -1,3 +1,6 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */
3
+ /* stylelint-disable property-no-vendor-prefix */
1
4
  @keyframes material-spinner-rotate {
2
5
  0% {
3
6
  transform: rotate(0);
@@ -14,6 +17,7 @@
14
17
  transform: rotate(360deg);
15
18
  }
16
19
  }
20
+ /* stylelint-disable */
17
21
  /*! FileManager's bootstrap theme wise override definitions and variables */
18
22
  .e-filemanager .e-fe-icon,
19
23
  .e-filemanager .e-list-icon {
@@ -196,6 +200,7 @@
196
200
  content: "\e718";
197
201
  }
198
202
 
203
+ /* stylelint-disable property-no-vendor-prefix */
199
204
  ejs-filemanager {
200
205
  display: block;
201
206
  }
@@ -226,7 +231,7 @@ ejs-filemanager {
226
231
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
227
232
  border: 0;
228
233
  box-shadow: none;
229
- font-weight: 400;
234
+ font-weight: normal;
230
235
  height: calc(100% - 2px);
231
236
  padding: 1px 2.5px;
232
237
  }
@@ -430,7 +435,7 @@ ejs-filemanager {
430
435
  visibility: visible;
431
436
  }
432
437
  .e-filemanager .e-grid .e-content {
433
- overflow-y: auto !important;
438
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
434
439
  }
435
440
  .e-filemanager .e-grid .e-content .e-table {
436
441
  border-spacing: 0;
@@ -473,7 +478,7 @@ ejs-filemanager {
473
478
  text-align: center;
474
479
  }
475
480
  .e-filemanager .e-grid .e-gridpopup {
476
- display: none !important;
481
+ display: none !important; /* stylelint-disable-line declaration-no-important */
477
482
  }
478
483
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
479
484
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -539,10 +544,10 @@ ejs-filemanager {
539
544
  width: 18px;
540
545
  }
541
546
  .e-filemanager .e-view-container .e-grid .e-gridheader {
542
- padding-right: 0 !important;
547
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
543
548
  }
544
549
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
545
- padding-left: 0 !important;
550
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
546
551
  }
547
552
  .e-filemanager .e-large-icons {
548
553
  float: left;
@@ -1 +1,16 @@
1
- @import 'ej2-filemanager/styles/file-manager/bootstrap4.scss';
1
+ @import 'ej2-base/styles/bootstrap4-definition.scss';
2
+ @import 'ej2-inputs/styles/input/bootstrap4-definition.scss';
3
+ @import 'ej2-inputs/styles/textbox/bootstrap4-definition.scss';
4
+ @import 'ej2-inputs/styles/uploader/bootstrap4-definition.scss';
5
+ @import 'ej2-popups/styles/dialog/bootstrap4-definition.scss';
6
+ @import 'ej2-popups/styles/spinner/bootstrap4-definition.scss';
7
+ @import 'ej2-buttons/styles/check-box/bootstrap4-definition.scss';
8
+ @import 'ej2-splitbuttons/styles/drop-down-button/bootstrap4-definition.scss';
9
+ @import 'ej2-navigations/styles/context-menu/bootstrap4-definition.scss';
10
+ @import 'ej2-navigations/styles/treeview/bootstrap4-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/bootstrap4-definition.scss';
12
+ @import 'ej2-layouts/styles/splitter/bootstrap4-definition.scss';
13
+ @import 'ej2-grids/styles/grid/bootstrap4-definition.scss';
14
+ @import 'bootstrap4-definition.scss';
15
+ @import 'icons/bootstrap4.scss';
16
+ @import 'all.scss';