@bizdoc/core 1.13.0-next.10 → 1.13.0-next.14

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.
@@ -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 userId: import("@angular/forms").FormControl;
16
- users: Observable<UserInfo[]>;
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
- display(v: UserInfo): string;
21
- change(evt: MatAutocompleteSelectedEvent): void;
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 _initialise;
24
+ private _initialize;
25
25
  private _filter;
26
- private _showAll;
27
- get showAll(): boolean;
28
- set showAll(value: boolean);
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 {};
@@ -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;
@@ -99,7 +98,6 @@ export interface ConnectorInfo {
99
98
  targetId: string;
100
99
  }
101
100
  export interface NodeInfo {
102
- virtual?: boolean;
103
101
  originId?: number;
104
102
  id: string;
105
103
  /** node */
@@ -114,7 +112,7 @@ export interface Log {
114
112
  recipientId?: number;
115
113
  userId: string;
116
114
  byId?: string;
117
- toId?: string;
115
+ originId?: string;
118
116
  time: Date;
119
117
  model?: {};
120
118
  type: LogType;
@@ -143,7 +141,6 @@ export interface Recipient {
143
141
  replied?: Date;
144
142
  estimate?: boolean;
145
143
  action?: string;
146
- toId?: string;
147
144
  fyi?: boolean;
148
145
  id: number;
149
146
  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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "1.13.0-next.10",
3
+ "version": "1.13.0-next.14",
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",