From 4c9c64706a99c86e93920fcceb7b9b7cd24acc3a Mon Sep 17 00:00:00 2001 From: Esteban Marin Date: Thu, 21 Mar 2019 17:37:03 +0100 Subject: [PATCH] prepare release 1.7.0 --- CHANGELOG.md | 17 +++++++++++++++-- package-lock.json | 2 +- package.json | 2 +- .../ngx-mat-select-search.module.ts | 2 +- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1d669d..01f7bea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,24 @@ # Changelog -## 1.6.NEXT +## 1.7.0 +* Enhancement: ensure the active option is not covered by the search input when navigating + with the arrow keys or when the option list changes when searching. + [#119](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/119) + + Thanks to @Mabiro + +* Enhancement: allow disabling propagation of home / end key via `@Input() preventHomeEndKeyPropagation` + to enable moving the cursor inside the search field instead of navigating the options when pressing + Home / End [#43](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/43) + + Thanks to @geraldhe for reporting + * Bugfix / Enhancement: Update the input width when the viewport is resized [#81](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/81) Thanks to @mhosman for reporting -* Enhancement: add opacity transition animation for search clear icon / + +* Enhancement: add opacity transition animation for search clear icon ## 1.6.0 * Enhancement: Allow showing a loading / searching indicator with `@Input() searching` diff --git a/package-lock.json b/package-lock.json index 101a4ce..27e1610 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-mat-select-search", - "version": "1.6.0", + "version": "1.7.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 75ef40a..bbbcdc0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ngx-mat-select-search", "description": "Angular component providing an input field for searching / filtering MatSelect options of the Angular Material library.", - "version": "1.6.0", + "version": "1.7.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 1f469ee..77d4044 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 @@ -11,7 +11,7 @@ import {MatButtonModule, MatInputModule, MatIconModule, MatProgressSpinnerModule import { CommonModule } from '@angular/common'; import { MatSelectSearchClearDirective } from './mat-select-search-clear.directive'; -export const MatSelectSearchVersion = '1.6.0'; +export const MatSelectSearchVersion = '1.7.0'; @NgModule({