Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(grid): add coerceToInt attribute to IPinningConfig and pagingMode props - 19.1.x #15509

Open
wants to merge 3 commits into
base: 19.1.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { IFilteringOperation } from './filtering-condition';
import { IExpressionTree } from './filtering-expressions-tree';

/* mustCoerceToInt */
export enum FilteringLogic {
And,
Or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export declare interface IExpressionTree {
export declare interface IFilteringExpressionsTree extends IBaseEventArgs, IExpressionTree {
filteringOperands: (IFilteringExpressionsTree | IFilteringExpression)[];
/* alternateName: treeType */
/* mustCoerceToInt */
type?: FilteringExpressionsTreeType;

/* blazorSuppress */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1465,7 +1465,9 @@ export interface IgxGridPaginatorTemplateContext {
* An interface describing settings for row/column pinning position.
*/
export interface IPinningConfig {
/* mustCoerceToInt */
columns?: ColumnPinningPosition;
/* mustCoerceToInt */
rows?: RowPinningPosition;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1948,11 +1948,13 @@ export abstract class IgxGridBaseDirective implements GridType,
}
}

/* mustCoerceToInt */
@Input()
public get pagingMode() {
return this._pagingMode;
}

/* mustCoerceToInt */
public set pagingMode(val: GridPagingMode) {
this._pagingMode = val;
this.pipeTrigger++;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface IDimensionsChange {
/** The new list of dimensions. */
dimensions: IPivotDimension[],
/** The dimension list type - Row, Column or Filter. */
/* mustCoerceToInt */
dimensionCollectionType: PivotDimensionType
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,16 @@ export interface OutOfViewPort {

export interface PositionSettings {
/** Direction in which the component should show */
/* mustCoerceToInt */
horizontalDirection?: HorizontalAlignment;
/** Direction in which the component should show */
/* mustCoerceToInt */
verticalDirection?: VerticalAlignment;
/** Target's starting point */
/* mustCoerceToInt */
horizontalStartPoint?: HorizontalAlignment;
/** Target's starting point */
/* mustCoerceToInt */
verticalStartPoint?: VerticalAlignment;
/* blazorSuppress */
/** Animation applied while overlay opens */
Expand Down
Loading