@veloceapps/sdk 8.0.0-190 → 8.0.0-192
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 +8 -10
- package/esm2020/src/flow-routing.module.mjs +3 -16
- package/fesm2015/veloceapps-sdk-core.mjs +6 -8
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk.mjs +3 -37
- package/fesm2015/veloceapps-sdk.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +6 -8
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk.mjs +3 -37
- package/fesm2020/veloceapps-sdk.mjs.map +1 -1
- package/package.json +1 -1
- package/src/flow-routing.module.d.ts +1 -2
- package/esm2020/src/pages/empty-account/empty-account.component.mjs +0 -12
- package/esm2020/src/pages/empty-account/empty-account.module.mjs +0 -20
- package/src/pages/empty-account/empty-account.component.d.ts +0 -5
- package/src/pages/empty-account/empty-account.module.d.ts +0 -10
@@ -2241,14 +2241,7 @@ class ConfigurationStateService {
|
|
2241
2241
|
}
|
2242
2242
|
let configurationRequest = this.configurationService.generateRequest();
|
2243
2243
|
request.actions.forEach(action => {
|
2244
|
-
|
2245
|
-
configurationRequest = this.executeActionScript(configurationRequest, action) ?? configurationRequest;
|
2246
|
-
}
|
2247
|
-
catch (e) {
|
2248
|
-
console.error(e);
|
2249
|
-
this.toastService.add({ severity: ToastType.error, summary: String(e) });
|
2250
|
-
throw e;
|
2251
|
-
}
|
2244
|
+
configurationRequest = this.executeActionScript(configurationRequest, action) ?? configurationRequest;
|
2252
2245
|
});
|
2253
2246
|
return this.configurationService.configureRequest$(configurationRequest);
|
2254
2247
|
}), map$1(() => {
|
@@ -2274,6 +2267,11 @@ class ConfigurationStateService {
|
|
2274
2267
|
return result;
|
2275
2268
|
}, { stateId: '', selectors: {} });
|
2276
2269
|
return selectorsResult;
|
2270
|
+
}), catchError(error => {
|
2271
|
+
if (!this.configurationRuntimeService.uiDefinitionProperties.suppressToastMessages) {
|
2272
|
+
this.toastService.add({ severity: ToastType.error, summary: String(error) });
|
2273
|
+
}
|
2274
|
+
return throwError(() => error);
|
2277
2275
|
}));
|
2278
2276
|
}
|
2279
2277
|
executeStateful$(request) {
|