@veloceapps/sdk 8.0.0-14 → 8.0.0-15
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/src/components/doc-gen/doc-gen.component.mjs +10 -14
- package/esm2020/src/components/guided-selling/guided-selling.component.mjs +9 -12
- package/fesm2015/veloceapps-sdk.mjs +67 -70
- package/fesm2015/veloceapps-sdk.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk.mjs +67 -70
- package/fesm2020/veloceapps-sdk.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/doc-gen/doc-gen.component.d.ts +3 -6
- package/src/components/guided-selling/guided-selling.component.d.ts +2 -4
package/package.json
CHANGED
@@ -3,28 +3,25 @@ import { UITemplatesApiService } from '@veloceapps/api';
|
|
3
3
|
import { ToastService } from '@veloceapps/components';
|
4
4
|
import { UIDefinition } from '@veloceapps/core';
|
5
5
|
import { ContextService, QuoteDraftService } from '@veloceapps/sdk/core';
|
6
|
-
import { BehaviorSubject
|
7
|
-
import { FlowDocGenService } from '../../services/doc-gen.service';
|
6
|
+
import { BehaviorSubject } from 'rxjs';
|
8
7
|
import { FlowCustomization } from '../../types';
|
9
8
|
import * as i0 from "@angular/core";
|
10
9
|
export declare class DocGenComponent implements OnDestroy {
|
11
10
|
private quoteDraftService;
|
12
11
|
private contextService;
|
13
12
|
private templatesApi;
|
14
|
-
private docGenService;
|
15
13
|
private toastService;
|
16
14
|
private customizationService?;
|
17
15
|
uiDefinition$: BehaviorSubject<UIDefinition | null>;
|
18
|
-
isVisible$: Observable<boolean>;
|
19
16
|
private templateApiName;
|
20
17
|
private destroy$;
|
21
|
-
constructor(quoteDraftService: QuoteDraftService, contextService: ContextService, templatesApi: UITemplatesApiService,
|
18
|
+
constructor(quoteDraftService: QuoteDraftService, contextService: ContextService, templatesApi: UITemplatesApiService, toastService: ToastService, customizationService?: FlowCustomization | undefined);
|
22
19
|
ngOnDestroy(): void;
|
23
20
|
private initialize;
|
24
21
|
private getTemplateRootComponent$;
|
25
22
|
private getLocalTemplateComponentMeta$;
|
26
23
|
private getDocGenComponentMeta$;
|
27
24
|
private generateUIDefinition$;
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocGenComponent, [null, null, null, null,
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocGenComponent, [null, null, null, null, { optional: true; }]>;
|
29
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<DocGenComponent, "vl-flow-doc-gen", never, {}, {}, never, never, false, never>;
|
30
27
|
}
|
@@ -4,26 +4,24 @@ import { ToastService } from '@veloceapps/components';
|
|
4
4
|
import { UIDefinition } from '@veloceapps/core';
|
5
5
|
import { ContextService, QuoteDraftService } from '@veloceapps/sdk/core';
|
6
6
|
import { BehaviorSubject } from 'rxjs';
|
7
|
-
import { FlowGuidedSellingService } from '../../services/guided-selling.service';
|
8
7
|
import { FlowCustomization } from '../../types';
|
9
8
|
import * as i0 from "@angular/core";
|
10
9
|
export declare class GuidedSellingComponent implements OnDestroy {
|
11
10
|
private quoteDraftService;
|
12
11
|
private contextService;
|
13
12
|
private templatesApi;
|
14
|
-
private guidedSellingService;
|
15
13
|
private toastService;
|
16
14
|
private customizationService?;
|
17
15
|
uiDefinition$: BehaviorSubject<UIDefinition | null>;
|
18
16
|
private templateApiName;
|
19
17
|
private destroy$;
|
20
|
-
constructor(quoteDraftService: QuoteDraftService, contextService: ContextService, templatesApi: UITemplatesApiService,
|
18
|
+
constructor(quoteDraftService: QuoteDraftService, contextService: ContextService, templatesApi: UITemplatesApiService, toastService: ToastService, customizationService?: FlowCustomization | undefined);
|
21
19
|
ngOnDestroy(): void;
|
22
20
|
private initialize;
|
23
21
|
private getTemplateRootComponent$;
|
24
22
|
private getLocalTemplateComponentMeta$;
|
25
23
|
private getGuidedSellingComponentMeta$;
|
26
24
|
private generateUIDefinition$;
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GuidedSellingComponent, [null, null, null, null,
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GuidedSellingComponent, [null, null, null, null, { optional: true; }]>;
|
28
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<GuidedSellingComponent, "vl-flow-guided-selling", never, {}, {}, never, never, false, never>;
|
29
27
|
}
|