@haloduck/ui 2.0.30 → 2.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/haloduck-ui.mjs +26 -23
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -718,7 +718,6 @@ declare class AutoLoadDirective implements OnInit, OnDestroy {
|
|
|
718
718
|
private readonly ngZone;
|
|
719
719
|
private observer?;
|
|
720
720
|
private isLoading;
|
|
721
|
-
private hasTriggeredOnce;
|
|
722
721
|
autoLoadEnabled: boolean;
|
|
723
722
|
autoLoadThreshold: number;
|
|
724
723
|
autoLoadRootMargin: string;
|
|
@@ -778,13 +777,14 @@ interface Notification {
|
|
|
778
777
|
id: string;
|
|
779
778
|
type: NotificationType;
|
|
780
779
|
message: string;
|
|
781
|
-
|
|
780
|
+
timeout?: number;
|
|
781
|
+
timeoutRef?: number;
|
|
782
782
|
}
|
|
783
783
|
declare class NotificationService {
|
|
784
784
|
private listNotification$;
|
|
785
785
|
private listNotification;
|
|
786
|
-
showNotification(title: string, body: string,
|
|
787
|
-
_showNotification(type: NotificationType, message: string,
|
|
786
|
+
showNotification(title: string, body: string, timeout?: number, payload?: any): void;
|
|
787
|
+
_showNotification(type: NotificationType, message: string, timeout?: number): string;
|
|
788
788
|
getListNotification(): Observable<Notification[]>;
|
|
789
789
|
removeNotificationById(id: string): void;
|
|
790
790
|
constructor();
|