We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d16d072 commit bdcc0a4Copy full SHA for bdcc0a4
packages/uui-toast-notification/lib/uui-toast-notification.element.ts
@@ -189,20 +189,17 @@ export class UUIToastNotificationElement extends LitElement {
189
}
190
};
191
192
- private _timer: Timer | null = null;
193
- private _pauseTimer: boolean = false;
194
-
195
@query('#toast')
196
private _toastEl!: HTMLElement;
197
198
- private _animationTimeout?: number;
+ private _timer: Timer | null = null;
+ private _pauseTimer: boolean = false;
199
200
protected isOpen = false;
+ private _open = false;
201
202
@state()
203
private _animate = false;
204
205
- private _open = false;
+ private _animationTimeout?: number;
206
207
/**
208
* define if this toast should open or close.
0 commit comments