diff --git a/api-generator/components/toast.js b/api-generator/components/toast.js index 119cac56d..0b38018f3 100644 --- a/api-generator/components/toast.js +++ b/api-generator/components/toast.js @@ -31,10 +31,18 @@ const ToastProps = [ } ]; +const ToastSlots = [ + { + name: "message", + description: "Custom content for the toast message" + } +]; + module.exports = { toast: { name: "Toast", description: "Toast is used to display messages in an overlay.", - props: ToastProps + props: ToastProps, + slots: ToastSlots } };