BREAKING CHANGE: Instead of configuring pipes via a Pipes object, now you can configure them by providing the pipes property to the View decorator. @Pipe({ name: 'double' }) class DoublePipe { transform(value, args) { return value * 2; } } @View({ template: '{{ 10 | double}}' pipes: [DoublePipe] }) class CustomComponent {} Closes #3572
32 lines
534 B
TypeScript
32 lines
534 B
TypeScript
/**
|
|
* @module
|
|
* @description
|
|
* Change detection enables data binding in Angular.
|
|
*/
|
|
|
|
export {
|
|
CHECK_ONCE,
|
|
CHECK_ALWAYS,
|
|
DETACHED,
|
|
CHECKED,
|
|
ON_PUSH,
|
|
DEFAULT,
|
|
|
|
ExpressionChangedAfterItHasBeenCheckedException,
|
|
ChangeDetectionError,
|
|
|
|
ChangeDetector,
|
|
Locals,
|
|
ChangeDetectorRef,
|
|
|
|
WrappedValue,
|
|
PipeTransform,
|
|
IterableDiffers,
|
|
IterableDiffer,
|
|
IterableDifferFactory,
|
|
KeyValueDiffers,
|
|
KeyValueDiffer,
|
|
KeyValueDifferFactory,
|
|
BasePipeTransform
|
|
} from 'angular2/src/change_detection/change_detection';
|