@veloceapps/sdk 6.0.0-50 → 6.0.0-51
Sign up to get free protection for your applications and to get access to all the features.
- package/bundles/veloceapps-sdk.umd.js +13 -4
- package/bundles/veloceapps-sdk.umd.js.map +1 -1
- package/esm2015/src/components/header/header.component.js +16 -7
- package/fesm2015/veloceapps-sdk.js +21 -12
- package/fesm2015/veloceapps-sdk.js.map +1 -1
- package/package.json +1 -1
- package/src/components/header/header.component.d.ts +4 -2
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
2
|
-
import { QuoteApiService, SalesforceApiService } from '@veloceapps/api';
|
2
|
+
import { QuoteApiService, SalesforceApiService, ShoppingCartSettingsApiService } from '@veloceapps/api';
|
3
3
|
import { ContextProperties, PriceList } from '@veloceapps/core';
|
4
4
|
import { IntegrationState } from '@veloceapps/sdk/cms';
|
5
5
|
import { ContextService, FlowConfigurationService, QuoteDraftService } from '@veloceapps/sdk/core';
|
@@ -19,6 +19,7 @@ export declare class FlowHeaderComponent implements OnInit, OnDestroy {
|
|
19
19
|
private routerService;
|
20
20
|
private dialogService;
|
21
21
|
private integrationState;
|
22
|
+
private shoppingCartSettingsApiService;
|
22
23
|
objectName$: Observable<string>;
|
23
24
|
contextProperties$: Observable<ContextProperties>;
|
24
25
|
activePriceList$: Observable<PriceList | null>;
|
@@ -32,10 +33,11 @@ export declare class FlowHeaderComponent implements OnInit, OnDestroy {
|
|
32
33
|
isEditMode$: Observable<boolean>;
|
33
34
|
isSaveInProgress$: BehaviorSubject<boolean>;
|
34
35
|
isSubmitInProgress$: BehaviorSubject<boolean>;
|
36
|
+
dateFormat: string;
|
35
37
|
assetPriceLists$: BehaviorSubject<PriceList[]>;
|
36
38
|
private mode$;
|
37
39
|
private destroyed$;
|
38
|
-
constructor(contextService: ContextService, quoteDraftService: QuoteDraftService, quoteApiService: QuoteApiService, sfApiService: SalesforceApiService, flowConfiguration: FlowConfigurationService, routerService: FlowRouterService, dialogService: FlowDialogService, integrationState: IntegrationState);
|
40
|
+
constructor(contextService: ContextService, quoteDraftService: QuoteDraftService, quoteApiService: QuoteApiService, sfApiService: SalesforceApiService, flowConfiguration: FlowConfigurationService, routerService: FlowRouterService, dialogService: FlowDialogService, integrationState: IntegrationState, shoppingCartSettingsApiService: ShoppingCartSettingsApiService);
|
39
41
|
ngOnInit(): void;
|
40
42
|
ngOnDestroy(): void;
|
41
43
|
get isAccountMode(): boolean;
|