8.1.3
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
onSelectionChangeevents 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]); } }
- Combo