geonetwork-ui 2.3.0-dev.376e0e90 → 2.3.0-dev.3efe236f

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 (361) hide show
  1. package/esm2022/index.mjs +2 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +6 -2
  3. package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +1 -1
  4. package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +12 -1
  5. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +36 -3
  6. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +19 -7
  7. package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +2 -1
  8. package/esm2022/libs/common/domain/src/lib/model/record/user-feedbacks.model.mjs +2 -0
  9. package/esm2022/libs/common/domain/src/lib/model/user/index.mjs +2 -0
  10. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  11. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +35 -7
  12. package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +1 -2
  13. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +2 -2
  14. package/esm2022/libs/feature/editor/src/index.mjs +2 -2
  15. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +6 -2
  16. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +11 -0
  17. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +28 -0
  18. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +11 -0
  19. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +45 -0
  20. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +50 -0
  21. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
  22. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
  23. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +107 -0
  24. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +2 -0
  25. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +10 -0
  26. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +29 -0
  27. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +1 -1
  28. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +10 -10
  29. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +1 -1
  30. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +6 -2
  31. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +3 -3
  32. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +72 -0
  33. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +1 -1
  34. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +1 -1
  35. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +7 -3
  36. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +12 -7
  37. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +2 -1
  38. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +52 -25
  39. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +12 -49
  40. package/esm2022/libs/feature/notifications/src/index.mjs +4 -0
  41. package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +18 -0
  42. package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +2 -0
  43. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +49 -0
  44. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +29 -0
  45. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +4 -4
  46. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +6 -2
  47. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +22 -4
  48. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +37 -10
  49. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +22 -7
  50. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +52 -17
  51. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +18 -3
  52. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +2 -2
  53. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +3 -3
  54. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +3 -3
  55. package/esm2022/libs/ui/elements/src/index.mjs +15 -15
  56. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +5 -5
  57. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +45 -0
  58. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +3 -3
  59. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +34 -0
  60. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +3 -3
  61. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +4 -3
  62. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +14 -5
  63. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +59 -0
  64. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +62 -0
  65. package/esm2022/libs/ui/inputs/src/index.mjs +1 -2
  66. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -1
  67. package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +59 -0
  68. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +183 -0
  69. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +27 -4
  70. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +19 -3
  71. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +10 -23
  72. package/esm2022/libs/ui/layout/src/index.mjs +6 -5
  73. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +18 -0
  74. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -0
  75. package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +60 -0
  76. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -6
  77. package/esm2022/translations/de.json +35 -0
  78. package/esm2022/translations/en.json +35 -0
  79. package/esm2022/translations/es.json +35 -0
  80. package/esm2022/translations/fr.json +35 -0
  81. package/esm2022/translations/it.json +35 -0
  82. package/esm2022/translations/nl.json +35 -0
  83. package/esm2022/translations/pt.json +35 -0
  84. package/fesm2022/geonetwork-ui.mjs +3988 -2856
  85. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  86. package/index.d.ts +1 -0
  87. package/index.d.ts.map +1 -1
  88. package/index.ts +1 -0
  89. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  90. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +1 -0
  91. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -1
  92. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +1 -0
  93. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -1
  94. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +6 -2
  95. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  96. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +9 -6
  97. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  98. package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
  99. package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
  100. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts +15 -0
  101. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts.map +1 -0
  102. package/libs/common/domain/src/lib/model/user/index.d.ts +2 -0
  103. package/libs/common/domain/src/lib/model/user/index.d.ts.map +1 -0
  104. package/libs/common/domain/src/lib/platform.service.interface.d.ts +3 -0
  105. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  106. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +9 -5
  107. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  108. package/libs/data-access/gn4/src/openapi/model/models.d.ts +0 -1
  109. package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -1
  110. package/libs/feature/editor/src/index.d.ts +1 -1
  111. package/libs/feature/editor/src/index.d.ts.map +1 -1
  112. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +8 -5
  113. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  114. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.d.ts +1 -1
  115. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
  116. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.d.ts +1 -1
  117. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
  118. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.d.ts +1 -1
  119. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
  120. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +16 -0
  121. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
  122. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.d.ts +2 -2
  123. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
  124. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +1 -1
  125. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -0
  126. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts +1 -1
  127. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +1 -0
  128. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.d.ts +9 -4
  129. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -0
  130. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +1 -0
  131. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -0
  132. package/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.d.ts +3 -3
  133. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -0
  134. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +1 -1
  135. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  136. package/libs/feature/editor/src/lib/models/fields.model.d.ts +1 -1
  137. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  138. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +23 -0
  139. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -0
  140. package/libs/feature/map/src/lib/feature-map.module.d.ts +2 -1
  141. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  142. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +2 -0
  143. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  144. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +10 -5
  145. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -1
  146. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -1
  147. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +2 -3
  148. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  149. package/libs/feature/notifications/src/index.d.ts +4 -0
  150. package/libs/feature/notifications/src/index.d.ts.map +1 -0
  151. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts +7 -0
  152. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts.map +1 -0
  153. package/libs/feature/notifications/src/lib/notification.model.d.ts +7 -0
  154. package/libs/feature/notifications/src/lib/notification.model.d.ts.map +1 -0
  155. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +12 -0
  156. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +1 -0
  157. package/libs/feature/notifications/src/lib/notifications.service.d.ts +15 -0
  158. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -0
  159. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  160. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  161. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +40 -6
  162. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  163. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +24 -4
  164. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  165. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +14 -4
  166. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  167. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +8 -5
  168. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  169. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +12 -9
  170. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  171. package/libs/ui/elements/src/index.d.ts +14 -14
  172. package/libs/ui/elements/src/index.d.ts.map +1 -1
  173. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +13 -0
  174. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -0
  175. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +13 -0
  176. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -0
  177. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +1 -1
  178. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -1
  179. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +10 -8
  180. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  181. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts +11 -0
  182. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts.map +1 -0
  183. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +22 -0
  184. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -0
  185. package/libs/ui/inputs/src/index.d.ts +0 -1
  186. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  187. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  188. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts +14 -0
  189. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts.map +1 -0
  190. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +44 -0
  191. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -0
  192. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +7 -1
  193. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  194. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +4 -1
  195. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  196. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +26 -33
  197. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  198. package/libs/ui/layout/src/index.d.ts +5 -4
  199. package/libs/ui/layout/src/index.d.ts.map +1 -1
  200. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +8 -0
  201. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -0
  202. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -0
  203. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -0
  204. package/libs/util/shared/src/lib/utils/image-resize.d.ts +3 -0
  205. package/libs/util/shared/src/lib/utils/image-resize.d.ts.map +1 -0
  206. package/libs/util/shared/src/lib/utils/index.d.ts +7 -5
  207. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
  208. package/package.json +2 -2
  209. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +7 -1
  210. package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +1 -0
  211. package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +12 -1
  212. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +51 -1
  213. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +34 -7
  214. package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
  215. package/src/libs/common/domain/src/lib/model/record/user-feedbacks.model.ts +15 -0
  216. package/src/libs/common/domain/src/lib/platform.service.interface.ts +3 -0
  217. package/src/libs/common/fixtures/src/index.ts +8 -6
  218. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +1 -1
  219. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +83 -0
  220. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +43 -12
  221. package/src/libs/data-access/gn4/src/openapi/model/models.ts +0 -1
  222. package/src/libs/data-access/gn4/src/spec.yaml +1 -1
  223. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +1 -1
  224. package/src/libs/feature/editor/src/index.ts +1 -1
  225. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +8 -1
  226. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +8 -0
  227. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +70 -0
  228. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.ts +1 -0
  229. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.ts +4 -1
  230. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.ts +1 -0
  231. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +20 -0
  232. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +44 -0
  233. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.ts +4 -1
  234. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +1 -0
  235. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.ts +1 -0
  236. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.html +28 -4
  237. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +121 -0
  238. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +0 -0
  239. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.html +1 -0
  240. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.ts +4 -4
  241. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +9 -9
  242. package/src/libs/feature/editor/src/lib/models/fields.model.ts +1 -1
  243. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +5 -1
  244. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -1
  245. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.css +0 -0
  246. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +36 -0
  247. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +80 -0
  248. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -0
  249. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +8 -0
  250. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +5 -0
  251. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +10 -3
  252. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +60 -32
  253. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +17 -61
  254. package/src/libs/feature/notifications/src/index.ts +3 -0
  255. package/src/libs/feature/notifications/src/lib/feature-notifications.module.ts +10 -0
  256. package/src/libs/feature/notifications/src/lib/notification.model.ts +6 -0
  257. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.css +0 -0
  258. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +17 -0
  259. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +44 -0
  260. package/src/libs/feature/notifications/src/lib/notifications.service.ts +27 -0
  261. package/src/libs/feature/record/src/lib/feature-record.module.ts +5 -2
  262. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +5 -1
  263. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +51 -6
  264. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +82 -7
  265. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +49 -8
  266. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +81 -24
  267. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +40 -10
  268. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
  269. package/src/libs/feature/search/src/lib/results-table/results-table.component.html +3 -3
  270. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +5 -5
  271. package/src/libs/ui/elements/src/index.ts +14 -14
  272. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  273. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.css +0 -5
  274. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +0 -21
  275. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -14
  276. package/src/libs/ui/elements/src/lib/notification/notification.component.css +0 -0
  277. package/src/libs/ui/elements/src/lib/notification/notification.component.html +52 -0
  278. package/src/libs/ui/elements/src/lib/notification/notification.component.ts +31 -0
  279. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +1 -1
  280. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +5 -3
  281. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +6 -1
  282. package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +54 -0
  283. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.css +0 -0
  284. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +75 -0
  285. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +63 -0
  286. package/src/libs/ui/inputs/src/index.ts +0 -1
  287. package/src/libs/ui/inputs/src/lib/button/button.component.ts +1 -1
  288. package/src/libs/ui/inputs/src/lib/files-drop/files-drop.directive.ts +45 -0
  289. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +0 -0
  290. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +146 -0
  291. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +193 -0
  292. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
  293. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +29 -0
  294. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +1 -1
  295. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +16 -1
  296. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +3 -19
  297. package/src/libs/ui/layout/src/index.ts +5 -4
  298. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.css +0 -0
  299. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +18 -0
  300. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +16 -0
  301. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +3 -0
  302. package/src/libs/util/shared/src/lib/utils/image-resize.ts +72 -0
  303. package/src/libs/util/shared/src/lib/utils/index.ts +7 -5
  304. package/tailwind.base.css +36 -0
  305. package/translations/de.json +35 -0
  306. package/translations/en.json +35 -0
  307. package/translations/es.json +35 -0
  308. package/translations/fr.json +35 -0
  309. package/translations/it.json +35 -0
  310. package/translations/nl.json +35 -0
  311. package/translations/pt.json +35 -0
  312. package/translations/sk.json +35 -0
  313. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +0 -13
  314. package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +0 -30
  315. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +0 -11
  316. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +0 -27
  317. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +0 -11
  318. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +0 -27
  319. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +0 -49
  320. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -11
  321. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +0 -11
  322. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +0 -76
  323. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +0 -2
  324. package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +0 -10
  325. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +0 -18
  326. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +0 -1
  327. package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +0 -1
  328. package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
  329. package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
  330. package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
  331. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +0 -11
  332. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
  333. package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
  334. package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
  335. package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +0 -1
  336. package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +0 -1
  337. package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +0 -1
  338. package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +0 -1
  339. package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +0 -18
  340. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +0 -11
  341. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +0 -15
  342. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +0 -80
  343. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.d.ts +0 -0
  344. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.d.ts +0 -0
  345. /package/src/libs/feature/editor/src/lib/{record-form/record-form.component.css → components/overview-upload/overview-upload.component.css} +0 -0
  346. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.css +0 -0
  347. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.html +0 -0
  348. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.css +0 -0
  349. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.html +0 -0
  350. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.css +0 -0
  351. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.html +0 -0
  352. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-rich/form-field-rich.component.css +0 -0
  353. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.css +0 -0
  354. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.html +0 -0
  355. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css +0 -0
  356. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +0 -0
  357. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css +0 -0
  358. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.html +0 -0
  359. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.css +0 -0
  360. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.ts +0 -0
  361. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.ts +0 -0
