@veloceapps/sdk 6.0.0-71 → 6.0.0-72
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -1251,6 +1251,12 @@
|
|
1251
1251
|
};
|
1252
1252
|
ConfigurationService.prototype.showInactiveProductsConfirmation = function () {
|
1253
1253
|
var _this = this;
|
1254
|
+
var confirmationConfig = {
|
1255
|
+
title: ' ',
|
1256
|
+
description: 'This quote contains inactive products. Do you want to remove them?',
|
1257
|
+
primaryButtonLabel: 'Remove products',
|
1258
|
+
secondaryButtonLabel: 'Back to Quote',
|
1259
|
+
};
|
1254
1260
|
this.dialogService
|
1255
1261
|
.open(components.ConfirmationComponent, {
|
1256
1262
|
dismissableMask: false,
|
@@ -1259,14 +1265,7 @@
|
|
1259
1265
|
showHeader: true,
|
1260
1266
|
header: "Inactive Products in Quote",
|
1261
1267
|
width: '440px',
|
1262
|
-
data: {
|
1263
|
-
confirmationConfig: {
|
1264
|
-
title: ' ',
|
1265
|
-
description: 'This quote contains inactive products. Do you want to remove them?',
|
1266
|
-
submitBtn: 'Remove products',
|
1267
|
-
cancelBtn: 'Back to Quote',
|
1268
|
-
},
|
1269
|
-
},
|
1268
|
+
data: { confirmationConfig: confirmationConfig },
|
1270
1269
|
})
|
1271
1270
|
.onClose.subscribe(function (result) {
|
1272
1271
|
if (!result) {
|