geonetwork-ui 2.6.0-dev.0739ca76d → 2.6.0-dev.0cd426aa4

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 (725) hide show
  1. package/README.md +2 -3
  2. package/esm2022/libs/api/metadata-converter/src/index.mjs +2 -1
  3. package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +17 -15
  5. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +3 -3
  6. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +52 -13
  7. package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +3 -3
  8. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  9. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +6 -6
  10. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +3 -3
  11. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +5 -5
  12. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +4 -4
  13. package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +4 -4
  14. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +5 -2
  15. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +20 -18
  16. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +79 -16
  17. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +8 -8
  18. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +14 -11
  19. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +23 -13
  20. package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +2 -1
  21. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  22. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  23. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -31
  24. package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +9 -8
  25. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +47 -11
  26. package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +4 -5
  27. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +2 -2
  28. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +35 -3
  29. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +27 -8
  30. package/esm2022/libs/feature/editor/src/index.mjs +2 -4
  31. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +5 -7
  32. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +8 -13
  33. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +5 -6
  34. package/esm2022/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.mjs +274 -0
  35. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +4 -13
  36. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +5 -5
  37. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +5 -8
  38. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +4 -5
  39. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +6 -10
  40. 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 -14
  41. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +4 -15
  42. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +4 -4
  43. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +4 -4
  44. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +4 -4
  45. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +4 -4
  46. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +4 -4
  47. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +4 -4
  48. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +6 -17
  49. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +4 -5
  50. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +12 -30
  51. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +1 -3
  52. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +5 -6
  53. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +11 -8
  54. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +11 -8
  55. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +11 -6
  56. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +10 -5
  57. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +3 -36
  58. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +5 -11
  59. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +6 -6
  60. package/esm2022/libs/feature/record/src/index.mjs +2 -3
  61. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +20 -19
  62. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +6 -7
  63. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +5 -6
  64. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +6 -7
  65. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +7 -4
  66. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +8 -22
  67. package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +5 -5
  68. package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +15 -7
  69. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +96 -21
  70. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +3 -1
  71. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +7 -1
  72. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +13 -13
  73. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +7 -1
  74. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +3 -1
  75. package/esm2022/libs/feature/search/src/index.mjs +2 -2
  76. package/esm2022/libs/feature/search/src/lib/constants.mjs +4 -2
  77. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +4 -4
  78. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +32 -28
  79. package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +3 -3
  80. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +8 -6
  81. package/esm2022/libs/feature/search/src/lib/results-hits/results-hits.container.component.mjs +41 -0
  82. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +12 -8
  83. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +13 -10
  84. package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +5 -7
  85. package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +4 -4
  86. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +74 -4
  87. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +4 -3
  88. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +4 -5
  89. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +4 -5
  90. package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +4 -5
  91. package/esm2022/libs/ui/dataviz/src/index.mjs +1 -2
  92. package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +5 -3
  93. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.component.mjs +13 -8
  94. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -5
  95. package/esm2022/libs/ui/elements/src/index.mjs +4 -3
  96. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +7 -7
  97. package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +4 -3
  98. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +5 -6
  99. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +20 -9
  100. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +4 -5
  101. package/esm2022/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.mjs +54 -0
  102. package/esm2022/libs/ui/elements/src/lib/image-input/image-input.component.mjs +4 -5
  103. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +3 -3
  104. package/esm2022/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.mjs +42 -85
  105. package/esm2022/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.mjs +58 -0
  106. package/esm2022/libs/ui/elements/src/lib/kind-badge/kind-badge.component.mjs +65 -0
  107. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +5 -6
  108. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +3 -6
  109. package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +4 -5
  110. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +5 -6
  111. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +7 -8
  112. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +40 -17
  113. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +8 -5
  114. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +7 -5
  115. package/esm2022/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.mjs +71 -0
  116. package/esm2022/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.mjs +15 -6
  117. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +4 -5
  118. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +5 -4
  119. package/esm2022/libs/ui/inputs/src/index.mjs +3 -2
  120. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +6 -7
  121. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -2
  122. package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +4 -3
  123. package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +7 -6
  124. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +29 -7
  125. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +5 -6
  126. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +5 -7
  127. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.mjs +43 -0
  128. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.mjs +2 -0
  129. package/esm2022/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.mjs +73 -0
  130. package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +3 -3
  131. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +4 -5
  132. package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +3 -3
  133. package/esm2022/libs/ui/layout/src/index.mjs +3 -2
  134. package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +3 -2
  135. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +48 -11
  136. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +3 -3
  137. package/esm2022/libs/ui/layout/src/lib/cell-popin/cell-popin.component.mjs +110 -0
  138. package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +34 -13
  139. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +4 -5
  140. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +21 -12
  141. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +4 -5
  142. package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +4 -5
  143. package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +6 -6
  144. package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +4 -3
  145. package/esm2022/libs/ui/layout/src/lib/truncated-text/truncated-text.component.mjs +71 -0
  146. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +29 -4
  147. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +4 -5
  148. package/esm2022/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.mjs +2 -1
  149. package/esm2022/libs/ui/search/src/index.mjs +3 -1
  150. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +6 -6
  151. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +4 -8
  152. package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +3 -3
  153. package/esm2022/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.mjs +53 -0
  154. package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +2 -2
  155. package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +3 -3
  156. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +24 -17
  157. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +41 -21
  158. package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +39 -26
  159. package/esm2022/libs/ui/widgets/src/index.mjs +1 -2
  160. package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +3 -3
  161. package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +3 -3
  162. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +1 -3
  163. package/esm2022/libs/util/i18n/src/index.mjs +2 -3
  164. package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +3 -2
  165. package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +36 -28
  166. package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +10 -9
  167. package/esm2022/libs/util/i18n/src/lib/i18n.providers.mjs +41 -0
  168. package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +63 -3
  169. package/esm2022/libs/util/shared/src/index.mjs +1 -2
  170. package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +3 -2
  171. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +4 -1
  172. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +4 -1
  173. package/esm2022/translations/de.json +55 -24
  174. package/esm2022/translations/en.json +55 -24
  175. package/esm2022/translations/es.json +54 -23
  176. package/esm2022/translations/fr.json +56 -25
  177. package/esm2022/translations/it.json +81 -50
  178. package/esm2022/translations/nl.json +54 -23
  179. package/esm2022/translations/pt.json +54 -23
  180. package/esm2022/translations/sk.json +602 -0
  181. package/fesm2022/geonetwork-ui.mjs +11119 -9726
  182. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  183. package/libs/api/metadata-converter/src/index.d.ts +1 -0
  184. package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
  185. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
  186. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +21 -0
  187. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +1 -1
  188. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +4 -4
  189. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  190. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +0 -1
  191. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  192. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +1 -0
  193. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  194. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  195. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
  196. package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +1 -1
  197. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +9 -7
  198. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
  199. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +13 -2
  200. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  201. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +1 -0
  202. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  203. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +4 -4
  204. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  205. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +6 -3
  206. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  207. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +1 -0
  208. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +1 -1
  209. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +21 -15
  210. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  211. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +6 -0
  212. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  213. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +4 -8
  214. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  215. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +3 -3
  216. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -1
  217. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +12 -8
  218. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  219. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -1
  220. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +1 -0
  221. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  222. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +5 -2
  223. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  224. package/libs/feature/editor/src/index.d.ts +1 -3
  225. package/libs/feature/editor/src/index.d.ts.map +1 -1
  226. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +1 -1
  227. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  228. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +1 -1
  229. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -1
  230. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -1
  231. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts +52 -0
  232. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts.map +1 -0
  233. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -1
  234. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
  235. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +1 -1
  236. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -1
  237. 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
  238. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  239. 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 -1
  240. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -1
  241. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
  242. 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
  243. 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
  244. 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
  245. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  246. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +10 -17
  247. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  248. package/libs/feature/editor/src/lib/models/index.d.ts +0 -2
  249. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  250. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  251. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  252. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  253. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  254. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  255. package/libs/feature/map/src/lib/feature-map.module.d.ts +2 -11
  256. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  257. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
  258. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  259. package/libs/feature/record/src/index.d.ts +1 -2
  260. package/libs/feature/record/src/index.d.ts.map +1 -1
  261. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +7 -4
  262. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  263. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +2 -1
  264. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  265. package/libs/feature/record/src/lib/feature-record.module.d.ts +8 -12
  266. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  267. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +1 -1
  268. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +1 -1
  269. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +13 -6
  270. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  271. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +10 -0
  272. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  273. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +6 -0
  274. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  275. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +28 -21
  276. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  277. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +2 -0
  278. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  279. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +2 -0
  280. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  281. package/libs/feature/search/src/index.d.ts +1 -1
  282. package/libs/feature/search/src/index.d.ts.map +1 -1
  283. package/libs/feature/search/src/lib/constants.d.ts.map +1 -1
  284. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
  285. package/libs/feature/search/src/lib/feature-search.module.d.ts +24 -22
  286. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
  287. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +2 -1
  288. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
  289. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts +21 -0
  290. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts.map +1 -0
  291. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +1 -1
  292. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
  293. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +6 -5
  294. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  295. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +1 -2
  296. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +1 -1
  297. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +1 -1
  298. package/libs/feature/search/src/lib/utils/service/fields.d.ts +22 -2
  299. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  300. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  301. package/libs/ui/dataviz/src/index.d.ts +0 -1
  302. package/libs/ui/dataviz/src/index.d.ts.map +1 -1
  303. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +2 -1
  304. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -1
  305. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts +6 -1
  306. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts.map +1 -1
  307. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -1
  308. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
  309. package/libs/ui/elements/src/index.d.ts +3 -2
  310. package/libs/ui/elements/src/index.d.ts.map +1 -1
  311. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  312. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +1 -1
  313. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +1 -1
  314. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +1 -1
  315. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  316. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -1
  317. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  318. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts +15 -0
  319. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts.map +1 -0
  320. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts +7 -14
  321. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts.map +1 -1
  322. package/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.d.ts +14 -0
  323. package/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.d.ts.map +1 -0
  324. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts +13 -0
  325. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts.map +1 -0
  326. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +1 -1
  327. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  328. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  329. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
  330. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +3 -0
  331. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  332. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
  333. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  334. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts +27 -0
  335. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts.map +1 -0
  336. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts +1 -0
  337. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts.map +1 -1
  338. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +1 -1
  339. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -1
  340. package/libs/ui/inputs/src/index.d.ts +2 -1
  341. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  342. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  343. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  344. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +1 -1
  345. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +1 -1
  346. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +1 -1
  347. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +1 -1
  348. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +1 -1
  349. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -1
  350. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -1
  351. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts +14 -0
  352. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts.map +1 -0
  353. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts +6 -0
  354. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts.map +1 -0
  355. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts +17 -0
  356. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts.map +1 -0
  357. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +1 -1
  358. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +1 -1
  359. package/libs/ui/layout/src/index.d.ts +2 -1
  360. package/libs/ui/layout/src/index.d.ts.map +1 -1
  361. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +1 -1
  362. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -1
  363. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +9 -2
  364. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -1
  365. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts +28 -0
  366. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts.map +1 -0
  367. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +15 -8
  368. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -1
  369. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts +4 -2
  370. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +1 -1
  371. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +1 -1
  372. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +1 -1
  373. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts +22 -0
  374. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts.map +1 -0
  375. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +6 -2
  376. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
  377. package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts.map +1 -1
  378. package/libs/ui/search/src/index.d.ts +2 -0
  379. package/libs/ui/search/src/index.d.ts.map +1 -1
  380. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts +17 -0
  381. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts.map +1 -0
  382. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -1
  383. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +4 -3
  384. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -1
  385. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +10 -4
  386. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  387. package/libs/ui/search/src/lib/ui-search.module.d.ts +22 -19
  388. package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
  389. package/libs/ui/widgets/src/index.d.ts +0 -1
  390. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  391. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +1 -1
  392. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +1 -1
  393. package/libs/util/app-config/src/lib/app-config.d.ts +0 -1
  394. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
  395. package/libs/util/i18n/src/index.d.ts +1 -2
  396. package/libs/util/i18n/src/index.d.ts.map +1 -1
  397. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +1 -1
  398. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +1 -1
  399. package/libs/util/i18n/src/lib/i18n.constants.d.ts +6 -15
  400. package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -1
  401. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +5 -5
  402. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +1 -1
  403. package/libs/util/i18n/src/lib/i18n.providers.d.ts +4 -0
  404. package/libs/util/i18n/src/lib/i18n.providers.d.ts.map +1 -0
  405. package/libs/util/i18n/src/lib/language-codes.d.ts +15 -19
  406. package/libs/util/i18n/src/lib/language-codes.d.ts.map +1 -1
  407. package/libs/util/shared/src/index.d.ts +0 -1
  408. package/libs/util/shared/src/index.d.ts.map +1 -1
  409. package/libs/util/shared/src/lib/image-fallback.directive.d.ts +1 -1
  410. package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +1 -1
  411. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  412. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  413. package/package.json +4 -4
  414. package/src/libs/api/metadata-converter/src/index.ts +1 -0
  415. package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +1 -0
  416. package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +29 -15
  417. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +2 -2
  418. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
  419. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +73 -9
  420. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +4 -4
  421. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +0 -1
  422. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +11 -5
  423. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +2 -2
  424. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +10 -6
  425. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +3 -3
  426. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +3 -6
  427. package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +4 -1
  428. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +16 -8
  429. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +118 -16
  430. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +8 -7
  431. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +13 -6
  432. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +24 -20
  433. package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +3 -0
  434. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +22 -9
  435. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +6 -0
  436. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +10 -0
  437. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +14 -0
  438. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +62 -1
  439. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +4 -17
  440. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +7 -3
  441. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +12 -9
  442. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +56 -12
  443. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +2 -2
  444. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +40 -1
  445. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +1 -0
  446. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +29 -3
  447. package/src/libs/feature/editor/src/index.ts +1 -3
  448. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +3 -4
  449. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +5 -16
  450. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +7 -5
  451. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.html +120 -0
  452. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.ts +330 -0
  453. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +2 -10
  454. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +3 -2
  455. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +3 -4
  456. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +2 -2
  457. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +4 -11
  458. 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 -9
  459. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +2 -17
  460. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +2 -2
  461. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +2 -2
  462. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +2 -2
  463. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +2 -2
  464. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +2 -2
  465. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +2 -2
  466. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +2 -2
  467. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +2 -15
  468. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -2
  469. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +4 -17
  470. package/src/libs/feature/editor/src/lib/models/index.ts +0 -2
  471. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +2 -1
  472. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +8 -3
  473. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -3
  474. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +8 -2
  475. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +8 -2
  476. package/src/libs/feature/map/src/lib/feature-map.module.ts +0 -17
  477. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +3 -8
  478. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +3 -2
  479. package/src/libs/feature/record/src/index.ts +1 -2
  480. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +17 -11
  481. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +22 -19
  482. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +2 -2
  483. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +1 -1
  484. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +2 -2
  485. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +2 -2
  486. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +2 -2
  487. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +3 -2
  488. package/src/libs/feature/record/src/lib/feature-record.module.ts +4 -13
  489. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +4 -3
  490. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +10 -4
  491. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +38 -11
  492. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +135 -21
  493. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +10 -0
  494. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +22 -0
  495. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +22 -15
  496. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +12 -0
  497. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +9 -0
  498. package/src/libs/feature/search/src/index.ts +1 -1
  499. package/src/libs/feature/search/src/lib/constants.ts +3 -1
  500. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +2 -2
  501. package/src/libs/feature/search/src/lib/feature-search.module.ts +17 -15
  502. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
  503. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +5 -0
  504. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.css +0 -0
  505. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.html +16 -0
  506. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.ts +59 -0
  507. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +2 -0
  508. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
  509. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +13 -3
  510. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +10 -4
  511. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +2 -2
  512. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +4 -5
  513. package/src/libs/feature/search/src/lib/utils/service/fields.ts +103 -3
  514. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
  515. package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +2 -2
  516. package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +2 -2
  517. package/src/libs/ui/dataviz/src/index.ts +0 -1
  518. package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +2 -1
  519. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -3
  520. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +7 -6
  521. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +0 -1
  522. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +4 -0
  523. package/src/libs/ui/elements/src/index.ts +3 -2
  524. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +4 -4
  525. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +3 -2
  526. package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +3 -0
  527. package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +8 -5
  528. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  529. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +38 -7
  530. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +28 -4
  531. package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -2
  532. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.css +4 -0
  533. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.html +13 -0
  534. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.ts +54 -0
  535. package/src/libs/ui/elements/src/lib/image-input/image-input.component.ts +2 -2
  536. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  537. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +68 -141
  538. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +40 -101
  539. package/src/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.html +69 -0
  540. package/src/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.ts +61 -0
  541. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.css +6 -0
  542. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.html +11 -0
  543. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.ts +69 -0
  544. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +5 -2
  545. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +5 -9
  546. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -4
  547. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.html +3 -5
  548. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +2 -2
  549. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +12 -9
  550. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -2
  551. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +1 -1
  552. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +11 -3
  553. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +4 -7
  554. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +2 -3
  555. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +51 -13
  556. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +6 -2
  557. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -2
  558. package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.html +107 -0
  559. package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.ts +83 -0
  560. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.html +16 -2
  561. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +16 -3
  562. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +2 -2
  563. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +4 -0
  564. package/src/libs/ui/inputs/src/index.ts +2 -1
  565. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +1 -1
  566. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +2 -2
  567. package/src/libs/ui/inputs/src/lib/button/button.component.ts +2 -2
  568. package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.ts +3 -0
  569. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +1 -1
  570. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +4 -0
  571. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  572. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +27 -0
  573. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -1
  574. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +2 -2
  575. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +3 -4
  576. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.html +23 -0
  577. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.ts +47 -0
  578. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.ts +5 -0
  579. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.css +0 -0
  580. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.html +43 -0
  581. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.ts +83 -0
  582. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +3 -4
  583. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +2 -2
  584. package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +1 -0
  585. package/src/libs/ui/layout/src/index.ts +2 -1
  586. package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +1 -0
  587. package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +22 -0
  588. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +2 -2
  589. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +43 -5
  590. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +0 -1
  591. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +1 -1
  592. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.html +40 -0
  593. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.ts +141 -0
  594. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +24 -8
  595. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +36 -10
  596. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +2 -2
  597. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +3 -2
  598. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +15 -8
  599. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +1 -1
  600. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.ts +2 -2
  601. package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +2 -2
  602. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +17 -5
  603. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +3 -3
  604. package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +3 -0
  605. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.html +27 -0
  606. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.ts +84 -0
  607. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +3 -3
  608. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +27 -3
  609. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -2
  610. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +1 -0
  611. package/src/libs/ui/search/src/index.ts +2 -0
  612. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +4 -1
  613. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +9 -81
  614. package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +1 -1
  615. package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.html +25 -0
  616. package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.ts +53 -0
  617. package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +2 -2
  618. package/src/libs/ui/search/src/lib/results-list/results-list.component.html +1 -0
  619. package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +0 -1
  620. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +16 -6
  621. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +18 -15
  622. package/src/libs/ui/search/src/lib/results-table/results-table.component.css +4 -0
  623. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +31 -27
  624. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +46 -18
  625. package/src/libs/ui/search/src/lib/ui-search.module.ts +19 -10
  626. package/src/libs/ui/widgets/src/index.ts +0 -1
  627. package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.ts +1 -0
  628. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +2 -1
  629. package/src/libs/util/app-config/src/lib/app-config.ts +0 -2
  630. package/src/libs/util/i18n/src/index.ts +1 -2
  631. package/src/libs/util/i18n/src/lib/embedded.translate.loader.ts +4 -3
  632. package/src/libs/util/i18n/src/lib/i18n.constants.ts +39 -29
  633. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +11 -9
  634. package/src/libs/util/i18n/src/lib/i18n.providers.ts +68 -0
  635. package/src/libs/util/i18n/src/lib/language-codes.ts +67 -2
  636. package/src/libs/util/shared/src/index.ts +0 -1
  637. package/src/libs/util/shared/src/lib/image-fallback.directive.ts +1 -0
  638. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +3 -0
  639. package/src/libs/util/shared/src/lib/links/link-utils.ts +3 -0
  640. package/tailwind.base.config.js +3 -0
  641. package/tailwind.base.css +2 -14
  642. package/translations/de.json +55 -24
  643. package/translations/en.json +55 -24
  644. package/translations/es.json +54 -23
  645. package/translations/fr.json +56 -25
  646. package/translations/it.json +81 -50
  647. package/translations/nl.json +54 -23
  648. package/translations/pt.json +54 -23
  649. package/translations/sk.json +54 -23
  650. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +0 -44
  651. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +0 -75
  652. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +0 -160
  653. package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +0 -53
  654. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.model.mjs +0 -2
  655. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.type.mjs +0 -8
  656. package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +0 -87
  657. package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +0 -18
  658. package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +0 -47
  659. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +0 -46
  660. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +0 -118
  661. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +0 -161
  662. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +0 -31
  663. package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +0 -46
  664. package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +0 -31
  665. package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +0 -37
  666. package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +0 -18
  667. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +0 -14
  668. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +0 -1
  669. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts +0 -31
  670. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts.map +0 -1
  671. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +0 -43
  672. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +0 -1
  673. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +0 -17
  674. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +0 -1
  675. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts +0 -10
  676. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts.map +0 -1
  677. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts +0 -7
  678. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts.map +0 -1
  679. package/libs/feature/editor/src/lib/services/wizard.service.d.ts +0 -33
  680. package/libs/feature/editor/src/lib/services/wizard.service.d.ts.map +0 -1
  681. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts +0 -9
  682. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts.map +0 -1
  683. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +0 -11
  684. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +0 -1
  685. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +0 -12
  686. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +0 -1
  687. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +0 -29
  688. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +0 -1
  689. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +0 -34
  690. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +0 -1
  691. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +0 -12
  692. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +0 -1
  693. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +0 -15
  694. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +0 -1
  695. package/libs/util/i18n/src/lib/lang.service.d.ts +0 -13
  696. package/libs/util/i18n/src/lib/lang.service.d.ts.map +0 -1
  697. package/libs/util/i18n/src/lib/util-i18n.module.d.ts +0 -12
  698. package/libs/util/i18n/src/lib/util-i18n.module.d.ts.map +0 -1
  699. package/libs/util/shared/src/lib/util-shared.module.d.ts +0 -9
  700. package/libs/util/shared/src/lib/util-shared.module.d.ts.map +0 -1
  701. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.css +0 -5
  702. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +0 -22
  703. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts +0 -93
  704. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.css +0 -31
  705. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +0 -62
  706. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +0 -206
  707. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.css +0 -3
  708. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.html +0 -21
  709. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +0 -58
  710. package/src/libs/feature/editor/src/lib/models/wizard-field.model.ts +0 -10
  711. package/src/libs/feature/editor/src/lib/models/wizard-field.type.ts +0 -6
  712. package/src/libs/feature/editor/src/lib/services/wizard.service.ts +0 -105
  713. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.html +0 -4
  714. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts +0 -10
  715. package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +0 -27
  716. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +0 -30
  717. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +0 -48
  718. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +0 -67
  719. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -96
  720. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -18
  721. package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +0 -25
  722. package/src/libs/util/i18n/src/lib/lang.service.ts +0 -23
  723. package/src/libs/util/i18n/src/lib/util-i18n.module.ts +0 -26
  724. package/src/libs/util/shared/src/lib/util-shared.module.ts +0 -10
  725. /package/src/libs/{ui/elements/src/lib/related-record-card/related-record-card.component.css → feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.css} +0 -0
