geonetwork-ui 2.6.0-dev.4fa0a0afc → 2.6.0-dev.5257edce4

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 (847) 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/base.converter.mjs +1 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
  5. package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +17 -15
  6. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +11 -2
  7. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +3 -3
  8. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +59 -15
  9. package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +3 -3
  10. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  11. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +6 -6
  12. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +3 -3
  13. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +14 -6
  14. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +7 -7
  15. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +8 -8
  16. package/esm2022/libs/api/metadata-converter/src/lib/translate-utils.mjs +17 -0
  17. package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +4 -4
  18. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +5 -2
  19. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +21 -27
  20. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +79 -16
  21. package/esm2022/libs/api/repository/src/lib/gn4/gn4.provider.mjs +7 -1
  22. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +8 -8
  23. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +14 -11
  24. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +23 -13
  25. package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +2 -1
  26. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  27. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  28. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -31
  29. package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +9 -8
  30. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +51 -11
  31. package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +4 -5
  32. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +2 -2
  33. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +35 -3
  34. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +31 -8
  35. package/esm2022/libs/feature/editor/src/index.mjs +2 -4
  36. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +2 -1
  37. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +13 -7
  38. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +4 -1
  39. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +5 -1
  40. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +5 -7
  41. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +8 -13
  42. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +5 -6
  43. package/esm2022/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.mjs +275 -0
  44. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +5 -15
  45. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +5 -5
  46. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +5 -8
  47. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +4 -5
  48. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +6 -10
  49. 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
  50. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +4 -15
  51. 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
  52. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +4 -4
  53. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +4 -4
  54. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +7 -7
  55. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +4 -4
  56. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +4 -4
  57. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +6 -17
  58. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +4 -5
  59. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +12 -30
  60. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +1 -3
  61. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +5 -6
  62. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +11 -8
  63. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +11 -8
  64. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +11 -6
  65. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +10 -5
  66. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +3 -36
  67. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +5 -11
  68. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +6 -6
  69. package/esm2022/libs/feature/record/src/index.mjs +2 -4
  70. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +20 -19
  71. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +10 -15
  72. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +5 -6
  73. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +12 -17
  74. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +7 -4
  75. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +8 -22
  76. package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +5 -5
  77. package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +15 -7
  78. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +101 -21
  79. package/esm2022/libs/feature/record/src/lib/record-meta/record-meta.component.mjs +1 -1
  80. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +3 -1
  81. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +14 -5
  82. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +13 -15
  83. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +7 -1
  84. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +3 -1
  85. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +3 -1
  86. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +1 -1
  87. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +10 -2
  88. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +9 -3
  89. package/esm2022/libs/feature/search/src/index.mjs +2 -2
  90. package/esm2022/libs/feature/search/src/lib/constants.mjs +4 -2
  91. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +12 -8
  92. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +33 -42
  93. package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +3 -3
  94. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +8 -6
  95. package/esm2022/libs/feature/search/src/lib/record-url.token.mjs +4 -2
  96. package/esm2022/libs/feature/search/src/lib/results-hits/results-hits.container.component.mjs +41 -0
  97. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +35 -15
  98. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +13 -10
  99. package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +5 -7
  100. package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +4 -4
  101. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +74 -4
  102. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +4 -3
  103. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +3 -3
  104. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +4 -5
  105. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +4 -5
  106. package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +4 -5
  107. package/esm2022/libs/ui/dataviz/src/index.mjs +1 -2
  108. package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +5 -3
  109. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.component.mjs +13 -8
  110. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -5
  111. package/esm2022/libs/ui/elements/src/index.mjs +6 -3
  112. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +7 -7
  113. package/esm2022/libs/ui/elements/src/lib/application-banner/application-banner.component.mjs +5 -5
  114. package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +4 -3
  115. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +5 -3
  116. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +5 -6
  117. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +20 -9
  118. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +4 -5
  119. package/esm2022/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.mjs +54 -0
  120. package/esm2022/libs/ui/elements/src/lib/image-input/image-input.component.mjs +4 -5
  121. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +3 -3
  122. package/esm2022/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.mjs +120 -0
  123. package/esm2022/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.mjs +58 -0
  124. package/esm2022/libs/ui/elements/src/lib/kind-badge/kind-badge.component.mjs +65 -0
  125. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +5 -6
  126. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +3 -6
  127. package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +4 -5
  128. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +5 -6
  129. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +10 -8
  130. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +40 -17
  131. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +8 -5
  132. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +7 -5
  133. package/esm2022/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.mjs +71 -0
  134. package/esm2022/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.mjs +170 -0
  135. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +4 -5
  136. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +5 -4
  137. package/esm2022/libs/ui/inputs/src/index.mjs +3 -3
  138. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +10 -13
  139. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -2
  140. package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +4 -3
  141. package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +7 -6
  142. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +29 -7
  143. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +5 -6
  144. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +5 -7
  145. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.mjs +43 -0
  146. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.mjs +2 -0
  147. package/esm2022/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.mjs +73 -0
  148. package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +8 -3
  149. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +4 -5
  150. package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +3 -3
  151. package/esm2022/libs/ui/layout/src/index.mjs +3 -2
  152. package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +44 -3
  153. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +48 -11
  154. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +3 -3
  155. package/esm2022/libs/ui/layout/src/lib/cell-popin/cell-popin.component.mjs +110 -0
  156. package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +34 -13
  157. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +4 -5
  158. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +26 -5
  159. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +4 -5
  160. package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +4 -5
  161. package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +6 -6
  162. package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +4 -3
  163. package/esm2022/libs/ui/layout/src/lib/truncated-text/truncated-text.component.mjs +71 -0
  164. package/esm2022/libs/ui/map/src/index.mjs +2 -1
  165. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +29 -4
  166. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +4 -5
  167. package/esm2022/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.mjs +80 -0
  168. package/esm2022/libs/ui/search/src/index.mjs +3 -1
  169. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +6 -6
  170. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +4 -8
  171. package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +3 -3
  172. package/esm2022/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.mjs +53 -0
  173. package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +2 -2
  174. package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +3 -3
  175. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +24 -17
  176. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +45 -20
  177. package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +39 -26
  178. package/esm2022/libs/ui/widgets/src/index.mjs +1 -2
  179. package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +3 -3
  180. package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +3 -3
  181. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +2 -3
  182. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +2 -1
  183. package/esm2022/libs/util/i18n/src/index.mjs +2 -3
  184. package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +3 -2
  185. package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +36 -28
  186. package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +10 -9
  187. package/esm2022/libs/util/i18n/src/lib/i18n.providers.mjs +41 -0
  188. package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +63 -3
  189. package/esm2022/libs/util/shared/src/index.mjs +3 -2
  190. package/esm2022/libs/util/shared/src/lib/gn-ui-version.mjs +6 -0
  191. package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +3 -2
  192. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +5 -1
  193. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +16 -6
  194. package/esm2022/libs/util/shared/src/lib/record.util.mjs +56 -0
  195. package/esm2022/translations/de.json +86 -24
  196. package/esm2022/translations/en.json +86 -24
  197. package/esm2022/translations/es.json +85 -23
  198. package/esm2022/translations/fr.json +87 -25
  199. package/esm2022/translations/it.json +85 -24
  200. package/esm2022/translations/nl.json +85 -23
  201. package/esm2022/translations/pt.json +85 -23
  202. package/esm2022/translations/sk.json +603 -0
  203. package/fesm2022/geonetwork-ui.mjs +12040 -9835
  204. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  205. package/libs/api/metadata-converter/src/index.d.ts +1 -0
  206. package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
  207. package/libs/api/metadata-converter/src/lib/base.converter.d.ts.map +1 -1
  208. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
  209. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +21 -0
  210. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +1 -1
  211. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -1
  212. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +4 -4
  213. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  214. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +0 -1
  215. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  216. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +1 -0
  217. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  218. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  219. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  220. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  221. package/libs/api/metadata-converter/src/lib/translate-utils.d.ts +2 -0
  222. package/libs/api/metadata-converter/src/lib/translate-utils.d.ts.map +1 -0
  223. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
  224. package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +1 -1
  225. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +9 -7
  226. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
  227. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +14 -3
  228. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  229. package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts.map +1 -1
  230. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +1 -0
  231. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  232. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +4 -4
  233. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  234. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +6 -3
  235. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  236. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +1 -0
  237. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +1 -1
  238. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +26 -17
  239. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  240. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +7 -1
  241. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  242. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +4 -8
  243. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  244. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +3 -3
  245. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -1
  246. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +12 -8
  247. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  248. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -1
  249. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +1 -0
  250. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  251. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +6 -3
  252. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  253. package/libs/feature/editor/src/index.d.ts +1 -3
  254. package/libs/feature/editor/src/index.d.ts.map +1 -1
  255. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +8 -1
  256. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  257. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +10 -12
  258. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  259. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +2 -1
  260. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  261. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  262. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +1 -1
  263. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  264. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +1 -1
  265. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -1
  266. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -1
  267. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts +52 -0
  268. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts.map +1 -0
  269. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -1
  270. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +6 -6
  271. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
  272. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +1 -1
  273. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -1
  274. 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
  275. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  276. 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
  277. 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
  278. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
  279. 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
  280. 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
  281. 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
  282. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  283. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +10 -17
  284. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  285. package/libs/feature/editor/src/lib/models/index.d.ts +0 -2
  286. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  287. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  288. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  289. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  290. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  291. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  292. package/libs/feature/map/src/lib/feature-map.module.d.ts +2 -11
  293. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  294. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
  295. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  296. package/libs/feature/record/src/index.d.ts +1 -3
  297. package/libs/feature/record/src/index.d.ts.map +1 -1
  298. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +15 -4
  299. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  300. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +2 -3
  301. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  302. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +1 -2
  303. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  304. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +2 -1
  305. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  306. package/libs/feature/record/src/lib/feature-record.module.d.ts +8 -12
  307. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  308. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +1 -1
  309. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +1 -1
  310. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +13 -6
  311. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  312. package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts +2 -2
  313. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +10 -0
  314. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  315. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +9 -1
  316. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  317. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +28 -21
  318. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  319. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +2 -0
  320. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  321. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +2 -0
  322. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  323. package/libs/feature/router/src/lib/default/constants.d.ts +2 -0
  324. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  325. package/libs/feature/router/src/lib/default/router.config.d.ts +2 -0
  326. package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -1
  327. package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -1
  328. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +5 -0
  329. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  330. package/libs/feature/search/src/index.d.ts +1 -1
  331. package/libs/feature/search/src/index.d.ts.map +1 -1
  332. package/libs/feature/search/src/lib/constants.d.ts.map +1 -1
  333. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +2 -1
  334. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
  335. package/libs/feature/search/src/lib/feature-search.module.d.ts +24 -22
  336. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
  337. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +2 -1
  338. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
  339. package/libs/feature/search/src/lib/record-url.token.d.ts +3 -1
  340. package/libs/feature/search/src/lib/record-url.token.d.ts.map +1 -1
  341. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts +21 -0
  342. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts.map +1 -0
  343. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +5 -3
  344. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
  345. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +6 -5
  346. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  347. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +1 -2
  348. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +1 -1
  349. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +1 -1
  350. package/libs/feature/search/src/lib/utils/service/fields.d.ts +22 -2
  351. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  352. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  353. package/libs/ui/dataviz/src/index.d.ts +0 -1
  354. package/libs/ui/dataviz/src/index.d.ts.map +1 -1
  355. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +2 -1
  356. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -1
  357. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts +6 -1
  358. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts.map +1 -1
  359. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -1
  360. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
  361. package/libs/ui/elements/src/index.d.ts +5 -2
  362. package/libs/ui/elements/src/index.d.ts.map +1 -1
  363. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  364. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +1 -1
  365. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +1 -1
  366. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +2 -0
  367. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -1
  368. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +1 -1
  369. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  370. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -1
  371. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  372. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts +15 -0
  373. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts.map +1 -0
  374. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts +36 -0
  375. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts.map +1 -0
  376. package/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.d.ts +14 -0
  377. package/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.d.ts.map +1 -0
  378. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts +13 -0
  379. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts.map +1 -0
  380. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +1 -1
  381. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  382. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  383. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +2 -2
  384. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
  385. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +3 -0
  386. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  387. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
  388. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  389. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts +27 -0
  390. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts.map +1 -0
  391. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts +31 -0
  392. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts.map +1 -0
  393. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +1 -1
  394. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -1
  395. package/libs/ui/inputs/src/index.d.ts +2 -2
  396. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  397. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +1 -2
  398. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  399. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  400. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  401. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +1 -1
  402. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +1 -1
  403. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +1 -1
  404. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +1 -1
  405. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +1 -1
  406. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -1
  407. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -1
  408. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts +14 -0
  409. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts.map +1 -0
  410. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts +6 -0
  411. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts.map +1 -0
  412. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts +17 -0
  413. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts.map +1 -0
  414. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +2 -1
  415. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -1
  416. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +1 -1
  417. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +1 -1
  418. package/libs/ui/layout/src/index.d.ts +2 -1
  419. package/libs/ui/layout/src/index.d.ts.map +1 -1
  420. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +10 -3
  421. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -1
  422. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +9 -2
  423. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -1
  424. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts +28 -0
  425. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts.map +1 -0
  426. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +15 -8
  427. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -1
  428. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts +5 -1
  429. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +1 -1
  430. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +1 -1
  431. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +1 -1
  432. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts +22 -0
  433. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts.map +1 -0
  434. package/libs/ui/map/src/index.d.ts +1 -0
  435. package/libs/ui/map/src/index.d.ts.map +1 -1
  436. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +6 -2
  437. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
  438. package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts +15 -0
  439. package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts.map +1 -0
  440. package/libs/ui/search/src/index.d.ts +2 -0
  441. package/libs/ui/search/src/index.d.ts.map +1 -1
  442. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts +17 -0
  443. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts.map +1 -0
  444. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -1
  445. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +4 -3
  446. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -1
  447. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +10 -4
  448. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  449. package/libs/ui/search/src/lib/ui-search.module.d.ts +22 -19
  450. package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
  451. package/libs/ui/widgets/src/index.d.ts +0 -1
  452. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  453. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +1 -1
  454. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +1 -1
  455. package/libs/util/app-config/src/lib/app-config.d.ts +0 -1
  456. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
  457. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  458. package/libs/util/i18n/src/index.d.ts +1 -2
  459. package/libs/util/i18n/src/index.d.ts.map +1 -1
  460. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +1 -1
  461. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +1 -1
  462. package/libs/util/i18n/src/lib/i18n.constants.d.ts +6 -15
  463. package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -1
  464. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +5 -5
  465. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +1 -1
  466. package/libs/util/i18n/src/lib/i18n.providers.d.ts +4 -0
  467. package/libs/util/i18n/src/lib/i18n.providers.d.ts.map +1 -0
  468. package/libs/util/i18n/src/lib/language-codes.d.ts +15 -19
  469. package/libs/util/i18n/src/lib/language-codes.d.ts.map +1 -1
  470. package/libs/util/shared/src/index.d.ts +2 -1
  471. package/libs/util/shared/src/index.d.ts.map +1 -1
  472. package/libs/util/shared/src/lib/gn-ui-version.d.ts +3 -0
  473. package/libs/util/shared/src/lib/gn-ui-version.d.ts.map +1 -0
  474. package/libs/util/shared/src/lib/image-fallback.directive.d.ts +1 -1
  475. package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +1 -1
  476. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  477. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  478. package/libs/util/shared/src/lib/links/link-utils.d.ts +14 -7
  479. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  480. package/libs/util/shared/src/lib/record.util.d.ts +3 -0
  481. package/libs/util/shared/src/lib/record.util.d.ts.map +1 -0
  482. package/package.json +4 -4
  483. package/src/libs/api/metadata-converter/src/index.ts +1 -0
  484. package/src/libs/api/metadata-converter/src/lib/base.converter.ts +1 -4
  485. package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +1 -0
  486. package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +29 -15
  487. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +10 -1
  488. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +2 -2
  489. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.service+eaux-usees.ts +2 -2
  490. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +3 -3
  491. package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +4196 -0
  492. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +2 -2
  493. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.service+napitswallonia.ts +2 -2
  494. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +81 -11
  495. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +4 -4
  496. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +0 -1
  497. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +11 -5
  498. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +2 -2
  499. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +14 -8
  500. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +12 -8
  501. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +8 -7
  502. package/src/libs/api/metadata-converter/src/lib/translate-utils.ts +17 -0
  503. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +3 -6
  504. package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +4 -1
  505. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +17 -17
  506. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +119 -16
  507. package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -0
  508. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +8 -7
  509. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +13 -6
  510. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +24 -20
  511. package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +3 -0
  512. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +27 -11
  513. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +11 -1
  514. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +36 -26
  515. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +16 -2
  516. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +5 -5
  517. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +114 -1
  518. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +4 -17
  519. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +7 -3
  520. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +12 -9
  521. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +60 -12
  522. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +2 -2
  523. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +40 -1
  524. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +1 -0
  525. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +33 -3
  526. package/src/libs/feature/editor/src/index.ts +1 -3
  527. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +9 -1
  528. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +23 -12
  529. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  530. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +9 -1
  531. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +3 -4
  532. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +5 -16
  533. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +7 -5
  534. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.html +120 -0
  535. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.ts +331 -0
  536. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +3 -12
  537. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +5 -4
  538. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +3 -4
  539. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +2 -2
  540. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +4 -11
  541. 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
  542. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +2 -17
  543. 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
  544. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +2 -2
  545. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +2 -2
  546. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +2 -2
  547. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +2 -2
  548. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +4 -4
  549. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +2 -2
  550. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +2 -2
  551. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +2 -15
  552. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -2
  553. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +4 -17
  554. package/src/libs/feature/editor/src/lib/models/index.ts +0 -2
  555. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +2 -1
  556. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +8 -3
  557. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -3
  558. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +8 -2
  559. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +8 -2
  560. package/src/libs/feature/map/src/lib/feature-map.module.ts +0 -17
  561. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +3 -8
  562. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +3 -2
  563. package/src/libs/feature/record/src/index.ts +1 -3
  564. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +17 -11
  565. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +22 -19
  566. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +4 -5
  567. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +1 -1
  568. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +2 -2
  569. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +6 -7
  570. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +2 -2
  571. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +3 -2
  572. package/src/libs/feature/record/src/lib/feature-record.module.ts +4 -13
  573. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +4 -3
  574. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +10 -4
  575. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +38 -11
  576. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +140 -21
  577. package/src/libs/feature/record/src/lib/record-meta/record-meta.component.ts +2 -2
  578. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +10 -0
  579. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +27 -3
  580. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +21 -17
  581. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +12 -0
  582. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +9 -0
  583. package/src/libs/feature/router/src/lib/default/constants.ts +2 -0
  584. package/src/libs/feature/router/src/lib/default/router.config.ts +2 -0
  585. package/src/libs/feature/router/src/lib/default/router.service.ts +10 -0
  586. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +10 -1
  587. package/src/libs/feature/search/src/index.ts +1 -1
  588. package/src/libs/feature/search/src/lib/constants.ts +3 -1
  589. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +2 -7
  590. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +16 -7
  591. package/src/libs/feature/search/src/lib/feature-search.module.ts +17 -23
  592. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
  593. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +5 -0
  594. package/src/libs/feature/search/src/lib/record-url.token.ts +10 -1
  595. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.html +16 -0
  596. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.ts +59 -0
  597. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.css +6 -0
  598. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +1 -0
  599. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +26 -5
  600. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
  601. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +13 -3
  602. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +10 -4
  603. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +2 -2
  604. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +4 -5
  605. package/src/libs/feature/search/src/lib/utils/service/fields.ts +103 -3
  606. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +1 -1
  607. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
  608. package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +2 -2
  609. package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +2 -2
  610. package/src/libs/ui/dataviz/src/index.ts +0 -1
  611. package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +2 -1
  612. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -3
  613. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +7 -6
  614. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +0 -1
  615. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +4 -0
  616. package/src/libs/ui/elements/src/index.ts +5 -2
  617. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +4 -4
  618. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +3 -2
  619. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.html +6 -6
  620. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.ts +2 -2
  621. package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +3 -0
  622. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +6 -2
  623. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +5 -1
  624. package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +8 -5
  625. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  626. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +42 -11
  627. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +28 -4
  628. package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -2
  629. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.css +4 -0
  630. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.html +13 -0
  631. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.ts +54 -0
  632. package/src/libs/ui/elements/src/lib/image-input/image-input.component.ts +2 -2
  633. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  634. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.css +0 -0
  635. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +83 -0
  636. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +129 -0
  637. package/src/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.html +69 -0
  638. package/src/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.ts +61 -0
  639. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.css +6 -0
  640. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.html +11 -0
  641. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.ts +69 -0
  642. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +5 -2
  643. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +5 -9
  644. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -4
  645. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.html +3 -5
  646. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +2 -2
  647. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +12 -9
  648. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -2
  649. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +9 -0
  650. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +24 -7
  651. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +11 -6
  652. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +3 -2
  653. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +51 -13
  654. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +6 -2
  655. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -2
  656. package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.html +107 -0
  657. package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.ts +83 -0
  658. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.css +0 -0
  659. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.html +110 -0
  660. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +196 -0
  661. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +2 -2
  662. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +4 -0
  663. package/src/libs/ui/inputs/src/index.ts +2 -2
  664. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +3 -3
  665. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +6 -9
  666. package/src/libs/ui/inputs/src/lib/button/button.component.ts +2 -2
  667. package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.ts +3 -0
  668. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +1 -1
  669. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +4 -0
  670. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  671. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +27 -0
  672. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -1
  673. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +2 -2
  674. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +3 -4
  675. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.html +23 -0
  676. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.ts +47 -0
  677. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.ts +5 -0
  678. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.css +0 -0
  679. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.html +43 -0
  680. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.ts +83 -0
  681. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +0 -1
  682. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +11 -8
  683. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +4 -1
  684. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +2 -2
  685. package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +1 -0
  686. package/src/libs/ui/layout/src/index.ts +2 -1
  687. package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +47 -2
  688. package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +22 -0
  689. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +2 -2
  690. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +43 -5
  691. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +0 -1
  692. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +1 -1
  693. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.html +40 -0
  694. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.ts +141 -0
  695. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +24 -8
  696. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +36 -10
  697. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +2 -2
  698. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +4 -7
  699. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +22 -2
  700. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +1 -1
  701. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.ts +2 -2
  702. package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +2 -2
  703. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +17 -5
  704. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +3 -3
  705. package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +3 -0
  706. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.html +27 -0
  707. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.ts +84 -0
  708. package/src/libs/ui/map/src/index.ts +1 -0
  709. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +3 -3
  710. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +27 -3
  711. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -2
  712. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.css +0 -0
  713. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.html +4 -0
  714. package/src/libs/{feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts → ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts} +8 -8
  715. package/src/libs/ui/search/src/index.ts +2 -0
  716. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +4 -1
  717. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +9 -81
  718. package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +1 -1
  719. package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.html +25 -0
  720. package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.ts +53 -0
  721. package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +2 -2
  722. package/src/libs/ui/search/src/lib/results-list/results-list.component.html +1 -0
  723. package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +0 -1
  724. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +16 -6
  725. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +18 -15
  726. package/src/libs/ui/search/src/lib/results-table/results-table.component.css +4 -0
  727. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +29 -24
  728. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +49 -17
  729. package/src/libs/ui/search/src/lib/ui-search.module.ts +19 -10
  730. package/src/libs/ui/widgets/src/index.ts +0 -1
  731. package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.ts +1 -0
  732. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +4 -3
  733. package/src/libs/util/app-config/src/lib/app-config.ts +1 -2
  734. package/src/libs/util/app-config/src/lib/fixtures.ts +1 -0
  735. package/src/libs/util/i18n/src/index.ts +1 -2
  736. package/src/libs/util/i18n/src/lib/embedded.translate.loader.ts +4 -3
  737. package/src/libs/util/i18n/src/lib/i18n.constants.ts +39 -29
  738. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +11 -9
  739. package/src/libs/util/i18n/src/lib/i18n.providers.ts +68 -0
  740. package/src/libs/util/i18n/src/lib/language-codes.ts +67 -2
  741. package/src/libs/util/shared/src/index.ts +2 -1
  742. package/src/libs/util/shared/src/lib/gn-ui-version.ts +8 -0
  743. package/src/libs/util/shared/src/lib/image-fallback.directive.ts +1 -0
  744. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +15 -3
  745. package/src/libs/util/shared/src/lib/links/link-utils.ts +33 -12
  746. package/src/libs/util/shared/src/lib/record.util.ts +114 -0
  747. package/tailwind.base.config.js +3 -0
  748. package/tailwind.base.css +23 -25
  749. package/translations/de.json +86 -24
  750. package/translations/en.json +86 -24
  751. package/translations/es.json +85 -23
  752. package/translations/fr.json +87 -25
  753. package/translations/it.json +85 -24
  754. package/translations/nl.json +85 -23
  755. package/translations/pt.json +85 -23
  756. package/translations/sk.json +85 -23
  757. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +0 -79
  758. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +0 -44
  759. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +0 -75
  760. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +0 -160
  761. package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +0 -53
  762. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.model.mjs +0 -2
  763. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.type.mjs +0 -8
  764. package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +0 -87
  765. package/esm2022/libs/feature/record/src/lib/gn-ui-version.token.mjs +0 -3
  766. package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +0 -18
  767. package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +0 -47
  768. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +0 -46
  769. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +0 -106
  770. package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +0 -16
  771. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +0 -161
  772. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +0 -31
  773. package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +0 -46
  774. package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +0 -31
  775. package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +0 -37
  776. package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +0 -18
  777. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +0 -15
  778. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +0 -1
  779. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +0 -14
  780. 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
  781. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts +0 -31
  782. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts.map +0 -1
  783. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +0 -43
  784. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +0 -1
  785. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +0 -17
  786. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +0 -1
  787. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts +0 -10
  788. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts.map +0 -1
  789. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts +0 -7
  790. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts.map +0 -1
  791. package/libs/feature/editor/src/lib/services/wizard.service.d.ts +0 -33
  792. package/libs/feature/editor/src/lib/services/wizard.service.d.ts.map +0 -1
  793. package/libs/feature/record/src/lib/gn-ui-version.token.d.ts +0 -3
  794. package/libs/feature/record/src/lib/gn-ui-version.token.d.ts.map +0 -1
  795. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts +0 -9
  796. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts.map +0 -1
  797. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +0 -11
  798. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +0 -1
  799. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +0 -12
  800. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +0 -1
  801. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +0 -27
  802. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +0 -1
  803. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +0 -8
  804. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +0 -1
  805. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +0 -34
  806. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +0 -1
  807. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +0 -12
  808. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +0 -1
  809. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +0 -15
  810. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +0 -1
  811. package/libs/util/i18n/src/lib/lang.service.d.ts +0 -13
  812. package/libs/util/i18n/src/lib/lang.service.d.ts.map +0 -1
  813. package/libs/util/i18n/src/lib/util-i18n.module.d.ts +0 -12
  814. package/libs/util/i18n/src/lib/util-i18n.module.d.ts.map +0 -1
  815. package/libs/util/shared/src/lib/util-shared.module.d.ts +0 -9
  816. package/libs/util/shared/src/lib/util-shared.module.d.ts.map +0 -1
  817. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +0 -1
  818. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.css +0 -5
  819. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +0 -22
  820. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts +0 -93
  821. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.css +0 -31
  822. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +0 -62
  823. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +0 -206
  824. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.css +0 -3
  825. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.html +0 -21
  826. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +0 -58
  827. package/src/libs/feature/editor/src/lib/models/wizard-field.model.ts +0 -10
  828. package/src/libs/feature/editor/src/lib/models/wizard-field.type.ts +0 -6
  829. package/src/libs/feature/editor/src/lib/services/wizard.service.ts +0 -105
  830. package/src/libs/feature/record/src/lib/gn-ui-version.token.ts +0 -3
  831. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.html +0 -4
  832. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts +0 -10
  833. package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +0 -27
  834. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +0 -30
  835. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +0 -48
  836. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +0 -61
  837. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +0 -3
  838. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +0 -9
  839. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +0 -15
  840. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -96
  841. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -18
  842. package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +0 -25
  843. package/src/libs/util/i18n/src/lib/lang.service.ts +0 -23
  844. package/src/libs/util/i18n/src/lib/util-i18n.module.ts +0 -26
  845. package/src/libs/util/shared/src/lib/util-shared.module.ts +0 -10
  846. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-map-container/form-field-map-container.component.css → multilingual-panel/multilingual-panel.component.css} +0 -0
  847. /package/src/libs/{ui/elements/src/lib/related-record-card/related-record-card.component.css → feature/search/src/lib/results-hits/results-hits.container.component.css} +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-keywords.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AAOtB,OAAO,EAAE,OAAO,EAAE,MAAM,oEAAoE,CAAA;AAG5F,OAAO,EAAE,WAAW,EAAE,MAAM,uEAAuE,CAAA;AACnG,OAAO,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAA;;AAK/D,qBAgBa,0BAA0B;IAkBzB,OAAO,CAAC,YAAY;IAjBvB,KAAK,EAAE,OAAO,EAAE,CAAA;IACf,WAAW,EAAE,YAAY,CAAC,OAAO,EAAE,CAAC,CAAqB;IAEnE,YAAY,EAAqC,WAAW,EAAE,CAAA;IAE9D,IAAI,gBAAgB,IAAI,OAAO,EAAE,CAUhC;gBAEmB,YAAY,EAAE,YAAY;IAExC,oBAAoB,CAAC,QAAQ,EAAE,OAAO,EAAE;yCApBnC,0BAA0B;2CAA1B,0BAA0B;CAsCtC"}
