Skip to content

Commit 782b810

Browse files
committed
chore(*): fixing changelog after wrong merge
1 parent d0cadec commit 782b810

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

CHANGELOG.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,29 @@ All notable changes for each version of this project will be documented in this
55
## 12.2.0
66

77
### New Features
8+
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
9+
- Added capability to restore the state of multi column headers with `IgxGridStateDirective`.
10+
- Introduced new 'rowStyles' and 'rowClasses' grid properties which allows to define a custom styling on each grid row
11+
- Introduced two new *cancellable* outputs related to CRUD - `rowDelete` and `rowAdd`. Both use an `IGridEditEventArgs` object as an event argument.
12+
```html
13+
<igx-grid #grid [data]="localData" (rowAdd)="rowAdd($event)" (rowDelete)="rowDelete($event)" [autoGenerate]="true"></igx-grid>
14+
```
815
- `igxTreeGrid`
916
- Added `TreeGridMatchingRecordsOnlyFilteringStrategy`, which allows you to display only the records matching particular filtering condition without any trace for their parents.
10-
11-
## 12.1.6
17+
- `IgxSnackbarComponent`
18+
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
19+
- `IgxToastComponent`
20+
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
1221

1322
### General
1423
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
1524
- 'oddRowCSS' and 'evenRowCSS' properties has been deprecated
1625

26+
## 12.1.6
27+
1728
### New Features
1829
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
19-
- Added two public methods that spawn the add row UI for an arbitrary record in the current data view. One that accepts a rowID to use as the row the UI spawns under and the other accepting an index that has a distinct implementation for `IgxTreeGrid`. Please, refer to the official documentation for more information:[Grid Row Adding](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/row-adding) and [Tree Grid Row Adding](https://www.infragistics.com/products/ignite-ui-angular/angular/components/treegrid/row-adding).
30+
- Added two public methods that spawn the add row UI for an arbitrary record in the current data view. One that accepts a rowID to use as the row the UI spawns under and the other accepting an index that has a distinct implementation for `IgxTreeGrid`. Please, refer to the official documentation for more information: [Grid Row Adding](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/row-adding) and [Tree Grid Row Adding](https://www.infragistics.com/products/ignite-ui-angular/angular/components/treegrid/row-adding).
2031

2132
_Note:_ That the new record is still added at the end of the data view, after the end-user submits it.
2233
```typescript
@@ -28,16 +39,6 @@ All notable changes for each version of this project will be documented in this
2839
this.treeGrid.beginAddRowByIndex(10, true); // spawns the add row UI to add a child for the row at index 10
2940
this.treeGrid.beginAddRowByIndex(null); // spawns the add row UI as the first record
3041
```
31-
- Added capability to restore the state of multi column headers with `IgxGridStateDirective`.
32-
- Introduced new 'rowStyles' and 'rowClasses' grid properties which allows to define a custom styling on each grid row
33-
- Introduced two new *cancellable* outputs related to CRUD - `rowDelete` and `rowAdd`. Both use an `IGridEditEventArgs` object as an event argument.
34-
```html
35-
<igx-grid #grid [data]="localData" (rowAdd)="rowAdd($event)" (rowDelete)="rowDelete($event)" [autoGenerate]="true"></igx-grid>
36-
```
37-
- `IgxSnackbarComponent`
38-
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
39-
- `IgxToastComponent`
40-
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
4142

4243
## 12.1.3
4344

0 commit comments

Comments
 (0)