@bizdoc/core 3.9.0 → 3.9.2
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
@@ -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
|
/**
|
@@ -7844,7 +7846,7 @@ declare class ExpandedItemComponent implements OnInit, OnDestroy {
|
|
7844
7846
|
actions?: Action[];
|
7845
7847
|
newComments?: number;
|
7846
7848
|
typing?: boolean;
|
7847
|
-
note
|
7849
|
+
note?: string | null;
|
7848
7850
|
sender?: string;
|
7849
7851
|
awaiting?: string;
|
7850
7852
|
tags?: Tag$1[];
|
@@ -7877,7 +7879,6 @@ declare class ExpandedItemComponent implements OnInit, OnDestroy {
|
|
7877
7879
|
* @param action
|
7878
7880
|
*/
|
7879
7881
|
send(action: string): void;
|
7880
|
-
private _getActionAdjective;
|
7881
7882
|
/**
|
7882
7883
|
*
|
7883
7884
|
* @param response
|