Skip to content

Latest commit

 

History

History
211 lines (129 loc) · 8.42 KB

CHANGELOG.md

File metadata and controls

211 lines (129 loc) · 8.42 KB

Changelog

1.7.2

  • Enhancement: Allow setting type of the search input field with @Input() type #138

    Thanks to @botoxparty

  • 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

    Thanks to @drakeBear for reporting

  • Bugfix: input field not focused in IE #131

  • Bugfix: clear button not visible after reopening select panel in combination with [clearSearchInput]="false" #133

    Thanks to @cappster for reporting

1.7.0

  • Enhancement: ensure the active option is not covered by the search input when navigating with the arrow keys or when the option list changes when searching. #119

    Thanks to @Mabiro

  • Enhancement: allow disabling propagation of home / end key via @Input() preventHomeEndKeyPropagation to enable moving the cursor inside the search field instead of navigating the options when pressing Home / End #43

    Thanks to @geraldhe for reporting

  • Bugfix / Enhancement: Update the input width when the viewport is resized #81

    Thanks to @mhosman for reporting

  • Enhancement: add opacity transition animation for search clear icon

1.6.0

  • Enhancement: Allow showing a loading / searching indicator with @Input() searching #114

    Thanks to @mstawick

1.5.3

  • Bugfix: Avoid space when opening select panel after previously showing "no entries found" message when placing <ngx-mat-select-search> inside a <mat-option> element #107

    Thanks to @aroblu94 for reporting

1.5.2

  • Bugfix: Show "no entries found" message when placing <ngx-mat-select-search> inside a <mat-option> element #101

    Thanks to @mstawick for reporting

1.5.1

  • Bugfix: Hide checkbox when placing <ngx-mat-select-search> inside a <mat-option> element and with <mat-select multi="true"> #98

    Thanks to @jkhadivi for reporting

1.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

1.4.2

  • Bugfix: Error when quickly selecting an option #69

    Thanks to @olaf89 for reporting

  • Bugfix: Filter selection jumps to next entry #73

    Thanks to @Kimmova

1.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 #63

    Note: 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.

1.4.0

  • Enhancement: Tested and update 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" #55

    Thanks to @ofriedrich for reporting

1.3.1

  • Bugfix: Error thrown when used together with *ngIf #53

    Thanks to @rhyre for reporting

1.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 #1

    Thanks to @maxencefrenette

1.2.4

  • Enhancement: ensure forward compatibility independent of markup changes #38
  • Enhancement: fix warnings in tests, improve example

1.2.3

  • Bugfix: input shows rounded corners when used together with MatDatepicker #33

1.2.2

  • Bugfix: input shows drop shadow when used together with MatDatepicker #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

    Thanks to @Sabartius

1.2.0

  • Enhancement: allow preventing clearing the search input when closing the select, needed for server-side filtering. #3

    Thanks to @damianmigo

1.1.0

  • Enhancement: Use material theming and typography #21

    Thanks to @Avejack

  • Enhancement: Adjust input field width to actual scroll bar width #21

    Thanks to @Avejack

  • Enhancement: Add Angular 6 compatibility, update dependencies #23

    Note: this reverts the RxJS operator path improvements (#17) in order to be compatible with both, Angular 5.x.x and 6.x.x

1.0.5

  • Enhancement: Really improve tree-shaking by importing RxJS operators from specific path #17

    Thanks to @mtraynham

1.0.4

  • Enhancement: improve tree-shaking by importing RxJS operators from specific path #17

    Thanks to @mtraynham

1.0.3

  • Enhancement: prevent scrollbar flashing when opening / closing #2

    Thanks to @alexandrupaul7

1.0.2

  • Enhancement: disable autocomplete for search input field #5

1.0.1

  • Bugfix: don't clear initial selection with multi="true" #6

    Thanks to @joqkey

  • Bugfix: show "no options found" message as soon as no options are found #4, #10

1.0.0

  • Initial Release