File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
projects/igniteui-angular
migrations/update-9_0_0/changes Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export enum ScrollMonth {
2020 NONE = 'none'
2121}
2222
23+ /** @hidden @internal */
2324@Directive ( {
2425 selector : '[igxCalendarBase]'
2526} )
You can’t perform that action at this time.
0 commit comments