wacom 14.2.0 → 14.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.
- package/README.md +197 -465
- package/esm2020/lib/components/alert/alert.component.mjs +5 -5
- package/esm2020/lib/components/alert/wrapper/wrapper.component.mjs +5 -5
- package/esm2020/lib/components/files/files.component.mjs +5 -5
- package/esm2020/lib/components/loader/loader.component.mjs +5 -5
- package/esm2020/lib/components/modal/modal.component.mjs +5 -5
- package/esm2020/lib/directives/click-outside.directive.mjs +5 -5
- package/esm2020/lib/guard/meta.guard.mjs +4 -4
- package/esm2020/lib/interfaces/alert.interface.mjs +1 -1
- package/esm2020/lib/interfaces/config.mjs +1 -1
- package/esm2020/lib/interfaces/modal.interface.mjs +1 -1
- package/esm2020/lib/pipes/arr.pipe.mjs +4 -4
- package/esm2020/lib/pipes/mongodate.pipe.mjs +4 -4
- package/esm2020/lib/pipes/pagination.pipe.mjs +4 -4
- package/esm2020/lib/pipes/safe.pipe.mjs +4 -4
- package/esm2020/lib/pipes/search.pipe.mjs +4 -4
- package/esm2020/lib/pipes/splice.pipe.mjs +4 -4
- package/esm2020/lib/services/alert.service.mjs +4 -4
- package/esm2020/lib/services/base.service.mjs +4 -4
- package/esm2020/lib/services/core.service.mjs +37 -27
- package/esm2020/lib/services/crud.service.mjs +4 -4
- package/esm2020/lib/services/dom.service.mjs +4 -4
- package/esm2020/lib/services/file.service.mjs +4 -4
- package/esm2020/lib/services/hash.service.mjs +4 -4
- package/esm2020/lib/services/http.service.mjs +49 -22
- package/esm2020/lib/services/loader.service.mjs +4 -4
- package/esm2020/lib/services/meta.service.mjs +7 -7
- package/esm2020/lib/services/modal.service.mjs +4 -4
- package/esm2020/lib/services/mongo.service.mjs +4 -4
- package/esm2020/lib/services/render.service.mjs +4 -4
- package/esm2020/lib/services/socket.service.mjs +4 -4
- package/esm2020/lib/services/store.service.mjs +4 -4
- package/esm2020/lib/services/time.service.mjs +4 -4
- package/esm2020/lib/services/ui.service.mjs +4 -4
- package/esm2020/lib/wacom.module.mjs +5 -5
- package/esm2020/public-api.mjs +1 -1
- package/fesm2015/wacom.mjs +181 -145
- package/fesm2015/wacom.mjs.map +1 -1
- package/fesm2020/wacom.mjs +181 -145
- package/fesm2020/wacom.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/components/alert/README.md +34 -34
- package/src/lib/components/loader/README.md +34 -34
package/package.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
# AlertService
|
|
2
|
-
|
|
3
|
-
Service for Alerts
|
|
4
|
-
|
|
5
|
-
## Usage
|
|
6
|
-
```javascript
|
|
7
|
-
import { AlertService } from 'wacom';
|
|
8
|
-
...
|
|
9
|
-
constructor(public alert: AlertService){
|
|
10
|
-
this.alert.show({
|
|
11
|
-
text: 'Alerts working!',
|
|
12
|
-
type: "success",
|
|
13
|
-
position: 'bottomCenter', // [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter or center]
|
|
14
|
-
})
|
|
15
|
-
}
|
|
16
|
-
```
|
|
17
|
-
## Functions
|
|
18
|
-
|
|
19
|
-
### show(options)
|
|
20
|
-
|
|
21
|
-
Show alert with options
|
|
22
|
-
|
|
23
|
-
### options
|
|
24
|
-
```
|
|
25
|
-
text - string
|
|
26
|
-
type - string // ['info', 'success', 'error', 'warning', 'question']
|
|
27
|
-
progress - boolean
|
|
28
|
-
position - string // ['bottomRight', 'bottomLeft', 'topRight', 'topLeft', 'topCenter', 'bottomCenter', 'center']
|
|
29
|
-
timeout - number
|
|
30
|
-
close - boolean
|
|
31
|
-
buttons - array // [{text, callback}]
|
|
32
|
-
```
|
|
33
|
-
### desrtroy()
|
|
34
|
-
|
|
1
|
+
# AlertService
|
|
2
|
+
|
|
3
|
+
Service for Alerts
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
```javascript
|
|
7
|
+
import { AlertService } from 'wacom';
|
|
8
|
+
...
|
|
9
|
+
constructor(public alert: AlertService){
|
|
10
|
+
this.alert.show({
|
|
11
|
+
text: 'Alerts working!',
|
|
12
|
+
type: "success",
|
|
13
|
+
position: 'bottomCenter', // [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter or center]
|
|
14
|
+
})
|
|
15
|
+
}
|
|
16
|
+
```
|
|
17
|
+
## Functions
|
|
18
|
+
|
|
19
|
+
### show(options)
|
|
20
|
+
|
|
21
|
+
Show alert with options
|
|
22
|
+
|
|
23
|
+
### options
|
|
24
|
+
```
|
|
25
|
+
text - string
|
|
26
|
+
type - string // ['info', 'success', 'error', 'warning', 'question']
|
|
27
|
+
progress - boolean
|
|
28
|
+
position - string // ['bottomRight', 'bottomLeft', 'topRight', 'topLeft', 'topCenter', 'bottomCenter', 'center']
|
|
29
|
+
timeout - number
|
|
30
|
+
close - boolean
|
|
31
|
+
buttons - array // [{text, callback}]
|
|
32
|
+
```
|
|
33
|
+
### desrtroy()
|
|
34
|
+
|
|
35
35
|
Destroy all alerts
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
# AlertService
|
|
2
|
-
|
|
3
|
-
Service for Alerts
|
|
4
|
-
|
|
5
|
-
## Usage
|
|
6
|
-
```javascript
|
|
7
|
-
import { AlertService } from 'wacom';
|
|
8
|
-
...
|
|
9
|
-
constructor(public alert: AlertService){
|
|
10
|
-
this.alert.show({
|
|
11
|
-
text: 'Alerts working!',
|
|
12
|
-
type: "success",
|
|
13
|
-
position: 'bottomCenter', // [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter or center]
|
|
14
|
-
})
|
|
15
|
-
}
|
|
16
|
-
```
|
|
17
|
-
## Functions
|
|
18
|
-
|
|
19
|
-
### show(options)
|
|
20
|
-
|
|
21
|
-
Show alert with options
|
|
22
|
-
|
|
23
|
-
### options
|
|
24
|
-
```
|
|
25
|
-
text - string
|
|
26
|
-
type - string // ['info', 'success', 'error', 'warning', 'question']
|
|
27
|
-
progress - boolean
|
|
28
|
-
position - string // ['bottomRight', 'bottomLeft', 'topRight', 'topLeft', 'topCenter', 'bottomCenter', 'center']
|
|
29
|
-
timeout - number
|
|
30
|
-
close - boolean
|
|
31
|
-
buttons - array // [{text, callback}]
|
|
32
|
-
```
|
|
33
|
-
### desrtroy()
|
|
34
|
-
|
|
1
|
+
# AlertService
|
|
2
|
+
|
|
3
|
+
Service for Alerts
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
```javascript
|
|
7
|
+
import { AlertService } from 'wacom';
|
|
8
|
+
...
|
|
9
|
+
constructor(public alert: AlertService){
|
|
10
|
+
this.alert.show({
|
|
11
|
+
text: 'Alerts working!',
|
|
12
|
+
type: "success",
|
|
13
|
+
position: 'bottomCenter', // [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter or center]
|
|
14
|
+
})
|
|
15
|
+
}
|
|
16
|
+
```
|
|
17
|
+
## Functions
|
|
18
|
+
|
|
19
|
+
### show(options)
|
|
20
|
+
|
|
21
|
+
Show alert with options
|
|
22
|
+
|
|
23
|
+
### options
|
|
24
|
+
```
|
|
25
|
+
text - string
|
|
26
|
+
type - string // ['info', 'success', 'error', 'warning', 'question']
|
|
27
|
+
progress - boolean
|
|
28
|
+
position - string // ['bottomRight', 'bottomLeft', 'topRight', 'topLeft', 'topCenter', 'bottomCenter', 'center']
|
|
29
|
+
timeout - number
|
|
30
|
+
close - boolean
|
|
31
|
+
buttons - array // [{text, callback}]
|
|
32
|
+
```
|
|
33
|
+
### desrtroy()
|
|
34
|
+
|
|
35
35
|
Destroy all alerts
|