update z-index showcase

This commit is contained in:
Juergen Kunz
2025-06-26 18:13:08 +00:00
parent 27414e0284
commit 931a760ee1
3 changed files with 471 additions and 1 deletions

View File

@ -106,6 +106,11 @@ export class DeesToast extends DeesElement {
return toast;
}
// Alias for consistency with DeesModal
public static async createAndShow(options: IToastOptions | string) {
return this.show(options);
}
// Convenience methods
public static info(message: string, duration?: number) {
return this.show({ message, type: 'info', duration });