@bizdoc/core 3.4.7 → 3.4.8
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, SimpleChanges, AfterViewInit } from '@angular/core';
|
1
|
+
import { ElementRef, OnDestroy, SimpleChanges, AfterViewInit } from '@angular/core';
|
2
2
|
import { NodeModel, ConnectorModel, LayoutModel, DiagramTools, Diagram, DiagramConstraints, ScrollSettingsModel, SnapSettingsModel, Segments } from '@syncfusion/ej2-angular-diagrams';
|
3
3
|
import { DocumentModel } from "../../core/models";
|
4
4
|
import { TraceBase } from './trace.base';
|
@@ -12,6 +12,7 @@ export declare class FlowViewComponent extends TraceBase implements AfterViewIni
|
|
12
12
|
private _accounts;
|
13
13
|
private _translate;
|
14
14
|
private _duration;
|
15
|
+
private _elementRef;
|
15
16
|
model: DocumentModel<any>;
|
16
17
|
/** trigger ngOnChanges on document save */
|
17
18
|
version: number;
|
@@ -35,7 +36,8 @@ export declare class FlowViewComponent extends TraceBase implements AfterViewIni
|
|
35
36
|
connectors: ConnectorModel[];
|
36
37
|
indicators: NodeModel[];
|
37
38
|
/** workflow-view ctor */
|
38
|
-
constructor(_accounts: AccountService, _translate: TranslateService, _duration: DurationFormatPipe, session: SessionService, hub: HubService);
|
39
|
+
constructor(_accounts: AccountService, _translate: TranslateService, _duration: DurationFormatPipe, _elementRef: ElementRef<HTMLDivElement>, session: SessionService, hub: HubService);
|
40
|
+
/** */
|
39
41
|
ngAfterViewInit(): void;
|
40
42
|
ngOnChanges(_changes: SimpleChanges): void;
|
41
43
|
created(): void;
|
@@ -14,4 +14,4 @@ export declare class ToNowPipe implements PipeTransform {
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToNowPipe, never>;
|
15
15
|
static ɵpipe: i0.ɵɵPipeDeclaration<ToNowPipe, "amToNow", false>;
|
16
16
|
}
|
17
|
-
export declare function getSecondsUntilUpdate(time: dayjs.Dayjs):
|
17
|
+
export declare function getSecondsUntilUpdate(time: dayjs.Dayjs): 1 | 300 | 30 | 3600;
|