| 
									
										
										
										
											2018-06-28 12:42:04 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2018-06-28 12:42:04 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {Component, ViewEncapsulation} from '@angular/core'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // #docregion longform
 | 
					
						
							|  |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'my-app', | 
					
						
							|  |  |  |   template: `
 | 
					
						
							|  |  |  |     <h1>Hello World!</h1> | 
					
						
							|  |  |  |     <span class="red">Shadow DOM Rocks!</span> | 
					
						
							|  |  |  |   `,
 | 
					
						
							|  |  |  |   styles: [`
 | 
					
						
							|  |  |  |     :host { | 
					
						
							|  |  |  |       display: block; | 
					
						
							|  |  |  |       border: 1px solid black; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     h1 { | 
					
						
							|  |  |  |       color: blue; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     .red { | 
					
						
							|  |  |  |       background-color: red; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   `],
 | 
					
						
							|  |  |  |   encapsulation: ViewEncapsulation.ShadowDom | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | class MyApp { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | // #enddocregion
 |