Skip to content

Commit e15c920

Browse files
committed
chore(migrations): drop ElementDimensions rename
1 parent c7c46a8 commit e15c920

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

projects/igniteui-angular/migrations/update-21_0_0/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ The following directives have been moved to new entry points:
3232
The following types have been renamed to avoid conflicts:
3333

3434
- `Direction``IgxCarouselDirection` (carousel)
35-
- `Size``ElementDimensions` (overlay service)
3635
- `IChangeCheckboxEventArgs``IChangeRadioEventArgs` (radio)
3736

3837
### Example

projects/igniteui-angular/migrations/update-21_0_0/changes/classes.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
"name": "Direction",
66
"replaceWith": "IgxCarouselDirection"
77
},
8-
{
9-
"name": "Size",
10-
"replaceWith": "ElementDimensions"
11-
},
128
{
139
"name": "IChangeCheckboxEventArgs",
1410
"replaceWith": "IChangeRadioEventArgs"

projects/igniteui-angular/migrations/update-21_0_0/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const ENTRY_POINT_MAP = new Map<string, string>([
4040
['OverlayCancelableEventArgs', 'core'],
4141
['OverlayClosingEventArgs', 'core'],
4242
['OverlayAnimationEventArgs', 'core'],
43-
['ElementDimensions', 'core'], // Renamed from Size
43+
['Size', 'core'],
4444
['OffsetMode', 'core'],
4545
['ConnectedFit', 'core'],
4646
['IFilteringExpressionsTree', 'core'],
@@ -446,7 +446,6 @@ const ENTRY_POINT_MAP = new Map<string, string>([
446446
// Type renames (old name -> new name and entry point)
447447
const TYPE_RENAMES = new Map<string, { newName: string, entryPoint: string }>([
448448
['Direction', { newName: 'IgxCarouselDirection', entryPoint: 'carousel' }],
449-
['Size', { newName: 'ElementDimensions', entryPoint: 'core' }],
450449
['IChangeCheckboxEventArgs', { newName: 'IChangeRadioEventArgs', entryPoint: 'radio' }],
451450
]);
452451

@@ -646,7 +645,6 @@ export default (options: MigrationOptions = {}): Rule => async (host: Tree, cont
646645
context.logger.info(' - IgxRadioGroupDirective moved to igniteui-angular/radio');
647646
context.logger.info('Type renames:');
648647
context.logger.info(' - Direction → IgxCarouselDirection');
649-
context.logger.info(' - Size → ElementDimensions');
650648
context.logger.info(' - IChangeCheckboxEventArgs → IChangeRadioEventArgs');
651649
} else {
652650
context.logger.info('Skipping import migration. You can continue using the main entry point.');

0 commit comments

Comments
 (0)