@@ -1,9 +1,10 @@
1
- export * from './lib/ui-layout.module';
2
1
  export * from './lib/anchor-link/anchor-link.directive';
3
2
  export * from './lib/carousel/carousel.component';
4
- export * from './lib/expandable-panel/expandable-panel.component';
5
- export * from './lib/sticky-header/sticky-header.component';
6
3
  export * from './lib/expandable-panel-button/expandable-panel-button.component';
7
- export * from './lib/interactive-table/interactive-table.component';
4
+ export * from './lib/expandable-panel/expandable-panel.component';
5
+ export * from './lib/form-field-wrapper/form-field-wrapper.component';
8
6
  export * from './lib/interactive-table/interactive-table-column/interactive-table-column.component';
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2xheW91dC9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQTtBQUN0QyxjQUFjLHlDQUF5QyxDQUFBO0FBQ3ZELGNBQWMsbUNBQW1DLENBQUE7QUFDakQsY0FBYyxtREFBbUQsQ0FBQTtBQUNqRSxjQUFjLDZDQUE2QyxDQUFBO0FBQzNELGNBQWMsaUVBQWlFLENBQUE7QUFDL0UsY0FBYyxxREFBcUQsQ0FBQTtBQUNuRSxjQUFjLHFGQUFxRixDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9saWIvdWktbGF5b3V0Lm1vZHVsZSdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2FuY2hvci1saW5rL2FuY2hvci1saW5rLmRpcmVjdGl2ZSdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Nhcm91c2VsL2Nhcm91c2VsLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2V4cGFuZGFibGUtcGFuZWwvZXhwYW5kYWJsZS1wYW5lbC5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9zdGlja3ktaGVhZGVyL3N0aWNreS1oZWFkZXIuY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZXhwYW5kYWJsZS1wYW5lbC1idXR0b24vZXhwYW5kYWJsZS1wYW5lbC1idXR0b24uY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9saWIvaW50ZXJhY3RpdmUtdGFibGUvaW50ZXJhY3RpdmUtdGFibGUuY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9saWIvaW50ZXJhY3RpdmUtdGFibGUvaW50ZXJhY3RpdmUtdGFibGUtY29sdW1uL2ludGVyYWN0aXZlLXRhYmxlLWNvbHVtbi5jb21wb25lbnQnXG4iXX0=
7
+ export * from './lib/interactive-table/interactive-table.component';
8
+ export * from './lib/sticky-header/sticky-header.component';
9
+ export * from './lib/ui-layout.module';
10
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2xheW91dC9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5Q0FBeUMsQ0FBQTtBQUN2RCxjQUFjLG1DQUFtQyxDQUFBO0FBQ2pELGNBQWMsaUVBQWlFLENBQUE7QUFDL0UsY0FBYyxtREFBbUQsQ0FBQTtBQUNqRSxjQUFjLHVEQUF1RCxDQUFBO0FBQ3JFLGNBQWMscUZBQXFGLENBQUE7QUFDbkcsY0FBYyxxREFBcUQsQ0FBQTtBQUNuRSxjQUFjLDZDQUE2QyxDQUFBO0FBQzNELGNBQWMsd0JBQXdCLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYi9hbmNob3ItbGluay9hbmNob3ItbGluay5kaXJlY3RpdmUnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYXJvdXNlbC9jYXJvdXNlbC5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9leHBhbmRhYmxlLXBhbmVsLWJ1dHRvbi9leHBhbmRhYmxlLXBhbmVsLWJ1dHRvbi5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9leHBhbmRhYmxlLXBhbmVsL2V4cGFuZGFibGUtcGFuZWwuY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZm9ybS1maWVsZC13cmFwcGVyL2Zvcm0tZmllbGQtd3JhcHBlci5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnRlcmFjdGl2ZS10YWJsZS9pbnRlcmFjdGl2ZS10YWJsZS1jb2x1bW4vaW50ZXJhY3RpdmUtdGFibGUtY29sdW1uLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ludGVyYWN0aXZlLXRhYmxlL2ludGVyYWN0aXZlLXRhYmxlLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL3N0aWNreS1oZWFkZXIvc3RpY2t5LWhlYWRlci5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi91aS1sYXlvdXQubW9kdWxlJ1xuIl19
@@ -0,0 +1,18 @@
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import { MatIconModule } from '@angular/material/icon';
3
+ import { MatTooltipModule } from '@angular/material/tooltip';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/material/tooltip";
6
+ export class FormFieldWrapperComponent {
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldWrapperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: FormFieldWrapperComponent, isStandalone: true, selector: "gn-ui-form-field-wrapper", inputs: { label: "label", hint: "hint" }, ngImport: i0, template: "<div class=\"h-full flex flex-col\">\n <div class=\"flex-none w-full flex flex-row items-center\">\n <span class=\"flex-none font-bold\">{{ label }}</span>\n <div class=\"flex-1 flex justify-end items-center\">\n <ng-content select=\"[form-field-interaction]\"></ng-content>\n <span\n class=\"material-symbols-outlined m-2 gn-ui-icon-small\"\n [matTooltip]=\"hint\"\n matTooltipPosition=\"above\"\n >\n help\n </span>\n </div>\n </div>\n <div class=\"flex-1\">\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i1.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
9
+ }
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldWrapperComponent, decorators: [{
11
+ type: Component,
12
+ args: [{ selector: 'gn-ui-form-field-wrapper', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, MatTooltipModule], template: "<div class=\"h-full flex flex-col\">\n <div class=\"flex-none w-full flex flex-row items-center\">\n <span class=\"flex-none font-bold\">{{ label }}</span>\n <div class=\"flex-1 flex justify-end items-center\">\n <ng-content select=\"[form-field-interaction]\"></ng-content>\n <span\n class=\"material-symbols-outlined m-2 gn-ui-icon-small\"\n [matTooltip]=\"hint\"\n matTooltipPosition=\"above\"\n >\n help\n </span>\n </div>\n </div>\n <div class=\"flex-1\">\n <ng-content></ng-content>\n </div>\n</div>\n" }]
13
+ }], propDecorators: { label: [{
14
+ type: Input
15
+ }], hint: [{
16
+ type: Input
17
+ }] } });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC13cmFwcGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvbGF5b3V0L3NyYy9saWIvZm9ybS1maWVsZC13cmFwcGVyL2Zvcm0tZmllbGQtd3JhcHBlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2xheW91dC9zcmMvbGliL2Zvcm0tZmllbGQtd3JhcHBlci9mb3JtLWZpZWxkLXdyYXBwZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDekUsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFBO0FBQ3RELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFBOzs7QUFVNUQsTUFBTSxPQUFPLHlCQUF5Qjs4R0FBekIseUJBQXlCO2tHQUF6Qix5QkFBeUIsOEhDWnRDLDZqQkFrQkEseUREUlksYUFBYSw4QkFBRSxnQkFBZ0I7OzJGQUU5Qix5QkFBeUI7a0JBUnJDLFNBQVM7K0JBQ0UsMEJBQTBCLG1CQUduQix1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUksV0FDUCxDQUFDLGFBQWEsRUFBRSxnQkFBZ0IsQ0FBQzs4QkFHakMsS0FBSztzQkFBYixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJ1xuaW1wb3J0IHsgTWF0VG9vbHRpcE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3Rvb2x0aXAnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtd3JhcHBlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLWZpZWxkLXdyYXBwZXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mb3JtLWZpZWxkLXdyYXBwZXIuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW01hdEljb25Nb2R1bGUsIE1hdFRvb2x0aXBNb2R1bGVdLFxufSlcbmV4cG9ydCBjbGFzcyBGb3JtRmllbGRXcmFwcGVyQ29tcG9uZW50IHtcbiAgQElucHV0KCkgbGFiZWw6IHN0cmluZ1xuICBASW5wdXQoKSBoaW50OiBzdHJpbmdcbn1cbiIsIjxkaXYgY2xhc3M9XCJoLWZ1bGwgZmxleCBmbGV4LWNvbFwiPlxuICA8ZGl2IGNsYXNzPVwiZmxleC1ub25lIHctZnVsbCBmbGV4IGZsZXgtcm93IGl0ZW1zLWNlbnRlclwiPlxuICAgIDxzcGFuIGNsYXNzPVwiZmxleC1ub25lIGZvbnQtYm9sZFwiPnt7IGxhYmVsIH19PC9zcGFuPlxuICAgIDxkaXYgY2xhc3M9XCJmbGV4LTEgZmxleCBqdXN0aWZ5LWVuZCBpdGVtcy1jZW50ZXJcIj5cbiAgICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltmb3JtLWZpZWxkLWludGVyYWN0aW9uXVwiPjwvbmctY29udGVudD5cbiAgICAgIDxzcGFuXG4gICAgICAgIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBtLTIgZ24tdWktaWNvbi1zbWFsbFwiXG4gICAgICAgIFttYXRUb29sdGlwXT1cImhpbnRcIlxuICAgICAgICBtYXRUb29sdGlwUG9zaXRpb249XCJhYm92ZVwiXG4gICAgICA+XG4gICAgICAgIGhlbHBcbiAgICAgIDwvc3Bhbj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG4gIDxkaXYgY2xhc3M9XCJmbGV4LTFcIj5cbiAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gIDwvZGl2PlxuPC9kaXY+XG4iXX0=
@@ -0,0 +1,4 @@
1
+ export function megabytesToBytes(megabytes) {
2
+ return megabytes * 1048576;
3
+ }
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnl0ZXMtY29udmVydC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdXRpbC9zaGFyZWQvc3JjL2xpYi91dGlscy9ieXRlcy1jb252ZXJ0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sVUFBVSxnQkFBZ0IsQ0FBQyxTQUFTO0lBQ3hDLE9BQU8sU0FBUyxHQUFHLE9BQU8sQ0FBQTtBQUM1QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGZ1bmN0aW9uIG1lZ2FieXRlc1RvQnl0ZXMobWVnYWJ5dGVzKSB7XG4gIHJldHVybiBtZWdhYnl0ZXMgKiAxMDQ4NTc2XG59XG4iXX0=
@@ -0,0 +1,60 @@
1
+ export function downsizeImage(blob, maxWidth, maxHeight) {
2
+ return new Promise((resolve, reject) => {
3
+ const image = new Image();
4
+ image.src = URL.createObjectURL(blob);
5
+ image.onload = () => {
6
+ let width = image.width;
7
+ let height = image.height;
8
+ if (width > maxWidth || height > maxHeight) {
9
+ if (width > height) {
10
+ height = height * (maxWidth / width);
11
+ width = maxWidth;
12
+ }
13
+ else {
14
+ width = width * (maxHeight / height);
15
+ height = maxHeight;
16
+ }
17
+ }
18
+ const canvas = document.createElement('canvas');
19
+ canvas.width = width;
20
+ canvas.height = height;
21
+ const context = canvas.getContext('2d');
22
+ context.drawImage(image, 0, 0, width, height);
23
+ canvas.toBlob(resolve, blob.type);
24
+ };
25
+ image.onerror = reject;
26
+ });
27
+ }
28
+ export function downgradeImage(blob, maxSizeBytes) {
29
+ return new Promise((resolve, reject) => {
30
+ const image = new Image();
31
+ image.src = URL.createObjectURL(blob);
32
+ image.onload = () => {
33
+ const width = image.width;
34
+ const height = image.height;
35
+ let quality = 1.0;
36
+ const canvas = document.createElement('canvas');
37
+ canvas.width = width;
38
+ canvas.height = height;
39
+ const context = canvas.getContext('2d');
40
+ context.drawImage(image, 0, 0, width, height);
41
+ const compressAndResolveBlob = (blobToCompress) => {
42
+ if (blobToCompress.size <= maxSizeBytes) {
43
+ resolve(blobToCompress);
44
+ }
45
+ else {
46
+ quality -= 0.1;
47
+ if (quality >= 0) {
48
+ canvas.toBlob(compressAndResolveBlob, blob.type, quality);
49
+ }
50
+ else {
51
+ reject('Unable to compress image below max size');
52
+ }
53
+ }
54
+ };
55
+ canvas.toBlob(compressAndResolveBlob, blob.type, quality);
56
+ };
57
+ image.onerror = reject;
58
+ });
59
+ }
60
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW1hZ2UtcmVzaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91dGlsL3NoYXJlZC9zcmMvbGliL3V0aWxzL2ltYWdlLXJlc2l6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFVBQVUsYUFBYSxDQUMzQixJQUFVLEVBQ1YsUUFBZ0IsRUFDaEIsU0FBaUI7SUFFakIsT0FBTyxJQUFJLE9BQU8sQ0FBQyxDQUFDLE9BQU8sRUFBRSxNQUFNLEVBQUUsRUFBRTtRQUNyQyxNQUFNLEtBQUssR0FBRyxJQUFJLEtBQUssRUFBRSxDQUFBO1FBQ3pCLEtBQUssQ0FBQyxHQUFHLEdBQUcsR0FBRyxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQTtRQUNyQyxLQUFLLENBQUMsTUFBTSxHQUFHLEdBQUcsRUFBRTtZQUNsQixJQUFJLEtBQUssR0FBRyxLQUFLLENBQUMsS0FBSyxDQUFBO1lBQ3ZCLElBQUksTUFBTSxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUE7WUFFekIsSUFBSSxLQUFLLEdBQUcsUUFBUSxJQUFJLE1BQU0sR0FBRyxTQUFTLEVBQUU7Z0JBQzFDLElBQUksS0FBSyxHQUFHLE1BQU0sRUFBRTtvQkFDbEIsTUFBTSxHQUFHLE1BQU0sR0FBRyxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUMsQ0FBQTtvQkFDcEMsS0FBSyxHQUFHLFFBQVEsQ0FBQTtpQkFDakI7cUJBQU07b0JBQ0wsS0FBSyxHQUFHLEtBQUssR0FBRyxDQUFDLFNBQVMsR0FBRyxNQUFNLENBQUMsQ0FBQTtvQkFDcEMsTUFBTSxHQUFHLFNBQVMsQ0FBQTtpQkFDbkI7YUFDRjtZQUVELE1BQU0sTUFBTSxHQUFHLFFBQVEsQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLENBQUE7WUFDL0MsTUFBTSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUE7WUFDcEIsTUFBTSxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUE7WUFFdEIsTUFBTSxPQUFPLEdBQUcsTUFBTSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsQ0FBQTtZQUN2QyxPQUFPLENBQUMsU0FBUyxDQUFDLEtBQUssRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLEtBQUssRUFBRSxNQUFNLENBQUMsQ0FBQTtZQUU3QyxNQUFNLENBQUMsTUFBTSxDQUFDLE9BQU8sRUFBRSxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUE7UUFDbkMsQ0FBQyxDQUFBO1FBQ0QsS0FBSyxDQUFDLE9BQU8sR0FBRyxNQUFNLENBQUE7SUFDeEIsQ0FBQyxDQUFDLENBQUE7QUFDSixDQUFDO0FBRUQsTUFBTSxVQUFVLGNBQWMsQ0FDNUIsSUFBVSxFQUNWLFlBQW9CO0lBRXBCLE9BQU8sSUFBSSxPQUFPLENBQUMsQ0FBQyxPQUFPLEVBQUUsTUFBTSxFQUFFLEVBQUU7UUFDckMsTUFBTSxLQUFLLEdBQUcsSUFBSSxLQUFLLEVBQUUsQ0FBQTtRQUN6QixLQUFLLENBQUMsR0FBRyxHQUFHLEdBQUcsQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLENBQUE7UUFDckMsS0FBSyxDQUFDLE1BQU0sR0FBRyxHQUFHLEVBQUU7WUFDbEIsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQTtZQUN6QixNQUFNLE1BQU0sR0FBRyxLQUFLLENBQUMsTUFBTSxDQUFBO1lBQzNCLElBQUksT0FBTyxHQUFHLEdBQUcsQ0FBQTtZQUVqQixNQUFNLE1BQU0sR0FBRyxRQUFRLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQyxDQUFBO1lBQy9DLE1BQU0sQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFBO1lBQ3BCLE1BQU0sQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFBO1lBRXRCLE1BQU0sT0FBTyxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUE7WUFDdkMsT0FBTyxDQUFDLFNBQVMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxLQUFLLEVBQUUsTUFBTSxDQUFDLENBQUE7WUFFN0MsTUFBTSxzQkFBc0IsR0FBRyxDQUFDLGNBQW9CLEVBQUUsRUFBRTtnQkFDdEQsSUFBSSxjQUFjLENBQUMsSUFBSSxJQUFJLFlBQVksRUFBRTtvQkFDdkMsT0FBTyxDQUFDLGNBQWMsQ0FBQyxDQUFBO2lCQUN4QjtxQkFBTTtvQkFDTCxPQUFPLElBQUksR0FBRyxDQUFBO29CQUNkLElBQUksT0FBTyxJQUFJLENBQUMsRUFBRTt3QkFDaEIsTUFBTSxDQUFDLE1BQU0sQ0FBQyxzQkFBc0IsRUFBRSxJQUFJLENBQUMsSUFBSSxFQUFFLE9BQU8sQ0FBQyxDQUFBO3FCQUMxRDt5QkFBTTt3QkFDTCxNQUFNLENBQUMseUNBQXlDLENBQUMsQ0FBQTtxQkFDbEQ7aUJBQ0Y7WUFDSCxDQUFDLENBQUE7WUFFRCxNQUFNLENBQUMsTUFBTSxDQUFDLHNCQUFzQixFQUFFLElBQUksQ0FBQyxJQUFJLEVBQUUsT0FBTyxDQUFDLENBQUE7UUFDM0QsQ0FBQyxDQUFBO1FBQ0QsS0FBSyxDQUFDLE9BQU8sR0FBRyxNQUFNLENBQUE7SUFDeEIsQ0FBQyxDQUFDLENBQUE7QUFDSixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGZ1bmN0aW9uIGRvd25zaXplSW1hZ2UoXG4gIGJsb2I6IEJsb2IsXG4gIG1heFdpZHRoOiBudW1iZXIsXG4gIG1heEhlaWdodDogbnVtYmVyXG4pOiBQcm9taXNlPEJsb2I+IHtcbiAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlLCByZWplY3QpID0+IHtcbiAgICBjb25zdCBpbWFnZSA9IG5ldyBJbWFnZSgpXG4gICAgaW1hZ2Uuc3JjID0gVVJMLmNyZWF0ZU9iamVjdFVSTChibG9iKVxuICAgIGltYWdlLm9ubG9hZCA9ICgpID0+IHtcbiAgICAgIGxldCB3aWR0aCA9IGltYWdlLndpZHRoXG4gICAgICBsZXQgaGVpZ2h0ID0gaW1hZ2UuaGVpZ2h0XG5cbiAgICAgIGlmICh3aWR0aCA+IG1heFdpZHRoIHx8IGhlaWdodCA+IG1heEhlaWdodCkge1xuICAgICAgICBpZiAod2lkdGggPiBoZWlnaHQpIHtcbiAgICAgICAgICBoZWlnaHQgPSBoZWlnaHQgKiAobWF4V2lkdGggLyB3aWR0aClcbiAgICAgICAgICB3aWR0aCA9IG1heFdpZHRoXG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgd2lkdGggPSB3aWR0aCAqIChtYXhIZWlnaHQgLyBoZWlnaHQpXG4gICAgICAgICAgaGVpZ2h0ID0gbWF4SGVpZ2h0XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgY29uc3QgY2FudmFzID0gZG9jdW1lbnQuY3JlYXRlRWxlbWVudCgnY2FudmFzJylcbiAgICAgIGNhbnZhcy53aWR0aCA9IHdpZHRoXG4gICAgICBjYW52YXMuaGVpZ2h0ID0gaGVpZ2h0XG5cbiAgICAgIGNvbnN0IGNvbnRleHQgPSBjYW52YXMuZ2V0Q29udGV4dCgnMmQnKVxuICAgICAgY29udGV4dC5kcmF3SW1hZ2UoaW1hZ2UsIDAsIDAsIHdpZHRoLCBoZWlnaHQpXG5cbiAgICAgIGNhbnZhcy50b0Jsb2IocmVzb2x2ZSwgYmxvYi50eXBlKVxuICAgIH1cbiAgICBpbWFnZS5vbmVycm9yID0gcmVqZWN0XG4gIH0pXG59XG5cbmV4cG9ydCBmdW5jdGlvbiBkb3duZ3JhZGVJbWFnZShcbiAgYmxvYjogQmxvYixcbiAgbWF4U2l6ZUJ5dGVzOiBudW1iZXJcbik6IFByb21pc2U8QmxvYj4ge1xuICByZXR1cm4gbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgIGNvbnN0IGltYWdlID0gbmV3IEltYWdlKClcbiAgICBpbWFnZS5zcmMgPSBVUkwuY3JlYXRlT2JqZWN0VVJMKGJsb2IpXG4gICAgaW1hZ2Uub25sb2FkID0gKCkgPT4ge1xuICAgICAgY29uc3Qgd2lkdGggPSBpbWFnZS53aWR0aFxuICAgICAgY29uc3QgaGVpZ2h0ID0gaW1hZ2UuaGVpZ2h0XG4gICAgICBsZXQgcXVhbGl0eSA9IDEuMFxuXG4gICAgICBjb25zdCBjYW52YXMgPSBkb2N1bWVudC5jcmVhdGVFbGVtZW50KCdjYW52YXMnKVxuICAgICAgY2FudmFzLndpZHRoID0gd2lkdGhcbiAgICAgIGNhbnZhcy5oZWlnaHQgPSBoZWlnaHRcblxuICAgICAgY29uc3QgY29udGV4dCA9IGNhbnZhcy5nZXRDb250ZXh0KCcyZCcpXG4gICAgICBjb250ZXh0LmRyYXdJbWFnZShpbWFnZSwgMCwgMCwgd2lkdGgsIGhlaWdodClcblxuICAgICAgY29uc3QgY29tcHJlc3NBbmRSZXNvbHZlQmxvYiA9IChibG9iVG9Db21wcmVzczogQmxvYikgPT4ge1xuICAgICAgICBpZiAoYmxvYlRvQ29tcHJlc3Muc2l6ZSA8PSBtYXhTaXplQnl0ZXMpIHtcbiAgICAgICAgICByZXNvbHZlKGJsb2JUb0NvbXByZXNzKVxuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIHF1YWxpdHkgLT0gMC4xXG4gICAgICAgICAgaWYgKHF1YWxpdHkgPj0gMCkge1xuICAgICAgICAgICAgY2FudmFzLnRvQmxvYihjb21wcmVzc0FuZFJlc29sdmVCbG9iLCBibG9iLnR5cGUsIHF1YWxpdHkpXG4gICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHJlamVjdCgnVW5hYmxlIHRvIGNvbXByZXNzIGltYWdlIGJlbG93IG1heCBzaXplJylcbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgY2FudmFzLnRvQmxvYihjb21wcmVzc0FuZFJlc29sdmVCbG9iLCBibG9iLnR5cGUsIHF1YWxpdHkpXG4gICAgfVxuICAgIGltYWdlLm9uZXJyb3IgPSByZWplY3RcbiAgfSlcbn1cbiJdfQ==
@@ -1,10 +1,12 @@
1
+ export * from './bytes-convert';
2
+ export * from './event';
3
+ export * from './fuzzy-filter';
4
+ export * from './geojson';
5
+ export * from './image-resize';
1
6
  export * from './parse';
