Skip to content

Releases: optimistex/ngx-select-ex

3.4.3

03 Apr 11:34
Compare
Choose a tag to compare
  • 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

06 Mar 19:46
Compare
Choose a tag to compare

The release with the code of 3.4.0 but adapted to Angular4

3.4.0

06 Mar 03:02
Compare
Choose a tag to compare
  • 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 from span.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

15 Feb 23:30
Compare
Choose a tag to compare
  • 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

15 Feb 02:53
Compare
Choose a tag to compare
  • 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

10 Feb 18:56
Compare
Choose a tag to compare

fix: Not working with custom getter #19 (comment)

3.3.9

09 Feb 00:58
Compare
Choose a tag to compare

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

09 Feb 00:16
Compare
Choose a tag to compare

The build contains all code from v3.3.7, but it is adapted for Angular 4!

3.3.7

08 Feb 14:18
Compare
Choose a tag to compare
  • fix: Error on disabled option with an empty array #13
  • new: add the select and remove events #14

3.3.6

07 Feb 21:24
Compare
Choose a tag to compare
  • Add the message "No results found" for empty items: #11