@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
@@ -1,10 +1,13 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ /* stylelint-disable-line no-empty-source */
2
4
  .e-upload .e-upload-actions,
3
5
  .e-bigger.e-small .e-upload .e-upload-actions {
4
6
  background-color: #f9fafb;
5
7
  border-radius: 0 0 6px 6px;
6
8
  }
7
9
 
10
+ /* stylelint-disable property-no-vendor-prefix */
8
11
  @keyframes material-spinner-rotate {
9
12
  0% {
10
13
  transform: rotate(0);
@@ -21,7 +24,9 @@
21
24
  transform: rotate(360deg);
22
25
  }
23
26
  }
24
- /*! TreeView's tailwind theme wise override definitions and variables */ /*! FileManager's tailwind theme wise override definitions and variables */
27
+ /*! TreeView's tailwind theme wise override definitions and variables */
28
+ /* stylelint-disable */
29
+ /*! FileManager's tailwind theme wise override definitions and variables */
25
30
  .e-filemanager .e-fe-icon,
26
31
  .e-filemanager .e-list-icon {
27
32
  background-repeat: no-repeat;
@@ -203,6 +208,7 @@
203
208
  content: "\e774";
204
209
  }
205
210
 
211
+ /* stylelint-disable property-no-vendor-prefix */
206
212
  ejs-filemanager {
207
213
  display: block;
208
214
  }
@@ -233,7 +239,7 @@ ejs-filemanager {
233
239
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
234
240
  border: 0;
235
241
  box-shadow: none;
236
- font-weight: 400;
242
+ font-weight: normal;
237
243
  height: calc(100% - 10px);
238
244
  padding: 0;
239
245
  }
@@ -440,7 +446,7 @@ ejs-filemanager {
440
446
  visibility: visible;
441
447
  }
442
448
  .e-filemanager .e-grid .e-content {
443
- overflow-y: auto !important;
449
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
444
450
  }
445
451
  .e-filemanager .e-grid .e-content .e-table {
446
452
  border-spacing: 0;
@@ -491,7 +497,7 @@ ejs-filemanager {
491
497
  text-align: center;
492
498
  }
493
499
  .e-filemanager .e-grid .e-gridpopup {
494
- display: none !important;
500
+ display: none !important; /* stylelint-disable-line declaration-no-important */
495
501
  }
496
502
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
497
503
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -544,10 +550,10 @@ ejs-filemanager {
544
550
  width: 20px;
545
551
  }
546
552
  .e-filemanager .e-view-container .e-grid .e-gridheader {
547
- padding-right: 0 !important;
553
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
548
554
  }
549
555
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
550
- padding-left: 0 !important;
556
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
551
557
  }
