-
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(toast): S2 migration #3643
base: spectrum-two
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 5514df5 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 |
🚀 Deployed on https://pr-3643--spectrum-css.netlify.app |
File metricsSummaryTotal size: 1.37 MB*
toast
* An ASCII character in UTF-8 is 8 bits or 1 byte. |
3a3e923
to
1027d4e
Compare
3942a21
to
61add5d
Compare
7f16d35
to
4a670f9
Compare
d6f0671
to
6c327b2
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.
Another old PR, resurrected! I had some comments that I couldn't find a good place to put inline:
-
I noticed this at line 81 of the CSS:
color: var(--mod-toast-background-color-default, var(--spectrum-toast-background-color-default));
. Shouldcolor
be set to the--spectrum-toast-text-and-icon-color
(which is white) instead? It's set later in the file for.spectrum-Toast-content
and.spectrum-Toast-typeIcon
, but I'm curious why it's set to the background color. If we set the font/icon color in.spectrum-Toast
, will it cascade correctly? And then we can delete all of those repetitive color declarations for negative, -typeIcon, and content. Quickly, testing that, I think it works. -
In the stories file, could we revisit the documentation? Specifically, I think the
Action
story is worded oddly. I misunderstood it a few times in a few places while reading, partially because the accepted button variant is so specific. Maybe we use something like:
"A toast can offer up to one user action using a secondary static white button, with the outline treatment. That button's label should be kept concise, and it should only be used when there’s a direct action available that is related to the toast text."
components/toast/index.css
Outdated
padding-block-start: calc(var(--mod-toast-spacing-top-edge-to-text, var(--spectrum-toast-spacing-top-edge-to-text)) - var(--mod-toast-spacing-block-start, var(--spectrum-toast-spacing-block-start))); | ||
padding-block-end: calc(var(--mod-toast-spacing-bottom-edge-to-text, var(--spectrum-toast-spacing-bottom-edge-to-text)) - var(--mod-toast-spacing-block-end, var(--spectrum-toast-spacing-block-end))); |
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.
Do these calcs resolve to the spacing-100
value then? I didn't see that token in the custom properties, but are we achieving that value with these?
I just wanted to make sure that when the toast wraps, we've included whatever spacing-100
is supposed to be, somewhere. I think that's what these are doing?
|
||
--spectrum-toast-spacing-top-edge-to-text: var(--spectrum-toast-top-to-text); | ||
--spectrum-toast-spacing-bottom-edge-to-text: var(--spectrum-toast-bottom-to-text); | ||
|
||
/* Color */ | ||
--spectrum-toast-background-color-default: var(--spectrum-neutral-subdued-background-color-default); | ||
--spectrum-toast-negative-background-color-default: var(--spectrum-negative-background-color-default); | ||
--spectrum-toast-positive-background-color-default: var(--spectrum-positive-background-color-default); | ||
--spectrum-toast-informative-background-color-default: var(--spectrum-informative-background-color-default); | ||
|
||
--spectrum-toast-text-and-icon-color: var(--spectrum-white); |
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 is sort of connected to the question I had about neutral-subdued-background-color-default
.
During testing, I changed from the subdued background to the regular neutral-background-color-default
, just to match Figma. I flipped on dark mode and saw this:

