Skip to content

Commit 73b37c2

Browse files
committed
chore(ng9): add renamed classes to changelog and migrations
1 parent d65de9b commit 73b37c2

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ All notable changes for each version of this project will be documented in this
88
- Added support for the Ivy renderer.
99
- **Breaking Changes** The following classes have been renamed. Using `ng update` will apply automatically migrate your project to use the new names.
1010
- `IgxDropDownBase` -> `IgxDropDownBaseDirective`
11-
- `IgxDropDownItemBase` -> `IgxDropDownBaseDirective`
11+
- `IgxDropDownItemBase` -> `IgxDropDownItemBaseDirective`
1212
- `IgxGridBaseComponent` -> `IgxGridBaseDirective`
1313
- `IgxRowComponent` -> `IgxRowDirective`
1414
- `IgxHierarchicalGridBaseComponent` -> `IgxHierarchicalGridBaseDirective`
15+
- `IgxMonthPickerBase` -> `IgxMonthPickerBaseDirective`
16+
- `IgxBaseExporter` -> `IgxBaseExporterDirective`
1517

1618
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
1719
- **Behavioral Change** - Pinning columns is no longer automatically prevented when the pinning area would exceed the size of the grid.

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@
2020
{
2121
"name": "IgxHierarchicalGridBaseComponent",
2222
"replaceWith": "IgxHierarchicalGridBaseDirective"
23+
},
24+
{
25+
"name": "IgxMonthPickerBase",
26+
"replaceWith": "IgxMonthPickerBaseDirective"
27+
},
28+
{
29+
"name": "IgxBaseExporter",
30+
"replaceWith": "IgxBaseExporterDirective"
2331
}
2432
]
2533
}

projects/igniteui-angular/src/lib/calendar/calendar-base.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export enum ScrollMonth {
2020
NONE = 'none'
2121
}
2222

23+
/** @hidden @internal */
2324
@Directive({
2425
selector: '[igxCalendarBase]'
2526
})

0 commit comments

Comments
 (0)