@veloceapps/sdk 8.0.0-80 → 8.0.0-81
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
package/src/flow.component.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { IntegrationState } from '@veloceapps/sdk/cms';
|
3
|
-
import { QuoteDraftService } from '@veloceapps/sdk/core';
|
3
|
+
import { ContextService, QuoteDraftService } from '@veloceapps/sdk/core';
|
4
4
|
import { Observable } from 'rxjs';
|
5
5
|
import { FlowService } from './services';
|
6
6
|
import { FlowDocGenService } from './services/doc-gen.service';
|
@@ -12,10 +12,11 @@ export declare class FlowComponent implements OnInit, OnDestroy {
|
|
12
12
|
private flowService;
|
13
13
|
private docGenService;
|
14
14
|
private integrationState;
|
15
|
+
private contextService;
|
15
16
|
isLoading$: Observable<boolean>;
|
16
17
|
showHeader$: Observable<boolean>;
|
17
18
|
isStandalone$: Observable<boolean>;
|
18
|
-
constructor(routerService: FlowRouterService, quoteDraftService: QuoteDraftService, flowService: FlowService, docGenService: FlowDocGenService, integrationState: IntegrationState);
|
19
|
+
constructor(routerService: FlowRouterService, quoteDraftService: QuoteDraftService, flowService: FlowService, docGenService: FlowDocGenService, integrationState: IntegrationState, contextService: ContextService);
|
19
20
|
ngOnInit(): void;
|
20
21
|
ngOnDestroy(): void;
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowComponent, never>;
|