Skip to content

Commit

Permalink
#431: fix background issue with angular material 16, prepare release …
Browse files Browse the repository at this point in the history
…7.0.3 (#434)
  • Loading branch information
macjohnny authored Aug 28, 2023
1 parent f229aad commit 81c414d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 7.0.3
* Fix background issue with `@angular/material`: `^16.2.0`
[#431](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/431)

Thanks to @chutzemischt and @akaNightmare

## 7.0.2
* Fix compatibility with `@angular/material`: `^16.0.0`
[#425](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/425)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": "7.0.2",
"version": "7.0.3",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down
2 changes: 1 addition & 1 deletion src/app/mat-select-search/mat-select-search.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $mat-select-panel-padding: 8px;
font-size: inherit;
color: currentColor;
outline: none;
background: none;
background-color: var(--mat-select-panel-background-color);
padding: 0 $clear-button-width + $mat-select-search-clear-x 0 16px;
height: calc($mat-option-height - 1px);
line-height: calc($mat-option-height - 1px);
Expand Down
2 changes: 1 addition & 1 deletion src/app/mat-select-search/ngx-mat-select-search.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { ReactiveFormsModule } from '@angular/forms';
import { MatSelectNoEntriesFoundDirective } from './mat-select-no-entries-found.directive';
import { MatDividerModule } from '@angular/material/divider';

export const MatSelectSearchVersion = '7.0.2';
export const MatSelectSearchVersion = '7.0.3';
export { MatSelectSearchClearDirective };
export { MatSelectNoEntriesFoundDirective };

Expand Down

0 comments on commit 81c414d

Please sign in to comment.