angular/modules/angular2_material/src/components/radio
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
..
radio-button.scss feat(compiler): attach components and project light dom during compilation. 2015-07-15 20:23:27 -07:00
radio-group.scss feat(material): first ng2 material design components 2015-04-14 16:15:35 -07:00
radio_button.html feat(core): remove the (^ syntax and make all DOM events bubbling 2015-09-01 15:54:47 +00:00
radio_button.ts refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
radio_dispatcher.ts refactor(compiler): use the new compiler everywhere 2015-10-01 18:48:27 -07:00
radio_group.html feat(url_resolver): support package: urls (fixes #2991) 2015-07-23 18:35:05 -07:00