add toast classname prop (#4310)

This commit is contained in:
Carlos 2024-11-06 18:49:09 +01:00 committed by GitHub
parent 54b081c104
commit 8a4701143e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -114,6 +114,9 @@ class ToastProps(PropsBase, NoExtrasAllowedProps):
# Custom style for the toast.
style: Optional[Style]
# Class name for the toast.
class_name: Optional[str]
# XXX: These still do not seem to work
# Custom style for the toast primary button.
action_button_styles: Optional[Style]

View File

@ -45,6 +45,7 @@ class ToastProps(PropsBase, NoExtrasAllowedProps):
id: Optional[Union[str, Var]]
unstyled: Optional[bool]
style: Optional[Style]
class_name: Optional[str]
action_button_styles: Optional[Style]
cancel_button_styles: Optional[Style]
on_dismiss: Optional[Any]