<!--  --> <h1 align='center'>ngx-sand-simpleselect</h1>
npm install ngx-sand-simple-select
cmd
npm install ngx-sand-simpleselect
`
$3
`cmd
import { SandSimpleSelectModule } from 'sand-simple-select'
`
$3
`cmd
@NgModule({
imports: [
...,
SandSimpleSelectModule
],
...
})
class YourModule { ... }
`
$3
* Use ` ` in your templates to add the default dropdown in your view like below
`ts
[dropdowndata]="dropdowndata"
[disabledropdwon]="disabled"
[selectLabel]="selectLabel"
[noDataText]="noDataText"
(select)="onSelect($event)"
(search)="onSearch($event)"
(open)="open($event)"
(close)="close($event)">
``