From bf1eb271f37d73bafcefdbb9faaccee94b92630e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 23 Aug 2023 09:38:25 +0300 Subject: [PATCH] Fixed #4302 - Toast: Icon classes not being correctly exposed --- components/lib/toast/Toast.d.ts | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/components/lib/toast/Toast.d.ts b/components/lib/toast/Toast.d.ts index 44e4d8ac0..41e3888c6 100755 --- a/components/lib/toast/Toast.d.ts +++ b/components/lib/toast/Toast.d.ts @@ -252,12 +252,24 @@ export interface ToastSlots { }): VNode[]; /** * Custom icon template. + * @param {Object} scope - icon slot's params. */ - icon(): VNode[]; + icon(scope: { + /** + * Style class of the icon + */ + class: any; + }): VNode[]; /** * Custom close icon template. + * @param {Object} scope - close icon slot's params. */ - closeicon(): VNode[]; + closeicon(scope: { + /** + * Style class of the close icon + */ + class: any; + }): VNode[]; } /**