@syncfusion/ej2-angular-filemanager 20.2.38-ngcc → 20.2.39

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 +27 -13
  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 +15 -9
  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 +15 -9
  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 -462
  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 -124
  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 -124
  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 -124
  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 -124
  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 @@
1
+ {"version":3,"file":"syncfusion-ej2-angular-filemanager.mjs","sources":["../../src/file-manager/filemanager.component.ts","../../src/file-manager/filemanager.module.ts","../../src/file-manager/filemanager-all.module.ts","../../public_api.ts","../../syncfusion-ej2-angular-filemanager.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { FileManager } from '@syncfusion/ej2-filemanager';\n\n\n\nexport const inputs: string[] = ['ajaxSettings','allowDragAndDrop','allowMultiSelection','contextMenuSettings','cssClass','detailsViewSettings','enableHtmlSanitizer','enablePersistence','enableRtl','height','locale','navigationPaneSettings','path','popupTarget','rootAliasName','searchSettings','selectedItems','showFileExtension','showHiddenItems','showThumbnail','sortBy','sortOrder','toolbarSettings','uploadSettings','view','width'];\nexport const outputs: string[] = ['beforeDownload','beforeImageLoad','beforePopupClose','beforePopupOpen','beforeSend','created','destroyed','failure','fileDragStart','fileDragStop','fileDragging','fileDropped','fileLoad','fileOpen','fileSelect','fileSelection','menuClick','menuOpen','popupClose','popupOpen','success','toolbarClick','toolbarCreate','uploadListCreate'];\nexport const twoWays: string[] = [''];\n\n/**\n * Represents the Essential JS 2 Angular FileManager Component.\n * ```html\n * <ejs-filemanager showThumbnail='false'></ejs-filemanager>\n * ```\n */\n@Component({\n selector: 'ejs-filemanager',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class FileManagerComponent extends FileManager implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tbeforeDownload: any;\n\tbeforeImageLoad: any;\n\tbeforePopupClose: any;\n\tbeforePopupOpen: any;\n\tbeforeSend: any;\n\tcreated: any;\n\tdestroyed: any;\n\tfailure: any;\n\tfileDragStart: any;\n\tfileDragStop: any;\n\tfileDragging: any;\n\tfileDropped: any;\n\tfileLoad: any;\n\tfileOpen: any;\n\tfileSelect: any;\n\tfileSelection: any;\n\tmenuClick: any;\n\tmenuOpen: any;\n\tpopupClose: any;\n\tpopupOpen: any;\n\tsuccess: any;\n\ttoolbarClick: any;\n\ttoolbarCreate: any;\n\tpublic uploadListCreate: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('FileManagerDetailsView');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('FileManagerNavigationPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('FileManagerLargeIconsView');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('FileManagerToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('FileManagerContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('FileManagerBreadCrumbBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FileManagerComponent } from './filemanager.component';\n\n/**\n * NgModule definition for the FileManager component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n FileManagerComponent\n ],\n exports: [\n FileManagerComponent\n ]\n})\nexport class FileManagerModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FileManagerComponent } from './filemanager.component';\nimport { FileManagerModule } from './filemanager.module';\nimport {DetailsView, NavigationPane, LargeIconsView, Toolbar, ContextMenu, BreadCrumbBar} from '@syncfusion/ej2-filemanager'\n\n\nexport const DetailsViewService: ValueProvider = { provide: 'FileManagerDetailsView', useValue: DetailsView};\nexport const NavigationPaneService: ValueProvider = { provide: 'FileManagerNavigationPane', useValue: NavigationPane};\nexport const LargeIconsViewService: ValueProvider = { provide: 'FileManagerLargeIconsView', useValue: LargeIconsView};\nexport const ToolbarService: ValueProvider = { provide: 'FileManagerToolbar', useValue: Toolbar};\nexport const ContextMenuService: ValueProvider = { provide: 'FileManagerContextMenu', useValue: ContextMenu};\nexport const BreadCrumbBarService: ValueProvider = { provide: 'FileManagerBreadCrumbBar', useValue: BreadCrumbBar};\n\n/**\n * NgModule definition for the FileManager component with providers.\n */\n@NgModule({\n imports: [CommonModule, FileManagerModule],\n exports: [\n FileManagerModule\n ],\n providers:[\n DetailsViewService,\n NavigationPaneService,\n LargeIconsViewService,\n ToolbarService,\n ContextMenuService,\n BreadCrumbBarService\n ]\n})\nexport class FileManagerAllModule { }","// Mapping root file for package generation\nexport * from './src/index';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-filemanager@*",
3
- "_id": "@syncfusion/ej2-angular-filemanager@20.1.60",
3
+ "_id": "@syncfusion/ej2-angular-filemanager@20.1.59",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-ORlEuNsMpQ1BReK/DzSy44oFtiMJXUSHPj7qfDC3pUVvd/dJ+bXJFGPiuN7w4s20aNxuGEMOlpNdIVqOYRe2EQ==",
5
+ "_integrity": "sha512-C2x6eKYBD5LyP/KGbvkg/KrH3Y/VBp+m+aAe6OTHewkBZmM7isr7v3dww4fiUpMlqvCcm+RtRMtLFAcFJ3VdRw==",
6
6
  "_location": "/@syncfusion/ej2-angular-filemanager",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,10 +19,10 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-filemanager/-/ej2-angular-filemanager-20.1.60.tgz",
23
- "_shasum": "5ef6909ad8207ae00ff9c668394f0208ecda2712",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-angular-development/@syncfusion/ej2-angular-filemanager/-/ej2-angular-filemanager-20.1.59.tgz",
23
+ "_shasum": "db1b4dcbab1273783cb3d1eab646ba5433540e1e",
24
24
  "_spec": "@syncfusion/ej2-angular-filemanager@*",
25
- "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
25
+ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/ivypackages/included",
26
26
  "author": {
27
27
  "name": "Syncfusion Inc."
28
28
  },
@@ -33,12 +33,28 @@
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-angular-base": "~20.2.38",
35
35
  "@syncfusion/ej2-base": "~20.2.38",
36
- "@syncfusion/ej2-filemanager": "20.2.38"
36
+ "@syncfusion/ej2-filemanager": "20.2.39",
37
+ "tslib": "^2.3.0"
37
38
  },
38
39
  "deprecated": false,
39
40
  "description": "Essential JS 2 FileManager Component for Angular",
40
- "devDependencies": {},
41
- "es2015": "@syncfusion/ej2-angular-filemanager.js",
41
+ "es2020": "fesm2020/syncfusion-ej2-angular-filemanager.mjs",
42
+ "esm2020": "esm2020/syncfusion-ej2-angular-filemanager.mjs",
43
+ "exports": {
44
+ "./package.json": {
45
+ "default": "./package.json"
46
+ },
47
+ ".": {
48
+ "types": "./syncfusion-ej2-angular-filemanager.d.ts",
49
+ "esm2020": "./esm2020/syncfusion-ej2-angular-filemanager.mjs",
50
+ "es2020": "./fesm2020/syncfusion-ej2-angular-filemanager.mjs",
51
+ "es2015": "./fesm2015/syncfusion-ej2-angular-filemanager.mjs",
52
+ "node": "./fesm2015/syncfusion-ej2-angular-filemanager.mjs",
53
+ "default": "./fesm2020/syncfusion-ej2-angular-filemanager.mjs"
54
+ }
55
+ },
56
+ "fesm2015": "fesm2015/syncfusion-ej2-angular-filemanager.mjs",
57
+ "fesm2020": "fesm2020/syncfusion-ej2-angular-filemanager.mjs",
42
58
  "homepage": "https://github.com/syncfusion/ej2-angular-ui-components#readme",
43
59
  "keywords": [
44
60
  "ej2",
@@ -57,9 +73,7 @@
57
73
  "ej2-ng-filemanager"
58
74
  ],
59
75
  "license": "SEE LICENSE IN license",
60
- "main": "dist/ej2-angular-filemanager.umd.js",
61
- "metadata": "ej2-angular-filemanager.metadata.json",
62
- "module": "@syncfusion/ej2-angular-filemanager.es5.js",
76
+ "module": "fesm2015/syncfusion-ej2-angular-filemanager.mjs",
63
77
  "name": "@syncfusion/ej2-angular-filemanager",
64
78
  "repository": {
65
79
  "type": "git",
@@ -67,6 +81,6 @@
67
81
  },
68
82
  "schematics": "./schematics/collection.json",
69
83
  "sideEffects": false,
70
- "typings": "ej2-angular-filemanager.d.ts",
71
- "version": "20.2.38-ngcc"
84
+ "typings": "syncfusion-ej2-angular-filemanager.d.ts",
85
+ "version": "20.2.39"
72
86
  }
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-filemanager';
2
- export const pkgVer = '^20.2.38';
2
+ export const pkgVer = '^20.1.59';
3
3
  export const moduleName = 'FileManagerModule';
