ng-http-loader 18.0.0 → 20.0.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 +11 -0
- package/fesm2022/ng-http-loader.mjs +66 -51
- package/fesm2022/ng-http-loader.mjs.map +1 -1
- package/package.json +8 -7
- /package/{index.d.ts → types/ng-http-loader.d.ts} +0 -0
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -48,6 +48,9 @@ The HTTP interceptor listens to all HTTP requests and shows a spinner / loader i
|
|
|
48
48
|
| >=16.0.0 | ^18.0.0 |
|
|
49
49
|
| >=17.0.0 | ^19.0.0 |
|
|
50
50
|
| >=18.0.0 | ^20.0.0 |
|
|
51
|
+
| >=19.0.0 | ^21.0.0 |
|
|
52
|
+
| >=20.0.0 | ^22.0.0 |
|
|
53
|
+
|
|
51
54
|
|
|
52
55
|
If you experience errors like below, **please double-check the version you use.**
|
|
53
56
|
|
|
@@ -92,7 +95,15 @@ export const appConfig: ApplicationConfig = {
|
|
|
92
95
|
],
|
|
93
96
|
};
|
|
94
97
|
```
|
|
98
|
+
## Usage in a non-standalone Angular application
|
|
95
99
|
|
|
100
|
+
- Import `NgHttpLoaderComponent` in your main module `imports` array.
|
|
101
|
+
- Add the following to your module providers:
|
|
102
|
+
```typescript
|
|
103
|
+
providers: [
|
|
104
|
+
provideHttpClient(withInterceptors([pendingRequestsInterceptor$])),
|
|
105
|
+
]
|
|
106
|
+
````
|
|
96
107
|
## Customizing the spinner
|
|
97
108
|
|
|
98
109
|
You can customize the following parameters:
|
|
@@ -13,14 +13,17 @@ import { toSignal } from '@angular/core/rxjs-interop';
|
|
|
13
13
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
14
14
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
15
15
|
*/
|
|
16
|
+
/* istanbul ignore start */
|
|
16
17
|
class AbstractLoaderDirective {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
/* istanbul ignore stop */
|
|
19
|
+
backgroundColor = input(/* @ts-ignore */
|
|
20
|
+
...(ngDevMode ? [undefined, { debugName: "backgroundColor" }] : /* istanbul ignore next */ []));
|
|
21
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AbstractLoaderDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
22
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.0", type: AbstractLoaderDirective, isStandalone: true, inputs: { backgroundColor: { classPropertyName: "backgroundColor", publicName: "backgroundColor", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
20
23
|
}
|
|
21
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AbstractLoaderDirective, decorators: [{
|
|
22
25
|
type: Directive
|
|
23
|
-
}] });
|
|
26
|
+
}], propDecorators: { backgroundColor: [{ type: i0.Input, args: [{ isSignal: true, alias: "backgroundColor", required: false }] }] } });
|
|
24
27
|
|
|
25
28
|
/*
|
|
26
29
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
@@ -31,10 +34,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
31
34
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
32
35
|
*/
|
|
33
36
|
class SkChasingDotsComponent extends AbstractLoaderDirective {
|
|
34
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
35
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
37
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkChasingDotsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
38
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", 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"] });
|
|
36
39
|
}
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
40
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkChasingDotsComponent, decorators: [{
|
|
38
41
|
type: Component,
|
|
39
42
|
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"] }]
|
|
40
43
|
}] });
|
|
@@ -48,10 +51,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
48
51
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
49
52
|
*/
|
|
50
53
|
class SkCubeGridComponent extends AbstractLoaderDirective {
|
|
51
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
52
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
54
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkCubeGridComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
55
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", 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"] });
|
|
53
56
|
}
|
|
54
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
57
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkCubeGridComponent, decorators: [{
|
|
55
58
|
type: Component,
|
|
56
59
|
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"] }]
|
|
57
60
|
}] });
|
|
@@ -65,10 +68,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
65
68
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
66
69
|
*/
|
|
67
70
|
class SkDoubleBounceComponent extends AbstractLoaderDirective {
|
|
68
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
69
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
71
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkDoubleBounceComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
72
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", 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"] });
|
|
70
73
|
}
|
|
71
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
74
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkDoubleBounceComponent, decorators: [{
|
|
72
75
|
type: Component,
|
|
73
76
|
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"] }]
|
|
74
77
|
}] });
|
|
@@ -82,10 +85,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
82
85
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
83
86
|
*/
|
|
84
87
|
class SkRotatingPlaneComponent extends AbstractLoaderDirective {
|
|
85
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
86
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
88
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkRotatingPlaneComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
89
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", 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"] });
|
|
87
90
|
}
|
|
88
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
91
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkRotatingPlaneComponent, decorators: [{
|
|
89
92
|
type: Component,
|
|
90
93
|
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"] }]
|
|
91
94
|
}] });
|
|
@@ -99,10 +102,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
99
102
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
100
103
|
*/
|
|
101
104
|
class SkSpinnerPulseComponent extends AbstractLoaderDirective {
|
|
102
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
103
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
105
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkSpinnerPulseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
106
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", 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"] });
|
|
104
107
|
}
|
|
105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkSpinnerPulseComponent, decorators: [{
|
|
106
109
|
type: Component,
|
|
107
110
|
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"] }]
|
|
108
111
|
}] });
|
|
@@ -116,10 +119,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
116
119
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
117
120
|
*/
|
|
118
121
|
class SkThreeBounceComponent extends AbstractLoaderDirective {
|
|
119
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
120
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
122
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkThreeBounceComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
123
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", 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"] });
|
|
121
124
|
}
|
|
122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkThreeBounceComponent, decorators: [{
|
|
123
126
|
type: Component,
|
|
124
127
|
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"] }]
|
|
125
128
|
}] });
|
|
@@ -133,10 +136,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
133
136
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
134
137
|
*/
|
|
135
138
|
class SkWanderingCubesComponent extends AbstractLoaderDirective {
|
|
136
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
137
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
139
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkWanderingCubesComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
140
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", 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"] });
|
|
138
141
|
}
|
|
139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkWanderingCubesComponent, decorators: [{
|
|
140
143
|
type: Component,
|
|
141
144
|
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"] }]
|
|
142
145
|
}] });
|
|
@@ -150,10 +153,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
150
153
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
151
154
|
*/
|
|
152
155
|
class SkWaveComponent extends AbstractLoaderDirective {
|
|
153
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
154
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
156
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkWaveComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
157
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", 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"] });
|
|
155
158
|
}
|
|
156
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SkWaveComponent, decorators: [{
|
|
157
160
|
type: Component,
|
|
158
161
|
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"] }]
|
|
159
162
|
}] });
|
|
@@ -239,10 +242,10 @@ class PendingRequestsInterceptorConfigurer {
|
|
|
239
242
|
|| this.shouldBypassMethod(req)
|
|
240
243
|
|| this.shouldBypassHeader(req);
|
|
241
244
|
}
|
|
242
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
243
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
245
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: PendingRequestsInterceptorConfigurer, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
246
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: PendingRequestsInterceptorConfigurer, providedIn: 'root' });
|
|
244
247
|
}
|
|
245
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
248
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: PendingRequestsInterceptorConfigurer, decorators: [{
|
|
246
249
|
type: Injectable,
|
|
247
250
|
args: [{
|
|
248
251
|
providedIn: 'root'
|
|
@@ -274,10 +277,10 @@ class SpinnerVisibilityService {
|
|
|
274
277
|
this._visibility$.next(false);
|
|
275
278
|
this.pendingRequestsInterceptorConfigurer.forceByPass = false;
|
|
276
279
|
}
|
|
277
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
278
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
280
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SpinnerVisibilityService, deps: [{ token: PendingRequestsInterceptorConfigurer }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
281
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SpinnerVisibilityService, providedIn: 'root' });
|
|
279
282
|
}
|
|
280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SpinnerVisibilityService, decorators: [{
|
|
281
284
|
type: Injectable,
|
|
282
285
|
args: [{
|
|
283
286
|
providedIn: 'root'
|
|
@@ -299,18 +302,30 @@ class NgHttpLoaderComponent {
|
|
|
299
302
|
isVisible$;
|
|
300
303
|
isVisible;
|
|
301
304
|
visibleUntil = Date.now();
|
|
302
|
-
backdrop = input(true
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
305
|
+
backdrop = input(true, /* @ts-ignore */
|
|
306
|
+
...(ngDevMode ? [{ debugName: "backdrop" }] : /* istanbul ignore next */ []));
|
|
307
|
+
backgroundColor = input(/* @ts-ignore */
|
|
308
|
+
...(ngDevMode ? [undefined, { debugName: "backgroundColor" }] : /* istanbul ignore next */ []));
|
|
309
|
+
debounceDelay = input(0, /* @ts-ignore */
|
|
310
|
+
...(ngDevMode ? [{ debugName: "debounceDelay" }] : /* istanbul ignore next */ []));
|
|
311
|
+
entryComponent = input(null, /* @ts-ignore */
|
|
312
|
+
...(ngDevMode ? [{ debugName: "entryComponent" }] : /* istanbul ignore next */ []));
|
|
313
|
+
extraDuration = input(0, /* @ts-ignore */
|
|
314
|
+
...(ngDevMode ? [{ debugName: "extraDuration" }] : /* istanbul ignore next */ []));
|
|
315
|
+
filteredHeaders = input([], /* @ts-ignore */
|
|
316
|
+
...(ngDevMode ? [{ debugName: "filteredHeaders" }] : /* istanbul ignore next */ []));
|
|
317
|
+
filteredMethods = input([], /* @ts-ignore */
|
|
318
|
+
...(ngDevMode ? [{ debugName: "filteredMethods" }] : /* istanbul ignore next */ []));
|
|
319
|
+
filteredUrlPatterns = input([], /* @ts-ignore */
|
|
320
|
+
...(ngDevMode ? [{ debugName: "filteredUrlPatterns" }] : /* istanbul ignore next */ []));
|
|
321
|
+
minDuration = input(0, /* @ts-ignore */
|
|
322
|
+
...(ngDevMode ? [{ debugName: "minDuration" }] : /* istanbul ignore next */ []));
|
|
323
|
+
opacity = input('.7', /* @ts-ignore */
|
|
324
|
+
...(ngDevMode ? [{ debugName: "opacity" }] : /* istanbul ignore next */ []));
|
|
325
|
+
backdropBackgroundColor = input('#f1f1f1', /* @ts-ignore */
|
|
326
|
+
...(ngDevMode ? [{ debugName: "backdropBackgroundColor" }] : /* istanbul ignore next */ []));
|
|
327
|
+
spinner = model(Spinkit.skWave, /* @ts-ignore */
|
|
328
|
+
...(ngDevMode ? [{ debugName: "spinner" }] : /* istanbul ignore next */ []));
|
|
314
329
|
constructor(pendingRequestsInterceptorConfigurer, spinnerVisibility) {
|
|
315
330
|
this.pendingRequestsInterceptorConfigurer = pendingRequestsInterceptorConfigurer;
|
|
316
331
|
this.spinnerVisibility = spinnerVisibility;
|
|
@@ -353,13 +368,13 @@ class NgHttpLoaderComponent {
|
|
|
353
368
|
getVisibilityTimer$() {
|
|
354
369
|
return timer(Math.max(this.extraDuration(), this.visibleUntil - Date.now()));
|
|
355
370
|
}
|
|
356
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
357
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
371
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: NgHttpLoaderComponent, deps: [{ token: PendingRequestsInterceptorConfigurer }, { token: SpinnerVisibilityService }], target: i0.ɵɵFactoryTarget.Component });
|
|
372
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.0", 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: "@if (isVisible()) {\n <div id=\"spinner\"\n [class.backdrop]=\"backdrop()\"\n [style.opacity]=\"opacity()\"\n [ngStyle]=\"{'background-color': backdrop() ? backdropBackgroundColor() : 'transparent'}\">\n <ng-container *ngComponentOutlet=\"entryComponent()\"></ng-container>\n @switch (spinner()) {\n @case (spinkit.skCubeGrid) {\n <sk-cube-grid\n [backgroundColor]=\"backgroundColor()\">\n </sk-cube-grid>\n }\n @case (spinkit.skChasingDots) {\n <sk-chasing-dots\n [backgroundColor]=\"backgroundColor()\">\n </sk-chasing-dots>\n }\n @case (spinkit.skDoubleBounce) {\n <sk-double-bounce\n [backgroundColor]=\"backgroundColor()\">\n </sk-double-bounce>\n }\n @case (spinkit.skRotatingPlane) {\n <sk-rotating-plane\n [backgroundColor]=\"backgroundColor()\">\n </sk-rotating-plane>\n }\n @case (spinkit.skSpinnerPulse) {\n <sk-spinner-pulse\n [backgroundColor]=\"backgroundColor()\">\n </sk-spinner-pulse>\n }\n @case (spinkit.skThreeBounce) {\n <sk-three-bounce\n [backgroundColor]=\"backgroundColor()\">\n </sk-three-bounce>\n }\n @case (spinkit.skWanderingCubes) {\n <sk-wandering-cubes\n [backgroundColor]=\"backgroundColor()\">\n </sk-wandering-cubes>\n }\n @case (spinkit.skWave) {\n <sk-wave\n [backgroundColor]=\"backgroundColor()\">\n </sk-wave>\n }\n }\n </div>\n}\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", "ngComponentOutletEnvironmentInjector", "ngComponentOutletContent", "ngComponentOutletNgModule"], exportAs: ["ngComponentOutlet"] }] });
|
|
358
373
|
}
|
|
359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
374
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: NgHttpLoaderComponent, decorators: [{
|
|
360
375
|
type: Component,
|
|
361
376
|
args: [{ selector: 'ng-http-loader', standalone: true, imports: [SPINKIT_COMPONENTS, NgStyle, NgComponentOutlet], template: "@if (isVisible()) {\n <div id=\"spinner\"\n [class.backdrop]=\"backdrop()\"\n [style.opacity]=\"opacity()\"\n [ngStyle]=\"{'background-color': backdrop() ? backdropBackgroundColor() : 'transparent'}\">\n <ng-container *ngComponentOutlet=\"entryComponent()\"></ng-container>\n @switch (spinner()) {\n @case (spinkit.skCubeGrid) {\n <sk-cube-grid\n [backgroundColor]=\"backgroundColor()\">\n </sk-cube-grid>\n }\n @case (spinkit.skChasingDots) {\n <sk-chasing-dots\n [backgroundColor]=\"backgroundColor()\">\n </sk-chasing-dots>\n }\n @case (spinkit.skDoubleBounce) {\n <sk-double-bounce\n [backgroundColor]=\"backgroundColor()\">\n </sk-double-bounce>\n }\n @case (spinkit.skRotatingPlane) {\n <sk-rotating-plane\n [backgroundColor]=\"backgroundColor()\">\n </sk-rotating-plane>\n }\n @case (spinkit.skSpinnerPulse) {\n <sk-spinner-pulse\n [backgroundColor]=\"backgroundColor()\">\n </sk-spinner-pulse>\n }\n @case (spinkit.skThreeBounce) {\n <sk-three-bounce\n [backgroundColor]=\"backgroundColor()\">\n </sk-three-bounce>\n }\n @case (spinkit.skWanderingCubes) {\n <sk-wandering-cubes\n [backgroundColor]=\"backgroundColor()\">\n </sk-wandering-cubes>\n }\n @case (spinkit.skWave) {\n <sk-wave\n [backgroundColor]=\"backgroundColor()\">\n </sk-wave>\n }\n }\n </div>\n}\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 }] });
|
|
377
|
+
}], ctorParameters: () => [{ type: PendingRequestsInterceptorConfigurer }, { type: SpinnerVisibilityService }], propDecorators: { backdrop: [{ type: i0.Input, args: [{ isSignal: true, alias: "backdrop", required: false }] }], backgroundColor: [{ type: i0.Input, args: [{ isSignal: true, alias: "backgroundColor", required: false }] }], debounceDelay: [{ type: i0.Input, args: [{ isSignal: true, alias: "debounceDelay", required: false }] }], entryComponent: [{ type: i0.Input, args: [{ isSignal: true, alias: "entryComponent", required: false }] }], extraDuration: [{ type: i0.Input, args: [{ isSignal: true, alias: "extraDuration", required: false }] }], filteredHeaders: [{ type: i0.Input, args: [{ isSignal: true, alias: "filteredHeaders", required: false }] }], filteredMethods: [{ type: i0.Input, args: [{ isSignal: true, alias: "filteredMethods", required: false }] }], filteredUrlPatterns: [{ type: i0.Input, args: [{ isSignal: true, alias: "filteredUrlPatterns", required: false }] }], minDuration: [{ type: i0.Input, args: [{ isSignal: true, alias: "minDuration", required: false }] }], opacity: [{ type: i0.Input, args: [{ isSignal: true, alias: "opacity", required: false }] }], backdropBackgroundColor: [{ type: i0.Input, args: [{ isSignal: true, alias: "backdropBackgroundColor", required: false }] }], spinner: [{ type: i0.Input, args: [{ isSignal: true, alias: "spinner", required: false }] }, { type: i0.Output, args: ["spinnerChange"] }] } });
|
|
363
378
|
|
|
364
379
|
/*
|
|
365
380
|
* 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 { 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 { NgComponentOutlet, NgStyle } from '@angular/common';\nimport { Component, input, model, OnInit, Signal, 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';\nimport { toSignal } from \"@angular/core/rxjs-interop\";\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]\n})\nexport class NgHttpLoaderComponent implements OnInit {\n\n spinkit = Spinkit;\n isVisible$!: Observable<boolean>;\n isVisible: Signal<boolean | undefined>;\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(\n private pendingRequestsInterceptorConfigurer: PendingRequestsInterceptorConfigurer,\n private spinnerVisibility: SpinnerVisibilityService\n ) {\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 this.isVisible = toSignal(this.isVisible$);\n }\n\n ngOnInit(): void {\n this.nullifySpinnerIfEntryComponentIsDefined();\n this.initFilters();\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","@if (isVisible()) {\n <div id=\"spinner\"\n [class.backdrop]=\"backdrop()\"\n [style.opacity]=\"opacity()\"\n [ngStyle]=\"{'background-color': backdrop() ? backdropBackgroundColor() : 'transparent'}\">\n <ng-container *ngComponentOutlet=\"entryComponent()\"></ng-container>\n @switch (spinner()) {\n @case (spinkit.skCubeGrid) {\n <sk-cube-grid\n [backgroundColor]=\"backgroundColor()\">\n </sk-cube-grid>\n }\n @case (spinkit.skChasingDots) {\n <sk-chasing-dots\n [backgroundColor]=\"backgroundColor()\">\n </sk-chasing-dots>\n }\n @case (spinkit.skDoubleBounce) {\n <sk-double-bounce\n [backgroundColor]=\"backgroundColor()\">\n </sk-double-bounce>\n }\n @case (spinkit.skRotatingPlane) {\n <sk-rotating-plane\n [backgroundColor]=\"backgroundColor()\">\n </sk-rotating-plane>\n }\n @case (spinkit.skSpinnerPulse) {\n <sk-spinner-pulse\n [backgroundColor]=\"backgroundColor()\">\n </sk-spinner-pulse>\n }\n @case (spinkit.skThreeBounce) {\n <sk-three-bounce\n [backgroundColor]=\"backgroundColor()\">\n </sk-three-bounce>\n }\n @case (spinkit.skWanderingCubes) {\n <sk-wandering-cubes\n [backgroundColor]=\"backgroundColor()\">\n </sk-wandering-cubes>\n }\n @case (spinkit.skWave) {\n <sk-wave\n [backgroundColor]=\"backgroundColor()\">\n </sk-wave>\n }\n }\n </div>\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 { 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":";;;;;;;AAAA;;;;;;;AAOG;MAKmB,uBAAuB,CAAA;IAEhC,eAAe,GAAG,KAAK,EAAU;uGAFxB,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAAvB,uBAAuB,EAAA,YAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,eAAA,EAAA,EAAA,iBAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAAvB,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAD5C;;;ACXD;;;;;;;AAOG;AAWG,MAAO,sBAAuB,SAAQ,uBAAuB,CAAA;uGAAtD,sBAAsB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,sBAAsB,kGClBnC,u0CAyBA,EAAA,MAAA,EAAA,CAAA,2gBAAA,CAAA,EAAA,CAAA;;2FDPa,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,iBAAiB,cACf,IAAI,EAAA,QAAA,EAAA,u0CAAA,EAAA,MAAA,EAAA,CAAA,2gBAAA,CAAA,EAAA;;;AEdpB;;;;;;;AAOG;AAWG,MAAO,mBAAoB,SAAQ,uBAAuB,CAAA;uGAAnD,mBAAmB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,+FClBhC,m7DAgCA,EAAA,MAAA,EAAA,CAAA,8qBAAA,CAAA,EAAA,CAAA;;2FDda,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAN/B,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,cAAc,cACZ,IAAI,EAAA,QAAA,EAAA,m7DAAA,EAAA,MAAA,EAAA,CAAA,8qBAAA,CAAA,EAAA;;;AEdpB;;;;;;;AAOG;AAWG,MAAO,uBAAwB,SAAQ,uBAAuB,CAAA;uGAAvD,uBAAuB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAvB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uBAAuB,mGClBpC,41CAyBA,EAAA,MAAA,EAAA,CAAA,+YAAA,CAAA,EAAA,CAAA;;2FDPa,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBANnC,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,kBAAkB,cAChB,IAAI,EAAA,QAAA,EAAA,41CAAA,EAAA,MAAA,EAAA,CAAA,+YAAA,CAAA,EAAA;;;AEdpB;;;;;;;AAOG;AAWG,MAAO,wBAAyB,SAAQ,uBAAuB,CAAA;uGAAxD,wBAAwB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAxB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,wBAAwB,oGClBrC,0qCAsBA,EAAA,MAAA,EAAA,CAAA,2VAAA,CAAA,EAAA,CAAA;;2FDJa,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBANpC,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,mBAAmB,cACjB,IAAI,EAAA,QAAA,EAAA,0qCAAA,EAAA,MAAA,EAAA,CAAA,2VAAA,CAAA,EAAA;;;AEdpB;;;;;;;AAOG;AAWG,MAAO,uBAAwB,SAAQ,uBAAuB,CAAA;uGAAvD,uBAAuB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAvB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uBAAuB,mGClBpC,orCAsBA,EAAA,MAAA,EAAA,CAAA,4OAAA,CAAA,EAAA,CAAA;;2FDJa,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBANnC,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,kBAAkB,cAChB,IAAI,EAAA,QAAA,EAAA,orCAAA,EAAA,MAAA,EAAA,CAAA,4OAAA,CAAA,EAAA;;;AEdpB;;;;;;;AAOG;AAWG,MAAO,sBAAuB,SAAQ,uBAAuB,CAAA;uGAAtD,sBAAsB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,sBAAsB,kGClBnC,y6CA0BA,EAAA,MAAA,EAAA,CAAA,oaAAA,CAAA,EAAA,CAAA;;2FDRa,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,iBAAiB,cACf,IAAI,EAAA,QAAA,EAAA,y6CAAA,EAAA,MAAA,EAAA,CAAA,oaAAA,CAAA,EAAA;;;AEdpB;;;;;;;AAOG;AAWG,MAAO,yBAA0B,SAAQ,uBAAuB,CAAA;uGAAzD,yBAAyB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAzB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,yBAAyB,qGClBtC,00CAyBA,EAAA,MAAA,EAAA,CAAA,ymBAAA,CAAA,EAAA,CAAA;;2FDPa,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBANrC,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,oBAAoB,cAClB,IAAI,EAAA,QAAA,EAAA,00CAAA,EAAA,MAAA,EAAA,CAAA,ymBAAA,CAAA,EAAA;;;AEdpB;;;;;;;AAOG;AAWG,MAAO,eAAgB,SAAQ,uBAAuB,CAAA;uGAA/C,eAAe,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAf,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,eAAe,0FClB5B,wkDA2BA,EAAA,MAAA,EAAA,CAAA,4hBAAA,CAAA,EAAA,CAAA;;2FDTa,eAAe,EAAA,UAAA,EAAA,CAAA;kBAN3B,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,SAAS,cACP,IAAI,EAAA,QAAA,EAAA,wkDAAA,EAAA,MAAA,EAAA,CAAA,4hBAAA,CAAA,EAAA;;;AEdpB;;;;;;;AAOG;AAWU,MAAA,OAAO,GAAG;AACnB,IAAA,aAAa,EAAE,iBAAiB;AAChC,IAAA,UAAU,EAAE,cAAc;AAC1B,IAAA,cAAc,EAAE,kBAAkB;AAClC,IAAA,eAAe,EAAE,oBAAoB;AACrC,IAAA,cAAc,EAAE,kBAAkB;AAClC,IAAA,aAAa,EAAE,iBAAiB;AAChC,IAAA,gBAAgB,EAAE,oBAAoB;AACtC,IAAA,MAAM,EAAE;;AAGC,MAAA,kBAAkB,GAAG;IAC9B,mBAAmB;IACnB,sBAAsB;IACtB,uBAAuB;IACvB,wBAAwB;IACxB,uBAAuB;IACvB,sBAAsB;IACtB,yBAAyB;IACzB,eAAe;;;MCrBN,oCAAoC,CAAA;IAErC,gBAAgB,GAAG,CAAC;AACpB,IAAA,uBAAuB,GAAG,IAAI,aAAa,CAAU,CAAC,CAAC;IACvD,oBAAoB,GAAa,EAAE;IACnC,gBAAgB,GAAa,EAAE;IAC/B,gBAAgB,GAAa,EAAE;IAC/B,YAAY,GAAG,KAAK;AAE5B,IAAA,IAAI,sBAAsB,GAAA;AACtB,QAAA,OAAO,IAAI,CAAC,uBAAuB,CAAC,YAAY,EAAE;;AAGtD,IAAA,IAAI,6BAA6B,GAAA;QAC7B,OAAO,IAAI,CAAC,uBAAuB;;AAGvC,IAAA,IAAI,eAAe,GAAA;QACf,OAAO,IAAI,CAAC,gBAAgB;;IAGhC,IAAI,eAAe,CAAC,eAAuB,EAAA;AACvC,QAAA,IAAI,CAAC,gBAAgB,GAAG,eAAe;;AAG3C,IAAA,IAAI,mBAAmB,GAAA;QACnB,OAAO,IAAI,CAAC,oBAAoB;;IAGpC,IAAI,eAAe,CAAC,WAAqB,EAAA;AACrC,QAAA,IAAI,CAAC,gBAAgB,GAAG,WAAW;;IAGvC,IAAI,eAAe,CAAC,KAAe,EAAA;AAC/B,QAAA,IAAI,CAAC,gBAAgB,GAAG,KAAK;;IAGjC,IAAI,WAAW,CAAC,KAAc,EAAA;AAC1B,QAAA,IAAI,CAAC,YAAY,GAAG,KAAK;;AAG7B,IAAA,eAAe,CAAC,GAAW,EAAA;QACvB,OAAO,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC,CAAC,IAAG;AACtC,YAAA,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;AACtB,SAAC,CAAC;;AAGN,IAAA,kBAAkB,CAAC,GAAyB,EAAA;QACxC,OAAO,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAG;YAClC,OAAO,CAAC,CAAC,WAAW,EAAE,KAAK,GAAG,CAAC,MAAM,CAAC,WAAW,EAAE;AACvD,SAAC,CAAC;;AAGN,IAAA,kBAAkB,CAAC,GAAyB,EAAA;QACxC,OAAO,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAG;YAClC,OAAO,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;AAC7B,SAAC,CAAC;;AAGN,IAAA,YAAY,CAAC,GAAyB,EAAA;QAClC,OAAO,IAAI,CAAC;AACL,eAAA,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,aAAa;AACtC,eAAA,IAAI,CAAC,kBAAkB,CAAC,GAAG;AAC3B,eAAA,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC;;uGA/D9B,oCAAoC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAApC,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oCAAoC,cAFjC,MAAM,EAAA,CAAA;;2FAET,oCAAoC,EAAA,UAAA,EAAA,CAAA;kBAHhD,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,UAAU,EAAE;AACf,iBAAA;;;ACfD;;;;;;;AAOG;MASU,wBAAwB,CAAA;AAIb,IAAA,oCAAA;AAFZ,IAAA,YAAY,GAAG,IAAI,aAAa,CAAU,CAAC,CAAC;AAEpD,IAAA,WAAA,CAAoB,oCAA0E,EAAA;QAA1E,IAAoC,CAAA,oCAAA,GAApC,oCAAoC;;AAGxD,IAAA,IAAI,WAAW,GAAA;AACX,QAAA,OAAO,IAAI,CAAC,YAAY,CAAC,YAAY,EAAE;;IAG3C,IAAI,GAAA;AACA,QAAA,IAAI,CAAC,oCAAoC,CAAC,WAAW,GAAG,IAAI;AAC5D,QAAA,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC;;IAGhC,IAAI,GAAA;AACA,QAAA,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,KAAK,CAAC;AAC7B,QAAA,IAAI,CAAC,oCAAoC,CAAC,WAAW,GAAG,KAAK;;uGAlBxD,wBAAwB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAAA,oCAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAxB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,wBAAwB,cAFrB,MAAM,EAAA,CAAA;;2FAET,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBAHpC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,UAAU,EAAE;AACf,iBAAA;;;ACfD;;;;;;;AAOG;MAkBU,qBAAqB,CAAA;AAqBlB,IAAA,oCAAA;AACA,IAAA,iBAAA;IApBZ,OAAO,GAAG,OAAO;AACjB,IAAA,UAAU;AACV,IAAA,SAAS;AACT,IAAA,YAAY,GAAG,IAAI,CAAC,GAAG,EAAE;AAEhB,IAAA,QAAQ,GAAG,KAAK,CAAU,IAAI,CAAC;IAC/B,eAAe,GAAG,KAAK,EAAU;AACjC,IAAA,aAAa,GAAG,KAAK,CAAS,CAAC,CAAC;AAChC,IAAA,cAAc,GAAG,KAAK,CAAuB,IAAI,CAAC;AAClD,IAAA,aAAa,GAAG,KAAK,CAAS,CAAC,CAAC;AAChC,IAAA,eAAe,GAAG,KAAK,CAAW,EAAE,CAAC;AACrC,IAAA,eAAe,GAAG,KAAK,CAAW,EAAE,CAAC;AACrC,IAAA,mBAAmB,GAAG,KAAK,CAAW,EAAE,CAAC;AACzC,IAAA,WAAW,GAAG,KAAK,CAAS,CAAC,CAAC;AAC9B,IAAA,OAAO,GAAG,KAAK,CAAS,IAAI,CAAC;AAC7B,IAAA,uBAAuB,GAAG,KAAK,CAAS,SAAS,CAAC;AAClD,IAAA,OAAO,GAAG,KAAK,CAAgB,OAAO,CAAC,MAAM,CAAC;IAEvD,WACY,CAAA,oCAA0E,EAC1E,iBAA2C,EAAA;QAD3C,IAAoC,CAAA,oCAAA,GAApC,oCAAoC;QACpC,IAAiB,CAAA,iBAAA,GAAjB,iBAAiB;QAEzB,MAAM,CAAC,YAAY,EAAE,YAAY,CAAC,GAAG,SAAS,CAAC,IAAI,CAAC,oCAAoC,CAAC,sBAAsB,EAAE,CAAC,IAAI,CAAC,CAAC;QAExH,IAAI,CAAC,UAAU,GAAG,KAAK,CACnB,IAAI,CAAC,oCAAoC,CAAC;aACrC,IAAI,CAAC,SAAS,CAAC,MAAM,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAC1F;aACK,IAAI,CAAC,SAAS,CAAC,MAAM,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,IAAI,CAAC,mBAAmB,EAAE,CAAC,CAAC,CAAC,CAAC,EACzF,IAAI,CAAC,iBAAiB,CAAC,WAAW,CACrC,CAAC,IAAI,CACF,oBAAoB,EAAE,EACtB,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAC1C;QACD,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC;;IAG9C,QAAQ,GAAA;QACJ,IAAI,CAAC,uCAAuC,EAAE;QAC9C,IAAI,CAAC,WAAW,EAAE;;IAGd,uCAAuC,GAAA;AAC3C,QAAA,IAAI,IAAI,CAAC,cAAc,EAAE,EAAE;YACvB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,IAAI,CAAC;;;IAI/B,WAAW,GAAA;QACf,IAAI,CAAC,uBAAuB,EAAE;QAC9B,IAAI,CAAC,mBAAmB,EAAE;QAC1B,IAAI,CAAC,mBAAmB,EAAE;;IAGtB,uBAAuB,GAAA;QAC3B,IAAI,CAAC,CAAC,IAAI,CAAC,mBAAmB,EAAE,CAAC,MAAM,EAAE;YACrC,IAAI,CAAC,mBAAmB,EAAE,CAAC,OAAO,CAAC,CAAC,IAChC,IAAI,CAAC,oCAAoC,CAAC,mBAAmB,CAAC,IAAI,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,CACpF;;;IAID,mBAAmB,GAAA;QACvB,IAAI,CAAC,oCAAoC,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,EAAE;;IAG9E,mBAAmB,GAAA;QACvB,IAAI,CAAC,oCAAoC,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,EAAE;;AAG9E,IAAA,qBAAqB,CAAC,WAAoB,EAAA;QAC9C,IAAI,WAAW,EAAE;AACb,YAAA,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,WAAW,EAAE;;;IAInD,mBAAmB,GAAA;QACvB,OAAO,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,aAAa,EAAE,EAAE,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;;uGA/EvE,qBAAqB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAAA,oCAAA,EAAA,EAAA,EAAA,KAAA,EAAAC,wBAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAArB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,qBAAqB,ECzBlC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,EAAA,QAAA,EAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,eAAA,EAAA,EAAA,iBAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,aAAA,EAAA,EAAA,iBAAA,EAAA,eAAA,EAAA,UAAA,EAAA,eAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,cAAA,EAAA,EAAA,iBAAA,EAAA,gBAAA,EAAA,UAAA,EAAA,gBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,aAAA,EAAA,EAAA,iBAAA,EAAA,eAAA,EAAA,UAAA,EAAA,eAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,eAAA,EAAA,EAAA,iBAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,eAAA,EAAA,EAAA,iBAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,mBAAA,EAAA,EAAA,iBAAA,EAAA,qBAAA,EAAA,UAAA,EAAA,qBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,WAAA,EAAA,EAAA,iBAAA,EAAA,aAAA,EAAA,UAAA,EAAA,aAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,OAAA,EAAA,EAAA,iBAAA,EAAA,SAAA,EAAA,UAAA,EAAA,SAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,uBAAA,EAAA,EAAA,iBAAA,EAAA,yBAAA,EAAA,UAAA,EAAA,yBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,OAAA,EAAA,EAAA,iBAAA,EAAA,SAAA,EAAA,UAAA,EAAA,SAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,OAAA,EAAA,EAAA,OAAA,EAAA,eAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,u2DAmDA,ED5BkC,MAAA,EAAA,CAAA,4RAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,mBAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,sBAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,uBAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,wBAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,uBAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,sBAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,yBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,eAAA,EAAA,QAAA,EAAA,SAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,OAAO,2EAAE,iBAAiB,EAAA,QAAA,EAAA,qBAAA,EAAA,MAAA,EAAA,CAAA,mBAAA,EAAA,yBAAA,EAAA,2BAAA,EAAA,0BAAA,EAAA,2BAAA,EAAA,kCAAA,CAAA,EAAA,QAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;2FAE/C,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBAPjC,SAAS;+BACI,gBAAgB,EAAA,UAAA,EACd,IAAI,EAGP,OAAA,EAAA,CAAC,kBAAkB,EAAE,OAAO,EAAE,iBAAiB,CAAC,EAAA,QAAA,EAAA,u2DAAA,EAAA,MAAA,EAAA,CAAA,4RAAA,CAAA,EAAA;;;AEvB7D;;;;;;;AAOG;AAQa,SAAA,2BAA2B,CAAC,GAAyB,EAAE,IAAmB,EAAA;AACtF,IAAA,MAAM,oCAAoC,GAAG,MAAM,CAAC,oCAAoC,CAAC;IACzF,MAAM,YAAY,GAAG,oCAAoC,CAAC,YAAY,CAAC,GAAG,CAAC;IAE3E,IAAI,CAAC,YAAY,EAAE;QACf,oCAAoC,CAAC,eAAe,EAAE;AAEtD,QAAA,IAAI,CAAC,KAAK,oCAAoC,CAAC,eAAe,EAAE;AAC5D,YAAA,oCAAoC,CAAC,6BAA6B,CAAC,IAAI,CAAC,IAAI,CAAC;;;IAIrF,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CACjB,QAAQ,CAAC,MAAK;QACV,IAAI,CAAC,YAAY,EAAE;YACf,oCAAoC,CAAC,eAAe,EAAE;AAEtD,YAAA,IAAI,CAAC,KAAK,oCAAoC,CAAC,eAAe,EAAE;AAC5D,gBAAA,oCAAoC,CAAC,6BAA6B,CAAC,IAAI,CAAC,KAAK,CAAC;;;KAGzF,CAAC,CACL;AACL;;ACtCA;;AAEG;;ACFH;;AAEG;;;;"}
|
|
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()\n/* istanbul ignore start */\nexport abstract class AbstractLoaderDirective {\n/* istanbul ignore stop */\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 { NgComponentOutlet, NgStyle } from '@angular/common';\nimport { Component, input, model, OnInit, Signal, 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';\nimport { toSignal } from \"@angular/core/rxjs-interop\";\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]\n})\nexport class NgHttpLoaderComponent implements OnInit {\n\n spinkit = Spinkit;\n isVisible$!: Observable<boolean>;\n isVisible: Signal<boolean | undefined>;\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(\n private pendingRequestsInterceptorConfigurer: PendingRequestsInterceptorConfigurer,\n private spinnerVisibility: SpinnerVisibilityService\n ) {\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 this.isVisible = toSignal(this.isVisible$);\n }\n\n ngOnInit(): void {\n this.nullifySpinnerIfEntryComponentIsDefined();\n this.initFilters();\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","@if (isVisible()) {\n <div id=\"spinner\"\n [class.backdrop]=\"backdrop()\"\n [style.opacity]=\"opacity()\"\n [ngStyle]=\"{'background-color': backdrop() ? backdropBackgroundColor() : 'transparent'}\">\n <ng-container *ngComponentOutlet=\"entryComponent()\"></ng-container>\n @switch (spinner()) {\n @case (spinkit.skCubeGrid) {\n <sk-cube-grid\n [backgroundColor]=\"backgroundColor()\">\n </sk-cube-grid>\n }\n @case (spinkit.skChasingDots) {\n <sk-chasing-dots\n [backgroundColor]=\"backgroundColor()\">\n </sk-chasing-dots>\n }\n @case (spinkit.skDoubleBounce) {\n <sk-double-bounce\n [backgroundColor]=\"backgroundColor()\">\n </sk-double-bounce>\n }\n @case (spinkit.skRotatingPlane) {\n <sk-rotating-plane\n [backgroundColor]=\"backgroundColor()\">\n </sk-rotating-plane>\n }\n @case (spinkit.skSpinnerPulse) {\n <sk-spinner-pulse\n [backgroundColor]=\"backgroundColor()\">\n </sk-spinner-pulse>\n }\n @case (spinkit.skThreeBounce) {\n <sk-three-bounce\n [backgroundColor]=\"backgroundColor()\">\n </sk-three-bounce>\n }\n @case (spinkit.skWanderingCubes) {\n <sk-wandering-cubes\n [backgroundColor]=\"backgroundColor()\">\n </sk-wandering-cubes>\n }\n @case (spinkit.skWave) {\n <sk-wave\n [backgroundColor]=\"backgroundColor()\">\n </sk-wave>\n }\n }\n </div>\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 { 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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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ng-http-loader",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "20.0.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/mpalourdio/ng-http-loader"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"keywords": [
|
|
13
13
|
"angular",
|
|
14
14
|
"ng2",
|
|
15
|
-
"
|
|
15
|
+
"ng22",
|
|
16
16
|
"loader",
|
|
17
17
|
"progressbar",
|
|
18
18
|
"spinner",
|
|
@@ -27,20 +27,21 @@
|
|
|
27
27
|
"tslib": "^2.3.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@angular/common": "^
|
|
31
|
-
"@angular/core": "^
|
|
30
|
+
"@angular/common": "^22.0.0",
|
|
31
|
+
"@angular/core": "^22.0.0",
|
|
32
32
|
"rxjs": "^7.8.0"
|
|
33
33
|
},
|
|
34
|
+
"sideEffects": false,
|
|
34
35
|
"module": "fesm2022/ng-http-loader.mjs",
|
|
35
|
-
"typings": "
|
|
36
|
+
"typings": "types/ng-http-loader.d.ts",
|
|
36
37
|
"exports": {
|
|
37
38
|
"./package.json": {
|
|
38
39
|
"default": "./package.json"
|
|
39
40
|
},
|
|
40
41
|
".": {
|
|
41
|
-
"types": "./
|
|
42
|
+
"types": "./types/ng-http-loader.d.ts",
|
|
42
43
|
"default": "./fesm2022/ng-http-loader.mjs"
|
|
43
44
|
}
|
|
44
45
|
},
|
|
45
|
-
"
|
|
46
|
+
"type": "module"
|
|
46
47
|
}
|
|
File without changes
|