igniteui-angular 15.1.31 → 15.1.33

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.
@@ -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 { CancelableEventArgs, IBaseEventArgs } from '../core/utils';
5
+ import { 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, CancelableEventArgs {
270
+ export interface IButtonGroupEventArgs extends IBaseEventArgs {
271
271
  button: IgxButtonDirective;
272
272
  index: number;
273
273
  }
@@ -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
  *
@@ -95,6 +95,10 @@ export declare class IgxGridHeaderRowComponent implements DoCheck {
95
95
  * @hidden @internal
96
96
  */
97
97
  ngDoCheck(): void;
98
+ /**
99
+ * @hidden @internal
100
+ */
101
+ scroll(event: Event): void;
98
102
  headerRowSelection(event: MouseEvent): void;
99
103
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderRowComponent, never>;
100
104
  static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderRowComponent, "igx-grid-header-row", never, { "grid": "grid"; "pinnedColumnCollection": "pinnedColumnCollection"; "unpinnedColumnCollection": "unpinnedColumnCollection"; "activeDescendant": "activeDescendant"; "hasMRL": "hasMRL"; "width": "width"; "density": "density"; }, {}, never, never, false, never>;
@@ -310,7 +310,7 @@ exports.getTypeDefinitionAtPosition = getTypeDefinitionAtPosition;
310
310
  */
311
311
  const isMemberIgniteUI = (change, langServ, entryPath, matchPosition) => {
312
312
  var _a, _b;
313
- const content = langServ.getProgram().getSourceFile(entryPath).getText();
313
+ const content = langServ.getProgram().getSourceFile(entryPath).getFullText();
314
314
  matchPosition = shiftMatchPosition(matchPosition, content);
315
315
  const prevChar = content.substr(matchPosition - 1, 1);
316
316
  if (prevChar === SyntaxTokens.ClosingParenthesis) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "15.1.31",
3
+ "version": "15.1.33",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",