wacom 16.2.1 → 16.2.2

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.
Files changed (39) hide show
  1. package/README.md +197 -197
  2. package/esm2022/lib/components/alert/alert.component.mjs +5 -5
  3. package/esm2022/lib/components/alert/wrapper/wrapper.component.mjs +5 -5
  4. package/esm2022/lib/components/files/files.component.mjs +5 -5
  5. package/esm2022/lib/components/loader/loader.component.mjs +5 -5
  6. package/esm2022/lib/components/modal/modal.component.mjs +5 -5
  7. package/esm2022/lib/directives/click-outside.directive.mjs +4 -4
  8. package/esm2022/lib/guard/meta.guard.mjs +4 -4
  9. package/esm2022/lib/interfaces/alert.interface.mjs +1 -1
  10. package/esm2022/lib/interfaces/config.mjs +1 -1
  11. package/esm2022/lib/interfaces/modal.interface.mjs +1 -1
  12. package/esm2022/lib/pipes/arr.pipe.mjs +4 -4
  13. package/esm2022/lib/pipes/mongodate.pipe.mjs +4 -4
  14. package/esm2022/lib/pipes/pagination.pipe.mjs +4 -4
  15. package/esm2022/lib/pipes/safe.pipe.mjs +4 -4
  16. package/esm2022/lib/pipes/search.pipe.mjs +4 -4
  17. package/esm2022/lib/pipes/splice.pipe.mjs +4 -4
  18. package/esm2022/lib/services/alert.service.mjs +4 -4
  19. package/esm2022/lib/services/base.service.mjs +4 -4
  20. package/esm2022/lib/services/core.service.mjs +4 -4
  21. package/esm2022/lib/services/crud.service.mjs +4 -4
  22. package/esm2022/lib/services/dom.service.mjs +4 -4
  23. package/esm2022/lib/services/file.service.mjs +4 -4
  24. package/esm2022/lib/services/hash.service.mjs +4 -4
  25. package/esm2022/lib/services/http.service.mjs +4 -4
  26. package/esm2022/lib/services/loader.service.mjs +4 -4
  27. package/esm2022/lib/services/meta.service.mjs +7 -7
  28. package/esm2022/lib/services/modal.service.mjs +4 -4
  29. package/esm2022/lib/services/mongo.service.mjs +5 -5
  30. package/esm2022/lib/services/render.service.mjs +4 -4
  31. package/esm2022/lib/services/socket.service.mjs +4 -4
  32. package/esm2022/lib/services/store.service.mjs +4 -4
  33. package/esm2022/lib/services/time.service.mjs +4 -4
  34. package/esm2022/lib/services/ui.service.mjs +4 -4
  35. package/esm2022/lib/wacom.module.mjs +5 -5
  36. package/esm2022/public-api.mjs +1 -1
  37. package/fesm2022/wacom.mjs +103 -103
  38. package/fesm2022/wacom.mjs.map +1 -1
  39. package/package.json +1 -1
