Skip to content

Commit 84586a1

Browse files
committed
Merge branch 'master' of https://github.com/IgniteUI/igniteui-angular into PMiteva/time-picker-ref
# Conflicts: # projects/igniteui-angular/src/lib/time-picker/time-picker.common.ts # projects/igniteui-angular/src/lib/time-picker/time-picker.component.ts
2 parents 50a1c38 + 257d28e commit 84586a1

File tree

118 files changed

+3277
-1323
lines changed

Some content is hidden

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

118 files changed

+3277
-1323
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,40 @@ All notable changes for each version of this project will be documented in this
77
### General
88
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
99
- **Breaking Change** - The `locale` and `pipeArgs` parameters are removed from the `operate` method exposed by the `IgxNumberSummaryOperand`, `IgxDateSummaryOperand`, `IgxCurrencySummaryOperand` and `IgxPercentSummaryOperand`. They are now set in the `igx-grid-summary-cell` template. To change the locale and format setting of the `igx-grid-summary-cell` the user can use the new `summaryFormatter` property of the `IgxColumnComponent`.
10+
- **Breaking Change** - `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid` events are renamed as follows:
11+
- `onScroll` -> `gridScroll`
12+
- `onSelection` -> `selected`
13+
- `onRowSelectionChange` -> `rowSelected`
14+
- `onColumnSelectionChange` -> `columnSelected`
15+
- `onColumnPinning` -> `columnPin`
16+
- `onColumnInit` -> `columnInit`
17+
- `onSortingDone` -> `sortingDone`
18+
- `onFilteringDone` -> `filteringDone`
19+
- `onPagingDone` -> `pagingDone`
20+
- `onRowAdded` -> `rowAdded`
21+
- `onRowDeleted` -> `rowDeleted`
22+
- `onColumnResized` -> `columnResized`
23+
- `onContextMenu` -> `contextMenu`
24+
- `onDoubleClick` -> `doubleClick`
25+
- `onColumnVisibilityChanged` -> `columnVisibilityChanged`
26+
- `onColumnMovingStart` -> `columnMovingStart`
27+
- `onColumnMoving` -> `columnMoving`
28+
- `onColumnMovingEnd` -> `columnMovingEnd`
29+
- `onGridKeydown` -> `gridKeydown`
30+
- `onRowDragStart` -> `rowDragStart`
31+
- `onRowDragEnd` -> `rowDragEnd`
32+
- `onGridCopy` -> `gridCopy`
33+
- `onRowToggle` -> `rowToggle`
34+
- `onRowPinning` -> `rowPinning`
35+
- `onToolbarExporting` -> `toolbarExporting`
36+
- `onRangeSelection` -> `rangeSelected`
1037
- `IgxGridRowComponent`, `IgxGridGroupByRowComponent`, `IgxTreeGridRowComponent`, `IgxHierarchicalRowComponent` are no longer exposed in the public API. Automatic migration will change these imports with `RowType`.
1138
- **Behavioral changes**
1239
- `getRowByIndex`, `getRowByKey`, `cell.row` now return an object implemening the `RowType` interface.
1340
- `dragData` emitted with `IRowDragEndEventArgs`, `IRowDragStartEventArgs` is now `RowType`
1441
- `IRowDragEndEventArgs`, `IRowDragStartEventArgs` now emit `dragElement`, which holds the dragged row html element.
1542
- `row` in `IPinRowEventArgs` is now `RowType`
43+
- `IgxTabs`, `IgxBottomNav`
1644
- **Breaking Change** - `IgxTabs` and `IgxBottomNav` components were completely refactored in order to provide more flexible and descriptive way to define tab headers and contents. Please make sure to update via `ng update` in order to migrate the existing `igx-tabs` and `igx-bottom-nav` definitions to the new ones.
1745
- `IgxForOfDirective`
1846
- **Breaking Change** - `IgxForOfDirective` events are renamed as follows:

0 commit comments

Comments
 (0)