fix: color-picker panel not syncing when manually editing input - #19298
Merged
Conversation
danharrin
approved these changes
Feb 19, 2026
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.
Description
Fixes: #19286
$refs.panel pointed to the wrapper div instead of the actual color picker web component, so panel.color = value was a no-op. Added x-ref="picker" on the <*-color-picker> element and a debounced $watch on state to keep the picker in sync with manual input. The debounce avoids re-rendering the picker on every keystroke, and CSS.supports() filters out incomplete values mid-typing.
Visual changes
before
before.mov
after
after.mov
Functional changes
composer cscommand.