-
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(material/chips): chips form control updating value immediately #30694
fix(material/chips): chips form control updating value immediately #30694
Conversation
8393040
to
3496154
Compare
Currently, when we have chips with form control, the value is updated only when its focused out. This fix will update the value of form control immediately Fixes angular#28065
3496154
to
eb7ee2b
Compare
My only worry with that is that people are probably programmatically accessing the |
So, as of now we won't be doing any input signal migration now. But if there is some decision on that to migrate one by one with breaking change note I can contribute a bit for smaller component atleast. |
@mistrykaran91 sure, thanks for volunteering! I'll definitely let you know if there's a chance to help with that |
FYI this breaks a handful of tests in google, We'll need to investigate and determine if the issue is just with brittle tests or something with the change itself. |
Let me know if this change does not work, I at-least think this is the place but you can let me know if its because of the change I can revisit. |
…ngular#30698) This version of `angular-linking` has the new license (MIT), and also disables Babel config lookups. That potentially fixes the flakiness where Babel fails reading some incomplete config file
Sets the `cursor` on the entire sort header, rather than the inner container, since the whole element is clickable. Fixes angular#30690.
Migrates the theming tests to `rules_js`. This also requires us to bring in the Jasmine ruleset, and fix some issues with the test tsconfig.
This commit migrates more targets from `ts_library` to `ts_project`.
This will allow pnpm to identifiy dependencies like `parse5` to be understood as non-dev dependencies, so that they are propagated with `rules_js` even when `cdk` is linked as `npm_package`. This is necessary when using the npm package of CDK in the Material schematic tests. To do this we need to give up on our non-statically readable substitutions for tslib and RxJS but this is acceptable as those don't change often and the benefits of the pnpm workspace are more important. We move `parse5` from `optionalDependencies` to `dependencies` so that pnpm recognizes this as non-dev dependency for the runtime execution of the CDK package. `parse5` doesn't have any native code, so `optionalDependencies` vs `dependencies` doesn't make a difference. Long-term we should consider simply bundling `parse5` here.
Migrates all schematics code to `ts_project` and simplifies complexity/confusion around devmode,prodmode ESM and CommonJS.
…ular#30796) Adds some logic so that animations automatically get disabled if the `prefers-reduced-motion` media query matches.
…r#30786) * Add missing event handlers for alternative multiselection strategy
… handling in dgeni (angular#30661) Currently, docs is not grouped based on Components and Directives. This fix will separate those two sections. Fixes angular#24093
* fix(multiple): rename token prefixes to match components * fix(material/core): theming tests
* feat(cdk-experimental/listbox): readonly mode * fixup! feat(cdk-experimental/listbox): readonly mode
…ample (angular#30811) Fixes the aria-label binding of the remove keyword button in chips-form-control-example html. The aria-label used string concatenation with an attribute instead of a property binding.
* fix(multiple): rename hardcoded tokens that were renamed * fix(multiple): fix density prefixes * fix(multiple): fix density prefixes --------- Co-authored-by: Andrew Seguin <[email protected]>
…e driven form (angular#30814) Fixes the aria-label binding of the remove keyword button in chips reative and template driven form. The aria-label used string concatenation with an attribute instead of a property binding.
Closing this MR, while rebasing seems to be getting corrupted, will raise a new one |
Currently, when we have chips with form control, the value is updated only when its focused out. This fix will update the value of form control immediately
Fixes #28065