@@ -62,7 +62,10 @@
62
62
  {{ record.title }}
63
63
  </h1>
64
64
  <p class="line-clamp-3">
65
- <gn-ui-markdown-parser [textContent]="abstract" whitoutStyles="true" />
65
+ <gn-ui-markdown-parser
66
+ [textContent]="abstract"
67
+ [whitoutStyles]="true"
68
+ />
66
69
  </p>
67
70
  <gn-ui-thumbnail
68
71
  *ngIf="record.overviews?.[0]"
@@ -1,82 +1,10 @@
1
- <a
2
- class="group container-lg mx-auto flex cursor-pointer flex-wrap sm:flex-nowrap"
3
- [title]="record.title"
4
- [attr.href]="linkHref"
1
+ <gn-ui-internal-link-card
2
+ [linkHref]="linkHref"
3
+ [linkTarget]="linkTarget"
4
+ [record]="record"
5
+ [favoriteTemplate]="favoriteTemplate"
6
+ [metadataQualityDisplay]="metadataQualityDisplay"
7
+ (mdSelect)="mdSelect.emit($event)"
8
+ size="L"
5
9
  >
6
- <div class="shrink-0 w-full sm:w-52">
7
- <div
8
- class="overflow-hidden bg-gray-100 rounded-lg w-full border border-gray-300 h-36"
9
- >
10
- <gn-ui-thumbnail
11
- class="relative h-full w-full object-cover object-left-top"
12
- [thumbnailUrl]="[
13
- record.overviews?.[0]?.url?.toString(),
14
- organization?.logoUrl?.toString(),
15
- ]"
16
- [fit]="['cover', 'contain']"
17
- ></gn-ui-thumbnail>
18
- </div>
19
- </div>
20
- <div
21
- class="content grid grow relative sm:pl-6 sm:pr-12"
22
- style="grid-template-columns: auto 70px"
23
- >
24
- <div class="mb-3 mt-5 sm:mt-2">
25
- <div
26
- class="font-title text-21 text-title line-clamp-2 col-start-1 col-span-2 sm:line-clamp-1 group-hover:text-primary transition-colors"
27
- data-cy="recordTitle"
28
- >
29
- {{ record.title }}
30
- </div>
31
- </div>
32
- <div
33
- class="abstract mt-4 mb-5 h-36 line-clamp-6 col-start-1 col-span-2 row-start-3 sm:mb-2 sm:h-[4.5rem] sm:line-clamp-3 sm:row-start-2 sm:mt-0"
34
- data-cy="recordAbstract"
35
- >
36
- <gn-ui-markdown-parser
37
- [textContent]="abstract"
38
- whitoutStyles="true"
39
- ></gn-ui-markdown-parser>
40
- </div>
41
- <div
42
- class="text-primary opacity-45 uppercase col-start-1 col-span-2 row-start-2 sm:truncate sm:row-start-3 sm:col-span-1"
43
- data-cy="recordOrg"
44
- [class]="metadataQualityDisplay ? 'limit-organisation-with-quality' : ''"
45
- >
46
- {{ organization?.name }}
47
- </div>
48
- <div
49
- class="icons flex flex-row col-start-1 row-start-4 sm:col-start-2 sm:row-start-3 sm:absolute sm:right-[0.4em]"
50
- >
51
- <ng-icon
52
- *ngIf="isDownloadable"
53
- class="text-primary opacity-45 mx-1"
54
- name="matCloudDownloadOutline"
55
- ></ng-icon>
56
- <ng-icon
57
- *ngIf="isViewable"
58
- class="text-primary opacity-45 mx-1"
59
- name="matMapOutline"
60
- ></ng-icon>
61
- </div>
62
- <div
63
- *ngIf="metadataQualityDisplay"
64
- class="col-start-2 row-start-4 sm:row-start-3 absolute right-[4em] sm:right-[5em]"
65
- >
66
- <gn-ui-metadata-quality
67
- [smaller]="true"
68
- [metadata]="record"
69
- [metadataQualityDisplay]="metadataQualityDisplay"
70
- ></gn-ui-metadata-quality>
71
- </div>
72
- <div
73
- class="text-right col-start-3 row-start-4 sm:absolute sm:col-start-2 sm:row-start-1 sm:top-[-1.125em] sm:right-[0.4em]"
74
- data-cy="recordFav"
75
- >
76
- <ng-container
77
- [ngTemplateOutlet]="favoriteTemplate"
78
- [ngTemplateOutletContext]="{ $implicit: record }"
79
- ></ng-container>
80
- </div>
81
- </div>
82
- </a>
10
+ </gn-ui-internal-link-card>
@@ -1,5 +1,5 @@
1
1
  <div *ngIf="!loading" class="w-full">