2
- export * from './strip-html';
3
7
  export * from './remove-whitespace';
4
- export * from './geojson';
5
8
  export * from './sort-by';
6
- export * from './url';
7
- export * from './event';
8
- export * from './fuzzy-filter';
9
+ export * from './strip-html';
9
10
  export * from './temporal-extent-union';
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3V0aWwvc2hhcmVkL3NyYy9saWIvdXRpbHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxTQUFTLENBQUE7QUFDdkIsY0FBYyxjQUFjLENBQUE7QUFDNUIsY0FBYyxxQkFBcUIsQ0FBQTtBQUNuQyxjQUFjLFdBQVcsQ0FBQTtBQUN6QixjQUFjLFdBQVcsQ0FBQTtBQUN6QixjQUFjLE9BQU8sQ0FBQTtBQUNyQixjQUFjLFNBQVMsQ0FBQTtBQUN2QixjQUFjLGdCQUFnQixDQUFBO0FBQzlCLGNBQWMseUJBQXlCLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3BhcnNlJ1xuZXhwb3J0ICogZnJvbSAnLi9zdHJpcC1odG1sJ1xuZXhwb3J0ICogZnJvbSAnLi9yZW1vdmUtd2hpdGVzcGFjZSdcbmV4cG9ydCAqIGZyb20gJy4vZ2VvanNvbidcbmV4cG9ydCAqIGZyb20gJy4vc29ydC1ieSdcbmV4cG9ydCAqIGZyb20gJy4vdXJsJ1xuZXhwb3J0ICogZnJvbSAnLi9ldmVudCdcbmV4cG9ydCAqIGZyb20gJy4vZnV6enktZmlsdGVyJ1xuZXhwb3J0ICogZnJvbSAnLi90ZW1wb3JhbC1leHRlbnQtdW5pb24nXG4iXX0=
11
+ export * from './url';
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3V0aWwvc2hhcmVkL3NyYy9saWIvdXRpbHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxpQkFBaUIsQ0FBQTtBQUMvQixjQUFjLFNBQVMsQ0FBQTtBQUN2QixjQUFjLGdCQUFnQixDQUFBO0FBQzlCLGNBQWMsV0FBVyxDQUFBO0FBQ3pCLGNBQWMsZ0JBQWdCLENBQUE7QUFDOUIsY0FBYyxTQUFTLENBQUE7QUFDdkIsY0FBYyxxQkFBcUIsQ0FBQTtBQUNuQyxjQUFjLFdBQVcsQ0FBQTtBQUN6QixjQUFjLGNBQWMsQ0FBQTtBQUM1QixjQUFjLHlCQUF5QixDQUFBO0FBQ3ZDLGNBQWMsT0FBTyxDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9ieXRlcy1jb252ZXJ0J1xuZXhwb3J0ICogZnJvbSAnLi9ldmVudCdcbmV4cG9ydCAqIGZyb20gJy4vZnV6enktZmlsdGVyJ1xuZXhwb3J0ICogZnJvbSAnLi9nZW9qc29uJ1xuZXhwb3J0ICogZnJvbSAnLi9pbWFnZS1yZXNpemUnXG5leHBvcnQgKiBmcm9tICcuL3BhcnNlJ1xuZXhwb3J0ICogZnJvbSAnLi9yZW1vdmUtd2hpdGVzcGFjZSdcbmV4cG9ydCAqIGZyb20gJy4vc29ydC1ieSdcbmV4cG9ydCAqIGZyb20gJy4vc3RyaXAtaHRtbCdcbmV4cG9ydCAqIGZyb20gJy4vdGVtcG9yYWwtZXh0ZW50LXVuaW9uJ1xuZXhwb3J0ICogZnJvbSAnLi91cmwnXG4iXX0=
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "",
2
3
  "catalog.figures.datasets": "{count, plural, =0{Datensätze} one{Datensatz} other{Datensätze}}",
