1.3.10 • Published 4 months ago

dex-ng-file-explorer v1.3.10

Weekly downloads
-
License
MIT
Repository
gitlab
Last release
4 months ago

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 to NgModule
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'

explorer

1.3.10

4 months ago

1.3.7

9 months ago

1.3.6

9 months ago

1.3.5

9 months ago

1.3.4

9 months ago

1.3.9

9 months ago

1.3.8

9 months ago

1.3.3

10 months ago

1.3.2

10 months ago

1.3.1

10 months ago

1.3.0

10 months ago

0.0.8

10 months ago

0.0.7

10 months ago

0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago

0.0.0

10 months ago

0.0.1

10 months ago