@sumaris-net/ngx-components 2.2.2 → 2.2.4

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/doc/changelog.md +3 -0
  2. package/esm2020/public_api.mjs +3 -1
  3. package/esm2020/src/app/core/form/form.utils.mjs +1 -2
  4. package/esm2020/src/app/core/services/platform.service.mjs +6 -4
  5. package/esm2020/src/app/core/table/table.class.mjs +3 -3
  6. package/esm2020/src/app/shared/dates.mjs +2 -2
  7. package/esm2020/src/app/shared/file/json.utils.mjs +33 -0
  8. package/esm2020/src/app/shared/geolocation/geolocation.utils.mjs +41 -0
  9. package/esm2020/src/app/shared/material/latlong/testing/latlong.test.mjs +44 -16
  10. package/fesm2015/sumaris-net.ngx-components.mjs +113 -18
  11. package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
  12. package/fesm2020/sumaris-net.ngx-components.mjs +114 -15
  13. package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
  14. package/package.json +1 -1
  15. package/public_api.d.ts +2 -0
  16. package/resources/README.md +5 -6
  17. package/src/app/core/form/form.utils.d.ts +0 -1
  18. package/src/app/core/table/table.class.d.ts +3 -1
  19. package/src/app/shared/file/json.utils.d.ts +11 -0
  20. package/src/app/shared/geolocation/geolocation.utils.d.ts +11 -0
  21. package/src/app/shared/material/latlong/testing/latlong.test.d.ts +5 -2
  22. package/plugins/clovelced-plugin-audiomanagement/README.md +0 -66
  23. package/plugins/cordova-plugin-camera/README.md +0 -703
  24. package/plugins/cordova-plugin-device/README.md +0 -309
  25. package/plugins/cordova-plugin-file/README.md +0 -848
  26. package/plugins/cordova-plugin-file-transfer/README.md +0 -598
  27. package/plugins/cordova-plugin-file-transfer/doc/de/README.md +0 -311
  28. package/plugins/cordova-plugin-file-transfer/doc/es/README.md +0 -311
  29. package/plugins/cordova-plugin-file-transfer/doc/fr/README.md +0 -270
  30. package/plugins/cordova-plugin-file-transfer/doc/it/README.md +0 -311
  31. package/plugins/cordova-plugin-file-transfer/doc/ja/README.md +0 -311
  32. package/plugins/cordova-plugin-file-transfer/doc/ko/README.md +0 -311
  33. package/plugins/cordova-plugin-file-transfer/doc/pl/README.md +0 -311
  34. package/plugins/cordova-plugin-file-transfer/doc/zh/README.md +0 -311
  35. package/plugins/cordova-plugin-ionic-keyboard/README.md +0 -220
  36. package/plugins/cordova-plugin-ionic-webview/README.md +0 -181
  37. package/plugins/cordova-plugin-media-capture/README.md +0 -626
  38. package/plugins/cordova-plugin-splashscreen/README.md +0 -387
  39. package/plugins/cordova-plugin-statusbar/README.md +0 -341
  40. package/plugins/cordova-plugin-telerik-imagepicker/README.md +0 -155
  41. package/plugins/cordova-plugin-whitelist/README.md +0 -185
  42. package/plugins/cordova-sqlite-storage/README.md +0 -1848
  43. package/plugins/integrator-cordova-plugin-downloader/README.md +0 -49
@@ -1,49 +0,0 @@
1
- Android Downloader Cordova plugin
2
- ========
3
-
4
- This plugin is designed to support downloading files using Android DownloadManager.
5
-
6
-
7
- Installation
8
- --------
9
-
10
- ```bash
11
- cordova plugin add integrator-cordova-plugin-downloader
12
- ```
13
-
14
- Usage
15
- --------
16
-
17
- ```javascript
18
-
19
- var request = {
20
- uri: '',
21
- title: '',
22
- description: '',
23
- mimeType: '',
24
- visibleInDownloadsUi: true,
25
- notificationVisibility: 0,
26
-
27
- // Either of the next three properties
28
- destinationInExternalFilesDir: {
29
- dirType: '',
30
- subPath: ''
31
- },
32
- destinationInExternalPublicDir: {
33
- dirType: '',
34
- subPath: ''
35
- },
36
- destinationUri: '',
37
- headers: [{header: 'Authorization', value: 'Bearer iaksjfd89aklfdlkasdjf'}]
38
- };
39
-
40
- this.downloader.download(request)
41
- .then((location) => console.log('File download location:' + location))
42
- .catch((error) => console.error(error));
43
- ```
44
-
45
- ## Credits and License ##
46
-
47
- Based on Emil Bay's cordova-plugin-android-downloadmanager(<https://github.com/emilbayes/cordova-plugin-android-downloadmanager>)
48
-
49
-