3
4
  "catalog.figures.organisations": "{count, plural, =0{Organisationen} one{Organisation} other{Organisationen}}",
4
5
  "chart.aggregation.average": "Durchschnitt",
@@ -144,7 +145,15 @@
144
145
  "downloads.format.unknown": "unbekannt",
145
146
  "downloads.wfs.featuretype.not.found": "Der Layer wurde nicht gefunden",
146
147
  "dropFile": "Datei ablegen",
148
+ "editor.record.loadError.body": "",
149
+ "editor.record.loadError.closeMessage": "",
150
+ "editor.record.loadError.title": "",
147
151
  "editor.record.publish": "",
152
+ "editor.record.publishError.body": "",
153
+ "editor.record.publishError.closeMessage": "",
154
+ "editor.record.publishError.title": "",
155
+ "editor.record.publishSuccess.body": "",
156
+ "editor.record.publishSuccess.title": "",
148
157
  "editor.record.upToDate": "",
149
158
  "externalviewer.dataset.unnamed": "Datensatz aus dem Datahub",
150
159
  "facets.block.title.OrgForResource": "Organisation",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "Stichwort",
160
169
  "facets.block.title.th_regions_tree.default": "Regionen",
161
170
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Anmelden</a>, um auf diese Funktion zuzugreifen</div>",
171
+ "input.image.altTextPlaceholder": "",
172
+ "input.image.delete": "",
173
+ "input.image.displayAltTextInput": "",
174
+ "input.image.displayUrlInput": "",
175
+ "input.image.dropFileLabel": "",
176
+ "input.image.selectFileLabel": "",
177
+ "input.image.uploadErrorLabel": "",
178
+ "input.image.uploadErrorRetry": "",
179
+ "input.image.uploadProgressCancel": "",
180
+ "input.image.uploadProgressLabel": "",
162
181
  "language.ca": "Katalanisch",
