geonetwork-ui 2.4.0-dev.7a893adc → 2.4.0-dev.80a79eca

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 (299) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
  2. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +5 -5
  3. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +7 -4
  4. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +10 -7
  5. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +7 -14
  6. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +6 -6
  7. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +28 -18
  8. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +41 -7
  9. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  10. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
  11. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  12. package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
  13. package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
  14. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
  15. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
  16. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
  17. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +3 -3
  18. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +71 -0
  19. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +8 -29
  20. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +148 -0
  21. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +86 -11
  22. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +29 -3
  23. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +32 -59
  24. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +10 -3
  25. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +3 -3
  26. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +29 -3
  27. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +1 -1
  28. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +2 -2
  29. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
  30. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  31. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +1 -1
  32. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +1 -1
  33. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +4 -2
  34. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +5 -4
  35. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
  36. package/esm2022/libs/ui/elements/src/index.mjs +2 -2
  37. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
  38. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
  39. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
  40. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  41. package/esm2022/libs/ui/inputs/src/index.mjs +4 -1
  42. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
  43. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +5 -4
  44. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +4 -4
  45. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +4 -3
  46. package/esm2022/libs/ui/layout/src/index.mjs +3 -1
  47. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
  48. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
  49. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
  50. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +8 -8
  51. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
  52. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
  53. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
  54. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
  55. package/esm2022/translations/de.json +15 -2
  56. package/esm2022/translations/en.json +15 -2
  57. package/esm2022/translations/es.json +13 -0
  58. package/esm2022/translations/fr.json +16 -3
  59. package/esm2022/translations/it.json +15 -2
  60. package/esm2022/translations/nl.json +13 -0
  61. package/esm2022/translations/pt.json +13 -0
  62. package/fesm2022/geonetwork-ui.mjs +2888 -2477
  63. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  64. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
  65. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  66. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
  67. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  68. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -1
  69. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
  70. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  71. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +4 -5
  72. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  73. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +7 -6
  74. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  75. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +21 -2
  76. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  77. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +6 -6
  78. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  79. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  80. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  81. package/libs/common/domain/src/lib/platform.service.interface.d.ts +15 -0
  82. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  83. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
  84. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
  85. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
  86. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
  87. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
  88. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  89. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
  90. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  91. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
  92. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  93. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
  94. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
  95. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +2 -5
  96. 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 -1
  97. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
  98. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -0
  99. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +20 -2
  100. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
  101. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +7 -2
  102. 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
  103. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +9 -15
  104. 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
  105. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +5 -3
  106. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  107. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +3 -2
  108. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  109. package/libs/feature/editor/src/lib/fields.config.d.ts +9 -1
  110. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  111. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +5 -0
  112. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -1
  113. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +5 -5
  114. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  115. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
  116. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
  117. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
  118. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  119. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +2 -2
  120. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  121. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +2 -2
  122. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  123. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
  124. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  125. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +1 -0
  126. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  127. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
  128. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
  129. package/libs/ui/elements/src/index.d.ts +1 -1
  130. package/libs/ui/elements/src/index.d.ts.map +1 -1
  131. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
  132. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  133. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
  134. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  135. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
  136. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  137. package/libs/ui/inputs/src/index.d.ts +3 -0
  138. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  139. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +24 -0
  140. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
  141. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +1 -1
  142. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  143. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +0 -1
  144. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -1
  145. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  146. package/libs/ui/layout/src/index.d.ts +2 -0
  147. package/libs/ui/layout/src/index.d.ts.map +1 -1
  148. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
  149. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
  150. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
  151. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
  152. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
  153. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
  154. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +2 -2
  155. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  156. package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
  157. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  158. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  159. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  160. package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
  161. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  162. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
  163. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
  164. package/package.json +1 -1
  165. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -1
  166. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -1
  167. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
  168. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -1
  169. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
  170. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +4 -4
  171. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
  172. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +14 -8
  173. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +4 -12
  174. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +13 -15
  175. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +48 -36
  176. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +47 -3
  177. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +7 -7
  178. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  179. package/src/libs/common/domain/src/lib/platform.service.interface.ts +26 -0
  180. package/src/libs/common/fixtures/src/index.ts +1 -1
  181. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +37 -37
  182. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
  183. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
  184. package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
  185. package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
  186. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
  187. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
  188. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
  189. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
  190. package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
  191. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
  192. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
  193. package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
  194. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +37 -3
  195. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
  196. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +9 -9
  197. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
  198. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
  199. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
  200. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +32 -15
  201. package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
  202. package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
  203. package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
  204. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
  205. package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
  206. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
  207. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
  208. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +9 -9
  209. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
  210. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
  211. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +14 -4
  212. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +5 -44
  213. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +33 -0
  214. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +182 -0
  215. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -5
  216. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +93 -4
  217. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +6 -1
  218. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +46 -1
  219. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +21 -2
  220. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +35 -69
  221. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +8 -0
  222. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +8 -1
  223. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +1 -0
  224. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -1
  225. package/src/libs/feature/editor/src/lib/fields.config.ts +32 -2
  226. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +9 -0
  227. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +7 -7
  228. package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +26 -22
  229. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
  230. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
  231. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +2 -2
  232. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -2
  233. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +5 -1
  234. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
  235. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -1
  236. package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
  237. package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
  238. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
  239. package/src/libs/ui/elements/src/index.ts +1 -1
  240. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  241. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
  242. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
  243. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +5 -0
  244. package/src/libs/ui/inputs/src/index.ts +3 -0
  245. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +1 -1
  246. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +2 -1
  247. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +1 -1
  248. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +2 -1
  249. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +0 -1
  250. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -2
  251. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +1 -1
  252. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +1 -1
  253. package/src/libs/ui/layout/src/index.ts +2 -0
  254. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
  255. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
  256. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
  257. package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +13 -16
  258. package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
  259. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +9 -2
  260. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +5 -6
  261. package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
  262. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
  263. package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
  264. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
  265. package/tailwind.base.css +5 -0
  266. package/translations/de.json +15 -2
  267. package/translations/en.json +15 -2
  268. package/translations/es.json +13 -0
  269. package/translations/fr.json +16 -3
  270. package/translations/it.json +15 -2
  271. package/translations/nl.json +13 -0
  272. package/translations/pt.json +13 -0
  273. package/translations/sk.json +13 -0
  274. package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +0 -96
  275. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
  276. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
  277. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -39
  278. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +0 -27
  279. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +0 -1
  280. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
  281. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
  282. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
  283. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
  284. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -17
  285. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
  286. package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
  287. package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
  288. package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
  289. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -9
  290. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -113
  291. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
  292. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
  293. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
  294. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
  295. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -29
  296. /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → online-resource-card/online-resource-card.component.css} +0 -0
  297. /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → form-field-online-link-resources/form-field-online-link-resources.component.css} +0 -0
  298. /package/src/libs/{feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → ui/layout/src/lib/modal-dialog/modal-dialog.component.css} +0 -0
  299. /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
