From eae49e0d69758f7c53a2c870cad2cc9358892457 Mon Sep 17 00:00:00 2001 From: Esteban Marin Date: Wed, 6 Jun 2018 17:56:26 +0200 Subject: [PATCH 1/5] #33: fix mat-datepicker-content styles being applied --- src/app/mat-select-search/mat-select-search.component.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/mat-select-search/mat-select-search.component.scss b/src/app/mat-select-search/mat-select-search.component.scss index 8ab0e18..3966ec0 100755 --- a/src/app/mat-select-search/mat-select-search.component.scss +++ b/src/app/mat-select-search/mat-select-search.component.scss @@ -20,6 +20,13 @@ $multiple-check-width: 33px; border-bottom-style: solid; z-index: 100; font-size: inherit; + /* + compensate effects of .mat-datepicker-content + (see https://github.com/angular/material2/blob/master/src/lib/datepicker/datepicker-content.scss#L27) + until propert theming is implemented in https://github.com/bithost-gmbh/ngx-mat-select-search/issues/34 + */ + box-shadow: none; + border-radius: none; &.mat-select-search-inner-multiple { width: 100%; From e5e14975469c95d58b7544295345c30ba86a843c Mon Sep 17 00:00:00 2001 From: Esteban Marin Date: Wed, 6 Jun 2018 17:58:20 +0200 Subject: [PATCH 2/5] update changelog for 1.2.2 --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c9f956..c891826 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.2.2 +* Bugfix: input shows drop shadow when used together with MatDatepicker [#33](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/33) + + Thanks @irowbin for reporting + ## 1.2.1 * Bugfix: Width of the input field is wrong in IE11 when using large option texts with angular material 6+. [#29](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/29) From 590585a731efcee10b67fd9ac85cadf5f835a2fc Mon Sep 17 00:00:00 2001 From: Esteban Marin Date: Wed, 6 Jun 2018 17:59:05 +0200 Subject: [PATCH 3/5] set version to 1.2.2 --- package-lock.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 8689073..48920d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-mat-select-search", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 1, "requires": true, "dependencies": { From b2419feb6b1d66f4edfbca30974b88c618134b73 Mon Sep 17 00:00:00 2001 From: Esteban Marin Date: Wed, 6 Jun 2018 17:59:39 +0200 Subject: [PATCH 4/5] set version to 1.2.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9204231..3358220 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ngx-mat-select-search", "description": "Library that provides an angular component providing an input field for searching / filtering MatSelect options of the Angular Material library.", - "version": "1.2.1", + "version": "1.2.2", "license": "MIT", "scripts": { "ng": "ng", From 7bc25f0679768fcc9760cf14503fbeefeabb6ae5 Mon Sep 17 00:00:00 2001 From: Esteban Marin Date: Wed, 6 Jun 2018 18:01:11 +0200 Subject: [PATCH 5/5] fix typo --- src/app/mat-select-search/mat-select-search.component.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/mat-select-search/mat-select-search.component.scss b/src/app/mat-select-search/mat-select-search.component.scss index 3966ec0..0505561 100755 --- a/src/app/mat-select-search/mat-select-search.component.scss +++ b/src/app/mat-select-search/mat-select-search.component.scss @@ -23,7 +23,7 @@ $multiple-check-width: 33px; /* compensate effects of .mat-datepicker-content (see https://github.com/angular/material2/blob/master/src/lib/datepicker/datepicker-content.scss#L27) - until propert theming is implemented in https://github.com/bithost-gmbh/ngx-mat-select-search/issues/34 + TODO: implement propert theming (https://github.com/bithost-gmbh/ngx-mat-select-search/issues/34) */ box-shadow: none; border-radius: none;