163
182
  "language.cs": "Tschechisch",
164
183
  "language.de": "Deutsch",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "Eine Ebene hinzufügen",
178
197
  "map.add.layer.catalog": "Aus dem Katalog",
179
198
  "map.add.layer.file": "Aus einer Datei",
199
+ "map.add.layer.ogc.api": "",
180
200
  "map.add.layer.wfs": "Aus WFS",
181
201
  "map.add.layer.wms": "Aus WMS",
182
202
  "map.addFromFile.placeholder": "Klicke hier oder ziehe eine Datei herein",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "Kartendaten werden geladen...",
189
209
  "map.loading.service": "Dienst wird geladen...",
190
210
  "map.navigation.message": "Bitte verwenden Sie STRG + Maus (oder zwei Finger auf einem Mobilgerät), um die Karte zu navigieren",
211
+ "map.ogc.urlInput.hint": "",
191
212
  "map.select.layer": "Datenquelle",
192
213
  "map.wfs.urlInput.hint": "Geben Sie die WFS URL ein",
193
214
  "map.wms.urlInput.hint": "Geben Sie die WMS URL ein",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "Aktualisierungsfrequenz nicht angegeben",
259
280
  "record.metadata.quality.updateFrequency.success": "Aktualisierungsfrequenz angegeben",
