@sumaris-net/ngx-components 2.0.0-rc9 → 2.0.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 (332) hide show
  1. package/README.md +3 -1
  2. package/esm2020/public_api.mjs +35 -22
  3. package/esm2020/src/app/admin/admin-routing.module.mjs +6 -6
  4. package/esm2020/src/app/admin/admin.module.mjs +6 -6
  5. package/esm2020/src/app/admin/services/person.service.mjs +3 -3
  6. package/esm2020/src/app/admin/services/validator/person.validator.mjs +3 -3
  7. package/esm2020/src/app/admin/users/users.mjs +233 -0
  8. package/esm2020/src/app/admin/users/users.module.mjs +54 -0
  9. package/esm2020/src/app/core/about/about.modal.mjs +71 -0
  10. package/esm2020/src/app/core/about/about.module.mjs +34 -0
  11. package/esm2020/src/app/core/account/account.module.mjs +43 -0
  12. package/esm2020/src/app/core/account/account.page.mjs +239 -0
  13. package/esm2020/src/app/core/auth/auth.form.mjs +131 -0
  14. package/esm2020/src/app/core/auth/auth.modal.mjs +72 -0
  15. package/esm2020/src/app/core/auth/auth.module.mjs +47 -0
  16. package/esm2020/src/app/core/core.module.mjs +86 -125
  17. package/esm2020/src/app/core/core.testing.module.mjs +7 -7
  18. package/esm2020/src/app/core/form/{form-buttons-bar.component.mjs → buttons/form-buttons-bar.component.mjs} +7 -7
  19. package/esm2020/src/app/core/form/buttons/form-buttons-bar.module.mjs +35 -0
  20. package/esm2020/src/app/core/form/entity/editor.class.mjs +675 -0
  21. package/esm2020/src/app/core/form/entity/entity-editor-modal.class.mjs +421 -0
  22. package/esm2020/src/app/core/form/entity/entity-editor.class.mjs +646 -0
  23. package/esm2020/src/app/core/form/{entity-metadata.component.mjs → entity/entity-metadata.component.mjs} +6 -6
  24. package/esm2020/src/app/core/form/entity/entity.module.mjs +38 -0
  25. package/esm2020/src/app/core/form/form.class.mjs +4 -4
  26. package/esm2020/src/app/core/form/form.module.mjs +66 -0
  27. package/esm2020/src/app/core/form/list/list.form.mjs +222 -0
  28. package/esm2020/src/app/core/form/list/list.module.mjs +35 -0
  29. package/esm2020/src/app/core/form/properties/properties.form.mjs +3 -3
  30. package/esm2020/src/app/core/form/properties/properties.module.mjs +35 -0
  31. package/esm2020/src/app/core/form/properties/property.validator.mjs +4 -4
  32. package/esm2020/src/app/core/form/properties/testing/properties-form.test.mjs +3 -3
  33. package/esm2020/src/app/core/form/properties/testing/properties-form.testing.module.mjs +4 -4
  34. package/esm2020/src/app/core/{text-popover → form/text-popover}/testing/text-popover.testing.mjs +4 -4
  35. package/esm2020/src/app/core/form/text-popover/testing/text-popover.testing.module.mjs +45 -0
  36. package/esm2020/src/app/core/form/text-popover/text-form.component.mjs +89 -0
  37. package/esm2020/src/app/core/form/text-popover/text-popover.component.mjs +105 -0
  38. package/esm2020/src/app/core/form/text-popover/text-popover.module.mjs +40 -0
  39. package/esm2020/src/app/core/graphql/graphql.module.mjs +4 -4
  40. package/esm2020/src/app/core/graphql/graphql.service.mjs +12 -7
  41. package/esm2020/src/app/core/graphql/graphql.utils.mjs +2 -2
  42. package/esm2020/src/app/core/home/home.mjs +8 -8
  43. package/esm2020/src/app/core/home/home.module.mjs +48 -0
  44. package/esm2020/src/app/core/icon/icon.component.mjs +3 -3
  45. package/esm2020/src/app/core/icon/icon.module.mjs +4 -4
  46. package/esm2020/src/app/core/install/install-upgrade-card.component.mjs +3 -3
  47. package/esm2020/src/app/core/install/install-upgrade-card.module.mjs +17 -15
  48. package/esm2020/src/app/core/menu/menu.component.mjs +5 -5
  49. package/esm2020/src/app/core/menu/menu.module.mjs +9 -10
  50. package/esm2020/src/app/core/menu/menu.service.mjs +3 -3
  51. package/esm2020/src/app/core/offline/update-offline-mode-card.component.mjs +3 -3
  52. package/esm2020/src/app/core/offline/update-offline-mode-card.module.mjs +35 -0
  53. package/esm2020/src/app/core/peer/select-peer.modal.mjs +55 -11
  54. package/esm2020/src/app/core/peer/select-peer.module.mjs +17 -10
  55. package/esm2020/src/app/core/register/register-confirm.page.mjs +81 -0
  56. package/esm2020/src/app/core/register/register.form.mjs +181 -0
  57. package/esm2020/src/app/core/register/register.modal.mjs +52 -0
  58. package/esm2020/src/app/core/register/register.module.mjs +17 -15
  59. package/esm2020/src/app/core/services/account.service.mjs +22 -23
  60. package/esm2020/src/app/core/services/auth-guard.service.mjs +6 -6
  61. package/esm2020/src/app/core/services/base-entity-service.class.mjs +3 -3
  62. package/esm2020/src/app/core/services/base-graphql-service.class.mjs +8 -8
  63. package/esm2020/src/app/core/services/base58.mjs +2 -2
  64. package/esm2020/src/app/core/services/config.service.mjs +4 -4
  65. package/esm2020/src/app/core/services/crypto.service.mjs +82 -97
  66. package/esm2020/src/app/core/services/local-settings.service.mjs +8 -10
  67. package/esm2020/src/app/core/services/model/entity.decorators.mjs +44 -54
  68. package/esm2020/src/app/core/services/model/peer.model.mjs +3 -3
  69. package/esm2020/src/app/core/services/network.service.mjs +7 -7
  70. package/esm2020/src/app/core/services/pipes/account.pipes.mjs +8 -8
  71. package/esm2020/src/app/core/services/pipes/department-to-string.pipe.mjs +4 -4
  72. package/esm2020/src/app/core/services/pipes/person-to-string.pipe.mjs +4 -4
  73. package/esm2020/src/app/core/services/pipes/usage-mode.pipes.mjs +8 -8
  74. package/esm2020/src/app/core/services/platform.service.mjs +9 -10
  75. package/esm2020/src/app/core/services/storage/entities-storage.service.mjs +3 -3
  76. package/esm2020/src/app/core/services/storage/entity-store.class.mjs +4 -4
  77. package/esm2020/src/app/core/services/testing/referential.validator.mjs +3 -3
  78. package/esm2020/src/app/core/services/validator/account.validator.mjs +3 -3
  79. package/esm2020/src/app/core/services/validator/base.validator.class.mjs +3 -3
  80. package/esm2020/src/app/core/services/validator/local-settings.validator.mjs +3 -3
  81. package/esm2020/src/app/core/services/validator/user-settings.validator.mjs +3 -3
  82. package/esm2020/src/app/core/settings/settings.module.mjs +34 -0
  83. package/esm2020/src/app/core/settings/settings.page.mjs +12 -9
  84. package/esm2020/src/app/core/table/actions-column.component.mjs +3 -3
  85. package/esm2020/src/app/core/table/entities-table-datasource.class.mjs +13 -8
  86. package/esm2020/src/app/core/table/memory-table.class.mjs +3 -3
  87. package/esm2020/src/app/core/table/table-select-columns.component.mjs +3 -3
  88. package/esm2020/src/app/core/table/table.class.mjs +11 -16
  89. package/esm2020/src/app/core/table/table.module.mjs +40 -0
  90. package/esm2020/src/app/core/table/testing/table.testing.mjs +8 -8
  91. package/esm2020/src/app/core/table/testing/table.testing.module.mjs +4 -4
  92. package/esm2020/src/app/shared/audio/audio.mjs +3 -3
  93. package/esm2020/src/app/shared/audio/audio.testing.mjs +3 -3
  94. package/esm2020/src/app/shared/audio/audio.testing.module.mjs +4 -4
  95. package/esm2020/src/app/shared/capacitor/keyboard.mjs +3 -3
  96. package/esm2020/src/app/shared/constants.mjs +4 -2
  97. package/esm2020/src/app/shared/dates.mjs +20 -14
  98. package/esm2020/src/app/shared/debug/debug.component.mjs +3 -3
  99. package/esm2020/src/app/shared/debug/debug.module.mjs +4 -4
  100. package/esm2020/src/app/shared/directives/autofocus.directive.mjs +3 -3
  101. package/esm2020/src/app/shared/directives/autotitle.directive.mjs +3 -3
  102. package/esm2020/src/app/shared/directives/directives.module.mjs +4 -4
  103. package/esm2020/src/app/shared/directives/drag-and-drop.directive.mjs +3 -3
  104. package/esm2020/src/app/shared/directives/ng-var.directive.mjs +3 -3
  105. package/esm2020/src/app/shared/directives/resizable/resizable.component.mjs +3 -3
  106. package/esm2020/src/app/shared/directives/resizable/resizable.directive.mjs +3 -3
  107. package/esm2020/src/app/shared/directives/resizable/resizable.module.mjs +4 -4
  108. package/esm2020/src/app/shared/file/file.service.mjs +5 -5
  109. package/esm2020/src/app/shared/form/field.component.mjs +3 -3
  110. package/esm2020/src/app/shared/form/loading-spinner.mjs +3 -3
  111. package/esm2020/src/app/shared/gesture/gesture-config.mjs +3 -3
  112. package/esm2020/src/app/shared/guard/component-dirty.guard.mjs +3 -3
  113. package/esm2020/src/app/shared/help/help.modal.mjs +3 -3
  114. package/esm2020/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +3 -3
  115. package/esm2020/src/app/shared/hotkeys/hotkeys.service.mjs +3 -3
  116. package/esm2020/src/app/shared/hotkeys/shared-hotkeys.module.mjs +4 -4
  117. package/esm2020/src/app/shared/image/gallery/image-gallery.component.mjs +134 -60
  118. package/esm2020/src/app/shared/image/gallery/image-gallery.module.mjs +19 -7
  119. package/esm2020/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +3 -3
  120. package/esm2020/src/app/shared/image/gallery/testing/gallery.testing.mjs +13 -7
  121. package/esm2020/src/app/shared/image/gallery/testing/gallery.testing.module.mjs +4 -4
  122. package/esm2020/src/app/shared/image/image.module.mjs +5 -5
  123. package/esm2020/src/app/shared/image/image.service.mjs +3 -3
  124. package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.mjs +7 -6
  125. package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +4 -4
  126. package/esm2020/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +3 -3
  127. package/esm2020/src/app/shared/material/badge/badge.directive.mjs +3 -3
  128. package/esm2020/src/app/shared/material/badge/badge.module.mjs +4 -4
  129. package/esm2020/src/app/shared/material/badge/badge.test.mjs +3 -3
  130. package/esm2020/src/app/shared/material/boolean/boolean.module.mjs +4 -4
  131. package/esm2020/src/app/shared/material/boolean/material.boolean.mjs +5 -5
  132. package/esm2020/src/app/shared/material/chips/chips.module.mjs +4 -4
  133. package/esm2020/src/app/shared/material/chips/material.chips.mjs +5 -5
  134. package/esm2020/src/app/shared/material/chips/testing/chips.test.mjs +3 -3
  135. package/esm2020/src/app/shared/material/datetime/datetime.module.mjs +4 -4
  136. package/esm2020/src/app/shared/material/datetime/material.date.mjs +7 -8
  137. package/esm2020/src/app/shared/material/datetime/material.dateshort.mjs +6 -6
  138. package/esm2020/src/app/shared/material/datetime/material.datetime.mjs +7 -8
  139. package/esm2020/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +5 -7
  140. package/esm2020/src/app/shared/material/datetime/testing/mat-date.test.mjs +7 -8
  141. package/esm2020/src/app/shared/material/duration/duration.module.mjs +4 -4
  142. package/esm2020/src/app/shared/material/duration/material.duration.mjs +3 -3
  143. package/esm2020/src/app/shared/material/latlong/material.latlong.mjs +3 -3
  144. package/esm2020/src/app/shared/material/latlong/material.latlong.module.mjs +4 -4
  145. package/esm2020/src/app/shared/material/latlong/testing/latlong.test.mjs +3 -3
  146. package/esm2020/src/app/shared/material/material.module.mjs +4 -4
  147. package/esm2020/src/app/shared/material/material.testing.module.mjs +4 -4
  148. package/esm2020/src/app/shared/material/numpad/numpad.append-to-input.directive.mjs +3 -3
  149. package/esm2020/src/app/shared/material/numpad/numpad.component.mjs +3 -3
  150. package/esm2020/src/app/shared/material/numpad/numpad.container.mjs +3 -3
  151. package/esm2020/src/app/shared/material/numpad/numpad.content.mjs +3 -3
  152. package/esm2020/src/app/shared/material/numpad/numpad.directive.mjs +3 -3
  153. package/esm2020/src/app/shared/material/numpad/numpad.dom-service.mjs +3 -3
  154. package/esm2020/src/app/shared/material/numpad/numpad.module.mjs +4 -4
  155. package/esm2020/src/app/shared/material/numpad/testing/numpad.test.mjs +3 -3
  156. package/esm2020/src/app/shared/material/paginator/material.paginator-i18n.mjs +3 -3
  157. package/esm2020/src/app/shared/material/stepper/material.stepper-i18n.mjs +3 -3
  158. package/esm2020/src/app/shared/material/swipe/material.swipe.mjs +3 -3
  159. package/esm2020/src/app/shared/material/swipe/swipe.module.mjs +4 -4
  160. package/esm2020/src/app/shared/material/swipe/testing/swipe.test.mjs +11 -12
  161. package/esm2020/src/app/shared/modules.mjs +11 -0
  162. package/esm2020/src/app/shared/pipes/arrays.pipe.mjs +24 -24
  163. package/esm2020/src/app/shared/pipes/colors.pipe.mjs +4 -4
  164. package/esm2020/src/app/shared/pipes/date-diff-duration.pipe.mjs +8 -9
  165. package/esm2020/src/app/shared/pipes/date-format.pipe.mjs +38 -14
  166. package/esm2020/src/app/shared/pipes/date-from-now.pipe.mjs +4 -4
  167. package/esm2020/src/app/shared/pipes/duration.pipe.mjs +4 -4
  168. package/esm2020/src/app/shared/pipes/file-size.pipe.mjs +3 -3
  169. package/esm2020/src/app/shared/pipes/form.pipes.mjs +18 -18
  170. package/esm2020/src/app/shared/pipes/highlight.pipe.mjs +4 -4
  171. package/esm2020/src/app/shared/pipes/latlong-format.pipe.mjs +9 -9
  172. package/esm2020/src/app/shared/pipes/maps.pipe.mjs +12 -12
  173. package/esm2020/src/app/shared/pipes/math.pipes.mjs +12 -12
  174. package/esm2020/src/app/shared/pipes/ng-init.pipe.mjs +3 -3
  175. package/esm2020/src/app/shared/pipes/number-format.pipe.mjs +4 -4
  176. package/esm2020/src/app/shared/pipes/pipes.module.mjs +14 -6
  177. package/esm2020/src/app/shared/pipes/property.pipes.mjs +9 -12
  178. package/esm2020/src/app/shared/pipes/string.pipes.mjs +43 -17
  179. package/esm2020/src/app/shared/pipes/translate-context.pipe.mjs +8 -8
  180. package/esm2020/src/app/shared/services/memory-entity-service.class.mjs +3 -3
  181. package/esm2020/src/app/shared/services/progress-bar.service.mjs +3 -3
  182. package/esm2020/src/app/shared/services/storage/storage.service.mjs +3 -3
  183. package/esm2020/src/app/shared/services/translate-context.service.mjs +3 -3
  184. package/esm2020/src/app/shared/shared-routing.module.mjs +7 -7
  185. package/esm2020/src/app/shared/shared.module.mjs +11 -7
  186. package/esm2020/src/app/shared/shared.testing.module.mjs +4 -4
  187. package/esm2020/src/app/shared/testing/observable.test.mjs +6 -7
  188. package/esm2020/src/app/shared/testing/tests.page.mjs +3 -3
  189. package/esm2020/src/app/shared/toast/toast.testing.mjs +3 -3
  190. package/esm2020/src/app/shared/toast/toast.testing.module.mjs +4 -4
  191. package/esm2020/src/app/shared/toast/toasts.mjs +1 -1
  192. package/esm2020/src/app/shared/toolbar/modal-toolbar.mjs +3 -3
  193. package/esm2020/src/app/shared/toolbar/toolbar.mjs +3 -3
  194. package/esm2020/src/app/shared/toolbar/toolbar.module.mjs +4 -4
  195. package/esm2020/src/app/shared/upload-file/testing/upload-file.testing.mjs +3 -3
  196. package/esm2020/src/app/shared/upload-file/testing/upload-file.testing.module.mjs +4 -4
  197. package/esm2020/src/app/shared/upload-file/upload-file-popover.component.mjs +5 -5
  198. package/esm2020/src/app/shared/upload-file/upload-file.component.mjs +3 -3
  199. package/esm2020/src/app/shared/validator/form-error-adapter.class.mjs +3 -3
  200. package/esm2020/src/app/shared/validator/validators.mjs +4 -5
  201. package/esm2020/src/app/social/job/job.module.mjs +4 -4
  202. package/esm2020/src/app/social/job/job.service.mjs +3 -3
  203. package/esm2020/src/app/social/job/progression/job-progression.icon.mjs +3 -3
  204. package/esm2020/src/app/social/job/progression/job-progression.list.mjs +4 -4
  205. package/esm2020/src/app/social/job/testing/job-progression.testing.mjs +3 -3
  206. package/esm2020/src/app/social/job/testing/job-progression.testing.service.mjs +3 -3
  207. package/esm2020/src/app/social/job/testing/job.testing.module.mjs +4 -4
  208. package/esm2020/src/app/social/message/message.form.mjs +3 -3
  209. package/esm2020/src/app/social/message/message.modal.mjs +3 -3
  210. package/esm2020/src/app/social/message/message.module.mjs +4 -4
  211. package/esm2020/src/app/social/message/message.service.mjs +3 -3
  212. package/esm2020/src/app/social/social.module.mjs +4 -4
  213. package/esm2020/src/app/social/social.testing.module.mjs +4 -4
  214. package/esm2020/src/app/social/user-event/notification/user-event-notification.icon.mjs +3 -3
  215. package/esm2020/src/app/social/user-event/notification/user-event-notification.list.mjs +7 -7
  216. package/esm2020/src/app/social/user-event/testing/user-event.testing.mjs +13 -12
  217. package/esm2020/src/app/social/user-event/testing/user-event.testing.module.mjs +4 -4
  218. package/esm2020/src/app/social/user-event/testing/user-event.testing.service.mjs +3 -3
  219. package/esm2020/src/app/social/user-event/user-event.module.mjs +4 -4
  220. package/esm2020/src/app/social/user-event/user-event.service.mjs +6 -8
  221. package/fesm2015/sumaris-net.ngx-components.mjs +10176 -9570
  222. package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
  223. package/fesm2020/sumaris-net.ngx-components.mjs +10390 -9791
  224. package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
  225. package/package.json +2 -1
  226. package/plugins/clovelced-plugin-audiomanagement/README.md +66 -0
  227. package/plugins/cordova-plugin-camera/README.md +703 -0
  228. package/plugins/cordova-plugin-device/README.md +309 -0
  229. package/plugins/cordova-plugin-file/README.md +848 -0
  230. package/plugins/cordova-plugin-file-transfer/README.md +598 -0
  231. package/plugins/cordova-plugin-file-transfer/doc/de/README.md +311 -0
  232. package/plugins/cordova-plugin-file-transfer/doc/es/README.md +311 -0
  233. package/plugins/cordova-plugin-file-transfer/doc/fr/README.md +270 -0
  234. package/plugins/cordova-plugin-file-transfer/doc/it/README.md +311 -0
  235. package/plugins/cordova-plugin-file-transfer/doc/ja/README.md +311 -0
  236. package/plugins/cordova-plugin-file-transfer/doc/ko/README.md +311 -0
  237. package/plugins/cordova-plugin-file-transfer/doc/pl/README.md +311 -0
  238. package/plugins/cordova-plugin-file-transfer/doc/zh/README.md +311 -0
  239. package/plugins/cordova-plugin-ionic-keyboard/README.md +220 -0
  240. package/plugins/cordova-plugin-ionic-webview/README.md +181 -0
  241. package/plugins/cordova-plugin-media-capture/README.md +626 -0
  242. package/plugins/cordova-plugin-splashscreen/README.md +387 -0
  243. package/plugins/cordova-plugin-statusbar/README.md +341 -0
  244. package/plugins/cordova-plugin-telerik-imagepicker/README.md +155 -0
  245. package/plugins/cordova-plugin-whitelist/README.md +185 -0
  246. package/plugins/cordova-sqlite-storage/README.md +1848 -0
  247. package/plugins/integrator-cordova-plugin-downloader/README.md +49 -0
  248. package/public_api.d.ts +34 -21
  249. package/src/app/admin/admin.module.d.ts +1 -1
  250. package/src/app/admin/users/{list/users.d.ts → users.d.ts} +11 -11
  251. package/src/app/admin/users/users.module.d.ts +13 -0
  252. package/src/app/core/about/{modal-about.d.ts → about.modal.d.ts} +1 -1
  253. package/src/app/core/about/about.module.d.ts +10 -0
  254. package/src/app/core/account/account.module.d.ts +11 -0
  255. package/src/app/core/account/{account.d.ts → account.page.d.ts} +5 -1
  256. package/src/app/core/auth/{form/form-auth.d.ts → auth.form.d.ts} +9 -9
  257. package/src/app/core/auth/{modal/modal-auth.d.ts → auth.modal.d.ts} +4 -4
  258. package/src/app/core/auth/auth.module.d.ts +11 -0
  259. package/src/app/core/core.module.d.ts +20 -29
  260. package/src/app/core/core.testing.module.d.ts +1 -1
  261. package/src/app/core/form/{form-buttons-bar.component.d.ts → buttons/form-buttons-bar.component.d.ts} +2 -2
  262. package/src/app/core/form/buttons/form-buttons-bar.module.d.ts +9 -0
  263. package/src/app/core/form/{editor.class.d.ts → entity/editor.class.d.ts} +9 -9
  264. package/src/app/core/form/{entity-editor-modal.class.d.ts → entity/entity-editor-modal.class.d.ts} +8 -8
  265. package/src/app/core/form/{entity-editor.class.d.ts → entity/entity-editor.class.d.ts} +11 -11
  266. package/src/app/core/form/{entity-metadata.component.d.ts → entity/entity-metadata.component.d.ts} +1 -1
  267. package/src/app/core/form/entity/entity.module.d.ts +10 -0
  268. package/src/app/core/form/form.module.d.ts +13 -0
  269. package/src/app/core/form/{list.form.d.ts → list/list.form.d.ts} +3 -3
  270. package/src/app/core/form/list/list.module.d.ts +9 -0
  271. package/src/app/core/form/properties/properties.module.d.ts +9 -0
  272. package/src/app/core/{text-popover → form/text-popover}/testing/text-popover.testing.d.ts +0 -0
  273. package/src/app/core/{text-popover → form/text-popover}/testing/text-popover.testing.module.d.ts +0 -0
  274. package/src/app/core/{text-popover → form/text-popover}/text-form.component.d.ts +4 -3
  275. package/src/app/core/{text-popover → form/text-popover}/text-popover.component.d.ts +7 -2
  276. package/src/app/core/form/text-popover/text-popover.module.d.ts +10 -0
  277. package/src/app/core/home/home.module.d.ts +12 -0
  278. package/src/app/core/install/install-upgrade-card.module.d.ts +6 -7
  279. package/src/app/core/menu/menu.component.d.ts +1 -1
  280. package/src/app/core/offline/update-offline-mode-card.module.d.ts +9 -0
  281. package/src/app/core/peer/select-peer.modal.d.ts +19 -5
  282. package/src/app/core/peer/select-peer.module.d.ts +6 -4
  283. package/src/app/core/register/{confirm/confirm.d.ts → register-confirm.page.d.ts} +4 -4
  284. package/src/app/core/register/{form/form-register.d.ts → register.form.d.ts} +7 -7
  285. package/src/app/core/register/{modal/modal-register.d.ts → register.modal.d.ts} +2 -2
  286. package/src/app/core/register/register.module.d.ts +6 -6
  287. package/src/app/core/services/account.service.d.ts +8 -9
  288. package/src/app/core/services/base-graphql-service.class.d.ts +9 -8
  289. package/src/app/core/services/crypto.service.d.ts +23 -18
  290. package/src/app/core/services/model/entity.decorators.d.ts +1 -9
  291. package/src/app/core/services/network.service.d.ts +3 -4
  292. package/src/app/core/settings/settings.module.d.ts +10 -0
  293. package/src/app/core/settings/settings.page.d.ts +2 -4
  294. package/src/app/core/table/entities-table-datasource.class.d.ts +1 -0
  295. package/src/app/core/table/table.class.d.ts +2 -6
  296. package/src/app/core/table/table.module.d.ts +10 -0
  297. package/src/app/shared/constants.d.ts +1 -1
  298. package/src/app/shared/dates.d.ts +5 -3
  299. package/src/app/shared/image/gallery/image-gallery.component.d.ts +39 -17
  300. package/src/app/shared/image/gallery/image-gallery.module.d.ts +6 -4
  301. package/src/app/shared/image/gallery/testing/gallery.testing.d.ts +1 -0
  302. package/src/app/shared/material/datetime/testing/mat-date.test.d.ts +1 -0
  303. package/src/app/shared/material/swipe/testing/swipe.test.d.ts +5 -6
  304. package/src/app/shared/modules.d.ts +8 -0
  305. package/src/app/shared/pipes/date-format.pipe.d.ts +22 -11
  306. package/src/app/shared/pipes/pipes.module.d.ts +1 -1
  307. package/src/app/shared/pipes/property.pipes.d.ts +4 -6
  308. package/src/app/shared/pipes/string.pipes.d.ts +10 -0
  309. package/src/app/shared/shared.module.d.ts +2 -1
  310. package/src/assets/i18n/en-US.json +20 -5
  311. package/src/assets/i18n/en.json +18 -4
  312. package/src/assets/i18n/fr.json +17 -6
  313. package/src/theme/_ngx-components.scss +22 -4
  314. package/esm2020/src/app/admin/users/list/users.mjs +0 -233
  315. package/esm2020/src/app/admin/users/list/users.module.mjs +0 -58
  316. package/esm2020/src/app/core/about/modal-about.mjs +0 -71
  317. package/esm2020/src/app/core/account/account.mjs +0 -230
  318. package/esm2020/src/app/core/auth/form/form-auth.mjs +0 -131
  319. package/esm2020/src/app/core/auth/modal/modal-auth.mjs +0 -72
  320. package/esm2020/src/app/core/form/editor.class.mjs +0 -675
  321. package/esm2020/src/app/core/form/entity-editor-modal.class.mjs +0 -421
  322. package/esm2020/src/app/core/form/entity-editor.class.mjs +0 -646
  323. package/esm2020/src/app/core/form/list.form.mjs +0 -222
  324. package/esm2020/src/app/core/register/confirm/confirm.mjs +0 -81
  325. package/esm2020/src/app/core/register/form/form-register.mjs +0 -181
  326. package/esm2020/src/app/core/register/modal/modal-register.mjs +0 -52
  327. package/esm2020/src/app/core/text-popover/testing/text-popover.testing.module.mjs +0 -45
  328. package/esm2020/src/app/core/text-popover/text-form.component.mjs +0 -84
  329. package/esm2020/src/app/core/text-popover/text-popover.component.mjs +0 -92
  330. package/esm2020/src/app/vendor.mjs +0 -16
  331. package/src/app/admin/users/list/users.module.d.ts +0 -14
  332. package/src/app/vendor.d.ts +0 -11