1
+ {"version":3,"file":"form-field-keywords.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAE,MAAM,oEAAoE,CAAA;AAG5F,OAAO,EAAE,WAAW,EAAE,MAAM,uEAAuE,CAAA;AACnG,OAAO,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAA;;AAI/D,qBAQa,0BAA0B;IAkBzB,OAAO,CAAC,YAAY;IAjBvB,KAAK,EAAE,OAAO,EAAE,CAAA;IACf,WAAW,EAAE,YAAY,CAAC,OAAO,EAAE,CAAC,CAAqB;IAEnE,YAAY,EAAqC,WAAW,EAAE,CAAA;IAE9D,IAAI,gBAAgB,IAAI,OAAO,EAAE,CAUhC;gBAEmB,YAAY,EAAE,YAAY;IAExC,oBAAoB,CAAC,QAAQ,EAAE,OAAO,EAAE;yCApBnC,0BAA0B;2CAA1B,0BAA0B;CAsCtC"}
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-online-link-resources.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGZ,WAAW,EAEZ,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AACpD,OAAO,EACL,kBAAkB,EAClB,cAAc,EACf,MAAM,oEAAoE,CAAA;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAC3H,OAAO,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAA;AAWhG,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACvE,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAInC,qBAiBa,qCAAqC;IAqB9C,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,MAAM;IAxBP,YAAY,EAAE,MAAM,CAAA;IAC7B,IAAa,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,cAAc,CAAC,EAKxD;IACS,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CACtC;IAES,cAAc,EAAE,WAAW,CAAC,cAAc,CAAC,CAAA;IAExE,OAAO,CAAC,YAAY,CAAuB;IAC3C,aAAa,EAAE,kBAAkB,EAAE,CAAK;IACxC,cAAc,CAAC,EAAE,MAAM,CAAY;IACnC,kBAAkB,EAAE,YAAY,CAAO;IAEvC,SAAS,CAAC,kBAAkB,SAAqB;gBAGvC,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB,EAClC,eAAe,EAAE,wBAAwB,EACzC,EAAE,EAAE,iBAAiB,EACrB,MAAM,EAAE,SAAS;IAG3B,gBAAgB,CAAC,IAAI,EAAE,IAAI;IAwB3B,kBAAkB;IAOlB,eAAe,CAAC,GAAG,EAAE,MAAM;IAc3B,qBAAqB,CAAC,KAAK,EAAE,OAAO,EAAE;IAStC,oBAAoB,CAAC,QAAQ,EAAE,kBAAkB,EAAE,KAAK,EAAE,MAAM;IAIhE,OAAO,CAAC,WAAW;IAqBnB,OAAO,CAAC,cAAc;yCA3GX,qCAAqC;2CAArC,qCAAqC;CA2IjD"}
1
+ {"version":3,"file":"form-field-online-link-resources.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGZ,WAAW,EAEZ,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AACpD,OAAO,EACL,kBAAkB,EAClB,cAAc,EACf,MAAM,oEAAoE,CAAA;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAC3H,OAAO,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAA;AAWhG,OAAO,EAAsB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAInC,qBAiBa,qCAAqC;IAqB9C,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,MAAM;IAxBP,YAAY,EAAE,MAAM,CAAA;IAC7B,IAAa,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,cAAc,CAAC,EAKxD;IACS,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CACtC;IAES,cAAc,EAAE,WAAW,CAAC,cAAc,CAAC,CAAA;IAExE,OAAO,CAAC,YAAY,CAAuB;IAC3C,aAAa,EAAE,kBAAkB,EAAE,CAAK;IACxC,cAAc,CAAC,EAAE,MAAM,CAAY;IACnC,kBAAkB,EAAE,YAAY,CAAO;IAEvC,SAAS,CAAC,kBAAkB,SAAqB;gBAGvC,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB,EAClC,eAAe,EAAE,wBAAwB,EACzC,EAAE,EAAE,iBAAiB,EACrB,MAAM,EAAE,SAAS;IAG3B,gBAAgB,CAAC,IAAI,EAAE,IAAI;IAwB3B,kBAAkB;IAOlB,eAAe,CAAC,GAAG,EAAE,MAAM;IAc3B,qBAAqB,CAAC,KAAK,EAAE,OAAO,EAAE;IAStC,oBAAoB,CAAC,QAAQ,EAAE,kBAAkB,EAAE,KAAK,EAAE,MAAM;IAIhE,OAAO,CAAC,WAAW;IAqBnB,OAAO,CAAC,cAAc;yCA3GX,qCAAqC;2CAArC,qCAAqC;CA2IjD"}
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-online-resources.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGZ,WAAW,EAEZ,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AAEpD,OAAO,EACL,2BAA2B,EAC3B,0BAA0B,EAC1B,cAAc,EACd,eAAe,EAChB,MAAM,oEAAoE,CAAA;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAC3H,OAAO,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAA;AAChG,OAAO,EAGL,kBAAkB,EAInB,MAAM,+CAA+C,CAAA;AAKtD,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACvE,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAKnC,KAAK,qBAAqB,GACtB,2BAA2B,GAC3B,0BAA0B,GAC1B,eAAe,CAAA;AAEnB,qBAmBa,iCAAiC;IAyC1C,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,MAAM;IA5CP,YAAY,EAAE,MAAM,CAAA;IAC7B,IAAa,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,cAAc,CAAC,EAKxD;IACS,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CACtC;IAES,cAAc,EAAE,WAAW,CAAC,cAAc,CAAC,CAAA;IAExE,WAAW,EAAE,kBAAkB,EAAE,CAWhC;IACD,YAAY,EAAE,UAAU,GAAG,SAAS,CAAa;IAEjD,OAAO,CAAC,YAAY,CAAuB;IAC3C,gBAAgB,EAAE,qBAAqB,EAAE,CAAK;IAC9C,cAAc,MAAY;IAC1B,kBAAkB,EAAE,YAAY,CAAO;IACvC,UAAU,EAAI,0BAA0B,CAKvC;IAED,SAAS,CAAC,kBAAkB,SAAqB;gBAGvC,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB,EAClC,eAAe,EAAE,wBAAwB,EACzC,EAAE,EAAE,iBAAiB,EACrB,MAAM,EAAE,SAAS;IAG3B,oBAAoB,CAAC,YAAY,EAAE,OAAO;IAI1C,gBAAgB,CAAC,IAAI,EAAE,IAAI;IAyB3B,kBAAkB;IAOlB,uBAAuB,CAAC,GAAG,EAAE,MAAM;IAcnC,mBAAmB,CAAC,OAAO,EAAE,0BAA0B;IAIvD,qBAAqB,CAAC,KAAK,EAAE,OAAO,EAAE;IAStC,oBAAoB,CAAC,QAAQ,EAAE,qBAAqB,EAAE,KAAK,EAAE,MAAM;IAInE,OAAO,CAAC,WAAW;IAoBnB,OAAO,CAAC,cAAc;yCAvIX,iCAAiC;2CAAjC,iCAAiC;CAuK7C"}
1
+ {"version":3,"file":"form-field-online-resources.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGZ,WAAW,EAEZ,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AAEpD,OAAO,EACL,2BAA2B,EAC3B,0BAA0B,EAC1B,cAAc,EACd,eAAe,EAChB,MAAM,oEAAoE,CAAA;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAC3H,OAAO,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAA;AAChG,OAAO,EAGL,kBAAkB,EAInB,MAAM,+CAA+C,CAAA;AAKtD,OAAO,EAAsB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAKnC,KAAK,qBAAqB,GACtB,2BAA2B,GAC3B,0BAA0B,GAC1B,eAAe,CAAA;AAEnB,qBAmBa,iCAAiC;IAyC1C,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,MAAM;IA5CP,YAAY,EAAE,MAAM,CAAA;IAC7B,IAAa,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,cAAc,CAAC,EAKxD;IACS,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CACtC;IAES,cAAc,EAAE,WAAW,CAAC,cAAc,CAAC,CAAA;IAExE,WAAW,EAAE,kBAAkB,EAAE,CAWhC;IACD,YAAY,EAAE,UAAU,GAAG,SAAS,CAAa;IAEjD,OAAO,CAAC,YAAY,CAAuB;IAC3C,gBAAgB,EAAE,qBAAqB,EAAE,CAAK;IAC9C,cAAc,MAAY;IAC1B,kBAAkB,EAAE,YAAY,CAAO;IACvC,UAAU,EAAI,0BAA0B,CAKvC;IAED,SAAS,CAAC,kBAAkB,SAAqB;gBAGvC,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB,EAClC,eAAe,EAAE,wBAAwB,EACzC,EAAE,EAAE,iBAAiB,EACrB,MAAM,EAAE,SAAS;IAG3B,oBAAoB,CAAC,YAAY,EAAE,OAAO;IAI1C,gBAAgB,CAAC,IAAI,EAAE,IAAI;IAyB3B,kBAAkB;IAOlB,uBAAuB,CAAC,GAAG,EAAE,MAAM;IAcnC,mBAAmB,CAAC,OAAO,EAAE,0BAA0B;IAIvD,qBAAqB,CAAC,KAAK,EAAE,OAAO,EAAE;IAStC,oBAAoB,CAAC,QAAQ,EAAE,qBAAqB,EAAE,KAAK,EAAE,MAAM;IAInE,OAAO,CAAC,WAAW;IAoBnB,OAAO,CAAC,cAAc;yCAvIX,iCAAiC;2CAAjC,iCAAiC;CAuK7C"}
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-overviews.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,eAAe,EAAE,MAAM,oEAAoE,CAAA;AAEpG,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAC3H,OAAO,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAA;AAChG,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACvE,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAGnC,qBAQa,2BAA2B;IAqBpC,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,EAAE;IAvBH,YAAY,EAAE,MAAM,CAAA;IACpB,KAAK,EAAE,KAAK,CAAC,eAAe,CAAC,CAAA;IAC5B,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CACvC;IAEpB,cAAc,MAAY;IAC1B,kBAAkB,EAAE,YAAY,CAAO;IAEvC,SAAS,CAAC,kBAAkB,SAAqB;IAEjD,IAAI,aAAa,oBAOhB;gBAGS,eAAe,EAAE,wBAAwB,EACzC,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB,EAClC,EAAE,EAAE,iBAAiB;IAG/B,gBAAgB,CAAC,IAAI,EAAE,IAAI;IAsB3B,kBAAkB;IAOlB,eAAe,CAAC,GAAG,EAAE,MAAM;IAY3B,mBAAmB,CAAC,UAAU,EAAE,MAAM;IAOtC,YAAY;IAIZ,YAAY,CAAC,QAAQ,EAAE,eAAe,GAAG,IAAI;IAI7C,OAAO,CAAC,WAAW,CAmBlB;yCAtGU,2BAA2B;2CAA3B,2BAA2B;CAuGvC"}
1
+ {"version":3,"file":"form-field-overviews.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,eAAe,EAAE,MAAM,oEAAoE,CAAA;AAEpG,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAC3H,OAAO,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAA;AAChG,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAGnC,qBAQa,2BAA2B;IAqBpC,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,EAAE;IAvBH,YAAY,EAAE,MAAM,CAAA;IACpB,KAAK,EAAE,KAAK,CAAC,eAAe,CAAC,CAAA;IAC5B,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CACvC;IAEpB,cAAc,MAAY;IAC1B,kBAAkB,EAAE,YAAY,CAAO;IAEvC,SAAS,CAAC,kBAAkB,SAAqB;IAEjD,IAAI,aAAa,oBAOhB;gBAGS,eAAe,EAAE,wBAAwB,EACzC,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB,EAClC,EAAE,EAAE,iBAAiB;IAG/B,gBAAgB,CAAC,IAAI,EAAE,IAAI;IAsB3B,kBAAkB;IAOlB,eAAe,CAAC,GAAG,EAAE,MAAM;IAY3B,mBAAmB,CAAC,UAAU,EAAE,MAAM;IAOtC,YAAY;IAIZ,YAAY,CAAC,QAAQ,EAAE,eAAe,GAAG,IAAI;IAI7C,OAAO,CAAC,WAAW,CAmBlB;yCAtGU,2BAA2B;2CAA3B,2BAA2B;CAuGvC"}
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-spatial-extent.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,oBAAoB,EACpB,OAAO,EACR,MAAM,oEAAoE,CAAA;AAE3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAE3H,OAAO,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAA;AAG/D,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAKvE,KAAK,iBAAiB,GAAG,OAAO,GAAG;IACjC,aAAa,EAAE,oBAAoB,CAAA;IACnC,UAAU,EAAE,OAAO,CAAA;CACpB,CAAA;AAED;;;;GAIG;AAEH,qBAaa,+BAA+B;IAkExC,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,gBAAgB;IAnE1B,eAAe,oDAEd;IAED,YAAY,uCAEX;IAED,cAAc,uCAsDb;gBAGS,eAAe,EAAE,wBAAwB,EACzC,YAAY,EAAE,YAAY,EAC1B,gBAAgB,EAAE,gBAAgB;IAGtC,mBAAmB,CAAC,OAAO,EAAE,OAAO;IAcpC,gBAAgB,CAAC,OAAO,EAAE,OAAO;IAiBjC,WAAW,CACf,aAAa,EAAE,iBAAiB,EAAE,EAClC,cAAc,EAAE,oBAAoB,EAAE;yCAxG7B,+BAA+B;2CAA/B,+BAA+B;CA4I3C"}
1
+ {"version":3,"file":"form-field-spatial-extent.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,oBAAoB,EACpB,OAAO,EACR,MAAM,oEAAoE,CAAA;AAE3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAE3H,OAAO,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAA;AAE/D,OAAO,EAAiB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAMrE,KAAK,iBAAiB,GAAG,OAAO,GAAG;IACjC,aAAa,EAAE,oBAAoB,CAAA;IACnC,UAAU,EAAE,OAAO,CAAA;CACpB,CAAA;AAED;;;;GAIG;AAEH,qBAaa,+BAA+B;IAkExC,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,gBAAgB;IAnE1B,eAAe,oDAEd;IAED,YAAY,uCAEX;IAED,cAAc,uCAsDb;gBAGS,eAAe,EAAE,wBAAwB,EACzC,YAAY,EAAE,YAAY,EAC1B,gBAAgB,EAAE,gBAAgB;IAGtC,mBAAmB,CAAC,OAAO,EAAE,OAAO;IAcpC,gBAAgB,CAAC,OAAO,EAAE,OAAO;IAiBjC,WAAW,CACf,aAAa,EAAE,iBAAiB,EAAE,EAClC,cAAc,EAAE,oBAAoB,EAAE;yCAxG7B,+BAA+B;2CAA/B,+BAA+B;CA4I3C"}
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-temporal-extents.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,qBAAqB,EAAE,MAAM,oEAAoE,CAAA;AAO1G,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AASvE,qBAsBa,iCAAiC;IAgBhC,OAAO,CAAC,gBAAgB;IAfpC,OAAO,EAAE,qBAAqB,EAAE,CAAK;IACrC,IAAa,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,EAEjD;IACS,WAAW,wCAAmD;IAExE,WAAW;;;;;;QAOT;gBAEkB,gBAAgB,EAAE,gBAAgB;IAEtD,kBAAkB,CAAC,OAAO,EAAE,OAAO,EAAE;IAKrC,KAAK,CAAC,SAAS,EAAE,MAAM;IAmBvB,cAAc,CAAC,MAAM,EAAE,OAAO,CAAC,qBAAqB,CAAC,EAAE,KAAK,EAAE,MAAM;IAMpE,SAAS;yCAhDE,iCAAiC;2CAAjC,iCAAiC;CAmD7C"}
1
+ {"version":3,"file":"form-field-temporal-extents.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,qBAAqB,EAAE,MAAM,oEAAoE,CAAA;AAO1G,OAAO,EAAsB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAS1E,qBAsBa,iCAAiC;IAgBhC,OAAO,CAAC,gBAAgB;IAfpC,OAAO,EAAE,qBAAqB,EAAE,CAAK;IACrC,IAAa,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,EAEjD;IACS,WAAW,wCAAmD;IAExE,WAAW;;;;;;QAOT;gBAEkB,gBAAgB,EAAE,gBAAgB;IAEtD,kBAAkB,CAAC,OAAO,EAAE,OAAO,EAAE;IAKrC,KAAK,CAAC,SAAS,EAAE,MAAM;IAmBvB,cAAc,CAAC,MAAM,EAAE,OAAO,CAAC,qBAAqB,CAAC,EAAE,KAAK,EAAE,MAAM;IAMpE,SAAS;yCAhDE,iCAAiC;2CAAjC,iCAAiC;CAmD7C"}
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-update-frequency.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,eAAe,EAIhB,MAAM,oEAAoE,CAAA;AAC3E,OAAO,EAEL,cAAc,EAEf,MAAM,+CAA+C,CAAA;AACtD,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAOvE,qBAQa,iCAAkC,YAAW,MAAM;IAUlD,OAAO,CAAC,gBAAgB;IAT3B,KAAK,EAAE,eAAe,CAAA;IACrB,WAAW,EAAE,YAAY,CAAC,eAAe,CAAC,CAAqB;IAEzE,SAAS,CAAC,OAAO,EAAE,cAAc,EAAE,CAAK;IAExC,IAAI,OAAO,YAEV;gBAEmB,gBAAgB,EAAE,gBAAgB;IAEhD,QAAQ;IA0Cd,gBAAgB;IAQhB,IAAI,iBAAiB,IAAI,MAAM,CAK9B;IAED,sBAAsB,CAAC,KAAK,EAAE,MAAM;YAYtB,iBAAiB;yCAjFpB,iCAAiC;2CAAjC,iCAAiC;CA2F7C"}
1
+ {"version":3,"file":"form-field-update-frequency.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,eAAe,EAIhB,MAAM,oEAAoE,CAAA;AAC3E,OAAO,EAEL,cAAc,EAEf,MAAM,+CAA+C,CAAA;AACtD,OAAO,EAAiB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAOrE,qBAQa,iCAAkC,YAAW,MAAM;IAUlD,OAAO,CAAC,gBAAgB;IAT3B,KAAK,EAAE,eAAe,CAAA;IACrB,WAAW,EAAE,YAAY,CAAC,eAAe,CAAC,CAAqB;IAEzE,SAAS,CAAC,OAAO,EAAE,cAAc,EAAE,CAAK;IAExC,IAAI,OAAO,YAEV;gBAEmB,gBAAgB,EAAE,gBAAgB;IAEhD,QAAQ;IA0Cd,gBAAgB;IAQhB,IAAI,iBAAiB,IAAI,MAAM,CAK9B;IAED,sBAAsB,CAAC,KAAK,EAAE,MAAM;YAYtB,iBAAiB;yCAjFpB,iCAAiC;2CAAjC,iCAAiC;CA2F7C"}
@@ -1 +1 @@
1
- {"version":3,"file":"form-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,UAAU,EACV,YAAY,EAOb,MAAM,eAAe,CAAA;AAEtB,OAAO,EACL,iBAAiB,EACjB,UAAU,EACV,qBAAqB,EACrB,eAAe,EACf,UAAU,EACV,OAAO,EACP,cAAc,EACd,eAAe,EAChB,MAAM,iEAAiE,CAAA;AASxE,OAAO,EACL,mBAAmB,EACnB,sBAAsB,EACtB,eAAe,EAChB,MAAM,iBAAiB,CAAA;;AAoBxB,qBAmCa,kBAAkB;IACpB,gBAAgB,EAAE,MAAM,CAAA;IACxB,KAAK,EAAE,iBAAiB,CAAA;IACxB,cAAc,EAAE,mBAAmB,CAAA;IACnC,aAAa,EAAE,sBAAsB,CAAA;IAErC,MAAM,EAAE,eAAe,CAAA;IACvB,KAAK,EAAE,OAAO,CAAA;IAEb,WAAW,EAAE,YAAY,CAAC,OAAO,CAAC,CAAqB;IAExC,UAAU,EAAE,UAAU,CAAA;IAC/C,UAAU,UAAQ;IAElB,gBAAgB,CAAC,KAAK,EAAE,OAAO;IAI/B,eAAe;IAIf,IAAI,cAAc,YASjB;IAED,IAAI,aAAa,IACM,MAAM,CAC5B;IACD,IAAI,WAAW,IACQ,IAAI,CAC1B;IAED,IAAI,gBAAgB,IACG,KAAK,CAAC,eAAe,CAAC,CAC5C;IACD,IAAI,sBAAsB,IACH,eAAe,CACrC;IACD,IAAI,sBAAsB,IACH,KAAK,CAAC,qBAAqB,CAAC,CAClD;IACD,IAAI,eAAe,IACI,KAAK,CAAC,OAAO,CAAC,CACpC;IACD,IAAI,kBAAkB,IACC,KAAK,CAAC,UAAU,CAAC,CACvC;IACD,IAAI,kBAAkB,IACC,KAAK,CAAC,UAAU,CAAC,CACvC;IACD,IAAI,sBAAsB,IACH,KAAK,CAAC,cAAc,CAAC,CAC3C;yCA5DU,kBAAkB;2CAAlB,kBAAkB;CA6D9B"}
1
+ {"version":3,"file":"form-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,UAAU,EACV,YAAY,EAIb,MAAM,eAAe,CAAA;AAEtB,OAAO,EACL,iBAAiB,EACjB,UAAU,EACV,qBAAqB,EACrB,eAAe,EACf,UAAU,EACV,OAAO,EACP,cAAc,EACd,eAAe,EAChB,MAAM,iEAAiE,CAAA;AAQxE,OAAO,EACL,mBAAmB,EACnB,sBAAsB,EACtB,eAAe,EAChB,MAAM,iBAAiB,CAAA;;AAgBxB,qBA8Ba,kBAAkB;IACpB,gBAAgB,EAAE,MAAM,CAAA;IACxB,KAAK,EAAE,iBAAiB,CAAA;IACxB,cAAc,EAAE,mBAAmB,CAAA;IACnC,aAAa,EAAE,sBAAsB,CAAA;IAErC,MAAM,EAAE,eAAe,CAAA;IACvB,KAAK,EAAE,OAAO,CAAA;IAEb,WAAW,EAAE,YAAY,CAAC,OAAO,CAAC,CAAqB;IAExC,UAAU,EAAE,UAAU,CAAA;IAC/C,UAAU,UAAQ;IAElB,gBAAgB,CAAC,KAAK,EAAE,OAAO;IAI/B,eAAe;IAIf,IAAI,cAAc,YASjB;IAED,IAAI,aAAa,IACM,MAAM,CAC5B;IACD,IAAI,WAAW,IACQ,IAAI,CAC1B;IAED,IAAI,gBAAgB,IACG,KAAK,CAAC,eAAe,CAAC,CAC5C;IACD,IAAI,sBAAsB,IACH,eAAe,CACrC;IACD,IAAI,sBAAsB,IACH,KAAK,CAAC,qBAAqB,CAAC,CAClD;IACD,IAAI,eAAe,IACI,KAAK,CAAC,OAAO,CAAC,CACpC;IACD,IAAI,kBAAkB,IACC,KAAK,CAAC,UAAU,CAAC,CACvC;IACD,IAAI,kBAAkB,IACC,KAAK,CAAC,UAAU,CAAC,CACvC;IACD,IAAI,sBAAsB,IACH,KAAK,CAAC,cAAc,CAAC,CAC3C;yCA5DU,kBAAkB;2CAAlB,kBAAkB;CA6D9B"}
@@ -1,23 +1,16 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./components/wizard/wizard.component";
3
- import * as i2 from "./components/wizard-field/wizard-field.component";
4
- import * as i3 from "./components/wizard-summarize/wizard-summarize.component";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "../../../../ui/inputs/src/lib/ui-inputs.module";
7
- import * as i6 from "../../../../ui/widgets/src/lib/ui-widgets.module";
8
- import * as i7 from "@ngx-translate/core";
9
- import * as i8 from "@angular/material/datepicker";
10
- import * as i9 from "@angular/material/core";
11
- import * as i10 from "@angular/material/form-field";
12
- import * as i11 from "@angular/common/http";
13
- import * as i12 from "@ngrx/store";
14
- import * as i13 from "@ngrx/effects";
15
- import * as i14 from "../../../../ui/inputs/src/lib/text-input/text-input.component";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@ngx-translate/core";
4
+ import * as i3 from "@angular/material/datepicker";
5
+ import * as i4 from "@angular/material/core";
6
+ import * as i5 from "@angular/material/form-field";
7
+ import * as i6 from "@angular/common/http";
8
+ import * as i7 from "@ngrx/store";
9
+ import * as i8 from "@ngrx/effects";
10
+ import * as i9 from "../../../../ui/inputs/src/lib/text-input/text-input.component";
16
11
  export declare class FeatureEditorModule {
17
12
  static ɵfac: i0.ɵɵFactoryDeclaration<FeatureEditorModule, never>;
18
- static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureEditorModule, [typeof i1.WizardComponent, typeof i2.WizardFieldComponent, typeof i3.WizardSummarizeComponent], [typeof i4.CommonModule, typeof i5.UiInputsModule, typeof i6.UiWidgetsModule, typeof i7.TranslateModule, typeof i8.MatDatepickerModule, typeof i9.MatNativeDateModule, typeof i10.MatFormFieldModule, typeof i11.HttpClientModule, typeof i11.HttpClientXsrfModule, typeof i12.StoreFeatureModule, typeof i13.EffectsFeatureModule, typeof i14.TextInputComponent], [typeof i1.WizardComponent, typeof i3.WizardSummarizeComponent]>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureEditorModule, never, [typeof i1.CommonModule, typeof i2.TranslateDirective, typeof i2.TranslatePipe, typeof i3.MatDatepickerModule, typeof i4.MatNativeDateModule, typeof i5.MatFormFieldModule, typeof i6.HttpClientModule, typeof i6.HttpClientXsrfModule, typeof i7.StoreFeatureModule, typeof i8.EffectsFeatureModule, typeof i9.TextInputComponent], never>;
19
14
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
20
15
  }
