Skip to content

Releases: eakoriakin/ionic-selectable

2.7.4

16 Sep 18:26
Compare
Choose a tag to compare

Bug fixes

  • Fix empty ionItem issue (4099719)

2.7.3

16 Sep 18:25
Compare
Choose a tag to compare

Features

Bug fixes

  • Fixed empty items error when hasVirtualScroll is true (31fb6d2)

2.7.2

16 Sep 18:25
Compare
Choose a tag to compare

Bug fixes

  • Fixed CSS overflow ellipsis for title, items and groups (51d8b08)
  • shouldStoreItemValue option doesn't require selectSearchableValueTemplate to render value (326804f)

2.7.0

16 Sep 18:25
Compare
Choose a tag to compare

Features

Breaking changes

  • Removed selectSearchableLabelTemplate. Use ion-label instead. Don't forget to add item-content attribute to <select-searchable>, otherwise the component will not render.

Old

<ion-item>
    <select-searchable>
        <ng-template selectSearchableLabelTemplate>
            Port
        </ng-template>
    </select-searchable>
</ion-item>

New

<ion-item>
    <ion-label>Port</ion-label>
    <select-searchable item-content>
    </select-searchable>
</ion-item>

2.6.0

16 Sep 18:24
Compare
Choose a tag to compare

Breaking changes

Bug fixes

  • Fix async search when inside Ionic Modal (32b1dfd)

Breaking changes

2.5.1

16 Sep 18:24
Compare
Choose a tag to compare

Bug fixes

2.5.0

16 Sep 18:24
Compare
Choose a tag to compare

Features

2.4.0

16 Sep 18:24
Compare
Choose a tag to compare

Features

2.3.1

16 Sep 18:23
Compare
Choose a tag to compare

Features

Bug fixes

  • Don't emit onSearch event if canSearch is off (03c4794)

2.3.0

16 Sep 18:23
Compare
Choose a tag to compare

Breaking changes

  • isItemEnabled option has been replaced with disabledItems (cea474b)

Features