package/README.md CHANGED
@@ -1,197 +1,197 @@
1
- # Angular (ngx) common
2
- Module which has common services and components which can be used on all projects.
3
-
4
- ## Getting Started
5
-
6
- ### License
7
- [MIT](LICENSE)
8
-
9
- ### Instalation
10
- ```bash
11
- $ npm i --save wacom
12
- ```
13
-
14
- ### Services
15
- | Name | Description |
16
- | ------- |:-----:|
17
- | [**`Core`**](https://www.npmjs.com/package/wacom#core-service) | Common supportive function which can be used in any service |
18
- | [**`Http`**](https://www.npmjs.com/package/wacom#http-service) | Http layer for HttpClient |
19
- | [**`Store`**](https://www.npmjs.com/package/wacom#store-service) | Service will is responsible for keeping information on the device |
20
- | [**`Hash`**](https://www.npmjs.com/package/wacom#hash-service) | Hash management for easily use, storage which stay in url |
21
- | [**`Render`**](https://www.npmjs.com/package/wacom#render-service) | Make not automated render management well structured |
22
- | [**`Meta`**](https://www.npmjs.com/package/wacom#meta-service) | Website meta tags management within router |
23
- | [**`Alert`**](https://www.npmjs.com/package/wacom#alert-service) | Alerts management |
24
- | [**`Modal`**](https://www.npmjs.com/package/wacom#modal-service) | Modals management |
25
- | [**`UI`**](https://www.npmjs.com/package/wacom#ui-service) | Supportive UI/UX service |
26
-
27
- ## Alert Service
28
- Alert Service is an suportive service for alerts manamanagement. Example of importing alert service:
29
- ```javascript
30
- import { AlertService } from 'wacom';
31
- constructor(private alert: AlertService){};
32
- ```
33
- ### show `function`
34
- Opens the alert and return htmlElement of this alert.
35
- Example 1:
36
- ```javascript
37
- let my_alert = alert.show({
38
- text: 'Are you sure?',
39
- type: 'question',
40
- timeout: 5000,
41
- class: 'myClass',
42
- position: 'bottomRight',
43
- buttons: [{
44
- text: 'YES',
45
- callback: ()=>{
46
- console.log("YES!");
47
- }
48
- },{
49
- text: 'NO',
50
- callback: ()=>{
51
- console.log("NO!");
52
- }
53
- }]
54
- });
55
- ```
56
- Example 2:
57
- ```javascript
58
- let my_alert = alert.show({
59
- component: MyCustomComponent,
60
- timeout: 5000,
61
- class: 'myClass',
62
- position: 'center',
63
- closable: true
64
- });
65
- ```
66
- ### options
67
- | Name | Type | Description |
68
- | --------------- |--------- | --------------- |
69
- | `text` | string | Text of alert. |
70
- | `type` | string | Type of alert(etc `info`, `success`, `warning`, `error`, `question`). |
71
- | `class` | string | Custom class for your alert. |
72
- | `unique` | string | Identificator for your alerts. |
73
- | `progress` | boolean | Enable timeout progress bar. |
74
- | `position` | string | Position of the alert(`topLeft`, `topCenter`, `topRight`, `right`, `bottomRight`, `bottomCenter`, `bottomLeft`, `left`, `center`). |
75
- | `timeout` | number | Amount in milliseconds to close the alert, 0 to disable. |
76
- | `closable` | boolean | Show "x" close button. |
77
- | `buttons` | number | Array of buttons for your alerts. |
78
- | `component` | string or @Component | Component which will be appended into the alert. |
79
- | `close` | function | custom function for close alert. |
80
- | `onClose` | function | Capture when the alert is closing. |
81
- ### destroy `function`
82
- Close all alerts. Example:
83
- ```javascript
84
- alert.destroy();
85
- ```
86
- ## Modal Service
87
- Modal Service is an suportive service for modals manamanagement. Example of importing modal service:
88
- ```javascript
89
- import { ModalService } from 'wacom';
90
- constructor(private modal: ModalService){};
91
- ```
92
- ### show `function`
93
- Opens the modal and return htmlElement of this modal. Example:
94
- ```javascript
95
- let my_modal = modal.show({
96
- component: MyCustomComponent,
97
- size: 'mid',
98
- timeout: 5000,
99
- class: 'myClass',
100
- position: 'center',
101
- closable: true
102
- });
103
- ```
104
- ### options
105
- | Name | Type | Description |
106
- | --------------- |--------- | --------------- |
107
- | `id` | string | |
108
- | `component` | string or @Component | Component which will be appended into the modal. |
109
- | `size` | string | Size of the modal. |
110
- | `timeout` | number | Amount in milliseconds to close the modal, 0 to disable. |
111
- | `class` | string | Custom class for your modal. |
112
- | `closable` | boolean | Show "x" close button. |
113
- | `unique` | string | Identificator for your modals. |
114
- | `close` | function | custom function for close modal. |
115
- | `onOpen` | function | Capture when the modal is opening. |
116
- | `onClose` | function | Capture when the modal is closing. |
117
- ### destroy `function`
118
- Close all modals. Example:
119
- ```javascript
120
- modal.destroy();
121
- ```
122
- ## Loader Service
123
- Loader Service is an suportive service for loaders manamanagement.Example of importing loader service:
124
- ```javascript
125
- import { LoaderService } from 'wacom';
126
- constructor(private load: LoaderService){};
127
- ```
128
- ### show `function`
129
- Opens the loader and return htmlElement of this loader. Example:
130
- ```javascript
131
- let my_loader = load.show({
132
- timeout: 5000,
133
- class: 'myClass',
134
- closable: true
135
- });
136
- ```
137
- ### options
138
- | Name | Type | Description |
139
- | --------------- |--------- | --------------- |
140
- | `append` | @Component | Component where the loader will be appended. |
141
- | `component` | string or @Component | Component which will be appended into the loader. |
142
- | `timeout` | number | Amount in milliseconds to close the loader, 0 to disable. |
143
- | `progress` | boolean | Enable timeout progress bar. |
144
- | `class` | string | Custom class for your loader. |
145
- | `closable` | boolean | Show "x" close button. |
146
- | `close` | function | custom function for close loader. |
147
- | `onClose` | function | Capture when the loader is closing. |
148
- ### destroy `function`
149
- Close all loaders. Example:
150
- ```javascript
151
- loader.destroy();
152
- ```
153
- ## UI/UX Service
154
- UI/UX Service is supportive service for front-end features. This service provides saving css varibles and containes helpful tools for the front developer.
155
- ### var
156
- Object which can be used to contain all needed fields for front-end.
157
- ### get `function`
158
- Returns Object with all saved css viriables.
159
- Example:
160
- ```javascript
161
- ui.get();
162
- ```
163
- Result example:
164
- ```javascript
165
- {
166
- test: '15px solid'
167
- }
168
- ```
169
- ### remove `function`
170
- Removes css varible by the key.
171
- Example:
172
- ```javascript
173
- ui.remove('css');
174
- ```
175
- ### set `function`
176
- Method interface sets a new value for a property on a CSS style declaration object and saves all css variables which you have passed.
177
- Example:
178
- ```javascript
179
- ui.set(variables, options);
180
- ```
181
- ```variables``` - All css varibles you want to pass. If you want to set array of variables you'll need to have specific structure of the array. Example: ```[{key: 'name', value: example}]```. Object will be saved with the same structure.
182
-
183
- ```options``` - If you want to save css variables to the localStorage you should pass ```local: true```. Also if you want to save variables only for specific host you should pass ```host: 'hostname'```
184
- ### arr `function`
185
- Helps developer to generate array with custom length and with elements of specific type.
186
- Example:
187
- ```html
188
- <div *ngFor="let obj of ui.arr(length, type)"></div>
189
- ```
190
- ```length``` - Length of generated array.
191
- ```type``` - ```'number'||'text'||'date'``` Will set elements with random content at choosed type. 'number' is default type of elements.
192
- ### text `function`
193
- Helps developer to generate random string with specific length.
194
- Example:
195
- ```html
196
- <span>{{ui.text(length)}}</span>
197
- ```
1
+ # Angular (ngx) common
2
+ Module which has common services and components which can be used on all projects.
3
+
4
+ ## Getting Started
5
+
6
+ ### License
7
+ [MIT](LICENSE)
8
+
9
+ ### Instalation
10
+ ```bash
11
+ $ npm i --save wacom
12
+ ```
13
+
14
+ ### Services
15
+ | Name | Description |
16
+ | ------- |:-----:|
17
+ | [**`Core`**](https://www.npmjs.com/package/wacom#core-service) | Common supportive function which can be used in any service |
18
+ | [**`Http`**](https://www.npmjs.com/package/wacom#http-service) | Http layer for HttpClient |
19
+ | [**`Store`**](https://www.npmjs.com/package/wacom#store-service) | Service will is responsible for keeping information on the device |
20
+ | [**`Hash`**](https://www.npmjs.com/package/wacom#hash-service) | Hash management for easily use, storage which stay in url |
21
+ | [**`Render`**](https://www.npmjs.com/package/wacom#render-service) | Make not automated render management well structured |
22
+ | [**`Meta`**](https://www.npmjs.com/package/wacom#meta-service) | Website meta tags management within router |
23
+ | [**`Alert`**](https://www.npmjs.com/package/wacom#alert-service) | Alerts management |
24
+ | [**`Modal`**](https://www.npmjs.com/package/wacom#modal-service) | Modals management |
25
+ | [**`UI`**](https://www.npmjs.com/package/wacom#ui-service) | Supportive UI/UX service |
26
+
27
+ ## Alert Service
28
+ Alert Service is an suportive service for alerts manamanagement. Example of importing alert service:
29
+ ```javascript
30
+ import { AlertService } from 'wacom';
31
+ constructor(private alert: AlertService){};
32
+ ```
33
+ ### show `function`
34
+ Opens the alert and return htmlElement of this alert.
35
+ Example 1:
36
+ ```javascript
37
+ let my_alert = alert.show({
38
+ text: 'Are you sure?',
39
+ type: 'question',
40
+ timeout: 5000,
41
+ class: 'myClass',
42
+ position: 'bottomRight',
43
+ buttons: [{
44
+ text: 'YES',
45
+ callback: ()=>{
46
+ console.log("YES!");
47
+ }
48
+ },{
49
+ text: 'NO',
50
+ callback: ()=>{
51
+ console.log("NO!");
52
+ }
53
+ }]
54
+ });
55
+ ```
56
+ Example 2:
57
+ ```javascript
58
+ let my_alert = alert.show({
59
+ component: MyCustomComponent,
60
+ timeout: 5000,
61
+ class: 'myClass',
62
+ position: 'center',
63
+ closable: true
64
+ });
65
+ ```
66
+ ### options
67
+ | Name | Type | Description |
68
+ | --------------- |--------- | --------------- |
69
+ | `text` | string | Text of alert. |
70
+ | `type` | string | Type of alert(etc `info`, `success`, `warning`, `error`, `question`). |
71
+ | `class` | string | Custom class for your alert. |
72
+ | `unique` | string | Identificator for your alerts. |
73
+ | `progress` | boolean | Enable timeout progress bar. |
74
+ | `position` | string | Position of the alert(`topLeft`, `topCenter`, `topRight`, `right`, `bottomRight`, `bottomCenter`, `bottomLeft`, `left`, `center`). |
75
+ | `timeout` | number | Amount in milliseconds to close the alert, 0 to disable. |
76
+ | `closable` | boolean | Show "x" close button. |
77
+ | `buttons` | number | Array of buttons for your alerts. |
78
+ | `component` | string or @Component | Component which will be appended into the alert. |
79
+ | `close` | function | custom function for close alert. |
80
+ | `onClose` | function | Capture when the alert is closing. |
81
+ ### destroy `function`
82
+ Close all alerts. Example:
83
+ ```javascript
84
+ alert.destroy();
85
+ ```
86
+ ## Modal Service
87
+ Modal Service is an suportive service for modals manamanagement. Example of importing modal service:
88
+ ```javascript
89
+ import { ModalService } from 'wacom';
90
+ constructor(private modal: ModalService){};
91
+ ```
92
+ ### show `function`
93
+ Opens the modal and return htmlElement of this modal. Example:
94
+ ```javascript
95
+ let my_modal = modal.show({
96
+ component: MyCustomComponent,
97
+ size: 'mid',
98
+ timeout: 5000,
99
+ class: 'myClass',
100
+ position: 'center',
101
+ closable: true
102
+ });
103
+ ```
104
+ ### options
105
+ | Name | Type | Description |
106
+ | --------------- |--------- | --------------- |
107
+ | `id` | string | |
108
+ | `component` | string or @Component | Component which will be appended into the modal. |
109
+ | `size` | string | Size of the modal. |
110
+ | `timeout` | number | Amount in milliseconds to close the modal, 0 to disable. |
111
+ | `class` | string | Custom class for your modal. |
112
+ | `closable` | boolean | Show "x" close button. |
113
+ | `unique` | string | Identificator for your modals. |
114
+ | `close` | function | custom function for close modal. |
115
+ | `onOpen` | function | Capture when the modal is opening. |
116
+ | `onClose` | function | Capture when the modal is closing. |
117
+ ### destroy `function`
118
+ Close all modals. Example:
119
+ ```javascript
120
+ modal.destroy();
121
+ ```
122
+ ## Loader Service
123
+ Loader Service is an suportive service for loaders manamanagement.Example of importing loader service:
124
+ ```javascript
125
+ import { LoaderService } from 'wacom';
126
+ constructor(private load: LoaderService){};
127
+ ```
128
+ ### show `function`
129
+ Opens the loader and return htmlElement of this loader. Example:
130
+ ```javascript
131
+ let my_loader = load.show({
132
+ timeout: 5000,
133
+ class: 'myClass',
134
+ closable: true
135
+ });
136
+ ```
137
+ ### options
138
+ | Name | Type | Description |
139
+ | --------------- |--------- | --------------- |
140
+ | `append` | @Component | Component where the loader will be appended. |
141
+ | `component` | string or @Component | Component which will be appended into the loader. |
142
+ | `timeout` | number | Amount in milliseconds to close the loader, 0 to disable. |
143
+ | `progress` | boolean | Enable timeout progress bar. |
144
+ | `class` | string | Custom class for your loader. |
145
+ | `closable` | boolean | Show "x" close button. |
146
+ | `close` | function | custom function for close loader. |
147
+ | `onClose` | function | Capture when the loader is closing. |
148
+ ### destroy `function`
149
+ Close all loaders. Example:
150
+ ```javascript
151
+ loader.destroy();
152
+ ```
153
+ ## UI/UX Service
154
+ UI/UX Service is supportive service for front-end features. This service provides saving css varibles and containes helpful tools for the front developer.
155
+ ### var
156
+ Object which can be used to contain all needed fields for front-end.
157
+ ### get `function`
158
+ Returns Object with all saved css viriables.
159
+ Example:
160
+ ```javascript
161
+ ui.get();
162
+ ```
163
+ Result example:
164
+ ```javascript
165
+ {
166
+ test: '15px solid'
167
+ }
168
+ ```
169
+ ### remove `function`
170
+ Removes css varible by the key.
171
+ Example:
172
+ ```javascript
173
+ ui.remove('css');
174
+ ```
175
+ ### set `function`
176
+ Method interface sets a new value for a property on a CSS style declaration object and saves all css variables which you have passed.
177
+ Example:
178
+ ```javascript
179
+ ui.set(variables, options);
180
+ ```
181
+ ```variables``` - All css varibles you want to pass. If you want to set array of variables you'll need to have specific structure of the array. Example: ```[{key: 'name', value: example}]```. Object will be saved with the same structure.
182
+
183
+ ```options``` - If you want to save css variables to the localStorage you should pass ```local: true```. Also if you want to save variables only for specific host you should pass ```host: 'hostname'```
184
+ ### arr `function`
185
+ Helps developer to generate array with custom length and with elements of specific type.
186
+ Example:
187
+ ```html
188
+ <div *ngFor="let obj of ui.arr(length, type)"></div>
189
+ ```
190
+ ```length``` - Length of generated array.
191
+ ```type``` - ```'number'||'text'||'date'``` Will set elements with random content at choosed type. 'number' is default type of elements.
192
+ ### text `function`
193
+ Helps developer to generate random string with specific length.
194
+ Example:
195
+ ```html
196
+ <span>{{ui.text(length)}}</span>
197
+ ```
@@ -45,14 +45,14 @@ export class AlertComponent {
45
45
  this.delete_animation = false;
46
46
  }, 350);
47
47
  }
48
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AlertComponent, deps: [{ token: i0.ElementRef }, { token: i1.CoreService }], target: i0.ɵɵFactoryTarget.Component });
49
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.11", type: AlertComponent, selector: "alert", viewQueries: [{ propertyName: "alert", first: true, predicate: ["alert"], descendants: true }], ngImport: i0, template: "<div [ngClass]=\"class\" class=\"waw-alert-container height\" [class._close]=\"delete_animation\">\r\n\t<div [class.waw-alert-color-blue]=\"type=='info'\" [class.waw-alert-color-red]=\"type=='error'\" [class.waw-alert-color-green]=\"type=='success'\" [class.waw-alert-color-orange]=\"type=='warning'\" [class.waw-alert-color-yellow]=\"type=='question'\" class=\"waw-alert bounceInUp waw-alert-theme-light waw-alert-animateInside waw-alert-opened\" #alert>\r\n\t\t<div class=\"waw-alert__progress\" *ngIf=\"progress\"><span [ngStyle]=\"{'animation-duration': (timeout+350)/1000+'s'}\"></span></div>\r\n\t\t<div class=\"waw-alert-body\">\r\n\t\t\t<div *ngIf=\"!component\" class=\"waw-alert-texts\">\r\n\t\t\t\t<div *ngIf=\"icon\" class=\"{{icon}}\"></div>\r\n\t\t\t\t<div class=\"waw-alert-message slideIn\">{{text}}</div>\r\n\t\t\t</div>\r\n\t\t\t<div *ngIf=\"!component&&type=='question'\">\r\n\t\t\t\t<button class=\"alert-btn\" *ngFor=\"let b of buttons\" (click)=\"remove(); b.callback&&b.callback();\">{{b.text}}</button>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"waw-alert__close\" *ngIf=\"closable\" (click)=\"remove()\"></div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: ["@keyframes iziT-bounceInUp{0%{opacity:0;transform:translateY(200px)}50%{opacity:1;transform:translateY(-10px)}70%{transform:translateY(5px)}to{transform:translateY(0)}}@keyframes iziT-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes iziT-fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}@keyframes iziT-fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}@keyframes iziT-bounceInLeft{0%{opacity:0;transform:translate(280px)}50%{opacity:1;transform:translate(-20px)}70%{transform:translate(10px)}to{transform:translate(0)}}@keyframes iziT-bounceInDown{0%{opacity:0;transform:translateY(-200px)}50%{opacity:1;transform:translateY(10px)}70%{transform:translateY(-5px)}to{transform:translateY(0)}}.alert-wrapper{position:fixed;bottom:50px;left:0;width:100%;height:60px;overflow:hidden}.alert{display:flex;align-items:center;width:auto;background:#3aed92;color:#fff;max-width:700px;margin:0 auto;transform:translateY(300px) scale(0);transition:.3s all ease-in-out}.alert._show{transform:translateY(0) scale(1);transition:.3s all ease-in-out}.alert-icon{min-width:60px;min-height:60px;position:relative;display:flex;justify-content:center;align-items:center;background-color:#2bd17d}.alert-icon:before{content:\"\";position:absolute;width:25px;height:25px;border-radius:50%;border:2px solid #fff}.alert-icon:after{content:\"\";position:absolute;top:22px;width:7px;height:11px;border:solid white;border-width:0 2px 2px 0;transform:rotate(45deg)}.alert-text{padding:0 20px;word-break:break-all;overflow:auto;height:60px}.alert-text .text-block{width:99%}.alert-text .text-block__text{text-overflow:ellipsis;overflow:hidden;white-space:pre}.alert-close{min-width:50px;margin-left:auto;font-size:25px;display:flex;justify-content:center;align-items:center}.font-bold{font-weight:700}.waw-alert__progress{bottom:0;position:absolute;width:100%;margin-bottom:0;border-radius:50px}.waw-alert__progress:hover span{animation-play-state:paused}.waw-alert__progress span{display:block;width:100%;height:2px;background-color:#a5a5a5ed;animation-name:waw-alert-progress;animation-duration:10s;border-radius:50px}.waw-alert__progress span._red{background-color:#ffafb4}.waw-alert__progress span._green{background-color:#a6efb8}.waw-alert__progress span._yellow{background-color:#fff9b2}.waw-alert__progress span._orange,.waw-alert__progress span._blue{background-color:#ffcfa5}.waw-alert__progress span._white{background-color:#fff}.waw-alert__progress span._black{background-color:#000}.waw-alert:hover .waw-alert__progress>span{animation-play-state:paused}.waw-alert__close{width:15px;height:15px;opacity:.3;position:relative;order:2}.waw-alert__close:hover{opacity:1}.waw-alert__close:before,.waw-alert__close:after{cursor:pointer;position:absolute;left:15px;content:\" \";height:12px;width:2px;background-color:#47525d}.waw-alert__close:before{transform:rotate(45deg)}.waw-alert__close:after{transform:rotate(-45deg)}@keyframes waw-alert-progress{0%{width:100%}to{width:0%}}.waw-alert-container{font-size:0;height:100px;width:100%;transform:translateZ(0);backface-visibility:hidden;transition:.3s all ease-in-out;opacity:1}.waw-alert-container._close{opacity:0;transition:.3s all ease-in-out}.waw-alert{display:inline-block;clear:both;position:relative;font-family:Lato,Tahoma,Arial;font-size:14px;padding:8px 25px 9px 0;background:rgba(238,238,238,.9);border-color:#eeeeeee6;width:100%;pointer-events:all;cursor:default;transform:translate(0);-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;min-height:54px}.waw-alert>.waw-alert-progressbar{position:absolute;left:0;bottom:0;width:100%;z-index:1;background:rgba(255,255,255,.2)}.waw-alert>.waw-alert-progressbar>div{height:2px;width:100%;background:rgba(0,0,0,.3);border-radius:0 0 3px 3px}.waw-alert>.waw-alert-close{position:absolute;right:0;top:0;border:0;padding:0;opacity:.6;width:42px;height:100%;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAJPAAACTwBcGfW0QAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAD3SURBVFiF1ZdtDoMgDEBfdi4PwAX8vLFn0qT7wxantojKupmQmCi8R4tSACpgjC2ICCUbEBa8ingjsU1AXRBeR8aLN64FiknswN8CYefBBDQ3whuFESy7WyQMeC0ipEI0A+0FeBvHUFN8xPaUhAH/iKoWsnXHGegy4J0yxialOfaHJAz4bhRzQzgDvdGnz4GbAonZbCQMuBm1K/kcFu8Mp1N2cFFpsxsMuJqqbIGExGl4loARajU1twskJLLhIsID7+tvUoDnIjTg5T9DPH9EBrz8rxjPzciAl9+O8SxI8CzJ8CxKFfh3ynK8Dyb8wNHM/XDqejx/AtNyPO87tNybAAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:8px;cursor:pointer;outline:none}.waw-alert>.waw-alert-close:hover{opacity:1}.waw-alert>.waw-alert-body{position:relative;padding:0 0 0 10px;height:auto;min-height:36px;margin:0 0 0 15px;text-align:left;display:flex;justify-content:space-between;align-items:center}.waw-alert>.waw-alert-body:after{content:\"\";display:table;clear:both}.waw-alert>.waw-alert-body .waw-alert-texts{margin:10px 0 0;padding-right:2px;display:inline-block;float:left;display:flex;justify-content:space-between;align-items:center}.waw-alert>.waw-alert-body .waw-alert-icon{height:100%;position:absolute;left:0;top:50%;display:table;font-size:23px;line-height:24px;margin-top:-12px;color:#000;width:24px;height:24px}.waw-alert>.waw-alert-body .waw-alert-title{padding:0;margin:0 10px 0 0;line-height:16px;font-size:14px;text-align:left;float:left;color:#000;white-space:normal;font-weight:700}.waw-alert>.waw-alert-body .waw-alert-message{padding:0;font-size:14px;line-height:16px;text-align:left;float:left;color:#0009;white-space:normal}@media only screen and (min-width: 568px){.waw-alert-wrapper{padding:10px 15px}.waw-alert{margin:5px;border-radius:3px;width:auto}.waw-alert:after{content:\"\";z-index:-1;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:3px;box-shadow:inset 0 -10px 20px -10px #0003,inset 0 0 5px #0000001a,0 8px 8px -5px #00000040}.waw-alert:not(.waw-alert-rtl) .waw-alert-cover{border-radius:3px 0 0 3px}.waw-alert.waw-alert-rtl .waw-alert-cover{border-radius:0 3px 3px 0}.waw-alert.waw-alert-color-dark:after{box-shadow:inset 0 -10px 20px -10px #ffffff4d,0 10px 10px -5px #00000040}.waw-alert.waw-alert-balloon .waw-alert-progressbar{background:transparent}.waw-alert.waw-alert-balloon:after{box-shadow:0 10px 10px -5px #00000040,inset 0 10px 20px -5px #00000040}.waw-alert-target .waw-alert:after{box-shadow:inset 0 -10px 20px -10px #0003,inset 0 0 5px #0000001a}}.waw-alert.waw-alert-theme-dark{background:#565c70;border-color:#565c70}.waw-alert.waw-alert-theme-dark .waw-alert-title{color:#fff}.waw-alert.waw-alert-theme-dark .waw-alert-message{color:#ffffffb3;font-weight:300}.waw-alert.waw-alert-theme-dark .waw-alert-icon{color:#fff}.waw-alert.waw-alert-color-red{background:rgba(255,175,180,.9);border-color:#ffafb4e6}.waw-alert.waw-alert-color-orange{background:rgba(255,207,165,.9);border-color:#ffcfa5e6}.waw-alert.waw-alert-color-yellow{background:rgba(255,249,178,.9);border-color:#fff9b2e6}.waw-alert.waw-alert-color-blue{background:rgba(157,222,255,.9);border-color:#9ddeffe6}.waw-alert.waw-alert-color-green{background:rgba(166,239,184,.9);border-color:#a6efb8e6}.waw-alert.slideIn,.waw-alert .slideIn{animation:iziT-slideIn 1s cubic-bezier(.16,.81,.32,1) both}.waw-alert.bounceInLeft{animation:iziT-bounceInLeft .7s ease-in-out both}.waw-alert.bounceInRight{animation:iziT-bounceInRight .85s ease-in-out both}.waw-alert.bounceInDown{animation:iziT-bounceInDown .7s ease-in-out both}.waw-alert.bounceInUp{animation:iziT-bounceInUp .7s ease-in-out both}.height{height:auto!important}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
48
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.10", ngImport: i0, type: AlertComponent, deps: [{ token: i0.ElementRef }, { token: i1.CoreService }], target: i0.ɵɵFactoryTarget.Component });
49
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.10", type: AlertComponent, selector: "alert", viewQueries: [{ propertyName: "alert", first: true, predicate: ["alert"], descendants: true }], ngImport: i0, template: "<div [ngClass]=\"class\" class=\"waw-alert-container height\" [class._close]=\"delete_animation\">\n\t<div [class.waw-alert-color-blue]=\"type=='info'\" [class.waw-alert-color-red]=\"type=='error'\" [class.waw-alert-color-green]=\"type=='success'\" [class.waw-alert-color-orange]=\"type=='warning'\" [class.waw-alert-color-yellow]=\"type=='question'\" class=\"waw-alert bounceInUp waw-alert-theme-light waw-alert-animateInside waw-alert-opened\" #alert>\n\t\t<div class=\"waw-alert__progress\" *ngIf=\"progress\"><span [ngStyle]=\"{'animation-duration': (timeout+350)/1000+'s'}\"></span></div>\n\t\t<div class=\"waw-alert-body\">\n\t\t\t<div *ngIf=\"!component\" class=\"waw-alert-texts\">\n\t\t\t\t<div *ngIf=\"icon\" class=\"{{icon}}\"></div>\n\t\t\t\t<div class=\"waw-alert-message slideIn\">{{text}}</div>\n\t\t\t</div>\n\t\t\t<div *ngIf=\"!component&&type=='question'\">\n\t\t\t\t<button class=\"alert-btn\" *ngFor=\"let b of buttons\" (click)=\"remove(); b.callback&&b.callback();\">{{b.text}}</button>\n\t\t\t</div>\n\t\t\t<div class=\"waw-alert__close\" *ngIf=\"closable\" (click)=\"remove()\"></div>\n\t\t</div>\n\t</div>\n</div>\n", styles: ["@keyframes iziT-bounceInUp{0%{opacity:0;transform:translateY(200px)}50%{opacity:1;transform:translateY(-10px)}70%{transform:translateY(5px)}to{transform:translateY(0)}}@keyframes iziT-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes iziT-fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}@keyframes iziT-fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}@keyframes iziT-bounceInLeft{0%{opacity:0;transform:translate(280px)}50%{opacity:1;transform:translate(-20px)}70%{transform:translate(10px)}to{transform:translate(0)}}@keyframes iziT-bounceInDown{0%{opacity:0;transform:translateY(-200px)}50%{opacity:1;transform:translateY(10px)}70%{transform:translateY(-5px)}to{transform:translateY(0)}}.alert-wrapper{position:fixed;bottom:50px;left:0;width:100%;height:60px;overflow:hidden}.alert{display:flex;align-items:center;width:auto;background:#3aed92;color:#fff;max-width:700px;margin:0 auto;transform:translateY(300px) scale(0);transition:.3s all ease-in-out}.alert._show{transform:translateY(0) scale(1);transition:.3s all ease-in-out}.alert-icon{min-width:60px;min-height:60px;position:relative;display:flex;justify-content:center;align-items:center;background-color:#2bd17d}.alert-icon:before{content:\"\";position:absolute;width:25px;height:25px;border-radius:50%;border:2px solid #fff}.alert-icon:after{content:\"\";position:absolute;top:22px;width:7px;height:11px;border:solid white;border-width:0 2px 2px 0;transform:rotate(45deg)}.alert-text{padding:0 20px;word-break:break-all;overflow:auto;height:60px}.alert-text .text-block{width:99%}.alert-text .text-block__text{text-overflow:ellipsis;overflow:hidden;white-space:pre}.alert-close{min-width:50px;margin-left:auto;font-size:25px;display:flex;justify-content:center;align-items:center}.font-bold{font-weight:700}.waw-alert__progress{bottom:0;position:absolute;width:100%;margin-bottom:0;border-radius:50px}.waw-alert__progress:hover span{animation-play-state:paused}.waw-alert__progress span{display:block;width:100%;height:2px;background-color:#a5a5a5ed;animation-name:waw-alert-progress;animation-duration:10s;border-radius:50px}.waw-alert__progress span._red{background-color:#ffafb4}.waw-alert__progress span._green{background-color:#a6efb8}.waw-alert__progress span._yellow{background-color:#fff9b2}.waw-alert__progress span._orange,.waw-alert__progress span._blue{background-color:#ffcfa5}.waw-alert__progress span._white{background-color:#fff}.waw-alert__progress span._black{background-color:#000}.waw-alert:hover .waw-alert__progress>span{animation-play-state:paused}.waw-alert__close{width:15px;height:15px;opacity:.3;position:relative;order:2}.waw-alert__close:hover{opacity:1}.waw-alert__close:before,.waw-alert__close:after{cursor:pointer;position:absolute;left:15px;content:\" \";height:12px;width:2px;background-color:#47525d}.waw-alert__close:before{transform:rotate(45deg)}.waw-alert__close:after{transform:rotate(-45deg)}@keyframes waw-alert-progress{0%{width:100%}to{width:0%}}.waw-alert-container{font-size:0;height:100px;width:100%;transform:translateZ(0);backface-visibility:hidden;transition:.3s all ease-in-out;opacity:1}.waw-alert-container._close{opacity:0;transition:.3s all ease-in-out}.waw-alert{display:inline-block;clear:both;position:relative;font-family:Lato,Tahoma,Arial;font-size:14px;padding:8px 25px 9px 0;background:rgba(238,238,238,.9);border-color:#eeeeeee6;width:100%;pointer-events:all;cursor:default;transform:translate(0);-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;min-height:54px}.waw-alert>.waw-alert-progressbar{position:absolute;left:0;bottom:0;width:100%;z-index:1;background:rgba(255,255,255,.2)}.waw-alert>.waw-alert-progressbar>div{height:2px;width:100%;background:rgba(0,0,0,.3);border-radius:0 0 3px 3px}.waw-alert>.waw-alert-close{position:absolute;right:0;top:0;border:0;padding:0;opacity:.6;width:42px;height:100%;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAJPAAACTwBcGfW0QAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAD3SURBVFiF1ZdtDoMgDEBfdi4PwAX8vLFn0qT7wxantojKupmQmCi8R4tSACpgjC2ICCUbEBa8ingjsU1AXRBeR8aLN64FiknswN8CYefBBDQ3whuFESy7WyQMeC0ipEI0A+0FeBvHUFN8xPaUhAH/iKoWsnXHGegy4J0yxialOfaHJAz4bhRzQzgDvdGnz4GbAonZbCQMuBm1K/kcFu8Mp1N2cFFpsxsMuJqqbIGExGl4loARajU1twskJLLhIsID7+tvUoDnIjTg5T9DPH9EBrz8rxjPzciAl9+O8SxI8CzJ8CxKFfh3ynK8Dyb8wNHM/XDqejx/AtNyPO87tNybAAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:8px;cursor:pointer;outline:none}.waw-alert>.waw-alert-close:hover{opacity:1}.waw-alert>.waw-alert-body{position:relative;padding:0 0 0 10px;height:auto;min-height:36px;margin:0 0 0 15px;text-align:left;display:flex;justify-content:space-between;align-items:center}.waw-alert>.waw-alert-body:after{content:\"\";display:table;clear:both}.waw-alert>.waw-alert-body .waw-alert-texts{margin:10px 0 0;padding-right:2px;display:inline-block;float:left;display:flex;justify-content:space-between;align-items:center}.waw-alert>.waw-alert-body .waw-alert-icon{height:100%;position:absolute;left:0;top:50%;display:table;font-size:23px;line-height:24px;margin-top:-12px;color:#000;width:24px;height:24px}.waw-alert>.waw-alert-body .waw-alert-title{padding:0;margin:0 10px 0 0;line-height:16px;font-size:14px;text-align:left;float:left;color:#000;white-space:normal;font-weight:700}.waw-alert>.waw-alert-body .waw-alert-message{padding:0;font-size:14px;line-height:16px;text-align:left;float:left;color:#0009;white-space:normal}@media only screen and (min-width: 568px){.waw-alert-wrapper{padding:10px 15px}.waw-alert{margin:5px;border-radius:3px;width:auto}.waw-alert:after{content:\"\";z-index:-1;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:3px;box-shadow:inset 0 -10px 20px -10px #0003,inset 0 0 5px #0000001a,0 8px 8px -5px #00000040}.waw-alert:not(.waw-alert-rtl) .waw-alert-cover{border-radius:3px 0 0 3px}.waw-alert.waw-alert-rtl .waw-alert-cover{border-radius:0 3px 3px 0}.waw-alert.waw-alert-color-dark:after{box-shadow:inset 0 -10px 20px -10px #ffffff4d,0 10px 10px -5px #00000040}.waw-alert.waw-alert-balloon .waw-alert-progressbar{background:transparent}.waw-alert.waw-alert-balloon:after{box-shadow:0 10px 10px -5px #00000040,inset 0 10px 20px -5px #00000040}.waw-alert-target .waw-alert:after{box-shadow:inset 0 -10px 20px -10px #0003,inset 0 0 5px #0000001a}}.waw-alert.waw-alert-theme-dark{background:#565c70;border-color:#565c70}.waw-alert.waw-alert-theme-dark .waw-alert-title{color:#fff}.waw-alert.waw-alert-theme-dark .waw-alert-message{color:#ffffffb3;font-weight:300}.waw-alert.waw-alert-theme-dark .waw-alert-icon{color:#fff}.waw-alert.waw-alert-color-red{background:rgba(255,175,180,.9);border-color:#ffafb4e6}.waw-alert.waw-alert-color-orange{background:rgba(255,207,165,.9);border-color:#ffcfa5e6}.waw-alert.waw-alert-color-yellow{background:rgba(255,249,178,.9);border-color:#fff9b2e6}.waw-alert.waw-alert-color-blue{background:rgba(157,222,255,.9);border-color:#9ddeffe6}.waw-alert.waw-alert-color-green{background:rgba(166,239,184,.9);border-color:#a6efb8e6}.waw-alert.slideIn,.waw-alert .slideIn{animation:iziT-slideIn 1s cubic-bezier(.16,.81,.32,1) both}.waw-alert.bounceInLeft{animation:iziT-bounceInLeft .7s ease-in-out both}.waw-alert.bounceInRight{animation:iziT-bounceInRight .85s ease-in-out both}.waw-alert.bounceInDown{animation:iziT-bounceInDown .7s ease-in-out both}.waw-alert.bounceInUp{animation:iziT-bounceInUp .7s ease-in-out both}.height{height:auto!important}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
50
50
  }
51
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AlertComponent, decorators: [{
51
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.10", ngImport: i0, type: AlertComponent, decorators: [{
52
52
  type: Component,
53
- args: [{ selector: 'alert', template: "<div [ngClass]=\"class\" class=\"waw-alert-container height\" [class._close]=\"delete_animation\">\r\n\t<div [class.waw-alert-color-blue]=\"type=='info'\" [class.waw-alert-color-red]=\"type=='error'\" [class.waw-alert-color-green]=\"type=='success'\" [class.waw-alert-color-orange]=\"type=='warning'\" [class.waw-alert-color-yellow]=\"type=='question'\" class=\"waw-alert bounceInUp waw-alert-theme-light waw-alert-animateInside waw-alert-opened\" #alert>\r\n\t\t<div class=\"waw-alert__progress\" *ngIf=\"progress\"><span [ngStyle]=\"{'animation-duration': (timeout+350)/1000+'s'}\"></span></div>\r\n\t\t<div class=\"waw-alert-body\">\r\n\t\t\t<div *ngIf=\"!component\" class=\"waw-alert-texts\">\r\n\t\t\t\t<div *ngIf=\"icon\" class=\"{{icon}}\"></div>\r\n\t\t\t\t<div class=\"waw-alert-message slideIn\">{{text}}</div>\r\n\t\t\t</div>\r\n\t\t\t<div *ngIf=\"!component&&type=='question'\">\r\n\t\t\t\t<button class=\"alert-btn\" *ngFor=\"let b of buttons\" (click)=\"remove(); b.callback&&b.callback();\">{{b.text}}</button>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"waw-alert__close\" *ngIf=\"closable\" (click)=\"remove()\"></div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n", styles: ["@keyframes iziT-bounceInUp{0%{opacity:0;transform:translateY(200px)}50%{opacity:1;transform:translateY(-10px)}70%{transform:translateY(5px)}to{transform:translateY(0)}}@keyframes iziT-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes iziT-fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}@keyframes iziT-fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}@keyframes iziT-bounceInLeft{0%{opacity:0;transform:translate(280px)}50%{opacity:1;transform:translate(-20px)}70%{transform:translate(10px)}to{transform:translate(0)}}@keyframes iziT-bounceInDown{0%{opacity:0;transform:translateY(-200px)}50%{opacity:1;transform:translateY(10px)}70%{transform:translateY(-5px)}to{transform:translateY(0)}}.alert-wrapper{position:fixed;bottom:50px;left:0;width:100%;height:60px;overflow:hidden}.alert{display:flex;align-items:center;width:auto;background:#3aed92;color:#fff;max-width:700px;margin:0 auto;transform:translateY(300px) scale(0);transition:.3s all ease-in-out}.alert._show{transform:translateY(0) scale(1);transition:.3s all ease-in-out}.alert-icon{min-width:60px;min-height:60px;position:relative;display:flex;justify-content:center;align-items:center;background-color:#2bd17d}.alert-icon:before{content:\"\";position:absolute;width:25px;height:25px;border-radius:50%;border:2px solid #fff}.alert-icon:after{content:\"\";position:absolute;top:22px;width:7px;height:11px;border:solid white;border-width:0 2px 2px 0;transform:rotate(45deg)}.alert-text{padding:0 20px;word-break:break-all;overflow:auto;height:60px}.alert-text .text-block{width:99%}.alert-text .text-block__text{text-overflow:ellipsis;overflow:hidden;white-space:pre}.alert-close{min-width:50px;margin-left:auto;font-size:25px;display:flex;justify-content:center;align-items:center}.font-bold{font-weight:700}.waw-alert__progress{bottom:0;position:absolute;width:100%;margin-bottom:0;border-radius:50px}.waw-alert__progress:hover span{animation-play-state:paused}.waw-alert__progress span{display:block;width:100%;height:2px;background-color:#a5a5a5ed;animation-name:waw-alert-progress;animation-duration:10s;border-radius:50px}.waw-alert__progress span._red{background-color:#ffafb4}.waw-alert__progress span._green{background-color:#a6efb8}.waw-alert__progress span._yellow{background-color:#fff9b2}.waw-alert__progress span._orange,.waw-alert__progress span._blue{background-color:#ffcfa5}.waw-alert__progress span._white{background-color:#fff}.waw-alert__progress span._black{background-color:#000}.waw-alert:hover .waw-alert__progress>span{animation-play-state:paused}.waw-alert__close{width:15px;height:15px;opacity:.3;position:relative;order:2}.waw-alert__close:hover{opacity:1}.waw-alert__close:before,.waw-alert__close:after{cursor:pointer;position:absolute;left:15px;content:\" \";height:12px;width:2px;background-color:#47525d}.waw-alert__close:before{transform:rotate(45deg)}.waw-alert__close:after{transform:rotate(-45deg)}@keyframes waw-alert-progress{0%{width:100%}to{width:0%}}.waw-alert-container{font-size:0;height:100px;width:100%;transform:translateZ(0);backface-visibility:hidden;transition:.3s all ease-in-out;opacity:1}.waw-alert-container._close{opacity:0;transition:.3s all ease-in-out}.waw-alert{display:inline-block;clear:both;position:relative;font-family:Lato,Tahoma,Arial;font-size:14px;padding:8px 25px 9px 0;background:rgba(238,238,238,.9);border-color:#eeeeeee6;width:100%;pointer-events:all;cursor:default;transform:translate(0);-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;min-height:54px}.waw-alert>.waw-alert-progressbar{position:absolute;left:0;bottom:0;width:100%;z-index:1;background:rgba(255,255,255,.2)}.waw-alert>.waw-alert-progressbar>div{height:2px;width:100%;background:rgba(0,0,0,.3);border-radius:0 0 3px 3px}.waw-alert>.waw-alert-close{position:absolute;right:0;top:0;border:0;padding:0;opacity:.6;width:42px;height:100%;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAJPAAACTwBcGfW0QAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAD3SURBVFiF1ZdtDoMgDEBfdi4PwAX8vLFn0qT7wxantojKupmQmCi8R4tSACpgjC2ICCUbEBa8ingjsU1AXRBeR8aLN64FiknswN8CYefBBDQ3whuFESy7WyQMeC0ipEI0A+0FeBvHUFN8xPaUhAH/iKoWsnXHGegy4J0yxialOfaHJAz4bhRzQzgDvdGnz4GbAonZbCQMuBm1K/kcFu8Mp1N2cFFpsxsMuJqqbIGExGl4loARajU1twskJLLhIsID7+tvUoDnIjTg5T9DPH9EBrz8rxjPzciAl9+O8SxI8CzJ8CxKFfh3ynK8Dyb8wNHM/XDqejx/AtNyPO87tNybAAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:8px;cursor:pointer;outline:none}.waw-alert>.waw-alert-close:hover{opacity:1}.waw-alert>.waw-alert-body{position:relative;padding:0 0 0 10px;height:auto;min-height:36px;margin:0 0 0 15px;text-align:left;display:flex;justify-content:space-between;align-items:center}.waw-alert>.waw-alert-body:after{content:\"\";display:table;clear:both}.waw-alert>.waw-alert-body .waw-alert-texts{margin:10px 0 0;padding-right:2px;display:inline-block;float:left;display:flex;justify-content:space-between;align-items:center}.waw-alert>.waw-alert-body .waw-alert-icon{height:100%;position:absolute;left:0;top:50%;display:table;font-size:23px;line-height:24px;margin-top:-12px;color:#000;width:24px;height:24px}.waw-alert>.waw-alert-body .waw-alert-title{padding:0;margin:0 10px 0 0;line-height:16px;font-size:14px;text-align:left;float:left;color:#000;white-space:normal;font-weight:700}.waw-alert>.waw-alert-body .waw-alert-message{padding:0;font-size:14px;line-height:16px;text-align:left;float:left;color:#0009;white-space:normal}@media only screen and (min-width: 568px){.waw-alert-wrapper{padding:10px 15px}.waw-alert{margin:5px;border-radius:3px;width:auto}.waw-alert:after{content:\"\";z-index:-1;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:3px;box-shadow:inset 0 -10px 20px -10px #0003,inset 0 0 5px #0000001a,0 8px 8px -5px #00000040}.waw-alert:not(.waw-alert-rtl) .waw-alert-cover{border-radius:3px 0 0 3px}.waw-alert.waw-alert-rtl .waw-alert-cover{border-radius:0 3px 3px 0}.waw-alert.waw-alert-color-dark:after{box-shadow:inset 0 -10px 20px -10px #ffffff4d,0 10px 10px -5px #00000040}.waw-alert.waw-alert-balloon .waw-alert-progressbar{background:transparent}.waw-alert.waw-alert-balloon:after{box-shadow:0 10px 10px -5px #00000040,inset 0 10px 20px -5px #00000040}.waw-alert-target .waw-alert:after{box-shadow:inset 0 -10px 20px -10px #0003,inset 0 0 5px #0000001a}}.waw-alert.waw-alert-theme-dark{background:#565c70;border-color:#565c70}.waw-alert.waw-alert-theme-dark .waw-alert-title{color:#fff}.waw-alert.waw-alert-theme-dark .waw-alert-message{color:#ffffffb3;font-weight:300}.waw-alert.waw-alert-theme-dark .waw-alert-icon{color:#fff}.waw-alert.waw-alert-color-red{background:rgba(255,175,180,.9);border-color:#ffafb4e6}.waw-alert.waw-alert-color-orange{background:rgba(255,207,165,.9);border-color:#ffcfa5e6}.waw-alert.waw-alert-color-yellow{background:rgba(255,249,178,.9);border-color:#fff9b2e6}.waw-alert.waw-alert-color-blue{background:rgba(157,222,255,.9);border-color:#9ddeffe6}.waw-alert.waw-alert-color-green{background:rgba(166,239,184,.9);border-color:#a6efb8e6}.waw-alert.slideIn,.waw-alert .slideIn{animation:iziT-slideIn 1s cubic-bezier(.16,.81,.32,1) both}.waw-alert.bounceInLeft{animation:iziT-bounceInLeft .7s ease-in-out both}.waw-alert.bounceInRight{animation:iziT-bounceInRight .85s ease-in-out both}.waw-alert.bounceInDown{animation:iziT-bounceInDown .7s ease-in-out both}.waw-alert.bounceInUp{animation:iziT-bounceInUp .7s ease-in-out both}.height{height:auto!important}\n"] }]
53
+ args: [{ selector: 'alert', template: "<div [ngClass]=\"class\" class=\"waw-alert-container height\" [class._close]=\"delete_animation\">\n\t<div [class.waw-alert-color-blue]=\"type=='info'\" [class.waw-alert-color-red]=\"type=='error'\" [class.waw-alert-color-green]=\"type=='success'\" [class.waw-alert-color-orange]=\"type=='warning'\" [class.waw-alert-color-yellow]=\"type=='question'\" class=\"waw-alert bounceInUp waw-alert-theme-light waw-alert-animateInside waw-alert-opened\" #alert>\n\t\t<div class=\"waw-alert__progress\" *ngIf=\"progress\"><span [ngStyle]=\"{'animation-duration': (timeout+350)/1000+'s'}\"></span></div>\n\t\t<div class=\"waw-alert-body\">\n\t\t\t<div *ngIf=\"!component\" class=\"waw-alert-texts\">\n\t\t\t\t<div *ngIf=\"icon\" class=\"{{icon}}\"></div>\n\t\t\t\t<div class=\"waw-alert-message slideIn\">{{text}}</div>\n\t\t\t</div>\n\t\t\t<div *ngIf=\"!component&&type=='question'\">\n\t\t\t\t<button class=\"alert-btn\" *ngFor=\"let b of buttons\" (click)=\"remove(); b.callback&&b.callback();\">{{b.text}}</button>\n\t\t\t</div>\n\t\t\t<div class=\"waw-alert__close\" *ngIf=\"closable\" (click)=\"remove()\"></div>\n\t\t</div>\n\t</div>\n</div>\n", styles: ["@keyframes iziT-bounceInUp{0%{opacity:0;transform:translateY(200px)}50%{opacity:1;transform:translateY(-10px)}70%{transform:translateY(5px)}to{transform:translateY(0)}}@keyframes iziT-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes iziT-fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}@keyframes iziT-fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}@keyframes iziT-bounceInLeft{0%{opacity:0;transform:translate(280px)}50%{opacity:1;transform:translate(-20px)}70%{transform:translate(10px)}to{transform:translate(0)}}@keyframes iziT-bounceInDown{0%{opacity:0;transform:translateY(-200px)}50%{opacity:1;transform:translateY(10px)}70%{transform:translateY(-5px)}to{transform:translateY(0)}}.alert-wrapper{position:fixed;bottom:50px;left:0;width:100%;height:60px;overflow:hidden}.alert{display:flex;align-items:center;width:auto;background:#3aed92;color:#fff;max-width:700px;margin:0 auto;transform:translateY(300px) scale(0);transition:.3s all ease-in-out}.alert._show{transform:translateY(0) scale(1);transition:.3s all ease-in-out}.alert-icon{min-width:60px;min-height:60px;position:relative;display:flex;justify-content:center;align-items:center;background-color:#2bd17d}.alert-icon:before{content:\"\";position:absolute;width:25px;height:25px;border-radius:50%;border:2px solid #fff}.alert-icon:after{content:\"\";position:absolute;top:22px;width:7px;height:11px;border:solid white;border-width:0 2px 2px 0;transform:rotate(45deg)}.alert-text{padding:0 20px;word-break:break-all;overflow:auto;height:60px}.alert-text .text-block{width:99%}.alert-text .text-block__text{text-overflow:ellipsis;overflow:hidden;white-space:pre}.alert-close{min-width:50px;margin-left:auto;font-size:25px;display:flex;justify-content:center;align-items:center}.font-bold{font-weight:700}.waw-alert__progress{bottom:0;position:absolute;width:100%;margin-bottom:0;border-radius:50px}.waw-alert__progress:hover span{animation-play-state:paused}.waw-alert__progress span{display:block;width:100%;height:2px;background-color:#a5a5a5ed;animation-name:waw-alert-progress;animation-duration:10s;border-radius:50px}.waw-alert__progress span._red{background-color:#ffafb4}.waw-alert__progress span._green{background-color:#a6efb8}.waw-alert__progress span._yellow{background-color:#fff9b2}.waw-alert__progress span._orange,.waw-alert__progress span._blue{background-color:#ffcfa5}.waw-alert__progress span._white{background-color:#fff}.waw-alert__progress span._black{background-color:#000}.waw-alert:hover .waw-alert__progress>span{animation-play-state:paused}.waw-alert__close{width:15px;height:15px;opacity:.3;position:relative;order:2}.waw-alert__close:hover{opacity:1}.waw-alert__close:before,.waw-alert__close:after{cursor:pointer;position:absolute;left:15px;content:\" \";height:12px;width:2px;background-color:#47525d}.waw-alert__close:before{transform:rotate(45deg)}.waw-alert__close:after{transform:rotate(-45deg)}@keyframes waw-alert-progress{0%{width:100%}to{width:0%}}.waw-alert-container{font-size:0;height:100px;width:100%;transform:translateZ(0);backface-visibility:hidden;transition:.3s all ease-in-out;opacity:1}.waw-alert-container._close{opacity:0;transition:.3s all ease-in-out}.waw-alert{display:inline-block;clear:both;position:relative;font-family:Lato,Tahoma,Arial;font-size:14px;padding:8px 25px 9px 0;background:rgba(238,238,238,.9);border-color:#eeeeeee6;width:100%;pointer-events:all;cursor:default;transform:translate(0);-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;min-height:54px}.waw-alert>.waw-alert-progressbar{position:absolute;left:0;bottom:0;width:100%;z-index:1;background:rgba(255,255,255,.2)}.waw-alert>.waw-alert-progressbar>div{height:2px;width:100%;background:rgba(0,0,0,.3);border-radius:0 0 3px 3px}.waw-alert>.waw-alert-close{position:absolute;right:0;top:0;border:0;padding:0;opacity:.6;width:42px;height:100%;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAJPAAACTwBcGfW0QAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAD3SURBVFiF1ZdtDoMgDEBfdi4PwAX8vLFn0qT7wxantojKupmQmCi8R4tSACpgjC2ICCUbEBa8ingjsU1AXRBeR8aLN64FiknswN8CYefBBDQ3whuFESy7WyQMeC0ipEI0A+0FeBvHUFN8xPaUhAH/iKoWsnXHGegy4J0yxialOfaHJAz4bhRzQzgDvdGnz4GbAonZbCQMuBm1K/kcFu8Mp1N2cFFpsxsMuJqqbIGExGl4loARajU1twskJLLhIsID7+tvUoDnIjTg5T9DPH9EBrz8rxjPzciAl9+O8SxI8CzJ8CxKFfh3ynK8Dyb8wNHM/XDqejx/AtNyPO87tNybAAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:8px;cursor:pointer;outline:none}.waw-alert>.waw-alert-close:hover{opacity:1}.waw-alert>.waw-alert-body{position:relative;padding:0 0 0 10px;height:auto;min-height:36px;margin:0 0 0 15px;text-align:left;display:flex;justify-content:space-between;align-items:center}.waw-alert>.waw-alert-body:after{content:\"\";display:table;clear:both}.waw-alert>.waw-alert-body .waw-alert-texts{margin:10px 0 0;padding-right:2px;display:inline-block;float:left;display:flex;justify-content:space-between;align-items:center}.waw-alert>.waw-alert-body .waw-alert-icon{height:100%;position:absolute;left:0;top:50%;display:table;font-size:23px;line-height:24px;margin-top:-12px;color:#000;width:24px;height:24px}.waw-alert>.waw-alert-body .waw-alert-title{padding:0;margin:0 10px 0 0;line-height:16px;font-size:14px;text-align:left;float:left;color:#000;white-space:normal;font-weight:700}.waw-alert>.waw-alert-body .waw-alert-message{padding:0;font-size:14px;line-height:16px;text-align:left;float:left;color:#0009;white-space:normal}@media only screen and (min-width: 568px){.waw-alert-wrapper{padding:10px 15px}.waw-alert{margin:5px;border-radius:3px;width:auto}.waw-alert:after{content:\"\";z-index:-1;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:3px;box-shadow:inset 0 -10px 20px -10px #0003,inset 0 0 5px #0000001a,0 8px 8px -5px #00000040}.waw-alert:not(.waw-alert-rtl) .waw-alert-cover{border-radius:3px 0 0 3px}.waw-alert.waw-alert-rtl .waw-alert-cover{border-radius:0 3px 3px 0}.waw-alert.waw-alert-color-dark:after{box-shadow:inset 0 -10px 20px -10px #ffffff4d,0 10px 10px -5px #00000040}.waw-alert.waw-alert-balloon .waw-alert-progressbar{background:transparent}.waw-alert.waw-alert-balloon:after{box-shadow:0 10px 10px -5px #00000040,inset 0 10px 20px -5px #00000040}.waw-alert-target .waw-alert:after{box-shadow:inset 0 -10px 20px -10px #0003,inset 0 0 5px #0000001a}}.waw-alert.waw-alert-theme-dark{background:#565c70;border-color:#565c70}.waw-alert.waw-alert-theme-dark .waw-alert-title{color:#fff}.waw-alert.waw-alert-theme-dark .waw-alert-message{color:#ffffffb3;font-weight:300}.waw-alert.waw-alert-theme-dark .waw-alert-icon{color:#fff}.waw-alert.waw-alert-color-red{background:rgba(255,175,180,.9);border-color:#ffafb4e6}.waw-alert.waw-alert-color-orange{background:rgba(255,207,165,.9);border-color:#ffcfa5e6}.waw-alert.waw-alert-color-yellow{background:rgba(255,249,178,.9);border-color:#fff9b2e6}.waw-alert.waw-alert-color-blue{background:rgba(157,222,255,.9);border-color:#9ddeffe6}.waw-alert.waw-alert-color-green{background:rgba(166,239,184,.9);border-color:#a6efb8e6}.waw-alert.slideIn,.waw-alert .slideIn{animation:iziT-slideIn 1s cubic-bezier(.16,.81,.32,1) both}.waw-alert.bounceInLeft{animation:iziT-bounceInLeft .7s ease-in-out both}.waw-alert.bounceInRight{animation:iziT-bounceInRight .85s ease-in-out both}.waw-alert.bounceInDown{animation:iziT-bounceInDown .7s ease-in-out both}.waw-alert.bounceInUp{animation:iziT-bounceInUp .7s ease-in-out both}.height{height:auto!important}\n"] }]
54
54
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.CoreService }]; }, propDecorators: { alert: [{
55
55
  type: ViewChild,
56
56
  args: ['alert', { static: false }]
57
57
  }] } });
58
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvd2Fjb20vc3JjL2xpYi9jb21wb25lbnRzL2FsZXJ0L2FsZXJ0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhY29tL3NyYy9saWIvY29tcG9uZW50cy9hbGVydC9hbGVydC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFjLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQzs7OztBQVNoRSxNQUFNLE9BQU8sY0FBYztJQWNOO0lBQStCO0lBYmYsS0FBSyxDQUFLO0lBQ3ZDLFNBQVMsQ0FBTTtJQUNmLElBQUksR0FBVyxFQUFFLENBQUM7SUFDbEIsS0FBSyxHQUFXLEVBQUUsQ0FBQztJQUNuQixJQUFJLEdBQVcsTUFBTSxDQUFDO0lBQ3RCLFFBQVEsR0FBWSxJQUFJLENBQUM7SUFDekIsUUFBUSxHQUFXLGFBQWEsQ0FBQyxDQUFDLGtGQUFrRjtJQUNwSCxJQUFJLEdBQVcsRUFBRSxDQUFDO0lBQ2xCLE9BQU8sR0FBUSxJQUFJLENBQUM7SUFDcEIsS0FBSyxDQUFNO0lBQ1gsUUFBUSxHQUFRLElBQUksQ0FBQztJQUNyQixPQUFPLEdBQVEsRUFBRSxDQUFDLENBQUMsc0JBQXNCO0lBRWhELFlBQW9CLFVBQXNCLEVBQVMsSUFBaUI7UUFBaEQsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQUFTLFNBQUksR0FBSixJQUFJLENBQWE7UUFDbkUsVUFBVSxDQUFDLEdBQUUsRUFBRTtZQUNkLElBQUcsSUFBSSxDQUFDLE9BQU8sRUFBQztnQkFDZixJQUFJLFNBQVMsR0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7Z0JBQ3ZELElBQUksS0FBSyxHQUFDLFVBQVUsQ0FBQyxHQUFFLEVBQUUsR0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUEsQ0FBQSxDQUFDLEVBQUUsU0FBUyxDQUFDLENBQUM7Z0JBQ3JELElBQUksS0FBSyxHQUFHLElBQUksSUFBSSxFQUFFLENBQUM7Z0JBQ3ZCLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDLGdCQUFnQixDQUFDLFlBQVksRUFBRSxHQUFFLEVBQUU7b0JBQzNELFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztvQkFDcEIsU0FBUyxJQUFJLElBQUksSUFBSSxFQUFFLENBQUMsT0FBTyxFQUFFLEdBQUcsS0FBSyxDQUFDLE9BQU8sRUFBRSxDQUFDO2dCQUNyRCxDQUFDLEVBQUUsS0FBSyxDQUFDLENBQUM7Z0JBQ1YsSUFBSSxDQUFDLEtBQUssQ0FBQyxhQUFhLENBQUMsZ0JBQWdCLENBQUMsWUFBWSxFQUFFLEdBQUUsRUFBRTtvQkFDM0QsS0FBSyxHQUFHLElBQUksSUFBSSxFQUFFLENBQUM7b0JBQ25CLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztvQkFDcEIsS0FBSyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLEdBQUUsRUFBRSxHQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQSxDQUFBLENBQUMsRUFBRSxTQUFTLENBQUMsQ0FBQztnQkFDaEUsQ0FBQyxFQUFFLEtBQUssQ0FBQyxDQUFDO2FBQ1Y7UUFDRixDQUFDLENBQUMsQ0FBQztJQUNKLENBQUM7SUFDTSxnQkFBZ0IsR0FBQyxLQUFLLENBQUM7SUFDOUIsTUFBTTtRQUNMLElBQUksQ0FBQyxnQkFBZ0IsR0FBQyxJQUFJLENBQUM7UUFDM0IsVUFBVSxDQUFDLEdBQUUsRUFBRTtZQUNkLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUNiLElBQUksQ0FBQyxnQkFBZ0IsR0FBQyxLQUFLLENBQUM7UUFDN0IsQ0FBQyxFQUFDLEdBQUcsQ0FBQyxDQUFDO0lBRVIsQ0FBQzt3R0F4Q1csY0FBYzs0RkFBZCxjQUFjLDZJQ1QzQixxcENBZUE7OzRGRE5hLGNBQWM7a0JBTjFCLFNBQVM7K0JBQ0MsT0FBTzsySEFNbUIsS0FBSztzQkFBeEMsU0FBUzt1QkFBQyxPQUFPLEVBQUUsRUFBQyxNQUFNLEVBQUMsS0FBSyxFQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBWaWV3Q2hpbGR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDb3JlU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2NvcmUuc2VydmljZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuXHRzZWxlY3RvcjogJ2FsZXJ0JyxcclxuXHR0ZW1wbGF0ZVVybDogJy4vYWxlcnQuY29tcG9uZW50Lmh0bWwnLFxyXG5cdHN0eWxlVXJsczogWycuL2FsZXJ0LmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuXHJcbmV4cG9ydCBjbGFzcyBBbGVydENvbXBvbmVudCB7XHJcblx0QFZpZXdDaGlsZCgnYWxlcnQnLCB7c3RhdGljOmZhbHNlfSkgYWxlcnQ6YW55O1xyXG5cdHB1YmxpYyBjb21wb25lbnQ6IGFueTtcclxuXHRwdWJsaWMgdGV4dDogc3RyaW5nID0gXCJcIjtcclxuXHRwdWJsaWMgY2xhc3M6IHN0cmluZyA9IFwiXCI7XHJcblx0cHVibGljIHR5cGU6IHN0cmluZyA9IFwiaW5mb1wiO1xyXG5cdHB1YmxpYyBwcm9ncmVzczogYm9vbGVhbiA9IHRydWU7XHJcblx0cHVibGljIHBvc2l0aW9uOiBzdHJpbmcgPSAnYm90dG9tUmlnaHQnOyAvLyBbYm90dG9tUmlnaHQsIGJvdHRvbUxlZnQsIHRvcFJpZ2h0LCB0b3BMZWZ0LCB0b3BDZW50ZXIsIGJvdHRvbUNlbnRlciBvciBjZW50ZXJdXHJcblx0cHVibGljIGljb246IHN0cmluZyA9ICcnO1xyXG5cdHB1YmxpYyB0aW1lb3V0OiBhbnkgPSA1MDAwO1xyXG5cdHB1YmxpYyBjbG9zZTogYW55O1xyXG5cdHB1YmxpYyBjbG9zYWJsZTogYW55ID0gdHJ1ZTtcclxuXHRwdWJsaWMgYnV0dG9uczogYW55ID0gW107IC8qW3t0ZXh0LCBjYWxsYmFja31dKi9cclxuXHJcblx0Y29uc3RydWN0b3IocHJpdmF0ZSBlbGVtZW50UmVmOiBFbGVtZW50UmVmLCBwdWJsaWMgY29yZTogQ29yZVNlcnZpY2UpIHtcclxuXHRcdHNldFRpbWVvdXQoKCk9PntcclxuXHRcdFx0aWYodGhpcy50aW1lb3V0KXtcclxuXHRcdFx0XHRsZXQgcmVtYWluaW5nPUpTT04ucGFyc2UoSlNPTi5zdHJpbmdpZnkodGhpcy50aW1lb3V0KSk7XHJcblx0XHRcdFx0bGV0IHRpbWVyPXNldFRpbWVvdXQoKCk9Pnt0aGlzLnJlbW92ZSgpfSwgcmVtYWluaW5nKTtcclxuXHRcdFx0XHRsZXQgc3RhcnQgPSBuZXcgRGF0ZSgpO1xyXG5cdFx0XHRcdHRoaXMuYWxlcnQubmF0aXZlRWxlbWVudC5hZGRFdmVudExpc3RlbmVyKFwibW91c2VlbnRlclwiLCAoKT0+e1xyXG5cdFx0XHRcdFx0Y2xlYXJUaW1lb3V0KHRpbWVyKTtcclxuXHRcdFx0XHRcdHJlbWFpbmluZyAtPSBuZXcgRGF0ZSgpLmdldFRpbWUoKSAtIHN0YXJ0LmdldFRpbWUoKTtcclxuXHRcdFx0XHR9LCBmYWxzZSk7XHJcblx0XHRcdFx0dGhpcy5hbGVydC5uYXRpdmVFbGVtZW50LmFkZEV2ZW50TGlzdGVuZXIoXCJtb3VzZWxlYXZlXCIsICgpPT57XHJcblx0XHRcdFx0XHRzdGFydCA9IG5ldyBEYXRlKCk7XHJcblx0XHRcdFx0XHRjbGVhclRpbWVvdXQodGltZXIpO1xyXG5cdFx0XHRcdFx0dGltZXIgPSBjb3JlLndpbmRvdy5zZXRUaW1lb3V0KCgpPT57dGhpcy5yZW1vdmUoKX0sIHJlbWFpbmluZyk7XHJcblx0XHRcdFx0fSwgZmFsc2UpO1xyXG5cdFx0XHR9XHJcblx0XHR9KTtcclxuXHR9XHJcblx0cHVibGljIGRlbGV0ZV9hbmltYXRpb249ZmFsc2U7XHJcblx0cmVtb3ZlKCl7XHJcblx0XHR0aGlzLmRlbGV0ZV9hbmltYXRpb249dHJ1ZTtcclxuXHRcdHNldFRpbWVvdXQoKCk9PntcclxuXHRcdFx0dGhpcy5jbG9zZSgpO1xyXG5cdFx0XHR0aGlzLmRlbGV0ZV9hbmltYXRpb249ZmFsc2U7XHJcblx0XHR9LDM1MCk7XHJcblxyXG5cdH1cclxufVxyXG4iLCI8ZGl2IFtuZ0NsYXNzXT1cImNsYXNzXCIgY2xhc3M9XCJ3YXctYWxlcnQtY29udGFpbmVyIGhlaWdodFwiIFtjbGFzcy5fY2xvc2VdPVwiZGVsZXRlX2FuaW1hdGlvblwiPlxyXG5cdDxkaXYgW2NsYXNzLndhdy1hbGVydC1jb2xvci1ibHVlXT1cInR5cGU9PSdpbmZvJ1wiIFtjbGFzcy53YXctYWxlcnQtY29sb3ItcmVkXT1cInR5cGU9PSdlcnJvcidcIiBbY2xhc3Mud2F3LWFsZXJ0LWNvbG9yLWdyZWVuXT1cInR5cGU9PSdzdWNjZXNzJ1wiIFtjbGFzcy53YXctYWxlcnQtY29sb3Itb3JhbmdlXT1cInR5cGU9PSd3YXJuaW5nJ1wiIFtjbGFzcy53YXctYWxlcnQtY29sb3IteWVsbG93XT1cInR5cGU9PSdxdWVzdGlvbidcIiBjbGFzcz1cIndhdy1hbGVydCBib3VuY2VJblVwIHdhdy1hbGVydC10aGVtZS1saWdodCAgd2F3LWFsZXJ0LWFuaW1hdGVJbnNpZGUgd2F3LWFsZXJ0LW9wZW5lZFwiICNhbGVydD5cclxuXHRcdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnRfX3Byb2dyZXNzXCIgKm5nSWY9XCJwcm9ncmVzc1wiPjxzcGFuIFtuZ1N0eWxlXT1cInsnYW5pbWF0aW9uLWR1cmF0aW9uJzogKHRpbWVvdXQrMzUwKS8xMDAwKydzJ31cIj48L3NwYW4+PC9kaXY+XHJcblx0XHQ8ZGl2IGNsYXNzPVwid2F3LWFsZXJ0LWJvZHlcIj5cclxuXHRcdFx0PGRpdiAqbmdJZj1cIiFjb21wb25lbnRcIiBjbGFzcz1cIndhdy1hbGVydC10ZXh0c1wiPlxyXG5cdFx0XHRcdDxkaXYgKm5nSWY9XCJpY29uXCIgY2xhc3M9XCJ7e2ljb259fVwiPjwvZGl2PlxyXG5cdFx0XHRcdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnQtbWVzc2FnZSBzbGlkZUluXCI+e3t0ZXh0fX08L2Rpdj5cclxuXHRcdFx0PC9kaXY+XHJcblx0XHRcdDxkaXYgKm5nSWY9XCIhY29tcG9uZW50JiZ0eXBlPT0ncXVlc3Rpb24nXCI+XHJcblx0XHRcdFx0PGJ1dHRvbiBjbGFzcz1cImFsZXJ0LWJ0blwiICpuZ0Zvcj1cImxldCBiIG9mIGJ1dHRvbnNcIiAoY2xpY2spPVwicmVtb3ZlKCk7IGIuY2FsbGJhY2smJmIuY2FsbGJhY2soKTtcIj57e2IudGV4dH19PC9idXR0b24+XHJcblx0XHRcdDwvZGl2PlxyXG5cdFx0XHQ8ZGl2IGNsYXNzPVwid2F3LWFsZXJ0X19jbG9zZVwiICpuZ0lmPVwiY2xvc2FibGVcIiAoY2xpY2spPVwicmVtb3ZlKClcIj48L2Rpdj5cclxuXHRcdDwvZGl2PlxyXG5cdDwvZGl2PlxyXG48L2Rpdj5cclxuIl19
58
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvd2Fjb20vc3JjL2xpYi9jb21wb25lbnRzL2FsZXJ0L2FsZXJ0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhY29tL3NyYy9saWIvY29tcG9uZW50cy9hbGVydC9hbGVydC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFjLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQzs7OztBQVNoRSxNQUFNLE9BQU8sY0FBYztJQWNOO0lBQStCO0lBYmYsS0FBSyxDQUFLO0lBQ3ZDLFNBQVMsQ0FBTTtJQUNmLElBQUksR0FBVyxFQUFFLENBQUM7SUFDbEIsS0FBSyxHQUFXLEVBQUUsQ0FBQztJQUNuQixJQUFJLEdBQVcsTUFBTSxDQUFDO0lBQ3RCLFFBQVEsR0FBWSxJQUFJLENBQUM7SUFDekIsUUFBUSxHQUFXLGFBQWEsQ0FBQyxDQUFDLGtGQUFrRjtJQUNwSCxJQUFJLEdBQVcsRUFBRSxDQUFDO0lBQ2xCLE9BQU8sR0FBUSxJQUFJLENBQUM7SUFDcEIsS0FBSyxDQUFNO0lBQ1gsUUFBUSxHQUFRLElBQUksQ0FBQztJQUNyQixPQUFPLEdBQVEsRUFBRSxDQUFDLENBQUMsc0JBQXNCO0lBRWhELFlBQW9CLFVBQXNCLEVBQVMsSUFBaUI7UUFBaEQsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQUFTLFNBQUksR0FBSixJQUFJLENBQWE7UUFDbkUsVUFBVSxDQUFDLEdBQUUsRUFBRTtZQUNkLElBQUcsSUFBSSxDQUFDLE9BQU8sRUFBQztnQkFDZixJQUFJLFNBQVMsR0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7Z0JBQ3ZELElBQUksS0FBSyxHQUFDLFVBQVUsQ0FBQyxHQUFFLEVBQUUsR0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUEsQ0FBQSxDQUFDLEVBQUUsU0FBUyxDQUFDLENBQUM7Z0JBQ3JELElBQUksS0FBSyxHQUFHLElBQUksSUFBSSxFQUFFLENBQUM7Z0JBQ3ZCLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDLGdCQUFnQixDQUFDLFlBQVksRUFBRSxHQUFFLEVBQUU7b0JBQzNELFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztvQkFDcEIsU0FBUyxJQUFJLElBQUksSUFBSSxFQUFFLENBQUMsT0FBTyxFQUFFLEdBQUcsS0FBSyxDQUFDLE9BQU8sRUFBRSxDQUFDO2dCQUNyRCxDQUFDLEVBQUUsS0FBSyxDQUFDLENBQUM7Z0JBQ1YsSUFBSSxDQUFDLEtBQUssQ0FBQyxhQUFhLENBQUMsZ0JBQWdCLENBQUMsWUFBWSxFQUFFLEdBQUUsRUFBRTtvQkFDM0QsS0FBSyxHQUFHLElBQUksSUFBSSxFQUFFLENBQUM7b0JBQ25CLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztvQkFDcEIsS0FBSyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLEdBQUUsRUFBRSxHQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQSxDQUFBLENBQUMsRUFBRSxTQUFTLENBQUMsQ0FBQztnQkFDaEUsQ0FBQyxFQUFFLEtBQUssQ0FBQyxDQUFDO2FBQ1Y7UUFDRixDQUFDLENBQUMsQ0FBQztJQUNKLENBQUM7SUFDTSxnQkFBZ0IsR0FBQyxLQUFLLENBQUM7SUFDOUIsTUFBTTtRQUNMLElBQUksQ0FBQyxnQkFBZ0IsR0FBQyxJQUFJLENBQUM7UUFDM0IsVUFBVSxDQUFDLEdBQUUsRUFBRTtZQUNkLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUNiLElBQUksQ0FBQyxnQkFBZ0IsR0FBQyxLQUFLLENBQUM7UUFDN0IsQ0FBQyxFQUFDLEdBQUcsQ0FBQyxDQUFDO0lBRVIsQ0FBQzt3R0F4Q1csY0FBYzs0RkFBZCxjQUFjLDZJQ1QzQix1bkNBZUE7OzRGRE5hLGNBQWM7a0JBTjFCLFNBQVM7K0JBQ0MsT0FBTzsySEFNbUIsS0FBSztzQkFBeEMsU0FBUzt1QkFBQyxPQUFPLEVBQUUsRUFBQyxNQUFNLEVBQUMsS0FBSyxFQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBWaWV3Q2hpbGR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29yZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9jb3JlLnNlcnZpY2UnO1xuXG5AQ29tcG9uZW50KHtcblx0c2VsZWN0b3I6ICdhbGVydCcsXG5cdHRlbXBsYXRlVXJsOiAnLi9hbGVydC5jb21wb25lbnQuaHRtbCcsXG5cdHN0eWxlVXJsczogWycuL2FsZXJ0LmNvbXBvbmVudC5zY3NzJ11cbn0pXG5cbmV4cG9ydCBjbGFzcyBBbGVydENvbXBvbmVudCB7XG5cdEBWaWV3Q2hpbGQoJ2FsZXJ0Jywge3N0YXRpYzpmYWxzZX0pIGFsZXJ0OmFueTtcblx0cHVibGljIGNvbXBvbmVudDogYW55O1xuXHRwdWJsaWMgdGV4dDogc3RyaW5nID0gXCJcIjtcblx0cHVibGljIGNsYXNzOiBzdHJpbmcgPSBcIlwiO1xuXHRwdWJsaWMgdHlwZTogc3RyaW5nID0gXCJpbmZvXCI7XG5cdHB1YmxpYyBwcm9ncmVzczogYm9vbGVhbiA9IHRydWU7XG5cdHB1YmxpYyBwb3NpdGlvbjogc3RyaW5nID0gJ2JvdHRvbVJpZ2h0JzsgLy8gW2JvdHRvbVJpZ2h0LCBib3R0b21MZWZ0LCB0b3BSaWdodCwgdG9wTGVmdCwgdG9wQ2VudGVyLCBib3R0b21DZW50ZXIgb3IgY2VudGVyXVxuXHRwdWJsaWMgaWNvbjogc3RyaW5nID0gJyc7XG5cdHB1YmxpYyB0aW1lb3V0OiBhbnkgPSA1MDAwO1xuXHRwdWJsaWMgY2xvc2U6IGFueTtcblx0cHVibGljIGNsb3NhYmxlOiBhbnkgPSB0cnVlO1xuXHRwdWJsaWMgYnV0dG9uczogYW55ID0gW107IC8qW3t0ZXh0LCBjYWxsYmFja31dKi9cblxuXHRjb25zdHJ1Y3Rvcihwcml2YXRlIGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYsIHB1YmxpYyBjb3JlOiBDb3JlU2VydmljZSkge1xuXHRcdHNldFRpbWVvdXQoKCk9Pntcblx0XHRcdGlmKHRoaXMudGltZW91dCl7XG5cdFx0XHRcdGxldCByZW1haW5pbmc9SlNPTi5wYXJzZShKU09OLnN0cmluZ2lmeSh0aGlzLnRpbWVvdXQpKTtcblx0XHRcdFx0bGV0IHRpbWVyPXNldFRpbWVvdXQoKCk9Pnt0aGlzLnJlbW92ZSgpfSwgcmVtYWluaW5nKTtcblx0XHRcdFx0bGV0IHN0YXJ0ID0gbmV3IERhdGUoKTtcblx0XHRcdFx0dGhpcy5hbGVydC5uYXRpdmVFbGVtZW50LmFkZEV2ZW50TGlzdGVuZXIoXCJtb3VzZWVudGVyXCIsICgpPT57XG5cdFx0XHRcdFx0Y2xlYXJUaW1lb3V0KHRpbWVyKTtcblx0XHRcdFx0XHRyZW1haW5pbmcgLT0gbmV3IERhdGUoKS5nZXRUaW1lKCkgLSBzdGFydC5nZXRUaW1lKCk7XG5cdFx0XHRcdH0sIGZhbHNlKTtcblx0XHRcdFx0dGhpcy5hbGVydC5uYXRpdmVFbGVtZW50LmFkZEV2ZW50TGlzdGVuZXIoXCJtb3VzZWxlYXZlXCIsICgpPT57XG5cdFx0XHRcdFx0c3RhcnQgPSBuZXcgRGF0ZSgpO1xuXHRcdFx0XHRcdGNsZWFyVGltZW91dCh0aW1lcik7XG5cdFx0XHRcdFx0dGltZXIgPSBjb3JlLndpbmRvdy5zZXRUaW1lb3V0KCgpPT57dGhpcy5yZW1vdmUoKX0sIHJlbWFpbmluZyk7XG5cdFx0XHRcdH0sIGZhbHNlKTtcblx0XHRcdH1cblx0XHR9KTtcblx0fVxuXHRwdWJsaWMgZGVsZXRlX2FuaW1hdGlvbj1mYWxzZTtcblx0cmVtb3ZlKCl7XG5cdFx0dGhpcy5kZWxldGVfYW5pbWF0aW9uPXRydWU7XG5cdFx0c2V0VGltZW91dCgoKT0+e1xuXHRcdFx0dGhpcy5jbG9zZSgpO1xuXHRcdFx0dGhpcy5kZWxldGVfYW5pbWF0aW9uPWZhbHNlO1xuXHRcdH0sMzUwKTtcblxuXHR9XG59XG4iLCI8ZGl2IFtuZ0NsYXNzXT1cImNsYXNzXCIgY2xhc3M9XCJ3YXctYWxlcnQtY29udGFpbmVyIGhlaWdodFwiIFtjbGFzcy5fY2xvc2VdPVwiZGVsZXRlX2FuaW1hdGlvblwiPlxuXHQ8ZGl2IFtjbGFzcy53YXctYWxlcnQtY29sb3ItYmx1ZV09XCJ0eXBlPT0naW5mbydcIiBbY2xhc3Mud2F3LWFsZXJ0LWNvbG9yLXJlZF09XCJ0eXBlPT0nZXJyb3InXCIgW2NsYXNzLndhdy1hbGVydC1jb2xvci1ncmVlbl09XCJ0eXBlPT0nc3VjY2VzcydcIiBbY2xhc3Mud2F3LWFsZXJ0LWNvbG9yLW9yYW5nZV09XCJ0eXBlPT0nd2FybmluZydcIiBbY2xhc3Mud2F3LWFsZXJ0LWNvbG9yLXllbGxvd109XCJ0eXBlPT0ncXVlc3Rpb24nXCIgY2xhc3M9XCJ3YXctYWxlcnQgYm91bmNlSW5VcCB3YXctYWxlcnQtdGhlbWUtbGlnaHQgIHdhdy1hbGVydC1hbmltYXRlSW5zaWRlIHdhdy1hbGVydC1vcGVuZWRcIiAjYWxlcnQ+XG5cdFx0PGRpdiBjbGFzcz1cIndhdy1hbGVydF9fcHJvZ3Jlc3NcIiAqbmdJZj1cInByb2dyZXNzXCI+PHNwYW4gW25nU3R5bGVdPVwieydhbmltYXRpb24tZHVyYXRpb24nOiAodGltZW91dCszNTApLzEwMDArJ3MnfVwiPjwvc3Bhbj48L2Rpdj5cblx0XHQ8ZGl2IGNsYXNzPVwid2F3LWFsZXJ0LWJvZHlcIj5cblx0XHRcdDxkaXYgKm5nSWY9XCIhY29tcG9uZW50XCIgY2xhc3M9XCJ3YXctYWxlcnQtdGV4dHNcIj5cblx0XHRcdFx0PGRpdiAqbmdJZj1cImljb25cIiBjbGFzcz1cInt7aWNvbn19XCI+PC9kaXY+XG5cdFx0XHRcdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnQtbWVzc2FnZSBzbGlkZUluXCI+e3t0ZXh0fX08L2Rpdj5cblx0XHRcdDwvZGl2PlxuXHRcdFx0PGRpdiAqbmdJZj1cIiFjb21wb25lbnQmJnR5cGU9PSdxdWVzdGlvbidcIj5cblx0XHRcdFx0PGJ1dHRvbiBjbGFzcz1cImFsZXJ0LWJ0blwiICpuZ0Zvcj1cImxldCBiIG9mIGJ1dHRvbnNcIiAoY2xpY2spPVwicmVtb3ZlKCk7IGIuY2FsbGJhY2smJmIuY2FsbGJhY2soKTtcIj57e2IudGV4dH19PC9idXR0b24+XG5cdFx0XHQ8L2Rpdj5cblx0XHRcdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnRfX2Nsb3NlXCIgKm5nSWY9XCJjbG9zYWJsZVwiIChjbGljayk9XCJyZW1vdmUoKVwiPjwvZGl2PlxuXHRcdDwvZGl2PlxuXHQ8L2Rpdj5cbjwvZGl2PlxuIl19
@@ -2,11 +2,11 @@ import { Component } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export class WrapperComponent {
4
4
  constructor() { }
5
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: WrapperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.11", type: WrapperComponent, selector: "lib-wrapper", ngImport: i0, template: "<div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomRight\" id=\"bottomRight\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomLeft\" id=\"bottomLeft\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topRight\" id=\"topRight\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topLeft\" id=\"topLeft\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topCenter\" id=\"topCenter\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomCenter\" id=\"bottomCenter\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-center\" id=\"center\"></div>\r\n\t<!-- [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter or center] -->\r\n</div>\r\n", styles: [".waw-alert-wrapper{z-index:99999;position:fixed;width:100%;pointer-events:none;display:flex;flex-direction:column}.waw-alert-wrapper-bottomLeft{left:0;bottom:0;text-align:left}.waw-alert-wrapper-bottomRight{right:0;bottom:0;text-align:right}.waw-alert-wrapper-topLeft{left:0;top:0;text-align:left}.waw-alert-wrapper-topRight{top:0;right:0;text-align:right}.waw-alert-wrapper-topCenter{top:0;left:0;right:0;text-align:center}.waw-alert-wrapper-bottomCenter{bottom:0;left:0;right:0;text-align:center}.waw-alert-wrapper-center{inset:0;text-align:center;justify-content:center;flex-flow:column;align-items:center}\n"] });
5
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.10", ngImport: i0, type: WrapperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.10", type: WrapperComponent, selector: "lib-wrapper", ngImport: i0, template: "<div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomRight\" id=\"bottomRight\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomLeft\" id=\"bottomLeft\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topRight\" id=\"topRight\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topLeft\" id=\"topLeft\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topCenter\" id=\"topCenter\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomCenter\" id=\"bottomCenter\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-center\" id=\"center\"></div>\n\t<!-- [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter or center] -->\n</div>\n", styles: [".waw-alert-wrapper{z-index:99999;position:fixed;width:100%;pointer-events:none;display:flex;flex-direction:column}.waw-alert-wrapper-bottomLeft{left:0;bottom:0;text-align:left}.waw-alert-wrapper-bottomRight{right:0;bottom:0;text-align:right}.waw-alert-wrapper-topLeft{left:0;top:0;text-align:left}.waw-alert-wrapper-topRight{top:0;right:0;text-align:right}.waw-alert-wrapper-topCenter{top:0;left:0;right:0;text-align:center}.waw-alert-wrapper-bottomCenter{bottom:0;left:0;right:0;text-align:center}.waw-alert-wrapper-center{inset:0;text-align:center;justify-content:center;flex-flow:column;align-items:center}\n"] });
7
7
  }
8
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: WrapperComponent, decorators: [{
8
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.10", ngImport: i0, type: WrapperComponent, decorators: [{
9
9
  type: Component,
10
- args: [{ selector: 'lib-wrapper', template: "<div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomRight\" id=\"bottomRight\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomLeft\" id=\"bottomLeft\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topRight\" id=\"topRight\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topLeft\" id=\"topLeft\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topCenter\" id=\"topCenter\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomCenter\" id=\"bottomCenter\"></div>\r\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-center\" id=\"center\"></div>\r\n\t<!-- [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter or center] -->\r\n</div>\r\n", styles: [".waw-alert-wrapper{z-index:99999;position:fixed;width:100%;pointer-events:none;display:flex;flex-direction:column}.waw-alert-wrapper-bottomLeft{left:0;bottom:0;text-align:left}.waw-alert-wrapper-bottomRight{right:0;bottom:0;text-align:right}.waw-alert-wrapper-topLeft{left:0;top:0;text-align:left}.waw-alert-wrapper-topRight{top:0;right:0;text-align:right}.waw-alert-wrapper-topCenter{top:0;left:0;right:0;text-align:center}.waw-alert-wrapper-bottomCenter{bottom:0;left:0;right:0;text-align:center}.waw-alert-wrapper-center{inset:0;text-align:center;justify-content:center;flex-flow:column;align-items:center}\n"] }]
10
+ args: [{ selector: 'lib-wrapper', template: "<div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomRight\" id=\"bottomRight\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomLeft\" id=\"bottomLeft\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topRight\" id=\"topRight\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topLeft\" id=\"topLeft\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-topCenter\" id=\"topCenter\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-bottomCenter\" id=\"bottomCenter\"></div>\n\t<div class=\"waw-alert-wrapper waw-alert-wrapper-center\" id=\"center\"></div>\n\t<!-- [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter or center] -->\n</div>\n", styles: [".waw-alert-wrapper{z-index:99999;position:fixed;width:100%;pointer-events:none;display:flex;flex-direction:column}.waw-alert-wrapper-bottomLeft{left:0;bottom:0;text-align:left}.waw-alert-wrapper-bottomRight{right:0;bottom:0;text-align:right}.waw-alert-wrapper-topLeft{left:0;top:0;text-align:left}.waw-alert-wrapper-topRight{top:0;right:0;text-align:right}.waw-alert-wrapper-topCenter{top:0;left:0;right:0;text-align:center}.waw-alert-wrapper-bottomCenter{bottom:0;left:0;right:0;text-align:center}.waw-alert-wrapper-center{inset:0;text-align:center;justify-content:center;flex-flow:column;align-items:center}\n"] }]
11
11
  }], ctorParameters: function () { return []; } });
12
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JhcHBlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YWNvbS9zcmMvbGliL2NvbXBvbmVudHMvYWxlcnQvd3JhcHBlci93cmFwcGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhY29tL3NyYy9saWIvY29tcG9uZW50cy9hbGVydC93cmFwcGVyL3dyYXBwZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPMUMsTUFBTSxPQUFPLGdCQUFnQjtJQUM1QixnQkFBZSxDQUFDO3dHQURKLGdCQUFnQjs0RkFBaEIsZ0JBQWdCLG1EQ1A3Qix5dUJBVUE7OzRGREhhLGdCQUFnQjtrQkFMNUIsU0FBUzsrQkFDQyxhQUFhIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuXHRzZWxlY3RvcjogJ2xpYi13cmFwcGVyJyxcclxuXHR0ZW1wbGF0ZVVybDogJy4vd3JhcHBlci5jb21wb25lbnQuaHRtbCcsXHJcblx0c3R5bGVVcmxzOiBbJy4vd3JhcHBlci5jb21wb25lbnQuc2NzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBXcmFwcGVyQ29tcG9uZW50e1xyXG5cdGNvbnN0cnVjdG9yKCkge31cclxufVxyXG4iLCI8ZGl2PlxyXG5cdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnQtd3JhcHBlciB3YXctYWxlcnQtd3JhcHBlci1ib3R0b21SaWdodFwiIGlkPVwiYm90dG9tUmlnaHRcIj48L2Rpdj5cclxuXHQ8ZGl2IGNsYXNzPVwid2F3LWFsZXJ0LXdyYXBwZXIgd2F3LWFsZXJ0LXdyYXBwZXItYm90dG9tTGVmdFwiIGlkPVwiYm90dG9tTGVmdFwiPjwvZGl2PlxyXG5cdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnQtd3JhcHBlciB3YXctYWxlcnQtd3JhcHBlci10b3BSaWdodFwiIGlkPVwidG9wUmlnaHRcIj48L2Rpdj5cclxuXHQ8ZGl2IGNsYXNzPVwid2F3LWFsZXJ0LXdyYXBwZXIgd2F3LWFsZXJ0LXdyYXBwZXItdG9wTGVmdFwiIGlkPVwidG9wTGVmdFwiPjwvZGl2PlxyXG5cdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnQtd3JhcHBlciB3YXctYWxlcnQtd3JhcHBlci10b3BDZW50ZXJcIiBpZD1cInRvcENlbnRlclwiPjwvZGl2PlxyXG5cdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnQtd3JhcHBlciB3YXctYWxlcnQtd3JhcHBlci1ib3R0b21DZW50ZXJcIiBpZD1cImJvdHRvbUNlbnRlclwiPjwvZGl2PlxyXG5cdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnQtd3JhcHBlciB3YXctYWxlcnQtd3JhcHBlci1jZW50ZXJcIiBpZD1cImNlbnRlclwiPjwvZGl2PlxyXG5cdDwhLS0gW2JvdHRvbVJpZ2h0LCBib3R0b21MZWZ0LCB0b3BSaWdodCwgdG9wTGVmdCwgdG9wQ2VudGVyLCBib3R0b21DZW50ZXIgb3IgY2VudGVyXSAtLT5cclxuPC9kaXY+XHJcbiJdfQ==
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JhcHBlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YWNvbS9zcmMvbGliL2NvbXBvbmVudHMvYWxlcnQvd3JhcHBlci93cmFwcGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhY29tL3NyYy9saWIvY29tcG9uZW50cy9hbGVydC93cmFwcGVyL3dyYXBwZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPMUMsTUFBTSxPQUFPLGdCQUFnQjtJQUM1QixnQkFBZSxDQUFDO3dHQURKLGdCQUFnQjs0RkFBaEIsZ0JBQWdCLG1EQ1A3QixxdEJBVUE7OzRGREhhLGdCQUFnQjtrQkFMNUIsU0FBUzsrQkFDQyxhQUFhIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuXHRzZWxlY3RvcjogJ2xpYi13cmFwcGVyJyxcblx0dGVtcGxhdGVVcmw6ICcuL3dyYXBwZXIuY29tcG9uZW50Lmh0bWwnLFxuXHRzdHlsZVVybHM6IFsnLi93cmFwcGVyLmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgV3JhcHBlckNvbXBvbmVudHtcblx0Y29uc3RydWN0b3IoKSB7fVxufVxuIiwiPGRpdj5cblx0PGRpdiBjbGFzcz1cIndhdy1hbGVydC13cmFwcGVyIHdhdy1hbGVydC13cmFwcGVyLWJvdHRvbVJpZ2h0XCIgaWQ9XCJib3R0b21SaWdodFwiPjwvZGl2PlxuXHQ8ZGl2IGNsYXNzPVwid2F3LWFsZXJ0LXdyYXBwZXIgd2F3LWFsZXJ0LXdyYXBwZXItYm90dG9tTGVmdFwiIGlkPVwiYm90dG9tTGVmdFwiPjwvZGl2PlxuXHQ8ZGl2IGNsYXNzPVwid2F3LWFsZXJ0LXdyYXBwZXIgd2F3LWFsZXJ0LXdyYXBwZXItdG9wUmlnaHRcIiBpZD1cInRvcFJpZ2h0XCI+PC9kaXY+XG5cdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnQtd3JhcHBlciB3YXctYWxlcnQtd3JhcHBlci10b3BMZWZ0XCIgaWQ9XCJ0b3BMZWZ0XCI+PC9kaXY+XG5cdDxkaXYgY2xhc3M9XCJ3YXctYWxlcnQtd3JhcHBlciB3YXctYWxlcnQtd3JhcHBlci10b3BDZW50ZXJcIiBpZD1cInRvcENlbnRlclwiPjwvZGl2PlxuXHQ8ZGl2IGNsYXNzPVwid2F3LWFsZXJ0LXdyYXBwZXIgd2F3LWFsZXJ0LXdyYXBwZXItYm90dG9tQ2VudGVyXCIgaWQ9XCJib3R0b21DZW50ZXJcIj48L2Rpdj5cblx0PGRpdiBjbGFzcz1cIndhdy1hbGVydC13cmFwcGVyIHdhdy1hbGVydC13cmFwcGVyLWNlbnRlclwiIGlkPVwiY2VudGVyXCI+PC9kaXY+XG5cdDwhLS0gW2JvdHRvbVJpZ2h0LCBib3R0b21MZWZ0LCB0b3BSaWdodCwgdG9wTGVmdCwgdG9wQ2VudGVyLCBib3R0b21DZW50ZXIgb3IgY2VudGVyXSAtLT5cbjwvZGl2PlxuIl19
@@ -4,11 +4,11 @@ import * as i1 from "@angular/common";
4
4
  export class FilesComponent {
5
5
  fs;
6
6
  constructor() { }
7
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: FilesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
8
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.11", type: FilesComponent, selector: "lib-files", ngImport: i0, template: "<ng-container *ngFor=\"let file of fs.files\">\r\n\t<input [id]=\"file.id\" type=\"file\" name=\"file\" (change)=\"fs.change($event, file); input.value='';\" #input [hidden]=\"true\" [accept]=\"(file.accept) || (file.part && 'image/*') || ''\" [multiple]=\"file.multiple && true || ''\">\r\n</ng-container>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
7
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.10", ngImport: i0, type: FilesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
8
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.10", type: FilesComponent, selector: "lib-files", ngImport: i0, template: "<ng-container *ngFor=\"let file of fs.files\">\n\t<input [id]=\"file.id\" type=\"file\" name=\"file\" (change)=\"fs.change($event, file); input.value='';\" #input [hidden]=\"true\" [accept]=\"(file.accept) || (file.part && 'image/*') || ''\" [multiple]=\"file.multiple && true || ''\">\n</ng-container>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
9
9
  }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: FilesComponent, decorators: [{
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.10", ngImport: i0, type: FilesComponent, decorators: [{
11
11
  type: Component,
12
- args: [{ selector: 'lib-files', template: "<ng-container *ngFor=\"let file of fs.files\">\r\n\t<input [id]=\"file.id\" type=\"file\" name=\"file\" (change)=\"fs.change($event, file); input.value='';\" #input [hidden]=\"true\" [accept]=\"(file.accept) || (file.part && 'image/*') || ''\" [multiple]=\"file.multiple && true || ''\">\r\n</ng-container>" }]
12
+ args: [{ selector: 'lib-files', template: "<ng-container *ngFor=\"let file of fs.files\">\n\t<input [id]=\"file.id\" type=\"file\" name=\"file\" (change)=\"fs.change($event, file); input.value='';\" #input [hidden]=\"true\" [accept]=\"(file.accept) || (file.part && 'image/*') || ''\" [multiple]=\"file.multiple && true || ''\">\n</ng-container>" }]
13
13
  }], ctorParameters: function () { return []; } });
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZXMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvd2Fjb20vc3JjL2xpYi9jb21wb25lbnRzL2ZpbGVzL2ZpbGVzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhY29tL3NyYy9saWIvY29tcG9uZW50cy9maWxlcy9maWxlcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFPMUMsTUFBTSxPQUFPLGNBQWM7SUFDbkIsRUFBRSxDQUFLO0lBQ2QsZ0JBQWUsQ0FBQzt3R0FGSixjQUFjOzRGQUFkLGNBQWMsaURDUDNCLG9UQUVlOzs0RkRLRixjQUFjO2tCQUwxQixTQUFTOytCQUNDLFdBQVciLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG5cdHNlbGVjdG9yOiAnbGliLWZpbGVzJyxcclxuXHR0ZW1wbGF0ZVVybDogJy4vZmlsZXMuY29tcG9uZW50Lmh0bWwnLFxyXG5cdHN0eWxlVXJsczogWycuL2ZpbGVzLmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIEZpbGVzQ29tcG9uZW50e1xyXG5cdHB1YmxpYyBmczphbnk7XHJcblx0Y29uc3RydWN0b3IoKSB7fVxyXG59XHJcbiIsIjxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGZpbGUgb2YgZnMuZmlsZXNcIj5cclxuXHQ8aW5wdXQgW2lkXT1cImZpbGUuaWRcIiB0eXBlPVwiZmlsZVwiIG5hbWU9XCJmaWxlXCIgKGNoYW5nZSk9XCJmcy5jaGFuZ2UoJGV2ZW50LCBmaWxlKTsgaW5wdXQudmFsdWU9Jyc7XCIgI2lucHV0IFtoaWRkZW5dPVwidHJ1ZVwiIFthY2NlcHRdPVwiKGZpbGUuYWNjZXB0KSB8fCAoZmlsZS5wYXJ0ICYmICdpbWFnZS8qJykgfHwgJydcIiBbbXVsdGlwbGVdPVwiZmlsZS5tdWx0aXBsZSAmJiB0cnVlIHx8ICcnXCI+XHJcbjwvbmctY29udGFpbmVyPiJdfQ==
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZXMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvd2Fjb20vc3JjL2xpYi9jb21wb25lbnRzL2ZpbGVzL2ZpbGVzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhY29tL3NyYy9saWIvY29tcG9uZW50cy9maWxlcy9maWxlcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFPMUMsTUFBTSxPQUFPLGNBQWM7SUFDbkIsRUFBRSxDQUFLO0lBQ2QsZ0JBQWUsQ0FBQzt3R0FGSixjQUFjOzRGQUFkLGNBQWMsaURDUDNCLGdUQUVlOzs0RkRLRixjQUFjO2tCQUwxQixTQUFTOytCQUNDLFdBQVciLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG5cdHNlbGVjdG9yOiAnbGliLWZpbGVzJyxcblx0dGVtcGxhdGVVcmw6ICcuL2ZpbGVzLmNvbXBvbmVudC5odG1sJyxcblx0c3R5bGVVcmxzOiBbJy4vZmlsZXMuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBGaWxlc0NvbXBvbmVudHtcblx0cHVibGljIGZzOmFueTtcblx0Y29uc3RydWN0b3IoKSB7fVxufVxuIiwiPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgZmlsZSBvZiBmcy5maWxlc1wiPlxuXHQ8aW5wdXQgW2lkXT1cImZpbGUuaWRcIiB0eXBlPVwiZmlsZVwiIG5hbWU9XCJmaWxlXCIgKGNoYW5nZSk9XCJmcy5jaGFuZ2UoJGV2ZW50LCBmaWxlKTsgaW5wdXQudmFsdWU9Jyc7XCIgI2lucHV0IFtoaWRkZW5dPVwidHJ1ZVwiIFthY2NlcHRdPVwiKGZpbGUuYWNjZXB0KSB8fCAoZmlsZS5wYXJ0ICYmICdpbWFnZS8qJykgfHwgJydcIiBbbXVsdGlwbGVdPVwiZmlsZS5tdWx0aXBsZSAmJiB0cnVlIHx8ICcnXCI+XG48L25nLWNvbnRhaW5lcj4iXX0=