-
Notifications
You must be signed in to change notification settings - Fork 200
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
feat(helptext): S2 migration #3628
feat(helptext): S2 migration #3628
Conversation
3b33028
to
3548b58
Compare
🦋 Changeset detectedLatest commit: f7354ee The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
File metricsSummaryTotal size: 1.37 MB*
helptext
* An ASCII character in UTF-8 is 8 bits or 1 byte. |
🚀 Deployed on https://pr-3628--spectrum-css.netlify.app |
7e53fa1
to
884a119
Compare
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.
This one is almost there! There are some adjustments needed to the sizing, font, and text color mostly.
I don't think we need to do much to the tests/template/story file, since this is a pretty small migration, but it might be a nice addition to test multiline as well as single line text with the negative icon next to it.
Nice work!
components/helptext/index.css
Outdated
} | ||
|
||
.is-disabled { | ||
--spectrum-helptext-content-color-default: var(--spectrum-disabled-content-color); |
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.
Figma is wrong here, right? Because there is no disabled-content-color-default
token?
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.
It's close! The tokens need some cleaning up in a few places for the t-shirt sizes. I didn't want to litter your PR with similar comments over and over, but I think we need to double check the following for each t-shirt size:
font-size-*
component-height-*
(I did leave a comment or two regarding these tokens)
text-to-visual-*
top-to-text-*
bottom-to-text-*`
For each of our class sizes, the size/number for the tokens should all be the same according to the token specs, and they're a little mixed up right now, that's all.
Thanks for getting this component back up and ready!
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.
Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit
stylelint
Unexpected duplicate "--spectrum-toast-background-color-default"
spectrum-css/components/toast/index.css
Line 54 in 1a417e5
--spectrum-toast-background-color-default: var(--spectrum-neutral-subdued-background-color-default); |
Unexpected duplicate "--spectrum-toast-divider-color"
spectrum-css/components/toast/index.css
Line 58 in 1a417e5
--spectrum-toast-divider-color: var(--spectrum-transparent-white-400); |
Unexpected duplicate "--spectrum-well-border-color"
spectrum-css/components/well/index.css
Line 18 in 1a417e5
--spectrum-well-border-color: rgba(var(--spectrum-gray-1000-rgb), .05); |
1a417e5
to
a3bf036
Compare
…ithub.com/adobe/spectrum-css into aramos-adobe/css709-helptext-s2-migration
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.
Nothing blocking for me here! I see that the sizing has been adjusted, our fonts look good with the font stack, and otherwise the tokens appear to be used as we'd expect!
Left a few comments with small suggestions, but again, I don't consider those blocking. Nice work!
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.
In the top .spectrum-HelpText
(L15 and L16), we have:
--spectrum-helptext-content-color-default: var(--spectrum-neutral-subdued-content-color-default);
--spectrum-helptext-icon-color-default: var(--spectrum-neutral-subdued-content-color-default);
and then further down (around L70/71), we also have:
&.spectrum-HelpText--neutral {
--spectrum-helptext-content-color-default: var(--spectrum-neutral-subdued-content-color-default);
--spectrum-helptext-icon-color-default: var(--spectrum-neutral-subdued-content-color-default);
}
Wouldn't it save us a couple of lines (or I guess, a line, really) and essentially behave the same to change that to something like:
&,
&.spectrum-HelpText--neutral {
--spectrum-helptext-content-color-default: var(--spectrum-neutral-subdued-content-color-default);
--spectrum-helptext-icon-color-default: var(--spectrum-neutral-subdued-content-color-default);
}
There's not some specific reason I'm missing that we need it up at the top, is there?
Honestly, not a huge deal, just more of a nit.
Noting also this does not appear to have been introduced in the migration.
components/helptext/index.css
Outdated
forced-color-adjust: none; | ||
|
||
.spectrum-HelpText-validationIcon, | ||
.spectrum-HelpText-text { | ||
forced-color-adjust: none; | ||
} |
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.
I think what forced-color-adjust: none;
does is that in WHCM it tells the user agent styles not to make any default adjustments for forced colors mode and to only use the styles provided by our CSS. Given that this is such a simple component (text and icon, basically, with no changes to hover/focus etc. states), we might be able to remove these without any negative effect.
components/helptext/index.css
Outdated
padding-block-start: var(--mod-helptext-edge-to-workflow-icon, var(--spectrum-helptext-edge-to-workflow-icon)); | ||
padding-block-end: var(--mod-helptext-edge-to-workflow-icon, var(--spectrum-helptext-edge-to-workflow-icon)); |
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.
Personally, I think I like this better than keeping top and bottom separate variables! Pointing out though that we do lose the ability to modify different spacings for top vs. bottom. Given that design specs often point out when it's really important that consumers be able to modify something, and it's not here, I think using a single variable is ok, but pointing this out anyway in case someone has a stronger opinion about it.
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.
### Helptext S2 Migration | ||
|
||
The helptext S2 component has some updated spacing and typography tokens. The error message validation icon has also been updated. |
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.
Only because we just talked about detailed changesets with SWC, should we list out any of the new or renamed mods created during this work? We were doing that back in the fall, but I think we got away from it after we had been focused on foundations for so long! Looks like it's probably only 3 new mods:
"--mod-helptext-font-family",
"--mod-helptext-font-style",
"--mod-helptext-font-weight",
and then one renamed:
"--mod-helptext-bottom-to-workflow-icon" >> "--mod-helptext-edge-to-workflow-icon",
You'd know better than me on those! It's up to you, I won't let it block my approval.
Help text S2 migration
The helptext S2 component has some updated spacing and typography tokens. The error message validation icon has also been updated.
How and where has this been tested?
Please tag yourself on the tests you've marked complete to confirm the tests have been run by someone other than the author.
Validation steps
Regression testing
Validate:
Screenshots
To-do list