260
281
  "record.metadata.related": "Ähnliche Datensätze",
282
+ "record.metadata.userFeedbacks": "",
283
+ "record.metadata.userFeedbacks.anonymousUser": "",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
261
290
  "record.metadata.sheet": "Weitere Informationen verfügbar unter:",
262
291
  "record.metadata.status": "Status",
263
292
  "record.metadata.technical": "Technische Informationen",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "Daten werden geladen...",
332
361
  "table.object.count": "Objekte in diesem Datensatz",
333
362
  "table.select.data": "Datenquelle",
363
+ "timeSincePipe.lessThanAMinute": "",
364
+ "timeSincePipe.minutesAgo": "",
365
+ "timeSincePipe.hoursAgo": "",
366
+ "timeSincePipe.daysAgo": "",
367
+ "timeSincePipe.monthsAgo": "",
368
+ "timeSincePipe.yearsAgo": "",
334
369
  "tooltip.html.copy": "HTML kopieren",
335
370
  "tooltip.id.copy": "Eindeutige Kennung kopieren",
336
371
  "tooltip.url.copy": "URL kopieren",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "Log in",
2
3
  "catalog.figures.datasets": "{count, plural, =0{datasets} one{dataset} other{datasets}}",
3
4
  "catalog.figures.organisations": "{count, plural, =0{organisations} one{organisation} other{organisations}}",
4
5
  "chart.aggregation.average": "average",
@@ -144,7 +145,15 @@
144
145
  "downloads.format.unknown": "unknown",
145
146
  "downloads.wfs.featuretype.not.found": "The layer was not found",
146
147
  "dropFile": "drop file",
148
+ "editor.record.loadError.body": "The record could not be loaded:",
149
+ "editor.record.loadError.closeMessage": "Understood",
150
+ "editor.record.loadError.title": "Error loading record",
147
151
  "editor.record.publish": "Publish this record",
152
+ "editor.record.publishError.body": "The record could not be published:",
153
+ "editor.record.publishError.closeMessage": "Understood",
154
+ "editor.record.publishError.title": "Error publishing record",
155
+ "editor.record.publishSuccess.body": "The record was successfully published!",
156
+ "editor.record.publishSuccess.title": "Publish success",
148
157
  "editor.record.upToDate": "This record is up to date",
149
158
  "externalviewer.dataset.unnamed": "Datahub layer",
150
159
  "facets.block.title.OrgForResource": "Organisation",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "Tag",
160
169
  "facets.block.title.th_regions_tree.default": "Regions",
161
170
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Login</a> to access this feature</div>",
171
+ "input.image.altTextPlaceholder": "Image alternate text",
172
+ "input.image.delete": "Delete",
173
+ "input.image.displayAltTextInput": "Alternate text",
174
+ "input.image.displayUrlInput": "Enter a URL",
175
+ "input.image.dropFileLabel": "or drop it here",
176
+ "input.image.selectFileLabel": "Select an image",
177
+ "input.image.uploadErrorLabel": "The image could not be uploaded",
178
+ "input.image.uploadErrorRetry": "Retry",
179
+ "input.image.uploadProgressCancel": "Cancel",
180
+ "input.image.uploadProgressLabel": "Upload in progress...",
162
181
  "language.ca": "Catalan",
163
182
  "language.cs": "Czech",
164
183
  "language.de": "German",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "Add a layer",
178
197
  "map.add.layer.catalog": "From the catalog",
179
198
  "map.add.layer.file": "From a file",
199
+ "map.add.layer.ogc.api": "From OGC API",
180
200
  "map.add.layer.wfs": "From WFS",
181
201
  "map.add.layer.wms": "From WMS",
182
202
  "map.addFromFile.placeholder": "Click or drop a file here",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "Loading map data...",
189
209
  "map.loading.service": "Loading service...",
190
210
  "map.navigation.message": "Please use CTRL + mouse (or two fingers on mobile) to navigate the map",
211
+ "map.ogc.urlInput.hint": "Enter OGC API service URL",
191
212
  "map.select.layer": "Data source",
192
213
  "map.wfs.urlInput.hint": "Enter WFS service URL",
193
214
  "map.wms.urlInput.hint": "Enter WMS service URL",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "Update frequency is not specified",
259
280
  "record.metadata.quality.updateFrequency.success": "Update frequency is specified",
260
281
  "record.metadata.related": "Related records",
282
+ "record.metadata.userFeedbacks": "Questions / Answers",
283
+ "record.metadata.userFeedbacks.anonymousUser": "In order to leave a comment, please log in.",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "Sort by ...",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "Newest comments first",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "Oldest comments first",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "Write your comment here...",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "Answer...",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "Publish",
261
290
  "record.metadata.sheet": "Original metadata",
262
291
  "record.metadata.status": "Status",
263
292
  "record.metadata.technical": "Technical information",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "Loading data...",
332
361
  "table.object.count": "objects in this dataset",
333
362
  "table.select.data": "Data source",
