@ukpc-lib/react 0.3.31 → 0.3.33
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/components/Notification/models/NotiticationDto.d.ts +9 -6
- package/dist/components/index.cjs +22 -22
- package/dist/components/index.js +493 -445
- package/dist/{index.module-28c25f6e.js → index.module-6577468c.js} +5 -5
- package/dist/{index.module-47d7f83f.cjs → index.module-a3ebf250.cjs} +1 -1
- package/dist/share/index.cjs +1 -1
- package/dist/share/index.js +1 -1
- package/package.json +1 -1
- package/web-components-bundle/global-menu/index.cjs +1 -1
- package/web-components-bundle/global-menu/index.js +1 -1
- package/web-components-bundle/global-topbar/index.cjs +1 -1
- package/web-components-bundle/global-topbar/index.js +2 -2
- package/web-components-bundle/has-permission/index.cjs +1 -1
- package/web-components-bundle/has-permission/index.js +2 -2
- package/web-components-bundle/index-70a23cc4.cjs +1096 -0
- package/web-components-bundle/{index-dbabf9a0.cjs → index-70d1d0a6.cjs} +1 -1
- package/web-components-bundle/{index-99df7495.js → index-9b0d9ee5.js} +5 -5
- package/web-components-bundle/{index-6a1292b7.js → index-d164d394.js} +6897 -6852
- package/web-components-bundle/index-d1a554c4.cjs +0 -1096
|
@@ -16,14 +16,20 @@ export declare class Paging<T> {
|
|
|
16
16
|
totalPages: number;
|
|
17
17
|
}
|
|
18
18
|
export declare const DEFAULT_PAGE_SIZE = 10;
|
|
19
|
+
export interface DataDeleteUser {
|
|
20
|
+
id: number;
|
|
21
|
+
name: string;
|
|
22
|
+
}
|
|
19
23
|
export interface NotificationItemDto {
|
|
20
24
|
id: number;
|
|
21
25
|
message?: string;
|
|
22
26
|
context?: string;
|
|
23
27
|
contextUrl?: string;
|
|
24
|
-
|
|
25
|
-
|
|
28
|
+
actorName?: string;
|
|
29
|
+
actorAvatarUrl?: string;
|
|
26
30
|
createdAt?: Date | null;
|
|
31
|
+
notificationType?: string;
|
|
32
|
+
data?: DataDeleteUser[];
|
|
27
33
|
isRead?: boolean;
|
|
28
34
|
}
|
|
29
35
|
export type UpdateRead = {
|
|
@@ -52,12 +58,9 @@ export type NotiDataType = {
|
|
|
52
58
|
setNotiData: React.Dispatch<React.SetStateAction<AllNotificationType>>;
|
|
53
59
|
};
|
|
54
60
|
export type NotificationToastProps = {
|
|
55
|
-
|
|
61
|
+
actorName?: string;
|
|
56
62
|
message?: string;
|
|
57
63
|
context?: string;
|
|
58
64
|
contextUrl?: string;
|
|
59
|
-
userAvatartUrl?: string;
|
|
60
|
-
createdAt?: string;
|
|
61
|
-
readAt?: string;
|
|
62
65
|
};
|
|
63
66
|
export {};
|