@esfaenza/core 15.2.54 → 15.2.55
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/esm2020/components/navbar/navbar.component.mjs +4 -1
- package/esm2020/lib/app.component.mjs +2 -2
- package/esm2020/services/classes/app.state.mjs +3 -1
- package/fesm2015/esfaenza-core-components.mjs +3 -0
- package/fesm2015/esfaenza-core-components.mjs.map +1 -1
- package/fesm2015/esfaenza-core-services.mjs +2 -0
- package/fesm2015/esfaenza-core-services.mjs.map +1 -1
- package/fesm2015/esfaenza-core.mjs +2 -2
- package/fesm2015/esfaenza-core.mjs.map +1 -1
- package/fesm2020/esfaenza-core-components.mjs +3 -0
- package/fesm2020/esfaenza-core-components.mjs.map +1 -1
- package/fesm2020/esfaenza-core-services.mjs +2 -0
- package/fesm2020/esfaenza-core-services.mjs.map +1 -1
- package/fesm2020/esfaenza-core.mjs +2 -2
- package/fesm2020/esfaenza-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1350,6 +1350,7 @@ class AppState {
|
|
|
1350
1350
|
}
|
|
1351
1351
|
this.jobWithIdsCache[ev.instance] = job;
|
|
1352
1352
|
this.allJobs.splice(0, 0, job);
|
|
1353
|
+
this.notifyDataChanged("app.startedJob", jobToUpdate.description);
|
|
1353
1354
|
break;
|
|
1354
1355
|
case "Progress":
|
|
1355
1356
|
// Se mi arriva un progress di un job che non ho significa che mi sono loggato ora con dei Job in corso
|
|
@@ -1359,6 +1360,7 @@ class AppState {
|
|
|
1359
1360
|
this.allJobs.splice(0, 0, job);
|
|
1360
1361
|
}
|
|
1361
1362
|
this.jobWithIdsCache[ev.instance].percentage = this.roundToTwo(ev.progress);
|
|
1363
|
+
this.notifyDataChanged("app.progressJob", { description: jobToUpdate.description, progress: jobToUpdate.percentage });
|
|
1362
1364
|
break;
|
|
1363
1365
|
case "Completed":
|
|
1364
1366
|
if (!this.jobWithIdsCache[ev.instance]) {
|