igniteui-angular 15.1.31 → 15.1.32
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/grids/common/strategy.mjs +2 -1
- package/esm2020/lib/grids/filtering/excel-style/excel-style-conditional-filter.component.mjs +6 -3
- package/esm2020/lib/grids/grid/grid.component.mjs +15 -3
- package/fesm2015/igniteui-angular.mjs +18 -3
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +18 -3
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/grids/grid/grid.component.d.ts +9 -0
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ import { IGroupingExpression } from '../../data-operations/grouping-expression.i
|
|
|
10
10
|
import { CellType, GridType, IgxGridMasterDetailContext, IgxGroupByRowSelectorTemplateContext, IgxGroupByRowTemplateContext, RowType } from '../common/grid.interface';
|
|
11
11
|
import { ISortingExpression } from '../../data-operations/sorting-strategy';
|
|
12
12
|
import { IGridGroupingStrategy } from '../common/strategy';
|
|
13
|
+
import { Observable, Subject } from 'rxjs';
|
|
13
14
|
import * as i0 from "@angular/core";
|
|
14
15
|
export interface IGroupingDoneEventArgs extends IBaseEventArgs {
|
|
15
16
|
expressions: Array<ISortingExpression> | ISortingExpression;
|
|
@@ -239,6 +240,14 @@ export declare class IgxGridComponent extends IgxGridBaseDirective implements Gr
|
|
|
239
240
|
get totalItemCount(): number;
|
|
240
241
|
private get _gridAPI();
|
|
241
242
|
private childDetailTemplates;
|
|
243
|
+
/**
|
|
244
|
+
* @hidden @internal
|
|
245
|
+
*/
|
|
246
|
+
groupingPerformedSubject: Subject<void>;
|
|
247
|
+
/**
|
|
248
|
+
* @hidden @internal
|
|
249
|
+
*/
|
|
250
|
+
groupingPerformed$: Observable<void>;
|
|
242
251
|
/**
|
|
243
252
|
* Gets/Sets the group by state.
|
|
244
253
|
*
|
package/package.json
CHANGED