X Tutup
Skip to content

Implement Multibindings#3962

Closed
vsavkin wants to merge 4 commits intoangular:masterfrom
vsavkin:di_multibindings
Closed

Implement Multibindings#3962
vsavkin wants to merge 4 commits intoangular:masterfrom
vsavkin:di_multibindings

Conversation

@vsavkin
Copy link
Copy Markdown
Contributor

@vsavkin vsavkin commented Sep 2, 2015

No description provided.

@vsavkin vsavkin added feature Label used to distinguish feature request from other issues comp: core/di effort2: days action: review The PR is still awaiting reviews from at least one requested reviewer labels Sep 2, 2015
@vsavkin vsavkin added this to the alpha-37 milestone Sep 2, 2015
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

normalize to False instead of just being falsy (undefined/null) in case it is not provided?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nevermind, const-ness prevents that.

@rkirov rkirov mentioned this pull request Sep 2, 2015
12 tasks
@mary-poppins
Copy link
Copy Markdown

Merging PR #3962 on behalf of @vsavkin to branch presubmit-vsavkin-pr-3962.

@vsavkin vsavkin added the action: merge The PR is ready for merge by the caretaker label Sep 2, 2015
@mary-poppins mary-poppins removed the action: merge The PR is ready for merge by the caretaker label Sep 2, 2015
BREAKING CHANGE

Previously a content binding of a component was visible to the directives in its view with the host constraint. This is not the case any more. To access that binding, remove the constraint.
…validators

BREAKING CHANGE

Before:

@directive({selector: '[credit-card]', bindings: [new Binding(NgValidator, {toAlias: forwardRef(() => CreditCardValidator)})]})
class CreditCardValidator {
  get validator() { return CreditCardValidator.validate; }
  static validate(c): StringMap<string, boolean> {...}
}

After:

function creditCardValidator(c): StringMap<string, boolean> {...}
@directive({selector: '[credit-card]', bindings: [new Binding(NG_VALIDATORS, {toValue: creditCardValidator, multi: true})]})
class CreditCardValidator {}
@vsavkin vsavkin added the action: merge The PR is ready for merge by the caretaker label Sep 3, 2015
@mary-poppins
Copy link
Copy Markdown

Merging PR #3962 on behalf of @vsavkin to branch presubmit-vsavkin-pr-3962.

@mary-poppins mary-poppins removed the action: merge The PR is ready for merge by the caretaker label Sep 3, 2015
@vsavkin vsavkin closed this in 3ff3214 Sep 3, 2015
@angular-automatic-lock-bot
Copy link
Copy Markdown

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Sep 7, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

action: review The PR is still awaiting reviews from at least one requested reviewer cla: yes effort2: days feature Label used to distinguish feature request from other issues

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants

X Tutup