2
- <span translate [translateParams]="{ hits: hits }"
2
+ <span data-cy="resultsHitsFound" translate [translateParams]="{ hits: hits }"
3
3
  >results.records.hits.found</span
4
4
  >
5
5
  <p
@@ -0,0 +1,25 @@
1
+ <gn-ui-inline-filter
2
+ [choices]="availableChoices"
3
+ [selected]="selected"
4
+ (selectValues)="onSelectedValues($event)"
5
+ >
6
+ <ng-template let-choice>
7
+ <gn-ui-kind-badge
8
+ [styling]="'custom'"
9
+ [kind]="choice.value"
10
+ [contentTemplate]="customTemplate"
11
+ class="gn-ui-btn-outline rounded-md py-2 px-2 border-gray-400 cursor-pointer focus-within:text-primary-darkest focus-within:bg-gray-50 transition-colors bg-transparent hover:text-primary-darker focus:text-primary-darker active:text-primary-black"
12
+ [ngClass]="{
13
+ '!bg-primary-lightest hover:bg-primary-lightest':
14
+ isSelectedChoice(choice.value) || isAllChoice(choice.value),
15
+ }"
16
+ >
17
+ <ng-template #customTemplate>
18
+ {{ 'search.filters.recordKind.' + choice.value | translate
19
+ }}<span class="ml-1" *ngIf="isSelectedChoice(choice.value)"
20
+ >({{ choice.count }})</span
21
+ >
22
+ </ng-template>
23
+ </gn-ui-kind-badge>
24
+ </ng-template>
25
+ </gn-ui-inline-filter>
@@ -0,0 +1,53 @@
1
+ import {
2
+ Component,
3
+ EventEmitter,
4
+ Input,
5
+ OnChanges,
6
+ SimpleChanges,
7
+ Output,
8
+ } from '@angular/core'
9
+ import { Choice } from '../../../../../../libs/ui/inputs/src'
10
+
11
+ @Component({
12
+ selector: 'gn-ui-results-hits-search-kind',
13
+ templateUrl: './results-hits-search-kind.component.html',
14
+ })
15
+ export class ResultsHitsSearchKindComponent implements OnChanges {
16
+ @Input() selected: string[] = []
17
+ @Input() choices: Choice[] = []
18
+ @Output() selectionChanged = new EventEmitter<string[]>()
19
+
20
+ availableChoices: Choice[] = []
21
+
22
+ ngOnChanges(changes: SimpleChanges) {
23
+ if (changes.choices && changes.choices.currentValue) {
24
+ this.availableChoices = this.buildFilterChoices(this.choices)
25
+ }
26
+ }
27
+
28
+ buildFilterChoices(availableValues: Choice[]) {
29
+ return [
30
+ ...[
31
+ {
32
+ label: 'all',
33
+ value: 'all',
34
+ },
35
+ ],
36
+ ...availableValues,
37
+ ]
38
+ }
39
+
40
+ onSelectedValues(values: string[]) {
41
+ const selectedValues = values.includes('all') ? [] : values
42
+
43
+ this.selectionChanged.emit(selectedValues)
44
+ }
45
+
46
+ isSelectedChoice(choiceValue: string) {
47
+ return this.selected.includes(choiceValue)
48
+ }
49
+
50
+ isAllChoice(choiceValue: string) {
51
+ return this.selected.length === 0 && choiceValue === 'all'
52
+ }
53
+ }
@@ -32,9 +32,9 @@ export const DEFAULT_RESULTS_LAYOUT_CONFIG: ResultsLayoutConfigModel = {
32
32
  ),
