platform-webworker-dynamic

Module Entry point for all public APIs of the platform-browser-dynamic package. platformWorkerAppDynamic defined in @angular/platform-webworker-dynamic/index.ts

platform-webworker

Module Entry point for all public APIs of the platform-webworker package. ClientMessageBroker ClientMessageBrokerFactory FnArg MessageBus MessageBusSink MessageBusSource PRIMITIVE ReceivedMessage ServiceMessageBroker ServiceMessageBrokerFactory UiArguments WORKER_APP_LOCATION_PROVIDERS WORKER_UI_LOCATION_PROVIDERS WorkerAppModule bootstrapWorkerUi platformWorkerApp platformWorkerUi defined in @angular/platform-webworker/index.ts

platform-server

Module Entry point for all public APIs of the platform-browser-dynamic/testing package. ServerTestingModule platformServerTesting defined in @angular/platform-server/testing/index.ts

platform-browser-dynamic

Module Entry point for all public APIs of the platform-browser-dynamic package. RESOURCE_CACHE_PROVIDER platformBrowserDynamic defined in @angular/platform-browser-dynamic/index.ts

platform-browser

Module Entry point for all public APIs of the platform-browser/testing package. BrowserTestingModule platformBrowserTesting defined in @angular/platform-browser/testing/index.ts

PipeTransform

Stable Interface Interface Overview interface PipeTransform { transform(value: any, ...args: any[]) : any } Interface Description Interface Details transform(value: any, ...args: any[]) : any exported from @angular/core/index, defined in @angular/core/src/change_detection/pipe_transform.ts

Pipes

Pipes transform displayed values within a template. Every application starts out with what seems like a simple task: get data, transform them, and show them to users. Getting data could be as simple as creating a local variable or as complex as streaming data over a Websocket. Once data arrive, we could push their raw toString values directly to the view. That rarely makes for a good user experience. E.g., almost everyone prefers a simple birthday date like April 15, 1988 to the original raw st

Pipe

Stable Interface Interface Overview interface Pipe { name : string pure : boolean } Interface Description Pipe decorator and metadata. Interface Details name : string pure : boolean exported from @angular/core/index, defined in @angular/core/src/metadata/directives.ts

PercentPipe

Stable Pipe What it does Formats a number as a percentage according to locale rules. How to use number_expression | percent[:digitInfo] NgModuleCommonModule Description Formats a number as percentage. digitInfo See DecimalPipe for detailed description. WARNING: this pipe uses the Internationalization API which is not yet available in all browsers and may require a polyfill. See Browser support for details. Example @Component({ selector: 'percent-pipe', template: `<div> &

PatternValidator

Stable Directive Class Overview class PatternValidator { pattern : string ngOnChanges(changes: SimpleChanges) validate(c: AbstractControl) : {[key: string]: any} registerOnValidatorChange(fn: () => void) } Selectors [pattern][formControlName] [pattern][formControl] [pattern][ngModel] Class Description A Directive that adds the pattern validator to any controls marked with the pattern attribute, via the NG_VALIDATORS binding. Uses attribute value as the regex to validate Contro