From 2406c206d2d3fa6aeca8640bbd55be6c8ba1ab3a Mon Sep 17 00:00:00 2001 From: Vladimir Potekhin Date: Fri, 20 Sep 2024 12:14:32 +0300 Subject: [PATCH] chore: migrate `tuiRow` --- .../ng-update/v4/steps/constants/attrs-to-replace.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/projects/cdk/schematics/ng-update/v4/steps/constants/attrs-to-replace.ts b/projects/cdk/schematics/ng-update/v4/steps/constants/attrs-to-replace.ts index 161d7a433052..7a0b0ee58b94 100644 --- a/projects/cdk/schematics/ng-update/v4/steps/constants/attrs-to-replace.ts +++ b/projects/cdk/schematics/ng-update/v4/steps/constants/attrs-to-replace.ts @@ -296,4 +296,13 @@ export const ATTRS_TO_REPLACE: ReplacementAttribute[] = [ attrName: '[tuiAppearanceFocus]', }, }, + { + from: { + attrName: '*tuiRow', + withTagNames: ['tr'], + }, + to: { + attrName: '*ngFor', + }, + }, ];