-
Notifications
You must be signed in to change notification settings - Fork 8
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
feature: Toast component #628
Conversation
Hello hervedombya,My role is to assist you with the merge of this Status report is not available. |
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
8433c43
to
5ebbd99
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
7928087
to
575d5d6
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
e29886a
to
0b87754
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
34663a9
to
0782c17
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
2f8e107
to
55996db
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
110dc2f
to
b4d6888
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
3ac52bd
to
f27d07d
Compare
const color = useGetBackgroundColor(status); | ||
const iconName = defaultIconName(status); | ||
|
||
return <Icon name={iconName} color={color as IconColor} />; |
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.
Why do we need to cast the IconColor type here ? Is this type not accurate ? maybe we can update it if so 🤔
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.
IconColor
type is keyof typeof theme
but actually Typescript considers a variable theme.statusHealthy
as a string
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
4f76026
to
11c5c0f
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
10470ee
to
ac6e608
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
Peer approvals must include at least 1 approval from the following list: |
4a78ba2
to
99ac811
Compare
fix dependencies fix framer-motion fix storybook webpack update framer-motion downgrade framer-motion modify toast styles modify export cancel some exports update toast fix navbar issue add useMutationsHandler in core-ui review fixes minor fixes fix theme issue fix generic type try new generic types fix generic modify type fix type typescript wizard fix mutationconfig update mutation fix unknown minor fixes useMutationsHandler works fire !! fix css color fix toastprovider modify toastProps modify rgbacolor fix description builder minor fixes duration progress bar
9ffd5ab
to
5958906
Compare
/approve |
In the queueThe changeset has received all authorizations and has been added to the The changeset will be merged in:
There is no action required on your side. You will be notified here once IMPORTANT Please do not attempt to modify this pull request.
If you need this pull request to be removed from the queue, please contact a The following options are set: approve |
I have successfully merged the changeset of this pull request
Please check the status of the associated issue ARTESCA-9182. Goodbye hervedombya. |
Component:
'Toast'
Description:
Toast inform users of a process that an app has performed or will perform. They appear temporarily, towards the top of the screen. They shouldn't interrupt the user experience, and they don't require user input to disappear.
Design:
Breaking Changes:
Closes: #ISSUE_NUMBER