@osovitny/anatoly 2.14.91 → 2.14.93
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/assets/styles/scss/alerts.scss +11 -25
- package/esm2020/lib/ui/components/base/base.component.mjs +6 -1
- package/esm2020/lib/ui/components/base/base.dialog.mjs +3 -3
- package/fesm2015/osovitny-anatoly.mjs +7 -2
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +7 -2
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base/base.component.d.ts +1 -0
- package/lib/ui/components/base/base.dialog.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2940,6 +2940,11 @@ class BaseComponent {
|
|
|
2940
2940
|
return null;
|
|
2941
2941
|
return value;
|
|
2942
2942
|
}
|
|
2943
|
+
dataStartedLoading() {
|
|
2944
|
+
this.dataLoading = true;
|
|
2945
|
+
this.dataLoaded = false;
|
|
2946
|
+
this.dataFound = false;
|
|
2947
|
+
}
|
|
2943
2948
|
dataLoadedAndNothingFound() {
|
|
2944
2949
|
this.dataLoadedAndFound(false);
|
|
2945
2950
|
}
|
|
@@ -3478,8 +3483,8 @@ class BaseDialog extends BaseEditComponent {
|
|
|
3478
3483
|
}
|
|
3479
3484
|
set isOpen(value) {
|
|
3480
3485
|
if (value) {
|
|
3481
|
-
if (this.
|
|
3482
|
-
this.
|
|
3486
|
+
if (this.anOnBeforeOpen) {
|
|
3487
|
+
this.anOnBeforeOpen();
|
|
3483
3488
|
}
|
|
3484
3489
|
this.opened.emit();
|
|
3485
3490
|
}
|