33
33
  ROW: new ResultsLayoutConfigItem(
34
34
  RecordPreviewRowComponent,
35
- 'pt-4 pb-5 sm:py-7',
35
+ 'py-2',
36
36
  '',
37
- 'grid grid-cols-1 divide-y divide-gray-300'
37
+ 'grid grid-cols-1 divide-y divide-gray-100'
38
38
  ),
39
39
  FEED: new ResultsLayoutConfigItem(
40
40
  RecordPreviewFeedComponent,
@@ -6,6 +6,7 @@
6
6
  *ngFor="let record of records"
7
7
  >
8
8
  <gn-ui-results-list-item
9
+ [attr.data-cy]="record.uniqueIdentifier"
9
10
  [record]="record"
10
11
  [layoutConfig]="layoutConfig"
11
12
  [metadataQualityDisplay]="metadataQualityDisplay"
@@ -3,7 +3,6 @@ import {
3
3
  Component,
4
4
  EventEmitter,
5
5
  Input,
6
- OnInit,
7
6
  Output,
8
7
  TemplateRef,
9
8
  } from '@angular/core'
@@ -6,17 +6,27 @@
6
6
  >
7
7
  <ul class="flex flex-col gap-2 w-full">
8
8
  <gn-ui-button
9
- *ngIf="!isDraftPage"
9
+ *ngIf="page === 'main'"
10
10
  type="light"
11
11
  extraClass="flex flex-row items-center gap-2 w-full justify-start"
12
12
  (buttonClick)="duplicate.emit()"
13
13
  [disabled]="!canDuplicate"
14
14
  data-test="record-menu-duplicate-button"
15
15
  >
16
- <span *ngIf="canDuplicate" translate>record.action.duplicate</span>
17
- <span *ngIf="!canDuplicate" translate
16
+ <span *ngIf="isDuplicating; else notDuplicating" translate
18
17
  >record.action.duplicating</span
19
- ></gn-ui-button
18
+ >
19
+ <ng-template #notDuplicating>
20
+ <span translate>record.action.duplicate</span>
21
+ </ng-template>
22
+ </gn-ui-button>
23
+ <gn-ui-button
24
+ *ngIf="page === 'record'"
25
+ type="light"
26
+ extraClass="flex flex-row items-center gap-2 w-full justify-start"
27
+ (buttonClick)="switch.emit()"
28
+ data-test="record-menu-switch-button"
29
+ ><span translate>record.action.switchLang</span></gn-ui-button
20
30
  >
21
31
  <gn-ui-button
22
32
  type="light"
@@ -24,8 +34,8 @@
24
34
  (buttonClick)="displayDeleteMenu()"
25
35
  [disabled]="!canDelete"
26
36
  data-test="record-menu-delete-button"
27
- ><span *ngIf="!isDraftPage" translate>record.action.delete</span>
28
- <span *ngIf="isDraftPage" translate
37
+ ><span *ngIf="page !== 'draft'" translate>record.action.delete</span>
38
+ <span *ngIf="page === 'draft'" translate
29
39
  >record.action.rollback</span
30
40
  ></gn-ui-button
31
41
  >
@@ -9,9 +9,8 @@ import {
9
9
  } from '@angular/core'
10
10
  import { MatDialog, MatDialogModule } from '@angular/material/dialog'
11
11
  import { MatMenuModule, MatMenuTrigger } from '@angular/material/menu'
12
- import { ConfirmationDialogComponent } from '../../../../../../../libs/ui/elements/src'
13
12
  import { ButtonComponent } from '../../../../../../../libs/ui/inputs/src'
14
- import { TranslateModule } from '@ngx-translate/core'
13
+ import { TranslateDirective, TranslatePipe } from '@ngx-translate/core'
15
14
 
16
15
  type ActionMenuPage = 'mainMenu' | 'deleteMenu' | 'rollbackMenu'
17
16
 
@@ -25,18 +24,20 @@ type ActionMenuPage = 'mainMenu' | 'deleteMenu' | 'rollbackMenu'
25
24
  ButtonComponent,
26
25
  MatMenuModule,
27
26
  MatDialogModule,
28
- ConfirmationDialogComponent,
29
- TranslateModule,
27
+ TranslateDirective,
28
+ TranslatePipe,
30
29
  ],
