beca-ui 2.0.5-beta.5 → 2.0.5-beta.6
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/dist/beca-ui.js
CHANGED
|
@@ -91184,7 +91184,7 @@ const jX = '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ar
|
|
|
91184
91184
|
title: C.title,
|
|
91185
91185
|
LinkComponent: b,
|
|
91186
91186
|
onClickNotificationItem: C.onClickNotificationItem,
|
|
91187
|
-
onRealAll: C.
|
|
91187
|
+
onRealAll: C.onReadAll
|
|
91188
91188
|
}
|
|
91189
91189
|
),
|
|
91190
91190
|
trigger: ["click"],
|
|
@@ -39,10 +39,9 @@ export interface NotificationType {
|
|
|
39
39
|
visible?: boolean;
|
|
40
40
|
number?: number;
|
|
41
41
|
data: NotificationItemType[];
|
|
42
|
-
readAllApi?: string;
|
|
43
42
|
onClick?: () => void;
|
|
44
43
|
onClickNotificationItem?: (item: NotificationItemType) => void;
|
|
45
|
-
|
|
44
|
+
onReadAll?: () => void;
|
|
46
45
|
}
|
|
47
46
|
export interface NotificationItemType {
|
|
48
47
|
id: number;
|