@veloceapps/sdk 3.1.30 → 3.1.31
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/bundles/veloce-sdk-core.umd.js +8 -0
- package/bundles/veloce-sdk-core.umd.js.map +1 -1
- package/bundles/veloce-sdk.umd.js +13 -3
- package/bundles/veloce-sdk.umd.js.map +1 -1
- package/cms/vendor-map.d.ts +124 -116
- package/core/services/quote-draft.service.d.ts +1 -0
- package/esm2015/core/services/quote-draft.service.js +4 -1
- package/esm2015/src/flow.component.js +3 -2
- package/esm2015/src/flow.module.js +6 -3
- package/esm2015/src/resolvers/quote.resolver.js +8 -2
- package/fesm2015/veloce-sdk-core.js +3 -0
- package/fesm2015/veloce-sdk-core.js.map +1 -1
- package/fesm2015/veloce-sdk.js +13 -3
- package/fesm2015/veloce-sdk.js.map +1 -1
- package/package.json +1 -1
- package/src/flow.component.d.ts +1 -0
- package/src/flow.module.d.ts +1 -1
- package/src/resolvers/quote.resolver.d.ts +1 -0
package/package.json
CHANGED
package/src/flow.component.d.ts
CHANGED
@@ -12,6 +12,7 @@ export declare class FlowComponent implements OnDestroy {
|
|
12
12
|
private docGenService;
|
13
13
|
isLoading$: Observable<boolean>;
|
14
14
|
showHeader$: Observable<boolean>;
|
15
|
+
isStandalone$: Observable<boolean>;
|
15
16
|
constructor(routerService: FlowRouterService, quoteDraftService: QuoteDraftService, flowService: FlowService, docGenService: FlowDocGenService);
|
16
17
|
ngOnDestroy(): void;
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowComponent, never>;
|
package/src/flow.module.d.ts
CHANGED
@@ -11,6 +11,6 @@ import * as i9 from "@veloce/sdk/core";
|
|
11
11
|
import * as i10 from "./components/doc-gen/doc-gen.module";
|
12
12
|
export declare class FlowModule {
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowModule, never>;
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FlowModule, [typeof i1.FlowComponent], [typeof i2.CommonModule, typeof i3.FlowRoutingModule, typeof i4.ApiModule, typeof i5.LauncherModule, typeof i6.LoaderModule, typeof i7.FlowHeaderModule, typeof i8.FlowDialogModule, typeof i9.SdkCoreModule, typeof i10.DocGenModule], never>;
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FlowModule, [typeof i1.FlowComponent], [typeof i2.CommonModule, typeof i3.FlowRoutingModule, typeof i4.ApiModule, typeof i5.LauncherModule, typeof i6.LoaderModule, typeof i7.FlowHeaderModule, typeof i8.FlowDialogModule, typeof i9.SdkCoreModule, typeof i10.DocGenModule, typeof i6.LetDirectiveModule], never>;
|
15
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<FlowModule>;
|
16
16
|
}
|
@@ -11,6 +11,7 @@ export declare class QuoteResolver implements Resolve<void | boolean> {
|
|
11
11
|
private flowConfiguration;
|
12
12
|
constructor(router: Router, quoteDraftService: QuoteDraftService, routerService: FlowRouterService, contextService: ContextService, flowConfiguration: FlowConfigurationService);
|
13
13
|
private handleError;
|
14
|
+
private calculate$;
|
14
15
|
resolve(route: ActivatedRouteSnapshot): Observable<void | boolean>;
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuoteResolver, never>;
|
16
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<QuoteResolver>;
|