Skip to content

Commit 1470d33

Browse files
committed
fix(grid): add coerceToInt attribute to IPinningConfig and pagingMode props
1 parent 9898d98 commit 1470d33

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

projects/igniteui-angular/src/lib/grids/common/grid.interface.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -956,6 +956,7 @@ export interface GridType extends IGridDataBindable {
956956
* Represents the paging of the grid. It can be either 'Local' or 'Remote'
957957
* - Local: Default value; The grid will paginate the data source based on the page
958958
*/
959+
/* mustCoerceToInt */
959960
pagingMode: GridPagingMode;
960961
/** The paging state for the grid; Used to configure how paging should be applied - which is the current page, records per page */
961962
/** @hidden */
@@ -1465,7 +1466,9 @@ export interface IgxGridPaginatorTemplateContext {
14651466
* An interface describing settings for row/column pinning position.
14661467
*/
14671468
export interface IPinningConfig {
1469+
/* mustCoerceToInt */
14681470
columns?: ColumnPinningPosition;
1471+
/* mustCoerceToInt */
14691472
rows?: RowPinningPosition;
14701473
}
14711474

0 commit comments

Comments
 (0)