igniteui-angular 21.2.8 → 21.2.10
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-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-directives.mjs +7 -2
- package/fesm2022/igniteui-angular-directives.mjs.map +1 -1
- package/fesm2022/igniteui-angular-drop-down.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-core.mjs +13 -1
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs +42 -2
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-drop-down.d.ts +5 -5
- package/types/igniteui-angular-grids-core.d.ts +2 -0
- package/types/igniteui-angular-grids-hierarchical-grid.d.ts +2 -0
package/package.json
CHANGED
|
@@ -124,7 +124,7 @@ interface IDropDownList {
|
|
|
124
124
|
collapsed: boolean;
|
|
125
125
|
items: IgxDropDownItemBaseDirective[];
|
|
126
126
|
headers: IgxDropDownItemBaseDirective[];
|
|
127
|
-
focusedItem: IgxDropDownItemBaseDirective;
|
|
127
|
+
focusedItem: IgxDropDownItemBaseDirective | null;
|
|
128
128
|
navigateFirst(): void;
|
|
129
129
|
navigateLast(): void;
|
|
130
130
|
navigateNext(): void;
|
|
@@ -529,11 +529,11 @@ declare abstract class IgxDropDownBaseDirective implements IDropDownList, OnInit
|
|
|
529
529
|
/**
|
|
530
530
|
* @hidden @internal
|
|
531
531
|
*/
|
|
532
|
-
get focusedItem(): IgxDropDownItemBaseDirective;
|
|
532
|
+
get focusedItem(): IgxDropDownItemBaseDirective | null;
|
|
533
533
|
/**
|
|
534
534
|
* @hidden @internal
|
|
535
535
|
*/
|
|
536
|
-
set focusedItem(item: IgxDropDownItemBaseDirective);
|
|
536
|
+
set focusedItem(item: IgxDropDownItemBaseDirective | null);
|
|
537
537
|
/**
|
|
538
538
|
* Navigates to the item on the specified index
|
|
539
539
|
*
|
|
@@ -718,8 +718,8 @@ declare class IgxDropDownComponent extends IgxDropDownBaseDirective implements I
|
|
|
718
718
|
/**
|
|
719
719
|
* @hidden @internal
|
|
720
720
|
*/
|
|
721
|
-
get focusedItem(): IgxDropDownItemBaseDirective;
|
|
722
|
-
set focusedItem(value: IgxDropDownItemBaseDirective);
|
|
721
|
+
get focusedItem(): IgxDropDownItemBaseDirective | null;
|
|
722
|
+
set focusedItem(value: IgxDropDownItemBaseDirective | null);
|
|
723
723
|
get id(): string;
|
|
724
724
|
set id(value: string);
|
|
725
725
|
/** Id of the internal listbox of the drop down */
|
|
@@ -6159,6 +6159,8 @@ declare class IgxExcelStyleSearchComponent implements AfterViewInit, OnDestroy {
|
|
|
6159
6159
|
private onActionKeyDown;
|
|
6160
6160
|
private navigateItem;
|
|
6161
6161
|
private isIndexOutOfBounds;
|
|
6162
|
+
private isTreeGridWithGroupBy;
|
|
6163
|
+
private isRemote;
|
|
6162
6164
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxExcelStyleSearchComponent, never>;
|
|
6163
6165
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxExcelStyleSearchComponent, "igx-excel-style-search", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
6164
6166
|
}
|
|
@@ -718,6 +718,8 @@ declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirect
|
|
|
718
718
|
* @hidden
|
|
719
719
|
*/
|
|
720
720
|
ngOnInit(): void;
|
|
721
|
+
protected onLifecyclePlaceholderConnected(): void;
|
|
722
|
+
protected onLifecyclePlaceholderDisconnected(): void;
|
|
721
723
|
/**
|
|
722
724
|
* @hidden
|
|
723
725
|
*/
|