ng-http-loader 17.0.0 → 17.2.0
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/LICENSE +1 -1
- package/README.md +10 -10
- package/fesm2022/ng-http-loader.mjs +71 -97
- package/fesm2022/ng-http-loader.mjs.map +1 -1
- package/lib/components/abstract.loader.directive.d.ts +2 -2
- package/lib/components/ng-http-loader.component.d.ts +14 -14
- package/lib/spinkits.d.ts +2 -2
- package/package.json +1 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ The HTTP interceptor listens to all HTTP requests and shows a spinner / loader i
|
|
|
30
30
|
## Angular Compatibility
|
|
31
31
|
|
|
32
32
|
| ng-http-loader | Angular |
|
|
33
|
-
|
|
33
|
+
|----------------|---------|
|
|
34
34
|
| >=0.1.0 <0.4.0 | ^4.3.0 |
|
|
35
35
|
| >=0.4.0 <1.0.0 | ^5.0.0 |
|
|
36
36
|
| >=1.0.0 <3.2.0 | ^6.0.0 |
|
|
@@ -38,15 +38,15 @@ The HTTP interceptor listens to all HTTP requests and shows a spinner / loader i
|
|
|
38
38
|
| >=6.0.0 <7.0.0 | ^8.0.0 |
|
|
39
39
|
| >=7.0.0 <8.0.0 | ^9.0.0 |
|
|
40
40
|
| >=8.0.0 <9.0.0 | ^10.0.0 |
|
|
41
|
-
| >=9.0.0
|
|
42
|
-
| >=10.0.0
|
|
43
|
-
| >=11.0.0
|
|
44
|
-
| >=12.0.0
|
|
45
|
-
| >=13.0.0
|
|
46
|
-
| >=14.0.0
|
|
47
|
-
| >=15.0.0
|
|
48
|
-
| >=16.0.0
|
|
49
|
-
| >=17.0.0
|
|
41
|
+
| >=9.0.0 | ^11.0.0 |
|
|
42
|
+
| >=10.0.0 | ^12.0.0 |
|
|
43
|
+
| >=11.0.0 | ^13.0.0 |
|
|
44
|
+
| >=12.0.0 | ^14.0.0 |
|
|
45
|
+
| >=13.0.0 | ^15.0.0 |
|
|
46
|
+
| >=14.0.0 | ^16.0.0 |
|
|
47
|
+
| >=15.0.0 | ^17.0.0 |
|
|
48
|
+
| >=16.0.0 | ^18.0.0 |
|
|
49
|
+
| >=17.0.0 | ^19.0.0 |
|
|
50
50
|
|
|
51
51
|
If you experience errors like below, **please double-check the version you use.**
|
|
52
52
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { input, Directive, Component, Injectable, model, inject } from '@angular/core';
|
|
3
|
+
import { NgStyle, NgComponentOutlet, NgIf, AsyncPipe } from '@angular/common';
|
|
3
4
|
import { ReplaySubject, partition, merge, timer } from 'rxjs';
|
|
4
5
|
import { switchMap, debounce, distinctUntilChanged, tap, finalize } from 'rxjs/operators';
|
|
5
|
-
import { NgStyle, NgComponentOutlet, NgIf, AsyncPipe } from '@angular/common';
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
8
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
@@ -13,15 +13,13 @@ import { NgStyle, NgComponentOutlet, NgIf, AsyncPipe } from '@angular/common';
|
|
|
13
13
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14
14
|
*/
|
|
15
15
|
class AbstractLoaderDirective {
|
|
16
|
-
backgroundColor;
|
|
17
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
18
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
16
|
+
backgroundColor = input();
|
|
17
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: AbstractLoaderDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
18
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.1.1", type: AbstractLoaderDirective, isStandalone: true, inputs: { backgroundColor: { classPropertyName: "backgroundColor", publicName: "backgroundColor", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
19
19
|
}
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: AbstractLoaderDirective, decorators: [{
|
|
21
21
|
type: Directive
|
|
22
|
-
}]
|
|
23
|
-
type: Input
|
|
24
|
-
}] } });
|
|
22
|
+
}] });
|
|
25
23
|
|
|
26
24
|
/*
|
|
27
25
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
@@ -32,12 +30,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
32
30
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
33
31
|
*/
|
|
34
32
|
class SkChasingDotsComponent extends AbstractLoaderDirective {
|
|
35
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
36
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
33
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkChasingDotsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
34
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.1", type: SkChasingDotsComponent, isStandalone: true, selector: "sk-chasing-dots", usesInheritance: true, ngImport: i0, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-chasing-dots\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-child sk-dot1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-dot2\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-chasing-dots{top:50%;margin:auto;width:40px;height:40px;position:relative;text-align:center;animation:sk-chasingDotsRotate 2s infinite linear}.sk-chasing-dots .sk-child{width:60%;height:60%;display:inline-block;position:absolute;top:0;border-radius:100%;animation:sk-chasingDotsBounce 2s infinite ease-in-out}.sk-chasing-dots .sk-dot2{top:auto;bottom:0;animation-delay:-1s}@keyframes sk-chasingDotsRotate{to{transform:rotate(360deg)}}@keyframes sk-chasingDotsBounce{0%,to{transform:scale(0)}50%{transform:scale(1)}}\n"] });
|
|
37
35
|
}
|
|
38
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
36
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkChasingDotsComponent, decorators: [{
|
|
39
37
|
type: Component,
|
|
40
|
-
args: [{ selector: 'sk-chasing-dots', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-chasing-dots\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-child sk-dot1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-child sk-dot2\" [style.background-color]='backgroundColor'></div>\n</div>\n", styles: [".sk-chasing-dots{top:50%;margin:auto;width:40px;height:40px;position:relative;text-align:center;animation:sk-chasingDotsRotate 2s infinite linear}.sk-chasing-dots .sk-child{width:60%;height:60%;display:inline-block;position:absolute;top:0;border-radius:100%;animation:sk-chasingDotsBounce 2s infinite ease-in-out}.sk-chasing-dots .sk-dot2{top:auto;bottom:0;animation-delay:-1s}@keyframes sk-chasingDotsRotate{to{transform:rotate(360deg)}}@keyframes sk-chasingDotsBounce{0%,to{transform:scale(0)}50%{transform:scale(1)}}\n"] }]
|
|
38
|
+
args: [{ selector: 'sk-chasing-dots', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-chasing-dots\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-child sk-dot1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-dot2\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-chasing-dots{top:50%;margin:auto;width:40px;height:40px;position:relative;text-align:center;animation:sk-chasingDotsRotate 2s infinite linear}.sk-chasing-dots .sk-child{width:60%;height:60%;display:inline-block;position:absolute;top:0;border-radius:100%;animation:sk-chasingDotsBounce 2s infinite ease-in-out}.sk-chasing-dots .sk-dot2{top:auto;bottom:0;animation-delay:-1s}@keyframes sk-chasingDotsRotate{to{transform:rotate(360deg)}}@keyframes sk-chasingDotsBounce{0%,to{transform:scale(0)}50%{transform:scale(1)}}\n"] }]
|
|
41
39
|
}] });
|
|
42
40
|
|
|
43
41
|
/*
|
|
@@ -49,12 +47,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
49
47
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
50
48
|
*/
|
|
51
49
|
class SkCubeGridComponent extends AbstractLoaderDirective {
|
|
52
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
53
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
50
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkCubeGridComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
51
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.1", type: SkCubeGridComponent, isStandalone: true, selector: "sk-cube-grid", usesInheritance: true, ngImport: i0, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-cube-grid\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube3\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube4\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube5\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube6\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube7\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube8\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube9\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-cube-grid{position:relative;top:50%;width:40px;height:40px;margin:auto}.sk-cube-grid .sk-cube{width:33.33%;height:33.33%;float:left;animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out}.sk-cube-grid .sk-cube1{animation-delay:.2s}.sk-cube-grid .sk-cube2{animation-delay:.3s}.sk-cube-grid .sk-cube3{animation-delay:.4s}.sk-cube-grid .sk-cube4{animation-delay:.1s}.sk-cube-grid .sk-cube5{animation-delay:.2s}.sk-cube-grid .sk-cube6{animation-delay:.3s}.sk-cube-grid .sk-cube7{animation-delay:0s}.sk-cube-grid .sk-cube8{animation-delay:.1s}.sk-cube-grid .sk-cube9{animation-delay:.2s}@keyframes sk-cubeGridScaleDelay{0%,70%,to{transform:scaleZ(1)}35%{transform:scale3D(0,0,1)}}\n"] });
|
|
54
52
|
}
|
|
55
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
53
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkCubeGridComponent, decorators: [{
|
|
56
54
|
type: Component,
|
|
57
|
-
args: [{ selector: 'sk-cube-grid', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-cube-grid\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube3\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube4\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube5\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube6\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube7\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube8\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube9\" [style.background-color]='backgroundColor'></div>\n</div>\n", styles: [".sk-cube-grid{position:relative;top:50%;width:40px;height:40px;margin:auto}.sk-cube-grid .sk-cube{width:33.33%;height:33.33%;float:left;animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out}.sk-cube-grid .sk-cube1{animation-delay:.2s}.sk-cube-grid .sk-cube2{animation-delay:.3s}.sk-cube-grid .sk-cube3{animation-delay:.4s}.sk-cube-grid .sk-cube4{animation-delay:.1s}.sk-cube-grid .sk-cube5{animation-delay:.2s}.sk-cube-grid .sk-cube6{animation-delay:.3s}.sk-cube-grid .sk-cube7{animation-delay:0s}.sk-cube-grid .sk-cube8{animation-delay:.1s}.sk-cube-grid .sk-cube9{animation-delay:.2s}@keyframes sk-cubeGridScaleDelay{0%,70%,to{transform:scaleZ(1)}35%{transform:scale3D(0,0,1)}}\n"] }]
|
|
55
|
+
args: [{ selector: 'sk-cube-grid', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-cube-grid\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube3\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube4\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube5\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube6\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube7\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube8\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube9\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-cube-grid{position:relative;top:50%;width:40px;height:40px;margin:auto}.sk-cube-grid .sk-cube{width:33.33%;height:33.33%;float:left;animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out}.sk-cube-grid .sk-cube1{animation-delay:.2s}.sk-cube-grid .sk-cube2{animation-delay:.3s}.sk-cube-grid .sk-cube3{animation-delay:.4s}.sk-cube-grid .sk-cube4{animation-delay:.1s}.sk-cube-grid .sk-cube5{animation-delay:.2s}.sk-cube-grid .sk-cube6{animation-delay:.3s}.sk-cube-grid .sk-cube7{animation-delay:0s}.sk-cube-grid .sk-cube8{animation-delay:.1s}.sk-cube-grid .sk-cube9{animation-delay:.2s}@keyframes sk-cubeGridScaleDelay{0%,70%,to{transform:scaleZ(1)}35%{transform:scale3D(0,0,1)}}\n"] }]
|
|
58
56
|
}] });
|
|
59
57
|
|
|
60
58
|
/*
|
|
@@ -66,12 +64,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
66
64
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
67
65
|
*/
|
|
68
66
|
class SkDoubleBounceComponent extends AbstractLoaderDirective {
|
|
69
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
70
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
67
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkDoubleBounceComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
68
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.1", type: SkDoubleBounceComponent, isStandalone: true, selector: "sk-double-bounce", usesInheritance: true, ngImport: i0, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-double-bounce\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-child sk-double-bounce1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-double-bounce2\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-double-bounce{top:50%;width:40px;height:40px;position:relative;margin:auto}.sk-double-bounce .sk-child{width:100%;height:100%;border-radius:50%;background-color:#333;opacity:.6;position:absolute;top:0;left:0;animation:sk-doubleBounce 2s infinite ease-in-out}.sk-double-bounce .sk-double-bounce2{animation-delay:-1s}@keyframes sk-doubleBounce{0%,to{transform:scale(0)}50%{transform:scale(1)}}\n"] });
|
|
71
69
|
}
|
|
72
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
70
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkDoubleBounceComponent, decorators: [{
|
|
73
71
|
type: Component,
|
|
74
|
-
args: [{ selector: 'sk-double-bounce', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-double-bounce\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-child sk-double-bounce1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-child sk-double-bounce2\" [style.background-color]='backgroundColor'></div>\n</div>\n", styles: [".sk-double-bounce{top:50%;width:40px;height:40px;position:relative;margin:auto}.sk-double-bounce .sk-child{width:100%;height:100%;border-radius:50%;background-color:#333;opacity:.6;position:absolute;top:0;left:0;animation:sk-doubleBounce 2s infinite ease-in-out}.sk-double-bounce .sk-double-bounce2{animation-delay:-1s}@keyframes sk-doubleBounce{0%,to{transform:scale(0)}50%{transform:scale(1)}}\n"] }]
|
|
72
|
+
args: [{ selector: 'sk-double-bounce', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-double-bounce\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-child sk-double-bounce1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-double-bounce2\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-double-bounce{top:50%;width:40px;height:40px;position:relative;margin:auto}.sk-double-bounce .sk-child{width:100%;height:100%;border-radius:50%;background-color:#333;opacity:.6;position:absolute;top:0;left:0;animation:sk-doubleBounce 2s infinite ease-in-out}.sk-double-bounce .sk-double-bounce2{animation-delay:-1s}@keyframes sk-doubleBounce{0%,to{transform:scale(0)}50%{transform:scale(1)}}\n"] }]
|
|
75
73
|
}] });
|
|
76
74
|
|
|
77
75
|
/*
|
|
@@ -83,12 +81,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
83
81
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
84
82
|
*/
|
|
85
83
|
class SkRotatingPlaneComponent extends AbstractLoaderDirective {
|
|
86
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
87
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
84
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkRotatingPlaneComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
85
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.1", type: SkRotatingPlaneComponent, isStandalone: true, selector: "sk-rotating-plane", usesInheritance: true, ngImport: i0, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-rotating-plane colored-parent\" [style.background-color]='backgroundColor()'></div>\n", styles: [".sk-rotating-plane{position:relative;top:50%;width:40px;height:40px;margin:auto;animation:sk-rotatePlane 1.2s infinite ease-in-out}@keyframes sk-rotatePlane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}to{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}\n"] });
|
|
88
86
|
}
|
|
89
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
87
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkRotatingPlaneComponent, decorators: [{
|
|
90
88
|
type: Component,
|
|
91
|
-
args: [{ selector: 'sk-rotating-plane', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-rotating-plane colored-parent\" [style.background-color]='backgroundColor'></div>\n", styles: [".sk-rotating-plane{position:relative;top:50%;width:40px;height:40px;margin:auto;animation:sk-rotatePlane 1.2s infinite ease-in-out}@keyframes sk-rotatePlane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}to{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}\n"] }]
|
|
89
|
+
args: [{ selector: 'sk-rotating-plane', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-rotating-plane colored-parent\" [style.background-color]='backgroundColor()'></div>\n", styles: [".sk-rotating-plane{position:relative;top:50%;width:40px;height:40px;margin:auto;animation:sk-rotatePlane 1.2s infinite ease-in-out}@keyframes sk-rotatePlane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}to{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}\n"] }]
|
|
92
90
|
}] });
|
|
93
91
|
|
|
94
92
|
/*
|
|
@@ -100,12 +98,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
100
98
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
101
99
|
*/
|
|
102
100
|
class SkSpinnerPulseComponent extends AbstractLoaderDirective {
|
|
103
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
104
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
101
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkSpinnerPulseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
102
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.1", type: SkSpinnerPulseComponent, isStandalone: true, selector: "sk-spinner-pulse", usesInheritance: true, ngImport: i0, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-spinner sk-spinner-pulse colored-parent\" [style.background-color]='backgroundColor()'></div>\n", styles: [".sk-spinner-pulse{position:relative;top:50%;width:40px;height:40px;margin:auto;border-radius:100%;animation:sk-pulseScaleOut 1s infinite ease-in-out}@keyframes sk-pulseScaleOut{0%{transform:scale(0)}to{transform:scale(1);opacity:0}}\n"] });
|
|
105
103
|
}
|
|
106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkSpinnerPulseComponent, decorators: [{
|
|
107
105
|
type: Component,
|
|
108
|
-
args: [{ selector: 'sk-spinner-pulse', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-spinner sk-spinner-pulse colored-parent\" [style.background-color]='backgroundColor'></div>\n", styles: [".sk-spinner-pulse{position:relative;top:50%;width:40px;height:40px;margin:auto;border-radius:100%;animation:sk-pulseScaleOut 1s infinite ease-in-out}@keyframes sk-pulseScaleOut{0%{transform:scale(0)}to{transform:scale(1);opacity:0}}\n"] }]
|
|
106
|
+
args: [{ selector: 'sk-spinner-pulse', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-spinner sk-spinner-pulse colored-parent\" [style.background-color]='backgroundColor()'></div>\n", styles: [".sk-spinner-pulse{position:relative;top:50%;width:40px;height:40px;margin:auto;border-radius:100%;animation:sk-pulseScaleOut 1s infinite ease-in-out}@keyframes sk-pulseScaleOut{0%{transform:scale(0)}to{transform:scale(1);opacity:0}}\n"] }]
|
|
109
107
|
}] });
|
|
110
108
|
|
|
111
109
|
/*
|
|
@@ -117,12 +115,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
117
115
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
118
116
|
*/
|
|
119
117
|
class SkThreeBounceComponent extends AbstractLoaderDirective {
|
|
120
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
121
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
118
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkThreeBounceComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
119
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.1", type: SkThreeBounceComponent, isStandalone: true, selector: "sk-three-bounce", usesInheritance: true, ngImport: i0, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-three-bounce\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-child sk-bounce1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-bounce2\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-bounce3\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-three-bounce{top:50%;position:relative;margin:auto;width:80px;text-align:center}.sk-three-bounce .sk-child{width:20px;height:20px;border-radius:100%;display:inline-block;animation:sk-three-bounce 1.4s ease-in-out 0s infinite both}.sk-three-bounce .sk-bounce1{animation-delay:-.32s}.sk-three-bounce .sk-bounce2{animation-delay:-.16s}@keyframes sk-three-bounce{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}\n"] });
|
|
122
120
|
}
|
|
123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkThreeBounceComponent, decorators: [{
|
|
124
122
|
type: Component,
|
|
125
|
-
args: [{ selector: 'sk-three-bounce', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-three-bounce\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-child sk-bounce1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-child sk-bounce2\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-child sk-bounce3\" [style.background-color]='backgroundColor'></div>\n</div>\n", styles: [".sk-three-bounce{top:50%;position:relative;margin:auto;width:80px;text-align:center}.sk-three-bounce .sk-child{width:20px;height:20px;border-radius:100%;display:inline-block;animation:sk-three-bounce 1.4s ease-in-out 0s infinite both}.sk-three-bounce .sk-bounce1{animation-delay:-.32s}.sk-three-bounce .sk-bounce2{animation-delay:-.16s}@keyframes sk-three-bounce{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}\n"] }]
|
|
123
|
+
args: [{ selector: 'sk-three-bounce', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-three-bounce\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-child sk-bounce1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-bounce2\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-bounce3\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-three-bounce{top:50%;position:relative;margin:auto;width:80px;text-align:center}.sk-three-bounce .sk-child{width:20px;height:20px;border-radius:100%;display:inline-block;animation:sk-three-bounce 1.4s ease-in-out 0s infinite both}.sk-three-bounce .sk-bounce1{animation-delay:-.32s}.sk-three-bounce .sk-bounce2{animation-delay:-.16s}@keyframes sk-three-bounce{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}\n"] }]
|
|
126
124
|
}] });
|
|
127
125
|
|
|
128
126
|
/*
|
|
@@ -134,12 +132,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
134
132
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
135
133
|
*/
|
|
136
134
|
class SkWanderingCubesComponent extends AbstractLoaderDirective {
|
|
137
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
138
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
135
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkWanderingCubesComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
136
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.1", type: SkWanderingCubesComponent, isStandalone: true, selector: "sk-wandering-cubes", usesInheritance: true, ngImport: i0, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-wandering-cubes\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-wandering-cubes{top:50%;margin:auto;width:40px;height:40px;position:relative}.sk-wandering-cubes .sk-cube{width:10px;height:10px;position:absolute;top:0;left:0;animation:sk-wanderingCube 1.8s ease-in-out -1.8s infinite both}.sk-wandering-cubes .sk-cube2{animation-delay:-.9s}@keyframes sk-wanderingCube{0%{transform:rotate(0)}25%{transform:translate(30px) rotate(-90deg) scale(.5)}50%{transform:translate(30px) translateY(30px) rotate(-179deg)}50.1%{transform:translate(30px) translateY(30px) rotate(-180deg)}75%{transform:translate(0) translateY(30px) rotate(-270deg) scale(.5)}to{transform:rotate(-360deg)}}\n"] });
|
|
139
137
|
}
|
|
140
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkWanderingCubesComponent, decorators: [{
|
|
141
139
|
type: Component,
|
|
142
|
-
args: [{ selector: 'sk-wandering-cubes', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-wandering-cubes\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor'></div>\n</div>\n", styles: [".sk-wandering-cubes{top:50%;margin:auto;width:40px;height:40px;position:relative}.sk-wandering-cubes .sk-cube{width:10px;height:10px;position:absolute;top:0;left:0;animation:sk-wanderingCube 1.8s ease-in-out -1.8s infinite both}.sk-wandering-cubes .sk-cube2{animation-delay:-.9s}@keyframes sk-wanderingCube{0%{transform:rotate(0)}25%{transform:translate(30px) rotate(-90deg) scale(.5)}50%{transform:translate(30px) translateY(30px) rotate(-179deg)}50.1%{transform:translate(30px) translateY(30px) rotate(-180deg)}75%{transform:translate(0) translateY(30px) rotate(-270deg) scale(.5)}to{transform:rotate(-360deg)}}\n"] }]
|
|
140
|
+
args: [{ selector: 'sk-wandering-cubes', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-wandering-cubes\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-wandering-cubes{top:50%;margin:auto;width:40px;height:40px;position:relative}.sk-wandering-cubes .sk-cube{width:10px;height:10px;position:absolute;top:0;left:0;animation:sk-wanderingCube 1.8s ease-in-out -1.8s infinite both}.sk-wandering-cubes .sk-cube2{animation-delay:-.9s}@keyframes sk-wanderingCube{0%{transform:rotate(0)}25%{transform:translate(30px) rotate(-90deg) scale(.5)}50%{transform:translate(30px) translateY(30px) rotate(-179deg)}50.1%{transform:translate(30px) translateY(30px) rotate(-180deg)}75%{transform:translate(0) translateY(30px) rotate(-270deg) scale(.5)}to{transform:rotate(-360deg)}}\n"] }]
|
|
143
141
|
}] });
|
|
144
142
|
|
|
145
143
|
/*
|
|
@@ -151,12 +149,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
151
149
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
152
150
|
*/
|
|
153
151
|
class SkWaveComponent extends AbstractLoaderDirective {
|
|
154
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
155
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
152
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkWaveComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
153
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.1", type: SkWaveComponent, isStandalone: true, selector: "sk-wave", usesInheritance: true, ngImport: i0, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n<div class=\"sk-wave\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-rect sk-rect1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect2\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect3\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect4\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect5\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-wave{position:relative;top:50%;margin:auto;width:50px;height:40px;text-align:center;font-size:10px}.sk-wave .sk-rect{float:left;margin-right:1px;height:100%;width:6px;display:inline-block;animation:sk-waveStretchDelay 1.2s infinite ease-in-out}.sk-wave .sk-rect1{animation-delay:-1.2s}.sk-wave .sk-rect2{animation-delay:-1.1s}.sk-wave .sk-rect3{animation-delay:-1s}.sk-wave .sk-rect4{animation-delay:-.9s}.sk-wave .sk-rect5{animation-delay:-.8s}@keyframes sk-waveStretchDelay{0%,40%,to{transform:scaleY(.4)}20%{transform:scaleY(1)}}\n"] });
|
|
156
154
|
}
|
|
157
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SkWaveComponent, decorators: [{
|
|
158
156
|
type: Component,
|
|
159
|
-
args: [{ selector: 'sk-wave', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n
|
|
157
|
+
args: [{ selector: 'sk-wave', standalone: true, template: "<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n<div class=\"sk-wave\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-rect sk-rect1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect2\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect3\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect4\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect5\" [style.background-color]='backgroundColor()'></div>\n</div>\n", styles: [".sk-wave{position:relative;top:50%;margin:auto;width:50px;height:40px;text-align:center;font-size:10px}.sk-wave .sk-rect{float:left;margin-right:1px;height:100%;width:6px;display:inline-block;animation:sk-waveStretchDelay 1.2s infinite ease-in-out}.sk-wave .sk-rect1{animation-delay:-1.2s}.sk-wave .sk-rect2{animation-delay:-1.1s}.sk-wave .sk-rect3{animation-delay:-1s}.sk-wave .sk-rect4{animation-delay:-.9s}.sk-wave .sk-rect5{animation-delay:-.8s}@keyframes sk-waveStretchDelay{0%,40%,to{transform:scaleY(.4)}20%{transform:scaleY(1)}}\n"] }]
|
|
160
158
|
}] });
|
|
161
159
|
|
|
162
160
|
/*
|
|
@@ -240,10 +238,10 @@ class PendingRequestsInterceptorConfigurer {
|
|
|
240
238
|
|| this.shouldBypassMethod(req)
|
|
241
239
|
|| this.shouldBypassHeader(req);
|
|
242
240
|
}
|
|
243
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
244
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
241
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: PendingRequestsInterceptorConfigurer, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
242
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: PendingRequestsInterceptorConfigurer, providedIn: 'root' });
|
|
245
243
|
}
|
|
246
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: PendingRequestsInterceptorConfigurer, decorators: [{
|
|
247
245
|
type: Injectable,
|
|
248
246
|
args: [{
|
|
249
247
|
providedIn: 'root'
|
|
@@ -275,10 +273,10 @@ class SpinnerVisibilityService {
|
|
|
275
273
|
this._visibility$.next(false);
|
|
276
274
|
this.pendingRequestsInterceptorConfigurer.forceByPass = false;
|
|
277
275
|
}
|
|
278
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
279
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
276
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SpinnerVisibilityService, deps: [{ token: PendingRequestsInterceptorConfigurer }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
277
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SpinnerVisibilityService, providedIn: 'root' });
|
|
280
278
|
}
|
|
281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
279
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: SpinnerVisibilityService, decorators: [{
|
|
282
280
|
type: Injectable,
|
|
283
281
|
args: [{
|
|
284
282
|
providedIn: 'root'
|
|
@@ -299,18 +297,18 @@ class NgHttpLoaderComponent {
|
|
|
299
297
|
spinkit = Spinkit;
|
|
300
298
|
isVisible$;
|
|
301
299
|
visibleUntil = Date.now();
|
|
302
|
-
backdrop = true;
|
|
303
|
-
backgroundColor;
|
|
304
|
-
debounceDelay = 0;
|
|
305
|
-
entryComponent;
|
|
306
|
-
extraDuration = 0;
|
|
307
|
-
filteredHeaders = [];
|
|
308
|
-
filteredMethods = [];
|
|
309
|
-
filteredUrlPatterns = [];
|
|
310
|
-
minDuration = 0;
|
|
311
|
-
opacity = '.7';
|
|
312
|
-
backdropBackgroundColor = '#f1f1f1';
|
|
313
|
-
spinner = Spinkit.skWave;
|
|
300
|
+
backdrop = input(true);
|
|
301
|
+
backgroundColor = input();
|
|
302
|
+
debounceDelay = input(0);
|
|
303
|
+
entryComponent = input(null);
|
|
304
|
+
extraDuration = input(0);
|
|
305
|
+
filteredHeaders = input([]);
|
|
306
|
+
filteredMethods = input([]);
|
|
307
|
+
filteredUrlPatterns = input([]);
|
|
308
|
+
minDuration = input(0);
|
|
309
|
+
opacity = input('.7');
|
|
310
|
+
backdropBackgroundColor = input('#f1f1f1');
|
|
311
|
+
spinner = model(Spinkit.skWave);
|
|
314
312
|
constructor(pendingRequestsInterceptorConfigurer, spinnerVisibility) {
|
|
315
313
|
this.pendingRequestsInterceptorConfigurer = pendingRequestsInterceptorConfigurer;
|
|
316
314
|
this.spinnerVisibility = spinnerVisibility;
|
|
@@ -323,12 +321,12 @@ class NgHttpLoaderComponent {
|
|
|
323
321
|
initIsvisibleObservable() {
|
|
324
322
|
const [showSpinner$, hideSpinner$] = partition(this.pendingRequestsInterceptorConfigurer.pendingRequestsStatus$, h => h);
|
|
325
323
|
this.isVisible$ = merge(this.pendingRequestsInterceptorConfigurer.pendingRequestsStatus$
|
|
326
|
-
.pipe(switchMap(() => showSpinner$.pipe(debounce(() => timer(this.debounceDelay))))), showSpinner$
|
|
324
|
+
.pipe(switchMap(() => showSpinner$.pipe(debounce(() => timer(this.debounceDelay()))))), showSpinner$
|
|
327
325
|
.pipe(switchMap(() => hideSpinner$.pipe(debounce(() => this.getVisibilityTimer$())))), this.spinnerVisibility.visibility$).pipe(distinctUntilChanged(), tap(h => this.updateExpirationDelay(h)));
|
|
328
326
|
}
|
|
329
327
|
nullifySpinnerIfEntryComponentIsDefined() {
|
|
330
|
-
if (this.entryComponent) {
|
|
331
|
-
this.spinner
|
|
328
|
+
if (this.entryComponent()) {
|
|
329
|
+
this.spinner.update(() => null);
|
|
332
330
|
}
|
|
333
331
|
}
|
|
334
332
|
initFilters() {
|
|
@@ -337,55 +335,31 @@ class NgHttpLoaderComponent {
|
|
|
337
335
|
this.initFilteredHeaders();
|
|
338
336
|
}
|
|
339
337
|
initFilteredUrlPatterns() {
|
|
340
|
-
if (!!this.filteredUrlPatterns.length) {
|
|
341
|
-
this.filteredUrlPatterns.forEach(e => this.pendingRequestsInterceptorConfigurer.filteredUrlPatterns.push(new RegExp(e)));
|
|
338
|
+
if (!!this.filteredUrlPatterns().length) {
|
|
339
|
+
this.filteredUrlPatterns().forEach(e => this.pendingRequestsInterceptorConfigurer.filteredUrlPatterns.push(new RegExp(e)));
|
|
342
340
|
}
|
|
343
341
|
}
|
|
344
342
|
initFilteredMethods() {
|
|
345
|
-
this.pendingRequestsInterceptorConfigurer.filteredMethods = this.filteredMethods;
|
|
343
|
+
this.pendingRequestsInterceptorConfigurer.filteredMethods = this.filteredMethods();
|
|
346
344
|
}
|
|
347
345
|
initFilteredHeaders() {
|
|
348
|
-
this.pendingRequestsInterceptorConfigurer.filteredHeaders = this.filteredHeaders;
|
|
346
|
+
this.pendingRequestsInterceptorConfigurer.filteredHeaders = this.filteredHeaders();
|
|
349
347
|
}
|
|
350
348
|
updateExpirationDelay(showSpinner) {
|
|
351
349
|
if (showSpinner) {
|
|
352
|
-
this.visibleUntil = Date.now() + this.minDuration;
|
|
350
|
+
this.visibleUntil = Date.now() + this.minDuration();
|
|
353
351
|
}
|
|
354
352
|
}
|
|
355
353
|
getVisibilityTimer$() {
|
|
356
|
-
return timer(Math.max(this.extraDuration, this.visibleUntil - Date.now()));
|
|
354
|
+
return timer(Math.max(this.extraDuration(), this.visibleUntil - Date.now()));
|
|
357
355
|
}
|
|
358
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
359
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
356
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: NgHttpLoaderComponent, deps: [{ token: PendingRequestsInterceptorConfigurer }, { token: SpinnerVisibilityService }], target: i0.ɵɵFactoryTarget.Component });
|
|
357
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.1.1", type: NgHttpLoaderComponent, isStandalone: true, selector: "ng-http-loader", inputs: { backdrop: { classPropertyName: "backdrop", publicName: "backdrop", isSignal: true, isRequired: false, transformFunction: null }, backgroundColor: { classPropertyName: "backgroundColor", publicName: "backgroundColor", isSignal: true, isRequired: false, transformFunction: null }, debounceDelay: { classPropertyName: "debounceDelay", publicName: "debounceDelay", isSignal: true, isRequired: false, transformFunction: null }, entryComponent: { classPropertyName: "entryComponent", publicName: "entryComponent", isSignal: true, isRequired: false, transformFunction: null }, extraDuration: { classPropertyName: "extraDuration", publicName: "extraDuration", isSignal: true, isRequired: false, transformFunction: null }, filteredHeaders: { classPropertyName: "filteredHeaders", publicName: "filteredHeaders", isSignal: true, isRequired: false, transformFunction: null }, filteredMethods: { classPropertyName: "filteredMethods", publicName: "filteredMethods", isSignal: true, isRequired: false, transformFunction: null }, filteredUrlPatterns: { classPropertyName: "filteredUrlPatterns", publicName: "filteredUrlPatterns", isSignal: true, isRequired: false, transformFunction: null }, minDuration: { classPropertyName: "minDuration", publicName: "minDuration", isSignal: true, isRequired: false, transformFunction: null }, opacity: { classPropertyName: "opacity", publicName: "opacity", isSignal: true, isRequired: false, transformFunction: null }, backdropBackgroundColor: { classPropertyName: "backdropBackgroundColor", publicName: "backdropBackgroundColor", isSignal: true, isRequired: false, transformFunction: null }, spinner: { classPropertyName: "spinner", publicName: "spinner", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { spinner: "spinnerChange" }, ngImport: i0, template: "<div id=\"spinner\"\n *ngIf=\"isVisible$ | async\"\n [class.backdrop]=\"backdrop()\"\n [style.opacity]=\"opacity()\"\n [ngStyle]=\"{'background-color': backdrop() ? backdropBackgroundColor() : 'transparent'}\">\n\n <ng-container *ngComponentOutlet=\"entryComponent()\"></ng-container>\n\n <sk-cube-grid\n *ngIf=\"spinner() === spinkit.skCubeGrid\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-cube-grid>\n\n <sk-chasing-dots\n *ngIf=\"spinner() === spinkit.skChasingDots\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-chasing-dots>\n\n <sk-double-bounce\n *ngIf=\"spinner() === spinkit.skDoubleBounce\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-double-bounce>\n\n <sk-rotating-plane\n *ngIf=\"spinner() === spinkit.skRotatingPlane\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-rotating-plane>\n\n <sk-spinner-pulse\n *ngIf=\"spinner() === spinkit.skSpinnerPulse\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-spinner-pulse>\n\n <sk-three-bounce\n *ngIf=\"spinner() === spinkit.skThreeBounce\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-three-bounce>\n\n <sk-wandering-cubes\n *ngIf=\"spinner() === spinkit.skWanderingCubes\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-wandering-cubes>\n\n <sk-wave\n *ngIf=\"spinner() === spinkit.skWave\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-wave>\n\n</div>\n\n", styles: ["#spinner{top:50%;left:50%;transform:translate(-50%,-50%);position:fixed;z-index:9999}#spinner.backdrop{top:0;left:0;height:100%;width:100%;display:flex;align-items:center;justify-content:center;transform:none}::ng-deep .colored-parent,::ng-deep .colored>div{background-color:#333}\n"], dependencies: [{ kind: "component", type: SkCubeGridComponent, selector: "sk-cube-grid" }, { kind: "component", type: SkChasingDotsComponent, selector: "sk-chasing-dots" }, { kind: "component", type: SkDoubleBounceComponent, selector: "sk-double-bounce" }, { kind: "component", type: SkRotatingPlaneComponent, selector: "sk-rotating-plane" }, { kind: "component", type: SkSpinnerPulseComponent, selector: "sk-spinner-pulse" }, { kind: "component", type: SkThreeBounceComponent, selector: "sk-three-bounce" }, { kind: "component", type: SkWanderingCubesComponent, selector: "sk-wandering-cubes" }, { kind: "component", type: SkWaveComponent, selector: "sk-wave" }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"], exportAs: ["ngComponentOutlet"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] });
|
|
360
358
|
}
|
|
361
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
359
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImport: i0, type: NgHttpLoaderComponent, decorators: [{
|
|
362
360
|
type: Component,
|
|
363
|
-
args: [{ selector: 'ng-http-loader', standalone: true, imports: [SPINKIT_COMPONENTS, NgStyle, NgComponentOutlet, NgIf, AsyncPipe], template: "<div id=\"spinner\"\n *ngIf=\"isVisible$ | async\"\n [class.backdrop]=\"backdrop\"\n [style.opacity]=\"opacity\"\n [ngStyle]=\"{'background-color': backdrop ? backdropBackgroundColor : 'transparent'}\">\n\n <ng-container *ngComponentOutlet=\"entryComponent\"></ng-container>\n\n <sk-cube-grid\n *ngIf=\"spinner === spinkit.skCubeGrid\"\n [backgroundColor]=\"backgroundColor\">\n </sk-cube-grid>\n\n <sk-chasing-dots\n *ngIf=\"spinner === spinkit.skChasingDots\"\n [backgroundColor]=\"backgroundColor\">\n </sk-chasing-dots>\n\n <sk-double-bounce\n *ngIf=\"spinner === spinkit.skDoubleBounce\"\n [backgroundColor]=\"backgroundColor\">\n </sk-double-bounce>\n\n <sk-rotating-plane\n *ngIf=\"spinner === spinkit.skRotatingPlane\"\n [backgroundColor]=\"backgroundColor\">\n </sk-rotating-plane>\n\n <sk-spinner-pulse\n *ngIf=\"spinner === spinkit.skSpinnerPulse\"\n [backgroundColor]=\"backgroundColor\">\n </sk-spinner-pulse>\n\n <sk-three-bounce\n *ngIf=\"spinner === spinkit.skThreeBounce\"\n [backgroundColor]=\"backgroundColor\">\n </sk-three-bounce>\n\n <sk-wandering-cubes\n *ngIf=\"spinner === spinkit.skWanderingCubes\"\n [backgroundColor]=\"backgroundColor\">\n </sk-wandering-cubes>\n\n <sk-wave\n *ngIf=\"spinner === spinkit.skWave\"\n [backgroundColor]=\"backgroundColor\">\n </sk-wave>\n\n</div>\n\n", styles: ["#spinner{top:50%;left:50%;transform:translate(-50%,-50%);position:fixed;z-index:9999}#spinner.backdrop{top:0;left:0;height:100%;width:100%;display:flex;align-items:center;justify-content:center;transform:none}::ng-deep .colored-parent,::ng-deep .colored>div{background-color:#333}\n"] }]
|
|
364
|
-
}], ctorParameters: () => [{ type: PendingRequestsInterceptorConfigurer }, { type: SpinnerVisibilityService }]
|
|
365
|
-
type: Input
|
|
366
|
-
}], backgroundColor: [{
|
|
367
|
-
type: Input
|
|
368
|
-
}], debounceDelay: [{
|
|
369
|
-
type: Input
|
|
370
|
-
}], entryComponent: [{
|
|
371
|
-
type: Input
|
|
372
|
-
}], extraDuration: [{
|
|
373
|
-
type: Input
|
|
374
|
-
}], filteredHeaders: [{
|
|
375
|
-
type: Input
|
|
376
|
-
}], filteredMethods: [{
|
|
377
|
-
type: Input
|
|
378
|
-
}], filteredUrlPatterns: [{
|
|
379
|
-
type: Input
|
|
380
|
-
}], minDuration: [{
|
|
381
|
-
type: Input
|
|
382
|
-
}], opacity: [{
|
|
383
|
-
type: Input
|
|
384
|
-
}], backdropBackgroundColor: [{
|
|
385
|
-
type: Input
|
|
386
|
-
}], spinner: [{
|
|
387
|
-
type: Input
|
|
388
|
-
}] } });
|
|
361
|
+
args: [{ selector: 'ng-http-loader', standalone: true, imports: [SPINKIT_COMPONENTS, NgStyle, NgComponentOutlet, NgIf, AsyncPipe], template: "<div id=\"spinner\"\n *ngIf=\"isVisible$ | async\"\n [class.backdrop]=\"backdrop()\"\n [style.opacity]=\"opacity()\"\n [ngStyle]=\"{'background-color': backdrop() ? backdropBackgroundColor() : 'transparent'}\">\n\n <ng-container *ngComponentOutlet=\"entryComponent()\"></ng-container>\n\n <sk-cube-grid\n *ngIf=\"spinner() === spinkit.skCubeGrid\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-cube-grid>\n\n <sk-chasing-dots\n *ngIf=\"spinner() === spinkit.skChasingDots\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-chasing-dots>\n\n <sk-double-bounce\n *ngIf=\"spinner() === spinkit.skDoubleBounce\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-double-bounce>\n\n <sk-rotating-plane\n *ngIf=\"spinner() === spinkit.skRotatingPlane\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-rotating-plane>\n\n <sk-spinner-pulse\n *ngIf=\"spinner() === spinkit.skSpinnerPulse\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-spinner-pulse>\n\n <sk-three-bounce\n *ngIf=\"spinner() === spinkit.skThreeBounce\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-three-bounce>\n\n <sk-wandering-cubes\n *ngIf=\"spinner() === spinkit.skWanderingCubes\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-wandering-cubes>\n\n <sk-wave\n *ngIf=\"spinner() === spinkit.skWave\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-wave>\n\n</div>\n\n", styles: ["#spinner{top:50%;left:50%;transform:translate(-50%,-50%);position:fixed;z-index:9999}#spinner.backdrop{top:0;left:0;height:100%;width:100%;display:flex;align-items:center;justify-content:center;transform:none}::ng-deep .colored-parent,::ng-deep .colored>div{background-color:#333}\n"] }]
|
|
362
|
+
}], ctorParameters: () => [{ type: PendingRequestsInterceptorConfigurer }, { type: SpinnerVisibilityService }] });
|
|
389
363
|
|
|
390
364
|
/*
|
|
391
365
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ng-http-loader.mjs","sources":["../../src/lib/components/abstract.loader.directive.ts","../../src/lib/components/sk-chasing-dots/sk-chasing-dots.component.ts","../../src/lib/components/sk-chasing-dots/sk-chasing-dots.component.html","../../src/lib/components/sk-cube-grid/sk-cube-grid.component.ts","../../src/lib/components/sk-cube-grid/sk-cube-grid.component.html","../../src/lib/components/sk-double-bounce/sk-double-bounce.component.ts","../../src/lib/components/sk-double-bounce/sk-double-bounce.component.html","../../src/lib/components/sk-rotating-plane/sk-rotating-plane.component.ts","../../src/lib/components/sk-rotating-plane/sk-rotating-plane.component.html","../../src/lib/components/sk-spinner-pulse/sk-spinner-pulse.component.ts","../../src/lib/components/sk-spinner-pulse/sk-spinner-pulse.component.html","../../src/lib/components/sk-three-bounce/sk-three-bounce.component.ts","../../src/lib/components/sk-three-bounce/sk-three-bounce.component.html","../../src/lib/components/sk-wandering-cubes/sk-wandering-cubes.component.ts","../../src/lib/components/sk-wandering-cubes/sk-wandering-cubes.component.html","../../src/lib/components/sk-wave/sk-wave.component.ts","../../src/lib/components/sk-wave/sk-wave.component.html","../../src/lib/spinkits.ts","../../src/lib/services/pending-requests-interceptor-configurer.service.ts","../../src/lib/services/spinner-visibility.service.ts","../../src/lib/components/ng-http-loader.component.ts","../../src/lib/components/ng-http-loader.component.html","../../src/lib/services/pending-requests-interceptor.ts","../../src/public_api.ts","../../src/ng-http-loader.ts"],"sourcesContent":["/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Input, Directive } from '@angular/core';\n\n@Directive()\nexport abstract class AbstractLoaderDirective {\n\n @Input() backgroundColor!: string;\n}\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-chasing-dots',\n standalone: true,\n templateUrl: './sk-chasing-dots.component.html',\n styleUrls: ['./sk-chasing-dots.component.scss']\n})\nexport class SkChasingDotsComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-chasing-dots\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-child sk-dot1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-child sk-dot2\" [style.background-color]='backgroundColor'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-cube-grid',\n standalone: true,\n templateUrl: './sk-cube-grid.component.html',\n styleUrls: ['./sk-cube-grid.component.scss']\n})\nexport class SkCubeGridComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-cube-grid\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube3\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube4\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube5\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube6\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube7\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube8\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube9\" [style.background-color]='backgroundColor'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-double-bounce',\n standalone: true,\n templateUrl: './sk-double-bounce.component.html',\n styleUrls: ['./sk-double-bounce.component.scss']\n})\nexport class SkDoubleBounceComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-double-bounce\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-child sk-double-bounce1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-child sk-double-bounce2\" [style.background-color]='backgroundColor'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-rotating-plane',\n standalone: true,\n templateUrl: './sk-rotating-plane.component.html',\n styleUrls: ['./sk-rotating-plane.component.scss']\n})\nexport class SkRotatingPlaneComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-rotating-plane colored-parent\" [style.background-color]='backgroundColor'></div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-spinner-pulse',\n standalone: true,\n templateUrl: './sk-spinner-pulse.component.html',\n styleUrls: ['./sk-spinner-pulse.component.scss']\n})\nexport class SkSpinnerPulseComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-spinner sk-spinner-pulse colored-parent\" [style.background-color]='backgroundColor'></div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-three-bounce',\n standalone: true,\n templateUrl: './sk-three-bounce.component.html',\n styleUrls: ['./sk-three-bounce.component.scss']\n})\nexport class SkThreeBounceComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-three-bounce\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-child sk-bounce1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-child sk-bounce2\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-child sk-bounce3\" [style.background-color]='backgroundColor'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-wandering-cubes',\n standalone: true,\n templateUrl: './sk-wandering-cubes.component.html',\n styleUrls: ['./sk-wandering-cubes.component.scss']\n})\nexport class SkWanderingCubesComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-wandering-cubes\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-wave',\n standalone: true,\n templateUrl: './sk-wave.component.html',\n styleUrls: ['./sk-wave.component.scss']\n})\nexport class SkWaveComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-wave\" [class.colored]=\"!backgroundColor\">\n <div class=\"sk-rect sk-rect1\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-rect sk-rect2\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-rect sk-rect3\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-rect sk-rect4\" [style.background-color]='backgroundColor'></div>\n <div class=\"sk-rect sk-rect5\" [style.background-color]='backgroundColor'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { SkChasingDotsComponent } from './components/sk-chasing-dots/sk-chasing-dots.component';\nimport { SkCubeGridComponent } from './components/sk-cube-grid/sk-cube-grid.component';\nimport { SkDoubleBounceComponent } from './components/sk-double-bounce/sk-double-bounce.component';\nimport { SkRotatingPlaneComponent } from './components/sk-rotating-plane/sk-rotating-plane.component';\nimport { SkSpinnerPulseComponent } from './components/sk-spinner-pulse/sk-spinner-pulse.component';\nimport { SkThreeBounceComponent } from './components/sk-three-bounce/sk-three-bounce.component';\nimport { SkWanderingCubesComponent } from './components/sk-wandering-cubes/sk-wandering-cubes.component';\nimport { SkWaveComponent } from './components/sk-wave/sk-wave.component';\n\nexport const Spinkit = {\n skChasingDots: 'sk-chasing-dots',\n skCubeGrid: 'sk-cube-grid',\n skDoubleBounce: 'sk-double-bounce',\n skRotatingPlane: 'sk-rotationg-plane',\n skSpinnerPulse: 'sk-spinner-pulse',\n skThreeBounce: 'sk-three-bounce',\n skWanderingCubes: 'sk-wandering-cubes',\n skWave: 'sk-wave'\n};\n\nexport const SPINKIT_COMPONENTS = [\n SkCubeGridComponent,\n SkChasingDotsComponent,\n SkDoubleBounceComponent,\n SkRotatingPlaneComponent,\n SkSpinnerPulseComponent,\n SkThreeBounceComponent,\n SkWanderingCubesComponent,\n SkWaveComponent,\n];\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { HttpRequest } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable, ReplaySubject } from 'rxjs';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PendingRequestsInterceptorConfigurer {\n\n private _pendingRequests = 0;\n private _pendingRequestsStatus$ = new ReplaySubject<boolean>(1);\n private _filteredUrlPatterns: RegExp[] = [];\n private _filteredMethods: string[] = [];\n private _filteredHeaders: string[] = [];\n private _forceByPass = false;\n\n get pendingRequestsStatus$(): Observable<boolean> {\n return this._pendingRequestsStatus$.asObservable();\n }\n\n get pendingRequestsStatusSubject$(): ReplaySubject<boolean> {\n return this._pendingRequestsStatus$;\n }\n\n get pendingRequests(): number {\n return this._pendingRequests;\n }\n\n set pendingRequests(pendingRequests: number) {\n this._pendingRequests = pendingRequests;\n }\n\n get filteredUrlPatterns(): RegExp[] {\n return this._filteredUrlPatterns;\n }\n\n set filteredMethods(httpMethods: string[]) {\n this._filteredMethods = httpMethods;\n }\n\n set filteredHeaders(value: string[]) {\n this._filteredHeaders = value;\n }\n\n set forceByPass(value: boolean) {\n this._forceByPass = value;\n }\n\n shouldBypassUrl(url: string): boolean {\n return this._filteredUrlPatterns.some(e => {\n return e.test(url);\n });\n }\n\n shouldBypassMethod(req: HttpRequest<unknown>): boolean {\n return this._filteredMethods.some(e => {\n return e.toUpperCase() === req.method.toUpperCase();\n });\n }\n\n shouldBypassHeader(req: HttpRequest<unknown>): boolean {\n return this._filteredHeaders.some(e => {\n return req.headers.has(e);\n });\n }\n\n shouldBypass(req: HttpRequest<unknown>): boolean {\n return this._forceByPass\n || this.shouldBypassUrl(req.urlWithParams)\n || this.shouldBypassMethod(req)\n || this.shouldBypassHeader(req);\n }\n}\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Injectable } from '@angular/core';\nimport { Observable, ReplaySubject } from 'rxjs';\nimport { PendingRequestsInterceptorConfigurer } from \"./pending-requests-interceptor-configurer.service\";\n\n@Injectable({\n providedIn: 'root'\n})\nexport class SpinnerVisibilityService {\n\n private _visibility$ = new ReplaySubject<boolean>(1);\n\n constructor(private pendingRequestsInterceptorConfigurer: PendingRequestsInterceptorConfigurer) {\n }\n\n get visibility$(): Observable<boolean> {\n return this._visibility$.asObservable();\n }\n\n show(): void {\n this.pendingRequestsInterceptorConfigurer.forceByPass = true;\n this._visibility$.next(true);\n }\n\n hide(): void {\n this._visibility$.next(false);\n this.pendingRequestsInterceptorConfigurer.forceByPass = false;\n }\n}\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component, Input, OnInit, Type } from '@angular/core';\nimport { merge, Observable, partition, timer } from 'rxjs';\nimport { debounce, distinctUntilChanged, switchMap, tap } from 'rxjs/operators';\nimport { SpinnerVisibilityService } from '../services/spinner-visibility.service';\nimport { Spinkit, SPINKIT_COMPONENTS } from '../spinkits';\nimport { AsyncPipe, NgComponentOutlet, NgIf, NgStyle } from \"@angular/common\";\nimport { PendingRequestsInterceptorConfigurer } from \"../services/pending-requests-interceptor-configurer.service\";\n\n@Component({\n selector: 'ng-http-loader',\n standalone: true,\n templateUrl: './ng-http-loader.component.html',\n styleUrls: ['./ng-http-loader.component.scss'],\n imports: [SPINKIT_COMPONENTS, NgStyle, NgComponentOutlet, NgIf, AsyncPipe]\n})\nexport class NgHttpLoaderComponent implements OnInit {\n\n spinkit = Spinkit;\n isVisible$!: Observable<boolean>;\n visibleUntil = Date.now();\n\n @Input() backdrop = true;\n @Input() backgroundColor!: string;\n @Input() debounceDelay = 0;\n @Input() entryComponent!: Type<unknown> | null;\n @Input() extraDuration = 0;\n @Input() filteredHeaders: string[] = [];\n @Input() filteredMethods: string[] = [];\n @Input() filteredUrlPatterns: string[] = [];\n @Input() minDuration = 0;\n @Input() opacity = '.7';\n @Input() backdropBackgroundColor = '#f1f1f1';\n @Input() spinner: string | null = Spinkit.skWave;\n\n constructor(private pendingRequestsInterceptorConfigurer: PendingRequestsInterceptorConfigurer, private spinnerVisibility: SpinnerVisibilityService) {\n }\n\n ngOnInit(): void {\n this.initIsvisibleObservable();\n this.nullifySpinnerIfEntryComponentIsDefined();\n this.initFilters();\n }\n\n private initIsvisibleObservable(): void {\n const [showSpinner$, hideSpinner$] = partition(this.pendingRequestsInterceptorConfigurer.pendingRequestsStatus$, h => h);\n\n this.isVisible$ = merge(\n this.pendingRequestsInterceptorConfigurer.pendingRequestsStatus$\n .pipe(switchMap(() => showSpinner$.pipe(debounce(() => timer(this.debounceDelay))))),\n showSpinner$\n .pipe(switchMap(() => hideSpinner$.pipe(debounce(() => this.getVisibilityTimer$())))),\n this.spinnerVisibility.visibility$\n ).pipe(\n distinctUntilChanged(),\n tap(h => this.updateExpirationDelay(h))\n );\n }\n\n private nullifySpinnerIfEntryComponentIsDefined(): void {\n if (this.entryComponent) {\n this.spinner = null;\n }\n }\n\n private initFilters(): void {\n this.initFilteredUrlPatterns();\n this.initFilteredMethods();\n this.initFilteredHeaders();\n }\n\n private initFilteredUrlPatterns(): void {\n if (!!this.filteredUrlPatterns.length) {\n this.filteredUrlPatterns.forEach(e =>\n this.pendingRequestsInterceptorConfigurer.filteredUrlPatterns.push(new RegExp(e))\n );\n }\n }\n\n private initFilteredMethods(): void {\n this.pendingRequestsInterceptorConfigurer.filteredMethods = this.filteredMethods;\n }\n\n private initFilteredHeaders(): void {\n this.pendingRequestsInterceptorConfigurer.filteredHeaders = this.filteredHeaders;\n }\n\n private updateExpirationDelay(showSpinner: boolean): void {\n if (showSpinner) {\n this.visibleUntil = Date.now() + this.minDuration;\n }\n }\n\n private getVisibilityTimer$(): Observable<number> {\n return timer(Math.max(this.extraDuration, this.visibleUntil - Date.now()));\n }\n}\n","<div id=\"spinner\"\n *ngIf=\"isVisible$ | async\"\n [class.backdrop]=\"backdrop\"\n [style.opacity]=\"opacity\"\n [ngStyle]=\"{'background-color': backdrop ? backdropBackgroundColor : 'transparent'}\">\n\n <ng-container *ngComponentOutlet=\"entryComponent\"></ng-container>\n\n <sk-cube-grid\n *ngIf=\"spinner === spinkit.skCubeGrid\"\n [backgroundColor]=\"backgroundColor\">\n </sk-cube-grid>\n\n <sk-chasing-dots\n *ngIf=\"spinner === spinkit.skChasingDots\"\n [backgroundColor]=\"backgroundColor\">\n </sk-chasing-dots>\n\n <sk-double-bounce\n *ngIf=\"spinner === spinkit.skDoubleBounce\"\n [backgroundColor]=\"backgroundColor\">\n </sk-double-bounce>\n\n <sk-rotating-plane\n *ngIf=\"spinner === spinkit.skRotatingPlane\"\n [backgroundColor]=\"backgroundColor\">\n </sk-rotating-plane>\n\n <sk-spinner-pulse\n *ngIf=\"spinner === spinkit.skSpinnerPulse\"\n [backgroundColor]=\"backgroundColor\">\n </sk-spinner-pulse>\n\n <sk-three-bounce\n *ngIf=\"spinner === spinkit.skThreeBounce\"\n [backgroundColor]=\"backgroundColor\">\n </sk-three-bounce>\n\n <sk-wandering-cubes\n *ngIf=\"spinner === spinkit.skWanderingCubes\"\n [backgroundColor]=\"backgroundColor\">\n </sk-wandering-cubes>\n\n <sk-wave\n *ngIf=\"spinner === spinkit.skWave\"\n [backgroundColor]=\"backgroundColor\">\n </sk-wave>\n\n</div>\n\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { HttpEvent, HttpHandlerFn, HttpRequest } from '@angular/common/http';\nimport { inject } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { finalize } from 'rxjs/operators';\nimport { PendingRequestsInterceptorConfigurer } from \"./pending-requests-interceptor-configurer.service\";\n\nexport function pendingRequestsInterceptor$(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>> {\n const pendingRequestsInterceptorConfigurer = inject(PendingRequestsInterceptorConfigurer);\n const shouldBypass = pendingRequestsInterceptorConfigurer.shouldBypass(req);\n\n if (!shouldBypass) {\n pendingRequestsInterceptorConfigurer.pendingRequests++;\n\n if (1 === pendingRequestsInterceptorConfigurer.pendingRequests) {\n pendingRequestsInterceptorConfigurer.pendingRequestsStatusSubject$.next(true);\n }\n }\n\n return next(req).pipe(\n finalize(() => {\n if (!shouldBypass) {\n pendingRequestsInterceptorConfigurer.pendingRequests--;\n\n if (0 === pendingRequestsInterceptorConfigurer.pendingRequests) {\n pendingRequestsInterceptorConfigurer.pendingRequestsStatusSubject$.next(false);\n }\n }\n })\n );\n}\n","/*\n * Public API Surface of ng-http-loader\n */\n\nexport * from './lib/components/sk-chasing-dots/sk-chasing-dots.component';\nexport * from './lib/components/sk-cube-grid/sk-cube-grid.component';\nexport * from './lib/components/sk-double-bounce/sk-double-bounce.component';\nexport * from './lib/components/sk-rotating-plane/sk-rotating-plane.component';\nexport * from './lib/components/sk-spinner-pulse/sk-spinner-pulse.component';\nexport * from './lib/components/sk-three-bounce/sk-three-bounce.component';\nexport * from './lib/components/sk-wandering-cubes/sk-wandering-cubes.component';\nexport * from './lib/components/sk-wave/sk-wave.component';\nexport * from './lib/components/ng-http-loader.component';\nexport * from './lib/components/abstract.loader.directive';\n\nexport * from './lib/services/pending-requests-interceptor';\nexport * from './lib/services/pending-requests-interceptor-configurer.service';\n\nexport * from './lib/services/spinner-visibility.service';\n\nexport * from './lib/spinkits';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["i1.PendingRequestsInterceptorConfigurer","i2.SpinnerVisibilityService","i3.SkCubeGridComponent","i4.SkChasingDotsComponent","i5.SkDoubleBounceComponent","i6.SkRotatingPlaneComponent","i7.SkSpinnerPulseComponent","i8.SkThreeBounceComponent","i9.SkWanderingCubesComponent","i10.SkWaveComponent"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ng-http-loader.mjs","sources":["../../src/lib/components/abstract.loader.directive.ts","../../src/lib/components/sk-chasing-dots/sk-chasing-dots.component.ts","../../src/lib/components/sk-chasing-dots/sk-chasing-dots.component.html","../../src/lib/components/sk-cube-grid/sk-cube-grid.component.ts","../../src/lib/components/sk-cube-grid/sk-cube-grid.component.html","../../src/lib/components/sk-double-bounce/sk-double-bounce.component.ts","../../src/lib/components/sk-double-bounce/sk-double-bounce.component.html","../../src/lib/components/sk-rotating-plane/sk-rotating-plane.component.ts","../../src/lib/components/sk-rotating-plane/sk-rotating-plane.component.html","../../src/lib/components/sk-spinner-pulse/sk-spinner-pulse.component.ts","../../src/lib/components/sk-spinner-pulse/sk-spinner-pulse.component.html","../../src/lib/components/sk-three-bounce/sk-three-bounce.component.ts","../../src/lib/components/sk-three-bounce/sk-three-bounce.component.html","../../src/lib/components/sk-wandering-cubes/sk-wandering-cubes.component.ts","../../src/lib/components/sk-wandering-cubes/sk-wandering-cubes.component.html","../../src/lib/components/sk-wave/sk-wave.component.ts","../../src/lib/components/sk-wave/sk-wave.component.html","../../src/lib/spinkits.ts","../../src/lib/services/pending-requests-interceptor-configurer.service.ts","../../src/lib/services/spinner-visibility.service.ts","../../src/lib/components/ng-http-loader.component.ts","../../src/lib/components/ng-http-loader.component.html","../../src/lib/services/pending-requests-interceptor.ts","../../src/public_api.ts","../../src/ng-http-loader.ts"],"sourcesContent":["/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Directive, input } from '@angular/core';\n\n@Directive()\nexport abstract class AbstractLoaderDirective {\n\n readonly backgroundColor = input<string>();\n}\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-chasing-dots',\n standalone: true,\n templateUrl: './sk-chasing-dots.component.html',\n styleUrls: ['./sk-chasing-dots.component.scss']\n})\nexport class SkChasingDotsComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-chasing-dots\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-child sk-dot1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-dot2\" [style.background-color]='backgroundColor()'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-cube-grid',\n standalone: true,\n templateUrl: './sk-cube-grid.component.html',\n styleUrls: ['./sk-cube-grid.component.scss']\n})\nexport class SkCubeGridComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-cube-grid\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube3\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube4\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube5\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube6\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube7\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube8\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube9\" [style.background-color]='backgroundColor()'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-double-bounce',\n standalone: true,\n templateUrl: './sk-double-bounce.component.html',\n styleUrls: ['./sk-double-bounce.component.scss']\n})\nexport class SkDoubleBounceComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-double-bounce\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-child sk-double-bounce1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-double-bounce2\" [style.background-color]='backgroundColor()'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-rotating-plane',\n standalone: true,\n templateUrl: './sk-rotating-plane.component.html',\n styleUrls: ['./sk-rotating-plane.component.scss']\n})\nexport class SkRotatingPlaneComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-rotating-plane colored-parent\" [style.background-color]='backgroundColor()'></div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-spinner-pulse',\n standalone: true,\n templateUrl: './sk-spinner-pulse.component.html',\n styleUrls: ['./sk-spinner-pulse.component.scss']\n})\nexport class SkSpinnerPulseComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-spinner sk-spinner-pulse colored-parent\" [style.background-color]='backgroundColor()'></div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-three-bounce',\n standalone: true,\n templateUrl: './sk-three-bounce.component.html',\n styleUrls: ['./sk-three-bounce.component.scss']\n})\nexport class SkThreeBounceComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-three-bounce\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-child sk-bounce1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-bounce2\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-child sk-bounce3\" [style.background-color]='backgroundColor()'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-wandering-cubes',\n standalone: true,\n templateUrl: './sk-wandering-cubes.component.html',\n styleUrls: ['./sk-wandering-cubes.component.scss']\n})\nexport class SkWanderingCubesComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n\n<div class=\"sk-wandering-cubes\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-cube sk-cube1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-cube sk-cube2\" [style.background-color]='backgroundColor()'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Component } from '@angular/core';\nimport { AbstractLoaderDirective } from '../abstract.loader.directive';\n\n@Component({\n selector: 'sk-wave',\n standalone: true,\n templateUrl: './sk-wave.component.html',\n styleUrls: ['./sk-wave.component.scss']\n})\nexport class SkWaveComponent extends AbstractLoaderDirective {\n}\n","<!--\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n-->\n<div class=\"sk-wave\" [class.colored]=\"!backgroundColor()\">\n <div class=\"sk-rect sk-rect1\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect2\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect3\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect4\" [style.background-color]='backgroundColor()'></div>\n <div class=\"sk-rect sk-rect5\" [style.background-color]='backgroundColor()'></div>\n</div>\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { SkChasingDotsComponent } from './components/sk-chasing-dots/sk-chasing-dots.component';\nimport { SkCubeGridComponent } from './components/sk-cube-grid/sk-cube-grid.component';\nimport { SkDoubleBounceComponent } from './components/sk-double-bounce/sk-double-bounce.component';\nimport { SkRotatingPlaneComponent } from './components/sk-rotating-plane/sk-rotating-plane.component';\nimport { SkSpinnerPulseComponent } from './components/sk-spinner-pulse/sk-spinner-pulse.component';\nimport { SkThreeBounceComponent } from './components/sk-three-bounce/sk-three-bounce.component';\nimport { SkWanderingCubesComponent } from './components/sk-wandering-cubes/sk-wandering-cubes.component';\nimport { SkWaveComponent } from './components/sk-wave/sk-wave.component';\n\nexport const Spinkit = {\n skChasingDots: 'sk-chasing-dots',\n skCubeGrid: 'sk-cube-grid',\n skDoubleBounce: 'sk-double-bounce',\n skRotatingPlane: 'sk-rotationg-plane',\n skSpinnerPulse: 'sk-spinner-pulse',\n skThreeBounce: 'sk-three-bounce',\n skWanderingCubes: 'sk-wandering-cubes',\n skWave: 'sk-wave'\n};\n\nexport const SPINKIT_COMPONENTS = [\n SkCubeGridComponent,\n SkChasingDotsComponent,\n SkDoubleBounceComponent,\n SkRotatingPlaneComponent,\n SkSpinnerPulseComponent,\n SkThreeBounceComponent,\n SkWanderingCubesComponent,\n SkWaveComponent,\n];\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { HttpRequest } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable, ReplaySubject } from 'rxjs';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PendingRequestsInterceptorConfigurer {\n\n private _pendingRequests = 0;\n private _pendingRequestsStatus$ = new ReplaySubject<boolean>(1);\n private _filteredUrlPatterns: RegExp[] = [];\n private _filteredMethods: string[] = [];\n private _filteredHeaders: string[] = [];\n private _forceByPass = false;\n\n get pendingRequestsStatus$(): Observable<boolean> {\n return this._pendingRequestsStatus$.asObservable();\n }\n\n get pendingRequestsStatusSubject$(): ReplaySubject<boolean> {\n return this._pendingRequestsStatus$;\n }\n\n get pendingRequests(): number {\n return this._pendingRequests;\n }\n\n set pendingRequests(pendingRequests: number) {\n this._pendingRequests = pendingRequests;\n }\n\n get filteredUrlPatterns(): RegExp[] {\n return this._filteredUrlPatterns;\n }\n\n set filteredMethods(httpMethods: string[]) {\n this._filteredMethods = httpMethods;\n }\n\n set filteredHeaders(value: string[]) {\n this._filteredHeaders = value;\n }\n\n set forceByPass(value: boolean) {\n this._forceByPass = value;\n }\n\n shouldBypassUrl(url: string): boolean {\n return this._filteredUrlPatterns.some(e => {\n return e.test(url);\n });\n }\n\n shouldBypassMethod(req: HttpRequest<unknown>): boolean {\n return this._filteredMethods.some(e => {\n return e.toUpperCase() === req.method.toUpperCase();\n });\n }\n\n shouldBypassHeader(req: HttpRequest<unknown>): boolean {\n return this._filteredHeaders.some(e => {\n return req.headers.has(e);\n });\n }\n\n shouldBypass(req: HttpRequest<unknown>): boolean {\n return this._forceByPass\n || this.shouldBypassUrl(req.urlWithParams)\n || this.shouldBypassMethod(req)\n || this.shouldBypassHeader(req);\n }\n}\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { Injectable } from '@angular/core';\nimport { Observable, ReplaySubject } from 'rxjs';\nimport { PendingRequestsInterceptorConfigurer } from \"./pending-requests-interceptor-configurer.service\";\n\n@Injectable({\n providedIn: 'root'\n})\nexport class SpinnerVisibilityService {\n\n private _visibility$ = new ReplaySubject<boolean>(1);\n\n constructor(private pendingRequestsInterceptorConfigurer: PendingRequestsInterceptorConfigurer) {\n }\n\n get visibility$(): Observable<boolean> {\n return this._visibility$.asObservable();\n }\n\n show(): void {\n this.pendingRequestsInterceptorConfigurer.forceByPass = true;\n this._visibility$.next(true);\n }\n\n hide(): void {\n this._visibility$.next(false);\n this.pendingRequestsInterceptorConfigurer.forceByPass = false;\n }\n}\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { AsyncPipe, NgComponentOutlet, NgIf, NgStyle } from '@angular/common';\nimport { Component, input, model, OnInit, Type } from '@angular/core';\nimport { merge, Observable, partition, timer } from 'rxjs';\nimport { debounce, distinctUntilChanged, switchMap, tap } from 'rxjs/operators';\nimport { PendingRequestsInterceptorConfigurer } from '../services/pending-requests-interceptor-configurer.service';\nimport { SpinnerVisibilityService } from '../services/spinner-visibility.service';\nimport { Spinkit, SPINKIT_COMPONENTS } from '../spinkits';\n\n@Component({\n selector: 'ng-http-loader',\n standalone: true,\n templateUrl: './ng-http-loader.component.html',\n styleUrls: ['./ng-http-loader.component.scss'],\n imports: [SPINKIT_COMPONENTS, NgStyle, NgComponentOutlet, NgIf, AsyncPipe]\n})\nexport class NgHttpLoaderComponent implements OnInit {\n\n spinkit = Spinkit;\n isVisible$!: Observable<boolean>;\n visibleUntil = Date.now();\n\n readonly backdrop = input<boolean>(true);\n readonly backgroundColor = input<string>();\n readonly debounceDelay = input<number>(0);\n readonly entryComponent = input<Type<unknown> | null>(null);\n readonly extraDuration = input<number>(0);\n readonly filteredHeaders = input<string[]>([]);\n readonly filteredMethods = input<string[]>([]);\n readonly filteredUrlPatterns = input<string[]>([]);\n readonly minDuration = input<number>(0);\n readonly opacity = input<string>('.7');\n readonly backdropBackgroundColor = input<string>('#f1f1f1');\n readonly spinner = model<string | null>(Spinkit.skWave);\n\n constructor(private pendingRequestsInterceptorConfigurer: PendingRequestsInterceptorConfigurer, private spinnerVisibility: SpinnerVisibilityService) {\n }\n\n ngOnInit(): void {\n this.initIsvisibleObservable();\n this.nullifySpinnerIfEntryComponentIsDefined();\n this.initFilters();\n }\n\n private initIsvisibleObservable(): void {\n const [showSpinner$, hideSpinner$] = partition(this.pendingRequestsInterceptorConfigurer.pendingRequestsStatus$, h => h);\n\n this.isVisible$ = merge(\n this.pendingRequestsInterceptorConfigurer.pendingRequestsStatus$\n .pipe(switchMap(() => showSpinner$.pipe(debounce(() => timer(this.debounceDelay()))))),\n showSpinner$\n .pipe(switchMap(() => hideSpinner$.pipe(debounce(() => this.getVisibilityTimer$())))),\n this.spinnerVisibility.visibility$\n ).pipe(\n distinctUntilChanged(),\n tap(h => this.updateExpirationDelay(h))\n );\n }\n\n private nullifySpinnerIfEntryComponentIsDefined(): void {\n if (this.entryComponent()) {\n this.spinner.update(() => null);\n }\n }\n\n private initFilters(): void {\n this.initFilteredUrlPatterns();\n this.initFilteredMethods();\n this.initFilteredHeaders();\n }\n\n private initFilteredUrlPatterns(): void {\n if (!!this.filteredUrlPatterns().length) {\n this.filteredUrlPatterns().forEach(e =>\n this.pendingRequestsInterceptorConfigurer.filteredUrlPatterns.push(new RegExp(e))\n );\n }\n }\n\n private initFilteredMethods(): void {\n this.pendingRequestsInterceptorConfigurer.filteredMethods = this.filteredMethods();\n }\n\n private initFilteredHeaders(): void {\n this.pendingRequestsInterceptorConfigurer.filteredHeaders = this.filteredHeaders();\n }\n\n private updateExpirationDelay(showSpinner: boolean): void {\n if (showSpinner) {\n this.visibleUntil = Date.now() + this.minDuration();\n }\n }\n\n private getVisibilityTimer$(): Observable<number> {\n return timer(Math.max(this.extraDuration(), this.visibleUntil - Date.now()));\n }\n}\n","<div id=\"spinner\"\n *ngIf=\"isVisible$ | async\"\n [class.backdrop]=\"backdrop()\"\n [style.opacity]=\"opacity()\"\n [ngStyle]=\"{'background-color': backdrop() ? backdropBackgroundColor() : 'transparent'}\">\n\n <ng-container *ngComponentOutlet=\"entryComponent()\"></ng-container>\n\n <sk-cube-grid\n *ngIf=\"spinner() === spinkit.skCubeGrid\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-cube-grid>\n\n <sk-chasing-dots\n *ngIf=\"spinner() === spinkit.skChasingDots\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-chasing-dots>\n\n <sk-double-bounce\n *ngIf=\"spinner() === spinkit.skDoubleBounce\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-double-bounce>\n\n <sk-rotating-plane\n *ngIf=\"spinner() === spinkit.skRotatingPlane\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-rotating-plane>\n\n <sk-spinner-pulse\n *ngIf=\"spinner() === spinkit.skSpinnerPulse\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-spinner-pulse>\n\n <sk-three-bounce\n *ngIf=\"spinner() === spinkit.skThreeBounce\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-three-bounce>\n\n <sk-wandering-cubes\n *ngIf=\"spinner() === spinkit.skWanderingCubes\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-wandering-cubes>\n\n <sk-wave\n *ngIf=\"spinner() === spinkit.skWave\"\n [backgroundColor]=\"backgroundColor()\">\n </sk-wave>\n\n</div>\n\n","/*\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\nimport { HttpEvent, HttpHandlerFn, HttpRequest } from '@angular/common/http';\nimport { inject } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { finalize } from 'rxjs/operators';\nimport { PendingRequestsInterceptorConfigurer } from \"./pending-requests-interceptor-configurer.service\";\n\nexport function pendingRequestsInterceptor$(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>> {\n const pendingRequestsInterceptorConfigurer = inject(PendingRequestsInterceptorConfigurer);\n const shouldBypass = pendingRequestsInterceptorConfigurer.shouldBypass(req);\n\n if (!shouldBypass) {\n pendingRequestsInterceptorConfigurer.pendingRequests++;\n\n if (1 === pendingRequestsInterceptorConfigurer.pendingRequests) {\n pendingRequestsInterceptorConfigurer.pendingRequestsStatusSubject$.next(true);\n }\n }\n\n return next(req).pipe(\n finalize(() => {\n if (!shouldBypass) {\n pendingRequestsInterceptorConfigurer.pendingRequests--;\n\n if (0 === pendingRequestsInterceptorConfigurer.pendingRequests) {\n pendingRequestsInterceptorConfigurer.pendingRequestsStatusSubject$.next(false);\n }\n }\n })\n );\n}\n","/*\n * Public API Surface of ng-http-loader\n */\n\nexport * from './lib/components/sk-chasing-dots/sk-chasing-dots.component';\nexport * from './lib/components/sk-cube-grid/sk-cube-grid.component';\nexport * from './lib/components/sk-double-bounce/sk-double-bounce.component';\nexport * from './lib/components/sk-rotating-plane/sk-rotating-plane.component';\nexport * from './lib/components/sk-spinner-pulse/sk-spinner-pulse.component';\nexport * from './lib/components/sk-three-bounce/sk-three-bounce.component';\nexport * from './lib/components/sk-wandering-cubes/sk-wandering-cubes.component';\nexport * from './lib/components/sk-wave/sk-wave.component';\nexport * from './lib/components/ng-http-loader.component';\nexport * from './lib/components/abstract.loader.directive';\n\nexport * from './lib/services/pending-requests-interceptor';\nexport * from './lib/services/pending-requests-interceptor-configurer.service';\n\nexport * from './lib/services/spinner-visibility.service';\n\nexport * from './lib/spinkits';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["i1.PendingRequestsInterceptorConfigurer","i2.SpinnerVisibilityService","i3.SkCubeGridComponent","i4.SkChasingDotsComponent","i5.SkDoubleBounceComponent","i6.SkRotatingPlaneComponent","i7.SkSpinnerPulseComponent","i8.SkThreeBounceComponent","i9.SkWanderingCubesComponent","i10.SkWaveComponent"],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare abstract class AbstractLoaderDirective {
|
|
3
|
-
backgroundColor: string
|
|
3
|
+
readonly backgroundColor: import("@angular/core").InputSignal<string | undefined>;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractLoaderDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractLoaderDirective, never, never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractLoaderDirective, never, never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnInit, Type } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
+
import { PendingRequestsInterceptorConfigurer } from '../services/pending-requests-interceptor-configurer.service';
|
|
3
4
|
import { SpinnerVisibilityService } from '../services/spinner-visibility.service';
|
|
4
|
-
import { PendingRequestsInterceptorConfigurer } from "../services/pending-requests-interceptor-configurer.service";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class NgHttpLoaderComponent implements OnInit {
|
|
7
7
|
private pendingRequestsInterceptorConfigurer;
|
|
@@ -18,18 +18,18 @@ export declare class NgHttpLoaderComponent implements OnInit {
|
|
|
18
18
|
};
|
|
19
19
|
isVisible$: Observable<boolean>;
|
|
20
20
|
visibleUntil: number;
|
|
21
|
-
backdrop: boolean
|
|
22
|
-
backgroundColor: string
|
|
23
|
-
debounceDelay: number
|
|
24
|
-
entryComponent: Type<unknown> | null
|
|
25
|
-
extraDuration: number
|
|
26
|
-
filteredHeaders: string[]
|
|
27
|
-
filteredMethods: string[]
|
|
28
|
-
filteredUrlPatterns: string[]
|
|
29
|
-
minDuration: number
|
|
30
|
-
opacity: string
|
|
31
|
-
backdropBackgroundColor: string
|
|
32
|
-
spinner: string | null
|
|
21
|
+
readonly backdrop: import("@angular/core").InputSignal<boolean>;
|
|
22
|
+
readonly backgroundColor: import("@angular/core").InputSignal<string | undefined>;
|
|
23
|
+
readonly debounceDelay: import("@angular/core").InputSignal<number>;
|
|
24
|
+
readonly entryComponent: import("@angular/core").InputSignal<Type<unknown> | null>;
|
|
25
|
+
readonly extraDuration: import("@angular/core").InputSignal<number>;
|
|
26
|
+
readonly filteredHeaders: import("@angular/core").InputSignal<string[]>;
|
|
27
|
+
readonly filteredMethods: import("@angular/core").InputSignal<string[]>;
|
|
28
|
+
readonly filteredUrlPatterns: import("@angular/core").InputSignal<string[]>;
|
|
29
|
+
readonly minDuration: import("@angular/core").InputSignal<number>;
|
|
30
|
+
readonly opacity: import("@angular/core").InputSignal<string>;
|
|
31
|
+
readonly backdropBackgroundColor: import("@angular/core").InputSignal<string>;
|
|
32
|
+
readonly spinner: import("@angular/core").ModelSignal<string | null>;
|
|
33
33
|
constructor(pendingRequestsInterceptorConfigurer: PendingRequestsInterceptorConfigurer, spinnerVisibility: SpinnerVisibilityService);
|
|
34
34
|
ngOnInit(): void;
|
|
35
35
|
private initIsvisibleObservable;
|
|
@@ -41,5 +41,5 @@ export declare class NgHttpLoaderComponent implements OnInit {
|
|
|
41
41
|
private updateExpirationDelay;
|
|
42
42
|
private getVisibilityTimer$;
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgHttpLoaderComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgHttpLoaderComponent, "ng-http-loader", never, { "backdrop": { "alias": "backdrop"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "debounceDelay": { "alias": "debounceDelay"; "required": false; }; "entryComponent": { "alias": "entryComponent"; "required": false; }; "extraDuration": { "alias": "extraDuration"; "required": false; }; "filteredHeaders": { "alias": "filteredHeaders"; "required": false; }; "filteredMethods": { "alias": "filteredMethods"; "required": false; }; "filteredUrlPatterns": { "alias": "filteredUrlPatterns"; "required": false; }; "minDuration": { "alias": "minDuration"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "backdropBackgroundColor": { "alias": "backdropBackgroundColor"; "required": false; }; "spinner": { "alias": "spinner"; "required": false; }; }, {}, never, never, true, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgHttpLoaderComponent, "ng-http-loader", never, { "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; "isSignal": true; }; "debounceDelay": { "alias": "debounceDelay"; "required": false; "isSignal": true; }; "entryComponent": { "alias": "entryComponent"; "required": false; "isSignal": true; }; "extraDuration": { "alias": "extraDuration"; "required": false; "isSignal": true; }; "filteredHeaders": { "alias": "filteredHeaders"; "required": false; "isSignal": true; }; "filteredMethods": { "alias": "filteredMethods"; "required": false; "isSignal": true; }; "filteredUrlPatterns": { "alias": "filteredUrlPatterns"; "required": false; "isSignal": true; }; "minDuration": { "alias": "minDuration"; "required": false; "isSignal": true; }; "opacity": { "alias": "opacity"; "required": false; "isSignal": true; }; "backdropBackgroundColor": { "alias": "backdropBackgroundColor"; "required": false; "isSignal": true; }; "spinner": { "alias": "spinner"; "required": false; "isSignal": true; }; }, { "spinner": "spinnerChange"; }, never, never, true, never>;
|
|
45
45
|
}
|
package/lib/spinkits.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SkCubeGridComponent } from './components/sk-cube-grid/sk-cube-grid.component';
|
|
2
2
|
export declare const Spinkit: {
|
|
3
3
|
skChasingDots: string;
|
|
4
4
|
skCubeGrid: string;
|
|
@@ -9,4 +9,4 @@ export declare const Spinkit: {
|
|
|
9
9
|
skWanderingCubes: string;
|
|
10
10
|
skWave: string;
|
|
11
11
|
};
|
|
12
|
-
export declare const SPINKIT_COMPONENTS: (typeof
|
|
12
|
+
export declare const SPINKIT_COMPONENTS: (typeof SkCubeGridComponent)[];
|