Update the license headers throughout the repository to reference Google LLC rather than Google Inc, for the required license headers. PR Close #37205
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						||
 * @license
 | 
						||
 * Copyright Google LLC All Rights Reserved.
 | 
						||
 *
 | 
						||
 * 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
 | 
						||
 | 
						||
// #docregion DeprecatedPercentPipe
 | 
						||
@Component({
 | 
						||
  selector: 'deprecated-percent-pipe',
 | 
						||
  template: `<div>
 | 
						||
    <!--output '25.9%'-->
 | 
						||
    <p>A: {{a | percent}}</p>
 | 
						||
 | 
						||
    <!--output '0,134.95%'-->
 | 
						||
    <p>B: {{b | percent:'4.3-5'}}</p>
 | 
						||
  </div>`
 | 
						||
})
 | 
						||
export class DeprecatedPercentPipeComponent {
 | 
						||
  a: number = 0.259;
 | 
						||
  b: number = 1.3495;
 | 
						||
}
 | 
						||
// #enddocregion
 |