363
+ "timeSincePipe.lessThanAMinute": "Less than a minute ago",
364
+ "timeSincePipe.minutesAgo": "{value} minute{s} ago",
365
+ "timeSincePipe.hoursAgo": "{value} hour{s} ago",
366
+ "timeSincePipe.daysAgo": "{value} day{s} ago",
367
+ "timeSincePipe.monthsAgo": "{value} month{s} ago",
368
+ "timeSincePipe.yearsAgo": "{value} year{s} ago",
334
369
  "tooltip.html.copy": "Copy HTML",
335
370
  "tooltip.id.copy": "Copy unique identifier",
336
371
  "tooltip.url.copy": "Copy URL",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "",
2
3
  "catalog.figures.datasets": "conjuntos de datos",
3
4
  "catalog.figures.organisations": "organizaciones",
4
5
  "chart.aggregation.average": "promedio",
@@ -144,7 +145,15 @@
144
145
  "downloads.format.unknown": "",
145
146
  "downloads.wfs.featuretype.not.found": "",
146
147
  "dropFile": "",
148
+ "editor.record.loadError.body": "",
149
+ "editor.record.loadError.closeMessage": "",
150
+ "editor.record.loadError.title": "",
147
151
  "editor.record.publish": "",
152
+ "editor.record.publishError.body": "",
153
+ "editor.record.publishError.closeMessage": "",
154
+ "editor.record.publishError.title": "",
155
+ "editor.record.publishSuccess.body": "",
156
+ "editor.record.publishSuccess.title": "",
148
157
  "editor.record.upToDate": "",
149
158
  "externalviewer.dataset.unnamed": "",
150
159
  "facets.block.title.OrgForResource": "",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "",
160
169
  "facets.block.title.th_regions_tree.default": "",
161
170
  "favorite.not.authenticated.tooltip": "",
171
+ "input.image.altTextPlaceholder": "",
172
+ "input.image.delete": "",
173
+ "input.image.displayAltTextInput": "",
174
+ "input.image.displayUrlInput": "",
175
+ "input.image.dropFileLabel": "",
176
+ "input.image.selectFileLabel": "",
177
+ "input.image.uploadErrorLabel": "",
178
+ "input.image.uploadErrorRetry": "",
179
+ "input.image.uploadProgressCancel": "",
180
+ "input.image.uploadProgressLabel": "",
162
181
  "language.ca": "Catalán",
163
182
  "language.cs": "Checo",
164
183
  "language.de": "Alemán",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "",
178
197
  "map.add.layer.catalog": "",
179
198
  "map.add.layer.file": "",
199
+ "map.add.layer.ogc.api": "",
180
200
  "map.add.layer.wfs": "",
181
201
  "map.add.layer.wms": "",
182
202
  "map.addFromFile.placeholder": "",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "",
189
209
  "map.loading.service": "",
190
210
  "map.navigation.message": "",
211
+ "map.ogc.urlInput.hint": "",
191
212
  "map.select.layer": "",
192
213
  "map.wfs.urlInput.hint": "",
193
214
  "map.wms.urlInput.hint": "",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "",
259
280
  "record.metadata.quality.updateFrequency.success": "",
260
281
  "record.metadata.related": "",
282
+ "record.metadata.userFeedbacks": "",
283
+ "record.metadata.userFeedbacks.anonymousUser": "",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
261
290
  "record.metadata.sheet": "",
262
291
  "record.metadata.status": "",
263
292
  "record.metadata.technical": "",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "",
332
361
  "table.object.count": "",
333
362
  "table.select.data": "",
363
+ "timeSincePipe.lessThanAMinute": "",
364
+ "timeSincePipe.minutesAgo": "",
365
+ "timeSincePipe.hoursAgo": "",
366
+ "timeSincePipe.daysAgo": "",
367
+ "timeSincePipe.monthsAgo": "",
368
+ "timeSincePipe.yearsAgo": "",
334
369
  "tooltip.html.copy": "",
335
370
  "tooltip.id.copy": "",
336
371
  "tooltip.url.copy": "",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "Se connecter",
2
3
  "catalog.figures.datasets": "{count, plural, =0{données} one{donnée} other{données}}",
3
4
  "catalog.figures.organisations": "{count, plural, =0{organisations} one{organisation} other{organisations}}",
4
5
  "chart.aggregation.average": "moyenne",
@@ -144,7 +145,15 @@
144
145
  "downloads.format.unknown": "inconnu",
145
146
  "downloads.wfs.featuretype.not.found": "La couche n'a pas été retrouvée",
146
147
  "dropFile": "Faites glisser votre fichier",
148
+ "editor.record.loadError.body": "",
149
+ "editor.record.loadError.closeMessage": "",
150
+ "editor.record.loadError.title": "",
147
151
  "editor.record.publish": "",
152
+ "editor.record.publishError.body": "",
153
+ "editor.record.publishError.closeMessage": "",
154
+ "editor.record.publishError.title": "",
155
+ "editor.record.publishSuccess.body": "",
156
+ "editor.record.publishSuccess.title": "",
148
157
  "editor.record.upToDate": "",
149
158
  "externalviewer.dataset.unnamed": "Couche du datahub",
150
159
  "facets.block.title.OrgForResource": "Organisation",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "Tag",
160
169
  "facets.block.title.th_regions_tree.default": "Régions",
161
170
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Connectez-vous</a> pour avoir accès à cette fonctionnalité</div>",
171
+ "input.image.altTextPlaceholder": "Texte alternatif de l'image",
172
+ "input.image.delete": "Supprimer",
173
+ "input.image.displayAltTextInput": "Texte alternatif",
174
+ "input.image.displayUrlInput": "Saisir une URL",
175
+ "input.image.dropFileLabel": "ou la glisser ici",
176
+ "input.image.selectFileLabel": "Sélectionner une image",
177
+ "input.image.uploadErrorLabel": "L'image n'a pas pu être chargée",
178
+ "input.image.uploadErrorRetry": "Réessayer",
179
+ "input.image.uploadProgressCancel": "Annuler",
180
+ "input.image.uploadProgressLabel": "Chargement en cours...",
162
181
  "language.ca": "Catalan",
163
182
  "language.cs": "Tchèque",
164
183
  "language.de": "Allemand",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "Ajouter une couche",
178
197
  "map.add.layer.catalog": "Du catalogue",
179
198
  "map.add.layer.file": "À partir d'un fichier",
199
+ "map.add.layer.ogc.api": "",
180
200
  "map.add.layer.wfs": "Depuis un service WFS",
181
201
  "map.add.layer.wms": "Depuis un service WMS",
182
202
  "map.addFromFile.placeholder": "Cliquez ou déposez un fichier ici",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "Chargement des données...",
189
209
  "map.loading.service": "Chargement du service...",
190
210
  "map.navigation.message": "Veuillez utiliser CTRL + souris (ou deux doigts sur mobile) pour naviguer sur la carte",
211
+ "map.ogc.urlInput.hint": "",
191
212
  "map.select.layer": "Source de données",
192
213
  "map.wfs.urlInput.hint": "Entrez l'URL du service WFS",
193
214
  "map.wms.urlInput.hint": "Entrez l'URL du service WMS",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "Fréquence de mise à jour n'est pas renseignée",
259
280
  "record.metadata.quality.updateFrequency.success": "Fréquence de mise à jour est renseignée",
260
281
  "record.metadata.related": "Voir aussi",
282
+ "record.metadata.userFeedbacks": "Questions / Réponses",
283
+ "record.metadata.userFeedbacks.anonymousUser": "Pour rédiger un commentaire, veuillez vous identifier.",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "Trier par ...",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "Les plus récents en premier",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "Les plus anciens en premier",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "Rédiger votre commentaire ici...",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "Répondre...",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "Publier",
261
290
  "record.metadata.sheet": "Fiche de métadonnées d'origine",
262
291
  "record.metadata.status": "Statut",
263
292
  "record.metadata.technical": "Informations techniques",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "Chargement des données...",
332
361
  "table.object.count": "enregistrements dans ces données",
333
362
  "table.select.data": "Source de données",
