From 4359218f23fab23d02cd88345a68da0930c7d84f Mon Sep 17 00:00:00 2001 From: Batuhan Tomo <91488737+Rekl0w@users.noreply.github.com> Date: Thu, 4 Jul 2024 14:38:20 +0300 Subject: [PATCH] Fix #6824: Update ToastMessage severity options (#6832) --- components/lib/toast/toast.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/toast/toast.d.ts b/components/lib/toast/toast.d.ts index a5d49ab390..8a3eb39df1 100644 --- a/components/lib/toast/toast.d.ts +++ b/components/lib/toast/toast.d.ts @@ -153,7 +153,7 @@ export interface ToastMessage { /** * Severity of the message. */ - severity?: 'success' | 'info' | 'warn' | 'error' | undefined; + severity?: 'success' | 'info' | 'warn' | 'error' | 'secondary' | 'contrast' | undefined; /** * Summary content of the message. */