1.3.10 • Published 7 months ago
dex-ng-file-explorer v1.3.10
dex-ng-file-explorer
Lightweight and easy-to-use Angular File Explorer module. This is a front-end implementation only. There are no services at this point.
How to use
- Install package
npm i dex-ng-file-explorer
- Implement
IDataService
provider interface
import { IDataService } from 'dex-ng-file-explorer';
export class MyDataService implements IDataService<MyNodeType> {
...
}
- Add
NgxExplorerModule
and data provider toNgModule
import { NgxExplorerModule, DataService } from 'dex-ng-file-explorer';
@NgModule({
imports: [
...
NgxExplorerModule
],
providers: [
{ provide: DataService, useClass: MyDataService }
]
})
export class AppModule { }
- Add
<nxe-explorer></nxe-explorer>
to the template - Add css import
@import '~dex-ng-file-explorer/src/assets/icons/css/nxe.css'
1.3.10
7 months ago
1.3.7
11 months ago
1.3.6
11 months ago
1.3.5
11 months ago
1.3.4
11 months ago
1.3.9
11 months ago
1.3.8
11 months ago
1.3.3
1 year ago
1.3.2
1 year ago
1.3.1
1 year ago
1.3.0
1 year ago
0.0.8
1 year ago
0.0.7
1 year ago
0.0.6
1 year ago
0.0.5
1 year ago
0.0.4
1 year ago
0.0.3
1 year ago
0.0.2
1 year ago
0.0.0
1 year ago
0.0.1
1 year ago