Skip to content

Releases: optimistex/ngx-select-ex

v3.6.7

02 Nov 17:42
Compare
Choose a tag to compare
  • remove the rxjs-compat dependency and migrate code to RxJS6
  • fix: ngx-select-ex enable() doesn't work

3.6.3

28 Oct 11:10
Compare
Choose a tag to compare
  • performance improves by "Róbert Kiss ert78gb" #119
  • fix: Multi selections are always sorted in alphabetical order. #121

3.6.1

25 Oct 20:20
Compare
Choose a tag to compare
  • upgrade to Angular: 6.1.9 (Angular CLI: 6.2.3)
  • add: Keydown NumpadEnter Feature #89
  • fix: placeholder out of the edges #87
  • add: option keepSelectedItems
  • fix: wrong behaviour with the keepSelectedItems option
  • feat: add option to auto activate element on mouse enter
  • fix: highlight selected item
  • feat: use OnPush change detection
  • feature: pass search text to not found template
  • issue: update rxjs to 6.3.3 ngx-select issue #118

3.5.9

07 Jun 09:54
Compare
Choose a tag to compare

fix some trouble with version numbers

3.5.8

07 Jun 09:39
Compare
Choose a tag to compare

fix: aot build by making some component methods public. Change type of filteredOptionList to TSelectOption. #78
fix: If 'items' contains no data, option-not-found template not showing #81

3.5.4

14 Apr 17:55
Compare
Choose a tag to compare

add: (selectionChanges) - Fired on change selected options. Returns: INgxSelectOption[] #31
fix: The enter key works wrong when used immediately after filtering #60

3.5.3@dev

07 Apr 12:10
Compare
Choose a tag to compare

enhancement: add the event (selectionChanges) #31

3.5.2

03 Apr 16:24
Compare
Choose a tag to compare

bug fix: ERROR TypeError: Cannot read property 'value' of undefined
at NgxSelectComponent.optionRemove (ngx-select.component.ts:409)
at NgxSelectComponent.inputKeyDown (ngx-select.component.ts:342)

3.5.1

03 Apr 15:55
Compare
Choose a tag to compare

bug fix: throw an error on filtering lists with numbers instead of a text #51 (comment)

3.5.0

03 Apr 13:52
Compare
Choose a tag to compare

add options:

  • INgxSelectOptions.keyCodeToOptionsOpen
  • INgxSelectOptions.keyCodeToOptionsClose
  • INgxSelectOptions.keyCodeToOptionsSelect
  • INgxSelectOptions.keyCodeToNavigateFirst
  • INgxSelectOptions.keyCodeToNavigatePrevious
  • INgxSelectOptions.keyCodeToNavigateNext
  • INgxSelectOptions.keyCodeToNavigateLast

Currently, it uses string codes for comparing with KeyboardEvent.code.
Read this for more details: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/code


The reason of the changes is deprecated property: KeyboardEvent.keyCode.
Read this for more details: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode