Releases: bithost-gmbh/ngx-mat-select-search
v1.5.2
v1.5.1
v1.5.0
-
Bugfix: Fix scroll issue in iOS #70
Thanks to @JiaHongL
-
Enhancement / Bugfix: Allow placing
<ngx-mat-select-search>
inside a<mat-option>
element.
This prevents the search field being placed outside of the visible viewport (#1).Note: it is still possible to place the
<ngx-mat-select-search>
element directly inside<mat-select>
without wrapping it in an<mat-option>
element.Thanks to @hanuhimanshu
-
Examples: Add example for server-side filtering #26
Thanks to @hanuhimanshu
-
Examples: Add example for option groups #15
Thanks to @maechler
-
Examples: refactor examples into separate components #86
v1.4.2
v1.4.1
-
Bugfix: Wrong panel positioning when select is at bottom edge of viewport
due to overridden panel height (350px
). The default panel height (256px
) will be used
#63Note: the panel height can be changed via css (not recommended, as it leads to issues):
.mat-select-search-panel { ... max-height: 350px; }
Thanks to @hadsy for reporting.
v1.4.0
-
Enhancement: Tested and updated peer dependency compatibility to allow
@angular/core
:^7.0.0
,@angular/cdk
:^7.0.0
,@angular/material
:^7.0.0
-
Enhancement: Allow disabling initial focusing of the input field with
@Input() disableInitialFocus
#47 -
Bugfix: Clearing the search input by clicking the clear icon did not work with
[clearSearchInput]="false"
#55Thanks to @ofriedrich for reporting
v1.3.1
v1.3.0
-
Enhancement: allow customization of the clear icon #41
Thanks to @OvidijusStukas
-
Enhancement: Add note about possible workaround for search input being displayed
outside of the visible viewport in some cases #1Thanks to @maxencefrenette