@@ -1,16 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core'
2
- import { FormControl } from '@angular/forms'
3
- import { DatePickerComponent } from '../../../../../../../../../../libs/ui/inputs/src'
4
- import { TranslateModule } from '@ngx-translate/core'
5
-
6
- @Component({
7
- selector: 'gn-ui-form-field-temporal-extents-date',
8
- templateUrl: './form-field-temporal-extents-date.component.html',
9
- styleUrls: ['./form-field-temporal-extents-date.component.css'],
10
- changeDetection: ChangeDetectionStrategy.OnPush,
11
- standalone: true,
12
- imports: [DatePickerComponent, TranslateModule],
13
- })
14
- export class FormFieldTemporalExtentsDateComponent {
15
- @Input() control!: FormControl
16
- }
@@ -1,13 +0,0 @@
1
- <div class="border rounded-lg px-4 pb-4">
2
- <p class="my-2" translate>editor.record.form.temporalExtents.range</p>
3
- <gn-ui-date-range-picker
4
- [startDate]="control.value?.start"
5
- [endDate]="control.value?.end"
6
- (startDateChange)="
7
- control.setValue({ start: $event, end: control.value?.end })
8
- "
9
- (endDateChange)="
10
- control.setValue({ start: control.value?.start, end: $event })
11
- "
12
- ></gn-ui-date-range-picker>
13
- </div>
@@ -1,16 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core'
2
- import { FormControl } from '@angular/forms'
3
- import { DateRangePickerComponent } from '../../../../../../../../../../libs/ui/inputs/src'
4
- import { TranslateModule } from '@ngx-translate/core'
5
-
6
- @Component({
7
- selector: 'gn-ui-form-field-temporal-extents-range',
8
- templateUrl: './form-field-temporal-extents-range.component.html',
9
- styleUrls: ['./form-field-temporal-extents-range.component.css'],
10
- changeDetection: ChangeDetectionStrategy.OnPush,
11
- standalone: true,
12
- imports: [DateRangePickerComponent, TranslateModule],
13
- })
14
- export class FormFieldTemporalExtentsRangeComponent {
15
- @Input() control!: FormControl
16
- }
@@ -1,29 +0,0 @@
1
- <div
2
- cdkDropList
3
- class="sortable-list flex flex-col gap-3 p-2"
4
- (cdkDropListDropped)="drop($event)"
5
- >
6
- <ng-container
7
- *ngFor="let element of elements; index as index; trackBy: trackByFn"
8
- >
9
- <div class="sortable-box bg-white flex items-center" cdkDrag>
10
- <span
11
- cdkDragHandle
12
- class="material-symbols-outlined mx-[10px] cursor-grab gn-ui-icon-medium flex-none"
13
- >
14
- drag_handle
15
- </span>
16
- <div class="flex-1">
17
- <ng-container
18
- *ngComponentOutlet="element.component; inputs: element.inputs"
19
- ></ng-container>
20
- </div>
21
- <span
22
- (click)="removeElement(index)"
23
- class="material-symbols-outlined mx-[10px] cursor-pointer gn-ui-icon-medium flex-none"
24
- >
25
- close
26
- </span>
27
- </div>
28
- </ng-container>
29
- </div>