@bizdoc/core 1.13.0-next.1 → 1.13.0-next.10
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 +1 -14
- package/esm2020/lib/admin/diff/configuration-diff.component.mjs +5 -2
- package/esm2020/lib/admin/document-trace/trace-element.component.mjs +22 -26
- package/esm2020/lib/admin/form/workflow/node.component.mjs +3 -2
- package/esm2020/lib/app.component.mjs +1 -1
- package/esm2020/lib/browse/browse-items.component.mjs +4 -4
- package/esm2020/lib/browse/expanded-item/expanded-item.component.mjs +65 -51
- package/esm2020/lib/compose/form.component.mjs +2 -2
- package/esm2020/lib/compose/trace/flow.component.mjs +136 -145
- package/esm2020/lib/compose/trace/trace.component.mjs +24 -32
- package/esm2020/lib/core/hub.service.mjs +1 -1
- package/esm2020/lib/core/mailbox.service.mjs +31 -6
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/core/slots/slots.component.mjs +3 -3
- package/esm2020/lib/core/translations.mjs +10 -3
- package/esm2020/lib/cube/cube.service.mjs +3 -3
- package/esm2020/lib/cube/explore/explore-items.component.mjs +3 -2
- package/esm2020/lib/cube/explore/explore.pane.component.mjs +3 -1
- package/esm2020/lib/cube/matrix/table.component.mjs +17 -17
- package/esm2020/lib/home/home-base.component.mjs +2 -2
- package/esm2020/lib/shared.module.mjs +17 -2
- package/fesm2015/bizdoc-core.mjs +330 -283
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +326 -281
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/admin/diff/configuration-diff.component.d.ts +1 -0
- package/lib/admin/document-trace/trace-element.component.d.ts +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/hub.service.d.ts +1 -0
- package/lib/core/mailbox.service.d.ts +4 -1
- package/lib/core/models.d.ts +7 -0
- package/lib/core/translations.d.ts +8 -1
- package/lib/cube/cube.service.d.ts +1 -1
- package/lib/cube/explore/explore-items.component.d.ts +1 -0
- package/package.json +10 -10
@@ -29,7 +29,7 @@ export declare class TraceElementComponent implements OnChanges {
|
|
29
29
|
nodeType: any;
|
30
30
|
constructor(_chat: ChatInfo, _router: PanesRouter, _translate: TranslateService, _accounts: AccountService, _session: SessionService);
|
31
31
|
ngOnChanges(): void;
|
32
|
-
recipientInfo(recipient: Recipient):
|
32
|
+
recipientInfo(recipient: Recipient): Promise<string>;
|
33
33
|
logInfo(log: Log): Observable<string>;
|
34
34
|
compare(item: Log): void;
|
35
35
|
chat(e: MouseEvent): void;
|
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
@@ -83,18 +83,24 @@ export interface WorkflowInfo {
|
|
83
83
|
connectors: ConnectorInfo[];
|
84
84
|
}
|
85
85
|
export interface RecipientModel<T = any> extends HeaderModel<T>, DocumentModel<T> {
|
86
|
+
extra?: any;
|
86
87
|
actions?: string[];
|
87
88
|
fyi: boolean;
|
88
89
|
originId?: number;
|
90
|
+
escalated?: boolean;
|
89
91
|
tags?: string[];
|
90
92
|
}
|
91
93
|
export interface ConnectorInfo {
|
94
|
+
virtual?: boolean;
|
95
|
+
originId?: number;
|
92
96
|
estimate: boolean;
|
93
97
|
time?: Date;
|
94
98
|
sourceId: string;
|
95
99
|
targetId: string;
|
96
100
|
}
|
97
101
|
export interface NodeInfo {
|
102
|
+
virtual?: boolean;
|
103
|
+
originId?: number;
|
98
104
|
id: string;
|
99
105
|
/** node */
|
100
106
|
type: string;
|
@@ -141,6 +147,7 @@ export interface Recipient {
|
|
141
147
|
fyi?: boolean;
|
142
148
|
id: number;
|
143
149
|
note?: string;
|
150
|
+
escalated?: boolean;
|
144
151
|
}
|
145
152
|
export interface ScheduledEvent {
|
146
153
|
id: number;
|
@@ -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;
|
@@ -188,7 +188,7 @@ export declare class CubeService {
|
|
188
188
|
* get segments
|
189
189
|
* @param cube
|
190
190
|
*/
|
191
|
-
segments(cube: string,
|
191
|
+
segments(cube: string, name: string): Observable<SegmentMap>;
|
192
192
|
/**
|
193
193
|
* get user patterns
|
194
194
|
* @param cube
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bizdoc/core",
|
3
|
-
"version": "1.13.0-next.
|
3
|
+
"version": "1.13.0-next.10",
|
4
4
|
"author": "Moding Ltd.",
|
5
5
|
"homepage": "https://github.com/moding-il/bizdoc.core",
|
6
6
|
"license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",
|
@@ -11,17 +11,17 @@
|
|
11
11
|
"dependencies": {
|
12
12
|
"@ctrl/ngx-emoji-mart": "^6.1.1",
|
13
13
|
"@microsoft/signalr": "^6.0.1",
|
14
|
-
"@syncfusion/ej2": "^19.4.
|
15
|
-
"@syncfusion/ej2-angular-charts": "^19.4.
|
14
|
+
"@syncfusion/ej2": "^19.4.40",
|
15
|
+
"@syncfusion/ej2-angular-charts": "^19.4.40",
|
16
16
|
"@syncfusion/ej2-angular-circulargauge": "^19.4.38",
|
17
|
-
"@syncfusion/ej2-angular-diagrams": "^19.4.
|
18
|
-
"@syncfusion/ej2-angular-gantt": "^19.4.
|
19
|
-
"@syncfusion/ej2-angular-grids": "^19.4.
|
17
|
+
"@syncfusion/ej2-angular-diagrams": "^19.4.40",
|
18
|
+
"@syncfusion/ej2-angular-gantt": "^19.4.40",
|
19
|
+
"@syncfusion/ej2-angular-grids": "^19.4.40",
|
20
20
|
"@syncfusion/ej2-angular-kanban": "^19.4.38",
|
21
|
-
"@syncfusion/ej2-angular-pivotview": "^19.4.
|
22
|
-
"@syncfusion/ej2-angular-richtexteditor": "^19.4.
|
23
|
-
"@syncfusion/ej2-angular-schedule": "^19.4.
|
24
|
-
"@syncfusion/ej2-angular-spreadsheet": "^19.4.
|
21
|
+
"@syncfusion/ej2-angular-pivotview": "^19.4.40",
|
22
|
+
"@syncfusion/ej2-angular-richtexteditor": "^19.4.40",
|
23
|
+
"@syncfusion/ej2-angular-schedule": "^19.4.40",
|
24
|
+
"@syncfusion/ej2-angular-spreadsheet": "^19.4.40",
|
25
25
|
"@syncfusion/ej2-base": "^19.4.38",
|
26
26
|
"@teamhive/lottie-player": "^1.0.0",
|
27
27
|
"brace": "^0.11.1",
|