igniteui-angular 21.2.5 → 21.2.7
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-date-picker.mjs +2 -0
- package/fesm2022/igniteui-angular-date-picker.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +13 -3
- 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/fesm2022/igniteui-angular-grids-pivot-grid.mjs +3 -2
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/skills/igniteui-angular-components/SKILL.md +1 -1
- package/skills/igniteui-angular-components/references/charts.md +43 -222
- package/skills/igniteui-angular-components/references/data-display.md +7 -27
- package/skills/igniteui-angular-components/references/directives.md +12 -22
- package/skills/igniteui-angular-components/references/feedback.md +7 -15
- package/skills/igniteui-angular-components/references/form-controls.md +34 -24
- package/skills/igniteui-angular-components/references/layout-manager.md +2 -48
- package/skills/igniteui-angular-components/references/layout.md +0 -16
- package/skills/igniteui-angular-components/references/setup.md +0 -1
- package/skills/igniteui-angular-grids/SKILL.md +5 -0
- package/skills/igniteui-angular-grids/references/data-operations.md +16 -41
- package/skills/igniteui-angular-grids/references/editing.md +4 -12
- package/skills/igniteui-angular-grids/references/features.md +35 -26
- package/skills/igniteui-angular-grids/references/paging-remote.md +4 -8
- package/skills/igniteui-angular-grids/references/sizing.md +10 -0
- package/skills/igniteui-angular-grids/references/state.md +4 -14
- package/skills/igniteui-angular-grids/references/structure.md +1 -25
- package/skills/igniteui-angular-grids/references/types.md +11 -19
- package/types/igniteui-angular-grids-grid.d.ts +1 -0
- package/types/igniteui-angular-grids-hierarchical-grid.d.ts +9 -0
- package/types/igniteui-angular-grids-pivot-grid.d.ts +1 -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) {
|
|
@@ -7337,12 +7337,19 @@ class IgxGridBaseDirective {
|
|
|
7337
7337
|
verticalScrollHandler(event) {
|
|
7338
7338
|
this.verticalScrollContainer.onScroll(event);
|
|
7339
7339
|
this.disableTransitions = true;
|
|
7340
|
-
|
|
7340
|
+
const callback = () => {
|
|
7341
7341
|
this.verticalScrollContainer.chunkLoad.emit(this.verticalScrollContainer.state);
|
|
7342
7342
|
if (this.rowEditable) {
|
|
7343
7343
|
this.changeRowEditingOverlayStateOnScroll(this.crudService.rowInEditMode);
|
|
7344
7344
|
}
|
|
7345
|
-
}
|
|
7345
|
+
};
|
|
7346
|
+
if (this.isZonelessChangeDetection()) {
|
|
7347
|
+
this.cdr.detectChanges();
|
|
7348
|
+
callback();
|
|
7349
|
+
}
|
|
7350
|
+
else {
|
|
7351
|
+
this.zone.onStable.pipe(first()).subscribe(callback);
|
|
7352
|
+
}
|
|
7346
7353
|
this.disableTransitions = false;
|
|
7347
7354
|
this.hideOverlays();
|
|
7348
7355
|
const context = this.actionStrip?.context;
|
|
@@ -7363,6 +7370,9 @@ class IgxGridBaseDirective {
|
|
|
7363
7370
|
};
|
|
7364
7371
|
this.gridScroll.emit(args);
|
|
7365
7372
|
}
|
|
7373
|
+
isZonelessChangeDetection() {
|
|
7374
|
+
return this.zone.constructor.name === 'NoopNgZone';
|
|
7375
|
+
}
|
|
7366
7376
|
hasMenuPinningActions() {
|
|
7367
7377
|
const strip = this.actionStrip;
|
|
7368
7378
|
const actionButtons = strip?.actionButtons;
|