4
- export const themeVer = '~20.2.38';
4
+ export const themeVer = '~20.1.59';
@@ -1,4 +1,7 @@
1
1
  import { ValueProvider } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "./filemanager.module";
2
5
  export declare const DetailsViewService: ValueProvider;
3
6
  export declare const NavigationPaneService: ValueProvider;
4
7
  export declare const LargeIconsViewService: ValueProvider;
@@ -9,4 +12,7 @@ export declare const BreadCrumbBarService: ValueProvider;
9
12
  * NgModule definition for the FileManager component with providers.
10
13
  */
11
14
  export declare class FileManagerAllModule {
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileManagerAllModule, never>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileManagerAllModule, never, [typeof i1.CommonModule, typeof i2.FileManagerModule], [typeof i2.FileManagerModule]>;
17
+ static ɵinj: i0.ɵɵInjectorDeclaration<FileManagerAllModule>;
12
18
  }
@@ -1,6 +1,7 @@
1
1
  import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
2
  import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
3
  import { FileManager } from '@syncfusion/ej2-filemanager';
4
+ import * as i0 from "@angular/core";
4
5
  export declare const inputs: string[];
5
6
  export declare const outputs: string[];
6
7
  export declare const twoWays: string[];
@@ -48,4 +49,6 @@ export declare class FileManagerComponent extends FileManager implements ICompon
48
49
  ngAfterContentChecked(): void;
