@syncfusion/ej2-angular-filemanager 20.3.56-ngcc → 20.4.38-ngcc

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 (47) hide show
  1. package/@syncfusion/ej2-angular-filemanager.es5.js +14 -5
  2. package/@syncfusion/ej2-angular-filemanager.es5.js.map +1 -1
  3. package/@syncfusion/ej2-angular-filemanager.js +14 -5
  4. package/@syncfusion/ej2-angular-filemanager.js.map +1 -1
  5. package/CHANGELOG.md +0 -10
  6. package/README.md +105 -26
  7. package/dist/ej2-angular-filemanager.umd.js +15 -3
  8. package/dist/ej2-angular-filemanager.umd.js.map +1 -1
  9. package/dist/ej2-angular-filemanager.umd.min.js +2 -2
  10. package/dist/ej2-angular-filemanager.umd.min.js.map +1 -1
  11. package/ej2-angular-filemanager.metadata.json +1 -1
  12. package/package.json +16 -13
  13. package/schematics/utils/lib-details.d.ts +2 -2
  14. package/schematics/utils/lib-details.js +2 -2
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/file-manager/filemanager-all.module.d.ts +1 -0
  17. package/src/index.d.ts +1 -1
  18. package/styles/bootstrap-dark.css +2 -12
  19. package/styles/bootstrap.css +2 -12
  20. package/styles/bootstrap4.css +2 -12
  21. package/styles/bootstrap5-dark.css +2 -12
  22. package/styles/bootstrap5.css +2 -12
  23. package/styles/fabric-dark.css +2 -12
  24. package/styles/fabric.css +2 -12
  25. package/styles/file-manager/bootstrap-dark.css +2 -12
  26. package/styles/file-manager/bootstrap.css +2 -12
  27. package/styles/file-manager/bootstrap4.css +2 -12
  28. package/styles/file-manager/bootstrap5-dark.css +2 -12
  29. package/styles/file-manager/bootstrap5.css +2 -12
  30. package/styles/file-manager/fabric-dark.css +2 -12
  31. package/styles/file-manager/fabric.css +2 -12
  32. package/styles/file-manager/fluent-dark.css +8 -12
  33. package/styles/file-manager/fluent.css +8 -12
  34. package/styles/file-manager/highcontrast-light.css +2 -12
  35. package/styles/file-manager/highcontrast.css +2 -12
  36. package/styles/file-manager/material-dark.css +2 -12
  37. package/styles/file-manager/material.css +2 -15
  38. package/styles/file-manager/tailwind-dark.css +2 -12
  39. package/styles/file-manager/tailwind.css +2 -12
  40. package/styles/fluent-dark.css +8 -12
  41. package/styles/fluent.css +8 -12
  42. package/styles/highcontrast-light.css +2 -12
  43. package/styles/highcontrast.css +2 -12
  44. package/styles/material-dark.css +2 -12
  45. package/styles/material.css +2 -15
  46. package/styles/tailwind-dark.css +2 -12
  47. package/styles/tailwind.css +2 -12
@@ -1 +1 @@
1
- {"version":3,"file":"ej2-angular-filemanager.umd.js","sources":["~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager-all.module.ts","~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager.module.ts","~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager.component.ts"],"sourcesContent":["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 /** @type {?} */ DetailsViewService: ValueProvider = { provide: 'FileManagerDetailsView', useValue: DetailsView};\nexport const /** @type {?} */ NavigationPaneService: ValueProvider = { provide: 'FileManagerNavigationPane', useValue: NavigationPane};\nexport const /** @type {?} */ LargeIconsViewService: ValueProvider = { provide: 'FileManagerLargeIconsView', useValue: LargeIconsView};\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'FileManagerToolbar', useValue: Toolbar};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'FileManagerContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ BreadCrumbBarService: ValueProvider = { provide: 'FileManagerBreadCrumbBar', useValue: BreadCrumbBar};\n/**\n * NgModule definition for the FileManager component with providers.\n */\nexport class FileManagerAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\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}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction FileManagerAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FileManagerComponent } from './filemanager.component';\n/**\n * NgModule definition for the FileManager component.\n */\nexport class FileManagerModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n FileManagerComponent\n ],\n exports: [\n FileManagerComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction FileManagerModule_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","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 /** @type {?} */ 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 /** @type {?} */ 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 /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Essential JS 2 Angular FileManager Component.\n * ```html\n * <ejs-filemanager showThumbnail='false'></ejs-filemanager>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class FileManagerComponent extends FileManager implements IComponentBase {\npublic context : any;\npublic 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;\npublic uploadListCreate: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate 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 try {\n let mod = this.injector.get('FileManagerNavigationPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerLargeIconsView');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerBreadCrumbBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-filemanager',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction FileManagerComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerComponent.ctorParameters;\n/** @type {?} */\nFileManagerComponent.prototype.context;\n/** @type {?} */\nFileManagerComponent.prototype.tagObjects;\n/** @type {?} */\nFileManagerComponent.prototype.beforeDownload;\n/** @type {?} */\nFileManagerComponent.prototype.beforeImageLoad;\n/** @type {?} */\nFileManagerComponent.prototype.beforePopupClose;\n/** @type {?} */\nFileManagerComponent.prototype.beforePopupOpen;\n/** @type {?} */\nFileManagerComponent.prototype.beforeSend;\n/** @type {?} */\nFileManagerComponent.prototype.created;\n/** @type {?} */\nFileManagerComponent.prototype.destroyed;\n/** @type {?} */\nFileManagerComponent.prototype.failure;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragStart;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragStop;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragging;\n/** @type {?} */\nFileManagerComponent.prototype.fileDropped;\n/** @type {?} */\nFileManagerComponent.prototype.fileLoad;\n/** @type {?} */\nFileManagerComponent.prototype.fileOpen;\n/** @type {?} */\nFileManagerComponent.prototype.fileSelect;\n/** @type {?} */\nFileManagerComponent.prototype.fileSelection;\n/** @type {?} */\nFileManagerComponent.prototype.menuClick;\n/** @type {?} */\nFileManagerComponent.prototype.menuOpen;\n/** @type {?} */\nFileManagerComponent.prototype.popupClose;\n/** @type {?} */\nFileManagerComponent.prototype.popupOpen;\n/** @type {?} */\nFileManagerComponent.prototype.success;\n/** @type {?} */\nFileManagerComponent.prototype.toolbarClick;\n/** @type {?} */\nFileManagerComponent.prototype.toolbarCreate;\n/** @type {?} */\nFileManagerComponent.prototype.uploadListCreate;\n/** @type {?} */\nFileManagerComponent.prototype.registerEvents;\n/** @type {?} */\nFileManagerComponent.prototype.addTwoWay;\n/** @type {?} */\nFileManagerComponent.prototype.ngEle;\n/** @type {?} */\nFileManagerComponent.prototype.srenderer;\n/** @type {?} */\nFileManagerComponent.prototype.viewContainerRef;\n/** @type {?} */\nFileManagerComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","BreadCrumbBar","ContextMenu","Toolbar","LargeIconsView","NavigationPane","DetailsView","FileManagerComponent","Injector","ViewContainerRef","Renderer2","ElementRef","ComponentMixins","ComponentBase","ChangeDetectionStrategy","Component","FileManager","setValue"],"mappings":"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"}
1
+ {"version":3,"file":"ej2-angular-filemanager.umd.js","sources":["~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager-all.module.ts","~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager.module.ts","~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager.component.ts"],"sourcesContent":["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, Virtualization} from '@syncfusion/ej2-filemanager';\n\n\nexport const /** @type {?} */ DetailsViewService: ValueProvider = { provide: 'FileManagerDetailsView', useValue: DetailsView};\nexport const /** @type {?} */ NavigationPaneService: ValueProvider = { provide: 'FileManagerNavigationPane', useValue: NavigationPane};\nexport const /** @type {?} */ LargeIconsViewService: ValueProvider = { provide: 'FileManagerLargeIconsView', useValue: LargeIconsView};\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'FileManagerToolbar', useValue: Toolbar};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'FileManagerContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ BreadCrumbBarService: ValueProvider = { provide: 'FileManagerBreadCrumbBar', useValue: BreadCrumbBar};\nexport const /** @type {?} */ VirtualizationService: ValueProvider = { provide: 'FileManagerVirtualization', useValue: Virtualization};\n/**\n * NgModule definition for the FileManager component with providers.\n */\nexport class FileManagerAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, FileManagerModule],\n exports: [\n FileManagerModule\n ],\n providers:[\n DetailsViewService,\n NavigationPaneService,\n LargeIconsViewService,\n ToolbarService,\n ContextMenuService,\n BreadCrumbBarService,\n VirtualizationService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction FileManagerAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FileManagerComponent } from './filemanager.component';\n/**\n * NgModule definition for the FileManager component.\n */\nexport class FileManagerModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n FileManagerComponent\n ],\n exports: [\n FileManagerComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction FileManagerModule_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","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 /** @type {?} */ 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','virtualizationSettings','width'];\nexport const /** @type {?} */ 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 /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Essential JS 2 Angular FileManager Component.\n * ```html\n * <ejs-filemanager showThumbnail='false'></ejs-filemanager>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class FileManagerComponent extends FileManager implements IComponentBase {\npublic context : any;\npublic 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;\npublic uploadListCreate: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate 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 try {\n let mod = this.injector.get('FileManagerNavigationPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerLargeIconsView');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerBreadCrumbBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerVirtualization');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-filemanager',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction FileManagerComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerComponent.ctorParameters;\n/** @type {?} */\nFileManagerComponent.prototype.context;\n/** @type {?} */\nFileManagerComponent.prototype.tagObjects;\n/** @type {?} */\nFileManagerComponent.prototype.beforeDownload;\n/** @type {?} */\nFileManagerComponent.prototype.beforeImageLoad;\n/** @type {?} */\nFileManagerComponent.prototype.beforePopupClose;\n/** @type {?} */\nFileManagerComponent.prototype.beforePopupOpen;\n/** @type {?} */\nFileManagerComponent.prototype.beforeSend;\n/** @type {?} */\nFileManagerComponent.prototype.created;\n/** @type {?} */\nFileManagerComponent.prototype.destroyed;\n/** @type {?} */\nFileManagerComponent.prototype.failure;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragStart;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragStop;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragging;\n/** @type {?} */\nFileManagerComponent.prototype.fileDropped;\n/** @type {?} */\nFileManagerComponent.prototype.fileLoad;\n/** @type {?} */\nFileManagerComponent.prototype.fileOpen;\n/** @type {?} */\nFileManagerComponent.prototype.fileSelect;\n/** @type {?} */\nFileManagerComponent.prototype.fileSelection;\n/** @type {?} */\nFileManagerComponent.prototype.menuClick;\n/** @type {?} */\nFileManagerComponent.prototype.menuOpen;\n/** @type {?} */\nFileManagerComponent.prototype.popupClose;\n/** @type {?} */\nFileManagerComponent.prototype.popupOpen;\n/** @type {?} */\nFileManagerComponent.prototype.success;\n/** @type {?} */\nFileManagerComponent.prototype.toolbarClick;\n/** @type {?} */\nFileManagerComponent.prototype.toolbarCreate;\n/** @type {?} */\nFileManagerComponent.prototype.uploadListCreate;\n/** @type {?} */\nFileManagerComponent.prototype.registerEvents;\n/** @type {?} */\nFileManagerComponent.prototype.addTwoWay;\n/** @type {?} */\nFileManagerComponent.prototype.ngEle;\n/** @type {?} */\nFileManagerComponent.prototype.srenderer;\n/** @type {?} */\nFileManagerComponent.prototype.viewContainerRef;\n/** @type {?} */\nFileManagerComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","Virtualization","BreadCrumbBar","ContextMenu","Toolbar","LargeIconsView","NavigationPane","DetailsView","FileManagerComponent","Injector","ViewContainerRef","Renderer2","ElementRef","ComponentMixins","ComponentBase","ChangeDetectionStrategy","Component","FileManager","setValue"],"mappings":"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"}
@@ -1,11 +1,11 @@
1
1
  /*!
2
2
  * filename: ej2-angular-filemanager.umd.min.js
3
- * version : 20.3.56
3
+ * version : 20.4.38
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
7
7
  * licensing@syncfusion.com. Any infringement will be prosecuted under
8
8
  * applicable laws.
9
9
  */
