igniteui-angular 11.1.31 → 11.1.35

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.
@@ -146,7 +146,7 @@ export interface IRowToggleEventArgs extends IBaseEventArgs {
146
146
  /**
147
147
  * Event emitted when a row's pin state changes.
148
148
  */
149
- export interface IPinRowEventArgs extends IBaseEventArgs {
149
+ export interface IPinRowEventArgs extends IBaseEventArgs, CancelableEventArgs {
150
150
  /**
151
151
  * The row component instance, that was pinned/unpinned.
152
152
  * May be undefined if row does not exist in the current visible data.
@@ -159,7 +159,7 @@ export interface IPinRowEventArgs extends IBaseEventArgs {
159
159
  readonly rowID: any;
160
160
  /** The index at which to pin the row in the pinned rows collection. */
161
161
  insertAtIndex?: number;
162
- /** Whether or noy the row is pinned or unpinned. */
162
+ /** Whether or not the row is pinned or unpinned. */
163
163
  readonly isPinned: boolean;
164
164
  }
165
165
  /**
@@ -1,4 +1,4 @@
1
- import { ElementRef, OnDestroy, OnInit } from '@angular/core';
1
+ import { ElementRef, OnDestroy } from '@angular/core';
2
2
  import { Subscription } from 'rxjs';
3
3
  import { IDisplayDensityOptions, DisplayDensityBase } from '../../core/displayDensity';
4
4
  import { IgxIconService } from '../../icon/public_api';
@@ -12,7 +12,7 @@ import { GridType } from '../common/grid.interface';
12
12
  * @igxModule IgxGridToolbarModule
13
13
  *
14
14
  */
15
- export declare class IgxGridToolbarComponent extends DisplayDensityBase implements OnInit, OnDestroy {
15
+ export declare class IgxGridToolbarComponent extends DisplayDensityBase implements OnDestroy {
16
16
  protected _displayDensityOptions: IDisplayDensityOptions;
17
17
  private api;
18
18
  private iconService;
@@ -62,13 +62,9 @@ export declare class IgxGridToolbarComponent extends DisplayDensityBase implemen
62
62
  * @internal
63
63
  */
64
64
  get compactStyle(): boolean;
65
- /** @hidden @internal */
66
- width: any;
67
65
  protected _grid: IgxGridBaseDirective;
68
66
  protected sub: Subscription;
69
67
  constructor(_displayDensityOptions: IDisplayDensityOptions, api: GridBaseAPIService<IgxGridBaseDirective & GridType>, iconService: IgxIconService, element: ElementRef<HTMLElement>);
70
68
  /** @hidden @internal */
71
- ngOnInit(): void;
72
- /** @hidden @internal */
73
69
  ngOnDestroy(): void;
74
70
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "11.1.31",
3
+ "version": "11.1.35",
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",