@abyss-project/commons-front-core 1.0.6 → 1.0.8
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/Utils/AbyssLayoutNotifications/AbyssLayoutNotifications.component.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { IGetPublicUserData, IUserNotification, NotificationDTO } from '@abyss-project/main';
|
|
1
|
+
import { IGetPublicUserData, AbyssService, IUserNotification, NotificationDTO } from '@abyss-project/main';
|
|
2
2
|
import { default as React } from 'react';
|
|
3
3
|
type Props = {
|
|
4
4
|
allNotificationPath?: string;
|
|
5
5
|
getProfilePictureUrl: (id: string) => string;
|
|
6
|
+
services: AbyssService[];
|
|
6
7
|
handleNotificationActionButton?: (notification: IUserNotification & NotificationDTO, user?: IGetPublicUserData['user'][0] | null) => void;
|
|
7
8
|
classes: Record<string, string>;
|
|
8
9
|
};
|
|
@@ -129,9 +129,7 @@ export declare const translations: {
|
|
|
129
129
|
'no-notification': string;
|
|
130
130
|
'see-all-button': string;
|
|
131
131
|
};
|
|
132
|
-
subscription:
|
|
133
|
-
'no-subscription': string;
|
|
134
|
-
};
|
|
132
|
+
'no-subscription': string;
|
|
135
133
|
};
|
|
136
134
|
en: {
|
|
137
135
|
general: {
|
|
@@ -155,6 +153,8 @@ export declare const translations: {
|
|
|
155
153
|
'pending-share': string;
|
|
156
154
|
};
|
|
157
155
|
'import-external': {
|
|
156
|
+
'import-button': string;
|
|
157
|
+
'open-modal-button': string;
|
|
158
158
|
modal: {
|
|
159
159
|
title: string;
|
|
160
160
|
placeholder: string;
|
|
@@ -197,6 +197,15 @@ export declare const translations: {
|
|
|
197
197
|
'import-cloud-button': string;
|
|
198
198
|
'import-collection-button': string;
|
|
199
199
|
'import-url-label': string;
|
|
200
|
+
'max-size': string;
|
|
201
|
+
'max-size-2': string;
|
|
202
|
+
'file-too-big': string;
|
|
203
|
+
'file-too-big-filtered': string;
|
|
204
|
+
'duplicated-tooltip': string;
|
|
205
|
+
'drop-zone': {
|
|
206
|
+
helper: string;
|
|
207
|
+
helper2: string;
|
|
208
|
+
};
|
|
200
209
|
};
|
|
201
210
|
project: {
|
|
202
211
|
status: {
|
|
@@ -240,6 +249,16 @@ export declare const translations: {
|
|
|
240
249
|
cancel: string;
|
|
241
250
|
};
|
|
242
251
|
};
|
|
252
|
+
notifications: {
|
|
253
|
+
title: string;
|
|
254
|
+
'new-notifications': string;
|
|
255
|
+
'notifications-card-list': {
|
|
256
|
+
'no-element': string;
|
|
257
|
+
};
|
|
258
|
+
'no-notification': string;
|
|
259
|
+
'see-all-button': string;
|
|
260
|
+
};
|
|
261
|
+
'no-subscription': string;
|
|
243
262
|
};
|
|
244
263
|
};
|
|
245
264
|
export declare const flattenTranslations: {
|