@veloceapps/sdk 6.0.0-71 → 6.0.0-72
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/veloceapps-sdk-core.umd.js +7 -8
- package/bundles/veloceapps-sdk-core.umd.js.map +1 -1
- package/bundles/veloceapps-sdk-runtime.umd.js +7 -8
- package/bundles/veloceapps-sdk-runtime.umd.js.map +1 -1
- package/esm2015/core/modules/configuration/services/configuration.service.js +8 -9
- package/esm2015/runtime/services/configuration.service.js +8 -9
- package/fesm2015/veloceapps-sdk-core.js +7 -8
- package/fesm2015/veloceapps-sdk-core.js.map +1 -1
- package/fesm2015/veloceapps-sdk-runtime.js +7 -8
- package/fesm2015/veloceapps-sdk-runtime.js.map +1 -1
- package/package.json +1 -1
@@ -1245,6 +1245,12 @@
|
|
1245
1245
|
};
|
1246
1246
|
ConfigurationService.prototype.showInactiveProductsConfirmation = function () {
|
1247
1247
|
var _this = this;
|
1248
|
+
var confirmationConfig = {
|
1249
|
+
title: ' ',
|
1250
|
+
description: 'This quote contains inactive products. Do you want to remove them?',
|
1251
|
+
primaryButtonLabel: 'Remove products',
|
1252
|
+
secondaryButtonLabel: 'Back to Quote',
|
1253
|
+
};
|
1248
1254
|
this.dialogService
|
1249
1255
|
.open(i8.ConfirmationComponent, {
|
1250
1256
|
dismissableMask: false,
|
@@ -1253,14 +1259,7 @@
|
|
1253
1259
|
showHeader: true,
|
1254
1260
|
header: "Inactive Products in Quote",
|
1255
1261
|
width: '440px',
|
1256
|
-
data: {
|
1257
|
-
confirmationConfig: {
|
1258
|
-
title: ' ',
|
1259
|
-
description: 'This quote contains inactive products. Do you want to remove them?',
|
1260
|
-
submitBtn: 'Remove products',
|
1261
|
-
cancelBtn: 'Back to Quote',
|
1262
|
-
},
|
1263
|
-
},
|
1262
|
+
data: { confirmationConfig: confirmationConfig },
|
1264
1263
|
})
|
1265
1264
|
.onClose.subscribe(function (result) {
|
1266
1265
|
if (!result) {
|