angular/modules/angular2_material/src/components
Jeff Cross 604c8bbad5 refactor(lifecycle): prefix lifecycle methods with "ng"
BREAKING CHANGE:
Previously, components that would implement lifecycle interfaces would include methods
like "onChanges" or "afterViewInit." Given that components were at risk of using such
names without realizing that Angular would call the methods at different points of
the component lifecycle. This change adds an "ng" prefix to all lifecycle hook methods,
far reducing the risk of an accidental name collision.

To fix, just rename these methods:
 * onInit
 * onDestroy
 * doCheck
 * onChanges
 * afterContentInit
 * afterContentChecked
 * afterViewInit
 * afterViewChecked
 * _Router Hooks_
 * onActivate
 * onReuse
 * onDeactivate
 * canReuse
 * canDeactivate

To:
 * ngOnInit,
 * ngOnDestroy,
 * ngDoCheck,
 * ngOnChanges,
 * ngAfterContentInit,
 * ngAfterContentChecked,
 * ngAfterViewInit,
 * ngAfterViewChecked
 * _Router Hooks_
 * routerOnActivate
 * routerOnReuse
 * routerOnDeactivate
 * routerCanReuse
 * routerCanDeactivate

The names of lifecycle interfaces and enums have not changed, though interfaces
have been updated to reflect the new method names.

Closes #5036
2015-11-30 16:40:50 -08:00
..
button refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
checkbox refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
dialog cleanup: move DomAdapter from angular2/core into angular2/platform/common_dom 2015-11-20 00:14:24 +00:00
grid_list refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
input refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
progress-circular refactor(ViewEncapsulation): rename to PascalCase 2015-08-31 21:32:10 +00:00
progress-linear refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
radio refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
switcher feat(core): renames Property into Input and Event into Output 2015-10-01 04:36:23 +00:00