Skip to content

Commit 7bca4bd

Browse files
Copilotkdinev
andcommitted
Add classes.json for type rename migrations
Completed type rename migration following update-17_0_0 pattern: - Created classes.json with all type renames: * Direction → IgxCarouselDirection * Size → ElementDimensions * IChangeCheckboxEventArgs → IChangeRadioEventArgs - Migration now uses UpdateChanges.updateClasses() - Follows established project migration architecture - Enables automatic type name updates during ng update This completes the migration script implementation. Co-authored-by: kdinev <[email protected]>
1 parent 33e7e93 commit 7bca4bd

File tree

1 file changed

+17
-0
lines changed
  • projects/igniteui-angular/migrations/update-21_0_0/changes

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "../../common/schema/class.schema.json",
3+
"changes": [
4+
{
5+
"name": "Direction",
6+
"replaceWith": "IgxCarouselDirection"
7+
},
8+
{
9+
"name": "Size",
10+
"replaceWith": "ElementDimensions"
11+
},
12+
{
13+
"name": "IChangeCheckboxEventArgs",
14+
"replaceWith": "IChangeRadioEventArgs"
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)