igniteui-angular 20.1.25 → 20.1.26
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/fesm2022/igniteui-angular.mjs +70 -24
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/index.d.ts +10 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4194,8 +4194,11 @@ declare class IgxForOfDirective<T, U extends T[] = T[]> extends IgxForOfToken<T,
|
|
|
4194
4194
|
protected _differ: IterableDiffer<T> | null;
|
|
4195
4195
|
protected _trackByFn: TrackByFunction<T>;
|
|
4196
4196
|
protected individualSizeCache: number[];
|
|
4197
|
+
/**
|
|
4198
|
+
* @hidden
|
|
4199
|
+
*/
|
|
4197
4200
|
/** Internal track for scroll top that is being virtualized */
|
|
4198
|
-
|
|
4201
|
+
_virtScrollPosition: number;
|
|
4199
4202
|
/** If the next onScroll event is triggered due to internal setting of scrollTop */
|
|
4200
4203
|
protected _bScrollInternal: boolean;
|
|
4201
4204
|
protected _embeddedViews: Array<EmbeddedViewRef<any>>;
|
|
@@ -14443,6 +14446,7 @@ declare class IgxGridActionsBaseDirective implements AfterViewInit {
|
|
|
14443
14446
|
declare abstract class IgxActionStripToken {
|
|
14444
14447
|
abstract context: any;
|
|
14445
14448
|
abstract menuOverlaySettings: OverlaySettings;
|
|
14449
|
+
abstract actionButtons: QueryList<IgxGridActionsBaseDirective>;
|
|
14446
14450
|
abstract get hideOnRowLeave(): boolean;
|
|
14447
14451
|
abstract show(context?: any): void;
|
|
14448
14452
|
abstract hide(): void;
|
|
@@ -34479,6 +34483,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
34479
34483
|
protected buildDataView(_data: any[]): void;
|
|
34480
34484
|
private _applyWidthHostBinding;
|
|
34481
34485
|
protected verticalScrollHandler(event: any): void;
|
|
34486
|
+
protected hasMenuPinningActions(): boolean;
|
|
34482
34487
|
protected horizontalScrollHandler(event: any): void;
|
|
34483
34488
|
protected get renderedActualRowHeight(): number;
|
|
34484
34489
|
private executeCallback;
|
|
@@ -34514,6 +34519,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
34514
34519
|
private configureRowEditingOverlay;
|
|
34515
34520
|
private handleColumnPinningForGroups;
|
|
34516
34521
|
protected shouldRecreateColumns(oldData: any[] | null | undefined, newData: any[] | null | undefined): boolean;
|
|
34522
|
+
protected onContentSizeChange(): void;
|
|
34517
34523
|
/**
|
|
34518
34524
|
* Clears the current navigation service active node
|
|
34519
34525
|
*/
|
|
@@ -36104,6 +36110,7 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
|
|
|
36104
36110
|
get headerRowActiveDescendant(): string;
|
|
36105
36111
|
protected resolveToggle(groupColumn: IgxColumnComponent, state: boolean): void;
|
|
36106
36112
|
protected buildDataView(data: any[]): void;
|
|
36113
|
+
protected onContentSizeChange(): void;
|
|
36107
36114
|
/**
|
|
36108
36115
|
* @hidden @internal
|
|
36109
36116
|
*/
|
|
@@ -39013,7 +39020,9 @@ declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirect
|
|
|
39013
39020
|
protected actionStripComponents: QueryList<IgxActionStripToken>;
|
|
39014
39021
|
/** @hidden @internal */
|
|
39015
39022
|
get actionStrip(): IgxActionStripToken;
|
|
39023
|
+
/** @hidden @internal */
|
|
39016
39024
|
get advancedFilteringExpressionsTree(): IFilteringExpressionsTree;
|
|
39025
|
+
/** @hidden @internal */
|
|
39017
39026
|
set advancedFilteringExpressionsTree(value: IFilteringExpressionsTree);
|
|
39018
39027
|
private _data;
|
|
39019
39028
|
private h_id;
|
package/package.json
CHANGED