Skip to content

Releases: eakoriakin/ionic-selectable

2.2.1

16 Sep 18:22
Compare
Choose a tag to compare

Features

2.2.0

16 Sep 18:22
Compare
Choose a tag to compare

Features

2.1.1

16 Sep 18:22
Compare
Choose a tag to compare

Breaking changes

  • multiple option has been renamed to isMultiple for consistency with other options, such as isEnabled or canSearch (fd04ad6)

Features

Bug fixes

  • Correct the behavior of open() and close() methods when component is disabled (31bb414)

2.0.4

16 Sep 18:20
Compare
Choose a tag to compare

Bug fixes

  • Close select page properly when clicking on backdrop (adcbbc7)

2.0.3

16 Sep 18:19
Compare
Choose a tag to compare

Bug fixes

  • Search corrected to support an array of numbers (1b94291)

2.0.1

16 Sep 18:19
Compare
Choose a tag to compare

Updates

Bug fixes

  • Corrected styles for desktop (4e0e418)

2.0.0

16 Sep 18:18
Compare
Choose a tag to compare

Updates

This release provides an ability to create complex templates for items, value and label easily using <ng-template>. It also includes other minor features.

Breaking changes

Old

<select-searchable
    title="port">
</select-searchable>

New

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

Old

<select-searchable
    [itemTemplate]="portItemTemplate">
</select-searchable>

portItemTemplate(port: Port) {
    return `${port.name} (${port.country})`;
}

New

<select-searchable>
    <ng-template selectSearchableItemTemplate let-port="item">
        {{port.name}} ({{port.country}})
    </ng-template>
</select-searchable>

Features