fix(forms): split the touched model into an input and touch output#67100
Open
leonsenft wants to merge 1 commit intoangular:mainfrom
Open
fix(forms): split the touched model into an input and touch output#67100leonsenft wants to merge 1 commit intoangular:mainfrom
touched model into an input and touch output#67100leonsenft wants to merge 1 commit intoangular:mainfrom
Conversation
The `touched` property was never meant to support two-way binding; a control should not be able to dictate that a field is no longer touched. * The `touched` input represents the touched state of the field. * The `touch` output allows a control implementation to indicate when the bound field is touched. Note the distinction is that the `touch` output indicates _when_ the field is touched, and not _whether_ the field is touched.
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The
touchedproperty was never meant to support two-way binding; a control should not be able to dictate that a field is no longer touched.touchedinput represents the touched state of the field.touchoutput allows a control implementation to indicate when the bound field is touched.Note the distinction is that the
touchoutput indicates when the field is touched, and not whether the field is touched.