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.
Files changed (43) hide show
  1. package/README.md +197 -465
  2. package/esm2020/lib/components/alert/alert.component.mjs +5 -5
  3. package/esm2020/lib/components/alert/wrapper/wrapper.component.mjs +5 -5
  4. package/esm2020/lib/components/files/files.component.mjs +5 -5
  5. package/esm2020/lib/components/loader/loader.component.mjs +5 -5
  6. package/esm2020/lib/components/modal/modal.component.mjs +5 -5
  7. package/esm2020/lib/directives/click-outside.directive.mjs +5 -5
  8. package/esm2020/lib/guard/meta.guard.mjs +4 -4
  9. package/esm2020/lib/interfaces/alert.interface.mjs +1 -1
  10. package/esm2020/lib/interfaces/config.mjs +1 -1
  11. package/esm2020/lib/interfaces/modal.interface.mjs +1 -1
  12. package/esm2020/lib/pipes/arr.pipe.mjs +4 -4
  13. package/esm2020/lib/pipes/mongodate.pipe.mjs +4 -4
  14. package/esm2020/lib/pipes/pagination.pipe.mjs +4 -4
  15. package/esm2020/lib/pipes/safe.pipe.mjs +4 -4
  16. package/esm2020/lib/pipes/search.pipe.mjs +4 -4
  17. package/esm2020/lib/pipes/splice.pipe.mjs +4 -4
  18. package/esm2020/lib/services/alert.service.mjs +4 -4
  19. package/esm2020/lib/services/base.service.mjs +4 -4
  20. package/esm2020/lib/services/core.service.mjs +37 -27
  21. package/esm2020/lib/services/crud.service.mjs +4 -4
  22. package/esm2020/lib/services/dom.service.mjs +4 -4
  23. package/esm2020/lib/services/file.service.mjs +4 -4
  24. package/esm2020/lib/services/hash.service.mjs +4 -4
  25. package/esm2020/lib/services/http.service.mjs +49 -22
  26. package/esm2020/lib/services/loader.service.mjs +4 -4
  27. package/esm2020/lib/services/meta.service.mjs +7 -7
  28. package/esm2020/lib/services/modal.service.mjs +4 -4
  29. package/esm2020/lib/services/mongo.service.mjs +4 -4
  30. package/esm2020/lib/services/render.service.mjs +4 -4
  31. package/esm2020/lib/services/socket.service.mjs +4 -4
  32. package/esm2020/lib/services/store.service.mjs +4 -4
  33. package/esm2020/lib/services/time.service.mjs +4 -4
  34. package/esm2020/lib/services/ui.service.mjs +4 -4
  35. package/esm2020/lib/wacom.module.mjs +5 -5
  36. package/esm2020/public-api.mjs +1 -1
  37. package/fesm2015/wacom.mjs +181 -145
  38. package/fesm2015/wacom.mjs.map +1 -1
  39. package/fesm2020/wacom.mjs +181 -145
  40. package/fesm2020/wacom.mjs.map +1 -1
  41. package/package.json +1 -1
  42. package/src/lib/components/alert/README.md +34 -34
  43. package/src/lib/components/loader/README.md +34 -34
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wacom",
3
- "version": "14.2.0",
3
+ "version": "14.2.2",
4
4
  "license": "MIT",
5
5
  "repository": "WebArtWork/wacom",
6
6
  "keywords": [
@@ -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