igniteui-angular 16.0.22 → 16.0.23
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/esm2022/lib/grids/columns/column.component.mjs +2 -2
- package/esm2022/lib/grids/common/crud.service.mjs +2 -2
- package/esm2022/lib/grids/grid-base.directive.mjs +3 -3
- package/esm2022/lib/grids/pivot-grid/pivot-grid.component.mjs +2 -1
- package/fesm2022/igniteui-angular.mjs +5 -4
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/grids/common/crud.service.d.ts +2 -2
- package/lib/grids/grid-base.directive.d.ts +2 -2
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
}
|
|
@@ -3229,7 +3229,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
3229
3229
|
*/
|
|
3230
3230
|
getUnpinnedIndexById(id: any): number;
|
|
3231
3231
|
/**
|
|
3232
|
-
* Finishes the row transactions on the current row.
|
|
3232
|
+
* Finishes the row transactions on the current row and returns whether the grid editing was canceled.
|
|
3233
3233
|
*
|
|
3234
3234
|
* @remarks
|
|
3235
3235
|
* If `commit === true`, passes them from the pending state to the data (or transaction service)
|
|
@@ -3239,7 +3239,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
3239
3239
|
* ```
|
|
3240
3240
|
* @param commit
|
|
3241
3241
|
*/
|
|
3242
|
-
endEdit(commit?: boolean, event?: Event):
|
|
3242
|
+
endEdit(commit?: boolean, event?: Event): boolean;
|
|
3243
3243
|
/**
|
|
3244
3244
|
* Enters add mode by spawning the UI under the specified row by rowID.
|
|
3245
3245
|
*
|
|
@@ -692,7 +692,7 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
692
692
|
/**
|
|
693
693
|
* @hidden @internal
|
|
694
694
|
*/
|
|
695
|
-
endEdit(_commit?: boolean, _event?: Event):
|
|
695
|
+
endEdit(_commit?: boolean, _event?: Event): boolean;
|
|
696
696
|
/**
|
|
697
697
|
* @hidden @internal
|
|
698
698
|
*/
|
package/package.json
CHANGED