@sumaris-net/ngx-components 18.24.23 → 18.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/doc/changelog.md +10 -0
  2. package/esm2022/src/app/core/services/account.service.mjs +33 -10
  3. package/esm2022/src/app/core/services/platform.service.mjs +3 -3
  4. package/esm2022/src/app/core/services/startup.constants.mjs +10 -0
  5. package/esm2022/src/app/core/services/startup.model.mjs +2 -0
  6. package/esm2022/src/app/core/services/startup.service.mjs +148 -0
  7. package/esm2022/src/app/shared/file/file.utils.mjs +5 -5
  8. package/esm2022/src/app/shared/shared.module.mjs +2 -2
  9. package/esm2022/src/app/shared/storage/storage.service.mjs +2 -3
  10. package/esm2022/src/app/shared/upload-file/upload-file-popover.component.mjs +1 -1
  11. package/esm2022/src/environments/environment.class.mjs +4 -1
  12. package/esm2022/src/environments/environment.mjs +2 -1
  13. package/esm2022/testing/sumaris-net-ngx-components-testing.mjs +5 -0
  14. package/esm2022/testing/test/login-env.mjs +122 -0
  15. package/esm2022/testing/testing_api.mjs +10 -0
  16. package/esm2022/testing/utils/auth.utils.mjs +64 -0
  17. package/esm2022/testing/utils/ionic.utils.mjs +66 -0
  18. package/esm2022/testing/utils/material.utils.mjs +100 -0
  19. package/esm2022/testing/utils/startup.constants.mjs +4 -0
  20. package/esm2022/testing/utils/ui.utils.mjs +139 -0
  21. package/fesm2022/sumaris-net-ngx-components-testing.mjs +499 -0
  22. package/fesm2022/sumaris-net-ngx-components-testing.mjs.map +1 -0
  23. package/fesm2022/sumaris-net.ngx-components.mjs +318 -143
  24. package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
  25. package/package.json +8 -1
  26. package/src/app/core/services/account.service.d.ts +5 -2
  27. package/src/app/core/services/startup.constants.d.ts +1 -0
  28. package/src/app/core/services/startup.model.d.ts +1 -0
  29. package/src/app/core/services/startup.service.d.ts +31 -0
  30. package/src/app/shared/upload-file/upload-file-popover.component.d.ts +4 -0
  31. package/src/assets/manifest.json +1 -1
  32. package/src/environments/environment.class.d.ts +2 -0
  33. package/testing/index.d.ts +5 -0
  34. package/testing/test/login-env.d.ts +76 -0
  35. package/testing/testing_api.d.ts +6 -0
  36. package/testing/utils/auth.utils.d.ts +21 -0
  37. package/testing/utils/ionic.utils.d.ts +51 -0
  38. package/testing/utils/material.utils.d.ts +57 -0
  39. package/testing/utils/startup.constants.d.ts +1 -0
  40. package/testing/utils/ui.utils.d.ts +79 -0
package/doc/changelog.md CHANGED
@@ -2248,3 +2248,13 @@ enh: Environment: add useHash property to configure Angular router to use hash U
2248
2248
 
2249
2249
  ## 18.24.23
2250
2250
  - fix(material.date) Prevent event propagation in `openDatePicker()`
2251
+
2252
+ ## 18.24.24
2253
+ - enh(FileUtils) Add more options to `showUploadPopover()` like `backdropDismiss`, `keyboardClose` and `translucent`.
2254
+
2255
+ ## 18.24.25
2256
+ - fix(platform) Let Capacitor config handle accessory bar
2257
+
2258
+ ## 18.25.0
2259
+ - enh(startup) Add a startup service to be able to automatically set the peer and authenticate user
2260
+ - enh(testing) Add a testing package for shared testing utilities