Skip to content

8.1.3

Choose a tag to compare

@zdrawku zdrawku released this 12 Aug 16:02
· 323 commits to 8.1.x since this release
8ef17c8

Bug fixes

  • In column groups when column cannot be pinned, the pinned button should be disabled in excel style filter #5557
  • [Sass] "--var" function doesn't work when $legacy-support is set to false on production build. #5572
  • Typing a non-existing value in the search input does not disable the apply filter button. #4018
  • Summary theme/schema #5564
  • igx-grid - Custom cell does not support ngIf anymore #5550

Enhancements

  • Combo selectionChange event args #5523
    IgxCombo
    • Combo onSelectionChange events now emits the item(s) that were added to or removed from the collection:
    <igx-combo (onSelectionChange)="handleChange($event)">
        export class Example {
            ...
            handleChange(event: {
                newSelection: any[],
                oldSelection: any[],
                added: any[], // the items added to the selection in this change
                removed: any[], // the items removed for the selection in this change
                ... 
            }) {
            console.log("Items added: ", [...event.added]);
            console.log("Items removed: ", [...event.removed]);
            }
        }