Releases: optimistex/ngx-select-ex
3.4.3
-
add: NgxSelectComponent.searchCallback: (search: string, item: INgxSelectOption) => boolean;
published: NgxSelectComponent.optionsOpen published: NgxSelectComponent.optionsClose
-
fix: The text filter does not work in Chrome Mobile (Android Version) #41
-
fix style: #48
-
Fix performance problem (from Marco Spinning)
3.4.0-ng4
3.4.0
-
implemented
NgxSelectComponent.autoClearSearch
for: #30 (comment) -
Implemented
INgxSelectOptions
for override default options: #18 (comment)Example to use:
import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {AppComponent} from './app.component'; import { NgxSelectModule, INgxSelectOptions } from 'ngx-select-ex'; const CustomSelectOptions: INgxSelectOptions = { optionValueField: 'id', optionTextField: 'name' }; @NgModule({ imports: [BrowserModule, NgxSelectModule.forRoot(CustomSelectOptions)], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { }
-
implemented option
NgxSelectComponent.size
: #27 (comment) -
removed
type=button
attribute fromspan.ngx-select__selected-plural
: #24 (comment) -
implemented default option
NgxSelectComponent.keyCodeToRemoveSelected
: #23 (comment) -
fix: When the dropdown item is too long, the textbox breaks - #29
-
add: css class
ngx-select__toggle-buttons
. -
WARNING! Removed old classes. See to table of "deleted >>> alternative":
deleted alternative ui-select-container ngx-select ui-select-multiple ngx-select_multiple ui-disabled ngx-select__disabled ui-select-match ngx-select__selected ui-select-toggle ngx-select__toggle ui-select-placeholder ngx-select__placeholder ui-select-match-text ngx-select__selected-single ui-select-allow-clear ngx-select__allow-clear ui-select-match-item ngx-select__selected-plural ui-select-search ngx-select__search ui-select-choices ngx-select__choices ui-select-choices-row ngx-select__item
3.3.12
- fix: error on pressing the key Enter when items is empty.
ERROR TypeError: Cannot read property 'disabled' of undefined at NgxSelectComponent.optionSelect (ngx-select.component.ts:353)
3.3.11
- fix: ERROR Error: ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: 'open show: 58'. Current value: 'open show: false'...
- feat: implemented the event
(navigated)
- #21 (comment) - feat: implemented templates for: "option in the dropdown menu", "option selected", "option not found".
Closed issues: - update documentation
3.3.10
fix: Not working with custom getter #19 (comment)
3.3.9
fix: show the message "No results found" only when the items contain some items but all of them are filtered: #11 (comment)
3.1.4-ng4
The build contains all code from v3.3.7, but it is adapted for Angular 4!