-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(mdc-form-field): refresh notch width when toggling appearances #18776
fix(mdc-form-field): refresh notch width when toggling appearances #18776
Conversation
…oggling appearances Previously, switching between outline and filled appearance caused the notch width to be incorrect in some situations. This is because then notched-outline component does not sync with the underlying MDC component in case width and open state have been set upon `ngOnInit`.
…rea overrides selector
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…18776) * fix(material-experimental/mdc-form-field): refresh notch width when toggling appearances Previously, switching between outline and filled appearance caused the notch width to be incorrect in some situations. This is because then notched-outline component does not sync with the underlying MDC component in case width and open state have been set upon `ngOnInit`. * refactor(material/material-experimental): reduce specificity of textarea overrides selector (cherry picked from commit 76c3fb6)
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. |
Previously, switching between outline and filled appearance caused the notch width to be
incorrect in some situations. This is because then notched-outline component does not sync
with the underlying MDC component in case width and open state have been set upon
ngOnInit
.I'm thinking whether we should add tests for this wrapper component of MDC, but at the same time it feels unnecessary since it's a thin wrapper and mostly we'd need to assert MDC specifics.