So...if neutral-background-color-default
is actually correct (it's used in Figma, but NOT what is specified in the token specs), we may need to ALSO ask about the text colors. With --spectrum-white
, that token doesn't flip between light and dark mode.
Anyways, all of that is to say- we should double check on the background color token first. I think neutral-subdued-background-color-default
as it is in the token specs is probably correct since it's got light and dark values. (and works with white text better) It would be good for design to know that Figma should probably be updated to use that same token.

components/toast/index.css
Outdated
|
||
border-inline-start-width: 1px; | ||
border-inline-start-style: solid; | ||
padding-inline-start: var(--mod-toast-spacing-close-button-to-edge, var(--spectrum-toast-spacing-close-button-to-edge)); |
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'm a little confused with the specs here. When there's an "Undo" button let's say, and the toast close button, that space between them should be spacing-200
, corrrect?
But then when it's just text to the close button, that space should be spacing-300
? Have we accounted for that? I think that may be missing.
Am I reading/understanding the specs correctly? Tell me if I'm not!
e3f7710
to
04e1ba3
Compare
--spectrum-toast-spacing-toast-to-edge: var(--spectrum-spacing-300); | ||
--spectrum-toast-spacing-close-button-to-edge: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-close-button-top-edge-to-close-button: var(--spectrum-spacing-200); | ||
--spectrum-toast-spacing-text-to-close-button: var(--spectrum-spacing-300); |
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.
Unused custom property --spectrum-toast-spacing-text-to-close-button defined
--spectrum-toast-spacing-text-to-close-button: var(--spectrum-spacing-300); | ||
--spectrum-toast-spacing-text-to-button-horizontal: var(--spectrum-spacing-400); | ||
--spectrum-toast-spacing-button-to-close-button-horizontal: var(--spectrum-spacing-200); | ||
--spectrum-toast-spacing-text-to-button-vertical: var(--spectrum-spacing-100); |
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.
Unused custom property --spectrum-toast-spacing-text-to-button-vertical defined
|
||
--spectrum-toast-spacing-start-edge-to-text-and-icon: var(--spectrum-spacing-300); | ||
--spectrum-toast-spacing-text-and-action-button-to-divider: var(--spectrum-spacing-300); | ||
--spectrum-toast-spacing-button-to-close-button: var(--spectrum-spacing-200); |
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.
Unused custom property --spectrum-toast-spacing-button-to-close-button defined
|
||
--spectrum-toast-spacing-top-edge-to-divider: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-bottom-edge-to-divider: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-top-edge-to-button: var(--spectrum-spacing-200); |
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.
Unused custom property --spectrum-toast-spacing-top-edge-to-button defined
--spectrum-toast-spacing-top-edge-to-divider: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-bottom-edge-to-divider: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-top-edge-to-button: var(--spectrum-spacing-200); | ||
--spectrum-toast-spacing-bottom-edge-to-button: var(--spectrum-spacing-300); |
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.
Unused custom property --spectrum-toast-spacing-bottom-edge-to-button defined
--spectrum-toast-spacing-bottom-edge-to-divider: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-top-edge-to-button: var(--spectrum-spacing-200); | ||
--spectrum-toast-spacing-bottom-edge-to-button: var(--spectrum-spacing-300); | ||
--spectrum-toast-spacing-bottom-edge-to-close-button: var(--spectrum-spacing-200); |
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.
Unused custom property --spectrum-toast-spacing-bottom-edge-to-close-button defined
--spectrum-toast-spacing-block-start: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-block-end: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-block-start: var(--spectrum-spacing-200); | ||
--spectrum-toast-spacing-block-end: var(--spectrum-spacing-200); | ||
|
||
--spectrum-toast-spacing-top-edge-to-text: var(--spectrum-toast-top-to-text); |
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.
Unused custom property --spectrum-toast-spacing-top-edge-to-text defined
--spectrum-toast-spacing-block-start: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-block-end: var(--spectrum-spacing-100); | ||
--spectrum-toast-spacing-block-start: var(--spectrum-spacing-200); | ||
--spectrum-toast-spacing-block-end: var(--spectrum-spacing-200); | ||
|
||
--spectrum-toast-spacing-top-edge-to-text: var(--spectrum-toast-top-to-text); | ||
--spectrum-toast-spacing-bottom-edge-to-text: var(--spectrum-toast-bottom-to-text); |
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.
Unused custom property --spectrum-toast-spacing-bottom-edge-to-text defined
accc37b
to
5514df5
Compare
Description
CSS-619
S2 toast migration
This migrates the
toast
component to S2. Custom properties have been remapped per the design spec. Mods have been added and placeholder icons have been updated from the new workflow icons.Tokens
Mods
The following mods have been added.
--mod-toast-font-family
--mod-toast-font-style
--mod-toast-icon-block-size
--mod-toast-spacing-action-button-to-close
--mod-toast-spacing-bottom-edge-to-close-button
--mod-toast-spacing-close-button-to-edge
--mod-toast-spacing-text-to-close-button
--mod-toast-spacing-top-edge-to-close-button
Passthroughs
The following passthrough has been added.
--mod-closebutton-icon-color-default
Validation steps
toast
component and verify no regressions have occurred.Screenshots
To-do list