@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.
- package/doc/changelog.md +10 -0
- package/esm2022/src/app/core/services/account.service.mjs +33 -10
- package/esm2022/src/app/core/services/platform.service.mjs +3 -3
- package/esm2022/src/app/core/services/startup.constants.mjs +10 -0
- package/esm2022/src/app/core/services/startup.model.mjs +2 -0
- package/esm2022/src/app/core/services/startup.service.mjs +148 -0
- package/esm2022/src/app/shared/file/file.utils.mjs +5 -5
- package/esm2022/src/app/shared/shared.module.mjs +2 -2
- package/esm2022/src/app/shared/storage/storage.service.mjs +2 -3
- package/esm2022/src/app/shared/upload-file/upload-file-popover.component.mjs +1 -1
- package/esm2022/src/environments/environment.class.mjs +4 -1
- package/esm2022/src/environments/environment.mjs +2 -1
- package/esm2022/testing/sumaris-net-ngx-components-testing.mjs +5 -0
- package/esm2022/testing/test/login-env.mjs +122 -0
- package/esm2022/testing/testing_api.mjs +10 -0
- package/esm2022/testing/utils/auth.utils.mjs +64 -0
- package/esm2022/testing/utils/ionic.utils.mjs +66 -0
- package/esm2022/testing/utils/material.utils.mjs +100 -0
- package/esm2022/testing/utils/startup.constants.mjs +4 -0
- package/esm2022/testing/utils/ui.utils.mjs +139 -0
- package/fesm2022/sumaris-net-ngx-components-testing.mjs +499 -0
- package/fesm2022/sumaris-net-ngx-components-testing.mjs.map +1 -0
- package/fesm2022/sumaris-net.ngx-components.mjs +318 -143
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +8 -1
- package/src/app/core/services/account.service.d.ts +5 -2
- package/src/app/core/services/startup.constants.d.ts +1 -0
- package/src/app/core/services/startup.model.d.ts +1 -0
- package/src/app/core/services/startup.service.d.ts +31 -0
- package/src/app/shared/upload-file/upload-file-popover.component.d.ts +4 -0
- package/src/assets/manifest.json +1 -1
- package/src/environments/environment.class.d.ts +2 -0
- package/testing/index.d.ts +5 -0
- package/testing/test/login-env.d.ts +76 -0
- package/testing/testing_api.d.ts +6 -0
- package/testing/utils/auth.utils.d.ts +21 -0
- package/testing/utils/ionic.utils.d.ts +51 -0
- package/testing/utils/material.utils.d.ts +57 -0
- package/testing/utils/startup.constants.d.ts +1 -0
- 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
|