igniteui-angular 21.2.6 → 21.2.8
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-combo.mjs +46 -3
- package/fesm2022/igniteui-angular-combo.mjs.map +1 -1
- package/fesm2022/igniteui-angular-date-picker.mjs +2 -0
- package/fesm2022/igniteui-angular-date-picker.mjs.map +1 -1
- package/fesm2022/igniteui-angular-drop-down.mjs +1 -1
- package/fesm2022/igniteui-angular-drop-down.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-core.mjs +60 -5
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +3 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs +20 -0
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-combo.d.ts +22 -1
- package/types/igniteui-angular-drop-down.d.ts +1 -1
- package/types/igniteui-angular-grids-core.d.ts +3 -0
- package/types/igniteui-angular-grids-hierarchical-grid.d.ts +9 -0
|
@@ -7022,7 +7022,7 @@ class IgxGridBaseDirective {
|
|
|
7022
7022
|
const selectionCollection = new Map();
|
|
7023
7023
|
const keysAndData = [];
|
|
7024
7024
|
const activeEl = this.selectionService.activeElement;
|
|
7025
|
-
if (this.type === 'hierarchical') {
|
|
7025
|
+
if (this.type === 'hierarchical' && source === this.filteredSortedData) {
|
|
7026
7026
|
const expansionRowIndexes = [];
|
|
7027
7027
|
for (const [key, value] of this.expansionStates.entries()) {
|
|
7028
7028
|
if (value) {
|
|
@@ -7670,6 +7670,8 @@ class IgxGridBaseDirective {
|
|
|
7670
7670
|
settings = overlay.settings;
|
|
7671
7671
|
}
|
|
7672
7672
|
this.rowEditPositioningStrategy.settings.container = this.tbody.nativeElement;
|
|
7673
|
+
this.rowEditPositioningStrategy.settings.clipToVisibleArea =
|
|
7674
|
+
this.type === 'hierarchical' && this.rootGrid !== this;
|
|
7673
7675
|
const pinned = this._pinnedRecordIDs.indexOf(rowID) !== -1;
|
|
7674
7676
|
const targetRow = !pinned ?
|
|
7675
7677
|
this.gridAPI.get_row_by_key(rowID)
|