Skip to content

Commit 36c2131

Browse files
authored
Merge pull request #9445 from IgniteUI/dkamburov/cellClick-migr
Apply migrations for onCellClick to cellClick
2 parents 0e820c0 + f0e1b14 commit 36c2131

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ All notable changes for each version of this project will be documented in this
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`.
1010
- **Breaking Change** - `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid` events are renamed as follows:
11+
- `onCellClick` -> `cellClick`
1112
- `onScroll` -> `gridScroll`
1213
- `onSelection` -> `selected`
1314
- `onRowSelectionChange` -> `rowSelected`

projects/igniteui-angular/migrations/update-12_0_0/changes/members.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@
88
"IgxColumnComponent"
99
]
1010
},
11+
{
12+
"member": "onCellClick",
13+
"replaceWith": "cellClick",
14+
"definedIn": [
15+
"IgxGridComponent",
16+
"IgxTreeGridComponent",
17+
"IgxHierarchicalGridComponent",
18+
"IgxRowIslandComponent"
19+
]
20+
},
1121
{
1222
"member": "onScroll",
1323
"replaceWith": "gridScroll",

projects/igniteui-angular/migrations/update-12_0_0/changes/outputs.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,38 @@
153153
"type": "component"
154154
}
155155
},
156+
{
157+
"name": "onCellClick",
158+
"replaceWith": "cellClick",
159+
"owner": {
160+
"selector": "igx-grid",
161+
"type": "component"
162+
}
163+
},
164+
{
165+
"name": "onCellClick",
166+
"replaceWith": "cellClick",
167+
"owner": {
168+
"selector": "igx-tree-grid",
169+
"type": "component"
170+
}
171+
},
172+
{
173+
"name": "onCellClick",
174+
"replaceWith": "cellClick",
175+
"owner": {
176+
"selector": "igx-hierarchical-grid",
177+
"type": "component"
178+
}
179+
},
180+
{
181+
"name": "onCellClick",
182+
"replaceWith": "cellClick",
183+
"owner": {
184+
"selector": "igx-row-island",
185+
"type": "component"
186+
}
187+
},
156188
{
157189
"name": "onScroll",
158190
"replaceWith": "gridScroll",

0 commit comments

Comments
 (0)