From fa41aa9e3c7a4c5435f8f7074089725f72d575a9 Mon Sep 17 00:00:00 2001 From: Esteban Marin Date: Mon, 8 Apr 2019 12:26:50 +0200 Subject: [PATCH 1/3] Tested and update peer dependency compatibility to allow `@angular/core`: `^8.0.0`, `@angular/material`: `^8.0.0` --- CHANGELOG.md | 4 ++++ README.md | 5 ++--- package-lock.json | 2 +- package.json | 7 +++---- src/app/mat-select-search/ngx-mat-select-search.module.ts | 2 +- 5 files changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f0573b..69bc1a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.7.NEXT +* Enhancement: Tested and update peer dependency compatibility to allow + `@angular/core`: `^8.0.0`, `@angular/material`: `^8.0.0` + ## 1.7.1 * Enhancement: allow disabling scrolling active element into view when option list changes with `@Input() disableScrollToActiveOnOptionsChanged` [#130](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/130) diff --git a/README.md b/README.md index b6581c1..401b374 100644 --- a/README.md +++ b/README.md @@ -82,9 +82,8 @@ In order to change the labels, use the inputs specified in the [API](#api) secti ### Compatibility -* `@angular/core`: `^5.0.0 || ^6.0.0 || ^7.0.0`, -* `@angular/cdk`: `^5.0.0 || ^6.0.0 || ^7.0.0`, -* `@angular/material`: `^5.0.0 || ^6.0.0 || ^7.0.0`, +* `@angular/core`: `^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0`, +* `@angular/material`: `^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0`, * `rxjs`: `^5.5.2 || ^6.0.0` ### API diff --git a/package-lock.json b/package-lock.json index baa0576..4a038e3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-mat-select-search", - "version": "1.7.1", + "version": "1.7.NEXT", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 908f560..e793902 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.7.1", + "version": "1.7.NEXT", "license": "MIT", "scripts": { "ng": "ng", @@ -33,9 +33,8 @@ ], "homepage": "https://github.com/bithost-gmbh/ngx-mat-select-search", "peerDependencies": { - "@angular/core": "^5.0.0 || ^6.0.0 || ^7.0.0", - "@angular/cdk": "^5.0.0 || ^6.0.0 || ^7.0.0", - "@angular/material": "^5.0.0 || ^6.0.0 || ^7.0.0", + "@angular/core": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "@angular/material": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0", "rxjs": "^5.5.2 || ^6.0.0" }, "devDependencies": { 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 737334e..4dd879c 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.7.1'; +export const MatSelectSearchVersion = '1.7.NEXT'; @NgModule({ From 0fa21084586083775dde90b991d66bc6fda4bbac Mon Sep 17 00:00:00 2001 From: Esteban Marin Date: Mon, 8 Apr 2019 12:32:36 +0200 Subject: [PATCH 2/3] set version to 1.7.2 --- CHANGELOG.md | 2 +- package-lock.json | 2 +- package.json | 2 +- src/app/mat-select-search/ngx-mat-select-search.module.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69bc1a9..276583d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 1.7.NEXT +## 1.7.2 * Enhancement: Tested and update peer dependency compatibility to allow `@angular/core`: `^8.0.0`, `@angular/material`: `^8.0.0` diff --git a/package-lock.json b/package-lock.json index 4a038e3..01140bf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-mat-select-search", - "version": "1.7.NEXT", + "version": "1.7.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e793902..82579ac 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.7.NEXT", + "version": "1.7.2", "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 4dd879c..72de2c1 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.7.NEXT'; +export const MatSelectSearchVersion = '1.7.2'; @NgModule({ From 135f969c178d3e67c7037e6cd9536c1ad2eb585f Mon Sep 17 00:00:00 2001 From: Esteban Marin Date: Wed, 10 Apr 2019 07:33:10 +0200 Subject: [PATCH 3/3] update changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 276583d..432bc17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog ## 1.7.2 +* Enhancement: Allow setting type of the search input field with `@Input() type` + [#138](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/138) + + Thanks to @botoxparty + * Enhancement: Tested and update peer dependency compatibility to allow `@angular/core`: `^8.0.0`, `@angular/material`: `^8.0.0`