@veloceapps/sdk 10.0.0-29 → 10.0.0-30
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/core/modules/configuration/services/configuration-state.service.mjs +4 -4
- package/esm2020/core/modules/configuration/services/configuration.service.mjs +3 -3
- package/fesm2015/veloceapps-sdk-core.mjs +2 -2
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +2 -2
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/package.json +1 -1
@@ -1492,7 +1492,7 @@ class ConfigurationService {
|
|
1492
1492
|
generateLineItem() {
|
1493
1493
|
const runtimeContext = this.getRuntimeContext();
|
1494
1494
|
const uiDefinitionProperties = this.getUIDefinitionProperties();
|
1495
|
-
let lineItem =
|
1495
|
+
let lineItem = this.configurableRamp;
|
1496
1496
|
if (!lineItem) {
|
1497
1497
|
const { initializationProps } = this.runtimeService ?? {};
|
1498
1498
|
lineItem = getDefaultLineItem(runtimeContext, uiDefinitionProperties, initializationProps?.defaultQty);
|
@@ -2344,7 +2344,7 @@ class ConfigurationStateService {
|
|
2344
2344
|
return this.configurationService.configureRequest$(configurationRequest);
|
2345
2345
|
}), map$1(() => {
|
2346
2346
|
// Run selectors and apply them to the state
|
2347
|
-
const configurationState =
|
2347
|
+
const configurationState = this.configurationService.stateSnapshot;
|
2348
2348
|
if (!configurationState) {
|
2349
2349
|
return { stateId: '', selectors: {} };
|
2350
2350
|
}
|