10
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-filemanager"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-filemanager","@angular/common"],t):t(e["ej2-angular-filemanager"]={},e.ng.core,e.ej2.angular.base,e.ej2.filemanager,e.ng.common)}(this,function(e,t,n,a,o){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function a(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(a.prototype=n.prototype,new a)}}(),r=this&&this.__decorate||function(e,t,n,a){var o,i=arguments.length,r=i<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,n):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)r=Reflect.decorate(e,t,n,a);else for(var I=e.length-1;I>=0;I--)(o=e[I])&&(r=(i<3?o(r):i>3?o(t,n,r):o(t,n))||r);return i>3&&r&&Object.defineProperty(t,n,r),r},I=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},E=["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"],l=["beforeDownload","beforeImageLoad","beforePopupClose","beforePopupOpen","beforeSend","created","destroyed","failure","fileDragStart","fileDragStop","fileDragging","fileDropped","fileLoad","fileOpen","fileSelect","fileSelection","menuClick","menuOpen","popupClose","popupOpen","success","toolbarClick","toolbarCreate","uploadListCreate"],s=[""];e.FileManagerComponent=function(e){function t(t,a,o,i){var r=e.call(this)||this;r.ngEle=t,r.srenderer=a,r.viewContainerRef=o,r.injector=i,r.element=r.ngEle.nativeElement,r.injectedModules=r.injectedModules||[];try{var I=r.injector.get("FileManagerDetailsView");-1===r.injectedModules.indexOf(I)&&r.injectedModules.push(I)}catch(E){}try{I=r.injector.get("FileManagerNavigationPane");-1===r.injectedModules.indexOf(I)&&r.injectedModules.push(I)}catch(O){}try{I=r.injector.get("FileManagerLargeIconsView");-1===r.injectedModules.indexOf(I)&&r.injectedModules.push(I)}catch(_){}try{I=r.injector.get("FileManagerToolbar");-1===r.injectedModules.indexOf(I)&&r.injectedModules.push(I)}catch(C){}try{I=r.injector.get("FileManagerContextMenu");-1===r.injectedModules.indexOf(I)&&r.injectedModules.push(I)}catch(d){}try{I=r.injector.get("FileManagerBreadCrumbBar");-1===r.injectedModules.indexOf(I)&&r.injectedModules.push(I)}catch(c){}return r.registerEvents(l),r.addTwoWay.call(r,s),n.setValue("currentInstance",r,r.viewContainerRef),r.context=new n.ComponentBase,r}return i(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(a.FileManager),e.FileManagerComponent.decorators=[{type:t.Component,args:[{selector:"ejs-filemanager",inputs:E,outputs:l,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.FileManagerComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.FileManagerComponent=r([n.ComponentMixins([n.ComponentBase]),I("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.FileManagerComponent);var O=function(){return function(){}}();O.decorators=[{type:t.NgModule,args:[{imports:[o.CommonModule],declarations:[e.FileManagerComponent],exports:[e.FileManagerComponent]}]}],O.ctorParameters=function(){return[]};var _={provide:"FileManagerDetailsView",useValue:a.DetailsView},C={provide:"FileManagerNavigationPane",useValue:a.NavigationPane},d={provide:"FileManagerLargeIconsView",useValue:a.LargeIconsView},c={provide:"FileManagerToolbar",useValue:a.Toolbar},T={provide:"FileManagerContextMenu",useValue:a.ContextMenu},u={provide:"FileManagerBreadCrumbBar",useValue:a.BreadCrumbBar},D=function(){return function(){}}();D.decorators=[{type:t.NgModule,args:[{imports:[o.CommonModule,O],exports:[O],providers:[_,C,d,c,T,u]}]}],D.ctorParameters=function(){return[]},e.FileManagerModule=O,e.FileManagerAllModule=D,e.DetailsViewService=_,e.NavigationPaneService=C,e.LargeIconsViewService=d,e.ToolbarService=c,e.ContextMenuService=T,e.BreadCrumbBarService=u,e.ɵa=E,e.ɵb=l,e.AjaxSettings=a.AjaxSettings,e.toolbarItems=a.toolbarItems,e.ToolbarSettings=a.ToolbarSettings,e.SearchSettings=a.SearchSettings,e.columnArray=a.columnArray,e.DetailsViewSettings=a.DetailsViewSettings,e.fileItems=a.fileItems,e.folderItems=a.folderItems,e.layoutItems=a.layoutItems,e.ContextMenuSettings=a.ContextMenuSettings,e.NavigationPaneSettings=a.NavigationPaneSettings,e.UploadSettings=a.UploadSettings,e.Column=a.Column,e.TOOLBAR_ID=a.TOOLBAR_ID,e.LAYOUT_ID=a.LAYOUT_ID,e.NAVIGATION_ID=a.NAVIGATION_ID,e.TREE_ID=a.TREE_ID,e.GRID_ID=a.GRID_ID,e.LARGEICON_ID=a.LARGEICON_ID,e.DIALOG_ID=a.DIALOG_ID,e.ALT_DIALOG_ID=a.ALT_DIALOG_ID,e.IMG_DIALOG_ID=a.IMG_DIALOG_ID,e.EXTN_DIALOG_ID=a.EXTN_DIALOG_ID,e.UPLOAD_DIALOG_ID=a.UPLOAD_DIALOG_ID,e.RETRY_DIALOG_ID=a.RETRY_DIALOG_ID,e.CONTEXT_MENU_ID=a.CONTEXT_MENU_ID,e.SORTBY_ID=a.SORTBY_ID,e.VIEW_ID=a.VIEW_ID,e.SPLITTER_ID=a.SPLITTER_ID,e.CONTENT_ID=a.CONTENT_ID,e.BREADCRUMBBAR_ID=a.BREADCRUMBBAR_ID,e.UPLOAD_ID=a.UPLOAD_ID,e.RETRY_ID=a.RETRY_ID,e.SEARCH_ID=a.SEARCH_ID,e.ROOT=a.ROOT,e.CONTROL=a.CONTROL,e.CHECK_SELECT=a.CHECK_SELECT,e.ROOT_POPUP=a.ROOT_POPUP,e.MOBILE=a.MOBILE,e.MOB_POPUP=a.MOB_POPUP,e.MULTI_SELECT=a.MULTI_SELECT,e.FILTER=a.FILTER,e.LAYOUT=a.LAYOUT,e.NAVIGATION=a.NAVIGATION,e.LAYOUT_CONTENT=a.LAYOUT_CONTENT,e.LARGE_ICONS=a.LARGE_ICONS,e.TB_ITEM=a.TB_ITEM,e.LIST_ITEM=a.LIST_ITEM,e.LIST_TEXT=a.LIST_TEXT,e.LIST_PARENT=a.LIST_PARENT,e.TB_OPTION_TICK=a.TB_OPTION_TICK,e.TB_OPTION_DOT=a.TB_OPTION_DOT,e.BLUR=a.BLUR,e.ACTIVE=a.ACTIVE,e.HOVER=a.HOVER,e.FOCUS=a.FOCUS,e.FOCUSED=a.FOCUSED,e.CHECK=a.CHECK,e.FRAME=a.FRAME,e.CB_WRAP=a.CB_WRAP,e.ROW=a.ROW,e.ROWCELL=a.ROWCELL,e.EMPTY=a.EMPTY,e.EMPTY_CONTENT=a.EMPTY_CONTENT,e.EMPTY_INNER_CONTENT=a.EMPTY_INNER_CONTENT,e.CLONE=a.CLONE,e.DROP_FOLDER=a.DROP_FOLDER,e.DROP_FILE=a.DROP_FILE,e.FOLDER=a.FOLDER,e.ICON_IMAGE=a.ICON_IMAGE,e.ICON_MUSIC=a.ICON_MUSIC,e.ICON_VIDEO=a.ICON_VIDEO,e.LARGE_ICON=a.LARGE_ICON,e.LARGE_EMPTY_FOLDER=a.LARGE_EMPTY_FOLDER,e.LARGE_EMPTY_FOLDER_TWO=a.LARGE_EMPTY_FOLDER_TWO,e.LARGE_ICON_FOLDER=a.LARGE_ICON_FOLDER,e.SELECTED_ITEMS=a.SELECTED_ITEMS,e.TEXT_CONTENT=a.TEXT_CONTENT,e.GRID_HEADER=a.GRID_HEADER,e.TEMPLATE_CELL=a.TEMPLATE_CELL,e.TREE_VIEW=a.TREE_VIEW,e.MENU_ITEM=a.MENU_ITEM,e.MENU_ICON=a.MENU_ICON,e.SUBMENU_ICON=a.SUBMENU_ICON,e.GRID_VIEW=a.GRID_VIEW,e.GRID_CONTENT=a.GRID_CONTENT,e.ICON_VIEW=a.ICON_VIEW,e.ICON_OPEN=a.ICON_OPEN,e.ICON_UPLOAD=a.ICON_UPLOAD,e.ICON_CUT=a.ICON_CUT,e.ICON_COPY=a.ICON_COPY,e.ICON_PASTE=a.ICON_PASTE,e.ICON_DELETE=a.ICON_DELETE,e.ICON_RENAME=a.ICON_RENAME,e.ICON_NEWFOLDER=a.ICON_NEWFOLDER,e.ICON_DETAILS=a.ICON_DETAILS,e.ICON_SHORTBY=a.ICON_SHORTBY,e.ICON_REFRESH=a.ICON_REFRESH,e.ICON_SELECTALL=a.ICON_SELECTALL,e.ICON_DOWNLOAD=a.ICON_DOWNLOAD,e.ICON_OPTIONS=a.ICON_OPTIONS,e.ICON_GRID=a.ICON_GRID,e.ICON_LARGE=a.ICON_LARGE,e.ICON_BREADCRUMB=a.ICON_BREADCRUMB,e.ICON_CLEAR=a.ICON_CLEAR,e.ICON_DROP_IN=a.ICON_DROP_IN,e.ICON_DROP_OUT=a.ICON_DROP_OUT,e.ICON_NO_DROP=a.ICON_NO_DROP,e.ICONS=a.ICONS,e.DETAILS_LABEL=a.DETAILS_LABEL,e.ERROR_CONTENT=a.ERROR_CONTENT,e.STATUS=a.STATUS,e.BREADCRUMBS=a.BREADCRUMBS,e.RTL=a.RTL,e.DISPLAY_NONE=a.DISPLAY_NONE,e.COLLAPSED=a.COLLAPSED,e.FULLROW=a.FULLROW,e.ICON_COLLAPSIBLE=a.ICON_COLLAPSIBLE,e.SPLIT_BAR=a.SPLIT_BAR,e.HEADER_CHECK=a.HEADER_CHECK,e.OVERLAY=a.OVERLAY,e.VALUE=a.VALUE,e.isFile=a.isFile,e.modelChanged=a.modelChanged,e.initialEnd=a.initialEnd,e.finalizeEnd=a.finalizeEnd,e.createEnd=a.createEnd,e.filterEnd=a.filterEnd,e.beforeDelete=a.beforeDelete,e.pathDrag=a.pathDrag,e.deleteInit=a.deleteInit,e.deleteEnd=a.deleteEnd,e.refreshEnd=a.refreshEnd,e.resizeEnd=a.resizeEnd,e.splitterResize=a.splitterResize,e.pathChanged=a.pathChanged,e.destroy=a.destroy,e.beforeRequest=a.beforeRequest,e.upload=a.upload,e.skipUpload=a.skipUpload,e.afterRequest=a.afterRequest,e.download=a.download,e.layoutRefresh=a.layoutRefresh,e.actionFailure=a.actionFailure,e.search=a.search,e.openInit=a.openInit,e.openEnd=a.openEnd,e.selectionChanged=a.selectionChanged,e.selectAllInit=a.selectAllInit,e.clearAllInit=a.clearAllInit,e.clearPathInit=a.clearPathInit,e.layoutChange=a.layoutChange,e.sortByChange=a.sortByChange,e.nodeExpand=a.nodeExpand,e.detailsInit=a.detailsInit,e.menuItemData=a.menuItemData,e.renameInit=a.renameInit,e.renameEndParent=a.renameEndParent,e.renameEnd=a.renameEnd,e.showPaste=a.showPaste,e.hidePaste=a.hidePaste,e.selectedData=a.selectedData,e.cutCopyInit=a.cutCopyInit,e.pasteInit=a.pasteInit,e.pasteEnd=a.pasteEnd,e.cutEnd=a.cutEnd,e.hideLayout=a.hideLayout,e.updateTreeSelection=a.updateTreeSelection,e.treeSelect=a.treeSelect,e.sortColumn=a.sortColumn,e.pathColumn=a.pathColumn,e.searchTextChange=a.searchTextChange,e.beforeDownload=a.beforeDownload,e.downloadInit=a.downloadInit,e.dropInit=a.dropInit,e.dragEnd=a.dragEnd,e.dropPath=a.dropPath,e.dragHelper=a.dragHelper,e.dragging=a.dragging,e.updateSelectionData=a.updateSelectionData,e.methodCall=a.methodCall,e.permissionRead=a.permissionRead,e.permissionEdit=a.permissionEdit,e.permissionEditContents=a.permissionEditContents,e.permissionCopy=a.permissionCopy,e.permissionUpload=a.permissionUpload,e.permissionDownload=a.permissionDownload,e.FileManager=a.FileManager,e.Toolbar=a.Toolbar,e.BreadCrumbBar=a.BreadCrumbBar,e.NavigationPane=a.NavigationPane,e.DetailsView=a.DetailsView,e.LargeIconsView=a.LargeIconsView,e.createDialog=a.createDialog,e.createExtDialog=a.createExtDialog,e.createImageDialog=a.createImageDialog,e.ContextMenu=a.ContextMenu,Object.defineProperty(e,"__esModule",{value:!0})});
10
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-filemanager"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-filemanager","@angular/common"],t):t(e["ej2-angular-filemanager"]={},e.ng.core,e.ej2.angular.base,e.ej2.filemanager,e.ng.common)}(this,function(e,t,n,a,i){"use strict";var o=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function a(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(a.prototype=n.prototype,new a)}}(),r=this&&this.__decorate||function(e,t,n,a){var i,o=arguments.length,r=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,n):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)r=Reflect.decorate(e,t,n,a);else for(var l=e.length-1;l>=0;l--)(i=e[l])&&(r=(o<3?i(r):o>3?i(t,n,r):i(t,n))||r);return o>3&&r&&Object.defineProperty(t,n,r),r},l=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},I=["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","virtualizationSettings","width"],E=["beforeDownload","beforeImageLoad","beforePopupClose","beforePopupOpen","beforeSend","created","destroyed","failure","fileDragStart","fileDragStop","fileDragging","fileDropped","fileLoad","fileOpen","fileSelect","fileSelection","menuClick","menuOpen","popupClose","popupOpen","success","toolbarClick","toolbarCreate","uploadListCreate"],s=[""];e.FileManagerComponent=function(e){function t(t,a,i,o){var r=e.call(this)||this;r.ngEle=t,r.srenderer=a,r.viewContainerRef=i,r.injector=o,r.element=r.ngEle.nativeElement,r.injectedModules=r.injectedModules||[];try{var l=r.injector.get("FileManagerDetailsView");-1===r.injectedModules.indexOf(l)&&r.injectedModules.push(l)}catch(I){}try{l=r.injector.get("FileManagerNavigationPane");-1===r.injectedModules.indexOf(l)&&r.injectedModules.push(l)}catch(O){}try{l=r.injector.get("FileManagerLargeIconsView");-1===r.injectedModules.indexOf(l)&&r.injectedModules.push(l)}catch(_){}try{l=r.injector.get("FileManagerToolbar");-1===r.injectedModules.indexOf(l)&&r.injectedModules.push(l)}catch(C){}try{l=r.injector.get("FileManagerContextMenu");-1===r.injectedModules.indexOf(l)&&r.injectedModules.push(l)}catch(d){}try{l=r.injector.get("FileManagerBreadCrumbBar");-1===r.injectedModules.indexOf(l)&&r.injectedModules.push(l)}catch(c){}try{l=r.injector.get("FileManagerVirtualization");-1===r.injectedModules.indexOf(l)&&r.injectedModules.push(l)}catch(u){}return r.registerEvents(E),r.addTwoWay.call(r,s),n.setValue("currentInstance",r,r.viewContainerRef),r.context=new n.ComponentBase,r}return o(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(a.FileManager),e.FileManagerComponent.decorators=[{type:t.Component,args:[{selector:"ejs-filemanager",inputs:I,outputs:E,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.FileManagerComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.FileManagerComponent=r([n.ComponentMixins([n.ComponentBase]),l("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.FileManagerComponent);var O=function(){return function(){}}();O.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule],declarations:[e.FileManagerComponent],exports:[e.FileManagerComponent]}]}],O.ctorParameters=function(){return[]};var _={provide:"FileManagerDetailsView",useValue:a.DetailsView},C={provide:"FileManagerNavigationPane",useValue:a.NavigationPane},d={provide:"FileManagerLargeIconsView",useValue:a.LargeIconsView},c={provide:"FileManagerToolbar",useValue:a.Toolbar},u={provide:"FileManagerContextMenu",useValue:a.ContextMenu},T={provide:"FileManagerBreadCrumbBar",useValue:a.BreadCrumbBar},D={provide:"FileManagerVirtualization",useValue:a.Virtualization},N=function(){return function(){}}();N.decorators=[{type:t.NgModule,args:[{imports:[i.CommonModule,O],exports:[O],providers:[_,C,d,c,u,T,D]}]}],N.ctorParameters=function(){return[]},e.FileManagerModule=O,e.FileManagerAllModule=N,e.DetailsViewService=_,e.NavigationPaneService=C,e.LargeIconsViewService=d,e.ToolbarService=c,e.ContextMenuService=u,e.BreadCrumbBarService=T,e.VirtualizationService=D,e.ɵa=I,e.ɵb=E,e.AjaxSettings=a.AjaxSettings,e.toolbarItems=a.toolbarItems,e.ToolbarSettings=a.ToolbarSettings,e.SearchSettings=a.SearchSettings,e.columnArray=a.columnArray,e.DetailsViewSettings=a.DetailsViewSettings,e.VirtualizationSettings=a.VirtualizationSettings,e.fileItems=a.fileItems,e.folderItems=a.folderItems,e.layoutItems=a.layoutItems,e.ContextMenuSettings=a.ContextMenuSettings,e.NavigationPaneSettings=a.NavigationPaneSettings,e.UploadSettings=a.UploadSettings,e.Column=a.Column,e.TOOLBAR_ID=a.TOOLBAR_ID,e.LAYOUT_ID=a.LAYOUT_ID,e.NAVIGATION_ID=a.NAVIGATION_ID,e.TREE_ID=a.TREE_ID,e.GRID_ID=a.GRID_ID,e.LARGEICON_ID=a.LARGEICON_ID,e.DIALOG_ID=a.DIALOG_ID,e.ALT_DIALOG_ID=a.ALT_DIALOG_ID,e.IMG_DIALOG_ID=a.IMG_DIALOG_ID,e.EXTN_DIALOG_ID=a.EXTN_DIALOG_ID,e.UPLOAD_DIALOG_ID=a.UPLOAD_DIALOG_ID,e.RETRY_DIALOG_ID=a.RETRY_DIALOG_ID,e.CONTEXT_MENU_ID=a.CONTEXT_MENU_ID,e.SORTBY_ID=a.SORTBY_ID,e.VIEW_ID=a.VIEW_ID,e.SPLITTER_ID=a.SPLITTER_ID,e.CONTENT_ID=a.CONTENT_ID,e.BREADCRUMBBAR_ID=a.BREADCRUMBBAR_ID,e.UPLOAD_ID=a.UPLOAD_ID,e.RETRY_ID=a.RETRY_ID,e.SEARCH_ID=a.SEARCH_ID,e.ROOT=a.ROOT,e.CONTROL=a.CONTROL,e.CHECK_SELECT=a.CHECK_SELECT,e.ROOT_POPUP=a.ROOT_POPUP,e.MOBILE=a.MOBILE,e.MOB_POPUP=a.MOB_POPUP,e.MULTI_SELECT=a.MULTI_SELECT,e.FILTER=a.FILTER,e.LAYOUT=a.LAYOUT,e.NAVIGATION=a.NAVIGATION,e.LAYOUT_CONTENT=a.LAYOUT_CONTENT,e.LARGE_ICONS=a.LARGE_ICONS,e.TB_ITEM=a.TB_ITEM,e.LIST_ITEM=a.LIST_ITEM,e.LIST_TEXT=a.LIST_TEXT,e.LIST_PARENT=a.LIST_PARENT,e.TB_OPTION_TICK=a.TB_OPTION_TICK,e.TB_OPTION_DOT=a.TB_OPTION_DOT,e.BLUR=a.BLUR,e.ACTIVE=a.ACTIVE,e.HOVER=a.HOVER,e.FOCUS=a.FOCUS,e.FOCUSED=a.FOCUSED,e.CHECK=a.CHECK,e.FRAME=a.FRAME,e.CB_WRAP=a.CB_WRAP,e.ROW=a.ROW,e.ROWCELL=a.ROWCELL,e.EMPTY=a.EMPTY,e.EMPTY_CONTENT=a.EMPTY_CONTENT,e.EMPTY_INNER_CONTENT=a.EMPTY_INNER_CONTENT,e.CLONE=a.CLONE,e.DROP_FOLDER=a.DROP_FOLDER,e.DROP_FILE=a.DROP_FILE,e.FOLDER=a.FOLDER,e.ICON_IMAGE=a.ICON_IMAGE,e.ICON_MUSIC=a.ICON_MUSIC,e.ICON_VIDEO=a.ICON_VIDEO,e.LARGE_ICON=a.LARGE_ICON,e.LARGE_EMPTY_FOLDER=a.LARGE_EMPTY_FOLDER,e.LARGE_EMPTY_FOLDER_TWO=a.LARGE_EMPTY_FOLDER_TWO,e.LARGE_ICON_FOLDER=a.LARGE_ICON_FOLDER,e.SELECTED_ITEMS=a.SELECTED_ITEMS,e.TEXT_CONTENT=a.TEXT_CONTENT,e.GRID_HEADER=a.GRID_HEADER,e.TEMPLATE_CELL=a.TEMPLATE_CELL,e.TREE_VIEW=a.TREE_VIEW,e.MENU_ITEM=a.MENU_ITEM,e.MENU_ICON=a.MENU_ICON,e.SUBMENU_ICON=a.SUBMENU_ICON,e.GRID_VIEW=a.GRID_VIEW,e.GRID_CONTENT=a.GRID_CONTENT,e.ICON_VIEW=a.ICON_VIEW,e.ICON_OPEN=a.ICON_OPEN,e.ICON_UPLOAD=a.ICON_UPLOAD,e.ICON_CUT=a.ICON_CUT,e.ICON_COPY=a.ICON_COPY,e.ICON_PASTE=a.ICON_PASTE,e.ICON_DELETE=a.ICON_DELETE,e.ICON_RENAME=a.ICON_RENAME,e.ICON_NEWFOLDER=a.ICON_NEWFOLDER,e.ICON_DETAILS=a.ICON_DETAILS,e.ICON_SHORTBY=a.ICON_SHORTBY,e.ICON_REFRESH=a.ICON_REFRESH,e.ICON_SELECTALL=a.ICON_SELECTALL,e.ICON_DOWNLOAD=a.ICON_DOWNLOAD,e.ICON_OPTIONS=a.ICON_OPTIONS,e.ICON_GRID=a.ICON_GRID,e.ICON_LARGE=a.ICON_LARGE,e.ICON_BREADCRUMB=a.ICON_BREADCRUMB,e.ICON_CLEAR=a.ICON_CLEAR,e.ICON_DROP_IN=a.ICON_DROP_IN,e.ICON_DROP_OUT=a.ICON_DROP_OUT,e.ICON_NO_DROP=a.ICON_NO_DROP,e.ICONS=a.ICONS,e.DETAILS_LABEL=a.DETAILS_LABEL,e.ERROR_CONTENT=a.ERROR_CONTENT,e.STATUS=a.STATUS,e.BREADCRUMBS=a.BREADCRUMBS,e.RTL=a.RTL,e.DISPLAY_NONE=a.DISPLAY_NONE,e.COLLAPSED=a.COLLAPSED,e.FULLROW=a.FULLROW,e.ICON_COLLAPSIBLE=a.ICON_COLLAPSIBLE,e.SPLIT_BAR=a.SPLIT_BAR,e.HEADER_CHECK=a.HEADER_CHECK,e.OVERLAY=a.OVERLAY,e.VALUE=a.VALUE,e.isFile=a.isFile,e.modelChanged=a.modelChanged,e.initialEnd=a.initialEnd,e.finalizeEnd=a.finalizeEnd,e.createEnd=a.createEnd,e.filterEnd=a.filterEnd,e.beforeDelete=a.beforeDelete,e.pathDrag=a.pathDrag,e.deleteInit=a.deleteInit,e.deleteEnd=a.deleteEnd,e.refreshEnd=a.refreshEnd,e.resizeEnd=a.resizeEnd,e.splitterResize=a.splitterResize,e.pathChanged=a.pathChanged,e.destroy=a.destroy,e.beforeRequest=a.beforeRequest,e.upload=a.upload,e.skipUpload=a.skipUpload,e.afterRequest=a.afterRequest,e.download=a.download,e.layoutRefresh=a.layoutRefresh,e.actionFailure=a.actionFailure,e.search=a.search,e.openInit=a.openInit,e.openEnd=a.openEnd,e.selectionChanged=a.selectionChanged,e.selectAllInit=a.selectAllInit,e.clearAllInit=a.clearAllInit,e.clearPathInit=a.clearPathInit,e.layoutChange=a.layoutChange,e.sortByChange=a.sortByChange,e.nodeExpand=a.nodeExpand,e.detailsInit=a.detailsInit,e.menuItemData=a.menuItemData,e.renameInit=a.renameInit,e.renameEndParent=a.renameEndParent,e.renameEnd=a.renameEnd,e.showPaste=a.showPaste,e.hidePaste=a.hidePaste,e.selectedData=a.selectedData,e.cutCopyInit=a.cutCopyInit,e.pasteInit=a.pasteInit,e.pasteEnd=a.pasteEnd,e.cutEnd=a.cutEnd,e.hideLayout=a.hideLayout,e.updateTreeSelection=a.updateTreeSelection,e.treeSelect=a.treeSelect,e.sortColumn=a.sortColumn,e.pathColumn=a.pathColumn,e.searchTextChange=a.searchTextChange,e.beforeDownload=a.beforeDownload,e.downloadInit=a.downloadInit,e.dropInit=a.dropInit,e.dragEnd=a.dragEnd,e.dropPath=a.dropPath,e.dragHelper=a.dragHelper,e.dragging=a.dragging,e.updateSelectionData=a.updateSelectionData,e.methodCall=a.methodCall,e.permissionRead=a.permissionRead,e.permissionEdit=a.permissionEdit,e.permissionEditContents=a.permissionEditContents,e.permissionCopy=a.permissionCopy,e.permissionUpload=a.permissionUpload,e.permissionDownload=a.permissionDownload,e.FileManager=a.FileManager,e.Toolbar=a.Toolbar,e.BreadCrumbBar=a.BreadCrumbBar,e.Virtualization=a.Virtualization,e.NavigationPane=a.NavigationPane,e.DetailsView=a.DetailsView,e.LargeIconsView=a.LargeIconsView,e.createDialog=a.createDialog,e.createExtDialog=a.createExtDialog,e.createImageDialog=a.createImageDialog,e.ContextMenu=a.ContextMenu,Object.defineProperty(e,"__esModule",{value:!0})});
11
11
  //# sourceMappingURL=ej2-angular-filemanager.umd.min.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ej2-angular-filemanager.umd.min.js","sources":["~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager.component.ts","~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager.module.ts","~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager-all.module.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 /** @type {?} */ 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 /** @type {?} */ 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 /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Essential JS 2 Angular FileManager Component.\n * ```html\n * <ejs-filemanager showThumbnail='false'></ejs-filemanager>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class FileManagerComponent extends FileManager implements IComponentBase {\npublic context : any;\npublic 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;\npublic uploadListCreate: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate 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 try {\n let mod = this.injector.get('FileManagerNavigationPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerLargeIconsView');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerBreadCrumbBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-filemanager',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction FileManagerComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerComponent.ctorParameters;\n/** @type {?} */\nFileManagerComponent.prototype.context;\n/** @type {?} */\nFileManagerComponent.prototype.tagObjects;\n/** @type {?} */\nFileManagerComponent.prototype.beforeDownload;\n/** @type {?} */\nFileManagerComponent.prototype.beforeImageLoad;\n/** @type {?} */\nFileManagerComponent.prototype.beforePopupClose;\n/** @type {?} */\nFileManagerComponent.prototype.beforePopupOpen;\n/** @type {?} */\nFileManagerComponent.prototype.beforeSend;\n/** @type {?} */\nFileManagerComponent.prototype.created;\n/** @type {?} */\nFileManagerComponent.prototype.destroyed;\n/** @type {?} */\nFileManagerComponent.prototype.failure;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragStart;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragStop;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragging;\n/** @type {?} */\nFileManagerComponent.prototype.fileDropped;\n/** @type {?} */\nFileManagerComponent.prototype.fileLoad;\n/** @type {?} */\nFileManagerComponent.prototype.fileOpen;\n/** @type {?} */\nFileManagerComponent.prototype.fileSelect;\n/** @type {?} */\nFileManagerComponent.prototype.fileSelection;\n/** @type {?} */\nFileManagerComponent.prototype.menuClick;\n/** @type {?} */\nFileManagerComponent.prototype.menuOpen;\n/** @type {?} */\nFileManagerComponent.prototype.popupClose;\n/** @type {?} */\nFileManagerComponent.prototype.popupOpen;\n/** @type {?} */\nFileManagerComponent.prototype.success;\n/** @type {?} */\nFileManagerComponent.prototype.toolbarClick;\n/** @type {?} */\nFileManagerComponent.prototype.toolbarCreate;\n/** @type {?} */\nFileManagerComponent.prototype.uploadListCreate;\n/** @type {?} */\nFileManagerComponent.prototype.registerEvents;\n/** @type {?} */\nFileManagerComponent.prototype.addTwoWay;\n/** @type {?} */\nFileManagerComponent.prototype.ngEle;\n/** @type {?} */\nFileManagerComponent.prototype.srenderer;\n/** @type {?} */\nFileManagerComponent.prototype.viewContainerRef;\n/** @type {?} */\nFileManagerComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FileManagerComponent } from './filemanager.component';\n/**\n * NgModule definition for the FileManager component.\n */\nexport class FileManagerModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n FileManagerComponent\n ],\n exports: [\n FileManagerComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction FileManagerModule_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","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 /** @type {?} */ DetailsViewService: ValueProvider = { provide: 'FileManagerDetailsView', useValue: DetailsView};\nexport const /** @type {?} */ NavigationPaneService: ValueProvider = { provide: 'FileManagerNavigationPane', useValue: NavigationPane};\nexport const /** @type {?} */ LargeIconsViewService: ValueProvider = { provide: 'FileManagerLargeIconsView', useValue: LargeIconsView};\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'FileManagerToolbar', useValue: Toolbar};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'FileManagerContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ BreadCrumbBarService: ValueProvider = { provide: 'FileManagerBreadCrumbBar', useValue: BreadCrumbBar};\n/**\n * NgModule definition for the FileManager component with providers.\n */\nexport class FileManagerAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\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}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction FileManagerAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["inputs","outputs","twoWays","exports","FileManagerComponent","_super","ngEle","srenderer","viewContainerRef","injector","_this","call","this","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","registerEvents","addTwoWay","setValue","context","ComponentBase","__extends","prototype","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","FileManager","decorators","type","Component","args","selector","template","changeDetection","ChangeDetectionStrategy","OnPush","queries","ctorParameters","ElementRef","Renderer2","ViewContainerRef","Injector","__decorate","ComponentMixins","__metadata","FileManagerModule","NgModule","imports","CommonModule","declarations","DetailsViewService","provide","useValue","DetailsView","NavigationPaneService","NavigationPane","LargeIconsViewService","LargeIconsView","ToolbarService","Toolbar","ContextMenuService","ContextMenu","BreadCrumbBarService","BreadCrumbBar","FileManagerAllModule","providers"],"mappings":"4xCAMaA,GAAmB,eAAgB,mBAAmB,sBAAsB,sBAAsB,WAAW,sBAAsB,sBAAsB,oBAAoB,YAAY,SAAS,SAAS,yBAAyB,OAAO,cAAc,gBAAgB,iBAAiB,gBAAgB,oBAAoB,kBAAkB,gBAAgB,SAAS,YAAY,kBAAkB,iBAAiB,OAAO,SAC/ZC,GAAoB,iBAAkB,kBAAkB,mBAAmB,kBAAkB,aAAa,UAAU,YAAY,UAAU,gBAAgB,eAAe,eAAe,cAAc,WAAW,WAAW,aAAa,gBAAgB,YAAY,WAAW,aAAa,YAAY,UAAU,eAAe,gBAAgB,oBAClVC,GAAoB,IAQjCC,EAAAC,qBAAA,SAAAC,GAiCA,SAAAD,EADwBE,EAA2BC,EAA8BC,EAA2CC,GAC5H,IAAAC,EAIQL,EAJRM,KAAAC,OAAAA,KADwBF,EAAxBJ,MAAwBA,EAA2BI,EAAnDH,UAAmDA,EAA8BG,EAAjFF,iBAAiFA,EAA2CE,EAA5HD,SAA4HA,EAMpHC,EAAKG,QAAUH,EAAKJ,MAAMQ,cAC1BJ,EAAKK,gBAAkBL,EAAKK,oBAC5B,IACQ,IAAIC,EAAMN,EAAKD,SAASQ,IAAI,2BACc,IAAvCP,EAAKK,gBAAgBG,QAAQF,IAC5BN,EAAKK,gBAAgBI,KAAKH,GAEhC,MAAOI,IACb,IACYJ,EAAMN,EAAKD,SAASQ,IAAI,8BACc,IAAvCP,EAAKK,gBAAgBG,QAAQF,IAC5BN,EAAKK,gBAAgBI,KAAKH,GAEhC,MAAOK,IACb,IACYL,EAAMN,EAAKD,SAASQ,IAAI,8BACc,IAAvCP,EAAKK,gBAAgBG,QAAQF,IAC5BN,EAAKK,gBAAgBI,KAAKH,GAEhC,MAAOM,IACb,IACYN,EAAMN,EAAKD,SAASQ,IAAI,uBACc,IAAvCP,EAAKK,gBAAgBG,QAAQF,IAC5BN,EAAKK,gBAAgBI,KAAKH,GAEhC,MAAOO,IACb,IACYP,EAAMN,EAAKD,SAASQ,IAAI,2BACc,IAAvCP,EAAKK,gBAAgBG,QAAQF,IAC5BN,EAAKK,gBAAgBI,KAAKH,GAEhC,MAAOQ,IACb,IACYR,EAAMN,EAAKD,SAASQ,IAAI,6BACc,IAAvCP,EAAKK,gBAAgBG,QAAQF,IAC5BN,EAAKK,gBAAgBI,KAAKH,GAEhC,MAAOS,WAEbf,EAAKgB,eAAezB,GACpBS,EAAKiB,UAAUhB,KAAKD,EAAMR,GAC1B0B,EAAAA,SAAS,kBAAmBlB,EAAMA,EAAKF,kBACvCE,EAAKmB,QAAW,IAAIC,EAAAA,gBAkD5B,OAlI0CC,EAA1C3B,EAAAC,GA+EKD,EAAL4B,UAAAC,SAAK,WAOGrB,KANKiB,QAAQI,SAASrB,OAGzBR,EAAL4B,UAAAE,gBAAK,WASGtB,KARKiB,QAAQK,gBAAgBtB,OAGhCR,EAAL4B,UAAAG,YAAK,WAWGvB,KAVKiB,QAAQM,YAAYvB,OAG5BR,EAAL4B,UAAAI,sBAAK,WAcGxB,KAZKiB,QAAQO,sBAAsBxB,OAqC3CR,EAlIiC,CAASiC,EAAAA,aAkGnCjC,EAAAA,qBAAPkC,aACEC,KAAMC,EAAAA,UAAWC,OAYfC,SAXU,kBAYV1C,OAXQA,EAYRC,QAXSA,EAYT0C,SAXU,GAYVC,gBAXiBC,EAAAA,wBAAwBC,OAYzCC,eALH3C,EAAAA,qBAAD4C,eAAC,WAAA,QAcAT,KAAMU,EAAAA,aACNV,KAAMW,EAAAA,YACNX,KAAMY,EAAAA,mBACNZ,KAAMa,EAAAA,YAhIMhD,EAAAA,qBAAbiD,GACCC,EAAAA,iBAAAxB,EAAAA,gBA+BDyB,EAAA,qBAA+BN,EAAAA,WAA+BC,EAAAA,UAAoCC,EAAAA,iBAAoCC,EAAAA,YAhCzHhD,EAAAA,sBCVb,IAAAoD,EAAA,kBAAA,aAAA,GAEwCA,EAAxClB,aACEC,KAAMkB,EAAAA,SAAUhB,OADdiB,SAESC,EAAAA,cADTC,cACIxD,EAAAA,sBAEJD,SACIC,EAAAA,0BAOPoD,EAADR,eAAC,WAAA,UCbM,IAAMa,GAAsCC,QAAS,yBAA0BC,SAAUC,EAAAA,aACnFC,GAAyCH,QAAS,4BAA6BC,SAAUG,EAAAA,gBACzFC,GAAyCL,QAAS,4BAA6BC,SAAUK,EAAAA,gBACzFC,GAAkCP,QAAS,qBAAsBC,SAAUO,EAAAA,SAC3EC,GAAsCT,QAAS,yBAA0BC,SAAUS,EAAAA,aACnFC,GAAwCX,QAAS,2BAA4BC,SAAUW,EAAAA,eAIpGC,EAAA,kBAAA,aAAA,GAE2CA,EAA3CrC,aACEC,KAAMkB,EAAAA,SAAUhB,OADdiB,SAESC,EAAAA,aAAeH,GADxBrD,SACIqD,GAEJoB,WACIf,EACAI,EACAE,EACAE,EACAE,EACAE,OAOPE,EAAD3B,eAAC,WAAA"}
1
+ {"version":3,"file":"ej2-angular-filemanager.umd.min.js","sources":["~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager.component.ts","~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager.module.ts","~/@syncfusion/ej2-angular-filemanager/src/file-manager/filemanager-all.module.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 /** @type {?} */ 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','virtualizationSettings','width'];\nexport const /** @type {?} */ 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 /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Essential JS 2 Angular FileManager Component.\n * ```html\n * <ejs-filemanager showThumbnail='false'></ejs-filemanager>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class FileManagerComponent extends FileManager implements IComponentBase {\npublic context : any;\npublic 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;\npublic uploadListCreate: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate 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 try {\n let mod = this.injector.get('FileManagerNavigationPane');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerLargeIconsView');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerBreadCrumbBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('FileManagerVirtualization');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-filemanager',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction FileManagerComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerComponent.ctorParameters;\n/** @type {?} */\nFileManagerComponent.prototype.context;\n/** @type {?} */\nFileManagerComponent.prototype.tagObjects;\n/** @type {?} */\nFileManagerComponent.prototype.beforeDownload;\n/** @type {?} */\nFileManagerComponent.prototype.beforeImageLoad;\n/** @type {?} */\nFileManagerComponent.prototype.beforePopupClose;\n/** @type {?} */\nFileManagerComponent.prototype.beforePopupOpen;\n/** @type {?} */\nFileManagerComponent.prototype.beforeSend;\n/** @type {?} */\nFileManagerComponent.prototype.created;\n/** @type {?} */\nFileManagerComponent.prototype.destroyed;\n/** @type {?} */\nFileManagerComponent.prototype.failure;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragStart;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragStop;\n/** @type {?} */\nFileManagerComponent.prototype.fileDragging;\n/** @type {?} */\nFileManagerComponent.prototype.fileDropped;\n/** @type {?} */\nFileManagerComponent.prototype.fileLoad;\n/** @type {?} */\nFileManagerComponent.prototype.fileOpen;\n/** @type {?} */\nFileManagerComponent.prototype.fileSelect;\n/** @type {?} */\nFileManagerComponent.prototype.fileSelection;\n/** @type {?} */\nFileManagerComponent.prototype.menuClick;\n/** @type {?} */\nFileManagerComponent.prototype.menuOpen;\n/** @type {?} */\nFileManagerComponent.prototype.popupClose;\n/** @type {?} */\nFileManagerComponent.prototype.popupOpen;\n/** @type {?} */\nFileManagerComponent.prototype.success;\n/** @type {?} */\nFileManagerComponent.prototype.toolbarClick;\n/** @type {?} */\nFileManagerComponent.prototype.toolbarCreate;\n/** @type {?} */\nFileManagerComponent.prototype.uploadListCreate;\n/** @type {?} */\nFileManagerComponent.prototype.registerEvents;\n/** @type {?} */\nFileManagerComponent.prototype.addTwoWay;\n/** @type {?} */\nFileManagerComponent.prototype.ngEle;\n/** @type {?} */\nFileManagerComponent.prototype.srenderer;\n/** @type {?} */\nFileManagerComponent.prototype.viewContainerRef;\n/** @type {?} */\nFileManagerComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FileManagerComponent } from './filemanager.component';\n/**\n * NgModule definition for the FileManager component.\n */\nexport class FileManagerModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n FileManagerComponent\n ],\n exports: [\n FileManagerComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction FileManagerModule_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","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, Virtualization} from '@syncfusion/ej2-filemanager';\n\n\nexport const /** @type {?} */ DetailsViewService: ValueProvider = { provide: 'FileManagerDetailsView', useValue: DetailsView};\nexport const /** @type {?} */ NavigationPaneService: ValueProvider = { provide: 'FileManagerNavigationPane', useValue: NavigationPane};\nexport const /** @type {?} */ LargeIconsViewService: ValueProvider = { provide: 'FileManagerLargeIconsView', useValue: LargeIconsView};\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'FileManagerToolbar', useValue: Toolbar};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'FileManagerContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ BreadCrumbBarService: ValueProvider = { provide: 'FileManagerBreadCrumbBar', useValue: BreadCrumbBar};\nexport const /** @type {?} */ VirtualizationService: ValueProvider = { provide: 'FileManagerVirtualization', useValue: Virtualization};\n/**\n * NgModule definition for the FileManager component with providers.\n */\nexport class FileManagerAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, FileManagerModule],\n exports: [\n FileManagerModule\n ],\n providers:[\n DetailsViewService,\n NavigationPaneService,\n LargeIconsViewService,\n ToolbarService,\n ContextMenuService,\n BreadCrumbBarService,\n VirtualizationService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction FileManagerAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nFileManagerAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nFileManagerAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["inputs","outputs","twoWays","exports","FileManagerComponent","_super","ngEle","srenderer","viewContainerRef","injector","_this","call","this","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","_g","registerEvents","addTwoWay","setValue","context","ComponentBase","__extends","prototype","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","FileManager","decorators","type","Component","args","selector","template","changeDetection","ChangeDetectionStrategy","OnPush","queries","ctorParameters","ElementRef","Renderer2","ViewContainerRef","Injector","__decorate","ComponentMixins","__metadata","FileManagerModule","NgModule","imports","CommonModule","declarations","DetailsViewService","provide","useValue","DetailsView","NavigationPaneService","NavigationPane","LargeIconsViewService","LargeIconsView","ToolbarService","Toolbar","ContextMenuService","ContextMenu","BreadCrumbBarService","BreadCrumbBar","VirtualizationService","Virtualization","FileManagerAllModule","providers"],"mappings":"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"}
@@ -1 +1 @@
1
- {"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-filemanager"}],"metadata":{"ɵa":["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"],"ɵb":["beforeDownload","beforeImageLoad","beforePopupClose","beforePopupOpen","beforeSend","created","destroyed","failure","fileDragStart","fileDragStop","fileDragging","fileDropped","fileLoad","fileOpen","fileSelect","fileSelection","menuClick","menuOpen","popupClose","popupOpen","success","toolbarClick","toolbarCreate","uploadListCreate"],"FileManagerComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"FileManager"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-filemanager","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"FileManagerModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"FileManagerComponent"}],"exports":[{"__symbolic":"reference","name":"FileManagerComponent"}]}]}],"members":{}},"FileManagerAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"FileManagerModule"}],"exports":[{"__symbolic":"reference","name":"FileManagerModule"}],"providers":[{"__symbolic":"reference","name":"DetailsViewService"},{"__symbolic":"reference","name":"NavigationPaneService"},{"__symbolic":"reference","name":"LargeIconsViewService"},{"__symbolic":"reference","name":"ToolbarService"},{"__symbolic":"reference","name":"ContextMenuService"},{"__symbolic":"reference","name":"BreadCrumbBarService"}]}]}],"members":{}},"DetailsViewService":{"provide":"FileManagerDetailsView","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"DetailsView"}},"NavigationPaneService":{"provide":"FileManagerNavigationPane","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"NavigationPane"}},"LargeIconsViewService":{"provide":"FileManagerLargeIconsView","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"LargeIconsView"}},"ToolbarService":{"provide":"FileManagerToolbar","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"Toolbar"}},"ContextMenuService":{"provide":"FileManagerContextMenu","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"ContextMenu"}},"BreadCrumbBarService":{"provide":"FileManagerBreadCrumbBar","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"BreadCrumbBar"}}},"origins":{"ɵa":"./src/file-manager/filemanager.component","ɵb":"./src/file-manager/filemanager.component","FileManagerComponent":"./src/file-manager/filemanager.component","FileManagerModule":"./src/file-manager/filemanager.module","FileManagerAllModule":"./src/file-manager/filemanager-all.module","DetailsViewService":"./src/file-manager/filemanager-all.module","NavigationPaneService":"./src/file-manager/filemanager-all.module","LargeIconsViewService":"./src/file-manager/filemanager-all.module","ToolbarService":"./src/file-manager/filemanager-all.module","ContextMenuService":"./src/file-manager/filemanager-all.module","BreadCrumbBarService":"./src/file-manager/filemanager-all.module"},"importAs":"@syncfusion/ej2-angular-filemanager"}
1
+ {"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-filemanager"}],"metadata":{"ɵa":["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","virtualizationSettings","width"],"ɵb":["beforeDownload","beforeImageLoad","beforePopupClose","beforePopupOpen","beforeSend","created","destroyed","failure","fileDragStart","fileDragStop","fileDragging","fileDropped","fileLoad","fileOpen","fileSelect","fileSelection","menuClick","menuOpen","popupClose","popupOpen","success","toolbarClick","toolbarCreate","uploadListCreate"],"FileManagerComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"FileManager"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-filemanager","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"FileManagerModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"FileManagerComponent"}],"exports":[{"__symbolic":"reference","name":"FileManagerComponent"}]}]}],"members":{}},"FileManagerAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"FileManagerModule"}],"exports":[{"__symbolic":"reference","name":"FileManagerModule"}],"providers":[{"__symbolic":"reference","name":"DetailsViewService"},{"__symbolic":"reference","name":"NavigationPaneService"},{"__symbolic":"reference","name":"LargeIconsViewService"},{"__symbolic":"reference","name":"ToolbarService"},{"__symbolic":"reference","name":"ContextMenuService"},{"__symbolic":"reference","name":"BreadCrumbBarService"},{"__symbolic":"reference","name":"VirtualizationService"}]}]}],"members":{}},"DetailsViewService":{"provide":"FileManagerDetailsView","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"DetailsView"}},"NavigationPaneService":{"provide":"FileManagerNavigationPane","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"NavigationPane"}},"LargeIconsViewService":{"provide":"FileManagerLargeIconsView","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"LargeIconsView"}},"ToolbarService":{"provide":"FileManagerToolbar","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"Toolbar"}},"ContextMenuService":{"provide":"FileManagerContextMenu","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"ContextMenu"}},"BreadCrumbBarService":{"provide":"FileManagerBreadCrumbBar","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"BreadCrumbBar"}},"VirtualizationService":{"provide":"FileManagerVirtualization","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-filemanager","name":"Virtualization"}}},"origins":{"ɵa":"./src/file-manager/filemanager.component","ɵb":"./src/file-manager/filemanager.component","FileManagerComponent":"./src/file-manager/filemanager.component","FileManagerModule":"./src/file-manager/filemanager.module","FileManagerAllModule":"./src/file-manager/filemanager-all.module","DetailsViewService":"./src/file-manager/filemanager-all.module","NavigationPaneService":"./src/file-manager/filemanager-all.module","LargeIconsViewService":"./src/file-manager/filemanager-all.module","ToolbarService":"./src/file-manager/filemanager-all.module","ContextMenuService":"./src/file-manager/filemanager-all.module","BreadCrumbBarService":"./src/file-manager/filemanager-all.module","VirtualizationService":"./src/file-manager/filemanager-all.module"},"importAs":"@syncfusion/ej2-angular-filemanager"}
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-filemanager@*",
3
- "_id": "@syncfusion/ej2-angular-filemanager@20.3.49",
3
+ "_id": "@syncfusion/ej2-angular-filemanager@18.18.1",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-luGl8l8PSGyM69+taJE1NUZmKwMN/nhrz/E+yn/U+hOX9Tu6ORdq90vcWT2ekap5Kymrcgr/xMyH4wBKSUBKlQ==",
5
+ "_integrity": "sha512-7uGdaOTab7H2sfZ3cbVC4tefKTyVeyQfDTIF4vBDDZ5DJikpyxdcbsJocQNKsTyQie8K3+VRCjF+YOsxzJBjHA==",
6
6
  "_location": "/@syncfusion/ej2-angular-filemanager",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-filemanager/-/ej2-angular-filemanager-20.3.49.tgz",
23
- "_shasum": "c24596cc5129277e524cff264e10e45550eca3fd",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-angular-filemanager/-/ej2-angular-filemanager-18.18.1.tgz",
23
+ "_shasum": "1dcc079e11c70f15a1468af03413f6747b235464",
24
24
  "_spec": "@syncfusion/ej2-angular-filemanager@*",
25
25
  "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~20.3.56",
35
- "@syncfusion/ej2-base": "~20.3.56",
36
- "@syncfusion/ej2-filemanager": "20.3.56"
34
+ "@syncfusion/ej2-angular-base": "~20.4.38",
35
+ "@syncfusion/ej2-base": "~20.4.38",
36
+ "@syncfusion/ej2-filemanager": "20.4.38"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 FileManager Component for Angular",
@@ -43,18 +43,21 @@
43
43
  "keywords": [
44
44
  "ej2",
45
45
  "syncfusion",
46
- "web-components",
47
46
  "typescript",
48
47
  "javascript",
49
- "ej2-filemanager",
50
48
  "filemanager",
51
49
  "fileexplorer",
52
50
  "file-explorer",
53
51
  "file-manager",
54
52
  "angular",
55
- "ng",
56
- "ng-filemanager",
57
- "ej2-ng-filemanager"
53
+ "angular-filemanager",
54
+ "angular-file organizer",
55
+ "angular-file organizing tool",
56
+ "angular-file picker",
57
+ "angular-file viewer",
58
+ "angular-file browser",
59
+ "angular-file selector",
60
+ "angular-directory viewer"
58
61
  ],
59
62
  "license": "SEE LICENSE IN license",
60
63
  "main": "dist/ej2-angular-filemanager.umd.js",
@@ -68,5 +71,5 @@
68
71
  "schematics": "./schematics/collection.json",
69
72
  "sideEffects": false,
70
73
  "typings": "ej2-angular-filemanager.d.ts",
71
- "version": "20.3.56-ngcc"
74
+ "version": "20.4.38-ngcc"
72
75
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-filemanager";
2
- export declare const pkgVer = "^20.3.49";
2
+ export declare const pkgVer = "^18.18.1";
3
3
  export declare const moduleName = "FileManagerModule";
4
- export declare const themeVer = "~20.3.49";
4
+ export declare const themeVer = "~18.18.1";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-filemanager';
4
- exports.pkgVer = '^20.3.56';
4
+ exports.pkgVer = '^20.4.38';
5
5
  exports.moduleName = 'FileManagerModule';
6
- exports.themeVer = '~20.3.56';
6
+ exports.themeVer = '~20.4.38';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-filemanager';
2
- export const pkgVer = '^20.3.56';
2
+ export const pkgVer = '^20.4.38';
3
3
  export const moduleName = 'FileManagerModule';
4
- export const themeVer = '~20.3.56';
4
+ export const themeVer = '~20.4.38';
@@ -5,6 +5,7 @@ export declare const LargeIconsViewService: ValueProvider;
5
5
  export declare const ToolbarService: ValueProvider;
6
6
  export declare const ContextMenuService: ValueProvider;
7
7
  export declare const BreadCrumbBarService: ValueProvider;
8
+ export declare const VirtualizationService: ValueProvider;
8
9
  /**
9
10
  * NgModule definition for the FileManager component with providers.
10
11
  */
package/src/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export { FileManagerComponent } from './file-manager/filemanager.component';
2
2
  export { FileManagerModule } from './file-manager/filemanager.module';
3
- export { FileManagerAllModule, DetailsViewService, NavigationPaneService, LargeIconsViewService, ToolbarService, ContextMenuService, BreadCrumbBarService } from './file-manager/filemanager-all.module';
3
+ export { FileManagerAllModule, DetailsViewService, NavigationPaneService, LargeIconsViewService, ToolbarService, ContextMenuService, BreadCrumbBarService, VirtualizationService } from './file-manager/filemanager-all.module';
4
4
  export * from '@syncfusion/ej2-filemanager';
@@ -228,16 +228,6 @@ ejs-filemanager {
228
228
  border-bottom-style: solid;
229
229
  border-width: 1px;
230
230
  }
231
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
232
- height: 30px;
233
- }
234
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
235
- border: 0;
236
- }
237
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
238
- padding-left: 1px;
239
- padding-right: 1px;
240
- }
241
231
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
242
232
  border: 0;
