diff --git a/src/ng-multiselect-dropdown/src/multi-select.component.html b/src/ng-multiselect-dropdown/src/multi-select.component.html
index 8f2956e..d40e287 100644
--- a/src/ng-multiselect-dropdown/src/multi-select.component.html
+++ b/src/ng-multiselect-dropdown/src/multi-select.component.html
@@ -23,6 +23,7 @@
0 || _settings.allowRemoteDataSearch) && _settings.allowSearchFilter">
+ {{(_data | multiSelectFilter:filter).length}}
diff --git a/src/ng-multiselect-dropdown/src/multi-select.component.scss b/src/ng-multiselect-dropdown/src/multi-select.component.scss
index 4b897c6..a716efe 100644
--- a/src/ng-multiselect-dropdown/src/multi-select.component.scss
+++ b/src/ng-multiselect-dropdown/src/multi-select.component.scss
@@ -108,12 +108,16 @@ $disable-background-color: #eceeef;
padding: 10px;
input {
border: 0px;
- width: 100%;
+ width: 90%;
padding: 0px 0px 0px 26px;
+ font-size: 1.6rem sans-serif;;
}
input:focus {
outline: none;
}
+ input::placeholder {
+ font: 1.6rem sans-serif;
+ }
}
}
diff --git a/src/ng-multiselect-dropdown/src/multiselect.component.ts b/src/ng-multiselect-dropdown/src/multiselect.component.ts
index e6e93f2..1979660 100644
--- a/src/ng-multiselect-dropdown/src/multiselect.component.ts
+++ b/src/ng-multiselect-dropdown/src/multiselect.component.ts
@@ -36,6 +36,9 @@ export class MultiSelectComponent implements ControlValueAccessor {
selectAllText: "Select All",
unSelectAllText: "UnSelect All",
allowSearchFilter: false,
+ showSearchFilterCount: true,
+ searchFilterCountColor:'white',
+ searchFilterCountBgcolor:'#337ab7',
limitSelection: -1,
clearSearchFilter: true,
maxHeight: 197,
diff --git a/src/ng-multiselect-dropdown/src/multiselect.model.ts b/src/ng-multiselect-dropdown/src/multiselect.model.ts
index 458b5f0..236d9af 100644
--- a/src/ng-multiselect-dropdown/src/multiselect.model.ts
+++ b/src/ng-multiselect-dropdown/src/multiselect.model.ts
@@ -8,6 +8,9 @@ export interface IDropdownSettings {
selectAllText?: string;
unSelectAllText?: string;
allowSearchFilter?: boolean;
+ showSearchFilterCount?:boolean;
+ searchFilterCountColor?:string;
+ searchFilterCountBgcolor?:string;
clearSearchFilter?: boolean;
maxHeight?: number;
itemsShowLimit?: number;