igniteui-angular
Advanced tools
Changelog
20.0.0
IgxActionStrip
hidden
property now defaults to true
.IgxChip
variant
is now strictly typed with the union of supported options and no longer accepts invalid values for the default state, provide no value (nullish) instead is needed.IgxGrid
, IgxTreeGrid
, IgxHierarchicalGrid
, IgxPivotGrid
igxGridEmpty
template directive that allows assigning the emptyGridTemplate
declaratively, without the need to get and assign reference, like other grid templates like:
<igx-grid>
<ng-template igxGridEmpty>
<!-- content to show when the grid is empty -->
</ng-template>
</igx-grid>
igxGridLoading
template directive that allows assigning the loadingGridTemplate
declaratively, without the need to get and assign reference, like other grid templates like:
<igx-grid>
<ng-template igxGridLoading>
<!-- content to show when the grid is loading -->
</ng-template>
</igx-grid>