igniteui-angular 22.0.0-rc.2 → 22.0.1
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-directives.mjs +0 -1
- package/fesm2022/igniteui-angular-directives.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-core.mjs +10 -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/migrations/common/import-helper.cjs +14 -0
- package/migrations/common/import-helper.d.cts +13 -0
- package/migrations/update-11_0_0/index.js +3 -2
- package/migrations/update-12_0_0/index.js +3 -2
- package/migrations/update-12_1_0/index.js +3 -2
- package/migrations/update-13_0_0/index.js +3 -2
- package/migrations/update-13_1_0/index.js +3 -2
- package/migrations/update-15_1_0/index.js +3 -2
- package/migrations/update-16_1_0/index.js +3 -2
- package/migrations/update-17_0_0/index.js +3 -2
- package/migrations/update-17_1_0/index.js +3 -2
- package/migrations/update-18_0_0/index.js +3 -2
- package/migrations/update-20_0_6/index.js +3 -2
- package/migrations/update-22_0_0/index.js +3 -1
- package/package.json +2 -2
- package/skills/igniteui-angular-components/references/directives.md +8 -1
- package/skills/igniteui-angular-components/references/setup.md +11 -1
- package/skills/igniteui-angular-grids/references/sizing.md +1 -0
- package/skills/igniteui-angular-grids/references/structure.md +1 -0
- package/skills/igniteui-angular-grids/references/types.md +2 -1
- package/types/igniteui-angular-grids-core.d.ts +1 -0
- package/types/igniteui-angular-grids-hierarchical-grid.d.ts +2 -0
|
@@ -4567,7 +4567,6 @@ class IgxForOfDirective extends IgxForOfToken {
|
|
|
4567
4567
|
this.scrollFocus(embView.rootNodes.find(node => node.nodeType === Node.ELEMENT_NODE)
|
|
4568
4568
|
|| embView.rootNodes[0].nextElementSibling);
|
|
4569
4569
|
const view = container.detach(0);
|
|
4570
|
-
// embView and view both refer to the same collections
|
|
4571
4570
|
this.updateTemplateContext(embView.context, i);
|
|
4572
4571
|
// Because in Elements the whole parent div (containing data-index) gets removed (possibly due to being disconnected). In Angular it just gets moved.
|
|
4573
4572
|
// This ensures to update it with the new context and remove it first from DOM because of detach action before inserting it manually.
|