feat(pipe): added the Pipe decorator and the pipe property to View#3572
Closed
vsavkin wants to merge 1 commit intoangular:masterfrom
Closed
feat(pipe): added the Pipe decorator and the pipe property to View#3572vsavkin wants to merge 1 commit intoangular:masterfrom
vsavkin wants to merge 1 commit intoangular:masterfrom
Conversation
4c56865 to
86679a0
Compare
Contributor
|
Looks good after comments addressed. |
86679a0 to
a810a3c
Compare
|
Merging PR #3572 on behalf of @vsavkin to branch presubmit-vsavkin-pr-3572. |
a810a3c to
22b2e22
Compare
|
Merging PR #3572 on behalf of @vsavkin to branch presubmit-vsavkin-pr-3572. |
22b2e22 to
fcc5b50
Compare
|
Merging PR #3572 on behalf of @vsavkin to branch presubmit-vsavkin-pr-3572. |
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 {}
fcc5b50 to
9547a22
Compare
|
Merging PR #3572 on behalf of @vsavkin to branch presubmit-vsavkin-pr-3572. |
goderbauer
pushed a commit
to goderbauer/angular
that referenced
this pull request
Aug 15, 2015
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 angular#3572
|
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
BREAKING CHANGE:
Instead of configuring pipes via a Pipes object, now you can configure them by providing the pipes property to the View decorator.