geonetwork-ui 2.4.0-dev.e8fc61cb → 2.4.0-dev.e97caaf2

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 (516) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +2 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +1 -1
  3. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +7 -5
  5. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +30 -2
  6. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
  7. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +23 -1
  8. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +10 -3
  9. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +31 -3
  10. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +2 -1
  11. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +3 -1
  12. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +12 -2
  13. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +19 -5
  14. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
  15. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  16. package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +1 -1
  17. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
  18. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  19. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  20. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
  21. package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +1 -1
  22. package/esm2022/libs/feature/catalog/src/index.mjs +2 -1
  23. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +1 -1
  24. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +6 -6
  25. package/esm2022/libs/feature/catalog/src/lib/organization-url.token.mjs +4 -0
  26. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +4 -6
  27. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +3 -1
  28. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +8 -3
  29. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +10 -2
  30. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
  31. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +7 -3
  32. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +16 -6
  33. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +29 -0
  34. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +78 -0
  35. package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +96 -0
  36. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +164 -0
  37. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +19 -39
  38. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +10 -8
  39. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +101 -0
  40. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +44 -0
  41. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +28 -0
  42. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +10 -6
  43. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +11 -11
  44. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +9 -8
  45. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +111 -5
  46. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +49 -52
  47. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +16 -14
  48. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +37 -43
  49. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +1 -2
  50. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +13 -7
  51. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +8 -8
  52. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  53. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +6 -4
  54. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +175 -59
  55. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
  56. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
  57. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +8 -3
  58. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +6 -6
  59. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +6 -5
  60. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +8 -5
  61. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +6 -7
  62. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +8 -7
  63. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +7 -6
  64. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +7 -26
  65. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +29 -13
  66. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +10 -5
  67. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +42 -23
  68. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +13 -5
  69. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +49 -15
  70. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +8 -12
  71. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +2 -1
  72. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +1 -1
  73. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +9 -2
  74. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +8 -1
  75. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
  76. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +46 -7
  77. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +8 -3
  78. package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +4 -1
  79. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +7 -3
  80. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +5 -5
  81. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +5 -2
  82. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -8
  83. package/esm2022/libs/ui/elements/src/index.mjs +2 -2
  84. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -3
  85. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
  86. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +5 -3
  87. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +4 -3
  88. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  89. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +6 -6
  90. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
  91. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
  92. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
  93. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +24 -5
  94. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +6 -10
  95. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +15 -11
  96. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
  97. package/esm2022/libs/ui/inputs/src/index.mjs +2 -1
  98. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +19 -5
  99. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +26 -24
  100. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +17 -14
  101. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +32 -0
  102. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +6 -21
  103. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +6 -17
  104. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +3 -7
  105. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +43 -0
  106. package/esm2022/libs/ui/layout/src/index.mjs +2 -1
  107. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +3 -3
  108. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
  109. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +71 -0
  110. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +1 -1
  111. package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +3 -3
  112. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +67 -0
  113. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +28 -8
  114. package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
  115. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
  116. package/esm2022/translations/de.json +132 -35
  117. package/esm2022/translations/en.json +106 -9
  118. package/esm2022/translations/es.json +105 -8
  119. package/esm2022/translations/fr.json +118 -21
  120. package/esm2022/translations/it.json +106 -9
  121. package/esm2022/translations/nl.json +105 -8
  122. package/esm2022/translations/pt.json +105 -8
  123. package/fesm2022/geonetwork-ui.mjs +5384 -3445
  124. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  125. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  126. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +2 -6
  127. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +1 -1
  128. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +1 -0
  129. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  130. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  131. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +8 -1
  132. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  133. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
  134. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
  135. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +3 -1
  136. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  137. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +1 -0
  138. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  139. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +7 -1
  140. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  141. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  142. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  143. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  144. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +3 -1
  145. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  146. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -0
  147. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  148. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +3 -1
  149. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  150. package/libs/common/domain/src/lib/model/record/organization.model.d.ts +1 -0
  151. package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -1
  152. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  153. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  154. package/libs/common/domain/src/lib/platform.service.interface.d.ts +3 -1
  155. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  156. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +17 -0
  157. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  158. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  159. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +1 -1
  160. package/libs/feature/catalog/src/index.d.ts +1 -0
  161. package/libs/feature/catalog/src/index.d.ts.map +1 -1
  162. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  163. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  164. package/libs/feature/catalog/src/lib/organization-url.token.d.ts +3 -0
  165. package/libs/feature/catalog/src/lib/organization-url.token.d.ts.map +1 -0
  166. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
  167. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +6 -0
  168. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  169. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
  170. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  171. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +5 -4
  172. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  173. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
  174. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  175. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
  176. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  177. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
  178. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  179. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +12 -0
  180. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  181. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +32 -0
  182. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
  183. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +27 -0
  184. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +1 -0
  185. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +44 -0
  186. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -0
  187. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +8 -19
  188. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  189. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +6 -4
  190. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  191. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +22 -0
  192. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -0
  193. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +15 -0
  194. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -0
  195. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +13 -0
  196. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
  197. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +4 -3
  198. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +1 -1
  199. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +4 -4
  200. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  201. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +4 -3
  202. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
  203. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +23 -0
  204. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
  205. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +15 -15
  206. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
  207. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +5 -5
  208. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -1
  209. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +16 -20
  210. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  211. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +0 -1
  212. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  213. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +6 -7
  214. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  215. package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
  216. package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
  217. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -1
  218. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  219. package/libs/feature/editor/src/lib/fields.config.d.ts +46 -2
  220. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  221. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +36 -0
  222. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
  223. package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
  224. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  225. package/libs/feature/editor/src/lib/services/editor.service.d.ts +3 -2
  226. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  227. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +1 -1
  228. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  229. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +1 -1
  230. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  231. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +1 -1
  232. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  233. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +1 -1
  234. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  235. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +1 -1
  236. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  237. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +1 -1
  238. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  239. package/libs/feature/map/src/lib/feature-map.module.d.ts +16 -21
  240. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  241. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +1 -1
  242. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  243. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  244. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
  245. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  246. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
  247. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
  248. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
  249. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  250. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  251. package/libs/feature/router/src/lib/default/constants.d.ts +1 -0
  252. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  253. package/libs/feature/router/src/lib/default/router.config.d.ts +1 -0
  254. package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -1
  255. package/libs/feature/router/src/lib/default/router.service.d.ts +1 -0
  256. package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -1
  257. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -0
  258. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  259. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +14 -4
  260. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  261. package/libs/feature/search/src/lib/state/search.facade.d.ts +2 -0
  262. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  263. package/libs/feature/search/src/lib/state/selectors.d.ts +1 -0
  264. package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
  265. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  266. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +2 -2
  267. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +2 -1
  268. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
  269. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -2
  270. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
  271. package/libs/ui/elements/src/index.d.ts +1 -1
  272. package/libs/ui/elements/src/index.d.ts.map +1 -1
  273. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
  274. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
  275. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
  276. package/libs/ui/elements/src/lib/error/error.component.d.ts +3 -1
  277. package/libs/ui/elements/src/lib/error/error.component.d.ts.map +1 -1
  278. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
  279. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  280. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
  281. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +5 -1
  282. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
  283. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +5 -10
  284. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -1
  285. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +17 -15
  286. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  287. package/libs/ui/inputs/src/index.d.ts +1 -0
  288. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  289. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  290. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  291. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +5 -3
  292. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
  293. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +3 -4
  294. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  295. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +17 -0
  296. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
  297. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
  298. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  299. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -4
  300. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  301. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +34 -35
  302. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  303. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +18 -0
  304. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
  305. package/libs/ui/layout/src/index.d.ts +1 -0
  306. package/libs/ui/layout/src/index.d.ts.map +1 -1
  307. package/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.d.ts +2 -2
  308. package/libs/ui/layout/src/lib/max-lines/max-lines.component.d.ts.map +1 -0
  309. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  310. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +20 -0
  311. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
  312. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +9 -3
  313. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  314. package/libs/ui/widgets/src/index.d.ts +1 -0
  315. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  316. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
  317. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
  318. package/package.json +1 -1
  319. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +6 -1
  320. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +5 -1
  321. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +37 -12
  322. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -1
  323. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
  324. package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
  325. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  326. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +6 -2
  327. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +72 -2
  328. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
  329. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +70 -1
  330. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +13 -5
  331. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +42 -2
  332. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -0
  333. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +3 -1
  334. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +13 -2
  335. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +69 -27
  336. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +28 -0
  337. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +3 -1
  338. package/src/libs/common/domain/src/lib/model/record/organization.model.ts +1 -0
  339. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  340. package/src/libs/common/domain/src/lib/platform.service.interface.ts +9 -1
  341. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +22 -0
  342. package/src/libs/common/fixtures/src/index.ts +2 -0
  343. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
  344. package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
  345. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +38 -0
  346. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +8 -0
  347. package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +4 -0
  348. package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +2 -0
  349. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
  350. package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +1 -1
  351. package/src/libs/data-access/gn4/src/spec.yaml +0 -8
  352. package/src/libs/feature/catalog/src/index.ts +1 -0
  353. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +0 -1
  354. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +1 -1
  355. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +2 -2
  356. package/src/libs/feature/catalog/src/lib/organization-url.token.ts +6 -0
  357. package/src/libs/feature/catalog/src/lib/records/records.service.ts +6 -8
  358. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +7 -0
  359. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +17 -2
  360. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  361. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
  362. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
  363. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
  364. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +27 -0
  365. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +30 -0
  366. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -0
  367. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +26 -0
  368. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +89 -0
  369. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +2 -1
  370. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +74 -31
  371. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +0 -0
  372. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +76 -0
  373. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +249 -0
  374. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -17
  375. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +18 -49
  376. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +13 -5
  377. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.css +0 -0
  378. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +4 -0
  379. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +128 -0
  380. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css +0 -0
  381. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  382. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +48 -0
  383. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
  384. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +5 -0
  385. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +33 -0
  386. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +2 -2
  387. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +9 -3
  388. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +2 -2
  389. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +13 -7
  390. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +5 -3
  391. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +11 -4
  392. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +15 -1
  393. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +156 -1
  394. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +9 -2
  395. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +59 -70
  396. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +17 -15
  397. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +105 -70
  398. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +44 -43
  399. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +0 -1
  400. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +52 -11
  401. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +19 -7
  402. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
  403. package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
  404. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
  405. package/src/libs/feature/editor/src/lib/fields.config.ts +211 -60
  406. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +53 -0
  407. package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
  408. package/src/libs/feature/editor/src/lib/services/editor.service.ts +15 -4
  409. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
  410. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +5 -1
  411. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +5 -0
  412. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
  413. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -7
  414. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
  415. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +5 -0
  416. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +1 -1
  417. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +6 -1
  418. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -15
  419. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +24 -1
  420. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +8 -4
  421. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +36 -19
  422. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
  423. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +11 -0
  424. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +59 -12
  425. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +42 -31
  426. package/src/libs/feature/router/src/lib/default/constants.ts +1 -0
  427. package/src/libs/feature/router/src/lib/default/router.config.ts +1 -0
  428. package/src/libs/feature/router/src/lib/default/router.service.ts +13 -1
  429. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +9 -1
  430. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
  431. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +3 -1
  432. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +57 -3
  433. package/src/libs/feature/search/src/lib/state/search.facade.ts +11 -0
  434. package/src/libs/feature/search/src/lib/state/selectors.ts +7 -0
  435. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +16 -2
  436. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +8 -6
  437. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
  438. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +2 -0
  439. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +11 -3
  440. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +3 -7
  441. package/src/libs/ui/elements/src/index.ts +1 -1
  442. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +29 -29
  443. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
  444. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
  445. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
  446. package/src/libs/ui/elements/src/lib/error/error.component.html +30 -6
  447. package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -0
  448. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +4 -1
  449. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +2 -1
  450. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
  451. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
  452. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
  453. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  454. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
  455. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +1 -1
  456. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +22 -1
  457. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +3 -10
  458. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts +7 -7
  459. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +10 -6
  460. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
  461. package/src/libs/ui/inputs/src/index.ts +1 -0
  462. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +15 -3
  463. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +40 -26
  464. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +0 -0
  465. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +85 -0
  466. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +91 -0
  467. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +49 -49
  468. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +15 -13
  469. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +31 -0
  470. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +15 -0
  471. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +38 -0
  472. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
  473. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +2 -27
  474. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
  475. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
  476. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -3
  477. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +9 -0
  478. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +37 -0
  479. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +33 -0
  480. package/src/libs/ui/layout/src/index.ts +1 -0
  481. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +1 -1
  482. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -0
  483. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.css +0 -0
  484. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.html +1 -0
  485. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.ts +9 -5
  486. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -1
  487. package/src/libs/ui/map/src/lib/ui-map.module.ts +1 -1
  488. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
  489. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +26 -0
  490. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +74 -0
  491. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +15 -1
  492. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +26 -12
  493. package/src/libs/ui/widgets/src/index.ts +1 -0
  494. package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
  495. package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
  496. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
  497. package/tailwind.base.css +18 -5
  498. package/translations/de.json +132 -35
  499. package/translations/en.json +106 -9
  500. package/translations/es.json +105 -8
  501. package/translations/fr.json +118 -21
  502. package/translations/it.json +106 -9
  503. package/translations/nl.json +105 -8
  504. package/translations/pt.json +105 -8
  505. package/translations/sk.json +107 -10
  506. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
  507. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
  508. package/esm2022/libs/ui/elements/src/lib/max-lines/max-lines.component.mjs +0 -69
  509. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
  510. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
  511. package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
  512. package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
  513. package/libs/ui/elements/src/lib/max-lines/max-lines.component.d.ts.map +0 -1
  514. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
  515. package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
  516. /package/src/libs/{ui/elements/src/lib/max-lines/max-lines.component.css → feature/editor/src/lib/components/contact-card/contact-card.component.css} +0 -0