363
+ "timeSincePipe.lessThanAMinute": "Il y a moins d'une minute",
364
+ "timeSincePipe.minutesAgo": "Il y a {value} minute{s}",
365
+ "timeSincePipe.hoursAgo": "Il y a {value} heure{s}",
366
+ "timeSincePipe.daysAgo": "Il y a {value} jour{s}",
367
+ "timeSincePipe.monthsAgo": "Il y a {value} mois",
368
+ "timeSincePipe.yearsAgo": "Il y a {value} an{s}",
334
369
  "tooltip.html.copy": "Copier le HTML",
335
370
  "tooltip.id.copy": "Copier l'identifiant unique",
336
371
  "tooltip.url.copy": "Copier l'URL",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "",
2
3
  "catalog.figures.datasets": "{count, plural, =0{datasets} one{dataset} other{datasets}}",
3
4
  "catalog.figures.organisations": "{count, plural, =0{organizzazioni} one{organizzazione} other{organizzazioni}}",
4
5
  "chart.aggregation.average": "media",
@@ -144,7 +145,15 @@
144
145
  "downloads.format.unknown": "sconosciuto",
145
146
  "downloads.wfs.featuretype.not.found": "Il layer non è stato trovato",
146
147
  "dropFile": "Trascina il suo file",
148
+ "editor.record.loadError.body": "",
149
+ "editor.record.loadError.closeMessage": "",
150
+ "editor.record.loadError.title": "",
147
151
  "editor.record.publish": "",
152
+ "editor.record.publishError.body": "",
153
+ "editor.record.publishError.closeMessage": "",
154
+ "editor.record.publishError.title": "",
155
+ "editor.record.publishSuccess.body": "",
156
+ "editor.record.publishSuccess.title": "",
148
157
  "editor.record.upToDate": "",
149
158
  "externalviewer.dataset.unnamed": "Layer del datahub",
150
159
  "facets.block.title.OrgForResource": "Organizzazione",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "Tag",
160
169
  "facets.block.title.th_regions_tree.default": "Regioni",
161
170
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Login</a> per accedere a questa funzionalità</div>",
171
+ "input.image.altTextPlaceholder": "",
172
+ "input.image.delete": "",
173
+ "input.image.displayAltTextInput": "",
174
+ "input.image.displayUrlInput": "",
175
+ "input.image.dropFileLabel": "",
176
+ "input.image.selectFileLabel": "",
177
+ "input.image.uploadErrorLabel": "",
178
+ "input.image.uploadErrorRetry": "",
179
+ "input.image.uploadProgressCancel": "",
180
+ "input.image.uploadProgressLabel": "",
162
181
  "language.ca": "Catalano",
163
182
  "language.cs": "Ceco",
164
183
  "language.de": "Tedesco",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "Aggiungere un layer",
178
197
  "map.add.layer.catalog": "Dal catalogo",
179
198
  "map.add.layer.file": "Da un file",
199
+ "map.add.layer.ogc.api": "",
180
200
  "map.add.layer.wfs": "Da un WFS",
181
201
  "map.add.layer.wms": "Da un WMS",
182
202
  "map.addFromFile.placeholder": "Clicca o trascina un file qui",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "Caricamento dati...",
189
209
  "map.loading.service": "Caricamento del servizio...",
190
210
  "map.navigation.message": "Si prega di utilizzare CTRL + mouse (o due dita su mobile) per navigare sulla mappa",
211
+ "map.ogc.urlInput.hint": "",
191
212
  "map.select.layer": "Sorgente dati",
192
213
  "map.wfs.urlInput.hint": "Inserisci URL del servizio WFS",
193
214
  "map.wms.urlInput.hint": "Inserisci URL del servizio WMS",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "La frequenza di aggiornamento non è specificata",
259
280
  "record.metadata.quality.updateFrequency.success": "La frequenza di aggiornamento è specificata",
260
281
  "record.metadata.related": "Vedi anche",
282
+ "record.metadata.userFeedbacks": "",
283
+ "record.metadata.userFeedbacks.anonymousUser": "",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
261
290
  "record.metadata.sheet": "Origine del metadata",
262
291
  "record.metadata.status": "Stato",
263
292
  "record.metadata.technical": "Informazioni tecniche",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "Caricamento dei dati...",
332
361
  "table.object.count": "record in questi dati",
333
362
  "table.select.data": "Sorgente dati",
363
+ "timeSincePipe.lessThanAMinute": "",
364
+ "timeSincePipe.minutesAgo": "",
365
+ "timeSincePipe.hoursAgo": "",
366
+ "timeSincePipe.daysAgo": "",
367
+ "timeSincePipe.monthsAgo": "",
368
+ "timeSincePipe.yearsAgo": "",
334
369
  "tooltip.html.copy": "Copiare il HTML",
335
370
  "tooltip.id.copy": "Copiare l'identificatore unico",
336
371
  "tooltip.url.copy": "Copiare l'URL",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "",
2
3
  "catalog.figures.datasets": "datasets",
3
4
  "catalog.figures.organisations": "organisaties",
4
5
  "chart.aggregation.average": "gemiddelde",
@@ -144,7 +145,15 @@
144
145
  "downloads.format.unknown": "",
145
146
  "downloads.wfs.featuretype.not.found": "",
146
147
  "dropFile": "",
148
+ "editor.record.loadError.body": "",
149
+ "editor.record.loadError.closeMessage": "",
150
+ "editor.record.loadError.title": "",
147
151
  "editor.record.publish": "",
152
+ "editor.record.publishError.body": "",
153
+ "editor.record.publishError.closeMessage": "",
154
+ "editor.record.publishError.title": "",
155
+ "editor.record.publishSuccess.body": "",
156
+ "editor.record.publishSuccess.title": "",
148
157
  "editor.record.upToDate": "",
149
158
  "externalviewer.dataset.unnamed": "",
150
159
  "facets.block.title.OrgForResource": "",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "",
160
169
  "facets.block.title.th_regions_tree.default": "",
161
170
  "favorite.not.authenticated.tooltip": "",
171
+ "input.image.altTextPlaceholder": "",
172
+ "input.image.delete": "",
173
+ "input.image.displayAltTextInput": "",
174
+ "input.image.displayUrlInput": "",
175
+ "input.image.dropFileLabel": "",
176
+ "input.image.selectFileLabel": "",
177
+ "input.image.uploadErrorLabel": "",
178
+ "input.image.uploadErrorRetry": "",
179
+ "input.image.uploadProgressCancel": "",
180
+ "input.image.uploadProgressLabel": "",
162
181
  "language.ca": "Catalaans",
163
182
  "language.cs": "Tsjechisch",
164
183
  "language.de": "Duits",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "",
178
197
  "map.add.layer.catalog": "",
179
198
  "map.add.layer.file": "",
199
+ "map.add.layer.ogc.api": "",
180
200
  "map.add.layer.wfs": "",
181
201
  "map.add.layer.wms": "",
182
202
  "map.addFromFile.placeholder": "",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "",
189
209
  "map.loading.service": "",
190
210
  "map.navigation.message": "",
211
+ "map.ogc.urlInput.hint": "",
191
212
  "map.select.layer": "",
192
213
  "map.wfs.urlInput.hint": "",
193
214
  "map.wms.urlInput.hint": "",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "",
259
280
  "record.metadata.quality.updateFrequency.success": "",
260
281
  "record.metadata.related": "",
282
+ "record.metadata.userFeedbacks": "",
283
+ "record.metadata.userFeedbacks.anonymousUser": "",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
261
290
  "record.metadata.sheet": "",
262
291
  "record.metadata.status": "",
263
292
  "record.metadata.technical": "",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "",
332
361
  "table.object.count": "",
333
362
  "table.select.data": "",
363
+ "timeSincePipe.lessThanAMinute": "",
364
+ "timeSincePipe.minutesAgo": "",
365
+ "timeSincePipe.hoursAgo": "",
366
+ "timeSincePipe.daysAgo": "",
367
+ "timeSincePipe.monthsAgo": "",
368
+ "timeSincePipe.yearsAgo": "",
334
369
  "tooltip.html.copy": "",
335
370
  "tooltip.id.copy": "",
336
371
  "tooltip.url.copy": "",