31
30
  })
32
31
  export class ActionMenuComponent {
33
- @Input() canDuplicate: boolean
34
- @Input() canDelete: boolean
35
- @Input() isDraftPage: boolean
32
+ @Input() canDuplicate = true
33
+ @Input() isDuplicating: boolean
34
+ @Input() canDelete = true
35
+ @Input() page: 'draft' | 'main' | 'record'
36
36
  @Output() duplicate = new EventEmitter<void>()
37
37
  @Output() delete = new EventEmitter<void>()
38
38
  @Output() closeActionMenu = new EventEmitter<void>()
39
39
  @Output() rollback = new EventEmitter<void>()
40
+ @Output() switch = new EventEmitter<void>()
40
41
 
41
42
  @ViewChild(MatMenuTrigger) trigger: MatMenuTrigger
42
43
 
@@ -47,20 +48,22 @@ export class ActionMenuComponent {
47
48
  private cdr: ChangeDetectorRef
48
49
  ) {}
49
50
 
50
- openMenu() {
51
- this.trigger.openMenu()
52
- }
53
-
54
51
  displayMainMenu() {
55
52
  this.sectionDisplayed = 'mainMenu'
56
53
  this.cdr.markForCheck()
57
54
  }
58
55
 
59
56
  displayDeleteMenu() {
60
- if (this.isDraftPage) {
61
- this.sectionDisplayed = 'rollbackMenu'
62
- } else {
63
- this.sectionDisplayed = 'deleteMenu'
57
+ switch (this.page) {
58
+ case 'draft':
59
+ this.sectionDisplayed = 'rollbackMenu'
60
+ break
61
+ case 'record':
62
+ this.delete.emit()
63
+ break
64
+ case 'main':
65
+ default:
66
+ this.sectionDisplayed = 'deleteMenu'
64
67
  }
65
68
  this.cdr.markForCheck()
66
69
  }
@@ -0,0 +1,4 @@
1
+ :host {
2
+ --gn-ui-button-height: 40px;
3
+ --gn-ui-button-width: 40px;
4
+ }
@@ -1,5 +1,6 @@
1
1
  <gn-ui-interactive-table
2
2
  [items]="records"
3
+ [canEditItem]="canEdit"
3
4
  [isDraftPage]="isDraftPage"
4
5
  (itemClick)="handleRecordClick($event)"
5
6
  >
@@ -9,15 +10,16 @@
9
10
  <ng-icon
10
11
  name="iconoirLock"
11
12
  class="text-purple"
12
- *ngIf="(!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'"
13
+ *ngIf="(canEdit(item) | async) === false; else selectCheckbox"
13
14
  ></ng-icon>
14
- <gn-ui-checkbox
15
- *ngIf="(item.extras?.edit || isDraftPage) && item.kind === 'dataset'"
16
- [checked]="isChecked(item)"
17
- (changed)="handleRecordSelectedChange($event, item)"
18
- class="-m-2"
19
- type="default"
20
- ></gn-ui-checkbox>
15
+ <ng-template #selectCheckbox>
16
+ <gn-ui-checkbox
17
+ [checked]="isChecked(item)"
18
+ (changed)="handleRecordSelectedChange($event, item)"
19
+ class="-m-2"
20
+ type="default"
21
+ ></gn-ui-checkbox>
22
+ </ng-template>
21
23
  </ng-template>
22
24
  </gn-ui-interactive-table-column>
23
25
 
@@ -143,29 +145,31 @@
143
145
  <gn-ui-interactive-table-column>
144
146
  <ng-template #header> </ng-template>
145
147
  <ng-template #cell let-item>
146
- <gn-ui-button
147
- cdkOverlayOrigin
148
- #actionMenuButton
149
- (buttonClick)="openActionMenu(item, template)"
150
- type="light"
151
- data-test="record-menu-button"
152
- [disabled]="
153
- (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'
154
- "
155
- >
148
+ <div class="flex justify-end items-center gap-4 w-full">
149
+ <!-- IS MULTILINGUAL -->
156
150
  <ng-icon
157
- [ngClass]="{
158
- 'text-purple-light':
159
- (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset',
160
- }"
161
- name="matMoreVert"
151
+ *ngIf="isMultilingual(item)"
152
+ data-cy="multilingual-indicator"
153
+ name="iconoirTranslate"
154
+ [attr.title]="getTxtHoverMultilingual(item)"
162
155
  ></ng-icon>
163
- </gn-ui-button>
156
+ <!-- MORE ACTIONS MENU BUTTON -->
157
+ <gn-ui-button
158
+ cdkOverlayOrigin
159
+ #actionMenuButton
160
+ (buttonClick)="openActionMenu(item, template)"
161
+ type="light"
162
+ data-test="record-menu-button"
163
+ >
164
+ <ng-icon name="matMoreVert"></ng-icon>
165
+ </gn-ui-button>
166
+ </div>
164
167
  <ng-template #template>
165
168
  <gn-ui-action-menu
166
- [canDuplicate]="canDuplicate(item) && !isDuplicating"
167
- [canDelete]="canDelete(item)"
168
- [isDraftPage]="isDraftPage"
169
+ [canDuplicate]="canDuplicate(item)"
170
+ [isDuplicating]="isDuplicating"
171
+ [canDelete]="canDelete(item) | async"
172
+ [page]="isDraftPage ? 'draft' : 'main'"
169
173
  (duplicate)="handleDuplicate(item)"
170
174
  (delete)="handleDelete(item)"
171
175
  (closeActionMenu)="closeActionMenu()"
@@ -15,7 +15,11 @@ import {
15
15
  FieldSort,
16
16
  SortByField,
17
17
  } from '../../../../../../libs/common/domain/src/lib/model/search'
18
- import { BadgeComponent, UiInputsModule } from '../../../../../../libs/ui/inputs/src'
18
+ import {
19
+ BadgeComponent,
20
+ ButtonComponent,
21
+ CheckboxComponent,
22
+ } from '../../../../../../libs/ui/inputs/src'
19
23
  import {
20
24
  InteractiveTableColumnComponent,
21
25
  InteractiveTableComponent,
@@ -28,18 +32,18 @@ import {
28
32
  getFileFormat,
29
33
  getFormatPriority,
30
34
  } from '../../../../../../libs/util/shared/src'
31
- import { TranslateModule } from '@ngx-translate/core'
35
+ import {
36
+ TranslateDirective,
37
+ TranslatePipe,
38
+ TranslateService,
39
+ } from '@ngx-translate/core'
32
40
  import { ActionMenuComponent } from './action-menu/action-menu.component'
33
41
  import { NgIconComponent, provideIcons } from '@ng-icons/core'
34
- import { iconoirUser, iconoirLock } from '@ng-icons/iconoir'
35
- import {
36
- CdkConnectedOverlay,
37
- CdkOverlayOrigin,
38
- Overlay,
39
- OverlayRef,
40
- } from '@angular/cdk/overlay'
42
+ import { iconoirLock, iconoirTranslate, iconoirUser } from '@ng-icons/iconoir'
43
+ import { CdkOverlayOrigin, Overlay, OverlayRef } from '@angular/cdk/overlay'
41
44
  import { TemplatePortal } from '@angular/cdk/portal'
42
45
  import { matMoreVert } from '@ng-icons/material-icons/baseline'
46
+ import { Observable, of, take } from 'rxjs'
43
47
 
44
48
  @Component({
45
49
  selector: 'gn-ui-results-table',
@@ -48,16 +52,20 @@ import { matMoreVert } from '@ng-icons/material-icons/baseline'
48
52
  standalone: true,
49
53
  imports: [
50
54
  CommonModule,
51
- UiInputsModule,
52
55
  InteractiveTableComponent,
53
56
  InteractiveTableColumnComponent,
54
- TranslateModule,
57
+ TranslateDirective,
58
+ TranslatePipe,
55
59
  BadgeComponent,
56
60
  ActionMenuComponent,
57
61
  NgIconComponent,
58
62
  CdkOverlayOrigin,
63
+ CheckboxComponent,
64
+ ButtonComponent,
65
+ ],
66
+ providers: [
67
+ provideIcons({ iconoirUser, iconoirLock, iconoirTranslate, matMoreVert }),
59
68
  ],
60
- providers: [provideIcons({ iconoirUser, iconoirLock, matMoreVert })],
61
69
  })
62
70
  export class ResultsTableComponent {
63
71
  @Input() records: CatalogRecord[] = []
@@ -65,7 +73,10 @@ export class ResultsTableComponent {
65
73
  @Input() sortOrder: SortByField = null
66
74
  @Input() hasDraft: (record: CatalogRecord) => boolean = () => false
67
75
  @Input() canDuplicate: (record: CatalogRecord) => boolean = () => true
68
- @Input() canDelete: (record: CatalogRecord) => boolean = () => true
76
+ @Input() canDelete: (record: CatalogRecord) => Observable<boolean> = () =>
77
+ of(true)
78
+ @Input() canEdit: (record: CatalogRecord) => Observable<boolean> = () =>
79
+ of(true)
69
80
  @Input() isDraftPage = false
70
81
  @Input() isDuplicating = false
71
82
 
@@ -89,7 +100,8 @@ export class ResultsTableComponent {
89
100
  private overlay: Overlay,
90
101
  private viewContainerRef: ViewContainerRef,
91
102
  private cdr: ChangeDetectorRef,
92
- private dateService: DateService
103
+ private dateService: DateService,
104
+ private translateService: TranslateService
93
105
  ) {}
94
106
 
95
107
  openActionMenu(item, template) {
@@ -173,10 +185,14 @@ export class ResultsTableComponent {
173
185
  return getBadgeColor(format)
174
186
  }
175
187
 
176
- handleRecordClick(item: CatalogRecord) {
177
- if ((item?.extras?.edit || this.isDraftPage) && item.kind === 'dataset') {
178
- this.recordClick.emit(item as CatalogRecord)
179
- }
188
+ handleRecordClick(item: unknown) {
189
+ this.canEdit(item as CatalogRecord)
190
+ .pipe(take(1))
191
+ .subscribe((canEdit) => {
192
+ if (canEdit) {
193
+ this.recordClick.emit(item as CatalogRecord)
194
+ }
195
+ })
180
196
  }
181
197
 
182
198
  handleDuplicate(item: unknown) {
@@ -219,4 +235,16 @@ export class ResultsTableComponent {
219
235
  handleRecordSelectedChange(selected: boolean, record: CatalogRecord) {
220
236
  this.recordsSelectedChange.emit([[record], selected])
221
237
  }
238
+
239
+ isMultilingual(record: CatalogRecord): boolean {
240
+ return record.otherLanguages.length > 0
241
+ }
242
+
243
+ getTxtHoverMultilingual(record: CatalogRecord) {
244
+ return this.translateService.instant('dashboard.records.isMultilingual', {
245
+ languages: [...[record.defaultLanguage], ...record.otherLanguages].join(
246
+ ', '
247
+ ),
248
+ })
249
+ }
222
250
  }
@@ -1,7 +1,6 @@
1
1
  import { NgModule } from '@angular/core'
2
2
  import { RouterLink } from '@angular/router'
3
- import { UtilSharedModule } from '../../../../../libs/util/shared/src'
4
- import { TranslateModule } from '@ngx-translate/core'
3
+ import { TranslateDirective, TranslatePipe } from '@ngx-translate/core'
5
4
  import { NgxDropzoneModule } from 'ngx-dropzone'
6
5
  import { FacetsModule } from './facets/facets.module'
7
6
  import { RecordMetricComponent } from './record-metric/record-metric.component'
@@ -11,6 +10,7 @@ import { RecordPreviewRowComponent } from './record-preview-row/record-preview-r
11
10
  import { RecordPreviewTextComponent } from './record-preview-text/record-preview-text.component'
12
11
  import { RecordPreviewTitleComponent } from './record-preview-title/record-preview-title.component'
13
12
  import { ResultsHitsNumberComponent } from './results-hits-number/results-hits-number.component'
13
+ import { ResultsHitsSearchKindComponent } from './results-hits-search-kind/results-hits-search-kind.component'
14
14
  import {
15
15
  DEFAULT_RESULTS_LAYOUT_CONFIG,
16
16
  RESULTS_LAYOUT_CONFIG,
@@ -20,14 +20,15 @@ import { RecordPreviewComponent } from './record-preview/record-preview.componen
20
20
  import { TagInputModule } from 'ngx-chips'
21
21
  import { FormsModule, ReactiveFormsModule } from '@angular/forms'
22
22
  import { ResultsListItemComponent } from './results-list-item/results-list-item.component'
23
- import { UiWidgetsModule } from '../../../../../libs/ui/widgets/src'
24
23
  import {
24
+ InternalLinkCardComponent,
25
+ KindBadgeComponent,
26
+ MarkdownParserComponent,
25
27
  MetadataQualityComponent,
26
- UiElementsModule,
28
+ ThumbnailComponent,
27
29
  } from '../../../../../libs/ui/elements/src'
28
30
  import { RecordPreviewFeedComponent } from './record-preview-feed/record-preview-feed.component'
29
31
  import { CommonModule } from '@angular/common'
30
- import { UiInputsModule } from '../../../../../libs/ui/inputs/src'
31
32
  import { MatCheckboxModule } from '@angular/material/checkbox'
32
33
  import { InteractiveTableComponent } from '../../../../../libs/ui/layout/src'
33
34
  import { NgIconsModule, provideNgIconsConfig } from '@ng-icons/core'
@@ -37,6 +38,8 @@ import {
37
38
  matMapOutline,
38
39
  } from '@ng-icons/material-icons/outline'
39
40
  import { matFace } from '@ng-icons/material-icons/baseline'
41
+ import { InlineFilterComponent } from '../../../../../libs/ui/inputs/src'
42
+ import { ActionMenuComponent } from './results-table/action-menu/action-menu.component'
40
43
 
41
44
  @NgModule({
42
45
  declarations: [
@@ -48,22 +51,20 @@ import { matFace } from '@ng-icons/material-icons/baseline'
48
51
  RecordMetricComponent,
49
52
  ResultsListComponent,
50
53
  ResultsHitsNumberComponent,
54
+ ResultsHitsSearchKindComponent,
51
55
  ResultsListItemComponent,
52
56
  RecordPreviewFeedComponent,
53
57
  RecordPreviewRowComponent,
54
58
  ],
55
59
  imports: [
56
60
  CommonModule,
57
- TranslateModule.forChild(),
61
+ TranslateDirective,
62
+ TranslatePipe,
58
63
  NgxDropzoneModule,
59
64
  FacetsModule,
60
65
  FormsModule,
61
66
  ReactiveFormsModule,
62
67
  TagInputModule,
63
- UtilSharedModule,
64
- UiWidgetsModule,
65
- UiInputsModule,
66
- UiElementsModule,
67
68
  MatCheckboxModule,
68
69
  RouterLink,
69
70
  InteractiveTableComponent,
@@ -74,7 +75,13 @@ import { matFace } from '@ng-icons/material-icons/baseline'
74
75
  matFace,
75
76
  matHomeWorkOutline,
76
77
  }),
78
+ KindBadgeComponent,
77
79
  MetadataQualityComponent,
80
+ InlineFilterComponent,
81
+ ThumbnailComponent,
82
+ MarkdownParserComponent,
83
+ InternalLinkCardComponent,
84
+ ActionMenuComponent,
78
85
  ],
79
86
  exports: [
80
87
  RecordPreviewListComponent,
@@ -86,8 +93,10 @@ import { matFace } from '@ng-icons/material-icons/baseline'
86
93
  FacetsModule,
87
94
  RecordPreviewComponent,
88
95
  ResultsHitsNumberComponent,
96
+ ResultsHitsSearchKindComponent,
89
97
  RecordPreviewFeedComponent,
90
98
  RecordPreviewRowComponent,
99
+ ActionMenuComponent,
91
100
  ],
92
101
  providers: [
93
102
  provideNgIconsConfig({
@@ -1,4 +1,3 @@
1
- export * from './lib/ui-widgets.module'
2
1
  export * from './lib/progress-bar/progress-bar.component'
3
2
  export * from './lib/popover/popover.component'
4
3
  export * from './lib/loading-mask/loading-mask.component'
@@ -4,5 +4,6 @@ import { Component } from '@angular/core'
4
4
  selector: 'gn-ui-color-scale',
5
5
  templateUrl: './color-scale.component.html',
6
6
  styleUrls: ['./color-scale.component.css'],
7
+ standalone: true,
7
8
  })
8
9
  export class ColorScaleComponent {}
@@ -3,8 +3,9 @@
3
3
  <ng-container *ngSwitchCase="'light'">
4
4
  <div class="flex items-center relative">
5
5
  <div
6
- class="flex-shrink-0 {{ color.text }} text-xs font-medium mr-2
6
+ class="flex-shrink-0 {{ color.text }} font-medium mr-2
7
7
  text-opacity-100 !text-slate-800"
8
+ data-cy="progressPercentage"
8
9
  >
9
10
  {{ progress }}%
10
11
  </div>