552
558
  .e-filemanager .e-large-icons {
553
559
  float: left;
@@ -1 +1,16 @@
1
- @import 'ej2-filemanager/styles/file-manager/tailwind.scss';
1
+ @import 'ej2-base/styles/tailwind-definition.scss';
2
+ @import 'ej2-inputs/styles/input/tailwind-definition.scss';
3
+ @import 'ej2-inputs/styles/textbox/tailwind-definition.scss';
4
+ @import 'ej2-inputs/styles/uploader/tailwind-definition.scss';
5
+ @import 'ej2-popups/styles/dialog/tailwind-definition.scss';
6
+ @import 'ej2-popups/styles/spinner/tailwind-definition.scss';
7
+ @import 'ej2-buttons/styles/check-box/tailwind-definition.scss';
8
+ @import 'ej2-splitbuttons/styles/drop-down-button/tailwind-definition.scss';
9
+ @import 'ej2-navigations/styles/context-menu/tailwind-definition.scss';
10
+ @import 'ej2-navigations/styles/treeview/tailwind-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/tailwind-definition.scss';
12
+ @import 'ej2-layouts/styles/splitter/tailwind-definition.scss';
13
+ @import 'ej2-grids/styles/grid/tailwind-definition.scss';
14
+ @import 'tailwind-definition.scss';
15
+ @import 'icons/tailwind.scss';
16
+ @import 'all.scss';
@@ -1,9 +1,12 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */
1
3
  .e-upload .e-upload-actions,
2
4
  .e-bigger.e-small .e-upload .e-upload-actions {
3
5
  background-color: transparent;
4
6
  border-radius: 0 0 6px 6px;
5
7
  }
6
8
 
9
+ /* stylelint-disable property-no-vendor-prefix */
7
10
  @keyframes material-spinner-rotate {
8
11
  0% {
9
12
  transform: rotate(0);
@@ -20,7 +23,9 @@
20
23
  transform: rotate(360deg);
21
24
  }
22
25
  }
23
- /*! TreeView's bootstrap5 theme wise override definitions and variables */ /*! FileManager's tailwind theme wise override definitions and variables */
26
+ /*! TreeView's bootstrap5 theme wise override definitions and variables */
27
+ /* stylelint-disable */
28
+ /*! FileManager's tailwind theme wise override definitions and variables */
24
29
  .e-filemanager .e-fe-icon,
25
30
  .e-filemanager .e-list-icon {
26
31
  background-repeat: no-repeat;
@@ -202,6 +207,7 @@
202
207
  content: "\e774";
203
208
  }
204
209
 
210
+ /* stylelint-disable property-no-vendor-prefix */
205
211
  ejs-filemanager {
206
212
  display: block;
207
213
  }
@@ -232,7 +238,7 @@ ejs-filemanager {
232
238
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
233
239
  border: 0;
234
240
  box-shadow: none;
235
- font-weight: 400;
241
+ font-weight: normal;
236
242
  height: calc(100% - 18px);
237
243
  padding: 0;
238
244
  }
@@ -441,7 +447,7 @@ ejs-filemanager {
441
447
  font-size: 10px;
442
448
  }
443
449
  .e-filemanager .e-grid .e-content {
444
- overflow-y: auto !important;
450
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
445
451
  }
446
452
  .e-filemanager .e-grid .e-content .e-table {
447
453
  border-spacing: 0;
@@ -485,7 +491,7 @@ ejs-filemanager {
485
491
  text-align: center;
486
492
  }
487
493
  .e-filemanager .e-grid .e-gridpopup {
488
- display: none !important;
494
+ display: none !important; /* stylelint-disable-line declaration-no-important */
489
495
  }
490
496
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
491
497
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -542,10 +548,10 @@ ejs-filemanager {
542
548
  width: 20px;
543
549
  }
544
550
  .e-filemanager .e-view-container .e-grid .e-gridheader {
545
- padding-right: 0 !important;
551
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
546
552
  }
547
553
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
548
- padding-left: 0 !important;
554
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
549
555
  }
550
556
  .e-filemanager .e-large-icons {
551
557
  float: left;
package/styles/fluent.css CHANGED
@@ -1,9 +1,12 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */
1
3
  .e-upload .e-upload-actions,
2
4
  .e-bigger.e-small .e-upload .e-upload-actions {
3
5
  background-color: transparent;
4
6
  border-radius: 0 0 6px 6px;
5
7
  }
6
8
 
9
+ /* stylelint-disable property-no-vendor-prefix */
7
10
  @keyframes material-spinner-rotate {
8
11
  0% {
9
12
  transform: rotate(0);
@@ -20,7 +23,9 @@
20
23
  transform: rotate(360deg);
21
24
  }
22
25
  }
23
- /*! TreeView's bootstrap5 theme wise override definitions and variables */ /*! FileManager's tailwind theme wise override definitions and variables */
26
+ /*! TreeView's bootstrap5 theme wise override definitions and variables */
27
+ /* stylelint-disable */
28
+ /*! FileManager's tailwind theme wise override definitions and variables */
24
29
  .e-filemanager .e-fe-icon,
25
30
  .e-filemanager .e-list-icon {
26
31
  background-repeat: no-repeat;
@@ -202,6 +207,7 @@
202
207
  content: "\e774";
203
208
  }
204
209
 
210
+ /* stylelint-disable property-no-vendor-prefix */
205
211
  ejs-filemanager {
206
212
  display: block;
207
213
  }
@@ -232,7 +238,7 @@ ejs-filemanager {
232
238
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
233
239
  border: 0;
234
240
  box-shadow: none;
235
- font-weight: 400;
241
+ font-weight: normal;
236
242
  height: calc(100% - 18px);
237
243
  padding: 0;
238
244
  }
@@ -441,7 +447,7 @@ ejs-filemanager {
441
447
  font-size: 10px;
442
448
  }
443
449
  .e-filemanager .e-grid .e-content {
444
- overflow-y: auto !important;
450
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
445
451
  }
446
452
  .e-filemanager .e-grid .e-content .e-table {
447
453
  border-spacing: 0;
@@ -485,7 +491,7 @@ ejs-filemanager {
485
491
  text-align: center;
486
492
  }
487
493
  .e-filemanager .e-grid .e-gridpopup {
488
- display: none !important;
494
+ display: none !important; /* stylelint-disable-line declaration-no-important */
489
495
  }
490
496
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
491
497
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -542,10 +548,10 @@ ejs-filemanager {
542
548
  width: 20px;
543
549
  }
544
550
  .e-filemanager .e-view-container .e-grid .e-gridheader {
545
- padding-right: 0 !important;
551
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
546
552
  }
547
553
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
548
- padding-left: 0 !important;
554
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
549
555
  }
550
556
  .e-filemanager .e-large-icons {
551
557
  float: left;
@@ -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 highcontrast 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: inherit;
231
236
  padding: 0;
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,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 high contrast theme wise override definitions and variables */ /*! FileManager's highcontrast theme wise override definitions and variables */
20
+ /*! TreeView's high contrast theme wise override definitions and variables */
21
+ /* stylelint-disable */
22
+ /*! FileManager's highcontrast 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;
@@ -192,6 +197,7 @@
192
197
  content: "\e614";
193
198
  }
194
199
 
200
+ /* stylelint-disable property-no-vendor-prefix */
195
201
  ejs-filemanager {
196
202
  display: block;
197
203
  }
@@ -222,7 +228,7 @@ ejs-filemanager {
222
228
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
223
229
  border: 0;
224
230
  box-shadow: none;
225
- font-weight: 400;
231
+ font-weight: normal;
226
232
  height: inherit;
227
233
  padding: 0;
228
234
  }
@@ -426,7 +432,7 @@ ejs-filemanager {
426
432
  visibility: visible;
427
433
  }
428
434
  .e-filemanager .e-grid .e-content {
429
- overflow-y: auto !important;
435
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
430
436
  }
431
437
  .e-filemanager .e-grid .e-content .e-table {
432
438
  border-spacing: 0;
@@ -469,7 +475,7 @@ ejs-filemanager {
469
475
  text-align: center;
470
476
  }
471
477
  .e-filemanager .e-grid .e-gridpopup {
472
- display: none !important;
478
+ display: none !important; /* stylelint-disable-line declaration-no-important */
473
479
  }
474
480
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
475
481
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -535,10 +541,10 @@ ejs-filemanager {
535
541
  width: 18px;
536
542
  }
537
543
  .e-filemanager .e-view-container .e-grid .e-gridheader {
538
- padding-right: 0 !important;
544
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
539
545
  }
540
546
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
541
- padding-left: 0 !important;
547
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
542
548
  }
543
549
  .e-filemanager .e-large-icons {
544
550
  float: left;
@@ -1,10 +1,13 @@
1
1
  @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
2
+ /* stylelint-disable property-no-vendor-prefix */
2
3
  @keyframes e-input-ripple {
3
4
  100% {
4
5
  opacity: 0;
5
6
  transform: scale(4);
6
7
  }
7
8
  }
9
+ /* stylelint-disable-line no-empty-source */
10
+ /* stylelint-disable property-no-vendor-prefix */
8
11
  @keyframes material-spinner-rotate {
9
12
  0% {
10
13
  transform: rotate(0deg);
@@ -21,6 +24,7 @@
21
24
  transform: rotate(360deg);
22
25
  }
23
26
  }
27
+ /* stylelint-disable */
24
28
  @keyframes tbar-popup-shadow {
25
29
  0% {
26
30
  border-color: rgba(255, 255, 255, 0.5);
@@ -212,6 +216,7 @@
212
216
  content: "\e614";
213
217
  }
214
218
 
219
+ /* stylelint-disable property-no-vendor-prefix */
215
220
  ejs-filemanager {
216
221
  display: block;
217
222
  }
@@ -242,7 +247,7 @@ ejs-filemanager {
242
247
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
243
248
  border: 0;
244
249
  box-shadow: none;
245
- font-weight: 400;
250
+ font-weight: normal;
246
251
  height: calc(100% - 10px);
247
252
  padding: 0;
248
253
  }
@@ -450,7 +455,7 @@ ejs-filemanager {
450
455
  visibility: visible;
451
456
  }
452
457
  .e-filemanager .e-grid .e-content {
453
- overflow-y: auto !important;
458
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
454
459
  }
455
460
  .e-filemanager .e-grid .e-content .e-table {
456
461
  border-spacing: 0;
@@ -493,7 +498,7 @@ ejs-filemanager {
493
498
  text-align: center;
494
499
  }
495
500
  .e-filemanager .e-grid .e-gridpopup {
496
- display: none !important;
501
+ display: none !important; /* stylelint-disable-line declaration-no-important */
497
502
  }
498
503
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
499
504
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -559,10 +564,10 @@ ejs-filemanager {
559
564
  width: 18px;
560
565
  }
561
566
  .e-filemanager .e-view-container .e-grid .e-gridheader {
562
- padding-right: 0 !important;
567
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
563
568
  }
564
569
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
565
- padding-left: 0 !important;
570
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
566
571
  }
567
572
  .e-filemanager .e-large-icons {
568
573
  float: left;
@@ -1,4 +1,5 @@
1
1
  @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
2
+ /* stylelint-disable property-no-vendor-prefix */
2
3
  @keyframes e-input-ripple {
3
4
  100% {
4
5
  opacity: 0;
@@ -13,6 +14,8 @@
13
14
  transform: translate3d(0, 0, 0) scale(1);
14
15
  }
15
16
  }
17
+ /* stylelint-disable-line no-empty-source */
18
+ /* stylelint-disable property-no-vendor-prefix */
16
19
  @keyframes material-spinner-rotate {
17
20
  0% {
18
21
  transform: rotate(0deg);
@@ -29,7 +32,9 @@
29
32
  transform: rotate(360deg);
30
33
  }
31
34
  }
32
- /*! TreeView's material theme wise override definitions and variables */ /*! component's theme wise override definitions and variables */
35
+ /*! TreeView's material theme wise override definitions and variables */
36
+ /* stylelint-disable */
37
+ /*! component's theme wise override definitions and variables */
33
38
  @keyframes tbar-popup-shadow {
34
39
  0% {
35
40
  border-color: rgba(255, 255, 255, 0.5);
@@ -221,6 +226,7 @@
221
226
  content: "\e614";
222
227
  }
223
228
 
229
+ /* stylelint-disable property-no-vendor-prefix */
224
230
  ejs-filemanager {
225
231
  display: block;
226
232
  }
@@ -251,7 +257,7 @@ ejs-filemanager {
251
257
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
252
258
  border: 0;
253
259
  box-shadow: none;
254
- font-weight: 400;
260
+ font-weight: normal;
255
261
  height: calc(100% - 10px);
256
262
  padding: 0;
257
263
  }
@@ -456,7 +462,7 @@ ejs-filemanager {
456
462
  visibility: visible;
457
463
  }
458
464
  .e-filemanager .e-grid .e-content {
459
- overflow-y: auto !important;
465
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
460
466
  }
461
467
  .e-filemanager .e-grid .e-content .e-table {
462
468
  border-spacing: 0;
@@ -499,7 +505,7 @@ ejs-filemanager {
499
505
  text-align: center;
500
506
  }
501
507
  .e-filemanager .e-grid .e-gridpopup {
502
- display: none !important;
508
+ display: none !important; /* stylelint-disable-line declaration-no-important */
503
509
  }
504
510
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
505
511
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -565,10 +571,10 @@ ejs-filemanager {
565
571
  width: 18px;
566
572
  }
567
573
  .e-filemanager .e-view-container .e-grid .e-gridheader {
568
- padding-right: 0 !important;
574
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
569
575
  }
570
576
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
571
- padding-left: 0 !important;
577
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
572
578
  }
573
579
  .e-filemanager .e-large-icons {
574
580
  float: left;
@@ -1,10 +1,13 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ /* stylelint-disable-line no-empty-source */
2
4
  .e-upload .e-upload-actions,
3
5
  .e-bigger.e-small .e-upload .e-upload-actions {
4
6
  background-color: #232e3e;
5
7
  border-radius: 0 0 6px 6px;
6
8
  }
7
9
 
10
+ /* stylelint-disable property-no-vendor-prefix */
8
11
  @keyframes material-spinner-rotate {
9
12
  0% {
10
13
  transform: rotate(0);
@@ -21,7 +24,9 @@
21
24
  transform: rotate(360deg);
22
25
  }
23
26
  }
24
- /*! TreeView's tailwind theme wise override definitions and variables */ /*! FileManager's tailwind theme wise override definitions and variables */
27
+ /*! TreeView's tailwind theme wise override definitions and variables */
28
+ /* stylelint-disable */
29
+ /*! FileManager's tailwind theme wise override definitions and variables */
25
30
  .e-filemanager .e-fe-icon,
26
31
  .e-filemanager .e-list-icon {
27
32
  background-repeat: no-repeat;
@@ -203,6 +208,7 @@
203
208
  content: "\e774";
204
209
  }
205
210
 
211
+ /* stylelint-disable property-no-vendor-prefix */
206
212
  ejs-filemanager {
207
213
  display: block;
208
214
  }
@@ -233,7 +239,7 @@ ejs-filemanager {
233
239
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
234
240
  border: 0;
235
241
  box-shadow: none;
236
- font-weight: 400;
242
+ font-weight: normal;
237
243
  height: calc(100% - 10px);
238
244
  padding: 0;
239
245
  }
@@ -440,7 +446,7 @@ ejs-filemanager {
440
446
  visibility: visible;
441
447
  }
442
448
  .e-filemanager .e-grid .e-content {
443
- overflow-y: auto !important;
449
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
444
450
  }
445
451
  .e-filemanager .e-grid .e-content .e-table {
446
452
  border-spacing: 0;
@@ -491,7 +497,7 @@ ejs-filemanager {
491
497
  text-align: center;
492
498
  }
493
499
  .e-filemanager .e-grid .e-gridpopup {
494
- display: none !important;
500
+ display: none !important; /* stylelint-disable-line declaration-no-important */
495
501
  }
496
502
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
497
503
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -544,10 +550,10 @@ ejs-filemanager {
544
550
  width: 20px;
545
551
  }
546
552
  .e-filemanager .e-view-container .e-grid .e-gridheader {
547
- padding-right: 0 !important;
553
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
548
554
  }
549
555
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
550
- padding-left: 0 !important;
556
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
551
557
  }
552
558
  .e-filemanager .e-large-icons {
553
559
  float: left;
@@ -1,10 +1,13 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ /* stylelint-disable-line no-empty-source */
2
4
  .e-upload .e-upload-actions,
3
5
  .e-bigger.e-small .e-upload .e-upload-actions {
4
6
  background-color: #f9fafb;
5
7
  border-radius: 0 0 6px 6px;
6
8
  }
7
9
 
10
+ /* stylelint-disable property-no-vendor-prefix */
8
11
  @keyframes material-spinner-rotate {
9
12
  0% {
10
13
  transform: rotate(0);
@@ -21,7 +24,9 @@
21
24
  transform: rotate(360deg);
22
25
  }
23
26
  }
24
- /*! TreeView's tailwind theme wise override definitions and variables */ /*! FileManager's tailwind theme wise override definitions and variables */
27
+ /*! TreeView's tailwind theme wise override definitions and variables */
28
+ /* stylelint-disable */
29
+ /*! FileManager's tailwind theme wise override definitions and variables */
25
30
  .e-filemanager .e-fe-icon,
26
31
  .e-filemanager .e-list-icon {
27
32
  background-repeat: no-repeat;
@@ -203,6 +208,7 @@
203
208
  content: "\e774";
204
209
  }
205
210
 
211
+ /* stylelint-disable property-no-vendor-prefix */
206
212
  ejs-filemanager {
207
213
  display: block;
208
214
  }
@@ -233,7 +239,7 @@ ejs-filemanager {
233
239
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
234
240
  border: 0;
235
241
  box-shadow: none;
236
- font-weight: 400;
242
+ font-weight: normal;
237
243
  height: calc(100% - 10px);
238
244
  padding: 0;
239
245
  }
@@ -440,7 +446,7 @@ ejs-filemanager {
440
446
  visibility: visible;
441
447
  }
442
448
  .e-filemanager .e-grid .e-content {
443
- overflow-y: auto !important;
449
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
444
450
  }
445
451
  .e-filemanager .e-grid .e-content .e-table {
446
452
  border-spacing: 0;
@@ -491,7 +497,7 @@ ejs-filemanager {
491
497
  text-align: center;
492
498
  }
493
499
  .e-filemanager .e-grid .e-gridpopup {
494
- display: none !important;
500
+ display: none !important; /* stylelint-disable-line declaration-no-important */
495
501
  }
496
502
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
497
503
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -544,10 +550,10 @@ ejs-filemanager {
544
550
  width: 20px;
545
551
  }
546
552
  .e-filemanager .e-view-container .e-grid .e-gridheader {
547
- padding-right: 0 !important;
553
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
548
554
  }
549
555
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
550
- padding-left: 0 !important;
556
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
551
557
  }
552
558
  .e-filemanager .e-large-icons {
553
559
  float: left;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-filemanager" />
5
+ export * from './public_api';