Skip to content

Commit

Permalink
release of 2.2.0 (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
macjohnny authored Apr 29, 2020
1 parent 36a4fd7 commit bfcff8c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 2.2.0
* Enhancement: add tooltip message to select-all checkbox [#227](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/227)

Thanks to @arucar

## 2.1.2
* Fix: fix selection of different instances of same object when using `multiple` [#215](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/215)

Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,6 @@ Custom content with the CSS class `mat-select-search-custom-header-content` can
</ngx-mat-select-search>
```

#### Custom tooltip of the toggle-all checkbox
Custom tooltip with the CSS class `ngx-mat-select-search-toggle-all-tooltip`

## Known Problems / Solutions
* The search input is placed outside of the visible screen if the select element is at the top of the screen
(in the stackblitz example, remove the header
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Up @@ -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": "2.1.2",
"version": "2.2.0",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down
14 changes: 6 additions & 8 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import {BrowserModule} from '@angular/platform-browser';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MatButtonModule } from '@angular/material/button';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatIconModule } from '@angular/material/icon';
import { MatSelectModule } from '@angular/material/select';
import { MatToolbarModule } from '@angular/material/toolbar';
import {MatTooltipModule} from '@angular/material/tooltip';

import { NgxMatSelectSearchModule } from './mat-select-search/ngx-mat-select-search.module';

Expand All @@ -32,8 +31,7 @@ import { TooltipSelectAllExampleComponent } from './examples/07-tooltip-select-a
MatFormFieldModule,
MatIconModule,
MatSelectModule,
MatToolbarModule,
MatTooltipModule
MatToolbarModule
]
})
export class MaterialModule {}
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 @@ -17,7 +17,7 @@ import { CommonModule } from '@angular/common';

import { MatSelectSearchClearDirective } from './mat-select-search-clear.directive';

export const MatSelectSearchVersion = '2.1.2';
export const MatSelectSearchVersion = '2.2.0';


@NgModule({
Expand Down

0 comments on commit bfcff8c

Please sign in to comment.