@osovitny/anatoly 2.14.37 → 2.14.38
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/ui/components/base.component.mjs +5 -1
- package/fesm2015/osovitny-anatoly.mjs +4 -0
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +4 -0
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -2266,6 +2266,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2266
2266
|
class BaseComponent {
|
|
2267
2267
|
constructor() {
|
|
2268
2268
|
this.subs = new Subs();
|
|
2269
|
+
//Component Data => usually loading from API
|
|
2270
|
+
this.dataLoading = true;
|
|
2271
|
+
this.dataLoaded = false;
|
|
2272
|
+
this.dataFound = false;
|
|
2269
2273
|
}
|
|
2270
2274
|
getQSId() {
|
|
2271
2275
|
let id = Utils.getValueByNameInQS("id");
|