| 
									
										
										
										
											2017-08-29 20:10:58 +02:00
										 |  |  |  | /** | 
					
						
							|  |  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2017-08-29 20:10:58 +02: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 {registerLocaleData} from '@angular/common'; | 
					
						
							|  |  |  |  | import {Component} from '@angular/core'; | 
					
						
							|  |  |  |  | // we need to import data for the french locale
 | 
					
						
							|  |  |  |  | import localeFr from './locale-fr'; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | // registering french data
 | 
					
						
							|  |  |  |  | registerLocaleData(localeFr); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | // #docregion PercentPipe
 | 
					
						
							|  |  |  |  | @Component({ | 
					
						
							|  |  |  |  |   selector: 'percent-pipe', | 
					
						
							|  |  |  |  |   template: `<div>
 | 
					
						
							|  |  |  |  |     <!--output '26%'--> | 
					
						
							|  |  |  |  |     <p>A: {{a | percent}}</p> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!--output '0,134.950%'--> | 
					
						
							|  |  |  |  |     <p>B: {{b | percent:'4.3-5'}}</p> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!--output '0 134,950 %'--> | 
					
						
							|  |  |  |  |     <p>B: {{b | percent:'4.3-5':'fr'}}</p> | 
					
						
							|  |  |  |  |   </div>`
 | 
					
						
							|  |  |  |  | }) | 
					
						
							|  |  |  |  | export class PercentPipeComponent { | 
					
						
							|  |  |  |  |   a: number = 0.259; | 
					
						
							|  |  |  |  |   b: number = 1.3495; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | // #enddocregion
 |