@bizdoc/core 1.13.0-next.4 → 1.13.0-next.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/esm2020/lib/app.component.mjs +1 -1
- package/esm2020/lib/browse/browse-items.component.mjs +3 -3
- package/esm2020/lib/browse/expanded-item/expanded-item.component.mjs +63 -45
- package/esm2020/lib/compose/trace/flow.component.mjs +93 -85
- package/esm2020/lib/compose/trace/trace.component.mjs +6 -12
- package/esm2020/lib/core/mailbox.service.mjs +29 -6
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/core/translations.mjs +9 -2
- package/fesm2015/bizdoc-core.mjs +192 -142
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +192 -142
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/app.component.d.ts +2 -2
- package/lib/browse/expanded-item/expanded-item.component.d.ts +6 -6
- package/lib/core/mailbox.service.d.ts +4 -1
- package/lib/core/models.d.ts +3 -2
- package/lib/core/translations.d.ts +8 -1
- package/package.json +1 -1
package/lib/app.component.d.ts
CHANGED
@@ -14,8 +14,8 @@ export declare class BizDocApp implements OnInit {
|
|
14
14
|
private _cfr;
|
15
15
|
private _session;
|
16
16
|
private _messaging;
|
17
|
-
dir: Direction;
|
18
|
-
private _refresh;
|
17
|
+
readonly dir: Direction;
|
18
|
+
private readonly _refresh;
|
19
19
|
constructor(_vc: ViewContainerRef, _cfr: ComponentFactoryResolver, _session: SessionService, _messaging: HubService, iconRegistry: MatIconRegistry, sanitizer: DomSanitizer);
|
20
20
|
private _initialize;
|
21
21
|
ngOnInit(): void;
|
@@ -14,13 +14,13 @@ export declare class ExpandedItemComponent implements OnInit, OnDestroy {
|
|
14
14
|
private _sb;
|
15
15
|
private _chat;
|
16
16
|
private _accounts;
|
17
|
-
private _dir;
|
18
|
-
private _translate;
|
19
17
|
private _mailbox;
|
20
|
-
private _dialog;
|
21
18
|
private _session;
|
19
|
+
private _dir;
|
20
|
+
private _dialog;
|
21
|
+
private _translate;
|
22
22
|
private _messaging;
|
23
|
-
|
23
|
+
model: RecipientModel<any>;
|
24
24
|
readonly sent: EventEmitter<RecipientModel<any>>;
|
25
25
|
actions?: Action[];
|
26
26
|
newComments?: number;
|
@@ -32,7 +32,7 @@ export declare class ExpandedItemComponent implements OnInit, OnDestroy {
|
|
32
32
|
private _typingTask;
|
33
33
|
private _refreshTask;
|
34
34
|
private readonly _destroy;
|
35
|
-
constructor(_sb: PromptService, _chat: ChatInfo, _accounts: AccountService,
|
35
|
+
constructor(_sb: PromptService, _chat: ChatInfo, _accounts: AccountService, _mailbox: MailboxService, _session: SessionService, _dir: Directionality, _dialog: MatDialog, _translate: TranslateService, _messaging: HubService);
|
36
36
|
ngOnInit(): void;
|
37
37
|
private _note;
|
38
38
|
private _actionName;
|
@@ -62,5 +62,5 @@ export declare class ExpandedItemComponent implements OnInit, OnDestroy {
|
|
62
62
|
private _handleResponse;
|
63
63
|
ngOnDestroy(): void;
|
64
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandedItemComponent, never>;
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandedItemComponent, "bizdoc-expanded-item", never, { "
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandedItemComponent, "bizdoc-expanded-item", never, { "model": "model"; }, { "sent": "sent"; }, never, never>;
|
66
66
|
}
|
@@ -132,7 +132,10 @@ export interface AttachmentExtra extends Attachment {
|
|
132
132
|
viewed?: Date;
|
133
133
|
failed?: boolean;
|
134
134
|
}
|
135
|
-
export
|
135
|
+
export declare class UploadEvent {
|
136
|
+
readonly fileName: string;
|
136
137
|
progress: number;
|
138
|
+
total: number;
|
137
139
|
state: 'pending' | 'progress' | 'done';
|
140
|
+
constructor(options: any);
|
138
141
|
}
|
package/lib/core/models.d.ts
CHANGED
@@ -90,7 +90,7 @@ export interface RecipientModel<T = any> extends HeaderModel<T>, DocumentModel<T
|
|
90
90
|
tags?: string[];
|
91
91
|
}
|
92
92
|
export interface ConnectorInfo {
|
93
|
-
|
93
|
+
virtual?: boolean;
|
94
94
|
originId?: number;
|
95
95
|
estimate: boolean;
|
96
96
|
time?: Date;
|
@@ -98,7 +98,8 @@ export interface ConnectorInfo {
|
|
98
98
|
targetId: string;
|
99
99
|
}
|
100
100
|
export interface NodeInfo {
|
101
|
-
|
101
|
+
virtual?: boolean;
|
102
|
+
originId?: number;
|
102
103
|
id: string;
|
103
104
|
/** node */
|
104
105
|
type: string;
|
@@ -246,6 +246,9 @@ export declare const STRINGS: {
|
|
246
246
|
YouRepliedTo: string;
|
247
247
|
ReplyingToYou: string;
|
248
248
|
ByYou: string;
|
249
|
+
ActionBy: string;
|
250
|
+
ActionByBy: string;
|
251
|
+
ActionByYou: string;
|
249
252
|
Received: string;
|
250
253
|
ChangeLanguage: string;
|
251
254
|
NewMail: string;
|
@@ -517,6 +520,7 @@ export declare const STRINGS: {
|
|
517
520
|
Votes: string;
|
518
521
|
Tasks: string;
|
519
522
|
System: string;
|
523
|
+
Everything: string;
|
520
524
|
NothingHere: string;
|
521
525
|
Matrix: string;
|
522
526
|
Working: string;
|
@@ -553,7 +557,7 @@ export declare const STRINGS: {
|
|
553
557
|
Skipped: string;
|
554
558
|
Route: string;
|
555
559
|
Trace: string;
|
556
|
-
|
560
|
+
Everything: string;
|
557
561
|
ProfilerSearchHelp: string;
|
558
562
|
TraceSearchHelp: string;
|
559
563
|
DiagramVersion: string;
|
@@ -911,6 +915,9 @@ export declare const STRINGS: {
|
|
911
915
|
YouRepliedTo: string;
|
912
916
|
ReplyingToYou: string;
|
913
917
|
ByYou: string;
|
918
|
+
ActionByYou: string;
|
919
|
+
ActionByBy: string;
|
920
|
+
ActionBy: string;
|
914
921
|
EscalatedTo: string;
|
915
922
|
EscalatedFrom: string;
|
916
923
|
EscalatedBy: string;
|
package/package.json
CHANGED