Skip to content

Commit 43fd3aa

Browse files
authored
Merge pull request #10234 from IgniteUI/sstoychev/changelog-update
docs(changelog): combining post 12.1 feats into 12.2
2 parents 851cd1c + 9af3062 commit 43fd3aa

File tree

1 file changed

+16
-30
lines changed

1 file changed

+16
-30
lines changed

CHANGELOG.md

Lines changed: 16 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,6 @@ All notable changes for each version of this project will be documented in this
1212
```html
1313
<igx-grid #grid [data]="localData" (rowAdd)="rowAdd($event)" (rowDelete)="rowDelete($event)" [autoGenerate]="true"></igx-grid>
1414
```
15-
- `igxTreeGrid`
16-
- Added `TreeGridMatchingRecordsOnlyFilteringStrategy`, which allows you to display only the records matching particular filtering condition without any trace for their parents.
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.
21-
22-
### General
23-
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
24-
- 'oddRowCSS' and 'evenRowCSS' properties has been deprecated
25-
- `IgxForOf` - now takes margins into account when calculating the space that each element takes.
26-
_Note:_ If your virtualized items contain margins, please calculate them into the `itemSize` value for the best possible initial virtualized state.
27-
28-
## 12.1.6
29-
30-
## 12.1.6
31-
32-
### New Features
33-
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
3415
- 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).
3516

3617
_Note:_ That the new record is still added at the end of the data view, after the end-user submits it.
@@ -43,21 +24,26 @@ All notable changes for each version of this project will be documented in this
4324
this.treeGrid.beginAddRowByIndex(10, true); // spawns the add row UI to add a child for the row at index 10
4425
this.treeGrid.beginAddRowByIndex(null); // spawns the add row UI as the first record
4526
```
46-
47-
## 12.1.3
48-
49-
### New Features
50-
- `igxGrid`
5127
- Added `headerStyles` and `headerGroupStyles` inputs to the column component.
52-
Similar to `cellStyles` is exposes a way to bind CSS properties and style the grid headers.
28+
Similar to `cellStyles` is exposes a way to bind CSS properties and style the grid headers.
29+
- `igxTreeGrid`
30+
- Added `TreeGridMatchingRecordsOnlyFilteringStrategy`, which allows you to display only the records matching particular filtering condition without any trace for their parents.
31+
- `IgxSnackbarComponent`
32+
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
33+
- `IgxToastComponent`
34+
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
5335

54-
## 12.1.2
55-
- `igxGrid`
36+
### General
37+
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
38+
- 'oddRowCSS' and 'evenRowCSS' properties has been deprecated
5639
- The column formatter callback signature now accepts the row data as an additional argument:
57-
```typescript formatter(value: any, rowData?: any)```
58-
The `rowData` argument may be `undefined` in remote scenarios/applying the callback on filtering labels
59-
so make sure to check its availability.
40+
```typescript
41+
formatter(value: any, rowData?: any)
42+
```
43+
The `rowData` argument may be `undefined` in remote scenarios/applying the callback on filtering labels so make sure to check its availability.
44+
- `IgxForOf` - now takes margins into account when calculating the space that each element takes.
6045

46+
_Note:_ If your virtualized items contain margins, please calculate them into the `itemSize` value for the best possible initial virtualized state.
6147
- `IgxExcelExporterService`
6248
- Added support for freezing column headers in **Excel**. By default, the column headers would not be frozen but this behavior can be controlled by the `freezeHeaders` option of the IgxExcelExporterOptions object.
6349

0 commit comments

Comments
 (0)