igniteui-angular 15.1.23 → 15.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/buttonGroup/buttonGroup.component.mjs +11 -6
- package/esm2020/lib/grids/cell.component.mjs +2 -2
- package/esm2020/lib/grids/columns/column.component.mjs +5 -4
- package/esm2020/lib/grids/common/crud.service.mjs +2 -2
- package/esm2020/lib/grids/grid/grid.component.mjs +4 -4
- package/esm2020/lib/grids/grid-base.directive.mjs +3 -3
- package/esm2020/lib/grids/grid-public-cell.mjs +3 -8
- package/esm2020/lib/grids/grid-public-row.mjs +3 -3
- package/esm2020/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +4 -4
- package/esm2020/lib/grids/pivot-grid/pivot-grid.component.mjs +2 -1
- package/esm2020/lib/grids/tree-grid/tree-grid.component.mjs +4 -4
- package/fesm2015/igniteui-angular.mjs +32 -30
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +32 -30
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/buttonGroup/buttonGroup.component.d.ts +2 -2
- package/lib/grids/common/crud.service.d.ts +2 -2
- package/lib/grids/grid-base.directive.d.ts +4 -4
- package/lib/grids/grid-public-cell.d.ts +1 -1
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { AfterContentInit, AfterViewInit, ChangeDetectorRef, EventEmitter, Rende
|
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { IgxButtonDirective } from '../directives/button/button.directive';
|
|
4
4
|
import { DisplayDensityBase, IDisplayDensityOptions } from '../core/density';
|
|
5
|
-
import { IBaseEventArgs } from '../core/utils';
|
|
5
|
+
import { CancelableEventArgs, IBaseEventArgs } from '../core/utils';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
import * as i1 from "../directives/button/button.directive";
|
|
8
8
|
import * as i2 from "@angular/common";
|
|
@@ -267,7 +267,7 @@ export declare class IgxButtonGroupComponent extends DisplayDensityBase implemen
|
|
|
267
267
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxButtonGroupComponent, [null, null, { optional: true; }]>;
|
|
268
268
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxButtonGroupComponent, "igx-buttongroup", never, { "id": "id"; "itemContentCssClass": "itemContentCssClass"; "multiSelection": "multiSelection"; "values": "values"; "disabled": "disabled"; "alignment": "alignment"; }, { "selected": "selected"; "deselected": "deselected"; }, ["templateButtons"], ["*"], false, never>;
|
|
269
269
|
}
|
|
270
|
-
export interface IButtonGroupEventArgs extends IBaseEventArgs {
|
|
270
|
+
export interface IButtonGroupEventArgs extends IBaseEventArgs, CancelableEventArgs {
|
|
271
271
|
button: IgxButtonDirective;
|
|
272
272
|
index: number;
|
|
273
273
|
}
|
|
@@ -135,7 +135,7 @@ export declare class IgxGridCRUDService extends IgxRowAddCrudState {
|
|
|
135
135
|
*/
|
|
136
136
|
enterAddRowMode(parentRow: RowType, asChild?: boolean, event?: Event): void;
|
|
137
137
|
/**
|
|
138
|
-
* Finishes the row transactions on the current row.
|
|
138
|
+
* Finishes the row transactions on the current row and returns whether the grid editing was canceled.
|
|
139
139
|
*
|
|
140
140
|
* @remarks
|
|
141
141
|
* If `commit === true`, passes them from the pending state to the data (or transaction service)
|
|
@@ -145,7 +145,7 @@ export declare class IgxGridCRUDService extends IgxRowAddCrudState {
|
|
|
145
145
|
* ```
|
|
146
146
|
* @param commit
|
|
147
147
|
*/
|
|
148
|
-
endEdit(commit?: boolean, event?: Event):
|
|
148
|
+
endEdit(commit?: boolean, event?: Event): boolean;
|
|
149
149
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridCRUDService, never>;
|
|
150
150
|
static ɵprov: i0.ɵɵInjectableDeclaration<IgxGridCRUDService>;
|
|
151
151
|
}
|
|
@@ -2919,7 +2919,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
2919
2919
|
* @param columnName
|
|
2920
2920
|
* @param index
|
|
2921
2921
|
*/
|
|
2922
|
-
pinColumn(columnName: string | IgxColumnComponent, index?:
|
|
2922
|
+
pinColumn(columnName: string | IgxColumnComponent, index?: number): boolean;
|
|
2923
2923
|
/**
|
|
2924
2924
|
* Unpins a column by field name. Returns whether the operation is successful.
|
|
2925
2925
|
*
|
|
@@ -2930,7 +2930,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
2930
2930
|
* @param columnName
|
|
2931
2931
|
* @param index
|
|
2932
2932
|
*/
|
|
2933
|
-
unpinColumn(columnName: string | IgxColumnComponent, index?:
|
|
2933
|
+
unpinColumn(columnName: string | IgxColumnComponent, index?: number): boolean;
|
|
2934
2934
|
/**
|
|
2935
2935
|
* Pin the row by its id.
|
|
2936
2936
|
*
|
|
@@ -3478,7 +3478,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
3478
3478
|
*/
|
|
3479
3479
|
getUnpinnedIndexById(id: any): number;
|
|
3480
3480
|
/**
|
|
3481
|
-
* Finishes the row transactions on the current row.
|
|
3481
|
+
* Finishes the row transactions on the current row and returns whether the grid editing was canceled.
|
|
3482
3482
|
*
|
|
3483
3483
|
* @remarks
|
|
3484
3484
|
* If `commit === true`, passes them from the pending state to the data (or transaction service)
|
|
@@ -3488,7 +3488,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
3488
3488
|
* ```
|
|
3489
3489
|
* @param commit
|
|
3490
3490
|
*/
|
|
3491
|
-
endEdit(commit?: boolean, event?: Event):
|
|
3491
|
+
endEdit(commit?: boolean, event?: Event): boolean;
|
|
3492
3492
|
/**
|
|
3493
3493
|
* Enters add mode by spawning the UI under the specified row by rowID.
|
|
3494
3494
|
*
|
|
@@ -14,7 +14,7 @@ export declare class IgxGridCell implements CellType {
|
|
|
14
14
|
/**
|
|
15
15
|
* @hidden
|
|
16
16
|
*/
|
|
17
|
-
constructor(grid: GridType, row: number | RowType, column:
|
|
17
|
+
constructor(grid: GridType, row: number | RowType, column: ColumnType);
|
|
18
18
|
/**
|
|
19
19
|
* Returns the row containing the cell.
|
|
20
20
|
* ```typescript
|
|
@@ -688,7 +688,7 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
688
688
|
/**
|
|
689
689
|
* @hidden @internal
|
|
690
690
|
*/
|
|
691
|
-
endEdit(_commit?: boolean, _event?: Event):
|
|
691
|
+
endEdit(_commit?: boolean, _event?: Event): boolean;
|
|
692
692
|
/**
|
|
693
693
|
* @hidden @internal
|
|
694
694
|
*/
|
package/package.json
CHANGED