49
50
  registerEvents: (eventList: string[]) => void;
50
51
  addTwoWay: (propList: string[]) => void;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileManagerComponent, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileManagerComponent, "ejs-filemanager", never, { "ajaxSettings": "ajaxSettings"; "allowDragAndDrop": "allowDragAndDrop"; "allowMultiSelection": "allowMultiSelection"; "contextMenuSettings": "contextMenuSettings"; "cssClass": "cssClass"; "detailsViewSettings": "detailsViewSettings"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "height": "height"; "locale": "locale"; "navigationPaneSettings": "navigationPaneSettings"; "path": "path"; "popupTarget": "popupTarget"; "rootAliasName": "rootAliasName"; "searchSettings": "searchSettings"; "selectedItems": "selectedItems"; "showFileExtension": "showFileExtension"; "showHiddenItems": "showHiddenItems"; "showThumbnail": "showThumbnail"; "sortBy": "sortBy"; "sortOrder": "sortOrder"; "toolbarSettings": "toolbarSettings"; "uploadSettings": "uploadSettings"; "view": "view"; "width": "width"; }, { "beforeDownload": "beforeDownload"; "beforeImageLoad": "beforeImageLoad"; "beforePopupClose": "beforePopupClose"; "beforePopupOpen": "beforePopupOpen"; "beforeSend": "beforeSend"; "created": "created"; "destroyed": "destroyed"; "failure": "failure"; "fileDragStart": "fileDragStart"; "fileDragStop": "fileDragStop"; "fileDragging": "fileDragging"; "fileDropped": "fileDropped"; "fileLoad": "fileLoad"; "fileOpen": "fileOpen"; "fileSelect": "fileSelect"; "fileSelection": "fileSelection"; "menuClick": "menuClick"; "menuOpen": "menuOpen"; "popupClose": "popupClose"; "popupOpen": "popupOpen"; "success": "success"; "toolbarClick": "toolbarClick"; "toolbarCreate": "toolbarCreate"; "uploadListCreate": "uploadListCreate"; }, never, never>;
