@bizdoc/core 1.13.0-next.6 → 1.13.0-next.7

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.
@@ -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
- item: RecipientModel<any>;
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, _dir: Directionality, _translate: TranslateService, _mailbox: MailboxService, _dialog: MatDialog, _session: SessionService, _messaging: HubService);
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, { "item": "item"; }, { "sent": "sent"; }, never, 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 interface UploadEvent {
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
  }
@@ -99,6 +99,7 @@ export interface ConnectorInfo {
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;
@@ -912,6 +915,9 @@ export declare const STRINGS: {
912
915
  YouRepliedTo: string;
913
916
  ReplyingToYou: string;
914
917
  ByYou: string;
918
+ ActionByYou: string;
919
+ ActionByBy: string;
920
+ ActionBy: string;
915
921
  EscalatedTo: string;
916
922
  EscalatedFrom: string;
917
923
  EscalatedBy: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "1.13.0-next.6",
3
+ "version": "1.13.0-next.7",
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",