tuain-ng-forms-lib 15.0.18 → 15.0.19
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/lib/services/event-manager.service.mjs +2 -2
- package/fesm2015/tuain-ng-forms-lib.mjs +1 -1
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/services/event-manager.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2696,7 +2696,7 @@ class LibEventManagerService {
|
|
|
2696
2696
|
}
|
|
2697
2697
|
getEventNames() { return Object.keys(this.eventSubjects); }
|
|
2698
2698
|
getSubject(eventClassName) { return eventClassName ? this.eventSubjects[eventClassName] : null; }
|
|
2699
|
-
subscribe(eventClassName, callback) { this.getSubject(eventClassName).subscribe(callback); }
|
|
2699
|
+
subscribe(eventClassName, callback) { return this.getSubject(eventClassName).subscribe(callback); }
|
|
2700
2700
|
next(eventClassName, data) { this.getSubject(eventClassName).next(data); }
|
|
2701
2701
|
}
|
|
2702
2702
|
|