package/tailwind.base.css CHANGED
@@ -74,10 +74,6 @@
74
74
  margin-bottom: -0.325em;
75
75
  flex-shrink: 0;
76
76
  }
77
- /* makes spinners appear in the right color */
78
- .gn-ui-btn mat-spinner circle {
79
- stroke: currentColor !important;
80
- }
81
77
 
82
78
  .gn-ui-btn-default {
83
79
  @apply gn-ui-btn text-white
@@ -115,7 +111,8 @@
115
111
  --padding: var(--gn-ui-badge-padding, 0.375em 0.75em);
116
112
  --text-color: var(--gn-ui-badge-text-color, var(--color-gray-50));
117
113
  --background-color: var(--gn-ui-badge-background-color, black);
118
- @apply inline-block opacity-70 p-[--padding] rounded-[--rounded]
114
+ --opacity: var(--gn-ui-badge-opacity, 0.7);
115
+ @apply inline-block opacity-[--opacity] p-[--padding] rounded-[--rounded]
119
116
  font-medium text-[length:0.875em] leading-none text-[color:--text-color] bg-[color:--background-color];
120
117
  }
121
118
  /* makes sure icons will not make the badges grow vertically; also make size proportional */
@@ -134,10 +131,26 @@
134
131
  @apply flex items-center justify-center px-4 py-1 text-white rounded backdrop-blur;
