Releases: IgniteUI/igniteui-angular
Releases · IgniteUI/igniteui-angular
9.0.0-beta.6
9.0.0-beta.5
Build and components fixes
- Slider fixes and isContinuous prop migration #6228
- Build issues after ng migration - ERROR in Directive IgxCsvExporterService #6227
- Collapsing a Master Detail row scrolls the grid to the bottom. #6189
- Date specific Advanced Filtering test is failing #6250
- Igx Radio Group has no selection when value is 0 #6195
- When pinned is set in column definition an error is returned when load the grid #6239
- When set to 1, secondaryTicks are not rendered #6225
8.2.11
9.0.0-beta.4
Features:
- Carousel
- Grid
- Slider
- Add tics to control #4594
8.2.10
9.0.0-beta.3
Merge pull request #6147 from IgniteUI/master Merge master into 9.0.x
8.2.9
Bug fixes
- Added property decorator for column component to watch for changes in column properties #6004
- Fix error when deleting child column from a column group #6160
- Remove duplicate call to
onChangeCalbackinhandleSelection#6128 - Implement
setDisableStatein select, date-picker & time-picker - Updating
heightCacheafter the view is updated #6058
8.1.18
8.2.8
Features
IgxRowDragGhostdirective is added. It allows providing a custom template for the drag ghost when dragging a row.
<igx-grid #grid1 [data]="remote | async" primaryKey="ProductID"
[rowDraggable]="true">
<igx-column field="ProductName"></igx-column>
<igx-column field="ProductID"></igx-column>
<igx-column field="UnitsInStock"></igx-column>
<ng-template let-data igxRowDragGhost>
<div>
Moving {{data.ProductName}}!
</div>
</ng-template>
</igx-grid>Bug fixes
- Switch component is broken in fluent theme #6053
- Can't scroll to top when there is expanded row in Hierarchical Grid #6061
- Paginator component theme path is not migrated in import statement #6121
ng-addschematic fails to update polyfills in non-default workspaces #6017- use
*ngIfinstead ofngClassin progress bar template [PR #6101]