243
233
  box-shadow: none;
@@ -1396,14 +1386,14 @@ ejs-filemanager {
1396
1386
 
1397
1387
  @media (max-width: 469px) {
1398
1388
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1399
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1389
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1400
1390
  min-width: 140px;
1401
1391
  width: calc(50% - 17px);
1402
1392
  }
1403
1393
  }
1404
1394
  @media (min-width: 470px) and (max-width: 625px) {
1405
1395
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1406
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1396
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1407
1397
  min-width: 140px;
1408
1398
  width: calc(33.33% - 17px);
1409
1399
  }
@@ -229,16 +229,6 @@ ejs-filemanager {
229
229
  border-bottom-style: solid;
230
230
  border-width: 0 0 1px;
231
231
  }
232
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
233
- height: 30px;
234
- }
235
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
236
- border: 0;
237
- }
238
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
239
- padding-left: 1px;
240
- padding-right: 1px;
241
- }
242
232
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
243
233
  border: 0;
244
234
  box-shadow: none;
@@ -1396,14 +1386,14 @@ ejs-filemanager {
1396
1386
 
1397
1387
  @media (max-width: 469px) {
1398
1388
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1399
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1389
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1400
1390
  min-width: 140px;
1401
1391
  width: calc(50% - 17px);
1402
1392
  }
1403
1393
  }
