feat: improve structure of ref and sys tokens; add useFocusVisible hook#4952
Open
adrcotfas wants to merge 4 commits into
Open
feat: improve structure of ref and sys tokens; add useFocusVisible hook#4952adrcotfas wants to merge 4 commits into
adrcotfas wants to merge 4 commits into
Conversation
|
The mobile version of example app from this branch is ready! You can see it here. |
|
Hey @adrcotfas, thank you for your pull request 🤗. The documentation from this branch can be viewed here. |
satya164
reviewed
May 19, 2026
55c8655 to
346fa5a
Compare
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.
Motivation
Foundation prep for the Switch component modernization.
md.sys.state.focusIndicator(thickness: 3, outerOffset: 2). Matches MD3 spec. Switch will be the first consumer.reftosysper the MD3 spec:-
ref.stateOpacity->sys.state.opacity-
ref.scrimAlpha->sys.scrim.alphauseFocusVisiblehook: required to detect when to show a focus ringAlso in this PR:
getStateLayer(theme, role, state)in theme/utils/state.ts. Returns { color, opacity }. Four components migrated: HelperText, TextInput/Adornment, CheckboxItem, RadioButtonItem.ColorRole = keyof ThemeColors and StateOpacityKey = keyof typeof tokens.md.sys.state.opacity. Component token files can use them to validate string keys.No change to Theme. Renames are internal only.
Related issue
N/A. Prep for Switch modernization.
Test plan