ng-ipa-library 1.2.4 → 1.2.7
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/core/components/loading/loading.component.mjs +19 -5
- package/fesm2015/ng-ipa-library.mjs +17 -3
- package/fesm2015/ng-ipa-library.mjs.map +1 -1
- package/fesm2020/ng-ipa-library.mjs +17 -3
- package/fesm2020/ng-ipa-library.mjs.map +1 -1
- package/lib/core/components/loading/loading.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -545,20 +545,34 @@ class LoaderComponent {
|
|
|
545
545
|
constructor(loaderService, cdr) {
|
|
546
546
|
this.loaderService = loaderService;
|
|
547
547
|
this.cdr = cdr;
|
|
548
|
+
this.loading = true;
|
|
549
|
+
this.isLocal = false;
|
|
548
550
|
}
|
|
549
551
|
ngAfterViewInit() {
|
|
550
552
|
this.loaderService.isLoading.subscribe((v) => {
|
|
551
553
|
this.loading = v;
|
|
554
|
+
const loader = document.getElementById('cover-spin');
|
|
555
|
+
if (loader) {
|
|
556
|
+
if (this.loading) {
|
|
557
|
+
loader.style.display = 'flex';
|
|
558
|
+
}
|
|
559
|
+
else {
|
|
560
|
+
if (loader.style.display !== 'none')
|
|
561
|
+
loader.style.display = 'none';
|
|
562
|
+
}
|
|
563
|
+
}
|
|
552
564
|
this.cdr.detectChanges();
|
|
553
565
|
});
|
|
554
566
|
}
|
|
555
567
|
}
|
|
556
568
|
LoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LoaderComponent, deps: [{ token: LoaderService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
557
|
-
LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: LoaderComponent, selector: "ipa-loader", ngImport: i0, template: "<div id=\"cover-spin\" *ngIf=\"loading\">\r\n <div class=\"spinner\"></div>\r\n</div>\r\n", styles: ["#cover-spin{display:flex}\n"], directives: [{ type: i3$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
569
|
+
LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: LoaderComponent, selector: "ipa-loader", inputs: { isLocal: "isLocal" }, ngImport: i0, template: "<div id=\"cover-spin\" *ngIf=\"loading && isLocal\">\r\n <div class=\"spinner\"></div>\r\n</div>\r\n", styles: ["#cover-spin{display:flex}\n"], directives: [{ type: i3$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
558
570
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LoaderComponent, decorators: [{
|
|
559
571
|
type: Component,
|
|
560
|
-
args: [{ selector: 'ipa-loader', template: "<div id=\"cover-spin\" *ngIf=\"loading\">\r\n <div class=\"spinner\"></div>\r\n</div>\r\n", styles: ["#cover-spin{display:flex}\n"] }]
|
|
561
|
-
}], ctorParameters: function () { return [{ type: LoaderService }, { type: i0.ChangeDetectorRef }]; }
|
|
572
|
+
args: [{ selector: 'ipa-loader', template: "<div id=\"cover-spin\" *ngIf=\"loading && isLocal\">\r\n <div class=\"spinner\"></div>\r\n</div>\r\n", styles: ["#cover-spin{display:flex}\n"] }]
|
|
573
|
+
}], ctorParameters: function () { return [{ type: LoaderService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { isLocal: [{
|
|
574
|
+
type: Input
|
|
575
|
+
}] } });
|
|
562
576
|
|
|
563
577
|
class FileUploadComponent {
|
|
564
578
|
constructor(
|