diff --git a/CHANGELOG.md b/CHANGELOG.md index 0501509..b115f84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 3.2.0 +* Feature: allow disabling the clear search button with `[hideClearSearchButton]="true"` + [#290](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/290) + + Thanks to @vlio20 + ## 3.1.4 * Fix: null-pointer exception if no form control directive on `mat-select` [#281](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/281) diff --git a/package-lock.json b/package-lock.json index b3b6c6c..31ca2df 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-mat-select-search", - "version": "3.1.4", + "version": "3.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ca46da0..5d4ad24 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "$schema": "./node_modules/ng-packagr/package.schema.json", "name": "ngx-mat-select-search", "description": "Angular component providing an input field for searching / filtering MatSelect options of the Angular Material library.", - "version": "3.1.4", + "version": "3.2.0", "license": "MIT", "scripts": { "ng": "ng", diff --git a/src/app/mat-select-search/ngx-mat-select-search.module.ts b/src/app/mat-select-search/ngx-mat-select-search.module.ts index 4f6ec1c..b07632c 100755 --- a/src/app/mat-select-search/ngx-mat-select-search.module.ts +++ b/src/app/mat-select-search/ngx-mat-select-search.module.ts @@ -17,7 +17,7 @@ import { CommonModule } from '@angular/common'; import { MatSelectSearchClearDirective } from './mat-select-search-clear.directive'; import { ReactiveFormsModule } from '@angular/forms'; -export const MatSelectSearchVersion = '3.1.4'; +export const MatSelectSearchVersion = '3.2.0'; @NgModule({