@veloceapps/sdk 11.0.0-82 → 11.0.0-84
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/cms/vendor-map.d.ts +2 -1
- package/core/modules/configuration/index.d.ts +1 -0
- package/core/modules/configuration/services/configuration.service.d.ts +4 -6
- package/core/modules/configuration/services/guided-selling.service.d.ts +13 -0
- package/core/services/flow-state-configuration.service.d.ts +8 -1
- package/esm2020/cms/vendor-map.mjs +3 -2
- package/esm2020/core/modules/configuration/configuration.module.mjs +4 -1
- package/esm2020/core/modules/configuration/index.mjs +2 -1
- package/esm2020/core/modules/configuration/services/configuration-state.service.mjs +3 -3
- package/esm2020/core/modules/configuration/services/configuration.service.mjs +29 -32
- package/esm2020/core/modules/configuration/services/guided-selling.service.mjs +47 -0
- package/esm2020/core/modules/configuration/services/test-mode-configuration.service.mjs +2 -2
- package/esm2020/core/services/flow-state-configuration.service.mjs +48 -6
- package/esm2020/core/services/flow-state.service.mjs +2 -2
- package/esm2020/src/services/flow-dialog.service.mjs +3 -24
- package/fesm2015/veloceapps-sdk-cms.mjs +2 -1
- package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk-core.mjs +101 -40
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk.mjs +2 -23
- package/fesm2015/veloceapps-sdk.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-cms.mjs +2 -1
- package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +179 -103
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk.mjs +2 -23
- package/fesm2020/veloceapps-sdk.mjs.map +1 -1
- package/package.json +1 -1
- package/src/services/flow-dialog.service.d.ts +1 -4
@@ -540,10 +540,10 @@ class FlowDialogService {
|
|
540
540
|
primaryButton: 'Ok',
|
541
541
|
});
|
542
542
|
}
|
543
|
-
|
543
|
+
showQuoteInConfiguratorDialog() {
|
544
544
|
return this.show({
|
545
545
|
title: 'Quote Cannot be Saved',
|
546
|
-
description: 'It
|
546
|
+
description: 'It not possible to save quotes from the Configurator. To proceed, finish configuring product.',
|
547
547
|
primaryButton: 'Ok',
|
548
548
|
});
|
549
549
|
}
|
@@ -563,27 +563,6 @@ class FlowDialogService {
|
|
563
563
|
oppositeButtonActions: true,
|
564
564
|
});
|
565
565
|
}
|
566
|
-
showReadonlyQuoteSubmitFailureDialog() {
|
567
|
-
return this.show({
|
568
|
-
title: 'Cannot Submit for Approval',
|
569
|
-
description: 'It is only possible to submit for approval quotes with the “Draft“ status. Please create a new quote to proceed.',
|
570
|
-
primaryButton: 'Ok',
|
571
|
-
});
|
572
|
-
}
|
573
|
-
showOutsideShoppingCartQuoteSubmitFailureDialog() {
|
574
|
-
return this.show({
|
575
|
-
title: 'Cannot Submit for Approval',
|
576
|
-
description: 'It is only possible to submit quotes for approval from the Shopping Cart. To proceed, go to the Shopping Cart.',
|
577
|
-
primaryButton: 'Ok',
|
578
|
-
});
|
579
|
-
}
|
580
|
-
showAccountSubmitFailureDialog() {
|
581
|
-
return this.show({
|
582
|
-
title: 'Save Changes',
|
583
|
-
description: 'To submit for approval, save the quote first, and then submit it for approval from the Shopping Cart.',
|
584
|
-
primaryButton: 'Ok',
|
585
|
-
});
|
586
|
-
}
|
587
566
|
showTermsLimitReachedDialog() {
|
588
567
|
const shoppingCartSettings = mapShoppingCartSettings(this.runtimeSettings.getShoppingCartSettings() || []);
|
589
568
|
const maxRenewalTerms = getMaxRenewalTermsValue(shoppingCartSettings);
|