Custom reusable select for angular with wide posibilities
npm install stf-angular-selectstf-angular-select директива випадаючого списку
==================================================
Директива випадаючого списку з можливістю пошуку і змінення зовнішнього виду і свого html
``
{{::('NP_INVOICES_EDIT.NEW_ADDRESS'| translate)}}
list-filtered="$ctrl.personalAddressesFiltered"
filterter-keys="['description']">
`
npm install stf-angular-select --save`
` javascript
import "stf-angular-select/src/stf-select.scss";
import {StfSelectDirective, StfSelectOptionDirective} from "stf-angular-select";angular.module("app", [])
.constant('NP_STF_SELECT_THROTTLE_TIME', 100) // throtle time of reaction after clicking
.directive('npStfSelect', StfSelectDirective.Factory)
.directive('stfSelectOption', StfSelectOptionDirective.Factory);
``