135
132
  }
136
133
 
134
+ /* GENERIC TEXT INPUT (textarea, text field, url input...) */
135
+ .gn-ui-text-input {
136
+ --rounded: var(--gn-ui-text-input-rounded, 0.25em);
137
+ --padding: var(--gn-ui-text-input-padding, 0.6em);
138
+ @apply appearance-none border-2 p-[--padding] rounded-[--rounded] w-full transition-colors duration-75
139
+ text-[14px] leading-none border-gray-300 text-main placeholder-gray-800
140
+ focus:outline-none focus:border-main hover:border-main
141
+ disabled:cursor-not-allowed disabled:border-gray-100 disabled:placeholder-gray-300 disabled:text-gray-700 disabled:bg-white;
142
+ }
143
+
137
144
  /* TODO: add prefix */
138
145
  .card-icon {
139
146
  @apply text-primary opacity-50 group-hover:text-secondary group-hover:opacity-100 transition-colors transition-opacity;
140
147
  }
148
+
149
+ /* makes spinners appear in the right color */
150
+ mat-spinner circle,
151
+ mat-progress-spinner circle {
152
+ stroke: currentColor !important;
153
+ }
141
154
  }
142
155
 
143
156
  html {
@@ -2,7 +2,7 @@
2
2
  "Add Layer As": "",
3
3
  "button.login": "",
4
4
  "catalog.figures.datasets": "{count, plural, =0{Datensätze} one{Datensatz} other{Datensätze}}",
5
- "catalog.figures.organisations": "{count, plural, =0{Organisationen} one{Organisation} other{Organisationen}}",
5
+ "catalog.figures.organizations": "{count, plural, =0{Organisationen} one{Organisation} other{Organisationen}}",
6
6
  "chart.aggregation.average": "Durchschnitt",
7
7
  "chart.aggregation.count": "Anzahl",
8
8
  "chart.aggregation.max": "Maximum",
@@ -49,6 +49,8 @@
49
49
  "datafeeder.datasetValidation.submitButton": "OK, meine Daten sind korrekt",
50
50
  "datafeeder.datasetValidation.title": "Stellen Sie sicher, dass Ihre Daten korrekt sind",
51
51
  "datafeeder.datasetValidation.unknown": " - ",
52
+ "datafeeder.datasetValidationCsv.explicitLineNumbers": "",
53
+ "datafeeder.datasetValidationCsv.lineNumbers": "",
52
54
  "datafeeder.form.abstract": "Wie würden Sie Ihren Datensatz beschreiben?",
53
55
  "datafeeder.form.datepicker": "Wissen Sie, wann der Datensatz erstellt wurde?",
54
56
  "datafeeder.form.description": "Beschreiben Sie abschließend den Prozess, der zur Erstellung des Datensatzes verwendet wurde",
@@ -76,6 +78,7 @@
76
78
  "datafeeder.publishSuccess.geonetworkRecord": "Metadatensatz",
77
79
  "datafeeder.publishSuccess.illustration.title": "Erledigt, alles ist gut!",
78
80
  "datafeeder.publishSuccess.mapViewer": "Kartenviewer",
81
+ "datafeeder.publishSuccess.ogcFeature": "",
79
82
  "datafeeder.publishSuccess.subtitle": "Zeigen Sie Ihre Daten an in:",
80
83
  "datafeeder.publishSuccess.title": "Herzlichen Glückwunsch! \n Ihr Datensatz wurde veröffentlicht",
81
84
  "datafeeder.publishSuccess.uploadAnotherData": "Ein weiteren Datensatz hochladen",
@@ -104,6 +107,15 @@
104
107
  "datafeeder.upload.maxFileSize": "Maximale Dateigröße beträgt {size} MB",
105
108
  "datafeeder.upload.title": "Laden Sie Ihren Datensatz hoch",
106
109
  "datafeeder.upload.uploadButton": "Hochladen",
110
+ "datafeeder.validation.csv.delimiter": "",
111
+ "datafeeder.validation.csv.delimiter.comma": "",
112
+ "datafeeder.validation.csv.delimiter.semicolon": "",
113
+ "datafeeder.validation.csv.lat.field": "",
114
+ "datafeeder.validation.csv.lng.field": "",
115
+ "datafeeder.validation.csv.quote.double": "",
116
+ "datafeeder.validation.csv.quote.none": "",
117
+ "datafeeder.validation.csv.quote.simple": "",
118
+ "datafeeder.validation.csv.quoteChar": "",
107
119
  "datafeeder.validation.encoding": "Codierung",
108
120
  "datafeeder.validation.extent.title": "Hier ist der Datensatzumfang",
109
121
  "datafeeder.validation.extent.title.unknown": "Das Projektionssystem ist unbekannt",
@@ -117,7 +129,7 @@
117
129
  "datahub.header.lastRecords": "Die neuesten",
118
130
  "datahub.header.myfavorites": "Meine Favoriten",
119
131
  "datahub.header.news": "Startseite",
120
- "datahub.header.organisations": "Organisationen",
132
+ "datahub.header.organizations": "Organisationen",
121
133
  "datahub.header.popularRecords": "Die beliebtesten",
122
134
  "datahub.header.title.html": "<div class=\"text-white\">Entdecken Sie offene<br> Daten meiner Organisation</div>",
123
135
  "datahub.news.contact.contactus": "Kontaktieren Sie uns",
@@ -135,6 +147,27 @@
135
147
  "dataset.error.parse": "Die Daten wurden geladen, konnten aber nicht gelesen werden: \"{ info }\"",
136
148
  "dataset.error.unknown": "Die Daten können nicht angezeigt werden: \"{ info }\"",
137
149
  "dataset.error.unsupportedType": "Der folgende Inhaltstyp wird nicht unterstützt: \"{ info }\"",
150
+ "domain.contact.role.author": "",
151
+ "domain.contact.role.collaborator": "",
152
+ "domain.contact.role.contributor": "",
153
+ "domain.contact.role.custodian": "",
154
+ "domain.contact.role.distributor": "",
155
+ "domain.contact.role.editor": "",
156
+ "domain.contact.role.funder": "",
157
+ "domain.contact.role.mediator": "",
158
+ "domain.contact.role.originator": "",
159
+ "domain.contact.role.other": "",
160
+ "domain.contact.role.owner": "",
161
+ "domain.contact.role.point_of_contact": "",
162
+ "domain.contact.role.principal_investigator": "",
163
+ "domain.contact.role.processor": "",
164
+ "domain.contact.role.publisher": "",
165
+ "domain.contact.role.resource_provider": "",
166
+ "domain.contact.role.rights_holder": "",
167
+ "domain.contact.role.sponsor": "",
168
+ "domain.contact.role.stakeholder": "",
169
+ "domain.contact.role.unspecified": "",
170
+ "domain.contact.role.user": "",
138
171
  "domain.record.status.completed": "Abgeschlossen",
139
172
  "domain.record.status.deprecated": "Veraltet",
140
173
  "domain.record.status.ongoing": "Kontinuierliche Aktualisierung",
@@ -153,37 +186,86 @@
153
186
  "downloads.format.unknown": "unbekannt",
154
187
  "downloads.wfs.featuretype.not.found": "Der Layer wurde nicht gefunden",
155
188
  "dropFile": "Datei ablegen",
156
- "editor.record.form.license": "Lizenz",
157
- "editor.record.form.license.cc-by": "",
158
- "editor.record.form.license.cc-by-sa": "",
159
- "editor.record.form.license.cc-zero": "",
160
- "editor.record.form.license.etalab": "",
161
- "editor.record.form.license.etalab-v2": "",
162
- "editor.record.form.license.odbl": "",
163
- "editor.record.form.license.odc-by": "",
164
- "editor.record.form.license.pddl": "",
189
+ "editor.form.placeKeywordWithoutExtent": "",
190
+ "editor.record.delete.confirmation.cancelText": "Stornieren",
191
+ "editor.record.delete.confirmation.confirmText": "Löschen",
192
+ "editor.record.delete.confirmation.message": "Sind Sie sicher, dass Sie diesen Datensatz löschen möchten?",
193
+ "editor.record.delete.confirmation.title": "Datensatz löschen?",
194
+ "editor.record.deleteError.body": "Der Datensatz konnte nicht gelöscht werden:",
195
+ "editor.record.deleteError.closeMessage": "Verstanden",
196
+ "editor.record.deleteError.title": "Fehler beim Löschen des Datensatzes",
197
+ "editor.record.deleteSuccess.body": "",
198
+ "editor.record.deleteSuccess.title": "",
199
+ "editor.record.form.bottomButtons.comeBackLater": "",
200
+ "editor.record.form.bottomButtons.next": "",
201
+ "editor.record.form.bottomButtons.previous": "",
202
+ "editor.record.form.classification.opendata": "",
203
+ "editor.record.form.field.abstract": "Kurzbeschreibung",
204
+ "editor.record.form.field.contactsForResource.noContact": "",
205
+ "editor.record.form.field.keywords": "Schlagwörter",
206
+ "editor.record.form.field.license": "Lizenz",
207
+ "editor.record.form.field.overviews": "",
208
+ "editor.record.form.field.recordUpdated": "Datensatz zuletzt aktualisiert",
209
+ "editor.record.form.field.resourceUpdated": "Letztes Aktualisierungsdatum",
210
+ "editor.record.form.field.spatialExtents": "",
211
+ "editor.record.form.field.temporalExtents": "Zeitlicher Umfang",
212
+ "editor.record.form.field.title": "Metadaten-Titel",
213
+ "editor.record.form.field.uniqueIdentifier": "Eindeutige Kennung (ID)",
214
+ "editor.record.form.field.updateFrequency": "Aktualisierungshäufigkeit",
215
+ "editor.record.form.license.cc-by": "Creative Commons CC-BY",
216
+ "editor.record.form.license.cc-by-sa": "Creative Commons CC-BY-SA",
217
+ "editor.record.form.license.cc-zero": "Creative Commons CC-0",
218
+ "editor.record.form.license.etalab": "Offene Lizenz (Etalab)",
219
+ "editor.record.form.license.etalab-v2": "Offene Lizenz v2.0 (Etalab)",
220
+ "editor.record.form.license.odbl": "Open Data Commons ODbL",
221
+ "editor.record.form.license.odc-by": "Open Data Commons ODC-By",
222
+ "editor.record.form.license.pddl": "Open Data Commons PDDL",
165
223
  "editor.record.form.license.unknown": "Unbekannt oder nicht vorhanden",
166
- "editor.record.form.resourceUpdated": "",
167
- "editor.record.form.temporalExtents": "",
168
- "editor.record.form.temporalExtents.addDate": "",
169
- "editor.record.form.temporalExtents.addRange": "",
170
- "editor.record.form.temporalExtents.date": "",
171
- "editor.record.form.temporalExtents.range": "",
172
- "editor.record.form.updateFrequency": "",
173
- "editor.record.form.updateFrequency.planned": "",
174
- "editor.record.loadError.body": "",
175
- "editor.record.loadError.closeMessage": "",
176
- "editor.record.loadError.title": "",
177
- "editor.record.publish": "",
178
- "editor.record.publishError.body": "",
179
- "editor.record.publishError.closeMessage": "",
180
- "editor.record.publishError.title": "",
181
- "editor.record.publishSuccess.body": "",
182
- "editor.record.publishSuccess.title": "",
183
- "editor.record.saveStatus.asDraftOnly": "",
184
- "editor.record.saveStatus.draftWithChangesPending": "",
185
- "editor.record.saveStatus.recordUpToDate": "",
186
- "editor.record.upToDate": "",
224
+ "editor.record.form.page.accessAndContact": "",
225
+ "editor.record.form.page.description": "",
226
+ "editor.record.form.page.ressources": "",
227
+ "editor.record.form.section.about.description": "",
228
+ "editor.record.form.section.about.label": "",
229
+ "editor.record.form.section.annexes.label": "",
230
+ "editor.record.form.section.associatedResources.description": "",
231
+ "editor.record.form.section.associatedResources.label": "",
232
+ "editor.record.form.section.classification.description": "",
233
+ "editor.record.form.section.classification.label": "",
234
+ "editor.record.form.section.dataManagers.description": "",
235
+ "editor.record.form.section.dataManagers.label": "",
236
+ "editor.record.form.section.dataPointOfContact.description": "",
237
+ "editor.record.form.section.dataPointOfContact.label": "",
238
+ "editor.record.form.section.geographicalCoverage.label": "",
239
+ "editor.record.form.section.useAndAccessConditions.label": "",
240
+ "editor.record.form.temporalExtents.addDate": "Zeitpunkt",
241
+ "editor.record.form.temporalExtents.addRange": "Zeitraum",
242
+ "editor.record.form.temporalExtents.date": "Datum",
243
+ "editor.record.form.temporalExtents.range": "Datumsbereich",
244
+ "editor.record.form.updateFrequency.planned": "Die Daten sollten regelmäßig aktualisiert werden.",
245
+ "editor.record.loadError.body": "Der Datensatz konnte nicht geladen werden:",
246
+ "editor.record.loadError.closeMessage": "Verstanden",
247
+ "editor.record.loadError.title": "Fehler beim Laden des Datensatzes",
248
+ "editor.record.placeKeywordWithoutLabel": "",
249
+ "editor.record.publish": "Diesen Datensatz veröffentlichen",
250
+ "editor.record.publishError.body": "Der Datensatz konnte nicht veröffentlicht werden:",
251
+ "editor.record.publishError.closeMessage": "Verstanden",
252
+ "editor.record.publishError.title": "Fehler beim Veröffentlichen des Datensatzes",
253
+ "editor.record.publishSuccess.body": "Der Datensatz wurde erfolgreich veröffentlicht!",
254
+ "editor.record.publishSuccess.title": "Veröffentlichung erfolgreich",
255
+ "editor.record.resourceError.body": "",
256
+ "editor.record.resourceError.closeMessage": "",
257
+ "editor.record.resourceError.title": "",
258
+ "editor.record.saveStatus.asDraftOnly": "Nur als Entwurf gespeichert - noch nicht veröffentlicht",
259
+ "editor.record.saveStatus.draftWithChangesPending": "Als Entwurf gespeichert - Änderungen stehen aus",
260
+ "editor.record.saveStatus.recordUpToDate": "Datensatz ist auf dem neuesten Stand",
261
+ "editor.record.undo.confirmation.cancelText": "",
262
+ "editor.record.undo.confirmation.confirmText": "",
263
+ "editor.record.undo.confirmation.message": "",
264
+ "editor.record.undo.confirmation.title": "",
265
+ "editor.record.undo.tooltip.disabled": "",
266
+ "editor.record.undo.tooltip.enabled": "",
267
+ "editor.record.upToDate": "Dieser Datensatz ist auf dem neuesten Stand",
268
+ "editor.sidebar.menu.editor": "",
187
269
  "externalviewer.dataset.unnamed": "Datensatz aus dem Datahub",
188
270
  "facets.block.title.OrgForResource": "Organisation",
189
271
  "facets.block.title.availableInServices": "Verfügbar für",
@@ -197,6 +279,11 @@
197
279
  "facets.block.title.tag.default": "Stichwort",
198
280
  "facets.block.title.th_regions_tree.default": "Regionen",
199
281
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Anmelden</a>, um auf diese Funktion zuzugreifen</div>",
282
+ "input.file.dropFileLabel": "",
283
+ "input.file.orInputUrl": "",
284
+ "input.file.selectFileLabel": "",
285
+ "input.file.uploadProgressCancel": "",
286
+ "input.file.uploadProgressLabel": "",
200
287
  "input.image.altTextPlaceholder": "",
201
288
  "input.image.delete": "",
202
289
  "input.image.displayAltTextInput": "",
@@ -252,11 +339,17 @@
252
339
  "organisations.sortBy.nameDesc": "Name Z → A",
253
340
  "organisations.sortBy.recordCountAsc": "Veröffentlichungen 0 → 9",
254
341
  "organisations.sortBy.recordCountDesc": "Veröffentlichungen 9 → 0",
342
+ "organization.details.lastPublishedDatasets": "",
343
+ "organization.details.lastPublishedDatasets.searchAllButton": "",
344
+ "organization.details.mailContact": "",
345
+ "organization.header.recordCount": "{count, plural, =0{} one{} other{}}",
255
346
  "pagination.nextPage": "Nächste Seite",
256
347
  "pagination.page": "Seite",
257
348
  "pagination.pageOf": "von",
258
349
  "previous": "zurück",
350
+ "record.action.delete": "Löschen",
259
351
  "record.action.download": "Herunterladen",
352
+ "record.action.duplicate": "",
260
353
  "record.action.view": "Anzeigen",
261
354
  "record.externalViewer.open": "In externem Kartenviewer öffnen",
262
355
  "record.metadata.about": "Beschreibung",
@@ -289,7 +382,7 @@
289
382
  "record.metadata.preview": "Vorschau",
290
383
  "record.metadata.producer": "Datenproduzent",
291
384
  "record.metadata.publication": "Veröffentlichungsdatum",
292
- "record.metadata.publications": "Veröffentlichungen",
385
+ "record.metadata.publications": "{count, plural, =0{Veröffentlichungsdatum} one{Veröffentlichungsdatum} other{Veröffentlichungen}}",
293
386
  "record.metadata.quality": "Metadatenqualität",
294
387
  "record.metadata.quality.contact.failed": "Kontakt nicht angegeben",
295
388
  "record.metadata.quality.contact.success": "Kontakt angegeben",
@@ -349,6 +442,8 @@
349
442
  "results.sortBy.relevancy": "Relevanz",
350
443
  "search.autocomplete.error": "Vorschläge konnten nicht abgerufen werden:",
351
444
  "search.error.couldNotReachApi": "Die API konnte nicht erreicht werden",
445
+ "search.error.organizationHasNoDataset": "",
446
+ "search.error.organizationNotFound": "",
352
447
  "search.error.receivedError": "Ein Fehler ist aufgetreten",
353
448
  "search.error.recordHasnolink": "",
354
449
  "search.error.recordNotFound": "Der Datensatz mit der Kennung \"{ id }\" konnte nicht gefunden werden.",
@@ -376,14 +471,16 @@
376
471
  "search.filters.minimize": "Minimieren",
377
472
  "search.filters.myRecords": "Nur meine Datensätze anzeigen",
378
473
  "search.filters.myRecordsHelp": "Wenn dies aktiviert ist, werden nur von mir erstellte Datensätze angezeigt; Datensätze, die von anderen erstellt wurden, werden nicht angezeigt.",
474
+ "search.filters.organization": "",
379
475
  "search.filters.otherRecords": "Datensätze von einer anderen Person anzeigen",
476
+ "search.filters.producerOrg": "",
380
477
  "search.filters.publicationYear": "Veröffentlichungsjahr",
381
- "search.filters.publisher": "Organisationen",
478
+ "search.filters.publisherOrg": "",
382
479
  "search.filters.representationType": "Repräsentationstyp",
383
480
  "search.filters.resourceType": "Ressourcentyp",
384
481
  "search.filters.standard": "Standard",
385
482
  "search.filters.title": "Ergebnisse filtern",
386
- "search.filters.topic": "Thema",
483
+ "search.filters.topic": "Themen",
387
484
  "search.filters.useSpatialFilter": "Zuerst Datensätze im Interessenbereich anzeigen",
388
485
  "search.filters.useSpatialFilterHelp": "Wenn diese Option aktiviert ist, werden Datensätze im Bereich des Katalogs zuerst angezeigt. Datensätze außerhalb dieses Bereichs werden nicht angezeigt.",
389
486
  "share.tab.permalink": "Teilen",
@@ -2,7 +2,7 @@
2
2
  "Add Layer As": "",
3
3
  "button.login": "Log in",
4
4
  "catalog.figures.datasets": "{count, plural, =0{datasets} one{dataset} other{datasets}}",
5
- "catalog.figures.organisations": "{count, plural, =0{organisations} one{organisation} other{organisations}}",
5
+ "catalog.figures.organizations": "{count, plural, =0{organizations} one{organization} other{organizations}}",
6
6
  "chart.aggregation.average": "average",
7
7
  "chart.aggregation.count": "count",
8
8
  "chart.aggregation.max": "max",
@@ -49,6 +49,8 @@
49
49
  "datafeeder.datasetValidation.submitButton": "OK, my data are correct",
50
50
  "datafeeder.datasetValidation.title": "Make sure your data are correct",
51
51
  "datafeeder.datasetValidation.unknown": " - ",
52
+ "datafeeder.datasetValidationCsv.explicitLineNumbers": "*The table must display the first 5 lines (excluding the header)<br>If this is not the case, check that the file is correctly formatted",
53
+ "datafeeder.datasetValidationCsv.lineNumbers": "Sample of the first 5 lines* of the dataset:",
52
54
  "datafeeder.form.abstract": "How would you describe your dataset?",
53
55
  "datafeeder.form.datepicker": "Do you know when the dataset was created?",
54
56
  "datafeeder.form.description": "Finally, please describe the process that was used to create the dataset",
@@ -76,6 +78,7 @@
76
78
  "datafeeder.publishSuccess.geonetworkRecord": "Metadata record",
77
79
  "datafeeder.publishSuccess.illustration.title": "Done, all is good!",
78
80
  "datafeeder.publishSuccess.mapViewer": "Map viewer",
81
+ "datafeeder.publishSuccess.ogcFeature": "OGC API",
79
82
  "datafeeder.publishSuccess.subtitle": "View your data in:",
80
83
  "datafeeder.publishSuccess.title": "Congratulation! \n Your dataset has been published",
81
84
  "datafeeder.publishSuccess.uploadAnotherData": "Upload another dataset",
@@ -104,6 +107,15 @@
104
107
  "datafeeder.upload.maxFileSize": "Maximum file size is {size} MB",
105
108
  "datafeeder.upload.title": "Upload your dataset",
106
109
  "datafeeder.upload.uploadButton": "Upload",
110
+ "datafeeder.validation.csv.delimiter": "Delimiter",
111
+ "datafeeder.validation.csv.delimiter.comma": "Comma",
112
+ "datafeeder.validation.csv.delimiter.semicolon": "Semicolon",
113
+ "datafeeder.validation.csv.lat.field": "Latitude column",
114
+ "datafeeder.validation.csv.lng.field": "Longitude column",
115
+ "datafeeder.validation.csv.quote.double": "Double quote",
116
+ "datafeeder.validation.csv.quote.none": "None",
117
+ "datafeeder.validation.csv.quote.simple": "Simple quote",
118
+ "datafeeder.validation.csv.quoteChar": "Quote separator",
107
119
  "datafeeder.validation.encoding": "encoding",
108
120
  "datafeeder.validation.extent.title": "Here is the dataset extent",
109
121
  "datafeeder.validation.extent.title.unknown": "The projection system is unknown",
@@ -117,7 +129,7 @@
117
129
  "datahub.header.lastRecords": "The latest",
118
130
  "datahub.header.myfavorites": "My favorites",
119
131
  "datahub.header.news": "Home",
120
- "datahub.header.organisations": "Organisations",
132
+ "datahub.header.organizations": "Organizations",
121
133
  "datahub.header.popularRecords": "The most popular",
122
134
  "datahub.header.title.html": "<div class=\"text-white\">Discover open<br> data from my Organization</div>",
123
135
  "datahub.news.contact.contactus": "Contact us",
@@ -135,6 +147,27 @@
135
147
  "dataset.error.parse": "The data was loaded but could not be parsed: \"{ info }\"",
136
148
  "dataset.error.unknown": "The data cannot be displayed: \"{ info }\"",
137
149
  "dataset.error.unsupportedType": "The following content type is unsupported: \"{ info }\"",
150
+ "domain.contact.role.author": "Author",
151
+ "domain.contact.role.collaborator": "Collaborator",
152
+ "domain.contact.role.contributor": "Contributor",
153
+ "domain.contact.role.custodian": "Custodian",
154
+ "domain.contact.role.distributor": "Distributor",
155
+ "domain.contact.role.editor": "Editor",
156
+ "domain.contact.role.funder": "Funder",
157
+ "domain.contact.role.mediator": "Mediator",
158
+ "domain.contact.role.originator": "Originator",
159
+ "domain.contact.role.other": "Other",
160
+ "domain.contact.role.owner": "Owner",
161
+ "domain.contact.role.point_of_contact": "Point of contact",
162
+ "domain.contact.role.principal_investigator": "Principal investigator",
163
+ "domain.contact.role.processor": "Processor",
164
+ "domain.contact.role.publisher": "Publisher",
165
+ "domain.contact.role.resource_provider": "Resource provider",
166
+ "domain.contact.role.rights_holder": "Rights holder",
167
+ "domain.contact.role.sponsor": "Sponsor",
168
+ "domain.contact.role.stakeholder": "Stakeholder",
169
+ "domain.contact.role.unspecified": "Unspecified",
170
+ "domain.contact.role.user": "User",
138
171
  "domain.record.status.completed": "Completed",
139
172
  "domain.record.status.deprecated": "Deprecated",
140
173
  "domain.record.status.ongoing": "On going",
@@ -153,7 +186,32 @@
153
186
  "downloads.format.unknown": "unknown",
154
187
  "downloads.wfs.featuretype.not.found": "The layer was not found",
155
188
  "dropFile": "drop file",
156
- "editor.record.form.license": "License",
189
+ "editor.form.placeKeywordWithoutExtent": "This keyword is not associated with a geographical extent",
190
+ "editor.record.delete.confirmation.cancelText": "Cancel",
191
+ "editor.record.delete.confirmation.confirmText": "Delete",
192
+ "editor.record.delete.confirmation.message": "Are you sure you want to delete this record?",
193
+ "editor.record.delete.confirmation.title": "Delete record?",
194
+ "editor.record.deleteError.body": "The record could not be deleted:",
195
+ "editor.record.deleteError.closeMessage": "Understood",
196
+ "editor.record.deleteError.title": "Error deleting record",
197
+ "editor.record.deleteSuccess.body": "The record was successfully deleted !",
198
+ "editor.record.deleteSuccess.title": "Delete success",
199
+ "editor.record.form.bottomButtons.comeBackLater": "Come back later",
200
+ "editor.record.form.bottomButtons.next": "Next",
201
+ "editor.record.form.bottomButtons.previous": "Previous",
202
+ "editor.record.form.classification.opendata": "Open Data",
203
+ "editor.record.form.field.abstract": "Abstract",
204
+ "editor.record.form.field.contactsForResource.noContact": "Please provide at least one point of contact responsible for the data.",
205
+ "editor.record.form.field.keywords": "Keywords",
206
+ "editor.record.form.field.license": "License",
207
+ "editor.record.form.field.overviews": "Overviews",
208
+ "editor.record.form.field.recordUpdated": "Record Updated",
209
+ "editor.record.form.field.resourceUpdated": "Resource Updated",
210
+ "editor.record.form.field.spatialExtents": "Spatial extents",
211
+ "editor.record.form.field.temporalExtents": "Temporal extents",
212
+ "editor.record.form.field.title": "Metadata title",
213
+ "editor.record.form.field.uniqueIdentifier": "Unique identifier",
214
+ "editor.record.form.field.updateFrequency": "Update frequency",
157
215
  "editor.record.form.license.cc-by": "Creative Commons CC-BY",
158
216
  "editor.record.form.license.cc-by-sa": "Creative Commons CC-BY-SA",
159
217
  "editor.record.form.license.cc-zero": "Creative Commons CC-0",
@@ -163,27 +221,51 @@
163
221
  "editor.record.form.license.odc-by": "Open Data Commons ODC-By",
164
222
  "editor.record.form.license.pddl": "Open Data Commons PDDL",
165
223
  "editor.record.form.license.unknown": "Unknown or absent",
166
- "editor.record.form.resourceUpdated": "Last update date",
167
- "editor.record.form.temporalExtents": "Temporal extent",
224
+ "editor.record.form.page.accessAndContact": "Access and contact",
225
+ "editor.record.form.page.description": "Resource description",
226
+ "editor.record.form.page.ressources": "Resources",
227
+ "editor.record.form.section.about.description": "This section describes the resource.",
228
+ "editor.record.form.section.about.label": "About the resource",
229
+ "editor.record.form.section.annexes.label": "Annexes",
230
+ "editor.record.form.section.associatedResources.description": "Drop files here to associate them with the resource.",
231
+ "editor.record.form.section.associatedResources.label": "Associated resources",
232
+ "editor.record.form.section.classification.description": "The classification has an impact on the access to the data.",
233
+ "editor.record.form.section.classification.label": "Classification",
234
+ "editor.record.form.section.dataManagers.description": "The data managers are responsible for the data.",
235
+ "editor.record.form.section.dataManagers.label": "Data managers",
236
+ "editor.record.form.section.dataPointOfContact.description": "This information concerns the metadata.",
237
+ "editor.record.form.section.dataPointOfContact.label": "Data point of contact",
238
+ "editor.record.form.section.geographicalCoverage.label": "Geographical coverage",
239
+ "editor.record.form.section.useAndAccessConditions.label": "Use and access conditions",
168
240
  "editor.record.form.temporalExtents.addDate": "Time instant",
169
241
  "editor.record.form.temporalExtents.addRange": "Time period",
170
242
  "editor.record.form.temporalExtents.date": "Date",
171
243
  "editor.record.form.temporalExtents.range": "Date range",
172
- "editor.record.form.updateFrequency": "Update frequency",
173
244
  "editor.record.form.updateFrequency.planned": "The data should be updated regularly.",
174
245
  "editor.record.loadError.body": "The record could not be loaded:",
175
246
  "editor.record.loadError.closeMessage": "Understood",
176
247
  "editor.record.loadError.title": "Error loading record",
248
+ "editor.record.placeKeywordWithoutLabel": "Unnamed location",
177
249
  "editor.record.publish": "Publish this record",
178
250
  "editor.record.publishError.body": "The record could not be published:",
179
251
  "editor.record.publishError.closeMessage": "Understood",
180
252
  "editor.record.publishError.title": "Error publishing record",
181
253
  "editor.record.publishSuccess.body": "The record was successfully published!",
182
254
  "editor.record.publishSuccess.title": "Publish success",
255
+ "editor.record.resourceError.body": "There was an issue with the record attachments:",
256
+ "editor.record.resourceError.closeMessage": "Understood",
257
+ "editor.record.resourceError.title": "Error with the record attachments",
183
258
  "editor.record.saveStatus.asDraftOnly": "Saved as draft only - not published yet",
184
259
  "editor.record.saveStatus.draftWithChangesPending": "Saved as draft - changes are pending",
185
260
  "editor.record.saveStatus.recordUpToDate": "Record is up to date",
261
+ "editor.record.undo.confirmation.cancelText": "Keep the changes",
262
+ "editor.record.undo.confirmation.confirmText": "Discard the changes",
263
+ "editor.record.undo.confirmation.message": "Are you sure you want to cancel the pending changes on this record?",
264
+ "editor.record.undo.confirmation.title": "Cancel changes?",
265
+ "editor.record.undo.tooltip.disabled": "There is no pending changes on this record",
266
+ "editor.record.undo.tooltip.enabled": "Clicking this button will cancel the pending changes on this record.",
186
267
  "editor.record.upToDate": "This record is up to date",
268
+ "editor.sidebar.menu.editor": "Editor",
187
269
  "externalviewer.dataset.unnamed": "Datahub layer",
188
270
  "facets.block.title.OrgForResource": "Organisation",
189
271
  "facets.block.title.availableInServices": "Available for",
@@ -197,6 +279,11 @@
197
279
  "facets.block.title.tag.default": "Tag",
198
280
  "facets.block.title.th_regions_tree.default": "Regions",
199
281
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Login</a> to access this feature</div>",
282
+ "input.file.dropFileLabel": "or drop it here",
283
+ "input.file.orInputUrl": "or",
284
+ "input.file.selectFileLabel": "Select a file ({sizeMB} MB max.)",
285
+ "input.file.uploadProgressCancel": "Cancel",
286
+ "input.file.uploadProgressLabel": "Uploading in progress...",
200
287
  "input.image.altTextPlaceholder": "Image alternate text",
201
288
  "input.image.delete": "Delete",
202
289
  "input.image.displayAltTextInput": "Alternate text",
@@ -252,11 +339,17 @@
252
339
  "organisations.sortBy.nameDesc": "Name Z → A",
253
340
  "organisations.sortBy.recordCountAsc": "Publications 0 → 9",
254
341
  "organisations.sortBy.recordCountDesc": "Publications 9 → 0",
342
+ "organization.details.lastPublishedDatasets": "",
343
+ "organization.details.lastPublishedDatasets.searchAllButton": "",
344
+ "organization.details.mailContact": "Contact by email",
345
+ "organization.header.recordCount": "{count, plural, =0{data} one{data} other{datas}}",
255
346
  "pagination.nextPage": "Next page",
256
347
  "pagination.page": "page",
257
348
  "pagination.pageOf": "of",
258
349
  "previous": "previous",
350
+ "record.action.delete": "Delete",
259
351
  "record.action.download": "Download",
352
+ "record.action.duplicate": "Duplicate",
260
353
  "record.action.view": "View",
261
354
  "record.externalViewer.open": "Open in the external map viewer",
262
355
  "record.metadata.about": "Description",
@@ -289,7 +382,7 @@
289
382
  "record.metadata.preview": "Preview",
290
383
  "record.metadata.producer": "Data producer",
291
384
  "record.metadata.publication": "Date of publication",
292
- "record.metadata.publications": "publications",
385
+ "record.metadata.publications": "{count, plural, =0{publication} one{publication} other{publications}}",
293
386
  "record.metadata.quality": "Metadata Quality",
294
387
  "record.metadata.quality.contact.failed": "Contact is not specified",
295
388
  "record.metadata.quality.contact.success": "Contact is specified",
@@ -349,6 +442,8 @@
349
442
  "results.sortBy.relevancy": "Relevancy",
350
443
  "search.autocomplete.error": "Suggestions could not be fetched:",
351
444
  "search.error.couldNotReachApi": "The API could not be reached",
445
+ "search.error.organizationHasNoDataset": "This organization has no dataset yet.",
446
+ "search.error.organizationNotFound": "This organization could not be found.",
352
447
  "search.error.receivedError": "An error was received",
353
448
  "search.error.recordHasnolink": "This record currently has no link yet, please come back later.",
354
449
  "search.error.recordNotFound": "The record with identifier \"{ id }\" could not be found.",
@@ -376,14 +471,16 @@
376
471
  "search.filters.minimize": "Minimize",
377
472
  "search.filters.myRecords": "Show only my records",
378
473
  "search.filters.myRecordsHelp": "When this is enabled, records only created by myself are shown; records created by others will not show up.",
474
+ "search.filters.organization": "Organization",
379
475
  "search.filters.otherRecords": "Showing records from another person",
476
+ "search.filters.producerOrg": "Producer",
380
477
  "search.filters.publicationYear": "Publication year",
381
- "search.filters.publisher": "Organizations",
478
+ "search.filters.publisherOrg": "Publisher",
382
479
  "search.filters.representationType": "Representation type",
383
480
  "search.filters.resourceType": "Resource type",
384
481
  "search.filters.standard": "Standard",
385
482
  "search.filters.title": "Filter your results",
386
- "search.filters.topic": "Topic",
483
+ "search.filters.topic": "Topics",
387
484
  "search.filters.useSpatialFilter": "Show records in the area of interest first",
388
485
  "search.filters.useSpatialFilterHelp": "When this is enabled, records situated in the catalog's area of interest are shown first; records outside of this area will not show up.",
389
486
  "share.tab.permalink": "Share",