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.
- package/LICENSE +16 -0
- package/bundles/igniteui-angular.umd.js +13 -14
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/bundles/igniteui-angular.umd.min.js +1 -1
- package/bundles/igniteui-angular.umd.min.js.map +1 -1
- package/esm2015/lib/grids/common/events.js +1 -1
- package/esm2015/lib/grids/filtering/excel-style/grid.excel-style-filtering.component.js +2 -2
- package/esm2015/lib/grids/grid-base.directive.js +11 -3
- package/esm2015/lib/grids/row.directive.js +2 -2
- package/esm2015/lib/grids/toolbar/grid-toolbar.component.js +2 -11
- package/fesm2015/igniteui-angular.js +13 -13
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/grids/common/events.d.ts +2 -2
- package/lib/grids/toolbar/grid-toolbar.component.d.ts +2 -6
- package/package.json +1 -1
|
@@ -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
|
|
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
|
|
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
|
|
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