File tree Expand file tree Collapse file tree 4 files changed +9
-0
lines changed
projects/igniteui-angular Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ export enum FilteringExpressionsTreeType {
1111/* marshalByValue */
1212export declare interface IExpressionTree {
1313 filteringOperands : ( IExpressionTree | IFilteringExpression ) [ ] ;
14+ /* mustCoerceToInt */
1415 operator : FilteringLogic ;
1516 fieldName ?: string | null ;
1617 entity ?: string | null ;
@@ -22,6 +23,7 @@ export declare interface IExpressionTree {
2223export declare interface IFilteringExpressionsTree extends IBaseEventArgs , IExpressionTree {
2324 filteringOperands : ( IFilteringExpressionsTree | IFilteringExpression ) [ ] ;
2425 /* alternateName: treeType */
26+ /* mustCoerceToInt */
2527 type ?: FilteringExpressionsTreeType ;
2628
2729 /* blazorSuppress */
Original file line number Diff line number Diff line change @@ -92,12 +92,16 @@ export interface OutOfViewPort {
9292
9393export interface PositionSettings {
9494 /** Direction in which the component should show */
95+ /* mustCoerceToInt */
9596 horizontalDirection ?: HorizontalAlignment ;
9697 /** Direction in which the component should show */
98+ /* mustCoerceToInt */
9799 verticalDirection ?: VerticalAlignment ;
98100 /** Target's starting point */
101+ /* mustCoerceToInt */
99102 horizontalStartPoint ?: HorizontalAlignment ;
100103 /** Target's starting point */
104+ /* mustCoerceToInt */
101105 verticalStartPoint ?: VerticalAlignment ;
102106 /* blazorSuppress */
103107 /** Animation applied while overlay opens */
Original file line number Diff line number Diff line change @@ -1215,7 +1215,9 @@ export interface IgxGridPaginatorTemplateContext {
12151215 * An interface describing settings for row/column pinning position.
12161216 */
12171217export interface IPinningConfig {
1218+ /* mustCoerceToInt */
12181219 columns ?: ColumnPinningPosition ;
1220+ /* mustCoerceToInt */
12191221 rows ?: RowPinningPosition ;
12201222}
12211223
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export interface IDimensionsChange {
1616 /** The new list of dimensions. */
1717 dimensions : IPivotDimension [ ] ,
1818 /** The dimension list type - Row, Column or Filter. */
19+ /* mustCoerceToInt */
1920 dimensionCollectionType : PivotDimensionType
2021}
2122
You can’t perform that action at this time.
0 commit comments