| 
							
							
								 Tim Blasi | ef88e0f804 | refactor(transformers): extract lifecycle hooks from the interfaces | 2015-09-05 01:02:33 +00:00 |  | 
			
				
					| 
							
							
								 Victor Berchet | 8302afffb4 | refactor(LifecycleEvent): remove LifecycleEvent fixes #3924
BREAKING CHANGE
The `lifecycle` configuration for directive has been dropped.
Before
    // Dart
    @Component({lifecycle: const [LifecycleEvent.OnChanges], ...})
    class MyComponent implements OnChanges {
      void onChanges() {...}
    }
    // Typescript
    @Component({lifecycle: [LifecycleEvent.OnChanges], ...})
    class MyComponent implements OnChanges {
      onChanges(): void {...}
    }
    // ES5
    var MyComponent = ng.
    Component({lifecycle: [LifecycleEvent.OnChanges], ...}).
    Class({
      onChanges: function() {...}
    });
After
    // Dart
    @Component({...})
    class MyComponent implements OnChanges {
      void onChanges() {...}
    }
    // Typescript
    @Component({...})
    class MyComponent implements OnChanges {
      onChanges(): void {...}
    }
    // ES5
    var MyComponent = ng
      .Component({...})
      .Class({
        onChanges: function() {
        }
      }); | 2015-09-05 01:02:33 +00:00 |  | 
			
				
					| 
							
							
								 Tim Blasi | 46dd5fcbb0 | refactor(transform): Remove reflection_entry_points parameter Remove the now unnecessary `reflection_entry_points` parameter from the
Angular 2 transformer.
Support glob syntax for `entry_points`. | 2015-08-31 13:02:29 -07:00 |  | 
			
				
					| 
							
							
								 vsavkin | d49bc438e8 | feat(core): added afterContentInit, afterViewInit, and afterViewChecked hooks Closes #3897 | 2015-08-31 17:16:54 +00:00 |  | 
			
				
					| 
							
							
								 Misko Hevery | 551d9a1688 | chore(LifecycleEvent): change to PascalCase / rename BREAKING CHANGE
Closes #3863
- LifecycleEvent.onInit => LifecycleEvent.OnInit
- LifecycleEvent.onDestroy => LifecycleEvent.OnDestroy
- LifecycleEvent.onChange => LifecycleEvent.OnChanges
- LifecycleEvent.onCheck => LifecycleEvent.DoCheck
- LifecycleEvent.onAllChangesDone => LifecycleEvent.AfterContentChecked
- OnCheck.onCheck() => DoCheck.doCheck()
- OnChange.onChange() => OnChanges.onChanges()
- OnAllChangesDone.onAllChangesDone() => AfterContentChecked.afterContentChecked
Closes #3851 | 2015-08-27 22:32:21 -07:00 |  | 
			
				
					| 
							
							
								 Misko Hevery | ac3f5106e4 | refactor(view): remove hostActions BREAKING CHANGE
Closes #3396
Replacement. Either direct DOM access or Renderer in WebWorkers. | 2015-08-27 22:32:21 -07:00 |  | 
			
				
					| 
							
							
								 Misko Hevery | 69926dd002 | refactor(change_detection): introduce enum ChangeDetectionStrategy BREAKING CHANGE
Closes #2497
- change detection strategy type changes from string to ChangeDetectionStrategy
- CHECK_ONCE => ChangeDetectionStrategy.CheckOnce
- CHECKED => ChangeDetectionStrategy.Checked
- CHECK_ALWAYS => ChangeDetectionStrategy.CheckAlways
- DETACHED => ChangeDetectionStrategy.Detached
- ON_PUSH => ChangeDetectionStrategy.OnPush
- DEFAULT => ChangeDetectionStrategy.Default
- ON_PUSH_OBSERVE => ChangeDetectionStrategy.OnPushObserve | 2015-08-27 21:41:46 -07:00 |  | 
			
				
					| 
							
							
								 Tim Blasi | 02d9e18279 | chore(transform): Move registrations tests to modules_dart This moves tests which were created in 104302a958e7408ef3e9d2ea591a34e94116ad23
and were not moved in 88a5b8da0fbb81acfa347b788f6479081998c960. | 2015-08-27 20:54:47 +00:00 |  | 
			
				
					| 
							
							
								 Jeff Cross | 8ed22ce6e7 | chore: update all import paths | 2015-08-25 15:33:23 -07:00 |  | 
			
				
					| 
							
							
								 Jeff Cross | 88a5b8da0f | chore(transform): move transform module to modules_dart The build/pure-packages.dart gulp task has also been updated to move the files into the angular2 tree.
Closes #3729 | 2015-08-24 03:39:07 +00:00 |  |