21
- export * from './models/index';
22
- export * from './services/wizard.service';
23
16
  //# sourceMappingURL=feature-editor.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"feature-editor.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/editor/src/lib/feature-editor.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAmBA,qBA0Ba,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG;AACnC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,2BAA2B,CAAA"}
1
+ {"version":3,"file":"feature-editor.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/editor/src/lib/feature-editor.module.ts"],"names":[],"mappings":";;;;;;;;;;AAeA,qBAmBa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
@@ -1,4 +1,2 @@
1
- export * from './wizard-field.model';
2
- export * from './wizard-field.type';
3
1
  export * from './editor-config.model';
4
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/editor/src/lib/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;AACpC,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/editor/src/lib/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"add-layer-from-catalog.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsC,MAAM,EAAE,MAAM,eAAe,CAAA;AAC1E,OAAO,EAGL,YAAY,EAEb,MAAM,2CAA2C,CAAA;;AAOlD,qBAuBa,4BAA6B,YAAW,MAAM;IAC7C,OAAO,CAAC,YAAY;gBAAZ,YAAY,EAAE,YAAY;IAE9C,QAAQ;yCAHG,4BAA4B;2CAA5B,4BAA4B;CAUxC"}
1
+ {"version":3,"file":"add-layer-from-catalog.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsC,MAAM,EAAE,MAAM,eAAe,CAAA;AAC1E,OAAO,EAIL,YAAY,EAEb,MAAM,2CAA2C,CAAA;;AAOlD,qBAuBa,4BAA6B,YAAW,MAAM;IAC7C,OAAO,CAAC,YAAY;gBAAZ,YAAY,EAAE,YAAY;IAE9C,QAAQ;yCAHG,4BAA4B;2CAA5B,4BAA4B;CAUxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"add-layer-from-file.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAA;AAC5D,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;AAShD,qBAOa,yBAAyB;IAQlC,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,iBAAiB;IAR3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;IAClC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAO;IACpC,OAAO,UAAQ;IACf,QAAQ,CAAC,gBAAgB,WAAe;IACxC,QAAQ,CAAC,WAAW,WAAU;gBAGpB,SAAS,EAAE,SAAS,EACpB,iBAAiB,EAAE,iBAAiB;IAGxC,gBAAgB,CAAC,IAAI,EAAE,IAAI;YAYnB,QAAQ;IA0BtB,OAAO,CAAC,eAAe;IA4BvB,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,cAAc;yCAvFX,yBAAyB;2CAAzB,yBAAyB;CAoGrC"}
1
+ {"version":3,"file":"add-layer-from-file.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAA;AAC5D,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;AAShD,qBAYa,yBAAyB;IAQlC,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,iBAAiB;IAR3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;IAClC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAO;IACpC,OAAO,UAAQ;IACf,QAAQ,CAAC,gBAAgB,WAAe;IACxC,QAAQ,CAAC,WAAW,WAAU;gBAGpB,SAAS,EAAE,SAAS,EACpB,iBAAiB,EAAE,iBAAiB;IAGxC,gBAAgB,CAAC,IAAI,EAAE,IAAI;YAYnB,QAAQ;IA0BtB,OAAO,CAAC,eAAe;IA4BvB,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,cAAc;yCAvFX,yBAAyB;2CAAzB,yBAAyB;CAoGrC"}
@@ -1 +1 @@
1
- {"version":3,"file":"add-layer-from-ogc-api.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAEjB,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAgB,OAAO,EAAE,MAAM,MAAM,CAAA;AAE5C,OAAO,EACL,cAAc,EAGf,MAAM,sCAAsC,CAAA;AAE7C,OAAO,EAAE,eAAe,EAAyB,MAAM,sBAAsB,CAAA;;AAE7E,qBAOa,2BAA4B,YAAW,MAAM;IAU5C,OAAO,CAAC,iBAAiB;IAT5B,MAAM,EAAE,MAAM,CAAA;IACb,UAAU,gCAAsC;IAE1D,SAAS,kBAAwB;IACjC,OAAO,UAAQ;IACf,MAAM,EAAE,GAAG,EAAE,CAAK;IAClB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;IAClC,kBAAkB,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,CAAA;KAAE,CAAK;gBAE/C,iBAAiB,EAAE,iBAAiB;IAExD,QAAQ;IAMF,UAAU;IAqBhB,oBAAoB;IASpB,eAAe,CAAC,KAAK,EAAE,GAAG;IAiB1B,kBAAkB,CAAC,KAAK,EAAE,GAAG;IAS7B,iBAAiB,CAAC,SAAS,EAAE,MAAM,EAAE,YAAY,EAAE,GAAG;IAMhD,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG;yCAhFjC,2BAA2B;2CAA3B,2BAA2B;CA8GvC"}
1
+ {"version":3,"file":"add-layer-from-ogc-api.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAEjB,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAgB,OAAO,EAAE,MAAM,MAAM,CAAA;AAE5C,OAAO,EAEL,cAAc,EAGf,MAAM,sCAAsC,CAAA;AAE7C,OAAO,EAAE,eAAe,EAAyB,MAAM,sBAAsB,CAAA;;AAE7E,qBAaa,2BAA4B,YAAW,MAAM;IAU5C,OAAO,CAAC,iBAAiB;IAT5B,MAAM,EAAE,MAAM,CAAA;IACb,UAAU,gCAAsC;IAE1D,SAAS,kBAAwB;IACjC,OAAO,UAAQ;IACf,MAAM,EAAE,GAAG,EAAE,CAAK;IAClB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;IAClC,kBAAkB,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,CAAA;KAAE,CAAK;gBAE/C,iBAAiB,EAAE,iBAAiB;IAExD,QAAQ;IAMF,UAAU;IAqBhB,oBAAoB;IASpB,eAAe,CAAC,KAAK,EAAE,GAAG;IAiB1B,kBAAkB,CAAC,KAAK,EAAE,GAAG;IAS7B,iBAAiB,CAAC,SAAS,EAAE,MAAM,EAAE,YAAY,EAAE,GAAG;IAMhD,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG;yCAhFjC,2BAA2B;2CAA3B,2BAA2B;CA8GvC"}
@@ -1 +1 @@
1
- {"version":3,"file":"add-layer-from-wfs.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,EAAE,MAAM,eAAe,CAAA;AACpE,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAA;AACzE,OAAO,EAAkB,OAAO,EAAE,MAAM,MAAM,CAAA;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;AAOhD,qBAOa,wBAAyB,YAAW,MAAM;IASnD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,iBAAiB;IAT3B,MAAM,SAAK;IACX,OAAO,UAAQ;IACf,MAAM,EAAE,mBAAmB,EAAE,CAAK;IAClC,WAAW,EAAE,WAAW,GAAG,IAAI,CAAO;IACtC,SAAS,kBAAwB;IACjC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAGxB,SAAS,EAAE,SAAS,EACpB,iBAAiB,EAAE,iBAAiB;IAG9C,QAAQ;IAIF,UAAU;IAuBV,QAAQ,CAAC,KAAK,EAAE,mBAAmB;yCAxC9B,wBAAwB;2CAAxB,wBAAwB;CAqDpC"}
1
+ {"version":3,"file":"add-layer-from-wfs.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,EAAE,MAAM,eAAe,CAAA;AACpE,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAA;AACzE,OAAO,EAAkB,OAAO,EAAE,MAAM,MAAM,CAAA;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;AAOhD,qBAaa,wBAAyB,YAAW,MAAM;IASnD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,iBAAiB;IAT3B,MAAM,SAAK;IACX,OAAO,UAAQ;IACf,MAAM,EAAE,mBAAmB,EAAE,CAAK;IAClC,WAAW,EAAE,WAAW,GAAG,IAAI,CAAO;IACtC,SAAS,kBAAwB;IACjC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAGxB,SAAS,EAAE,SAAS,EACpB,iBAAiB,EAAE,iBAAiB;IAG9C,QAAQ;IAIF,UAAU;IAuBV,QAAQ,CAAC,KAAK,EAAE,mBAAmB;yCAxC9B,wBAAwB;2CAAxB,wBAAwB;CAqDpC"}
@@ -1 +1 @@
1
- {"version":3,"file":"add-layer-from-wms.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,EAAE,MAAM,eAAe,CAAA;AACpE,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAChD,OAAO,EAAkB,OAAO,EAAE,MAAM,MAAM,CAAA;;AAO9C,qBAOa,wBAAyB,YAAW,MAAM;IASnD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,iBAAiB;IAT3B,MAAM,SAAK;IACX,OAAO,UAAQ;IACf,MAAM,EAAE,eAAe,EAAE,CAAK;IAC9B,WAAW,EAAE,WAAW,GAAG,IAAI,CAAO;IACtC,SAAS,kBAAwB;IACjC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAGxB,SAAS,EAAE,SAAS,EACpB,iBAAiB,EAAE,iBAAiB;IAG9C,QAAQ;IAIF,UAAU;IAsBV,QAAQ,CAAC,KAAK,EAAE,eAAe;yCAvC1B,wBAAwB;2CAAxB,wBAAwB;CAoDpC"}
1
+ {"version":3,"file":"add-layer-from-wms.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,EAAE,MAAM,eAAe,CAAA;AACpE,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAChD,OAAO,EAAkB,OAAO,EAAE,MAAM,MAAM,CAAA;;AAO9C,qBAaa,wBAAyB,YAAW,MAAM;IASnD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,iBAAiB;IAT3B,MAAM,SAAK;IACX,OAAO,UAAQ;IACf,MAAM,EAAE,eAAe,EAAE,CAAK;IAC9B,WAAW,EAAE,WAAW,GAAG,IAAI,CAAO;IACtC,SAAS,kBAAwB;IACjC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAGxB,SAAS,EAAE,SAAS,EACpB,iBAAiB,EAAE,iBAAiB;IAG9C,QAAQ;IAIF,UAAU;IAsBV,QAAQ,CAAC,KAAK,EAAE,eAAe;yCAvC1B,wBAAwB;2CAAxB,wBAAwB;CAoDpC"}
@@ -1,17 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/common";
3
- import * as i2 from "../../../../ui/layout/src/lib/ui-layout.module";
4
- import * as i3 from "@angular/material/tabs";
5
- import * as i4 from "@ngx-translate/core";
6
- import * as i5 from "../../../search/src/lib/feature-search.module";
7
- import * as i6 from "@ngrx/store";
8
- import * as i7 from "../../../../ui/elements/src/lib/ui-elements.module";
9
- import * as i8 from "../../../../ui/inputs/src/lib/ui-inputs.module";
10
- import * as i9 from "./add-layer-from-ogc-api/add-layer-from-ogc-api.component";
11
- import * as i10 from "../../../../ui/inputs/src/lib/text-input/text-input.component";
2
+ import * as i1 from "@ngrx/store";
12
3
  export declare class FeatureMapModule {
13
4
  static ɵfac: i0.ɵɵFactoryDeclaration<FeatureMapModule, never>;
14
- static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureMapModule, never, [typeof i1.CommonModule, typeof i2.UiLayoutModule, typeof i3.MatTabsModule, typeof i4.TranslateModule, typeof i5.FeatureSearchModule, typeof i6.StoreFeatureModule, typeof i7.UiElementsModule, typeof i8.UiInputsModule, typeof i9.AddLayerFromOgcApiComponent, typeof i10.TextInputComponent], never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureMapModule, never, [typeof i1.StoreFeatureModule], never>;
15
6
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureMapModule>;
16
7
  }
17
8
  //# sourceMappingURL=feature-map.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"feature-map.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/map/src/lib/feature-map.module.ts"],"names":[],"mappings":";;;;;;;;;;;AAcA,qBAqBa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
1
+ {"version":3,"file":"feature-map.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/map/src/lib/feature-map.module.ts"],"names":[],"mappings":";;AAMA,qBAYa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
@@ -1 +1 @@
1
- {"version":3,"file":"geocoding.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/geocoding/geocoding.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,EAAoC,OAAO,EAAa,MAAM,MAAM,CAAA;AAE3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AACvD,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;AAMhD,qBAYa,kBAAmB,YAAW,SAAS;IAQhD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,gBAAgB;IAR1B,UAAU,SAAK;IACf,OAAO,EAAE,GAAG,EAAE,CAAK;IACnB,iBAAiB,kBAAwB;IACzC,QAAQ,gBAAsB;IAC9B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAGxB,SAAS,EAAE,SAAS,EACpB,gBAAgB,EAAE,gBAAgB;IAsB5C,WAAW;IAKX,cAAc,CAAC,UAAU,EAAE,MAAM;IASjC,WAAW;IAML,cAAc,CAAC,MAAM,EAAE,GAAG;IAY1B,WAAW,CAAC,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC;IAYzC,aAAa,CAAC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IAcvD,YAAY;yCAzFD,kBAAkB;2CAAlB,kBAAkB;CA8F9B"}
1
+ {"version":3,"file":"geocoding.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/geocoding/geocoding.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,EAAoC,OAAO,EAAa,MAAM,MAAM,CAAA;AAE3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AACvD,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;AAMhD,qBAOa,kBAAmB,YAAW,SAAS;IAQhD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,gBAAgB;IAR1B,UAAU,SAAK;IACf,OAAO,EAAE,GAAG,EAAE,CAAK;IACnB,iBAAiB,kBAAwB;IACzC,QAAQ,gBAAsB;IAC9B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAGxB,SAAS,EAAE,SAAS,EACpB,gBAAgB,EAAE,gBAAgB;IAsB5C,WAAW;IAKX,cAAc,CAAC,UAAU,EAAE,MAAM;IASjC,WAAW;IAML,cAAc,CAAC,MAAM,EAAE,GAAG;IAY1B,WAAW,CAAC,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC;IAYzC,aAAa,CAAC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IAcvD,YAAY;yCAzFD,kBAAkB;2CAAlB,kBAAkB;CA8F9B"}
@@ -1 +1 @@
1
- {"version":3,"file":"layers-panel.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAEhD,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;;AAqBtD,qBA6Ba,oBAAoB;IAGnB,OAAO,CAAC,SAAS;IAF7B,OAAO,+CAAiE;IACxE,MAAM,SAAK;gBACS,SAAS,EAAE,SAAS;IAElC,WAAW,CAAC,KAAK,EAAE,MAAM;IAQzB,QAAQ,CAAC,KAAK,EAAE,eAAe;yCAb1B,oBAAoB;2CAApB,oBAAoB;CAoBhC"}
1
+ {"version":3,"file":"layers-panel.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAEhD,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;;AAqBtD,qBA8Ba,oBAAoB;IAGnB,OAAO,CAAC,SAAS;IAF7B,OAAO,+CAAiE;IACxE,MAAM,SAAK;gBACS,SAAS,EAAE,SAAS;IAElC,WAAW,CAAC,KAAK,EAAE,MAAM;IAQzB,QAAQ,CAAC,KAAK,EAAE,eAAe;yCAb1B,oBAAoB;2CAApB,oBAAoB;CAoBhC"}
@@ -1,13 +1,11 @@
1
1
  export * from './lib/feature-record.module';
2
- export * from './lib/gn-ui-version.token';
3
2
  export * from './lib/state';
4
3
  export * from './lib/data-view-permalink/data-view-permalink.component';
5
4
  export * from './lib/data-view/data-view.component';
6
5
  export * from './lib/data-view-share/data-view-share.component';
7
6
  export * from './lib/data-view-web-component/data-view-web-component.component';
8
7
  export * from './lib/external-viewer-button/external-viewer-button.component';
9
- export * from './lib/map-view/map-view.component';
10
8
  export * from './lib/gpf-api-dl/gpf-api-dl.component';
9
+ export * from './lib/map-view/map-view.component';
11
10
  export * from './lib/record-meta/record-meta.component';
12
- export * from './lib/external-viewer-button/external-viewer-button.component';
13
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/feature/record/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAA;AAC3C,cAAc,2BAA2B,CAAA;AACzC,cAAc,aAAa,CAAA;AAC3B,cAAc,yDAAyD,CAAA;AACvE,cAAc,qCAAqC,CAAA;AACnD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,iEAAiE,CAAA;AAC/E,cAAc,+DAA+D,CAAA;AAC7E,cAAc,mCAAmC,CAAA;AACjD,cAAc,uCAAuC,CAAA;AACrD,cAAc,yCAAyC,CAAA;AACvD,cAAc,+DAA+D,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/feature/record/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAA;AAC3C,cAAc,aAAa,CAAA;AAC3B,cAAc,yDAAyD,CAAA;AACvE,cAAc,qCAAqC,CAAA;AACnD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,iEAAiE,CAAA;AAC/E,cAAc,+DAA+D,CAAA;AAC7E,cAAc,uCAAuC,CAAA;AACrD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA"}
@@ -1,27 +1,38 @@
1
+ import { EventEmitter } from '@angular/core';
1
2
  import { BehaviorSubject } from 'rxjs';
2
3
  import { MdViewFacade } from '../state';
3
4
  import { DatavizConfigurationModel } from '../../../../../../libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model';
4
- import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record';
5
+ import { DatasetOnlineResource, DatasetServiceDistribution } from '../../../../../../libs/common/domain/src/lib/model/record';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class DataViewComponent {
7
8
  private mdViewFacade;
8
9
  mode: 'table' | 'chart';
9
10
  displaySource: boolean;
10
11
  set exceedsLimit(value: boolean);
12
+ set selectedView(value: string);
11
13
  chartConfig$: BehaviorSubject<DatavizConfigurationModel>;
14
+ linkSelected: EventEmitter<DatasetOnlineResource>;
12
15
  cacheActive$: import("rxjs").Observable<boolean>;
13
- hidePreview: boolean;
14
16
  excludeWfs$: BehaviorSubject<boolean>;
15
- compatibleDataLinks$: import("rxjs").Observable<DatasetOnlineResource[]>;
17
+ compatibleDataLinks$: import("rxjs").Observable<((DatasetServiceDistribution & {
18
+ type: import("../../../../../common/domain/src/lib/model/record/metadata.model").OnlineResourceType;
19
+ }) | (import("../../../../../common/domain/src/lib/model/record/metadata.model").DatasetDownloadDistribution & {
20
+ type: import("../../../../../common/domain/src/lib/model/record/metadata.model").OnlineResourceType;
21
+ }) | (import("../../../../../common/domain/src/lib/model/record/metadata.model").OnlineLinkResource & {
22
+ type: import("../../../../../common/domain/src/lib/model/record/metadata.model").OnlineResourceType;
23
+ }) | (import("../../../../../common/domain/src/lib/model/record/metadata.model").ServiceEndpoint & {
24
+ type: import("../../../../../common/domain/src/lib/model/record/metadata.model").OnlineResourceType;
25
+ }))[]>;
16
26
  dropdownChoices$: import("rxjs").Observable<{
17
27
  label: string;
18
28
  value: string;
19
29
  }[]>;
20
30
  selectedLink$: BehaviorSubject<DatasetOnlineResource>;
31
+ hidePreview$: import("rxjs").Observable<boolean>;
21
32
  constructor(mdViewFacade: MdViewFacade);
22
33
  setChartConfig(event: DatavizConfigurationModel): void;
23
34
  selectLink(linkAsString: string): void;
24
35
  static ɵfac: i0.ɵɵFactoryDeclaration<DataViewComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<DataViewComponent, "gn-ui-data-view", never, { "mode": { "alias": "mode"; "required": false; }; "displaySource": { "alias": "displaySource"; "required": false; }; "exceedsLimit": { "alias": "exceedsLimit"; "required": false; }; }, { "chartConfig$": "chartConfig$"; }, never, never, true, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<DataViewComponent, "gn-ui-data-view", never, { "mode": { "alias": "mode"; "required": false; }; "displaySource": { "alias": "displaySource"; "required": false; }; "exceedsLimit": { "alias": "exceedsLimit"; "required": false; }; "selectedView": { "alias": "selectedView"; "required": false; }; }, { "chartConfig$": "chartConfig$"; "linkSelected": "linkSelected"; }, never, never, true, never>;
26
37
  }
27
38
  //# sourceMappingURL=data-view.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"data-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/data-view/data-view.component.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,eAAe,EAAqB,MAAM,MAAM,CAAA;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AACvC,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;;AAUjG,qBAea,iBAAiB;IAqChB,OAAO,CAAC,YAAY;IApCvB,IAAI,EAAE,OAAO,GAAG,OAAO,CAAA;IACvB,aAAa,UAAO;IAC7B,IAAa,YAAY,CAAC,KAAK,EAAE,OAAO,EAEvC;IACS,YAAY,6CAAuD;IAC7E,YAAY,qCAEX;IACD,WAAW,UAAQ;IACnB,WAAW,2BAA6B;IACxC,oBAAoB,qDASnB;IACD,gBAAgB;;;SAYf;IACD,aAAa,yCAAmD;gBAE5C,YAAY,EAAE,YAAY;IAE9C,cAAc,CAAC,KAAK,EAAE,yBAAyB;IAI/C,UAAU,CAAC,YAAY,EAAE,MAAM;yCA3CpB,iBAAiB;2CAAjB,iBAAiB;CA4D7B"}
1
+ {"version":3,"file":"data-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/data-view/data-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,eAAe,EAAiB,MAAM,MAAM,CAAA;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AACvC,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EACL,qBAAqB,EACrB,0BAA0B,EAC3B,MAAM,2DAA2D,CAAA;;AAUlE,qBAgBa,iBAAiB;IA8ChB,OAAO,CAAC,YAAY;IA7CvB,IAAI,EAAE,OAAO,GAAG,OAAO,CAAA;IACvB,aAAa,UAAO;IAC7B,IAAa,YAAY,CAAC,KAAK,EAAE,OAAO,EAEvC;IACD,IAAa,YAAY,CAAC,KAAK,EAAE,MAAM,EAItC;IACS,YAAY,6CAAuD;IACnE,YAAY,sCAA4C;IAClE,YAAY,qCAEX;IACD,WAAW,2BAA6B;IACxC,oBAAoB;;;;;;;;WASnB;IACD,gBAAgB;;;SAYf;IACD,aAAa,yCAAmD;IAEhE,YAAY,qCAEX;gBAEmB,YAAY,EAAE,YAAY;IAE9C,cAAc,CAAC,KAAK,EAAE,yBAAyB;IAI/C,UAAU,CAAC,YAAY,EAAE,MAAM;yCApDpB,iBAAiB;2CAAjB,iBAAiB;CA0D7B"}
@@ -7,13 +7,12 @@ export declare const WEB_COMPONENT_EMBEDDER_URL: InjectionToken<string>;
7
7
  export declare class DataViewPermalinkComponent {
8
8
  private config;
9
9
  protected wcEmbedderBaseUrl: string;
10
- private version;
11
10
  private facade;
12
11
  viewType$: BehaviorSubject<string>;
13
12
  set viewType(value: string);
14
13
  permalinkUrl$: import("rxjs").Observable<string>;
15
- constructor(config: Configuration, wcEmbedderBaseUrl: string, version: string, facade: MdViewFacade);
16
- static ɵfac: i0.ɵɵFactoryDeclaration<DataViewPermalinkComponent, [null, { optional: true; }, null, null]>;
14
+ constructor(config: Configuration, wcEmbedderBaseUrl: string, facade: MdViewFacade);
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataViewPermalinkComponent, [null, { optional: true; }, null]>;
17
16
  static ɵcmp: i0.ɵɵComponentDeclaration<DataViewPermalinkComponent, "gn-ui-data-view-permalink", never, { "viewType": { "alias": "viewType"; "required": false; }; }, {}, never, never, true, never>;
18
17
  }
19
18
  //# sourceMappingURL=data-view-permalink.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"data-view-permalink.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,cAAc,EAGf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAC1E,OAAO,EAAE,eAAe,EAAsB,MAAM,MAAM,CAAA;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;;AAMvC,eAAO,MAAM,0BAA0B,wBAEtC,CAAA;AAED,qBAQa,0BAA0B;IA4CZ,OAAO,CAAC,MAAM;IAGrC,SAAS,CAAC,iBAAiB,EAAE,MAAM;IACZ,OAAO,CAAC,OAAO;IACtC,OAAO,CAAC,MAAM;IAhDhB,SAAS,0BAAqC;IAC9C,IACI,QAAQ,CAAC,KAAK,EAAE,MAAM,EAEzB;IAED,aAAa,oCAkCZ;gBAGgC,MAAM,EAAE,aAAa,EAG1C,iBAAiB,EAAE,MAAM,EACJ,OAAO,EAAE,MAAM,EACtC,MAAM,EAAE,YAAY;yCAjDnB,0BAA0B;2CAA1B,0BAA0B;CAmDtC"}
1
+ {"version":3,"file":"data-view-permalink.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,cAAc,EAGf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAC1E,OAAO,EAAE,eAAe,EAAsB,MAAM,MAAM,CAAA;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;;AAMvC,eAAO,MAAM,0BAA0B,wBAEtC,CAAA;AAED,qBAQa,0BAA0B;IA4CZ,OAAO,CAAC,MAAM;IAGrC,SAAS,CAAC,iBAAiB,EAAE,MAAM;IACnC,OAAO,CAAC,MAAM;IA/ChB,SAAS,0BAAqC;IAC9C,IACI,QAAQ,CAAC,KAAK,EAAE,MAAM,EAEzB;IAED,aAAa,oCAkCZ;gBAGgC,MAAM,EAAE,aAAa,EAG1C,iBAAiB,EAAE,MAAM,EAC3B,MAAM,EAAE,YAAY;yCAhDnB,0BAA0B;2CAA1B,0BAA0B;CAkDtC"}
@@ -4,12 +4,11 @@ import { BehaviorSubject } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class DataViewWebComponentComponent {
6
6
  private config;
7
- private version;
8
7
  private facade;
9
8
  viewType$: BehaviorSubject<string>;
10
9
  set viewType(value: string);
11
10
  webComponentHtml$: import("rxjs").Observable<string>;
12
- constructor(config: Configuration, version: string, facade: MdViewFacade);
11
+ constructor(config: Configuration, facade: MdViewFacade);
13
12
  static ɵfac: i0.ɵɵFactoryDeclaration<DataViewWebComponentComponent, never>;
14
13
  static ɵcmp: i0.ɵɵComponentDeclaration<DataViewWebComponentComponent, "gn-ui-data-view-web-component", never, { "viewType": { "alias": "viewType"; "required": false; }; }, {}, never, never, true, never>;
15
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"data-view-web-component.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AACvC,OAAO,EAAE,eAAe,EAAsB,MAAM,MAAM,CAAA;;AAM1D,qBAQa,6BAA6B;IA4Ef,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IACtC,OAAO,CAAC,MAAM;IA7EhB,SAAS,0BAAqC;IAC9C,IACI,QAAQ,CAAC,KAAK,EAAE,MAAM,EAEzB;IACD,iBAAiB,oCAmEhB;gBAGgC,MAAM,EAAE,aAAa,EACrB,OAAO,EAAE,MAAM,EACtC,MAAM,EAAE,YAAY;yCA9EnB,6BAA6B;2CAA7B,6BAA6B;CAgFzC"}
1
+ {"version":3,"file":"data-view-web-component.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AACvC,OAAO,EAAE,eAAe,EAAsB,MAAM,MAAM,CAAA;;AAM1D,qBAQa,6BAA6B;IA4Ef,OAAO,CAAC,MAAM;IACrC,OAAO,CAAC,MAAM;IA5EhB,SAAS,0BAAqC;IAC9C,IACI,QAAQ,CAAC,KAAK,EAAE,MAAM,EAEzB;IACD,iBAAiB,oCAmEhB;gBAGgC,MAAM,EAAE,aAAa,EAC5C,MAAM,EAAE,YAAY;yCA7EnB,6BAA6B;2CAA7B,6BAA6B;CA+EzC"}
@@ -9,11 +9,12 @@ export declare class ExternalViewerButtonComponent {
9
9
  private urlTemplate;
10
10
  private openinNewTab;
11
11
  link: DatasetOnlineResource;
12
+ extraClass: string;
12
13
  get externalViewer(): boolean;
13
14
  get supportedLinkLayerType(): "wms" | "wfs" | "geojson";
14
15
  constructor(translateService: TranslateService, urlTemplate: string, openinNewTab: boolean);
15
16
  openInExternalViewer(): void;
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<ExternalViewerButtonComponent, [null, { optional: true; }, null]>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<ExternalViewerButtonComponent, "gn-ui-external-viewer-button", never, { "link": { "alias": "link"; "required": false; }; }, {}, never, never, true, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExternalViewerButtonComponent, "gn-ui-external-viewer-button", never, { "link": { "alias": "link"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, true, never>;
18
19
  }
19
20
  //# sourceMappingURL=external-viewer-button.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"external-viewer-button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,cAAc,EAGf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;AAEjG,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AASvE,eAAO,MAAM,4BAA4B,wBAExC,CAAA;AACD,eAAO,MAAM,4BAA4B,yBAGxC,CAAA;AAED,qBASa,6BAA6B;IA0BtC,OAAO,CAAC,gBAAgB;IAGxB,OAAO,CAAC,WAAW;IAEnB,OAAO,CAAC,YAAY;IA9Bb,IAAI,EAAE,qBAAqB,CAAA;IAEpC,IAAI,cAAc,YAEjB;IAED,IAAI,sBAAsB,8BAgBzB;gBAGS,gBAAgB,EAAE,gBAAgB,EAGlC,WAAW,EAAE,MAAM,EAEnB,YAAY,EAAE,OAAO;IAG/B,oBAAoB;yCAlCT,6BAA6B;2CAA7B,6BAA6B;CAgDzC"}
1
+ {"version":3,"file":"external-viewer-button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,cAAc,EAGf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;AAEjG,OAAO,EAAiB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AASrE,eAAO,MAAM,4BAA4B,wBAExC,CAAA;AACD,eAAO,MAAM,4BAA4B,yBAGxC,CAAA;AAED,qBASa,6BAA6B;IA2BtC,OAAO,CAAC,gBAAgB;IAGxB,OAAO,CAAC,WAAW;IAEnB,OAAO,CAAC,YAAY;IA/Bb,IAAI,EAAE,qBAAqB,CAAA;IAC3B,UAAU,SAAK;IAExB,IAAI,cAAc,YAEjB;IAED,IAAI,sBAAsB,8BAgBzB;gBAGS,gBAAgB,EAAE,gBAAgB,EAGlC,WAAW,EAAE,MAAM,EAEnB,YAAY,EAAE,OAAO;IAG/B,oBAAoB;yCAnCT,6BAA6B;2CAA7B,6BAA6B;CAiDzC"}
@@ -2,20 +2,16 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "@angular/common";
3
3
  import * as i2 from "@ngrx/store";
4
4
  import * as i3 from "@ngrx/effects";
5
- import * as i4 from "../../../../ui/layout/src/lib/ui-layout.module";
6
- import * as i5 from "../../../map/src/lib/feature-map.module";
7
- import * as i6 from "../../../catalog/src/lib/feature-catalog.module";
8
- import * as i7 from "../../../../ui/inputs/src/lib/ui-inputs.module";
9
- import * as i8 from "../../../../ui/elements/src/lib/ui-elements.module";
10
- import * as i9 from "@angular/material/tabs";
11
- import * as i10 from "../../../../ui/widgets/src/lib/ui-widgets.module";
12
- import * as i11 from "@ngx-translate/core";
13
- import * as i12 from "../../../../ui/dataviz/src/lib/data-table/data-table.component";
14
- import * as i13 from "@ng-icons/core";
15
- import * as i14 from "../../../../ui/inputs/src/lib/dropdown-selector/dropdown-selector.component";
5
+ import * as i4 from "../../../map/src/lib/feature-map.module";
6
+ import * as i5 from "../../../catalog/src/lib/feature-catalog.module";
7
+ import * as i6 from "@angular/material/tabs";
8
+ import * as i7 from "@ngx-translate/core";
9
+ import * as i8 from "../../../../ui/dataviz/src/lib/data-table/data-table.component";
10
+ import * as i9 from "@ng-icons/core";
11
+ import * as i10 from "../../../../ui/inputs/src/lib/dropdown-selector/dropdown-selector.component";
16
12
  export declare class FeatureRecordModule {
17
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FeatureRecordModule, never>;
18
- static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureRecordModule, never, [typeof i1.CommonModule, typeof i2.StoreFeatureModule, typeof i3.EffectsFeatureModule, typeof i4.UiLayoutModule, typeof i5.FeatureMapModule, typeof i6.FeatureCatalogModule, typeof i7.UiInputsModule, typeof i8.UiElementsModule, typeof i9.MatTabsModule, typeof i10.UiWidgetsModule, typeof i11.TranslateModule, typeof i12.DataTableComponent, typeof i13.NgIconsModule, typeof i14.DropdownSelectorComponent], never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureRecordModule, never, [typeof i1.CommonModule, typeof i2.StoreFeatureModule, typeof i3.EffectsFeatureModule, typeof i4.FeatureMapModule, typeof i5.FeatureCatalogModule, typeof i6.MatTabsModule, typeof i7.TranslateDirective, typeof i7.TranslatePipe, typeof i8.DataTableComponent, typeof i9.NgIconsModule, typeof i10.DropdownSelectorComponent], never>;
19
15
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureRecordModule>;
20
16
  }
21
17
  //# sourceMappingURL=feature-record.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"feature-record.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/record/src/lib/feature-record.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAwBA,qBAwBa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
1
+ {"version":3,"file":"feature-record.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/record/src/lib/feature-record.module.ts"],"names":[],"mappings":";;;;;;;;;;;AAkBA,qBAqBa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
@@ -1 +1 @@
1
- {"version":3,"file":"gpf-api-dl.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,MAAM,EACP,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAA;AACtG,OAAO,EAAE,eAAe,EAAE,UAAU,EAAgC,MAAM,MAAM,CAAA;AAChF,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAE,MAAM,EAA6B,MAAM,sCAAsC,CAAA;;AAMxF,MAAM,WAAW,KAAK;IACpB,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,KAAK,CAAC,UAAU,CAAC,CAAA;IACzB,IAAI,EAAE,KAAK,CAAC,UAAU,CAAC,CAAA;CACxB;AAED,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CACvB;AACD,MAAM,WAAW,OAAO;IACtB,GAAG,EAAE,MAAM,CAAA;CACZ;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,EAAE,CAAA;IACd,MAAM,EAAE,MAAM,EAAE,CAAA;IAChB,WAAW,EAAE,MAAM,EAAE,CAAA;IACrB,GAAG,EAAE,MAAM,EAAE,CAAA;CACd;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CACvB;AAED,MAAM,WAAW,KAAK;IACpB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAA;IACjB,IAAI,EAAE,GAAG,CAAA;CACV;AAED,qBAaa,iBAAkB,YAAW,MAAM;IAiBlC,SAAS,CAAC,IAAI,EAAE,UAAU;IAhBtC,MAAM,UAAQ;IACd,SAAS,UAAQ;IACjB,YAAY,SAAK;IACjB,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,0BAA0B;IACtC,KAAK,0BAA0B;IAC/B,OAAO,0BAA0B;IACjC,IAAI,0BAA0B;IAC9B,KAAK,0BAAyB;IAC9B,GAAG,SACgF;IACnF,OAAO,EAAE,GAAG,CAAA;IACZ,kBAAkB,EAAE,MAAM,EAAE,CAAA;IAC5B,oBAAoB,EAAE,MAAM,EAAE,CAAA;IAC9B,iBAAiB,EAAE,MAAM,EAAE,CAAA;gBAEL,IAAI,EAAE,UAAU;IAEtC,IAAa,OAAO,CAAC,KAAK,EAAE,0BAA0B,EAErD;IAED,QAAQ,IAAI,IAAI;IAOhB,YAAY,kBA+BX;IAED,oBAAoB,kBAMnB;IAED,QAAQ,qBAQP;IAED,mBAAmB,CAAC,GAAG,KAAA,GAAG,UAAU,CAAC,GAAG,CAAC;IAIzC,aAAa,CAAC,OAAO,KAAA,GAAG,MAAM;IAI9B,cAAc,CAAC,KAAK,EAAE,MAAM;IAO5B,OAAO,CAAC,KAAK,EAAE,MAAM;IAOrB,MAAM,CAAC,KAAK,EAAE,MAAM;IAOpB,SAAS,CAAC,KAAK,EAAE,MAAM;IASvB,QAAQ;IAMR,UAAU,IAAI,IAAI;IAIlB,UAAU,IAAI,IAAI;IAIlB,SAAS,IAAI,IAAI;IAIX,eAAe;IAmBf,SAAS;yCA5JJ,iBAAiB;2CAAjB,iBAAiB;CA4L7B"}
1
+ {"version":3,"file":"gpf-api-dl.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,MAAM,EACP,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAA;AACtG,OAAO,EAAE,eAAe,EAAgC,UAAU,EAAE,MAAM,MAAM,CAAA;AAChF,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAE,MAAM,EAA6B,MAAM,sCAAsC,CAAA;;AAMxF,MAAM,WAAW,KAAK;IACpB,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,KAAK,CAAC,UAAU,CAAC,CAAA;IACzB,IAAI,EAAE,KAAK,CAAC,UAAU,CAAC,CAAA;CACxB;AAED,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CACvB;AACD,MAAM,WAAW,OAAO;IACtB,GAAG,EAAE,MAAM,CAAA;CACZ;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,EAAE,CAAA;IACd,MAAM,EAAE,MAAM,EAAE,CAAA;IAChB,WAAW,EAAE,MAAM,EAAE,CAAA;IACrB,GAAG,EAAE,MAAM,EAAE,CAAA;CACd;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CACvB;AAED,MAAM,WAAW,KAAK;IACpB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAA;IACjB,IAAI,EAAE,GAAG,CAAA;CACV;AAED,qBAca,iBAAkB,YAAW,MAAM;IAiBlC,SAAS,CAAC,IAAI,EAAE,UAAU;IAhBtC,MAAM,UAAQ;IACd,SAAS,UAAQ;IACjB,YAAY,SAAK;IACjB,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,0BAA0B;IACtC,KAAK,0BAA0B;IAC/B,OAAO,0BAA0B;IACjC,IAAI,0BAA0B;IAC9B,KAAK,0BAAyB;IAC9B,GAAG,SACgF;IACnF,OAAO,EAAE,GAAG,CAAA;IACZ,kBAAkB,EAAE,MAAM,EAAE,CAAA;IAC5B,oBAAoB,EAAE,MAAM,EAAE,CAAA;IAC9B,iBAAiB,EAAE,MAAM,EAAE,CAAA;gBAEL,IAAI,EAAE,UAAU;IAEtC,IAAa,OAAO,CAAC,KAAK,EAAE,0BAA0B,EAErD;IAED,QAAQ,IAAI,IAAI;IAOhB,YAAY,kBA+BX;IAED,oBAAoB,kBAMnB;IAED,QAAQ,qBAQP;IAED,mBAAmB,CAAC,GAAG,KAAA,GAAG,UAAU,CAAC,GAAG,CAAC;IAIzC,aAAa,CAAC,OAAO,KAAA,GAAG,MAAM;IAI9B,cAAc,CAAC,KAAK,EAAE,MAAM;IAO5B,OAAO,CAAC,KAAK,EAAE,MAAM;IAOrB,MAAM,CAAC,KAAK,EAAE,MAAM;IAOpB,SAAS,CAAC,KAAK,EAAE,MAAM;IASvB,QAAQ;IAMR,UAAU,IAAI,IAAI;IAIlB,UAAU,IAAI,IAAI;IAIlB,SAAS,IAAI,IAAI;IAIX,eAAe;IAmBf,SAAS;yCA5JJ,iBAAiB;2CAAjB,iBAAiB;CA4L7B"}
@@ -1 +1 @@
1
- {"version":3,"file":"gpf-api-dl-list-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAA;AAGxD,OAAO,EAAE,UAAU,EAAiB,MAAM,MAAM,CAAA;;AAEhD,qBAOa,yBAA0B,YAAW,MAAM;IAM1C,SAAS,CAAC,IAAI,EAAE,UAAU;IAL7B,IAAI,MAAA;IACJ,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,EAAE,OAAO,CAAA;gBAEL,IAAI,EAAE,UAAU;IACtC,MAAM,EAAE,UAAU,CAAC,GAAG,CAAC,CAAA;IAEvB,QAAQ,IAAI,IAAI;IAMhB,aAAa,IAAI,IAAI;IAUrB,QAAQ,CAAC,GAAG,KAAA,GAAG,IAAI;yCAzBR,yBAAyB;2CAAzB,yBAAyB;CA4BrC"}
1
+ {"version":3,"file":"gpf-api-dl-list-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAA;AAGxD,OAAO,EAAiB,UAAU,EAAE,MAAM,MAAM,CAAA;;AAGhD,qBAYa,yBAA0B,YAAW,MAAM;IAM1C,SAAS,CAAC,IAAI,EAAE,UAAU;IAL7B,IAAI,MAAA;IACJ,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,EAAE,OAAO,CAAA;gBAEL,IAAI,EAAE,UAAU;IACtC,MAAM,EAAE,UAAU,CAAC,GAAG,CAAC,CAAA;IAEvB,QAAQ,IAAI,IAAI;IAMhB,aAAa,IAAI,IAAI;IAUrB,QAAQ,CAAC,GAAG,KAAA,GAAG,IAAI;yCAzBR,yBAAyB;2CAAzB,yBAAyB;CA4BrC"}
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, ChangeDetectorRef } from '@angular/core';
1
+ import { AfterViewInit, ChangeDetectorRef, EventEmitter } from '@angular/core';
2
2
  import { MapUtilsService } from '../../../../../../libs/feature/map/src';
3
3
  import { BehaviorSubject, Observable } from 'rxjs';
4
4
  import { MdViewFacade } from '../state/mdview.facade';
@@ -17,23 +17,31 @@ export declare class MapViewComponent implements AfterViewInit {
17
17
  private changeRef;
18
18
  private translateService;
19
19
  set exceedsLimit(value: boolean);
20
+ set selectedView(value: string);
20
21
  displaySource: boolean;
22
+ linkSelected: EventEmitter<DatasetOnlineResource>;
21
23
  mapContainer: MapContainerComponent;
22
24
  excludeWfs$: BehaviorSubject<boolean>;
23
25
  hidePreview: boolean;
24
26
  selection: Feature;
25
27
  showLegend: boolean;
26
28
  legendExists: boolean;
29
+ loading: boolean;
30
+ error: any;
31
+ selectLinkToDisplay(i: number): void;
32
+ selectStyleToDisplay(i: number): void;
27
33
  toggleLegend(): void;
28
- onLegendStatusChange(status: boolean): void;
34
+ onLegendStatusChange(v: boolean): void;
29
35
  compatibleMapLinks$: Observable<any[]>;
30
36
  dropdownChoices$: Observable<{
31
37
  label: string;
32
38
  value: number;
33
39
  }[]>;
34
40
  selectedLinkIndex$: BehaviorSubject<number>;
35
- loading: boolean;
36
- error: any;
41
+ private selectedStyleIndex$;
42
+ selectedSourceLink$: Observable<any>;
43
+ styleLinks$: Observable<any>;
44
+ styleDropdownChoices$: Observable<any>;
37
45
  selectedLink$: Observable<any>;
38
46
  currentLayers$: Observable<any[]>;
39
47
  mapContext$: Observable<MapContext>;
@@ -43,9 +51,8 @@ export declare class MapViewComponent implements AfterViewInit {
43
51
  onSourceLoadError(error: SourceLoadErrorEvent): void;
44
52
  resetSelection(): void;
45
53
  getLayerFromLink(link: DatasetOnlineResource): Observable<MapContextLayer>;
46
- selectLinkToDisplay(link: number): void;
47
54
  handleError(error: FetchError | Error | string): void;
48
55
  static ɵfac: i0.ɵɵFactoryDeclaration<MapViewComponent, never>;
49
- static ɵcmp: i0.ɵɵComponentDeclaration<MapViewComponent, "gn-ui-map-view", never, { "exceedsLimit": { "alias": "exceedsLimit"; "required": false; }; "displaySource": { "alias": "displaySource"; "required": false; }; }, {}, never, never, true, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapViewComponent, "gn-ui-map-view", never, { "exceedsLimit": { "alias": "exceedsLimit"; "required": false; }; "selectedView": { "alias": "selectedView"; "required": false; }; "displaySource": { "alias": "displaySource"; "required": false; }; }, { "linkSelected": "linkSelected"; }, never, never, true, never>;
50
57
  }
51
58
  //# sourceMappingURL=map-view.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"map-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/map-view/map-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAIlB,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,eAAe,EAAE,MAAM,wCAAwC,CAAA;AAExE,OAAO,EACL,eAAe,EAGf,UAAU,EAKX,MAAM,MAAM,CAAA;AAUb,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAA;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;AACjG,OAAO,EAEL,UAAU,EACV,eAAe,EACf,oBAAoB,EACrB,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAEL,qBAAqB,EAGtB,MAAM,mCAAmC,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAQjC,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAOvE,OAAO,EAAE,UAAU,EAAE,MAAM,8CAA8C,CAAA;;AAKzE,qBAqBa,gBAAiB,YAAW,aAAa;IAwGlD,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,gBAAgB;IA3G1B,IAAa,YAAY,CAAC,KAAK,EAAE,OAAO,EAEvC;IACQ,aAAa,UAAO;IACF,YAAY,EAAE,qBAAqB,CAAA;IAE9D,WAAW,2BAA6B;IACxC,WAAW,UAAQ;IACnB,SAAS,EAAE,OAAO,CAAA;IAClB,UAAU,UAAO;IACjB,YAAY,UAAQ;IAEpB,YAAY;IAIZ,oBAAoB,CAAC,MAAM,EAAE,OAAO;IAIpC,mBAAmB,oBAOlB;IAED,gBAAgB;;;SASf;IACD,kBAAkB,0BAAyB;IAE3C,OAAO,UAAQ;IACf,KAAK,MAAO;IAEZ,aAAa,kBAGiC;IAE9C,cAAc,oBAqBb;IAED,WAAW,EAAE,UAAU,CAAC,UAAU,CAAC,CA4BlC;gBAGS,YAAY,EAAE,YAAY,EAC1B,QAAQ,EAAE,eAAe,EACzB,WAAW,EAAE,WAAW,EACxB,SAAS,EAAE,iBAAiB,EAC5B,gBAAgB,EAAE,gBAAgB;IAGtC,eAAe;IAKrB,kBAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAI;IAU7C,iBAAiB,CAAC,KAAK,EAAE,oBAAoB;IAU7C,cAAc,IAAI,IAAI;IAQtB,gBAAgB,CAAC,IAAI,EAAE,qBAAqB,GAAG,UAAU,CAAC,eAAe,CAAC;IAkC1E,mBAAmB,CAAC,IAAI,EAAE,MAAM;IAIhC,WAAW,CAAC,KAAK,EAAE,UAAU,GAAG,KAAK,GAAG,MAAM;yCAtLnC,gBAAgB;2CAAhB,gBAAgB;CAyM5B"}
1
+ {"version":3,"file":"map-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/map-view/map-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAEjB,YAAY,EAIb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,eAAe,EAAE,MAAM,wCAAwC,CAAA;AAExE,OAAO,EACL,eAAe,EAGf,UAAU,EAKX,MAAM,MAAM,CAAA;AAWb,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAA;AACxE,OAAO,EACL,qBAAqB,EAEtB,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAEL,UAAU,EACV,eAAe,EACf,oBAAoB,EACrB,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAEL,qBAAqB,EAGtB,MAAM,mCAAmC,CAAA;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAQjC,OAAO,EAGL,gBAAgB,EACjB,MAAM,qBAAqB,CAAA;AAO5B,OAAO,EAAE,UAAU,EAAE,MAAM,8CAA8C,CAAA;;AAOzE,qBAsBa,gBAAiB,YAAW,aAAa;IAmMlD,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,gBAAgB;IAtM1B,IAAa,YAAY,CAAC,KAAK,EAAE,OAAO,EAEvC;IACD,IAAa,YAAY,CAAC,KAAK,EAAE,MAAM,EAMtC;IACQ,aAAa,UAAO;IACnB,YAAY,sCAA4C;IACvC,YAAY,EAAE,qBAAqB,CAAA;IAE9D,WAAW,2BAA6B;IACxC,WAAW,UAAQ;IACnB,SAAS,EAAE,OAAO,CAAA;IAClB,UAAU,UAAO;IACjB,YAAY,UAAQ;IACpB,OAAO,UAAQ;IACf,KAAK,MAAO;IAEZ,mBAAmB,CAAC,CAAC,EAAE,MAAM;IAI7B,oBAAoB,CAAC,CAAC,EAAE,MAAM;IAI9B,YAAY;IAGZ,oBAAoB,CAAC,CAAC,EAAE,OAAO;IAI/B,mBAAmB,oBASlB;IAED,gBAAgB;;;SASf;IAED,kBAAkB,0BAAyB;IAC3C,OAAO,CAAC,mBAAmB,CAAyB;IAEpD,mBAAmB,kBAWlB;IAED,WAAW,kBAmCV;IAED,qBAAqB,kBAcpB;IAED,aAAa,kBAOZ;IAED,cAAc,oBAwBb;IAED,WAAW,EAAE,UAAU,CAAC,UAAU,CAAC,CA4BlC;gBAGS,YAAY,EAAE,YAAY,EAC1B,QAAQ,EAAE,eAAe,EACzB,WAAW,EAAE,WAAW,EACxB,SAAS,EAAE,iBAAiB,EAC5B,gBAAgB,EAAE,gBAAgB;IAGtC,eAAe;IAKrB,kBAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAI;IAU7C,iBAAiB,CAAC,KAAK,EAAE,oBAAoB;IAU7C,cAAc,IAAI,IAAI;IAQtB,gBAAgB,CAAC,IAAI,EAAE,qBAAqB,GAAG,UAAU,CAAC,eAAe,CAAC;IAqD1E,WAAW,CAAC,KAAK,EAAE,UAAU,GAAG,KAAK,GAAG,MAAM;yCAhSnC,gBAAgB;2CAAhB,gBAAgB;CAmT5B"}
@@ -1,10 +1,10 @@
1
1
  import { OnChanges, OnDestroy } from '@angular/core';
2
2
  import { Meta } from '@angular/platform-browser';
3
- import { DatasetRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
3
+ import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class RecordMetaComponent implements OnDestroy, OnChanges {
6
6
  private meta;
7
- metadata: DatasetRecord;
7
+ metadata: CatalogRecord;
8
8
  constructor(meta: Meta);
9
9
  ngOnChanges(): void;
10
10
  ngOnDestroy(): void;
@@ -43,6 +43,16 @@ export declare const setRelated: import("@ngrx/store").ActionCreator<"[Metadata
43
43
  }) => {
44
44
  related: CatalogRecord[];
45
45
  } & import("@ngrx/store").Action<"[Metadata view] Set related records">>;
46
+ export declare const setSources: import("@ngrx/store").ActionCreator<"[Metadata view] Set sources", (props: {
47
+ sources: CatalogRecord[];
48
+ }) => {
49
+ sources: CatalogRecord[];
50
+ } & import("@ngrx/store").Action<"[Metadata view] Set sources">>;
51
+ export declare const setSourceOf: import("@ngrx/store").ActionCreator<"[Metadata view] Set has sources", (props: {
52
+ sourceOf: CatalogRecord[];
53
+ }) => {
54
+ sourceOf: CatalogRecord[];
55
+ } & import("@ngrx/store").Action<"[Metadata view] Set has sources">>;
46
56
  export declare const setChartConfig: import("@ngrx/store").ActionCreator<"[Metadata view] Set chart config", (props: {
47
57
  chartConfig: DatavizConfigurationModel;
48
58
  }) => {
@@ -1 +1 @@
1
- {"version":3,"file":"mdview.actions.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAElI,OAAO,EACL,aAAa,EACb,qBAAqB,EACrB,YAAY,EACb,MAAM,2DAA2D,CAAA;AAKlE,eAAO,MAAM,gBAAgB;UAEb,MAAM;;UAAN,MAAM;uEACrB,CAAA;AAED,eAAO,MAAM,qBAAqB;gBAEZ,OAAO,CAAC,aAAa,CAAC;;gBAAtB,OAAO,CAAC,aAAa,CAAC;4EAC3C,CAAA;AAED,eAAO,MAAM,uBAAuB;UAEpB,aAAa;;UAAb,aAAa;+EAC5B,CAAA;AAED,eAAO,MAAM,uBAAuB;iBAEb,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;+EAChD,CAAA;AAED,eAAO,MAAM,kBAAkB;cAEX,aAAa;;cAAb,aAAa;oFAChC,CAAA;AAED,eAAO,MAAM,yBAAyB;oBAEZ,qBAAqB,GAAG,IAAI;;oBAA5B,qBAAqB,GAAG,IAAI;0FACrD,CAAA;AAED,eAAO,MAAM,yBAAyB;YAEpB,MAAM;;YAAN,MAAM;0FACvB,CAAA;AAED,eAAO,MAAM,aAAa,2HAAwC,CAAA;AAKlE,eAAO,MAAM,UAAU;aAEJ,aAAa,EAAE;;aAAf,aAAa,EAAE;wEACjC,CAAA;AAKD,eAAO,MAAM,cAAc;iBAEJ,yBAAyB;;iBAAzB,yBAAyB;qEAC/C,CAAA;AAKD,eAAO,MAAM,eAAe;kBAEJ,YAAY;;kBAAZ,YAAY;qEACnC,CAAA;AAED,eAAO,MAAM,sBAAsB;iBAEZ,MAAM;;iBAAN,MAAM;6EAC5B,CAAA;AAED,eAAO,MAAM,sBAAsB;iBAEZ,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;6EAChD,CAAA;AAED,eAAO,MAAM,iBAAiB;iBAEP,MAAM;;iBAAN,MAAM;uEAC5B,CAAA;AAED,eAAO,MAAM,wBAAwB;mBAEZ,YAAY,EAAE;;mBAAd,YAAY,EAAE;+EACtC,CAAA;AAED,eAAO,MAAM,wBAAwB;iBAEd,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;+EAChD,CAAA"}
1
+ {"version":3,"file":"mdview.actions.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAElI,OAAO,EACL,aAAa,EACb,qBAAqB,EACrB,YAAY,EACb,MAAM,2DAA2D,CAAA;AAKlE,eAAO,MAAM,gBAAgB;UAEb,MAAM;;UAAN,MAAM;uEACrB,CAAA;AAED,eAAO,MAAM,qBAAqB;gBAEZ,OAAO,CAAC,aAAa,CAAC;;gBAAtB,OAAO,CAAC,aAAa,CAAC;4EAC3C,CAAA;AAED,eAAO,MAAM,uBAAuB;UAEpB,aAAa;;UAAb,aAAa;+EAC5B,CAAA;AAED,eAAO,MAAM,uBAAuB;iBAEb,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;+EAChD,CAAA;AAED,eAAO,MAAM,kBAAkB;cAEX,aAAa;;cAAb,aAAa;oFAChC,CAAA;AAED,eAAO,MAAM,yBAAyB;oBAEZ,qBAAqB,GAAG,IAAI;;oBAA5B,qBAAqB,GAAG,IAAI;0FACrD,CAAA;AAED,eAAO,MAAM,yBAAyB;YAEpB,MAAM;;YAAN,MAAM;0FACvB,CAAA;AAED,eAAO,MAAM,aAAa,2HAAwC,CAAA;AAKlE,eAAO,MAAM,UAAU;aAEJ,aAAa,EAAE;;aAAf,aAAa,EAAE;wEACjC,CAAA;AAED,eAAO,MAAM,UAAU;aAEJ,aAAa,EAAE;;aAAf,aAAa,EAAE;gEACjC,CAAA;AAED,eAAO,MAAM,WAAW;cAEJ,aAAa,EAAE;;cAAf,aAAa,EAAE;oEAClC,CAAA;AAKD,eAAO,MAAM,cAAc;iBAEJ,yBAAyB;;iBAAzB,yBAAyB;qEAC/C,CAAA;AAKD,eAAO,MAAM,eAAe;kBAEJ,YAAY;;kBAAZ,YAAY;qEACnC,CAAA;AAED,eAAO,MAAM,sBAAsB;iBAEZ,MAAM;;iBAAN,MAAM;6EAC5B,CAAA;AAED,eAAO,MAAM,sBAAsB;iBAEZ,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;6EAChD,CAAA;AAED,eAAO,MAAM,iBAAiB;iBAEP,MAAM;;iBAAN,MAAM;uEAC5B,CAAA;AAED,eAAO,MAAM,wBAAwB;mBAEZ,YAAY,EAAE;;mBAAd,YAAY,EAAE;+EACtC,CAAA;AAED,eAAO,MAAM,wBAAwB;iBAEd,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;+EAChD,CAAA"}
@@ -1,12 +1,14 @@
1
1
  import { Actions } from '@ngrx/effects';
2
2
  import { RecordsRepositoryInterface } from '../../../../../../libs/common/domain/src/lib/repository/records-repository.interface';
3
3
  import { PlatformServiceInterface } from '../../../../../../libs/common/domain/src/lib/platform.service.interface';
4
+ import { Router } from '@angular/router';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class MdViewEffects {
6
7
  private actions$;
7
8
  private recordsRepository;
8
9
  private platformServiceInterface;
9
- constructor(actions$: Actions, recordsRepository: RecordsRepositoryInterface, platformServiceInterface: PlatformServiceInterface);
10
+ private router;
11
+ constructor(actions$: Actions, recordsRepository: RecordsRepositoryInterface, platformServiceInterface: PlatformServiceInterface, router: Router);
10
12
  loadFullMetadata$: import("rxjs").Observable<({
11
13
  full: import("../../../../../common/domain/src/lib/model/record").CatalogRecord;
12
14
  } & import("@ngrx/store").Action<"[Metadata view] Load full metadata success">) | ({
@@ -21,6 +23,12 @@ export declare class MdViewEffects {
21
23
  loadRelatedRecords$: import("rxjs").Observable<{
22
24
  related: import("../../../../../common/domain/src/lib/model/record").CatalogRecord[];
23
25
  } & import("@ngrx/store").Action<"[Metadata view] Set related records">> & import("@ngrx/effects").CreateEffectMetadata;
26
+ loadSources$: import("rxjs").Observable<{
27
+ sources: import("../../../../../common/domain/src/lib/model/record").CatalogRecord[];
28
+ } & import("@ngrx/store").Action<"[Metadata view] Set sources">> & import("@ngrx/effects").CreateEffectMetadata;
29
+ loadSourceOf$: import("rxjs").Observable<{
30
+ sourceOf: import("../../../../../common/domain/src/lib/model/record").CatalogRecord[];
31
+ } & import("@ngrx/store").Action<"[Metadata view] Set has sources">> & import("@ngrx/effects").CreateEffectMetadata;
24
32
  loadUserFeedbacks$: import("rxjs").Observable<({
25
33
  userFeedbacks: import("../../../../../common/domain/src/lib/model/record").UserFeedback[];
26
34
  } & import("@ngrx/store").Action<"[Metadata view] Load UserFeedbacks Success">) | ({
@@ -1 +1 @@
1
- {"version":3,"file":"mdview.effects.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAA;AAI7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;AACjI,OAAO,EAAE,wBAAwB,EAAE,MAAM,yEAAyE,CAAA;;AAClH,qBACa,aAAa;IAEtB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,wBAAwB;gBAFxB,QAAQ,EAAE,OAAO,EACjB,iBAAiB,EAAE,0BAA0B,EAC7C,wBAAwB,EAAE,wBAAwB;IAM5D,iBAAiB;;;;;oIAchB;IAED,mBAAmB;;;;+IAkBlB;IAKD,mBAAmB;;4HASlB;IAKD,kBAAkB;;;;;oIAkBjB;IAED,oBAAoB;;;;;oIAkBnB;IAED,gBAAgB;;;;;kIAsBf;yCA7HU,aAAa;6CAAb,aAAa;CA8HzB"}
1
+ {"version":3,"file":"mdview.effects.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAA;AAI7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;AACjI,OAAO,EAAE,wBAAwB,EAAE,MAAM,yEAAyE,CAAA;AAClH,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAA;;AACxC,qBACa,aAAa;IAEtB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,wBAAwB;IAChC,OAAO,CAAC,MAAM;gBAHN,QAAQ,EAAE,OAAO,EACjB,iBAAiB,EAAE,0BAA0B,EAC7C,wBAAwB,EAAE,wBAAwB,EAClD,MAAM,EAAE,MAAM;IAMxB,iBAAiB;;;;;oIAchB;IAED,mBAAmB;;;;+IAkBlB;IAKD,mBAAmB;;4HASlB;IAED,YAAY;;oHASX;IAED,aAAa;;wHASZ;IAKD,kBAAkB;;;;;oIAkBjB;IAED,oBAAoB;;;;;oIAkBnB;IAED,gBAAgB;;;;;kIAsBf;yCApJU,aAAa;6CAAb,aAAa;CAqJzB"}