@bizdoc/core 3.10.2 → 3.10.4
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/assets/bizdoc-schema.json +6 -1
- package/assets/themes/default.min.css +1 -1
- package/fesm2022/bizdoc-core.mjs +1289 -1264
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -380,6 +380,7 @@ interface Message<T = any> {
|
|
380
380
|
documentId?: number;
|
381
381
|
formId?: string;
|
382
382
|
content?: T;
|
383
|
+
contentType: string;
|
383
384
|
}
|
384
385
|
declare type NotificationType = 'Commented' | 'CubeAnomaly' | 'Escalated' | 'Liked' | 'StateChanged' | 'Nudge' | 'Invite' | 'TextMessage' | 'ContentMessage' | 'UpcomingEvent' | 'JobProgress' | 'Tagged';
|
385
386
|
interface State {
|
@@ -579,6 +580,7 @@ interface FolderColumn {
|
|
579
580
|
}
|
580
581
|
type LicenseMode = 'Evaluation' | 'Valid' | 'Grace' | 'Invalid' | 'Limited' | 'Expired';
|
581
582
|
interface Action {
|
583
|
+
navigate?: boolean;
|
582
584
|
name: string;
|
583
585
|
title: string;
|
584
586
|
note?: string;
|
@@ -7333,7 +7335,6 @@ declare class ContentMessageNotification extends NotificationBase<ContentMessage
|
|
7333
7335
|
static ɵcmp: i0.ɵɵComponentDeclaration<ContentMessageNotification, "bizdoc-notify-content", never, {}, {}, never, never, false, never>;
|
7334
7336
|
}
|
7335
7337
|
interface ContentMessage {
|
7336
|
-
contentType?: string;
|
7337
7338
|
}
|
7338
7339
|
|
7339
7340
|
declare class TextNotification implements OnInit {
|