@bizdoc/core 3.9.0 → 3.9.3

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/index.d.ts CHANGED
@@ -287,7 +287,7 @@ interface Recipient {
287
287
  userId: string;
288
288
  pending: boolean;
289
289
  folderId: string;
290
- role?: string;
290
+ roleId?: string;
291
291
  received: Date;
292
292
  replied?: Date;
293
293
  repliedBy?: string;
@@ -3911,7 +3911,7 @@ declare class CommentsComponent implements OnInit, OnDestroy, OnChanges, AfterVi
3911
3911
  threadElement: ElementRef;
3912
3912
  input: EditInputComponent;
3913
3913
  typing?: string | null;
3914
- replyName?: string;
3914
+ replyName?: string | null;
3915
3915
  readonly showDeleted: Set<number>;
3916
3916
  private _replyTo?;
3917
3917
  private _inFocus;
@@ -7595,6 +7595,7 @@ declare class MaskComponent {
7595
7595
  declare class FlowViewComponent extends TraceBase implements AfterViewInit, OnDestroy {
7596
7596
  private _accounts;
7597
7597
  private _translate;
7598
+ private _popup;
7598
7599
  private _duration;
7599
7600
  private _elementRef;
7600
7601
  model: DocumentModel<any>;
@@ -7620,7 +7621,7 @@ declare class FlowViewComponent extends TraceBase implements AfterViewInit, OnDe
7620
7621
  connectors: ConnectorModel[];
7621
7622
  indicators: NodeModel[];
7622
7623
  /** workflow-view ctor */
7623
- constructor(_accounts: AccountService, _translate: TranslateService, _duration: DurationFormatPipe, _elementRef: ElementRef<HTMLDivElement>, session: SessionService, hub: HubService);
7624
+ constructor(_accounts: AccountService, _translate: TranslateService, _popup: Popup, _duration: DurationFormatPipe, _elementRef: ElementRef<HTMLDivElement>, session: SessionService, hub: HubService);
7624
7625
  /** */
7625
7626
  ngAfterViewInit(): void;
7626
7627
  ngOnChanges(_changes: SimpleChanges): void;
@@ -7628,6 +7629,7 @@ declare class FlowViewComponent extends TraceBase implements AfterViewInit, OnDe
7628
7629
  protected _initialize(): Promise<void>;
7629
7630
  private _addIndicators;
7630
7631
  private _refresh;
7632
+ private _mouseEnter;
7631
7633
  /** */
7632
7634
  private _prepare;
7633
7635
  /**
@@ -7646,6 +7648,12 @@ declare class FlowViewComponent extends TraceBase implements AfterViewInit, OnDe
7646
7648
  * @param recipient
7647
7649
  */
7648
7650
  private _note;
7651
+ /**
7652
+ *
7653
+ * @param name
7654
+ * @param gender
7655
+ * @returns
7656
+ */
7649
7657
  private _action;
7650
7658
  ngOnDestroy(): void;
7651
7659
  static ɵfac: i0.ɵɵFactoryDeclaration<FlowViewComponent, never>;
@@ -7844,7 +7852,7 @@ declare class ExpandedItemComponent implements OnInit, OnDestroy {
7844
7852
  actions?: Action[];
7845
7853
  newComments?: number;
7846
7854
  typing?: boolean;
7847
- note: string;
7855
+ note?: string | null;
7848
7856
  sender?: string;
7849
7857
  awaiting?: string;
7850
7858
  tags?: Tag$1[];
@@ -7877,7 +7885,6 @@ declare class ExpandedItemComponent implements OnInit, OnDestroy {
7877
7885
  * @param action
7878
7886
  */
7879
7887
  send(action: string): void;
7880
- private _getActionAdjective;
7881
7888
  /**
7882
7889
  *
7883
7890
  * @param response
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "3.9.0",
3
+ "version": "3.9.3",
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",