Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							2ced2a8a5a 
							
						 
					 
					
						
						
							
							refactor(compiler): misc updates ( #12773 )  
						
						
						
						
					 
					
						2016-11-09 16:23:41 -08:00 
						 
				 
			
				
					
						
							
							
								Pawel Kozlowski 
							
						 
					 
					
						
						
						
						
							
						
						
							634b3bb88b 
							
						 
					 
					
						
						
							
							feat(core): map 'for' attribute to 'htmlFor' property ( #10546 )  
						
						... 
						
						
						
						This improves ergonomics a bit by allowing people to write:
`<label [for]="ctxProp"></label>`.
This is similar to the existing class -> className mapping.
Closes  #7516  
						
						
					 
					
						2016-11-09 15:21:27 -08:00 
						 
				 
			
				
					
						
							
							
								Matias Niemelä 
							
						 
					 
					
						
						
						
						
							
						
						
							fe35bc34f6 
							
						 
					 
					
						
						
							
							fix(animations): allow animations to be destroyed manually ( #12719 )  
						
						... 
						
						
						
						Closes  #12456 
Closes  #12719  
					
						2016-11-08 16:21:28 -08:00 
						 
				 
			
				
					
						
							
							
								Matias Niemelä 
							
						 
					 
					
						
						
						
						
							
						
						
							a0e9fde653 
							
						 
					 
					
						
						
							
							fix(animations): always normalize style properties and values during compilation ( #12755 )  
						
						... 
						
						
						
						Closes  #11582 
Closes  #12481 
Closes  #12755  
					
						2016-11-08 15:45:30 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							55dc0e4a5f 
							
						 
					 
					
						
						
							
							fix(compiler): use the other case by default in ICU messages  
						
						
						
						
					 
					
						2016-11-08 15:44:18 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							7694f974af 
							
						 
					 
					
						
						
							
							refactor: remove some facades ( #12731 )  
						
						
						
						
					 
					
						2016-11-08 15:43:24 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							acbf1d859c 
							
						 
					 
					
						
						
							
							fix(core): fix pseudo-selector shimming ( #12754 )  
						
						... 
						
						
						
						fixes  #12730 
fixes  #12354  
					
						2016-11-07 13:56:04 -08:00 
						 
				 
			
				
					
						
							
							
								Pawel Kozlowski 
							
						 
					 
					
						
						
						
						
							
						
						
							22c021c57f 
							
						 
					 
					
						
						
							
							fix(compiler): support more than 9 interpolations ( #12710 )  
						
						... 
						
						
						
						Fixes  #10253  
					
						2016-11-07 12:23:03 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							ec92f4b198 
							
						 
					 
					
						
						
							
							refactor: remove keys() and values() from MapWrapper  
						
						
						
						
					 
					
						2016-11-04 13:27:38 -07:00 
						 
				 
			
				
					
						
							
							
								Pawel Kozlowski 
							
						 
					 
					
						
						
						
						
							
						
						
							f0cdb428f5 
							
						 
					 
					
						
						
							
							fix(compiler): don't convert undefined to null literals ( #11503 )  
						
						... 
						
						
						
						Fixes  #11493  
					
						2016-11-04 10:55:21 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							051d74802a 
							
						 
					 
					
						
						
							
							fix(core): ensure that component views that have no bindings recurse into nested components / view containers.  
						
						
						
						
					 
					
						2016-11-04 10:50:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							f2bbef3e33 
							
						 
					 
					
						
						
							
							fix(core): allow to query content of templates that are stamped out at a different place  
						
						... 
						
						
						
						Previously, if a `TemplateRef` was created in a `ViewContainerRef`
at a different place, the content was not query able at all.
With this change, the content of the template can be queried
as if it was stamped out at the declaration place of the template.
E.g. in the following example, the `QueryList<ChildCmp>` will
be filled once the button is clicked.
```
@Component({
  selector: ‘my-comp’,
  template: ‘<button #vc (click)=“createView()”></button>’
})
class MyComp {
  @ContentChildren(ChildCmp)
  children: QueryList<ChildCmp>;
  @ContentChildren(TemplateRef)
  template: TemplateRef;
  @ViewChild(‘vc’, {read: ViewContainerRef})
  vc: ViewContainerRef;
  createView() {
    this.vc.createEmbeddedView(this.template);
  }
}
@Component({
  template: `
<my-comp>
  <template><child-cmp></child-cmp></template>
</my-comp>
`
})
class App {}
```
Closes  #12283 
Closes  #12094  
						
						
					 
					
						2016-11-04 10:50:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							e3687706c7 
							
						 
					 
					
						
						
							
							refactor(compiler): minor cleanup  
						
						
						
						
					 
					
						2016-11-03 16:29:51 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							9c23884da4 
							
						 
					 
					
						
						
							
							perf(compiler): introduce direct rendering  
						
						... 
						
						
						
						This allows to attach / detach embedded views and projected nodes
in a faster way. 
						
						
					 
					
						2016-11-03 16:29:51 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							0e3d655220 
							
						 
					 
					
						
						
							
							refactor(compiler): remove view factories, use view classes directly  
						
						
						
						
					 
					
						2016-11-02 20:58:48 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							7c5cc9bc41 
							
						 
					 
					
						
						
							
							refactor(compiler): initialize RenderComponentType eagerly  
						
						... 
						
						
						
						This moves the usage of `APP_ID` into the `DomRenderer`. 
						
						
					 
					
						2016-11-02 20:58:48 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							5f1dddc5d0 
							
						 
					 
					
						
						
							
							refactor(compiler): cleanups  
						
						
						
						
					 
					
						2016-11-02 17:06:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							20a4f9923f 
							
						 
					 
					
						
						
							
							refactor(compiler): remove view.parentInjector  
						
						
						
						
					 
					
						2016-11-02 17:06:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							e7c00be19d 
							
						 
					 
					
						
						
							
							refactor(compiler): rename AppElement into ViewContainer  
						
						
						
						
					 
					
						2016-11-02 17:06:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							74ede9aa9b 
							
						 
					 
					
						
						
							
							refactor(core): don’t store view factory in TemplateRef  
						
						... 
						
						
						
						Instead, generate `createEmbeddedView`. 
						
						
					 
					
						2016-11-02 17:06:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							d1035da85c 
							
						 
					 
					
						
						
							
							refactor(compiler): don’t use AppElements for creating component views  
						
						
						
						
					 
					
						2016-11-02 17:06:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							13533d2a30 
							
						 
					 
					
						
						
							
							refactor(compiler): remove AppElement.initComponent  
						
						
						
						
					 
					
						2016-11-02 17:06:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							6fda97287e 
							
						 
					 
					
						
						
							
							fix(compiler): support multiple components in a view container  
						
						
						
						
					 
					
						2016-11-01 14:21:40 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							234c5599f1 
							
						 
					 
					
						
						
							
							refactor(compiler): remove unused constructor query support  
						
						
						
						
					 
					
						2016-11-01 11:29:15 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							f6710fefeb 
							
						 
					 
					
						
						
							
							refactor(compiler): make view.disposable array null if empty  
						
						
						
						
					 
					
						2016-11-01 11:29:15 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							bda1909ede 
							
						 
					 
					
						
						
							
							refactor(compiler): remove view.rootNodes and view.projectableNodes  
						
						... 
						
						
						
						They are replaced by generated visitor functions `view.visitRootNodes` / `view.visitProjectableNodes`. 
						
						
					 
					
						2016-11-01 11:29:15 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							b3e3cd3add 
							
						 
					 
					
						
						
							
							refactor(compiler): inline view.contentChildren  
						
						
						
						
					 
					
						2016-11-01 11:29:14 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							e5fdf4c70a 
							
						 
					 
					
						
						
							
							refactor(compiler): inline view.viewChildren in generated code  
						
						
						
						
					 
					
						2016-11-01 11:29:14 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							97471d74b6 
							
						 
					 
					
						
						
							
							refactor(compiler): remove unused subscriptions in view  
						
						
						
						
					 
					
						2016-11-01 11:29:14 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							a178bc6c83 
							
						 
					 
					
						
						
							
							fix(compiler): dedupe NgModule declarations, …  
						
						... 
						
						
						
						This is important so that we don’t generate things multiple times. 
						
						
					 
					
						2016-10-31 14:43:50 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							642c1db9ef 
							
						 
					 
					
						
						
							
							fix(compiler): Don’t throw on empty property bindings  
						
						... 
						
						
						
						Closes  #12583  
					
						2016-10-31 14:43:50 -07:00 
						 
				 
			
				
					
						
							
							
								Zaven Muradyan 
							
						 
					 
					
						
						
						
						
							
						
						
							e9fd8645ed 
							
						 
					 
					
						
						
							
							fix(core): improve error when multiple components match the same element  
						
						... 
						
						
						
						Closes  #7067  
					
						2016-10-31 11:28:03 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							e391cacdf9 
							
						 
					 
					
						
						
							
							fix(compiler): don’t double bind functions  
						
						... 
						
						
						
						This fixes a performance regressions introduced by 178fb79b5cafe36c993bb1f9f9a63e8bac162c66.
Also makes properties in the directive wrapper private
so that closure compiler can minify them better. 
						
						
					 
					
						2016-10-28 11:17:12 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							32feb8a532 
							
						 
					 
					
						
						
							
							refactor(compiler): generate host listeners in DirectiveWrappers  
						
						... 
						
						
						
						Part of #11683  
						
						
					 
					
						2016-10-27 16:09:01 -07:00 
						 
				 
			
				
					
						
							
							
								Dzmitry Shylovich 
							
						 
					 
					
						
						
						
						
							
						
						
							d321b0ebf5 
							
						 
					 
					
						
						
							
							fix(selectors): use Maps instead of objects  
						
						
						
						
					 
					
						2016-10-26 14:55:59 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							178fb79b5c 
							
						 
					 
					
						
						
							
							refactor(compiler): move host properties into DirectiveWrapper  
						
						... 
						
						
						
						Part of #11683  
						
						
					 
					
						2016-10-26 14:32:24 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							f66ac821a2 
							
						 
					 
					
						
						
							
							refactor(compiler): extract createCheckBindingStmt into compiler_util  
						
						... 
						
						
						
						Part of #11683  
						
						
					 
					
						2016-10-26 14:32:24 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							fe299f4dfc 
							
						 
					 
					
						
						
							
							refactor(compiler): minor cleanups  
						
						
						
						
					 
					
						2016-10-26 14:32:24 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							4cac650675 
							
						 
					 
					
						
						
							
							refactor(compiler): extract expression evaluation and writing to renderer from view_compiler  
						
						... 
						
						
						
						This is needed to that `DirectiveWrapper`s can also use them later on.
Part of #11683  
						
						
					 
					
						2016-10-26 14:32:24 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							cb7643ccea 
							
						 
					 
					
						
						
							
							refactor(compiler): introduce ClassBuilder.  
						
						... 
						
						
						
						Part of #11683  
						
						
					 
					
						2016-10-26 14:32:23 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							faa3478514 
							
						 
					 
					
						
						
							
							refactor(compiler): set element attributes via one call  
						
						... 
						
						
						
						This makes the cost of using directives that have host attributes
smaller.
Part of #11683  
						
						
					 
					
						2016-10-26 14:32:23 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							bc3f4bc816 
							
						 
					 
					
						
						
							
							refactor(compiler): extract BindingParser  
						
						... 
						
						
						
						Needed so that we can parse directive host bindings independent of templates.
Part of #11683  
						
						
					 
					
						2016-10-26 14:32:23 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							7221632228 
							
						 
					 
					
						
						
							
							fix(CompilerCli): assert that all pipes and directives are declared by a module  
						
						
						
						
					 
					
						2016-10-25 18:17:18 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							a838aba756 
							
						 
					 
					
						
						
							
							fix(compiler): walk third party modules ( #12453 )  
						
						... 
						
						
						
						fixes  #11889 
fixes  #12428  
					
						2016-10-24 22:28:23 +02:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							57051f01ce 
							
						 
					 
					
						
						
							
							refactor: remove most facades ( #12399 )  
						
						
						
						
					 
					
						2016-10-21 15:14:44 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							867494a060 
							
						 
					 
					
						
						
							
							fix(compiler): don't access view local variables nor pipes in host expressions ( #12396 )  
						
						... 
						
						
						
						Fixes  #12004 
Closes  #12071  
					
						2016-10-20 15:24:58 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							b0a03fcab3 
							
						 
					 
					
						
						
							
							refactor(compiler): introduce directive wrappers to generate less code  
						
						... 
						
						
						
						- for now only wraps the `@Input` properties and calls
  to `ngOnInit`, `ngDoCheck` and `ngOnChanges` of directives.
- also groups eval sources by NgModule.
Part of #11683  
						
						
					 
					
						2016-10-20 10:41:43 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							acda82c1ed 
							
						 
					 
					
						
						
							
							refactor(compiler): remove private exports  
						
						... 
						
						
						
						All of `@angular/compiler` is private, so we can export
everything we need directly. 
						
						
					 
					
						2016-10-20 10:41:43 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							76dd026447 
							
						 
					 
					
						
						
							
							refactor: remove some facades ( #12335 )  
						
						
						
						
					 
					
						2016-10-19 13:42:39 -07:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							cca4a5c519 
							
						 
					 
					
						
						
							
							fix(compiler): don't redeclare a var in the same scope ( #12386 )  
						
						... 
						
						
						
						This is not allowed by Closure Compiler. 
						
						
					 
					
						2016-10-18 20:28:30 -07:00