@bizdoc/core 1.13.0-next.10 → 1.13.0-next.11
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/admin/positions/positions-popup.component.mjs +1 -1
- package/esm2020/lib/browse/expanded-item/expanded-item.component.mjs +12 -14
- package/esm2020/lib/compose/action/assign-action.component.mjs +52 -26
- package/esm2020/lib/compose/trace/flow.component.mjs +35 -31
- package/esm2020/lib/compose/trace/trace.component.mjs +42 -33
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/core/translations.mjs +11 -1
- package/fesm2015/bizdoc-core.mjs +229 -184
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +229 -184
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/compose/action/assign-action.component.d.ts +16 -5
- package/lib/compose/trace/flow.component.d.ts +0 -1
- package/lib/compose/trace/trace.component.d.ts +5 -4
- package/lib/core/models.d.ts +1 -3
- package/lib/core/translations.d.ts +10 -0
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
3
3
|
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
4
4
|
import { Observable } from 'rxjs';
|
@@ -11,14 +11,25 @@ export declare class AssignActionComponent implements ArgumentsComponent, OnInit
|
|
11
11
|
private _fb;
|
12
12
|
private _session;
|
13
13
|
private _accounts;
|
14
|
+
readonly separatorKeysCodes: number[];
|
15
|
+
nameInput: ElementRef<HTMLInputElement>;
|
14
16
|
readonly form: import("@angular/forms").FormGroup;
|
15
|
-
readonly
|
16
|
-
users
|
17
|
+
readonly userIds: import("@angular/forms").FormControl;
|
18
|
+
users$: Observable<UserInfo[]>;
|
17
19
|
private _destroy;
|
18
20
|
constructor(_fb: FormBuilder, _session: SessionService, _accounts: AccountService);
|
19
21
|
ngOnInit(): void;
|
20
|
-
|
21
|
-
|
22
|
+
/**
|
23
|
+
*
|
24
|
+
* @param inp
|
25
|
+
* @param event
|
26
|
+
*/
|
27
|
+
userSelected(inp: HTMLInputElement, event: MatAutocompleteSelectedEvent): void;
|
28
|
+
/**
|
29
|
+
*
|
30
|
+
* @param id
|
31
|
+
*/
|
32
|
+
removed(id: string): void;
|
22
33
|
ngOnDestroy(): void;
|
23
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<AssignActionComponent, never>;
|
24
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<AssignActionComponent, "ng-component", never, {}, {}, never, never>;
|
@@ -23,7 +23,6 @@ export declare class FlowViewComponent extends TraceBase implements OnChanges, O
|
|
23
23
|
readonly scrollSettings: ScrollSettingsModel;
|
24
24
|
readonly snapSettings: SnapSettingsModel;
|
25
25
|
private readonly _configuration;
|
26
|
-
private _issued;
|
27
26
|
private _accentColor;
|
28
27
|
/** workflow-view ctor */
|
29
28
|
constructor(_accounts: AccountService, _session: SessionService, _translate: TranslateService, _duration: DurationFormatPipe, _elementRef: ElementRef<HTMLDivElement>, hub: HubService);
|
@@ -21,11 +21,11 @@ export declare class TraceViewComponent extends TraceBase implements OnChanges {
|
|
21
21
|
readonly CALENDAR_SPEC: CalendarSpec;
|
22
22
|
constructor(_session: SessionService, _translate: TranslateService, _accounts: AccountService, _chat: ChatInfo, hub: HubService);
|
23
23
|
ngOnChanges(_changes: SimpleChanges): void;
|
24
|
-
private
|
24
|
+
private _initialize;
|
25
25
|
private _filter;
|
26
|
-
private
|
27
|
-
get
|
28
|
-
set
|
26
|
+
private _showMode;
|
27
|
+
get showMode(): ShowMode;
|
28
|
+
set showMode(value: ShowMode);
|
29
29
|
private _roleName;
|
30
30
|
chat(e: MouseEvent): void;
|
31
31
|
/**
|
@@ -51,4 +51,5 @@ interface Trace {
|
|
51
51
|
fileName?: string;
|
52
52
|
time?: Date;
|
53
53
|
}
|
54
|
+
declare type ShowMode = 'everything' | 'active' | 'route';
|
54
55
|
export {};
|
package/lib/core/models.d.ts
CHANGED
@@ -91,7 +91,6 @@ export interface RecipientModel<T = any> extends HeaderModel<T>, DocumentModel<T
|
|
91
91
|
tags?: string[];
|
92
92
|
}
|
93
93
|
export interface ConnectorInfo {
|
94
|
-
virtual?: boolean;
|
95
94
|
originId?: number;
|
96
95
|
estimate: boolean;
|
97
96
|
time?: Date;
|
@@ -114,7 +113,7 @@ export interface Log {
|
|
114
113
|
recipientId?: number;
|
115
114
|
userId: string;
|
116
115
|
byId?: string;
|
117
|
-
|
116
|
+
originId?: string;
|
118
117
|
time: Date;
|
119
118
|
model?: {};
|
120
119
|
type: LogType;
|
@@ -143,7 +142,6 @@ export interface Recipient {
|
|
143
142
|
replied?: Date;
|
144
143
|
estimate?: boolean;
|
145
144
|
action?: string;
|
146
|
-
toId?: string;
|
147
145
|
fyi?: boolean;
|
148
146
|
id: number;
|
149
147
|
note?: string;
|
@@ -141,6 +141,10 @@ export declare const STRINGS: {
|
|
141
141
|
EverybodyRange: string;
|
142
142
|
YourRange: string;
|
143
143
|
Introduction: string;
|
144
|
+
AssignTo: string;
|
145
|
+
AssignRoundtrip: string;
|
146
|
+
AssignFYI: string;
|
147
|
+
AssignNoteHint: string;
|
144
148
|
Welcome: string;
|
145
149
|
WelcomeMsg: string;
|
146
150
|
WelcomeHide: string;
|
@@ -520,6 +524,7 @@ export declare const STRINGS: {
|
|
520
524
|
Votes: string;
|
521
525
|
Tasks: string;
|
522
526
|
System: string;
|
527
|
+
ActiveRoute: string;
|
523
528
|
Everything: string;
|
524
529
|
NothingHere: string;
|
525
530
|
Matrix: string;
|
@@ -557,6 +562,7 @@ export declare const STRINGS: {
|
|
557
562
|
Skipped: string;
|
558
563
|
Route: string;
|
559
564
|
Trace: string;
|
565
|
+
ActiveRoute: string;
|
560
566
|
Everything: string;
|
561
567
|
ProfilerSearchHelp: string;
|
562
568
|
TraceSearchHelp: string;
|
@@ -584,6 +590,10 @@ export declare const STRINGS: {
|
|
584
590
|
Message: string;
|
585
591
|
ProgrammableExpression: string;
|
586
592
|
FYI: string;
|
593
|
+
AssignTo: string;
|
594
|
+
AssignFYI: string;
|
595
|
+
AssignNoteHint: string;
|
596
|
+
AssignRoundtrip: string;
|
587
597
|
SkipInRoute: string;
|
588
598
|
StandardTime: string;
|
589
599
|
EscalateRole: string;
|
package/package.json
CHANGED