1404
1394
  @media (min-width: 470px) and (max-width: 625px) {
1405
1395
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1406
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1396
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1407
1397
  min-width: 140px;
1408
1398
  width: calc(33.33% - 17px);
1409
1399
  }
@@ -228,16 +228,6 @@ ejs-filemanager {
228
228
  border-bottom-style: solid;
229
229
  border-width: 0 0 1px;
230
230
  }
231
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
232
- height: 30px;
233
- }
234
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
235
- border: 0;
236
- }
237
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
238
- padding-left: 1px;
239
- padding-right: 1px;
240
- }
241
231
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
242
232
  border: 0;
243
233
  box-shadow: none;
@@ -1396,14 +1386,14 @@ ejs-filemanager {
1396
1386
 
1397
1387
  @media (max-width: 469px) {
1398
1388
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1399
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1389
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1400
1390
  min-width: 140px;
1401
1391
  width: calc(50% - 17px);
1402
1392
  }
1403
1393
  }
1404
1394
  @media (min-width: 470px) and (max-width: 625px) {
1405
1395
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1406
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1396
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1407
1397
  min-width: 140px;
1408
1398
  width: calc(33.33% - 17px);
1409
1399
  }
@@ -237,16 +237,6 @@ ejs-filemanager {
237
237
  border-bottom-style: solid;
238
238
  border-width: 0 0 1px;
239
239
  }