@@ -1,9 +1,11 @@
1
- import * as momentImported from 'moment';
2
1
  import { Duration, Moment, unitOfTime } from 'moment';
2
+ import * as momentImported from 'moment';
3
3
  export declare const DATE_UNIX_TIMESTAMP = "X";
4
4
  export declare const DATE_UNIX_MS_TIMESTAMP = "x";
5
5
  export declare const MOMENT_NO_TIME_PROPERTY = "_hasNoTime";
6
6
  export declare class DateUtils {
7
+ static moment: typeof momentImported;
8
+ static momentTZ: typeof momentImported;
7
9
  static toDateISOString: typeof toDateISOString;
8
10
  static fromDateISOString: typeof fromDateISOString;
9
11
  static toDuration: typeof toDuration;
@@ -31,6 +33,6 @@ export declare class DateUtils {
31
33
  }
32
34
  export declare function toDateISOString(value: any): string | undefined;
33
35
  export declare function fromDateISOString(value: any): Moment | undefined;
34
- export declare function fromUnixTimestamp(timeInSec: number): momentImported.Moment;
35
- export declare function fromUnixMsTimestamp(timeInMs: number): momentImported.Moment;
36
+ export declare function fromUnixTimestamp(timeInSec: number): Moment;
37
+ export declare function fromUnixMsTimestamp(timeInMs: number): Moment;
36
38
  export declare function toDuration(value: number, unit?: moment.unitOfTime.DurationConstructor): Duration;
@@ -4,74 +4,96 @@ import { TableDataSource, TableElement } from '@e-is/ngx-material-table';
4
4
  import { Environment } from '../../../../environments/environment.class';
5
5
  import { ImageService } from '../image.service';
6
6
  import { Image } from '../image.model';
7
- import { AlertController, IonModal, IonSlides, Platform } from '@ionic/angular';
7
+ import { AlertController, IonModal, IonPopover, IonSlides, Platform, PopoverController } from '@ionic/angular';
8
8
  import { CollectionViewer, ListRange } from '@angular/cdk/collections';
9
9
  import { TranslateService } from '@ngx-translate/core';
10
+ import { AppColors } from '../../types';
11
+ import { FormGroup } from '@angular/forms';
12
+ import { EventEmitter } from '@angular/core';
10
13
  import * as i0 from "@angular/core";
11
14
  export declare type GalleryMode = 'mosaic' | 'list';
15
+ export interface ISwiper {
16
+ activeIndex: number;
17
+ imagesLoaded: number;
18
+ }
12
19
  export declare class AppImageGalleryComponent<T extends Image> implements OnInit, OnDestroy, CollectionViewer, AfterContentChecked {
13
20
  protected image: ImageService;
14
21
  protected platform: Platform;
15
22
  protected alterCtrl: AlertController;
23
+ protected popoverCtrl: PopoverController;
16
24
  protected translate: TranslateService;
17
25
  protected cd: ChangeDetectorRef;
18
26
  protected _destroySubject: Subject<void>;
19
27
  protected _renderChangeSubscription: Subscription;
20
28
  protected _subscription: Subscription;
21
29
  protected _dataSource: TableDataSource<T>;
22
- protected _dirty: boolean;
23
30
  protected _data: TableElement<T>[];
24
31
  protected _colSize: number;
25
32
  protected _selectedRowIndex: number;
26
33
  protected _presentingElement: Element;
34
+ protected _titleForm: FormGroup;
35
+ protected _titleAutofocus: boolean;
36
+ protected _slidesSubscription: Subscription;
27
37
  zoomActive: boolean;
28
38
  zoomScale: number;
29
39
  sliderOpts: {
30
40
  allowSlidePrev: boolean;
31
41
  allowSlideNext: boolean;
32
- zoom: {
33
- maxRatio: number;
34
- };
35
- on: {
36
- zoomChange: (scale: any, imageEl: any, slideEl: any) => void;
37
- };
42
+ zoom: boolean;
38
43
  };
39
44
  modalSliderOpts: {
40
45
  zoom: boolean;
41
46
  };
42
47
  viewChange: BehaviorSubject<ListRange>;
43
48
  debug: boolean;
44
- readOnly: boolean;
45
49
  disabled: boolean;
46
- showToolbar: boolean;
50
+ readOnly: boolean;
47
51
  mobile: boolean;
48
52
  mode: GalleryMode;
49
53
  confirmBeforeDelete: boolean;
54
+ showToolbar: boolean;
55
+ showFabButton: boolean;
56
+ showTitle: boolean;
57
+ showAddCardButton: boolean;
58
+ addButtonColor: AppColors;
50
59
  set dataSource(dataSource: TableDataSource<T>);
51
60
  get dataSource(): TableDataSource<T>;
52
61
  get enabled(): boolean;
53
62
  get rows(): TableElement<T>[];
54
- slides: IonSlides;
63
+ get rowCount(): number;
55
64
  zoomModal: IonModal;
56
- constructor(image: ImageService, platform: Platform, alterCtrl: AlertController, translate: TranslateService, cd: ChangeDetectorRef, environment?: Environment);
65
+ titlePopover: IonPopover;
66
+ onBeforeDeleteRows: EventEmitter<import("../../events").PromiseEvent<boolean, {
67
+ rows: TableElement<T>[];
68
+ }>>;
69
+ onAfterAddRows: EventEmitter<TableElement<T>[]>;
70
+ constructor(image: ImageService, platform: Platform, alterCtrl: AlertController, popoverCtrl: PopoverController, translate: TranslateService, cd: ChangeDetectorRef, environment?: Environment);
57
71
  ngOnInit(): void;
58
72
  ngAfterContentChecked(): void;
59
73
  ngOnDestroy(): void;
60
74
  add(event?: Event): Promise<void>;
61
- delete(event: Event, row: TableElement<T>): Promise<boolean>;
75
+ delete(event: Event, row: TableElement<T>, opts?: {
76
+ interactive?: boolean;
77
+ }): Promise<boolean>;
62
78
  toggleViewMode(event?: Event): void;
63
79
  trackByFn(index: number, row: TableElement<T>): number;
80
+ editTitle(event: MouseEvent, row: TableElement<T>, cardToolbar: any): Promise<void>;
81
+ protected showCardToolbar(cardToolbar: any): void;
82
+ protected hideCardToolbar(cardToolbar: any): void;
64
83
  protected _switchDataSource(dataSource: TableDataSource<T>): void;
65
84
  protected _observeRenderChanges(): void;
66
85
  protected getTableUnknownDataSourceError(): Error;
67
- protected touchStart(card: any): void;
68
- protected touchEnd(card: any): Promise<void>;
69
86
  protected clickRow(row: TableElement<T>, index: number): Promise<void>;
87
+ protected activeSlideIndex: number;
70
88
  protected initModalSlides(slides: IonSlides): Promise<void>;
71
89
  protected zoom(slides: IonSlides, zoomIn: boolean): Promise<void>;
72
90
  protected deleteFromModal(event: any, slides: IonSlides): Promise<boolean>;
73
91
  protected slidePrev(slides: IonSlides): Promise<void>;
74
92
  protected slideNext(slides: IonSlides): Promise<void>;
75
- static ɵfac: i0.ɵɵFactoryDeclaration<AppImageGalleryComponent<any>, [null, null, null, null, null, { optional: true; }]>;
76
- static ɵcmp: i0.ɵɵComponentDeclaration<AppImageGalleryComponent<any>, "app-image-gallery", never, { "debug": "debug"; "readOnly": "readOnly"; "disabled": "disabled"; "showToolbar": "showToolbar"; "mobile": "mobile"; "mode": "mode"; "confirmBeforeDelete": "confirmBeforeDelete"; "dataSource": "dataSource"; }, {}, never, never, false>;
93
+ protected canDeleteRows(rows: TableElement<T>[], opts?: {
94
+ interactive?: boolean;
95
+ }): Promise<boolean>;
96
+ protected markForCheck(): void;
97
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppImageGalleryComponent<any>, [null, null, null, null, null, null, { optional: true; }]>;
98
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppImageGalleryComponent<any>, "app-image-gallery", never, { "debug": "debug"; "disabled": "disabled"; "readOnly": "readOnly"; "mobile": "mobile"; "mode": "mode"; "confirmBeforeDelete": "confirmBeforeDelete"; "showToolbar": "showToolbar"; "showFabButton": "showFabButton"; "showTitle": "showTitle"; "showAddCardButton": "showAddCardButton"; "addButtonColor": "addButtonColor"; "dataSource": "dataSource"; }, { "onBeforeDeleteRows": "onBeforeDeleteRows"; "onAfterAddRows": "onAfterAddRows"; }, never, never, false>;
77
99
  }
@@ -2,11 +2,13 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./image-gallery.component";
3
3
  import * as i2 from "@angular/common";
4
4
  import * as i3 from "@ionic/angular";
5
- import * as i4 from "../../material/material.module";
6
- import * as i5 from "../../pipes/pipes.module";
7
- import * as i6 from "@ngx-translate/core";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../../material/material.module";
7
+ import * as i6 from "../../pipes/pipes.module";
8
+ import * as i7 from "../../directives/directives.module";
9
+ import * as i8 from "@ngx-translate/core";
8
10
  export declare class ImageGalleryModule {
9
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageGalleryModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<ImageGalleryModule, [typeof i1.AppImageGalleryComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i4.SharedMaterialModule, typeof i5.SharedPipesModule, typeof i6.TranslateModule], [typeof i1.AppImageGalleryComponent]>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ImageGalleryModule, [typeof i1.AppImageGalleryComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i4.ReactiveFormsModule, typeof i5.SharedMaterialModule, typeof i6.SharedPipesModule, typeof i7.SharedDirectivesModule, typeof i8.TranslateModule], [typeof i3.IonicModule, typeof i8.TranslateModule, typeof i1.AppImageGalleryComponent]>;
11
13
  static ɵinj: i0.ɵɵInjectorDeclaration<ImageGalleryModule>;
12
14
  }
@@ -10,6 +10,7 @@ export declare class GalleryTestPage implements OnInit, OnDestroy {
10
10
  constructor(dataService: ImageAttachmentService);
11
11
  ngOnInit(): void;
12
12
  ngOnDestroy(): void;
13
+ save(): void;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<GalleryTestPage, never>;
14
15
  static ɵcmp: i0.ɵɵComponentDeclaration<GalleryTestPage, "app-gallery-test-page", never, {}, {}, never, never, false>;
15
16
  }
@@ -1,5 +1,6 @@
1
1
  import { ChangeDetectorRef, OnInit } from '@angular/core';
2
2
  import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
3
+ import 'moment-timezone';
3
4
  import { Subscription } from 'rxjs';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class DateTestPage implements OnInit {
@@ -1,21 +1,20 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
3
- import * as momentImported from 'moment';
4
3
  import { BehaviorSubject } from 'rxjs';
5
4
  import { Moment } from 'moment';
6
- import { DateFormatPipe } from '../../../pipes/date-format.pipe';
5
+ import { DateFormatService } from '../../../pipes/date-format.pipe';
7
6
  import { DisplayFn } from '../../../form/field.model';
8
7
  import * as i0 from "@angular/core";
9
8
  export declare class SwipeTestPage implements OnInit {
10
9
  protected formBuilder: UntypedFormBuilder;
11
- protected dateFormatPipe: DateFormatPipe;
10
+ protected dateFormat: DateFormatService;
12
11
  form: UntypedFormGroup;
13
- $dates: BehaviorSubject<momentImported.Moment[]>;
12
+ $dates: BehaviorSubject<Moment[]>;
14
13
  private _today;
15
- constructor(formBuilder: UntypedFormBuilder, dateFormatPipe: DateFormatPipe);
14
+ constructor(formBuilder: UntypedFormBuilder, dateFormat: DateFormatService);
16
15
  ngOnInit(): void;
17
16
  loadData(): Promise<void>;
18
- doSubmit(event: any): void;
17
+ doSubmit(event?: Event): void;
19
18
  displayDate(): DisplayFn;
20
19
  compareDate(): (d1: Moment, d2: Moment) => boolean;
21
20
  static ɵfac: i0.ɵɵFactoryDeclaration<SwipeTestPage, never>;
@@ -0,0 +1,8 @@
1
+ export declare function isESModule<T>(value: any | T): value is {
2
+ default: T;
3
+ };
4
+ /**
5
+ * Workaround need for CommonJS library (eg. moment), because of packagr's issue - see https://github.com/ng-packagr/ng-packagr/issues/2215
6
+ * @param commonJSModule
7
+ */
8
+ export declare function unwrapESModule<T = any>(commonJSModule: T | any): T;
@@ -1,23 +1,34 @@
1
- import { PipeTransform } from '@angular/core';
1
+ import { OnDestroy, PipeTransform } from '@angular/core';
2
2
  import { Moment } from 'moment';
3
3
  import { TranslateService } from '@ngx-translate/core';
4
4
  import { MomentDateAdapter } from '@angular/material-moment-adapter';
5
5
  import * as i0 from "@angular/core";
6
- export declare class DateFormatPipe implements PipeTransform {
7
- private dateAdapter;
8
- private translate;
9
- private readonly datePattern;
10
- private readonly dateTimePattern;
11
- private readonly dateTimeSecondsPattern;
12
- constructor(dateAdapter: MomentDateAdapter, translate: TranslateService);
6
+ export declare abstract class AbstractDateFormat {
7
+ protected dateAdapter: MomentDateAdapter;
8
+ protected translate: TranslateService;
9
+ private datePattern;
10
+ private dateTimePattern;
11
+ private dateTimeSecondsPattern;
12
+ protected constructor(dateAdapter: MomentDateAdapter, translate: TranslateService);
13
13
  transform(value: string | Moment | Date, args?: {
14
14
  pattern?: string;
15
15
  time?: boolean;
16
16
  seconds?: boolean;
17
17
  }): string;
18
- format(date: Moment, pattern: any): string;
19
- parse(value: string, parseFormat: any): Moment;
18
+ protected _updateTranslations(translations: any): void;
19
+ protected _getTranslationValue(translations: any, key: string, defaultValue: string): string;
20
+ }
21
+ export declare class DateFormatPipe extends AbstractDateFormat implements PipeTransform {
22
+ constructor(dateAdapter: MomentDateAdapter, translate: TranslateService);
20
23
  static ɵfac: i0.ɵɵFactoryDeclaration<DateFormatPipe, never>;
21
24
  static ɵpipe: i0.ɵɵPipeDeclaration<DateFormatPipe, "dateFormat", false>;
22
- static ɵprov: i0.ɵɵInjectableDeclaration<DateFormatPipe>;
25
+ }
26
+ export declare class DateFormatService extends AbstractDateFormat implements OnDestroy {
27
+ private _subscription;
28
+ constructor(dateAdapter: MomentDateAdapter, translate: TranslateService);
29
+ ngOnDestroy(): void;
30
+ format(date: Moment, pattern: any): string;
31
+ parse(value: string, parseFormat: any): Moment;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateFormatService, never>;
33
+ static ɵprov: i0.ɵɵInjectableDeclaration<DateFormatService>;
23
34
  }
@@ -21,6 +21,6 @@ import * as i19 from "@ionic/angular";
21
21
  import * as i20 from "@ngx-translate/core";
22
22
  export declare class SharedPipesModule {
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedPipesModule, never>;
24
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedPipesModule, [typeof i1.PropertyGetPipe, typeof i1.PropertyFormatPipe, typeof i2.DateFormatPipe, typeof i3.DateDiffDurationPipe, typeof i4.DurationPipe, typeof i5.DateFromNowPipe, typeof i6.LatLongFormatPipe, typeof i6.LatitudeFormatPipe, typeof i6.LongitudeFormatPipe, typeof i7.HighlightPipe, typeof i8.NumberFormatPipe, typeof i9.FileSizePipe, typeof i10.MathAbsPipe, typeof i10.OddPipe, typeof i10.EvenPipe, typeof i11.NotEmptyArrayPipe, typeof i11.EmptyArrayPipe, typeof i11.ArrayLengthPipe, typeof i11.ArrayFirstPipe, typeof i11.ArrayPluckPipe, typeof i11.ArrayIncludesPipe, typeof i11.ArrayFilterPipe, typeof i11.ArrayJoinPipe, typeof i12.MapGetPipe, typeof i12.MapKeysPipe, typeof i12.MapValuesPipe, typeof i13.IsNilOrBlankPipe, typeof i13.IsNotNilOrBlankPipe, typeof i13.ToStringPipe, typeof i13.StrLengthPipe, typeof i13.StrIncludesPipe, typeof i14.TranslateContextPipe, typeof i14.TranslatablePipe, typeof i15.NgInitDirective, typeof i16.FormErrorTranslatePipe, typeof i16.FormGetPipe, typeof i16.FormGetControlPipe, typeof i16.FormGetArrayPipe, typeof i16.FormGetGroupPipe, typeof i16.FormGetValuePipe, typeof i1.PropertyFormatPipe, typeof i17.MatColorPipe], [typeof i18.CommonModule, typeof i19.IonicModule, typeof i20.TranslateModule], [typeof i1.PropertyGetPipe, typeof i1.PropertyFormatPipe, typeof i2.DateFormatPipe, typeof i5.DateFromNowPipe, typeof i3.DateDiffDurationPipe, typeof i4.DurationPipe, typeof i6.LatLongFormatPipe, typeof i6.LatitudeFormatPipe, typeof i6.LongitudeFormatPipe, typeof i7.HighlightPipe, typeof i8.NumberFormatPipe, typeof i9.FileSizePipe, typeof i10.MathAbsPipe, typeof i10.OddPipe, typeof i10.EvenPipe, typeof i11.NotEmptyArrayPipe, typeof i11.EmptyArrayPipe, typeof i11.ArrayLengthPipe, typeof i11.ArrayFirstPipe, typeof i11.ArrayPluckPipe, typeof i11.ArrayJoinPipe, typeof i12.MapGetPipe, typeof i12.MapKeysPipe, typeof i12.MapValuesPipe, typeof i13.IsNilOrBlankPipe, typeof i13.IsNotNilOrBlankPipe, typeof i13.ToStringPipe, typeof i13.StrLengthPipe, typeof i13.StrIncludesPipe, typeof i11.ArrayIncludesPipe, typeof i11.ArrayFilterPipe, typeof i14.TranslateContextPipe, typeof i14.TranslatablePipe, typeof i15.NgInitDirective, typeof i16.FormErrorTranslatePipe, typeof i16.FormGetPipe, typeof i16.FormGetControlPipe, typeof i16.FormGetArrayPipe, typeof i16.FormGetGroupPipe, typeof i16.FormGetValuePipe, typeof i17.MatColorPipe]>;
24
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedPipesModule, [typeof i1.PropertyGetPipe, typeof i1.PropertyFormatPipe, typeof i2.DateFormatPipe, typeof i3.DateDiffDurationPipe, typeof i4.DurationPipe, typeof i5.DateFromNowPipe, typeof i6.LatLongFormatPipe, typeof i6.LatitudeFormatPipe, typeof i6.LongitudeFormatPipe, typeof i7.HighlightPipe, typeof i8.NumberFormatPipe, typeof i9.FileSizePipe, typeof i10.MathAbsPipe, typeof i10.OddPipe, typeof i10.EvenPipe, typeof i11.NotEmptyArrayPipe, typeof i11.EmptyArrayPipe, typeof i11.ArrayLengthPipe, typeof i11.ArrayFirstPipe, typeof i11.ArrayPluckPipe, typeof i11.ArrayIncludesPipe, typeof i11.ArrayFilterPipe, typeof i11.ArrayJoinPipe, typeof i12.MapGetPipe, typeof i12.MapKeysPipe, typeof i12.MapValuesPipe, typeof i13.IsNilOrBlankPipe, typeof i13.IsNotNilOrBlankPipe, typeof i13.IsNotNilOrNaNPipe, typeof i13.IsNotNilPipe, typeof i13.ToStringPipe, typeof i13.StrLengthPipe, typeof i13.StrIncludesPipe, typeof i14.TranslateContextPipe, typeof i14.TranslatablePipe, typeof i15.NgInitDirective, typeof i16.FormErrorTranslatePipe, typeof i16.FormGetPipe, typeof i16.FormGetControlPipe, typeof i16.FormGetArrayPipe, typeof i16.FormGetGroupPipe, typeof i16.FormGetValuePipe, typeof i1.PropertyFormatPipe, typeof i17.MatColorPipe], [typeof i18.CommonModule, typeof i19.IonicModule, typeof i20.TranslateModule], [typeof i1.PropertyGetPipe, typeof i1.PropertyFormatPipe, typeof i2.DateFormatPipe, typeof i5.DateFromNowPipe, typeof i3.DateDiffDurationPipe, typeof i4.DurationPipe, typeof i6.LatLongFormatPipe, typeof i6.LatitudeFormatPipe, typeof i6.LongitudeFormatPipe, typeof i7.HighlightPipe, typeof i8.NumberFormatPipe, typeof i9.FileSizePipe, typeof i10.MathAbsPipe, typeof i10.OddPipe, typeof i10.EvenPipe, typeof i11.NotEmptyArrayPipe, typeof i11.EmptyArrayPipe, typeof i11.ArrayLengthPipe, typeof i11.ArrayFirstPipe, typeof i11.ArrayPluckPipe, typeof i11.ArrayJoinPipe, typeof i12.MapGetPipe, typeof i12.MapKeysPipe, typeof i12.MapValuesPipe, typeof i13.IsNilOrBlankPipe, typeof i13.IsNotNilOrBlankPipe, typeof i13.IsNotNilOrNaNPipe, typeof i13.IsNotNilPipe, typeof i13.ToStringPipe, typeof i13.StrLengthPipe, typeof i13.StrIncludesPipe, typeof i11.ArrayIncludesPipe, typeof i11.ArrayFilterPipe, typeof i14.TranslateContextPipe, typeof i14.TranslatablePipe, typeof i15.NgInitDirective, typeof i16.FormErrorTranslatePipe, typeof i16.FormGetPipe, typeof i16.FormGetControlPipe, typeof i16.FormGetArrayPipe, typeof i16.FormGetGroupPipe, typeof i16.FormGetValuePipe, typeof i17.MatColorPipe]>;
25
25
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedPipesModule>;
26
26
  }
@@ -1,5 +1,5 @@
1
- import { OnDestroy, PipeTransform } from '@angular/core';
2
- import { DateFormatPipe } from './date-format.pipe';
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DateFormatService } from './date-format.pipe';
3
3
  import { FormFieldDefinition } from '../form/field.model';
4
4
  import { TranslateService } from '@ngx-translate/core';
5
5
  import * as i0 from "@angular/core";
@@ -11,14 +11,12 @@ export declare class PropertyGetPipe implements PipeTransform {
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<PropertyGetPipe, never>;
12
12
  static ɵpipe: i0.ɵɵPipeDeclaration<PropertyGetPipe, "propertyGet", false>;
13
13
  }
14
- export declare class PropertyFormatPipe implements PipeTransform, OnDestroy {
14
+ export declare class PropertyFormatPipe implements PipeTransform {
15
15
  private dateFormat;
16
16
  private translate;
17
- private _subscription;
18
17
  private _i18nYes;
19
18
  private _i18nNo;
20
- constructor(dateFormat: DateFormatPipe, translate: TranslateService);
21
- ngOnDestroy(): void;
19
+ constructor(dateFormat: DateFormatService, translate: TranslateService);
22
20
  transform(obj: any, keyOrDefinition: string | FormFieldDefinition): string | Promise<string>;
23
21
  get i18nYes(): string;
24
22
  get i18nNo(): string;
@@ -10,6 +10,16 @@ export declare class IsNilOrBlankPipe implements PipeTransform {
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<IsNilOrBlankPipe, never>;
11
11
  static ɵpipe: i0.ɵɵPipeDeclaration<IsNilOrBlankPipe, "isNilOrBlank", false>;
12
12
  }
13
+ export declare class IsNotNilOrNaNPipe implements PipeTransform {
14
+ transform(value: number): boolean;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<IsNotNilOrNaNPipe, never>;
16
+ static ɵpipe: i0.ɵɵPipeDeclaration<IsNotNilOrNaNPipe, "isNotNilOrNaN", false>;
17
+ }
18
+ export declare class IsNotNilPipe implements PipeTransform {
19
+ transform(value: any): boolean;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<IsNotNilPipe, never>;
21
+ static ɵpipe: i0.ɵɵPipeDeclaration<IsNotNilPipe, "isNotNil", false>;
22
+ }
13
23
  export declare class ToStringPipe implements PipeTransform {
14
24
  transform(value: number): string;
15
25
  static ɵfac: i0.ɵɵFactoryDeclaration<ToStringPipe, never>;
@@ -21,10 +21,11 @@ import * as i16 from "./directives/directives.module";
21
21
  import * as i17 from "./pipes/pipes.module";
22
22
  import * as i18 from "./hotkeys/shared-hotkeys.module";
23
23
  import * as i19 from "./toolbar/toolbar.module";
24
+ import * as i20 from "ngx-jdenticon";
24
25
  export declare function scrollFactory(overlay: Overlay): () => CloseScrollStrategy;
25
26
  export declare class SharedModule {
26
27
  static forRoot(environment: Environment): ModuleWithProviders<SharedModule>;
27
28
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
28
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.AppFormField, typeof i2.AppLoadingSpinner, typeof i3.AppHelpModal, typeof i4.UploadFileComponent, typeof i5.UploadFilePopover, typeof i6.SharedTestsPage], [typeof i7.CommonModule, typeof i8.IonicModule, typeof i9.ReactiveFormsModule, typeof i10.TranslateModule, typeof i11.ColorPickerModule, typeof i12.TextMaskModule, typeof i13.DragDropModule, typeof i14.MarkdownModule, typeof i15.SharedMaterialModule, typeof i16.SharedDirectivesModule, typeof i17.SharedPipesModule, typeof i18.SharedHotkeysModule, typeof i19.SharedToolbarModule], [typeof i7.CommonModule, typeof i8.IonicModule, typeof i10.TranslateModule, typeof i9.ReactiveFormsModule, typeof i11.ColorPickerModule, typeof i12.TextMaskModule, typeof i13.DragDropModule, typeof i14.MarkdownModule, typeof i15.SharedMaterialModule, typeof i16.SharedDirectivesModule, typeof i17.SharedPipesModule, typeof i18.SharedHotkeysModule, typeof i19.SharedToolbarModule, typeof i1.AppFormField, typeof i2.AppLoadingSpinner, typeof i3.AppHelpModal, typeof i4.UploadFileComponent, typeof i5.UploadFilePopover, typeof i6.SharedTestsPage]>;
29
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.AppFormField, typeof i2.AppLoadingSpinner, typeof i3.AppHelpModal, typeof i4.UploadFileComponent, typeof i5.UploadFilePopover, typeof i6.SharedTestsPage], [typeof i7.CommonModule, typeof i8.IonicModule, typeof i9.ReactiveFormsModule, typeof i10.TranslateModule, typeof i11.ColorPickerModule, typeof i12.TextMaskModule, typeof i13.DragDropModule, typeof i14.MarkdownModule, typeof i15.SharedMaterialModule, typeof i16.SharedDirectivesModule, typeof i17.SharedPipesModule, typeof i18.SharedHotkeysModule, typeof i19.SharedToolbarModule], [typeof i7.CommonModule, typeof i8.IonicModule, typeof i10.TranslateModule, typeof i9.ReactiveFormsModule, typeof i11.ColorPickerModule, typeof i12.TextMaskModule, typeof i13.DragDropModule, typeof i14.MarkdownModule, typeof i20.NgxJdenticonModule, typeof i15.SharedMaterialModule, typeof i16.SharedDirectivesModule, typeof i17.SharedPipesModule, typeof i18.SharedHotkeysModule, typeof i19.SharedToolbarModule, typeof i1.AppFormField, typeof i2.AppLoadingSpinner, typeof i3.AppHelpModal, typeof i4.UploadFileComponent, typeof i5.UploadFilePopover, typeof i6.SharedTestsPage]>;
29
30
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
30
31
  }
@@ -337,7 +337,7 @@
337
337
  "LABEL": "Organization code",
338
338
  "NAME": "Organization name"
339
339
  },
340
- "STATUS": "Status",
340
+ "STATUS": "State",
341
341
  "PUBKEY": "Public key",
342
342
  "PROFILE": "Profile",
343
343
  "PROFILE_ENUM": {
@@ -348,6 +348,7 @@
348
348
  },
349
349
  "LIST": {
350
350
  "TITLE": "Users",
351
+ "BTN_SEND_MESSAGE": "Send a message",
351
352
  "FILTER": {
352
353
  "SEARCH": "Search"
353
354
  }
@@ -362,6 +363,7 @@
362
363
  "OFFLINE": "Unreachable node",
363
364
  "SELECT_MODAL": {
364
365
  "TITLE": "Network nodes",
366
+ "BTN_SET_MANUALLY": "Define manually",
365
367
  "HELP": "Please choose a network node to connect to:",
366
368
  "NOT_COMPATIBLE_HELP": "Required version: v{{version}} or +"
367
369
  }
@@ -376,7 +378,7 @@
376
378
  "IMPORTATION_SUCCEED": "Import successfully completed!<br/><b>Offline mode</b> is now available.",
377
379
  "OFFLINE": "No network connection.",
378
380
  "OFFLINE_OR_UNAUTHORIZED": "No network connection, or unauthorized access.",
379
- "ONLINE": "Sucesfully connected to the network!",
381
+ "ONLINE": "Successfully connected to the network!",
380
382
  "OFFLINE_HELP": "The application works in <b>offline mode</b>.",
381
383
  "RETRY_TO_CONNECT": "<i>Retrying <b>to connect to the network...</b></i>",
382
384
  "UPDATE_OFFLINE_MODE": "<b>Offline mode</b> update available.",
@@ -386,11 +388,20 @@
386
388
  "NOT_COMPATIBLE_PEER": "The application works in <b>offline mode</b>, because the node <b>use a too old version</b>.<br/><small>If the problem persists, please <b>contact your administrator</b>, or select a node v{{version}} or superior.</small>"
387
389
  }
388
390
  },
391
+ "MAP": {
392
+ "ZOOM_IN": "Zoom in",
393
+ "ZOOM_OUT": "Zoom out",
394
+ "ENTER_FULLSCREEN": "Fullscreen mode",
395
+ "EXIT_FULLSCREEN": "Exit fullscreen mode",
396
+ "SHOW_GRATICULE": "Show graticule",
397
+ "HIDE_GRATICULE": "Hide graticule"
398
+ },
389
399
  "SOCIAL": {
390
400
  "USER_EVENT": {
391
401
  "NOTIFICATION": {
392
402
  "TITLE": "Notifications",
393
- "EMPTY": "No notification"
403
+ "EMPTY": "No notification",
404
+ "READ_ALL": "Mark all as read"
394
405
  },
395
406
  "EVENT_TYPE": "Type",
396
407
  "CREATION_DATE": "Date/Time",
@@ -445,6 +456,10 @@
445
456
  "ERROR": "Error while uploading file"
446
457
  }
447
458
  },
459
+ "IMAGE": {
460
+ "BTN_CAMERA_SOURCE": "Take a picture",
461
+ "BTN_GALLERY_SOURCE": "Open gallery"
462
+ },
448
463
  "ERROR": {
449
464
  "ALERT_HEADER": "Error",
450
465
  "FIELD_REQUIRED": "Value required",
@@ -454,9 +469,9 @@
454
469
  "FIELD_MAX_LENGTH": "Too long value{{ maxLength && (' (max ' + maxLength + 'characters)') }}.",
455
470
  "FIELD_MAX_LENGTH_COMPACT": "Too long value",
456
471
  "FIELD_MIN": "Minimal value: {{min}}",
457
- "FIELD_MIN_COMPACT": "Min value={{min}}",
472
+ "FIELD_MIN_COMPACT": "Min {{min}}",
458
473
  "FIELD_MAX": "Maximum value: {{max}}",
459
- "FIELD_MAX_COMPACT": "Max value={{max}}",
474
+ "FIELD_MAX_COMPACT": "Max {{max}}",
460
475
  "FIELD_MAXIMUM_DECIMALS": "Too many decimals ({{maxDecimals}} max)",
461
476
  "FIELD_MAXIMUM_DECIMALS_COMPACT": "Nb decimals > {{maxDecimals}}",
462
477
  "FIELD_INVALID": "Invalid value",
@@ -337,7 +337,7 @@
337
337
  "LABEL": "Organization code",
338
338
  "NAME": "Organization name"
339
339
  },
340
- "STATUS": "Status",
340
+ "STATUS": "State",
341
341
  "PUBKEY": "Public key",
342
342
  "PROFILE": "Profile",
343
343
  "PROFILE_ENUM": {
@@ -348,6 +348,7 @@
348
348
  },
349
349
  "LIST": {
350
350
  "TITLE": "Users",
351
+ "BTN_SEND_MESSAGE": "Send a message",
351
352
  "FILTER": {
352
353
  "SEARCH": "Search"
353
354
  }
@@ -362,6 +363,7 @@
362
363
  "OFFLINE": "Unreachable node",
363
364
  "SELECT_MODAL": {
364
365
  "TITLE": "Network nodes",
366
+ "BTN_SET_MANUALLY": "Define manually",
365
367
  "HELP": "Please choose a network node to connect to:",
366
368
  "NOT_COMPATIBLE_HELP": "Required version: v{{version}} or +"
367
369
  }
@@ -376,7 +378,7 @@
376
378
  "IMPORTATION_SUCCEED": "Import successfully completed!<br/><b>Offline mode</b> is now available.",
377
379
  "OFFLINE": "No network connection.",
378
380
  "OFFLINE_OR_UNAUTHORIZED": "No network connection, or unauthorized access.",
379
- "ONLINE": "Sucesfully connected to the network!",
381
+ "ONLINE": "Successfully connected to the network!",
380
382
  "OFFLINE_HELP": "The application works in <b>offline mode</b>.",
381
383
  "RETRY_TO_CONNECT": "<i>Retrying <b>to connect to the network...</b></i>",
382
384
  "UPDATE_OFFLINE_MODE": "<b>Offline mode</b> update available.",
@@ -386,6 +388,14 @@
386
388
  "NOT_COMPATIBLE_PEER": "The application works in <b>offline mode</b>, because the node <b>use a too old version</b>.<br/><small>If the problem persists, please <b>contact your administrator</b>, or select a node v{{version}} or superior.</small>"
387
389
  }
388
390
  },
391
+ "MAP": {
392
+ "ZOOM_IN": "Zoom in",
393
+ "ZOOM_OUT": "Zoom out",
394
+ "ENTER_FULLSCREEN": "Fullscreen mode",
395
+ "EXIT_FULLSCREEN": "Exit fullscreen mode",
396
+ "SHOW_GRATICULE": "Show graticule",
397
+ "HIDE_GRATICULE": "Hide graticule"
398
+ },
389
399
  "SOCIAL": {
390
400
  "USER_EVENT": {
391
401
  "NOTIFICATION": {
@@ -446,6 +456,10 @@
446
456
  "ERROR": "Error while uploading file"
447
457
  }
448
458
  },
459
+ "IMAGE": {
460
+ "BTN_CAMERA_SOURCE": "Take a picture",
461
+ "BTN_GALLERY_SOURCE": "Open gallery"
462
+ },
449
463
  "ERROR": {
450
464
  "ALERT_HEADER": "Error",
451
465
  "FIELD_REQUIRED": "Value required",
@@ -455,9 +469,9 @@
455
469
  "FIELD_MAX_LENGTH": "Too long value{{ maxLength && (' (max ' + maxLength + 'characters)') }}.",
456
470
  "FIELD_MAX_LENGTH_COMPACT": "Too long value",
457
471
  "FIELD_MIN": "Minimal value: {{min}}",
458
- "FIELD_MIN_COMPACT": "Min value={{min}}",
472
+ "FIELD_MIN_COMPACT": "Min {{min}}",
459
473
  "FIELD_MAX": "Maximum value: {{max}}",
460
- "FIELD_MAX_COMPACT": "Max value={{max}}",
474
+ "FIELD_MAX_COMPACT": "Max {{max}}",
461
475
  "FIELD_MAXIMUM_DECIMALS": "Too many decimals ({{maxDecimals}} max)",
462
476
  "FIELD_MAXIMUM_DECIMALS_COMPACT": "Nb decimals > {{maxDecimals}}",
463
477
  "FIELD_INVALID": "Invalid value",
@@ -103,11 +103,14 @@
103
103
  "YES": "Oui",
104
104
  "NO": "Non",
105
105
 
106
+ "DEBUG": "Debug",
106
107
  "UPDATED_ON": "Mise à jour le",
107
108
  "RECORDER": "Saisisseur",
108
109
  "RESULT_COUNT": "{{count}} résultats",
109
110
  "NO_RESULT": "Aucun résultat",
110
111
  "LOADING_DOTS": "Chargement...",
112
+ "PLEASE_WAIT": "Veuillez patienter...",
113
+ "NO_DATA": "Aucune donnée",
111
114
  "MISSING": "Manquant",
112
115
 
113
116
  "DISPLAYED_COLUMNS": "Paramétrage des colonnes",
@@ -128,10 +131,10 @@
128
131
  },
129
132
  "CONFIGURATION": {
130
133
  "OPTIONS": {
131
- "ANDROID_INSTALL_URL": "Android > Adresse d'installation App",
134
+ "ANDROID_INSTALL_URL": "Android > URL d'installation App",
132
135
  "LOGO": "Menu > Logo (largeur max 110px)",
133
136
  "FAVICON": "favicon",
134
- "GRAVATAR_URL": "Utilisateur > URL Gravatar (avec '{md5}'",
137
+ "GRAVATAR_URL": "Utilisateur > URL Gravatar (avec '{md5}')",
135
138
  "ENABLE_GRAVATAR": "Utilisateur > Utiliser Gravatar ?",
136
139
  "DEFAULT_LOCALE": "Langue par défaut",
137
140
  "DEFAULT_LATLONG_FORMAT": "Format lat/lon par défaut",
@@ -305,6 +308,8 @@
305
308
  "OFFLINE_MODE": "Forcer le mode hors-ligne ?",
306
309
  "DATA_ENTRY_DIVIDER": "Paramètres de saisie",
307
310
  "USAGE_MODE": "Mode de saisie",
311
+ "USAGE_MODE_FIELD": "Mode saisie <b>terrain</b>",
312
+ "USAGE_MODE_DESK": "Mode saisie <b>bureau</b>",
308
313
  "USAGE_MODES": {
309
314
  "FIELD": "Saisie terrain",
310
315
  "DESK": "Saisie bureau"
@@ -365,6 +370,7 @@
365
370
  "OFFLINE": "Nœud injoignable",
366
371
  "SELECT_MODAL": {
367
372
  "TITLE": "Nœuds réseau",
373
+ "BTN_SET_MANUALLY": "Saisir manuellement",
368
374
  "HELP": "Veuillez choisir un nœud réseau auquel vous connecter :",
369
375
  "NOT_COMPATIBLE_HELP": "Version requise : v{{version}} ou +"
370
376
  }
@@ -453,7 +459,9 @@
453
459
  "BTN_CAMERA_SOURCE": "Prendre une photo",
454
460
  "BTN_GALLERY_SOURCE": "Ouvrir la galerie",
455
461
  "GALLERY": {
456
- "BTN_ADD_TITLE": "Ajouter un titre"
462
+ "BTN_EDIT_TITLE": "Éditer le titre",
463
+ "BTN_ADD_TITLE": "Ajouter un titre",
464
+ "TITLE": "Titre"
457
465
  }
458
466
  },
459
467
  "ERROR": {
@@ -464,9 +472,9 @@
464
472
  "FIELD_MIN_LENGTH_COMPACT": "Valeur trop courte",
465
473
  "FIELD_MAX_LENGTH": "Valeur trop longue {{maxLength && (' (' + maxLength + ' caract. max)') }}",
466
474
  "FIELD_MAX_LENGTH_COMPACT": "Valeur trop longue",
467
- "FIELD_MIN": "La valeur minimale autorisée est {{min}}",
475
+ "FIELD_MIN": "Valeur minimale : {{min}}",
468
476
  "FIELD_MIN_COMPACT": "Min {{min}}",
469
- "FIELD_MAX": "Valeur maximale autorisée: {{max}}",
477
+ "FIELD_MAX": "Valeur maximale : {{max}}",
470
478
  "FIELD_MAX_COMPACT": "Max {{max}}",
471
479
  "FIELD_MAXIMUM_DECIMALS": "Trop de décimales (max: {{maxDecimals}})",
472
480
  "FIELD_MAXIMUM_DECIMALS_COMPACT": "Nb décimale > {{maxDecimals}}",
@@ -530,6 +538,7 @@
530
538
  "LOAD_ENTITIES_ERROR": "Erreur lors de chargement de la liste",
531
539
  "SAVE_ENTITY_ERROR": "Erreur lors de la sauvegarde",
532
540
  "SAVE_ENTITIES_ERROR": "Erreur lors de la sauvegarde de la liste",
541
+ "DELETE_ENTITY_ERROR": "Erreur lors de la suppression. <small><br/>Si le problème persiste, veuillez contacter votre administrateur.</small>",
533
542
  "SUBSCRIBE_ENTITY_ERROR": "Erreur lors de l'abonnement aux modifications distantes",
534
543
  "CONTROL_ENTITY_ERROR": "Erreur lors du contrôle de la validité des données",
535
544
  "TERMINATE_ENTITY_ERROR": "Terminaision de la saisie impossible. <small><br/>Si le problème persiste, veuillez contacter votre administrateur.</small>",
@@ -540,7 +549,9 @@
540
549
  "LOAD_ERROR": "Erreur de chargement",
541
550
  "SAVE_ERROR": "Erreur de sauvegarde",
542
551
  "SUBSCRIBE_ERROR": "Echec de l'abonnement distant aux modifications",
543
- "FIREFOX_NO_STORAGE": "L'application ne peut pas fonctionner sur Firefox en mode 'navigation privée' ou si la conservation de l'historique est désactivée"
552
+ "FIELD_NOT_EXISTS": "Cette valeur n'existe pas",
553
+ "FIREFOX_NO_STORAGE": "L'application ne peut pas fonctionner sur Firefox en mode 'navigation privée' ou si la conservation de l'historique est désactivée",
554
+ "FEATURE_NOT_IMPLEMENTED": "Fonctionnalité non implémentée ! <small><br/>Veuillez contacter votre administrateur.</small>"
544
555
  },
545
556
  "CONFIRM": {
546
557
  "ALERT_HEADER": "Confirmation",
@@ -260,15 +260,23 @@ mat-date-time-field {
260
260
  }
261
261
 
262
262
  // --- mat-autocomplete and mat-select panel
263
+ // When simple text option, add a padding
263
264
  mat-option {
264
265
  .mat-option-text:not(:has(ion-row)) {
265
266
  padding: 0 16px;
266
267
  }
267
-
268
+ .mat-option-text:has(ion-searchbar) {
269
+ padding: 0 !important;
270
+ }
268
271
  ion-row,
269
272
  .mat-option-text:has(ion-row) {
270
273
  padding: 0;
271
274
  }
275
+ mat-autocomplete-footer {
276
+ .mat-option-text {
277
+ padding: 0 !important;
278
+ }
279
+ }
272
280
  }
273
281
 
274
282
  mat-option:not(:last-of-type) {
@@ -305,6 +313,11 @@ mat-option:not(:last-of-type) {
305
313
  .mat-autocomplete-panel-xlarge-size.mat-autocomplete-panel {
306
314
  --min-width: 450px;
307
315
  }
316
+ .mat-select-panel.min-width-80vw,
317
+ .min-width-80vw .mat-autocomplete-panel,
318
+ .min-width-80vw.mat-autocomplete-panel {
319
+ --min-width: 80vw;
320
+ }
308
321
 
309
322
  .mat-autocomplete-panel-center .mat-autocomplete-panel,
310
323
  .mat-autocomplete-panel-center.mat-autocomplete-panel {
@@ -1247,10 +1260,15 @@ ion-modal.stack-modal {
1247
1260
  --backdrop-opacity: var(--ion-backdrop-opacity, 0.32);
1248
1261
  }
1249
1262
 
1250
- .modal-large .modal-wrapper {
1251
- min-width: calc(100% - 100px);
1252
- min-height: calc(100% - 50px);
1263
+ ion-modal.modal-large{
1264
+ --min-height: calc(100% - 50px) !important;
1265
+ --min-width: calc(100% - 100px) !important;
1253
1266
  }
1267
+ ion-modal.modal-fullscreen {
1268
+ --min-height: calc(100%) !important;
1269
+ --min-width: calc(100%) !important;
1270
+ }
1271
+
1254
1272
 
1255
1273
  // --------------------------------------------------
1256
1274
  // Popover