igniteui-angular 12.3.9 → 12.3.10
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/bundles/igniteui-angular.umd.js +36 -4
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/combo/combo-item.component.js +2 -2
- package/esm2015/lib/grids/grid/grid.component.js +2 -2
- package/esm2015/lib/grids/grid-base.directive.js +33 -1
- package/esm2015/lib/grids/hierarchical-grid/hierarchical-grid.component.js +2 -2
- package/esm2015/lib/grids/tree-grid/tree-grid.component.js +2 -2
- package/fesm2015/igniteui-angular.js +36 -4
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/grids/grid-base.directive.d.ts +27 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ import { PlatformUtil } from '../core/utils';
|
|
|
6
6
|
import { FilteringLogic } from '../data-operations/filtering-expression.interface';
|
|
7
7
|
import { IGroupByRecord } from '../data-operations/groupby-record.interface';
|
|
8
8
|
import { ISortingExpression } from '../data-operations/sorting-expression.interface';
|
|
9
|
-
import { IgxGridForOfDirective } from '../directives/for-of/for_of.directive';
|
|
9
|
+
import { IForOfDataChangingEventArgs, IgxGridForOfDirective } from '../directives/for-of/for_of.directive';
|
|
10
10
|
import { IgxOverlayService, OverlaySettings, StateUpdateEvent } from '../services/public_api';
|
|
11
11
|
import { GridBaseAPIService } from './api.service';
|
|
12
12
|
import { ISummaryExpression } from './summaries/grid-summary';
|
|
@@ -780,6 +780,24 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
780
780
|
* @hidden @internal
|
|
781
781
|
*/
|
|
782
782
|
localeChange: EventEmitter<boolean>;
|
|
783
|
+
/**
|
|
784
|
+
* Emitted before the grid's data view is changed because of a data operation, rebinding, etc.
|
|
785
|
+
*
|
|
786
|
+
* @example
|
|
787
|
+
* ```typescript
|
|
788
|
+
* <igx-grid #grid [data]="localData" [autoGenerate]="true" (dataChanging)='handleDataChangingEvent()'></igx-grid>
|
|
789
|
+
* ```
|
|
790
|
+
*/
|
|
791
|
+
dataChanging: EventEmitter<IForOfDataChangingEventArgs>;
|
|
792
|
+
/**
|
|
793
|
+
* Emitted after the grid's data view is changed because of a data operation, rebinding, etc.
|
|
794
|
+
*
|
|
795
|
+
* @example
|
|
796
|
+
* ```typescript
|
|
797
|
+
* <igx-grid #grid [data]="localData" [autoGenerate]="true" (dataChanged)='handleDataChangedEvent()'></igx-grid>
|
|
798
|
+
* ```
|
|
799
|
+
*/
|
|
800
|
+
dataChanged: EventEmitter<any>;
|
|
783
801
|
/**
|
|
784
802
|
* @hidden @internal
|
|
785
803
|
*/
|
|
@@ -2163,6 +2181,14 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
2163
2181
|
* @hidden
|
|
2164
2182
|
*/
|
|
2165
2183
|
ngAfterContentInit(): void;
|
|
2184
|
+
/**
|
|
2185
|
+
* @hidden @internal
|
|
2186
|
+
*/
|
|
2187
|
+
dataRebinding(event: IForOfDataChangingEventArgs): void;
|
|
2188
|
+
/**
|
|
2189
|
+
* @hidden @internal
|
|
2190
|
+
*/
|
|
2191
|
+
dataRebound(event: any): void;
|
|
2166
2192
|
/** @hidden @internal */
|
|
2167
2193
|
setUpPaginator(): void;
|
|
2168
2194
|
/**
|
package/package.json
CHANGED