An awesome angular dropdown with treeview
npm install @abc.xyz/drop-down-treeview 

An awesome and beautiful Angular 2 and Angular 4 dropdown treeview component.
You can customize CSS yourself to break down dependencies.
* Beautiful component
* Smart text filtering
* Unlimited tree levels
* Supports accessibility features
shell
cd dropdown-treeview
npm install
npm run start
`Installation
After install the above dependencies, install
@abc.xyz/drop-down-treeview via npm:
`shell
npm i @abc.xyz/drop-down-treeview --save
`
Once installed you need to import our main module in your application module:
`js
import {XyzModule} from '@abc.xyz/drop-down-treeview';@NgModule({
declarations: [AppComponent, ...],
imports: [XyzModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {
}
`Usage
Here is the example template:
`html
item-text="name"
min-length="0"
[(ngModel)]="item"
(change)="handleChange($event)"
placeholder="Placeholder Text">
`
config is optional. This is the default configuration:
`js
{
showRoot: false,
searchOptions = {
shouldSort: true,
threshold: 0.6,
location: 0,
distance: 100,
maxPatternLength: 32,
minMatchCharLength: 1,
keys: [
"name"
]
};
}
``Submit your ideas, proposals and found bugs which you can leave in github issues.