@sumaris-net/ngx-components 18.24.24 → 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 (37) hide show
  1. package/doc/changelog.md +7 -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/shared.module.mjs +2 -2
  8. package/esm2022/src/app/shared/storage/storage.service.mjs +2 -3
  9. package/esm2022/src/environments/environment.class.mjs +4 -1
  10. package/esm2022/src/environments/environment.mjs +2 -1
  11. package/esm2022/testing/sumaris-net-ngx-components-testing.mjs +5 -0
  12. package/esm2022/testing/test/login-env.mjs +122 -0
  13. package/esm2022/testing/testing_api.mjs +10 -0
  14. package/esm2022/testing/utils/auth.utils.mjs +64 -0
  15. package/esm2022/testing/utils/ionic.utils.mjs +66 -0
  16. package/esm2022/testing/utils/material.utils.mjs +100 -0
  17. package/esm2022/testing/utils/startup.constants.mjs +4 -0
  18. package/esm2022/testing/utils/ui.utils.mjs +139 -0
  19. package/fesm2022/sumaris-net-ngx-components-testing.mjs +499 -0
  20. package/fesm2022/sumaris-net-ngx-components-testing.mjs.map +1 -0
  21. package/fesm2022/sumaris-net.ngx-components.mjs +314 -139
  22. package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
  23. package/package.json +8 -1
  24. package/src/app/core/services/account.service.d.ts +5 -2
  25. package/src/app/core/services/startup.constants.d.ts +1 -0
  26. package/src/app/core/services/startup.model.d.ts +1 -0
  27. package/src/app/core/services/startup.service.d.ts +31 -0
  28. package/src/assets/manifest.json +1 -1
  29. package/src/environments/environment.class.d.ts +2 -0
  30. package/testing/index.d.ts +5 -0
  31. package/testing/test/login-env.d.ts +76 -0
  32. package/testing/testing_api.d.ts +6 -0
  33. package/testing/utils/auth.utils.d.ts +21 -0
  34. package/testing/utils/ionic.utils.d.ts +51 -0
  35. package/testing/utils/material.utils.d.ts +57 -0
  36. package/testing/utils/startup.constants.d.ts +1 -0
  37. package/testing/utils/ui.utils.d.ts +79 -0
package/doc/changelog.md CHANGED
@@ -2251,3 +2251,10 @@ enh: Environment: add useHash property to configure Angular router to use hash U
2251
2251
 
2252
2252
  ## 18.24.24
2253
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