240
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
241
- height: 30px;
242
- }
243
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
244
- border: 0;
245
- }
246
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
247
- padding-left: 1px;
248
- padding-right: 1px;
249
- }
250
240
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
251
241
  border: 0;
252
242
  box-shadow: none;
@@ -1435,14 +1425,14 @@ ejs-filemanager {
1435
1425
 
1436
1426
  @media (max-width: 469px) {
1437
1427
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1438
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1428
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1439
1429
  min-width: 140px;
1440
1430
  width: calc(50% - 17px);
1441
1431
  }
1442
1432
  }
1443
1433
  @media (min-width: 470px) and (max-width: 625px) {
1444
1434
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1445
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1435
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1446
1436
  min-width: 140px;
1447
1437
  width: calc(33.33% - 17px);
1448
1438
  }
@@ -237,16 +237,6 @@ ejs-filemanager {
237
237
  border-bottom-style: solid;
238
238
  border-width: 0 0 1px;
239
239
  }
240
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
241
- height: 30px;
242
- }
243
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
244
- border: 0;
245
- }
246
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
247
- padding-left: 1px;
248
- padding-right: 1px;
249
- }
250
240
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
251
241
  border: 0;
252
242
  box-shadow: none;
@@ -1435,14 +1425,14 @@ ejs-filemanager {
1435
1425
 
1436
1426
  @media (max-width: 469px) {
1437
1427
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1438
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1428
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1439
1429
  min-width: 140px;
1440
1430
  width: calc(50% - 17px);
1441
1431
  }
1442
1432
  }
1443
1433
  @media (min-width: 470px) and (max-width: 625px) {
1444
1434
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1445
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1435
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1446
1436
  min-width: 140px;
1447
1437
  width: calc(33.33% - 17px);
1448
1438
  }
@@ -224,16 +224,6 @@ ejs-filemanager {
224
224
  border-bottom-style: solid;
225
225
  border-width: 0 0 1px;
226
226
  }
227
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
228
- height: 30px;
229
- }
230
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
231
- border: 0;
232
- }
233
- .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
234
- padding-left: 1px;
235
- padding-right: 1px;
236
- }
237
227
  .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
238
228
  border: 0;
239
229
  box-shadow: none;
@@ -1390,14 +1380,14 @@ ejs-filemanager {
1390
1380
 
1391
1381
  @media (max-width: 469px) {
1392
1382
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1393
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1383
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1394
1384
  min-width: 140px;
1395
1385
  width: calc(50% - 17px);
1396
1386
  }
1397
1387
  }
1398
1388
  @media (min-width: 470px) and (max-width: 625px) {
1399
1389
  .e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
1400
- .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1390
+ .e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1401
1391
  min-width: 140px;
1402
1392
  width: calc(33.33% - 17px);
1403
1393
  }