Skip to content
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
Expand Up @@ -11,6 +11,7 @@ export enum FilteringExpressionsTreeType {
/* marshalByValue */
export declare interface IExpressionTree {
filteringOperands: (IExpressionTree | IFilteringExpression)[];
/* mustCoerceToInt */
operator: FilteringLogic;
fieldName?: string | null;
entity?: string | null;
Expand All @@ -22,6 +23,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 @@ -1521,7 +1521,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 @@ -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