ng-ipa-library 1.2.4 → 1.2.5
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 +17 -5
- package/fesm2015/ng-ipa-library.mjs +15 -3
- package/fesm2015/ng-ipa-library.mjs.map +1 -1
- package/fesm2020/ng-ipa-library.mjs +15 -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,32 @@ class LoaderComponent {
|
|
|
545
545
|
constructor(loaderService, cdr) {
|
|
546
546
|
this.loaderService = loaderService;
|
|
547
547
|
this.cdr = cdr;
|
|
548
|
+
this.isLocal = false;
|
|
548
549
|
}
|
|
549
550
|
ngAfterViewInit() {
|
|
550
551
|
this.loaderService.isLoading.subscribe((v) => {
|
|
551
552
|
this.loading = v;
|
|
553
|
+
const loader = document.getElementById('cover-spin');
|
|
554
|
+
if (loader) {
|
|
555
|
+
if (this.loading) {
|
|
556
|
+
loader.style.display = 'flex';
|
|
557
|
+
}
|
|
558
|
+
else {
|
|
559
|
+
loader.style.display = 'none';
|
|
560
|
+
}
|
|
561
|
+
}
|
|
552
562
|
this.cdr.detectChanges();
|
|
553
563
|
});
|
|
554
564
|
}
|
|
555
565
|
}
|
|
556
566
|
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"] }] });
|
|
567
|
+
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
568
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LoaderComponent, decorators: [{
|
|
559
569
|
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 }]; }
|
|
570
|
+
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"] }]
|
|
571
|
+
}], ctorParameters: function () { return [{ type: LoaderService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { isLocal: [{
|
|
572
|
+
type: Input
|
|
573
|
+
}] } });
|
|
562
574
|
|
|
563
575
|
class FileUploadComponent {
|
|
564
576
|
constructor(
|