51
54
  }
@@ -1,5 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./filemanager.component";
3
+ import * as i2 from "@angular/common";
1
4
  /**
2
5
  * NgModule definition for the FileManager component.
3
6
  */
4
7
  export declare class FileManagerModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileManagerModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileManagerModule, [typeof i1.FileManagerComponent], [typeof i2.CommonModule], [typeof i1.FileManagerComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<FileManagerModule>;
5
11
  }
@@ -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,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,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,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: #282d31;
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,11 @@
20
23
  transform: rotate(360deg);
21
24
  }
22
25
  }
23
- /*! TreeView's bootstrap5 theme wise override definitions and variables */ /*! Toolbar'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
+ /*! Toolbar's bootstrap5 theme wise override definitions and variables */
29
+ /* stylelint-disable */
30
+ /*! FileManager's tailwind theme wise override definitions and variables */
24
31
  .e-filemanager .e-fe-icon,
25
32
  .e-filemanager .e-list-icon {
26
33
  background-repeat: no-repeat;
@@ -202,6 +209,7 @@
202
209
  content: "\e774";
203
210
  }
204
211
 
212
+ /* stylelint-disable property-no-vendor-prefix */
205
213
  ejs-filemanager {
206
214
  display: block;
207
215
  }
@@ -232,7 +240,7 @@ ejs-filemanager {
232
240
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
233
241
  border: 0;
234
242
  box-shadow: none;
235
- font-weight: 400;
243
+ font-weight: normal;
236
244
  height: calc(100% - 10px);
237
245
  padding: 0;
238
246
  }
@@ -442,7 +450,7 @@ ejs-filemanager {
442
450
  visibility: visible;
443
451
  }
444
452
  .e-filemanager .e-grid .e-content {
445
- overflow-y: auto !important;
453
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
446
454
  }
447
455
  .e-filemanager .e-grid .e-content .e-table {
448
456
  border-spacing: 0;
@@ -486,7 +494,7 @@ ejs-filemanager {
486
494
  text-align: center;
487
495
  }
488
496
  .e-filemanager .e-grid .e-gridpopup {
489
- display: none !important;
497
+ display: none !important; /* stylelint-disable-line declaration-no-important */
490
498
  }
491
499
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
492
500
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -543,10 +551,10 @@ ejs-filemanager {
543
551
  width: 20px;
544
552
  }
545
553
  .e-filemanager .e-view-container .e-grid .e-gridheader {
546
- padding-right: 0 !important;
554
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
547
555
  }
548
556
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
549
- padding-left: 0 !important;
557
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
550
558
  }
551
559
  .e-filemanager .e-large-icons {
552
560
  float: left;
@@ -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: #f8f9fa;
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,11 @@
20
23
  transform: rotate(360deg);
21
24
  }
22
25
  }
23
- /*! TreeView's bootstrap5 theme wise override definitions and variables */ /*! Toolbar'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
+ /*! Toolbar's bootstrap5 theme wise override definitions and variables */
29
+ /* stylelint-disable */
30
+ /*! FileManager's tailwind theme wise override definitions and variables */
24
31
  .e-filemanager .e-fe-icon,
25
32
  .e-filemanager .e-list-icon {
26
33
  background-repeat: no-repeat;
@@ -202,6 +209,7 @@
202
209
  content: "\e774";
203
210
  }
