Skip to content

Commit 9c6e2be

Browse files
committed
Merge branch 'dpetev/upgrade-9rc' into mkirova/upgrade-9rc-test
2 parents 9b64dee + 91e8ca2 commit 9c6e2be

File tree

56 files changed

+3005
-971
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+3005
-971
lines changed

CHANGELOG.md

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ All notable changes for each version of this project will be documented in this
1515

1616
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
1717
- **Behavioral Change** - Pinning columns is no longer automatically prevented when the pinning area would exceed the size of the grid.
18+
- `IgxCarousel`:
19+
- **Breaking Changes** -The carousel slides are no longer array, they are changed to QueryList.
20+
- **Behavioural change** - When slides are more than 5, a label is shown instead of the indicators. The count limit of visible indicators can be changed with the input `maximumIndicatorsCount`
21+
1822

1923
### New Features
2024
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`:
@@ -25,11 +29,31 @@ All notable changes for each version of this project will be documented in this
2529
- `sortingExpressionsChange` event emitter is added, which is fired whenever a change to the sorting expressions has occurred (prior to performing the actual sorting).
2630
- `filteringExpressionsTreeChange` event emitter is added, which is fired whenever a change to the filtering expressions has occurred (prior to performing the actual filtering).
2731
- `advancedFilteringExpressionsTreeChange` event emitter is added, which is fired whenever a change to the advanced filtering expressions has occurred (prior to performing the actual filtering).
28-
- `IgxGridExcelStyleFilteringComponent` and `IgxAdvancedFilteringDialogComponent` can now be hosted outside of the grid in order to provide the same experience as the built-in filtering UI.
29-
- `IgxOverlayService`:
30-
- `setOffset` method added. It offsets the content along the corresponding axis by the provided amount.
31-
- `IgxToggleDirective`:
32-
- `setOffset` method added. It offsets the content along the corresponding axis by the provided amount.
32+
- `IgxGridExcelStyleFilteringComponent` and `IgxAdvancedFilteringDialogComponent` can now be hosted outside of the grid in order to provide the same experience as the built-in filtering UI.
33+
- `IgxOverlayService`:
34+
- `setOffset` method added. It offsets the content along the corresponding axis by the provided amount.
35+
- `IgxToggleDirective`:
36+
- `setOffset` method added. It offsets the content along the corresponding axis by the provided amount.
37+
- `IgxRowDragGhost` directive is added. It allows providing a custom template for the drag ghost when dragging a row.
38+
```html
39+
<igx-grid #grid1 [data]="remote | async" primaryKey="ProductID"
40+
[rowDraggable]="true">
41+
<igx-column field="ProductName"></igx-column>
42+
<igx-column field="ProductID"></igx-column>
43+
<igx-column field="UnitsInStock"></igx-column>
44+
<ng-template let-data igxRowDragGhost>
45+
<div>
46+
Moving {{data.ProductName}}!
47+
</div>
48+
</ng-template>
49+
</igx-grid>
50+
```
51+
- `IgxCarousel`:
52+
- `keyboardSupport` input is added, which can be used to enable and disable keyboard navigation
53+
- `maximumIndicatorsCount` input is added, which can be used to set the number of visible indicators
54+
- `indicatorsOrientation` input is added, which can be used to set the position of indicators it can be top or bottom
55+
- `animationType` input is added, which can be used to set animation when changing slides
56+
- `indicatorTemplate` directive is added, which can be used to provide a custom indicator for carousel. If this property is not provided, a default indicator template will be used instead.
3357

3458
## 8.2.6
3559

0 commit comments

Comments
 (0)