204
211
 
212
+ /* stylelint-disable property-no-vendor-prefix */
205
213
  ejs-filemanager {
206
214
  display: block;
207
215
  }
@@ -232,7 +240,7 @@ ejs-filemanager {
232
240
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
233
241
  border: 0;
234
242
  box-shadow: none;
235
- font-weight: 400;
243
+ font-weight: normal;
236
244
  height: calc(100% - 10px);
237
245
  padding: 0;
238
246
  }
@@ -442,7 +450,7 @@ ejs-filemanager {
442
450
  visibility: visible;
443
451
  }
444
452
  .e-filemanager .e-grid .e-content {
445
- overflow-y: auto !important;
453
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
446
454
  }
447
455
  .e-filemanager .e-grid .e-content .e-table {
448
456
  border-spacing: 0;
@@ -486,7 +494,7 @@ ejs-filemanager {
486
494
  text-align: center;
487
495
  }
488
496
  .e-filemanager .e-grid .e-gridpopup {
489
- display: none !important;
497
+ display: none !important; /* stylelint-disable-line declaration-no-important */
490
498
  }
491
499
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
492
500
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -543,10 +551,10 @@ ejs-filemanager {
543
551
  width: 20px;
544
552
  }
545
553
  .e-filemanager .e-view-container .e-grid .e-gridheader {
546
- padding-right: 0 !important;
554
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
547
555
  }
548
556
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
549
- padding-left: 0 !important;
557
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
550
558
  }
551
559
  .e-filemanager .e-large-icons {
552
560
  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 fabric theme wise override definitions and variables */
18
22
  .e-filemanager .e-fe-icon,
19
23
  .e-filemanager .e-list-icon {
@@ -192,6 +196,7 @@
192
196
  content: "\e614";
193
197
  }
194
198
 
199
+ /* stylelint-disable property-no-vendor-prefix */
195
200
  ejs-filemanager {
196
201
  display: block;
197
202
  }
@@ -222,7 +227,7 @@ ejs-filemanager {
222
227
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
223
228
  border: 0;
224
229
  box-shadow: none;
225
- font-weight: 400;
230
+ font-weight: normal;
226
231
  height: inherit;
227
232
  padding: 0;
228
233
  }
@@ -426,7 +431,7 @@ ejs-filemanager {
426
431
  visibility: visible;
427
432
  }
428
433
  .e-filemanager .e-grid .e-content {
429
- overflow-y: auto !important;
434
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
430
435
  }
431
436
  .e-filemanager .e-grid .e-content .e-table {
432
437
  border-spacing: 0;
@@ -469,7 +474,7 @@ ejs-filemanager {
469
474
  text-align: center;
470
475
  }
471
476
  .e-filemanager .e-grid .e-gridpopup {
472
- display: none !important;
477
+ display: none !important; /* stylelint-disable-line declaration-no-important */
473
478
  }
474
479
  .e-filemanager .e-grid .e-gridheader .e-emptyrow,
475
480
  .e-filemanager .e-grid .e-gridcontent .e-emptyrow {
@@ -535,10 +540,10 @@ ejs-filemanager {
535
540
  width: 18px;
536
541
  }
537
542
  .e-filemanager .e-view-container .e-grid .e-gridheader {
538
- padding-right: 0 !important;
543
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
539
544
  }
540
545
  .e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
541
- padding-left: 0 !important;
546
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
542
547
  }
543
548
  .e-filemanager .e-large-icons {
544
549
  float: left;
package/styles/fabric.css CHANGED
@@ -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 fabric theme wise override definitions and variables */ /*! FileManager's fabric theme wise override definitions and variables */
20
+ /*! TreeView's fabric theme wise override definitions and variables */
21
+ /* stylelint-disable */
22
+ /*! FileManager's fabric 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;
@@ -0,0 +1,2 @@
1
+ @import 'layout.scss';
2
+ @import 'theme.scss';