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

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 (922) hide show
  1. package/esm2022/libs/api/metadata-converter/src/index.mjs +4 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +64 -0
  3. package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +14 -0
  4. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +254 -0
  5. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/index.mjs +2 -0
  6. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.mjs +17 -0
  7. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +196 -0
  8. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +46 -0
  9. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +74 -0
  10. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.mjs +2 -0
  11. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +27 -0
  12. package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +11 -1
  13. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +2 -1
  14. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
  15. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +1 -1
  16. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  17. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +6 -6
  18. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +7 -4
  19. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +17 -29
  20. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +12 -17
  21. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +35 -7
  22. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
  23. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +76 -54
  24. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +44 -5
  25. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +99 -32
  26. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +2 -1
  27. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +3 -1
  28. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +12 -2
  29. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +59 -11
  30. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
  31. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  32. package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +1 -1
  33. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
  34. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  35. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  36. package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
  37. package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
  38. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
  39. package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +1 -1
  40. package/esm2022/libs/feature/catalog/src/index.mjs +2 -1
  41. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -4
  42. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +11 -11
  43. package/esm2022/libs/feature/catalog/src/lib/organization-url.token.mjs +4 -0
  44. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +4 -6
  45. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
  46. package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +10 -7
  47. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +40 -50
  48. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
  49. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
  50. package/esm2022/libs/feature/editor/src/index.mjs +2 -1
  51. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +3 -1
  52. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +10 -5
  53. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +10 -2
  54. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
  55. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +7 -3
  56. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +16 -6
  57. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +17 -0
  58. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +80 -0
  59. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +95 -0
  60. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +71 -0
  61. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +109 -0
  62. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +147 -0
  63. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +19 -0
  64. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +31 -38
  65. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +11 -9
  66. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +79 -0
  67. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +148 -0
  68. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +44 -0
  69. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +103 -0
  70. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +12 -16
  71. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +9 -8
  72. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +140 -5
  73. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +41 -68
  74. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +17 -15
  75. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +47 -44
  76. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -3
  77. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +13 -7
  78. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +3 -3
  79. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +8 -8
  80. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  81. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +6 -4
  82. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +207 -57
  83. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
  84. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
  85. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +12 -7
  86. package/esm2022/libs/feature/map/src/index.mjs +2 -9
  87. package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +4 -7
  88. package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +9 -15
  89. package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +13 -44
  90. package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +3 -2
  91. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +6 -6
  92. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +20 -19
  93. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +23 -14
  94. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +15 -14
  95. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +18 -13
  96. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +16 -11
  97. package/esm2022/libs/feature/map/src/lib/constant/index.mjs +1 -2
  98. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +9 -68
  99. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +43 -29
  100. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +43 -18
  101. package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +27 -0
  102. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
  103. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +12 -171
  104. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  105. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +42 -23
  106. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +13 -5
  107. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +49 -15
  108. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +21 -17
  109. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +14 -8
  110. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +40 -52
  111. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +11 -13
  112. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +2 -1
  113. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +1 -1
  114. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +9 -2
  115. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +8 -1
  116. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
  117. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +54 -9
  118. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +8 -3
  119. package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +4 -1
  120. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +7 -3
  121. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +5 -5
  122. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +7 -7
  123. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +5 -7
  124. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -8
  125. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
  126. package/esm2022/libs/ui/elements/src/index.mjs +3 -3
  127. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -3
  128. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
  129. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
  130. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
  131. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +5 -3
  132. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
  133. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +6 -5
  134. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  135. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +6 -6
  136. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
  137. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
  138. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
  139. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +24 -5
  140. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +15 -11
  141. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
  142. package/esm2022/libs/ui/inputs/src/index.mjs +6 -1
  143. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +24 -7
  144. package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +5 -3
  145. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +8 -1
  146. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +11 -4
  147. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +9 -3
  148. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +26 -24
  149. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
  150. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +19 -15
  151. package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +6 -4
  152. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +32 -0
  153. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +7 -21
  154. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +6 -17
  155. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +4 -13
  156. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +43 -0
  157. package/esm2022/libs/ui/layout/src/index.mjs +4 -1
  158. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +5 -3
  159. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
  160. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +71 -0
  161. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
  162. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
  163. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +1 -1
  164. package/esm2022/libs/ui/map/src/index.mjs +4 -3
  165. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +8 -6
  166. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +137 -0
  167. package/esm2022/libs/ui/map/src/lib/components/map-container/map-settings.token.mjs +13 -0
  168. package/esm2022/libs/ui/map/src/lib/map-utils.mjs +37 -0
  169. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
  170. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +67 -0
  171. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +33 -13
  172. package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
  173. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
  174. package/esm2022/libs/util/app-config/src/index.mjs +2 -1
  175. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
  176. package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +27 -0
  177. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
  178. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
  179. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +2 -1
  180. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
  181. package/esm2022/translations/de.json +160 -37
  182. package/esm2022/translations/en.json +161 -38
  183. package/esm2022/translations/es.json +131 -8
  184. package/esm2022/translations/fr.json +193 -70
  185. package/esm2022/translations/it.json +134 -11
  186. package/esm2022/translations/nl.json +131 -8
  187. package/esm2022/translations/pt.json +131 -8
  188. package/fesm2022/geonetwork-ui.mjs +11427 -8541
  189. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  190. package/libs/api/metadata-converter/src/index.d.ts +3 -0
  191. package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
  192. package/libs/api/metadata-converter/src/lib/common/license.d.ts +3 -0
  193. package/libs/api/metadata-converter/src/lib/common/license.d.ts.map +1 -0
  194. package/libs/api/metadata-converter/src/lib/common/url.d.ts +7 -0
  195. package/libs/api/metadata-converter/src/lib/common/url.d.ts.map +1 -0
  196. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +13 -0
  197. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -0
  198. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts +2 -0
  199. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts.map +1 -0
  200. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts +16 -0
  201. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts.map +1 -0
  202. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +20 -0
  203. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +1 -0
  204. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +9 -0
  205. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +1 -0
  206. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts +8 -0
  207. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +1 -0
  208. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts +2 -0
  209. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts.map +1 -0
  210. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts +6 -0
  211. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +1 -0
  212. package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +1 -1
  213. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  214. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
  215. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  216. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +2 -6
  217. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +1 -1
  218. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +1 -0
  219. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  220. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
  221. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
  222. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  223. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -2
  224. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
  225. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  226. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +12 -6
  227. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  228. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
  229. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
  230. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +13 -12
  231. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  232. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +59 -0
  233. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  234. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +19 -8
  235. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  236. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  237. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  238. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  239. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +24 -3
  240. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  241. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +2 -1
  242. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  243. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +9 -7
  244. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  245. package/libs/common/domain/src/lib/model/record/organization.model.d.ts +1 -0
  246. package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -1
  247. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  248. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  249. package/libs/common/domain/src/lib/platform.service.interface.d.ts +18 -1
  250. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  251. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +24 -0
  252. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  253. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
  254. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
  255. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
  256. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
  257. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  258. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +1 -1
  259. package/libs/feature/catalog/src/index.d.ts +1 -0
  260. package/libs/feature/catalog/src/index.d.ts.map +1 -1
  261. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +2 -1
  262. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  263. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  264. package/libs/feature/catalog/src/lib/organization-url.token.d.ts +3 -0
  265. package/libs/feature/catalog/src/lib/organization-url.token.d.ts.map +1 -0
  266. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
  267. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
  268. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  269. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +10 -9
  270. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -1
  271. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +13 -20
  272. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
  273. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
  274. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  275. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
  276. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  277. package/libs/feature/editor/src/index.d.ts +1 -0
  278. package/libs/feature/editor/src/index.d.ts.map +1 -1
  279. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +6 -0
  280. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  281. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
  282. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  283. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +5 -4
  284. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  285. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
  286. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  287. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
  288. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  289. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
  290. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  291. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +8 -0
  292. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  293. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +33 -0
  294. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
  295. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +34 -0
  296. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -0
  297. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
  298. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
  299. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts +38 -0
  300. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -0
  301. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +41 -0
  302. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -0
  303. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +9 -0
  304. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts.map +1 -0
  305. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +11 -19
  306. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  307. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +6 -4
  308. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  309. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +15 -0
  310. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -0
  311. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
  312. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -0
  313. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +15 -0
  314. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -0
  315. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +31 -0
  316. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
  317. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +4 -6
  318. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  319. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +4 -3
  320. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
  321. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +28 -0
  322. 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
  323. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +10 -16
  324. 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
  325. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +5 -5
  326. 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
  327. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +18 -20
  328. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  329. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -2
  330. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  331. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +7 -7
  332. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  333. package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
  334. package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
  335. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -1
  336. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  337. package/libs/feature/editor/src/lib/fields.config.d.ts +55 -2
  338. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  339. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +42 -0
  340. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
  341. package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
  342. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  343. package/libs/feature/editor/src/lib/services/editor.service.d.ts +4 -3
  344. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  345. package/libs/feature/map/src/index.d.ts +1 -8
  346. package/libs/feature/map/src/index.d.ts.map +1 -1
  347. package/libs/feature/map/src/lib/+state/map.actions.d.ts +13 -39
  348. package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -1
  349. package/libs/feature/map/src/lib/+state/map.facade.d.ts +9 -10
  350. package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -1
  351. package/libs/feature/map/src/lib/+state/map.reducer.d.ts +4 -2
  352. package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -1
  353. package/libs/feature/map/src/lib/+state/map.selectors.d.ts +6 -1
  354. package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -1
  355. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +1 -1
  356. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  357. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +8 -10
  358. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  359. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +1 -1
  360. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  361. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +3 -3
  362. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  363. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +2 -2
  364. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  365. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +2 -2
  366. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  367. package/libs/feature/map/src/lib/constant/index.d.ts +0 -1
  368. package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -1
  369. package/libs/feature/map/src/lib/feature-map.module.d.ts +12 -23
  370. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  371. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +7 -7
  372. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
  373. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +5 -4
  374. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  375. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts +14 -0
  376. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts.map +1 -0
  377. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
  378. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
  379. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +0 -30
  380. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  381. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
  382. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  383. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
  384. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  385. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
  386. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
  387. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
  388. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  389. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +10 -7
  390. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  391. package/libs/feature/record/src/lib/feature-record.module.d.ts +13 -11
  392. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  393. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +14 -20
  394. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  395. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
  396. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  397. package/libs/feature/router/src/lib/default/constants.d.ts +1 -0
  398. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  399. package/libs/feature/router/src/lib/default/router.config.d.ts +1 -0
  400. package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -1
  401. package/libs/feature/router/src/lib/default/router.service.d.ts +1 -0
  402. package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -1
  403. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -0
  404. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  405. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +18 -6
  406. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  407. package/libs/feature/search/src/lib/state/search.facade.d.ts +2 -0
  408. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  409. package/libs/feature/search/src/lib/state/selectors.d.ts +1 -0
  410. package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
  411. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  412. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +2 -2
  413. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +1 -1
  414. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -1
  415. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +9 -9
  416. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
  417. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -2
  418. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
  419. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
  420. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
  421. package/libs/ui/elements/src/index.d.ts +2 -2
  422. package/libs/ui/elements/src/index.d.ts.map +1 -1
  423. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
  424. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
  425. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
  426. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  427. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
  428. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  429. package/libs/ui/elements/src/lib/error/error.component.d.ts +3 -1
  430. package/libs/ui/elements/src/lib/error/error.component.d.ts.map +1 -1
  431. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
  432. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  433. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +2 -2
  434. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  435. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
  436. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  437. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
  438. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +5 -1
  439. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
  440. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +17 -15
  441. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  442. package/libs/ui/inputs/src/index.d.ts +5 -0
  443. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  444. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  445. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  446. package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
  447. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  448. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  449. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
  450. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  451. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +5 -3
  452. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
  453. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +24 -0
  454. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
  455. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +4 -5
  456. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  457. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +1 -1
  458. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -1
  459. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +16 -0
  460. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
  461. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
  462. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  463. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -4
  464. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  465. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +33 -35
  466. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  467. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +18 -0
  468. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
  469. package/libs/ui/layout/src/index.d.ts +3 -0
  470. package/libs/ui/layout/src/index.d.ts.map +1 -1
  471. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +2 -2
  472. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -1
  473. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +1 -1
  474. package/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.d.ts +2 -2
  475. package/libs/ui/layout/src/lib/max-lines/max-lines.component.d.ts.map +1 -0
  476. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
  477. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
  478. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
  479. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
  480. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  481. package/libs/ui/map/src/index.d.ts +3 -2
  482. package/libs/ui/map/src/index.d.ts.map +1 -1
  483. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +3 -4
  484. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
  485. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts +37 -0
  486. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +1 -0
  487. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts +18 -0
  488. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +1 -0
  489. package/libs/ui/map/src/lib/map-utils.d.ts +7 -0
  490. package/libs/ui/map/src/lib/map-utils.d.ts.map +1 -0
  491. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
  492. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
  493. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +20 -0
  494. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
  495. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +11 -5
  496. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  497. package/libs/ui/widgets/src/index.d.ts +1 -0
  498. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  499. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
  500. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
  501. package/libs/util/app-config/src/index.d.ts +1 -0
  502. package/libs/util/app-config/src/index.d.ts.map +1 -1
  503. package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
  504. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  505. package/libs/util/app-config/src/lib/map-layers.d.ts +4 -0
  506. package/libs/util/app-config/src/lib/map-layers.d.ts.map +1 -0
  507. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  508. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  509. package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
  510. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  511. package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
  512. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
  513. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
  514. package/package.json +5 -3
  515. package/src/libs/api/metadata-converter/src/index.ts +3 -0
  516. package/src/libs/api/metadata-converter/src/lib/common/license.ts +66 -0
  517. package/src/libs/api/metadata-converter/src/lib/common/url.ts +15 -0
  518. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +378 -0
  519. package/src/libs/api/metadata-converter/src/lib/dcat-ap/index.ts +1 -0
  520. package/src/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.ts +17 -0
  521. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +370 -0
  522. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.ts +95 -0
  523. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/individual-name.ts +20 -0
  524. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/keyword.mapper.ts +16 -0
  525. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/role.mapper.ts +48 -0
  526. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.ts +97 -0
  527. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/status.mapper.ts +19 -0
  528. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/update-frequency.mapper.ts +67 -0
  529. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.ts +1 -0
  530. package/src/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.ts +68 -0
  531. package/src/libs/api/metadata-converter/src/lib/find-converter.ts +13 -0
  532. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +272 -0
  533. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +7 -2
  534. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +6 -2
  535. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +38 -13
  536. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +6 -2
  537. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +110 -0
  538. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +85 -0
  539. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +73 -0
  540. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
  541. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
  542. package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
  543. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  544. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +5 -6
  545. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
  546. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +21 -43
  547. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -16
  548. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +85 -17
  549. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
  550. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +203 -157
  551. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +50 -7
  552. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +163 -59
  553. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -0
  554. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +3 -1
  555. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +13 -2
  556. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +116 -30
  557. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +29 -1
  558. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +10 -8
  559. package/src/libs/common/domain/src/lib/model/record/organization.model.ts +1 -0
  560. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  561. package/src/libs/common/domain/src/lib/platform.service.interface.ts +35 -1
  562. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +32 -0
  563. package/src/libs/common/fixtures/src/index.ts +6 -1
  564. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
  565. package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
  566. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
  567. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
  568. package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
  569. package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
  570. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
  571. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
  572. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
  573. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
  574. package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
  575. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
  576. package/src/libs/common/fixtures/src/lib/individual.fixtures.ts +61 -0
  577. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
  578. package/src/libs/common/fixtures/src/lib/map/index.ts +1 -0
  579. package/src/libs/common/fixtures/src/lib/map/map-context.fixtures.ts +53 -0
  580. package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
  581. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +65 -3
  582. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
  583. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +17 -9
  584. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
  585. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
  586. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
  587. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +45 -15
  588. package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +4 -0
  589. package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +2 -0
  590. package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
  591. package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
  592. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
  593. package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +1 -1
  594. package/src/libs/data-access/gn4/src/spec.yaml +0 -8
  595. package/src/libs/feature/catalog/src/index.ts +1 -0
  596. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +5 -2
  597. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +1 -1
  598. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +2 -2
  599. package/src/libs/feature/catalog/src/lib/organization-url.token.ts +6 -0
  600. package/src/libs/feature/catalog/src/lib/records/records.service.ts +6 -8
  601. package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
  602. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
  603. package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +6 -2
  604. package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
  605. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +5 -2
  606. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +38 -78
  607. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
  608. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
  609. package/src/libs/feature/editor/src/index.ts +1 -0
  610. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +7 -0
  611. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +28 -6
  612. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  613. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
  614. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
  615. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
  616. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +15 -0
  617. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +18 -0
  618. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +26 -0
  619. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +90 -0
  620. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +47 -0
  621. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +132 -0
  622. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
  623. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
  624. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +40 -0
  625. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +170 -0
  626. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +4 -0
  627. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +66 -0
  628. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +210 -0
  629. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.html +4 -0
  630. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.ts +21 -0
  631. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -16
  632. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +43 -42
  633. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css +8 -0
  634. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +13 -5
  635. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +1 -0
  636. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +86 -0
  637. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +34 -0
  638. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +182 -0
  639. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css +0 -0
  640. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  641. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +48 -0
  642. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
  643. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -0
  644. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +122 -0
  645. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +15 -8
  646. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +11 -14
  647. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +5 -3
  648. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +11 -4
  649. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +20 -1
  650. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +212 -1
  651. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.css +4 -0
  652. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +31 -4
  653. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +43 -86
  654. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +4 -0
  655. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +16 -14
  656. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +17 -15
  657. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +119 -70
  658. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +54 -44
  659. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -2
  660. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +52 -9
  661. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +20 -7
  662. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +2 -6
  663. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
  664. package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
  665. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
  666. package/src/libs/feature/editor/src/lib/fields.config.ts +247 -57
  667. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +65 -0
  668. package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
  669. package/src/libs/feature/editor/src/lib/services/editor.service.ts +22 -7
  670. package/src/libs/feature/map/src/index.ts +1 -8
  671. package/src/libs/feature/map/src/lib/+state/map.actions.ts +10 -25
  672. package/src/libs/feature/map/src/lib/+state/map.facade.ts +11 -15
  673. package/src/libs/feature/map/src/lib/+state/map.reducer.ts +16 -53
  674. package/src/libs/feature/map/src/lib/+state/map.selectors.ts +7 -2
  675. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
  676. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +23 -22
  677. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +22 -11
  678. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
  679. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +21 -19
  680. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
  681. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +17 -10
  682. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +1 -1
  683. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +17 -10
  684. package/src/libs/feature/map/src/lib/constant/index.ts +0 -1
  685. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -41
  686. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +38 -20
  687. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +2 -2
  688. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +39 -6
  689. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.css +0 -0
  690. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.html +4 -0
  691. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts +29 -0
  692. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
  693. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +8 -232
  694. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
  695. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +36 -19
  696. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
  697. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +11 -0
  698. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +59 -12
  699. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +29 -20
  700. package/src/libs/feature/record/src/lib/feature-record.module.ts +11 -3
  701. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +4 -4
  702. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +45 -72
  703. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +47 -32
  704. package/src/libs/feature/router/src/lib/default/constants.ts +1 -0
  705. package/src/libs/feature/router/src/lib/default/router.config.ts +1 -0
  706. package/src/libs/feature/router/src/lib/default/router.service.ts +13 -1
  707. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +8 -0
  708. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +2 -1
  709. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +8 -2
  710. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +70 -5
  711. package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
  712. package/src/libs/feature/search/src/lib/state/search.facade.ts +11 -0
  713. package/src/libs/feature/search/src/lib/state/selectors.ts +7 -0
  714. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +16 -2
  715. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +8 -6
  716. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
  717. package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +8 -1
  718. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +2 -3
  719. package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
  720. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +11 -3
  721. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +3 -7
  722. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
  723. package/src/libs/ui/elements/src/index.ts +2 -2
  724. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +29 -29
  725. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
  726. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
  727. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
  728. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  729. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
  730. package/src/libs/ui/elements/src/lib/error/error.component.html +30 -6
  731. package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -0
  732. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
  733. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +13 -17
  734. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -1
  735. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +7 -1
  736. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
  737. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
  738. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
  739. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  740. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
  741. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +1 -1
  742. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +22 -1
  743. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +10 -6
  744. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
  745. package/src/libs/ui/inputs/src/index.ts +5 -0
  746. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +25 -18
  747. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +38 -24
  748. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +19 -4
  749. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +11 -3
  750. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +2 -1
  751. package/src/libs/ui/inputs/src/lib/button/button.component.ts +15 -1
  752. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +7 -2
  753. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +14 -6
  754. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +7 -1
  755. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +7 -2
  756. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +28 -23
  757. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +7 -1
  758. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +40 -26
  759. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +4 -0
  760. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +89 -0
  761. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +92 -0
  762. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +4 -0
  763. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +76 -68
  764. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +17 -14
  765. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +5 -1
  766. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +32 -0
  767. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +14 -0
  768. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +37 -0
  769. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +3 -2
  770. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +3 -28
  771. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
  772. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
  773. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -6
  774. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +9 -0
  775. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +37 -0
  776. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +33 -0
  777. package/src/libs/ui/layout/src/index.ts +3 -0
  778. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +8 -3
  779. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +4 -3
  780. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.css +1 -1
  781. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +3 -2
  782. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.css +0 -0
  783. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.html +1 -0
  784. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.ts +9 -5
  785. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.css +0 -0
  786. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
  787. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
  788. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
  789. package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +15 -18
  790. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -1
  791. package/src/libs/ui/map/src/index.ts +3 -2
  792. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +1 -1
  793. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +8 -5
  794. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.css +0 -0
  795. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +203 -0
  796. package/src/libs/ui/map/src/lib/components/map-container/map-settings.token.ts +23 -0
  797. package/src/libs/ui/map/src/lib/map-utils.ts +54 -0
  798. package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
  799. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
  800. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +26 -0
  801. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +74 -0
  802. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +35 -10
  803. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +31 -18
  804. package/src/libs/ui/widgets/src/index.ts +1 -0
  805. package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
  806. package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
  807. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
  808. package/src/libs/util/app-config/src/index.ts +1 -0
  809. package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
  810. package/src/libs/util/app-config/src/lib/map-layers.ts +31 -0
  811. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
  812. package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
  813. package/src/libs/util/shared/src/lib/services/theme.service.ts +1 -0
  814. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
  815. package/tailwind.base.config.js +1 -0
  816. package/tailwind.base.css +53 -8
  817. package/translations/de.json +160 -37
  818. package/translations/en.json +161 -38
  819. package/translations/es.json +131 -8
  820. package/translations/fr.json +193 -70
  821. package/translations/it.json +134 -11
  822. package/translations/nl.json +131 -8
  823. package/translations/pt.json +131 -8
  824. package/translations/sk.json +133 -10
  825. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -15
  826. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
  827. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
  828. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
  829. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
  830. package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +0 -15
  831. package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +0 -2
  832. package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +0 -8
  833. package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +0 -17
  834. package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +0 -38
  835. package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +0 -19
  836. package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +0 -19
  837. package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +0 -27
  838. package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +0 -46
  839. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +0 -10
  840. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +0 -289
  841. package/esm2022/libs/ui/elements/src/lib/max-lines/max-lines.component.mjs +0 -69
  842. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -43
  843. package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +0 -40
  844. package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +0 -33
  845. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +0 -8
  846. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +0 -1
  847. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
  848. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
  849. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
  850. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
  851. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
  852. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
  853. package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
  854. package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
  855. package/libs/feature/map/src/lib/+state/map.effects.d.ts +0 -9
  856. package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +0 -1
  857. package/libs/feature/map/src/lib/+state/map.models.d.ts +0 -9
  858. package/libs/feature/map/src/lib/+state/map.models.d.ts.map +0 -1
  859. package/libs/feature/map/src/lib/constant/map-options.d.ts +0 -9
  860. package/libs/feature/map/src/lib/constant/map-options.d.ts.map +0 -1
  861. package/libs/feature/map/src/lib/constant/style.constant.d.ts +0 -4
  862. package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +0 -1
  863. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +0 -16
  864. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +0 -1
  865. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +0 -9
  866. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +0 -1
  867. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +0 -11
  868. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +0 -1
  869. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +0 -12
  870. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +0 -1
  871. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +0 -26
  872. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +0 -1
  873. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +0 -77
  874. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +0 -1
  875. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +0 -26
  876. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +0 -1
  877. package/libs/ui/elements/src/lib/max-lines/max-lines.component.d.ts.map +0 -1
  878. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -22
  879. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
  880. package/libs/ui/map/src/lib/components/map/map.component.d.ts +0 -19
  881. package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +0 -1
  882. package/libs/ui/map/src/lib/ui-map.module.d.ts +0 -13
  883. package/libs/ui/map/src/lib/ui-map.module.d.ts.map +0 -1
  884. package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
  885. package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
  886. package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
  887. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -8
  888. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -70
  889. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +0 -4
  890. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +0 -15
  891. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
  892. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
  893. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
  894. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
  895. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
  896. package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
  897. package/src/libs/feature/map/src/lib/+state/map.effects.ts +0 -7
  898. package/src/libs/feature/map/src/lib/+state/map.models.ts +0 -9
  899. package/src/libs/feature/map/src/lib/constant/map-options.ts +0 -17
  900. package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +0 -42
  901. package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +0 -10
  902. package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +0 -13
  903. package/src/libs/feature/map/src/lib/map-container/map-container.component.html +0 -1
  904. package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +0 -26
  905. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +0 -1
  906. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +0 -57
  907. package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +0 -51
  908. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +0 -95
  909. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +0 -318
  910. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -36
  911. package/src/libs/ui/map/src/lib/components/map/map.component.ts +0 -57
  912. package/src/libs/ui/map/src/lib/ui-map.module.ts +0 -19
  913. /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → contact-card/contact-card.component.css} +0 -0
  914. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css → generic-keywords/generic-keywords.component.css} +0 -0
  915. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → import-record/import-record.component.css} +0 -0
  916. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → online-resource-card/online-resource-card.component.css} +0 -0
  917. /package/src/libs/feature/{map/src/lib/map-container/map-container.component.css → editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.css} +0 -0
  918. /package/src/libs/feature/{map/src/lib/map-context/component/map-context.component.css → editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.css} +0 -0
  919. /package/src/libs/{ui/elements/src/lib/max-lines/max-lines.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.css} +0 -0
  920. /package/src/libs/{ui/map/src/lib/components/map/map.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.css} +0 -0
  921. /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
  922. /package/src/libs/ui/map/src/lib/components/{map/map.component.html → map-container/map-container.component.html} +0 -0
@@ -1,41 +1,39 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./text-input/text-input.component";
3
- import * as i2 from "./drag-and-drop-file-input/drag-and-drop-file-input.component";
4
- import * as i3 from "./chips-input/chips-input.component";
5
- import * as i4 from "./navigation-button/navigation-button.component";
6
- import * as i5 from "./star-toggle/star-toggle.component";
7
- import * as i6 from "./dropdown-multiselect/dropdown-multiselect.component";
8
- import * as i7 from "./viewport-intersector/viewport-intersector.component";
9
- import * as i8 from "./copy-text-button/copy-text-button.component";
10
- import * as i9 from "./checkbox/checkbox.component";
11
- import * as i10 from "./search-input/search-input.component";
12
- import * as i11 from "@angular/common";
13
- import * as i12 from "@ngx-translate/core";
14
- import * as i13 from "ngx-dropzone";
15
- import * as i14 from "@angular/forms";
16
- import * as i15 from "ngx-chips";
17
- import * as i16 from "../../../../util/shared/src/lib/util-shared.module";
18
- import * as i17 from "@angular/material/autocomplete";
19
- import * as i18 from "@angular/material/icon";
20
- import * as i19 from "../../../widgets/src/lib/ui-widgets.module";
21
- import * as i20 from "@angular/cdk/overlay";
22
- import * as i21 from "@angular/material/checkbox";
23
- import * as i22 from "@angular/material/tooltip";
24
- import * as i23 from "@angular/material/form-field";
25
- import * as i24 from "@angular/material/input";
26
- import * as i25 from "@angular/material/datepicker";
27
- import * as i26 from "@angular/material/core";
28
- import * as i27 from "./editable-label/editable-label.directive";
29
- import * as i28 from "./text-area/text-area.component";
30
- import * as i29 from "./button/button.component";
31
- import * as i30 from "./image-input/image-input.component";
32
- import * as i31 from "./dropdown-selector/dropdown-selector.component";
33
- import * as i32 from "./date-range-picker/date-range-picker.component";
34
- import * as i33 from "./check-toggle/check-toggle.component";
35
- import * as i34 from "./badge/badge.component";
2
+ import * as i1 from "./drag-and-drop-file-input/drag-and-drop-file-input.component";
3
+ import * as i2 from "./chips-input/chips-input.component";
4
+ import * as i3 from "./navigation-button/navigation-button.component";
5
+ import * as i4 from "./star-toggle/star-toggle.component";
6
+ import * as i5 from "./dropdown-multiselect/dropdown-multiselect.component";
7
+ import * as i6 from "./viewport-intersector/viewport-intersector.component";
8
+ import * as i7 from "./copy-text-button/copy-text-button.component";
9
+ import * as i8 from "./checkbox/checkbox.component";
10
+ import * as i9 from "@angular/common";
11
+ import * as i10 from "@ngx-translate/core";
12
+ import * as i11 from "ngx-dropzone";
13
+ import * as i12 from "@angular/forms";
14
+ import * as i13 from "ngx-chips";
15
+ import * as i14 from "../../../../util/shared/src/lib/util-shared.module";
16
+ import * as i15 from "@angular/material/autocomplete";
17
+ import * as i16 from "@angular/material/icon";
18
+ import * as i17 from "../../../widgets/src/lib/ui-widgets.module";
19
+ import * as i18 from "@angular/cdk/overlay";
20
+ import * as i19 from "@angular/material/checkbox";
21
+ import * as i20 from "@angular/material/tooltip";
22
+ import * as i21 from "@angular/material/form-field";
23
+ import * as i22 from "@angular/material/input";
24
+ import * as i23 from "@angular/material/datepicker";
25
+ import * as i24 from "@angular/material/core";
26
+ import * as i25 from "./editable-label/editable-label.directive";
27
+ import * as i26 from "./text-area/text-area.component";
28
+ import * as i27 from "./button/button.component";
29
+ import * as i28 from "./image-input/image-input.component";
30
+ import * as i29 from "./dropdown-selector/dropdown-selector.component";
31
+ import * as i30 from "./date-range-picker/date-range-picker.component";
32
+ import * as i31 from "./check-toggle/check-toggle.component";
33
+ import * as i32 from "./badge/badge.component";
36
34
  export declare class UiInputsModule {
37
35
  static ɵfac: i0.ɵɵFactoryDeclaration<UiInputsModule, never>;
38
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiInputsModule, [typeof i1.TextInputComponent, typeof i2.DragAndDropFileInputComponent, typeof i3.ChipsInputComponent, typeof i4.NavigationButtonComponent, typeof i5.StarToggleComponent, typeof i6.DropdownMultiselectComponent, typeof i7.ViewportIntersectorComponent, typeof i8.CopyTextButtonComponent, typeof i9.CheckboxComponent, typeof i10.SearchInputComponent], [typeof i11.CommonModule, typeof i12.TranslateModule, typeof i13.NgxDropzoneModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.TagInputModule, typeof i16.UtilSharedModule, typeof i17.MatAutocompleteModule, typeof i18.MatIconModule, typeof i19.UiWidgetsModule, typeof i20.OverlayModule, typeof i21.MatCheckboxModule, typeof i22.MatTooltipModule, typeof i23.MatFormFieldModule, typeof i24.MatInputModule, typeof i25.MatDatepickerModule, typeof i26.MatNativeDateModule, typeof i27.EditableLabelDirective, typeof i28.TextAreaComponent, typeof i29.ButtonComponent, typeof i30.ImageInputComponent, typeof i31.DropdownSelectorComponent, typeof i32.DateRangePickerComponent, typeof i33.CheckToggleComponent, typeof i34.BadgeComponent], [typeof i31.DropdownSelectorComponent, typeof i29.ButtonComponent, typeof i1.TextInputComponent, typeof i2.DragAndDropFileInputComponent, typeof i28.TextAreaComponent, typeof i3.ChipsInputComponent, typeof i4.NavigationButtonComponent, typeof i5.StarToggleComponent, typeof i6.DropdownMultiselectComponent, typeof i7.ViewportIntersectorComponent, typeof i33.CheckToggleComponent, typeof i8.CopyTextButtonComponent, typeof i9.CheckboxComponent, typeof i10.SearchInputComponent, typeof i32.DateRangePickerComponent, typeof i27.EditableLabelDirective, typeof i30.ImageInputComponent, typeof i34.BadgeComponent]>;
36
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiInputsModule, [typeof i1.DragAndDropFileInputComponent, typeof i2.ChipsInputComponent, typeof i3.NavigationButtonComponent, typeof i4.StarToggleComponent, typeof i5.DropdownMultiselectComponent, typeof i6.ViewportIntersectorComponent, typeof i7.CopyTextButtonComponent, typeof i8.CheckboxComponent], [typeof i9.CommonModule, typeof i10.TranslateModule, typeof i11.NgxDropzoneModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.TagInputModule, typeof i14.UtilSharedModule, typeof i15.MatAutocompleteModule, typeof i16.MatIconModule, typeof i17.UiWidgetsModule, typeof i18.OverlayModule, typeof i19.MatCheckboxModule, typeof i20.MatTooltipModule, typeof i21.MatFormFieldModule, typeof i22.MatInputModule, typeof i23.MatDatepickerModule, typeof i24.MatNativeDateModule, typeof i25.EditableLabelDirective, typeof i26.TextAreaComponent, typeof i27.ButtonComponent, typeof i28.ImageInputComponent, typeof i29.DropdownSelectorComponent, typeof i30.DateRangePickerComponent, typeof i31.CheckToggleComponent, typeof i32.BadgeComponent], [typeof i29.DropdownSelectorComponent, typeof i27.ButtonComponent, typeof i1.DragAndDropFileInputComponent, typeof i26.TextAreaComponent, typeof i2.ChipsInputComponent, typeof i3.NavigationButtonComponent, typeof i4.StarToggleComponent, typeof i5.DropdownMultiselectComponent, typeof i6.ViewportIntersectorComponent, typeof i31.CheckToggleComponent, typeof i7.CopyTextButtonComponent, typeof i8.CheckboxComponent, typeof i30.DateRangePickerComponent, typeof i25.EditableLabelDirective, typeof i28.ImageInputComponent, typeof i32.BadgeComponent]>;
39
37
  static ɵinj: i0.ɵɵInjectorDeclaration<UiInputsModule>;
40
38
  }
41
39
  //# sourceMappingURL=ui-inputs.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ui-inputs.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/inputs/src/lib/ui-inputs.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCA,qBA6Da,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
1
+ {"version":3,"file":"ui-inputs.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/inputs/src/lib/ui-inputs.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkCA,qBAyDa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
@@ -0,0 +1,18 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { Subject } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class UrlInputComponent {
5
+ private cd;
6
+ value: string;
7
+ extraClass: string;
8
+ placeholder: string;
9
+ disabled: boolean;
10
+ rawChange: Subject<string>;
11
+ valueChange: import("rxjs").Observable<string>;
12
+ constructor(cd: ChangeDetectorRef);
13
+ handleInput(): void;
14
+ handleChange(element: HTMLInputElement): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<UrlInputComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<UrlInputComponent, "gn-ui-url-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
17
+ }
18
+ //# sourceMappingURL=url-input.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"url-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/url-input/url-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAA4B,MAAM,eAAe,CAAA;AAK3E,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAE9B,qBAOa,iBAAiB;IAQhB,OAAO,CAAC,EAAE;IAPb,KAAK,SAAK;IACV,UAAU,SAAK;IACf,WAAW,SAAa;IACxB,QAAQ,EAAE,OAAO,CAAA;IAC1B,SAAS,kBAAwB;IACvB,WAAW,oCAA0C;gBAE3C,EAAE,EAAE,iBAAiB;IAEzC,WAAW;IAIX,YAAY,CAAC,OAAO,EAAE,gBAAgB;yCAd3B,iBAAiB;2CAAjB,iBAAiB;CAkB7B"}
@@ -3,9 +3,12 @@ export * from './lib/carousel/carousel.component';
3
3
  export * from './lib/expandable-panel-button/expandable-panel-button.component';
4
4
  export * from './lib/expandable-panel/expandable-panel.component';
5
5
  export * from './lib/form-field-wrapper/form-field-wrapper.component';
6
+ export * from './lib/max-lines/max-lines.component';
6
7
  export * from './lib/interactive-table/interactive-table-column/interactive-table-column.component';
7
8
  export * from './lib/interactive-table/interactive-table.component';
8
9
  export * from './lib/sticky-header/sticky-header.component';
9
10
  export * from './lib/block-list/block-list.component';
11
+ export * from './lib/sortable-list/sortable-list.component';
12
+ export * from './lib/modal-dialog/modal-dialog.component';
10
13
  export * from './lib/ui-layout.module';
11
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/layout/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,iEAAiE,CAAA;AAC/E,cAAc,mDAAmD,CAAA;AACjE,cAAc,uDAAuD,CAAA;AACrE,cAAc,qFAAqF,CAAA;AACnG,cAAc,qDAAqD,CAAA;AACnE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,uCAAuC,CAAA;AACrD,cAAc,wBAAwB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/layout/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,iEAAiE,CAAA;AAC/E,cAAc,mDAAmD,CAAA;AACjE,cAAc,uDAAuD,CAAA;AACrE,cAAc,qCAAqC,CAAA;AACnD,cAAc,qFAAqF,CAAA;AACnG,cAAc,qDAAqD,CAAA;AACnE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,uCAAuC,CAAA;AACrD,cAAc,6CAA6C,CAAA;AAC3D,cAAc,2CAA2C,CAAA;AACzD,cAAc,wBAAwB,CAAA"}
@@ -1,7 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class FormFieldWrapperComponent {
3
- label: string;
4
- hint: string;
3
+ label?: string;
4
+ hint?: string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldWrapperComponent, never>;
6
6
  static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldWrapperComponent, "gn-ui-form-field-wrapper", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; }, {}, never, ["[form-field-interaction]", "*"], true, never>;
7
7
  }
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-wrapper.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts"],"names":[],"mappings":";AAIA,qBAQa,yBAAyB;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;yCAFV,yBAAyB;2CAAzB,yBAAyB;CAGrC"}
1
+ {"version":3,"file":"form-field-wrapper.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts"],"names":[],"mappings":";AAKA,qBAQa,yBAAyB;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;yCAFX,yBAAyB;2CAAzB,yBAAyB;CAGrC"}
@@ -6,7 +6,7 @@ export declare class InteractiveTableColumnComponent {
6
6
  grow: boolean;
7
7
  sortable: boolean;
8
8
  activeSort: 'asc' | 'desc' | null;
9
- sortChange: EventEmitter<"asc" | "desc">;
9
+ sortChange: EventEmitter<"desc" | "asc">;
10
10
  handleSortChange(): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTableColumnComponent, never>;
12
12
  static ɵcmp: i0.ɵɵComponentDeclaration<InteractiveTableColumnComponent, "gn-ui-interactive-table-column", never, { "grow": { "alias": "grow"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "activeSort": { "alias": "activeSort"; "required": false; }; }, { "sortChange": "sortChange"; }, ["header", "cell"], never, true, never>;
@@ -1,4 +1,4 @@
1
- import { ElementRef, AfterViewInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class MaxLinesComponent implements AfterViewInit, OnDestroy {
4
4
  private cdr;
@@ -15,6 +15,6 @@ export declare class MaxLinesComponent implements AfterViewInit, OnDestroy {
15
15
  getLineHeight(element: HTMLElement): number;
16
16
  ngOnDestroy(): void;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<MaxLinesComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<MaxLinesComponent, "gn-ui-max-lines", never, { "maxLines": { "alias": "maxLines"; "required": false; }; }, {}, never, ["*"], false, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaxLinesComponent, "gn-ui-max-lines", never, { "maxLines": { "alias": "maxLines"; "required": false; }; }, {}, never, ["*"], true, never>;
19
19
  }
20
20
  //# sourceMappingURL=max-lines.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"max-lines.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/layout/src/lib/max-lines/max-lines.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAEjB,UAAU,EAEV,SAAS,EAEV,MAAM,eAAe,CAAA;;AAItB,qBAQa,iBAAkB,YAAW,aAAa,EAAE,SAAS;IAUpD,OAAO,CAAC,GAAG;IATd,QAAQ,SAAI;IAErB,UAAU,UAAQ;IAClB,SAAS,SAAK;IACd,gBAAgB,UAAQ;IACxB,QAAQ,EAAE,cAAc,CAAA;IAEA,SAAS,EAAG,UAAU,CAAA;gBAE1B,GAAG,EAAE,iBAAiB;IAE1C,eAAe;IAYf,aAAa;IAKb,kBAAkB;IAyBlB,aAAa,CAAC,OAAO,EAAE,WAAW,GAAG,MAAM;IAQ3C,WAAW,IAAI,IAAI;yCA9DR,iBAAiB;2CAAjB,iBAAiB;CAkE7B"}
@@ -0,0 +1,20 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { MatDialogRef } from '@angular/material/dialog';
3
+ import * as i0 from "@angular/core";
4
+ export interface ModalDialogData {
5
+ title: string;
6
+ body: TemplateRef<unknown>;
7
+ bodyContext: unknown;
8
+ confirmText: string;
9
+ cancelText: string;
10
+ }
11
+ export declare class ModalDialogComponent {
12
+ dialogRef: MatDialogRef<ModalDialogComponent>;
13
+ data: ModalDialogData;
14
+ constructor(dialogRef: MatDialogRef<ModalDialogComponent>, data: ModalDialogData);
15
+ onConfirm(): void;
16
+ onCancel(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalDialogComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalDialogComponent, "gn-ui-modal-dialog", never, {}, {}, never, never, true, never>;
19
+ }
20
+ //# sourceMappingURL=modal-dialog.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"modal-dialog.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,WAAW,EACZ,MAAM,eAAe,CAAA;AAEtB,OAAO,EAGL,YAAY,EACb,MAAM,0BAA0B,CAAA;;AAGjC,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;IAC1B,WAAW,EAAE,OAAO,CAAA;IACpB,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,qBAQa,oBAAoB;IAEtB,SAAS,EAAE,YAAY,CAAC,oBAAoB,CAAC;IACpB,IAAI,EAAE,eAAe;gBAD9C,SAAS,EAAE,YAAY,CAAC,oBAAoB,CAAC,EACpB,IAAI,EAAE,eAAe;IAGvD,SAAS;IAIT,QAAQ;yCAVG,oBAAoB;2CAApB,oBAAoB;CAahC"}
@@ -0,0 +1,14 @@
1
+ import { CdkDragDrop } from '@angular/cdk/drag-drop';
2
+ import { EventEmitter, TemplateRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SortableListComponent {
5
+ elementTemplate: TemplateRef<unknown>;
6
+ items: unknown[];
7
+ itemsOrderChange: EventEmitter<unknown[]>;
8
+ drop(event: CdkDragDrop<string[]>): void;
9
+ removeItem(index: number): void;
10
+ trackByFn(index: number): number;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SortableListComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<SortableListComponent, "gn-ui-sortable-list", never, { "elementTemplate": { "alias": "elementTemplate"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, { "itemsOrderChange": "itemsOrderChange"; }, never, never, true, never>;
13
+ }
14
+ //# sourceMappingURL=sortable-list.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sortable-list.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,WAAW,EAIZ,MAAM,wBAAwB,CAAA;AAE/B,OAAO,EAGL,YAAY,EAGZ,WAAW,EACZ,MAAM,eAAe,CAAA;;AAItB,qBAea,qBAAqB;IACvB,eAAe,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;IACrC,KAAK,EAAE,OAAO,EAAE,CAAA;IACf,gBAAgB,0BAAgC;IAE1D,IAAI,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,EAAE,CAAC;IAKjC,UAAU,CAAC,KAAK,EAAE,MAAM;IAKxB,SAAS,CAAC,KAAK,EAAE,MAAM;yCAfZ,qBAAqB;2CAArB,qBAAqB;CAkBjC"}
@@ -1 +1 @@
1
- {"version":3,"file":"ui-layout.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/layout/src/lib/ui-layout.module.ts"],"names":[],"mappings":";;;;;;;;AAUA,qBAea,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
1
+ {"version":3,"file":"ui-layout.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/layout/src/lib/ui-layout.module.ts"],"names":[],"mappings":";;;;;;;;AASA,qBAea,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
@@ -1,4 +1,5 @@
1
- export * from './lib/ui-map.module';
2
- export * from './lib/components/map/map.component';
1
+ export * from './lib/components/map-container/map-container.component';
2
+ export * from './lib/components/map-container/map-settings.token';
3
3
  export * from './lib/components/feature-detail/feature-detail.component';
4
+ export * from './lib/map-utils';
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/map/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,cAAc,oCAAoC,CAAA;AAClD,cAAc,0DAA0D,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/map/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wDAAwD,CAAA;AACtE,cAAc,mDAAmD,CAAA;AACjE,cAAc,0DAA0D,CAAA;AACxE,cAAc,iBAAiB,CAAA"}
@@ -1,10 +1,9 @@
1
- import Feature from 'ol/Feature';
2
- import { Geometry } from 'ol/geom';
1
+ import type { Feature } from 'geojson';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class FeatureDetailComponent {
5
- feature: Feature<Geometry>;
4
+ feature: Feature;
6
5
  get properties(): string[];
7
6
  static ɵfac: i0.ɵɵFactoryDeclaration<FeatureDetailComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<FeatureDetailComponent, "gn-ui-feature-detail", never, { "feature": { "alias": "feature"; "required": false; }; }, {}, never, never, false, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureDetailComponent, "gn-ui-feature-detail", never, { "feature": { "alias": "feature"; "required": false; }; }, {}, never, never, true, never>;
9
8
  }
10
9
  //# sourceMappingURL=feature-detail.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"feature-detail.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts"],"names":[],"mappings":"AACA,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;;AAIlC,qBAMa,sBAAsB;IACxB,OAAO,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAA;IAEnC,IAAI,UAAU,aAIb;yCAPU,sBAAsB;2CAAtB,sBAAsB;CAQlC"}
1
+ {"version":3,"file":"feature-detail.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;;AAItC,qBAQa,sBAAsB;IACxB,OAAO,EAAE,OAAO,CAAA;IAEzB,IAAI,UAAU,aAKb;yCARU,sBAAsB;2CAAtB,sBAAsB;CASlC"}
@@ -0,0 +1,37 @@
1
+ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { Extent, MapContext, MapContextLayer } from '@geospatial-sdk/core';
4
+ import type OlMap from 'ol/Map';
5
+ import type { Feature } from 'geojson';
6
+ import * as i0 from "@angular/core";
7
+ export declare class MapContainerComponent implements AfterViewInit, OnChanges {
8
+ private doNotUseDefaultBasemap;
9
+ private basemapLayers;
10
+ private mapViewConstraints;
11
+ context: MapContext | null;
12
+ _featuresClick: EventEmitter<Feature[]>;
13
+ get featuresClick(): EventEmitter<Feature<import("geojson").Geometry, {
14
+ [name: string]: any;
15
+ }>[]>;
16
+ _featuresHover: EventEmitter<Feature[]>;
17
+ get featuresHover(): EventEmitter<Feature<import("geojson").Geometry, {
18
+ [name: string]: any;
19
+ }>[]>;
20
+ _mapClick: EventEmitter<[number, number]>;
21
+ get mapClick(): EventEmitter<[number, number]>;
22
+ container: ElementRef;
23
+ displayMessage$: Observable<boolean>;
24
+ olMap: OlMap;
25
+ constructor(doNotUseDefaultBasemap: boolean, basemapLayers: MapContextLayer[], mapViewConstraints: {
26
+ maxZoom?: number;
27
+ maxExtent?: Extent;
28
+ });
29
+ private olMapResolver;
30
+ openlayersMap: Promise<OlMap>;
31
+ ngAfterViewInit(): Promise<void>;
32
+ ngOnChanges(changes: SimpleChanges): Promise<void>;
33
+ processContext(context: MapContext): MapContext;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapContainerComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapContainerComponent, "gn-ui-map-container", never, { "context": { "alias": "context"; "required": false; }; }, { "featuresClick": "featuresClick"; "featuresHover": "featuresHover"; "mapClick": "mapClick"; }, never, never, true, never>;
36
+ }
37
+ //# sourceMappingURL=map-container.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map-container.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/map/src/lib/components/map-container/map-container.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAGb,UAAU,EACV,YAAY,EAGZ,SAAS,EAET,aAAa,EAEd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAoB,UAAU,EAAa,MAAM,MAAM,CAAA;AAK9D,OAAO,EAEL,MAAM,EAON,UAAU,EACV,eAAe,EAGhB,MAAM,sBAAsB,CAAA;AAM7B,OAAO,KAAK,KAAK,MAAM,QAAQ,CAAA;AAC/B,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;;AAkBtC,qBAQa,qBAAsB,YAAW,aAAa,EAAE,SAAS;IAoD9B,OAAO,CAAC,sBAAsB;IAC1C,OAAO,CAAC,aAAa;IAE7C,OAAO,CAAC,kBAAkB;IAtDnB,OAAO,EAAE,UAAU,GAAG,IAAI,CAAA;IAGnC,cAAc,EAAE,YAAY,CAAC,OAAO,EAAE,CAAC,CAAA;IACvC,IAAc,aAAa;;UAa1B;IACD,cAAc,EAAE,YAAY,CAAC,OAAO,EAAE,CAAC,CAAA;IACvC,IAAc,aAAa;;UAa1B;IACD,SAAS,EAAE,YAAY,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;IACzC,IAAc,QAAQ,mCAUrB;IAEiB,SAAS,EAAE,UAAU,CAAA;IACvC,eAAe,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACpC,KAAK,EAAE,KAAK,CAAA;gBAGkC,sBAAsB,EAAE,OAAO,EAC3C,aAAa,EAAE,eAAe,EAAE,EAExD,kBAAkB,EAAE;QAC1B,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,SAAS,CAAC,EAAE,MAAM,CAAA;KACnB;IAGH,OAAO,CAAC,aAAa,CAAA;IACrB,aAAa,iBAEX;IAEI,eAAe;IAuBf,WAAW,CAAC,OAAO,EAAE,aAAa;IAWxC,cAAc,CAAC,OAAO,EAAE,UAAU,GAAG,UAAU;yCApGpC,qBAAqB;2CAArB,qBAAqB;CA0IjC"}
@@ -0,0 +1,18 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { Extent, MapContextLayer } from '@geospatial-sdk/core';
3
+ export declare const DO_NOT_USE_DEFAULT_BASEMAP: InjectionToken<boolean>;
4
+ export declare const BASEMAP_LAYERS: InjectionToken<MapContextLayer[]>;
5
+ export declare const MAP_VIEW_CONSTRAINTS: InjectionToken<{
6
+ maxZoom?: number;
7
+ maxExtent?: Extent;
8
+ }>;
9
+ export declare const VECTOR_STYLE_DEFAULT: InjectionToken<{
10
+ fill: {
11
+ color: string;
12
+ };
13
+ stroke: {
14
+ color: string;
15
+ width: number;
16
+ };
17
+ }>;
18
+ //# sourceMappingURL=map-settings.token.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map-settings.token.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/map/src/lib/components/map-container/map-settings.token.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAC9C,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAE9D,eAAO,MAAM,0BAA0B,yBAGtC,CAAA;AACD,eAAO,MAAM,cAAc,mCAG1B,CAAA;AACD,eAAO,MAAM,oBAAoB;cACrB,MAAM;;EAIhB,CAAA;AACF,eAAO,MAAM,oBAAoB;;;;;;;;EAK/B,CAAA"}
@@ -0,0 +1,7 @@
1
+ import Collection from 'ol/Collection';
2
+ import { DragPan, Interaction, MouseWheelZoom } from 'ol/interaction';
3
+ import MapBrowserEvent from 'ol/MapBrowserEvent';
4
+ export declare function prioritizePageScroll(interactions: Collection<Interaction>): void;
5
+ export declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
6
+ export declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<UIEvent>): boolean;
7
+ //# sourceMappingURL=map-utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map-utils.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/map/src/lib/map-utils.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,eAAe,CAAA;AACtC,OAAO,EAAY,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAC/E,OAAO,eAAe,MAAM,oBAAoB,CAAA;AAQhD,wBAAgB,oBAAoB,CAAC,YAAY,EAAE,UAAU,CAAC,WAAW,CAAC,QAqBzE;AAED,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,OAAO,EACb,KAAK,EAAE,eAAe,CAAC,YAAY,CAAC,WAQrC;AAED,wBAAgB,uBAAuB,CACrC,IAAI,EAAE,cAAc,EACpB,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC,WAMhC"}
@@ -1,5 +1,5 @@
1
1
  import { ModelBlock, ModelItem } from '../facets.model';
2
- export declare const BLOCK_MODEL_FIXTURE: ModelBlock;
3
- export declare const EMPTY_BLOCK_MODEL_FIXTURE: ModelBlock;
4
- export declare const FACET_ITEM_FIXTURE: ModelItem;
2
+ export declare const blockModelFixture: () => ModelBlock;
3
+ export declare const emptyBlockModelFixture: () => ModelBlock;
4
+ export declare const itemModelFixture: () => ModelItem;
5
5
  //# sourceMappingURL=aggregations-model-response.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"aggregations-model-response.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEvD,eAAO,MAAM,mBAAmB,EAAE,UA+BjC,CAAA;AACD,eAAO,MAAM,yBAAyB,EAAE,UASvC,CAAA;AAED,eAAO,MAAM,kBAAkB,EAAE,SAMhC,CAAA"}
1
+ {"version":3,"file":"aggregations-model-response.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEvD,eAAO,MAAM,iBAAiB,QAAO,UA+BnC,CAAA;AAEF,eAAO,MAAM,sBAAsB,QAAO,UASxC,CAAA;AAEF,eAAO,MAAM,gBAAgB,QAAO,SAMlC,CAAA"}
@@ -0,0 +1,20 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { MatDialog } from '@angular/material/dialog';
3
+ import { MatMenuTrigger } from '@angular/material/menu';
4
+ import { TranslateService } from '@ngx-translate/core';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ActionMenuComponent {
7
+ dialog: MatDialog;
8
+ private translateService;
9
+ canDuplicate: boolean;
10
+ canDelete: boolean;
11
+ duplicate: EventEmitter<void>;
12
+ delete: EventEmitter<void>;
13
+ trigger: MatMenuTrigger;
14
+ constructor(dialog: MatDialog, translateService: TranslateService);
15
+ openMenu(): void;
16
+ openDeleteConfirmationDialog(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionMenuComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionMenuComponent, "gn-ui-action-menu", never, { "canDuplicate": { "alias": "canDuplicate"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; }, { "duplicate": "duplicate"; "delete": "delete"; }, never, never, true, never>;
19
+ }
20
+ //# sourceMappingURL=action-menu.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action-menu.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,YAAY,EAIb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,SAAS,EAAmB,MAAM,0BAA0B,CAAA;AAErE,OAAO,EAAiB,cAAc,EAAE,MAAM,wBAAwB,CAAA;AAGtE,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAEvE,qBAca,mBAAmB;IASrB,MAAM,EAAE,SAAS;IACxB,OAAO,CAAC,gBAAgB;IATjB,YAAY,EAAE,OAAO,CAAA;IACrB,SAAS,EAAE,OAAO,CAAA;IACjB,SAAS,qBAA2B;IACpC,MAAM,qBAA2B;IAEhB,OAAO,EAAE,cAAc,CAAA;gBAGzC,MAAM,EAAE,SAAS,EAChB,gBAAgB,EAAE,gBAAgB;IAG5C,QAAQ;IAIR,4BAA4B;yCAjBjB,mBAAmB;2CAAnB,mBAAmB;CA6C/B"}
@@ -1,22 +1,28 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
3
- import { FileFormat } from '../../../../../../libs/util/shared/src';
4
3
  import { SortByField } from '../../../../../../libs/common/domain/src/lib/model/search';
4
+ import { FileFormat } from '../../../../../../libs/util/shared/src';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class ResultsTableComponent {
7
7
  records: CatalogRecord[];
8
8
  selectedRecordsIdentifiers: string[];
9
9
  sortOrder: SortByField;
10
- recordHasDraft: (record: CatalogRecord) => boolean;
11
- sortByChange: EventEmitter<[string, "asc" | "desc"]>;
10
+ hasDraft: (record: CatalogRecord) => boolean;
11
+ canDuplicate: (record: CatalogRecord) => boolean;
12
+ isUnsavedDraft: (record: CatalogRecord) => boolean;
13
+ canDelete: (record: CatalogRecord) => boolean;
14
+ sortByChange: EventEmitter<[string, "desc" | "asc"]>;
12
15
  recordClick: EventEmitter<CatalogRecord>;
16
+ duplicateRecord: EventEmitter<CatalogRecord>;
17
+ deleteRecord: EventEmitter<CatalogRecord>;
13
18
  recordsSelectedChange: EventEmitter<[CatalogRecord[], boolean]>;
14
19
  dateToString(date: Date): string;
15
- getStatus(isPublishedToAll: boolean | unknown): "published" | "not published";
16
20
  getRecordFormats(record: CatalogRecord): FileFormat[];
17
21
  formatUserInfo(userInfo: string | unknown): string;
18
22
  getBadgeColor(format: FileFormat): string;
19
23
  handleRecordClick(item: unknown): void;
24
+ handleDuplicate(item: unknown): void;
25
+ handleDelete(item: unknown): void;
20
26
  setSortBy(col: string, order: 'asc' | 'desc'): void;
21
27
  isSortedBy(col: string): 'desc' | 'asc' | null;
22
28
  isChecked(record: CatalogRecord): boolean;
@@ -25,6 +31,6 @@ export declare class ResultsTableComponent {
25
31
  isAllSelected(): boolean;
26
32
  isSomeSelected(): boolean;
27
33
  static ɵfac: i0.ɵɵFactoryDeclaration<ResultsTableComponent, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<ResultsTableComponent, "gn-ui-results-table", never, { "records": { "alias": "records"; "required": false; }; "selectedRecordsIdentifiers": { "alias": "selectedRecordsIdentifiers"; "required": false; }; "sortOrder": { "alias": "sortOrder"; "required": false; }; "recordHasDraft": { "alias": "recordHasDraft"; "required": false; }; }, { "sortByChange": "sortByChange"; "recordClick": "recordClick"; "recordsSelectedChange": "recordsSelectedChange"; }, never, never, true, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResultsTableComponent, "gn-ui-results-table", never, { "records": { "alias": "records"; "required": false; }; "selectedRecordsIdentifiers": { "alias": "selectedRecordsIdentifiers"; "required": false; }; "sortOrder": { "alias": "sortOrder"; "required": false; }; "hasDraft": { "alias": "hasDraft"; "required": false; }; "canDuplicate": { "alias": "canDuplicate"; "required": false; }; "isUnsavedDraft": { "alias": "isUnsavedDraft"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; }, { "sortByChange": "sortByChange"; "recordClick": "recordClick"; "duplicateRecord": "duplicateRecord"; "deleteRecord": "deleteRecord"; "recordsSelectedChange": "recordsSelectedChange"; }, never, never, true, never>;
29
35
  }
30
36
  //# sourceMappingURL=results-table.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"results-table.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/search/src/lib/results-table/results-table.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAiB,MAAM,eAAe,CAAA;AACtE,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AACzF,OAAO,EACL,UAAU,EAIX,MAAM,wCAAwC,CAAA;AAS/C,OAAO,EAEL,WAAW,EACZ,MAAM,2DAA2D,CAAA;;AAElE,qBAea,qBAAqB;IACvB,OAAO,EAAE,aAAa,EAAE,CAAK;IAC7B,0BAA0B,EAAE,MAAM,EAAE,CAAK;IACzC,SAAS,EAAE,WAAW,CAAO;IAC7B,cAAc,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,OAAO,CAAc;IAG/D,YAAY,yCAA+C;IAC3D,WAAW,8BAAoC;IAC/C,qBAAqB,2CAE5B;IAEH,YAAY,CAAC,IAAI,EAAE,IAAI,GAAG,MAAM;IAShC,SAAS,CAAC,gBAAgB,EAAE,OAAO,GAAG,OAAO;IAI7C,gBAAgB,CAAC,MAAM,EAAE,aAAa,GAAG,UAAU,EAAE;IAarD,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,GAAG,MAAM;IAQlD,aAAa,CAAC,MAAM,EAAE,UAAU,GAAG,MAAM;IAIzC,iBAAiB,CAAC,IAAI,EAAE,OAAO;IAI/B,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,MAAM;IAI5C,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,IAAI;IAe9C,SAAS,CAAC,MAAM,EAAE,aAAa,GAAG,OAAO;IAIzC,0BAA0B,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,aAAa;IAI7D,eAAe;IAIrB,aAAa,IAAI,OAAO;IAMxB,cAAc,IAAI,OAAO;yCA5Fd,qBAAqB;2CAArB,qBAAqB;CAqGjC"}
1
+ {"version":3,"file":"results-table.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/search/src/lib/results-table/results-table.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAa,YAAY,EAAiB,MAAM,eAAe,CAAA;AAEtE,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AACzF,OAAO,EAEL,WAAW,EACZ,MAAM,2DAA2D,CAAA;AAMlE,OAAO,EACL,UAAU,EAIX,MAAM,wCAAwC,CAAA;;AAI/C,qBAgBa,qBAAqB;IACvB,OAAO,EAAE,aAAa,EAAE,CAAK;IAC7B,0BAA0B,EAAE,MAAM,EAAE,CAAK;IACzC,SAAS,EAAE,WAAW,CAAO;IAC7B,QAAQ,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,OAAO,CAAc;IAC1D,YAAY,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,OAAO,CAAa;IAC7D,cAAc,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,OAAO,CAAa;IAC/D,SAAS,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,OAAO,CAAa;IAGzD,YAAY,yCAA+C;IAC3D,WAAW,8BAAoC;IAC/C,eAAe,8BAAoC;IACnD,YAAY,8BAAoC;IAChD,qBAAqB,2CAE5B;IAEH,YAAY,CAAC,IAAI,EAAE,IAAI,GAAG,MAAM;IAShC,gBAAgB,CAAC,MAAM,EAAE,aAAa,GAAG,UAAU,EAAE;IAerD,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,GAAG,MAAM;IAQlD,aAAa,CAAC,MAAM,EAAE,UAAU,GAAG,MAAM;IAIzC,iBAAiB,CAAC,IAAI,EAAE,OAAO;IAI/B,eAAe,CAAC,IAAI,EAAE,OAAO;IAI7B,YAAY,CAAC,IAAI,EAAE,OAAO;IAI1B,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,MAAM;IAI5C,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,IAAI;IAe9C,SAAS,CAAC,MAAM,EAAE,aAAa,GAAG,OAAO;IAIzC,0BAA0B,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,aAAa;IAI7D,eAAe;IAIrB,aAAa,IAAI,OAAO;IAMxB,cAAc,IAAI,OAAO;yCAvGd,qBAAqB;2CAArB,qBAAqB;CAgHjC"}
@@ -1,5 +1,6 @@
1
1
  export * from './lib/ui-widgets.module';
2
2
  export * from './lib/progress-bar/progress-bar.component';
3
+ export * from './lib/popover/popover.component';
3
4
  export * from './lib/loading-mask/loading-mask.component';
4
5
  export * from './lib/color-scale/color-scale.component';
5
6
  export * from './lib/popup-alert/popup-alert.component';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/widgets/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,2CAA2C,CAAA;AACzD,cAAc,2CAA2C,CAAA;AACzD,cAAc,yCAAyC,CAAA;AACvD,cAAc,yCAAyC,CAAA;AACvD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,mCAAmC,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/widgets/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,2CAA2C,CAAA;AACzD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2CAA2C,CAAA;AACzD,cAAc,yCAAyC,CAAA;AACvD,cAAc,yCAAyC,CAAA;AACvD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,mCAAmC,CAAA"}
@@ -0,0 +1,19 @@
1
+ import { AfterViewInit, ElementRef, OnDestroy, OnChanges, SimpleChanges, TemplateRef, Renderer2, ViewContainerRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PopoverComponent implements AfterViewInit, OnChanges, OnDestroy {
4
+ private viewContainerRef;
5
+ private renderer;
6
+ popoverContent: ElementRef;
7
+ content: string | TemplateRef<any>;
8
+ theme: 'light' | 'light-border' | 'translucent' | 'material' | '';
9
+ private tippyInstance;
10
+ private view;
11
+ constructor(viewContainerRef: ViewContainerRef, renderer: Renderer2);
12
+ private getContent;
13
+ ngAfterViewInit(): void;
14
+ ngOnChanges(changes: SimpleChanges): void;
15
+ ngOnDestroy(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "gn-ui-popover", never, { "content": { "alias": "content"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], true, never>;
18
+ }
19
+ //# sourceMappingURL=popover.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"popover.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/widgets/src/lib/popover/popover.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,aAAa,EACb,UAAU,EAGV,SAAS,EACT,SAAS,EACT,aAAa,EACb,WAAW,EACX,SAAS,EACT,gBAAgB,EAEjB,MAAM,eAAe,CAAA;;AAGtB,qBAOa,gBAAiB,YAAW,aAAa,EAAE,SAAS,EAAE,SAAS;IASxE,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,QAAQ;IAT8B,cAAc,EAAE,UAAU,CAAA;IACjE,OAAO,EAAE,MAAM,GAAG,WAAW,CAAC,GAAG,CAAC,CAAA;IAClC,KAAK,EAAE,OAAO,GAAG,cAAc,GAAG,aAAa,GAAG,UAAU,GAAG,EAAE,CAAA;IAE1E,OAAO,CAAC,aAAa,CAAU;IAC/B,OAAO,CAAC,IAAI,CAAsB;gBAGxB,gBAAgB,EAAE,gBAAgB,EAClC,QAAQ,EAAE,SAAS;IAG7B,OAAO,CAAC,UAAU;IAgBlB,eAAe,IAAI,IAAI;IAQvB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAezC,WAAW,IAAI,IAAI;yCApDR,gBAAgB;2CAAhB,gBAAgB;CA4D5B"}
@@ -1,4 +1,5 @@
1
1
  export * from './lib/app-config';
2
2
  export * from './lib/fixtures';
3
3
  export * from './lib/model';
4
+ export * from './lib/map-layers';
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/util/app-config/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/util/app-config/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA"}
@@ -1,10 +1,10 @@
1
1
  import { MapConfig } from './model';
2
- export declare const CONFIG_OK = "\n[global]\ngeonetwork4_api_url = \"/geonetwork/srv/api\"\nproxy_path = \"/proxy/?url=\"\nmetadata_language = \"fre\"\nlogin_url = \"/cas/login?service=\"\nweb_component_embedder_url = \"/datahub/wc-embedder.html\"\n\n[map]\nmax_zoom = 10\nmax_extent = [-418263.418776, 5251529.591305, 961272.067714, 6706890.609855]\ndo_not_use_default_basemap = false\nexternal_viewer_url_template = 'https://example.com/myviewer?'\nexternal_viewer_open_new_tab = true\n[[map_layer]]\ntype = \"wms\"\nurl = \"https://www.geo2france.fr/geoserver/cr_hdf/ows\"\nname = \"masque_hdf_ign_carto_latin1\"\n[[map_layer]]\ntype = \"wfs\"\nurl = \"https://www.geo2france.fr/geoserver/cr_hdf/ows\"\nname = \"masque_hdf_ign_carto_latin1\"\n\n[theme]\nprimary_color = \"#093564\"\nsecondary_color = \"#c2e9dc\"\nmain_color = \"#212029\" # All-purpose text color\nbackground_color = \"#fdfbff\"\nthumbnail_placeholder = 'assets/img/placeholder.svg'\nheader_background = 'teal'\nheader_foreground_color = \"#872e2e\"\nmain_font = 'sans-serif'\ntitle_font = 'serif'\nfonts_stylesheet_url = \"https://fonts.googleapis.com/css2?family=Open+Sans\"\n\n[search]\nfilter_geometry_url = 'https://my.domain.org/geom.json'\nadvanced_filters = ['publicationYear', 'documentStandard', 'inspireKeyword', 'topic', 'license']\n\n[[search_preset]]\nsort = \"-createDate\"\nname = 'filterByOrgs'\nfilters.q = 'Carto'\nfilters.organisation = ['Org1', 'Org2']\nfilters.format = ['ESRI Shapefile']\nfilters.topic = ['boundaries']\nfilters.publicationYear = ['2023', '2022']\nfilters.spatial = ['yes']\n\n[translations.en]\n\"my.first.key\" = 'First label.'\n\"my.second.key\" = \"\"\"\nSecond label,\non two lines.\"\"\"\n\n[translations.de]\nmy.first.key = 'Erste Etikett.'\n\n[translations.fr]\nmy.sample.text = \"Un bon exemple de texte.\"\n\"my.quoted.text\" = 'du texte entre guillements.'\n";
3
- export declare const CONFIG_WITH_TRANSLATIONS = "\n[global]\ngeonetwork4_api_url = \"/geonetwork/srv/api\"\nproxy_path = \"/proxy/?url=\"\nmetadata_language = \"fre\"\nlogin_url = \"/cas/login?service=\"\nweb_component_embedder_url = \"/datahub/wc-embedder.html\"\n\n[map]\nmax_zoom = 10\nmax_extent = [-418263.418776, 5251529.591305, 961272.067714, 6706890.609855]\ndo_not_use_default_basemap = false\nexternal_viewer_url_template = 'https://example.com/myviewer?'\nexternal_viewer_open_new_tab = true\n[[map_layer]]\ntype = \"wms\"\nurl = \"https://www.geo2france.fr/geoserver/cr_hdf/ows\"\nname = \"masque_hdf_ign_carto_latin1\"\n[[map_layer]]\ntype = \"wfs\"\nurl = \"https://www.geo2france.fr/geoserver/cr_hdf/ows\"\nname = \"masque_hdf_ign_carto_latin1\"\n\n[theme]\nprimary_color = \"#093564\"\nsecondary_color = \"#c2e9dc\"\nmain_color = \"#212029\" # All-purpose text color\nbackground_color = \"#fdfbff\"\nthumbnail_placeholder = 'assets/img/placeholder.svg'\nheader_background = 'teal'\nheader_foreground_color = \"#872e2e\"\nmain_font = 'sans-serif'\ntitle_font = 'serif'\nfonts_stylesheet_url = \"https://fonts.googleapis.com/css2?family=Open+Sans\"\n\n[search]\nfilter_geometry_url = 'https://my.domain.org/geom.json'\nadvanced_filters = ['publicationYear', 'documentStandard', 'inspireKeyword', 'topic', 'license']\n\n[[search_preset]]\nsort = \"-createDate\"\nname = 'filterByOrgs'\nfilters.q = 'Carto'\nfilters.organisation = ['Org1', 'Org2']\nfilters.format = ['ESRI Shapefile']\nfilters.topic = ['boundaries']\nfilters.publicationYear = ['2023', '2022']\nfilters.spatial = ['yes']\n\n[translations.en]\n\"my.first.key\" = 'First label.'\n\"my.second.key\" = \"\"\"\nSecond label,\non two lines.\"\"\"\n\n[translations.de]\nmy.first.key = 'Erste Etikett.'\n\n[translations.fr]\nmy.sample.text = \"Un bon exemple de texte.\"\n\"my.quoted.text\" = 'du texte entre guillements.'\n";
4
- export declare const CONFIG_MINIMAL = "\n[global]\ngeonetwork4_api_url = \"/geonetwork/srv/api\"\nproxy_path = \"/proxy/?url=\"\n\n[theme]\nprimary_color = \"#093564\"\nsecondary_color = \"#c2e9dc\"\nmain_color = \"#212029\" # All-purpose text color\nbackground_color = \"#fdfbff\"\n";
5
- export declare const MAP_CONFIG_FIXTURE: MapConfig;
6
- export declare const CONFIG_MALFORMED = "\n{\n \"I thought\": \"we were still doing json\"\n}\n";
7
- export declare const CONFIG_MISSING_MANDATORY = "\n[theme]\nprimary_color = \"#093564\"\nsecondary_color = \"#c2e9dc\"\nbackground_color = \"#fdfbff\"\nmain_font = 'sans-serif'\n";
8
- export declare const CONFIG_WRONG_LANGUAGE_CODE = "\n[global]\ngeonetwork4_api_url = \"/geonetwork/srv/api\"\nproxy_path = \"/proxy/?url=\"\nmetadata_language = \"fra\"\n\n[map]\n\n[theme]\nprimary_color = \"#093564\"\nsecondary_color = \"#c2e9dc\"\nmain_color = \"#212029\" # All-purpose text color\nbackground_color = \"#fdfbff\"\n";
9
- export declare const CONFIG_UNRECOGNIZED_KEYS = "\n[global]\ngeonetwork4_api_url = \"/geonetwork/srv/api\"\nproxy_path = \"/proxy/?url=\"\nmetadata_language = \"fre\"\nanother_path = '/whatever'\n\n[map]\nmax_zoom = 10\nmax_extent = [-418263.418776, 5251529.591305, 961272.067714, 6706890.609855]\ndo_not_use_default_basemap = false\nexternal_viewer_url_template = 'https://example.com/myviewer?'\nexternal_viewer_open_new_tab = true\nanother_zoom = 15\n[[map_layer]]\ntype = \"wms\"\nurl = \"https://www.geo2france.fr/geoserver/cr_hdf/ows\"\nname = \"masque_hdf_ign_carto_latin1\"\n[[map_layer]]\ntype = \"wfs\"\nurl = \"https://www.geo2france.fr/geoserver/cr_hdf/ows\"\nname = \"masque_hdf_ign_carto_latin1\"\nanother_layer = \"wrong layer definition\"\n\n[theme]\nprimary_color = \"#093564\"\nsecondary_color = \"#c2e9dc\"\nmain_color = \"#212029\" # All-purpose text color\nbackground_color = \"#fdfbff\"\nthumbnail_placeholder = 'assets/img/placeholder.svg'\nheader_background = 'teal'\nheader_foreground_color = \"#872e2e\"\nmain_font = 'sans-serif'\ntitle_font = 'serif'\nanother_color = 'red'\n";
2
+ export declare const okAppConfigFixture: () => string;
3
+ export declare const appConfigWithTranslationFixture: () => string;
4
+ export declare const minimalAppConfigFixture: () => string;
5
+ export declare const mapConfigFixture: () => MapConfig;
6
+ export declare const malformedConfigFixture: () => string;
7
+ export declare const missingMandatoryConfigFixture: () => string;
8
+ export declare const wrongLanguageCodeConfigFixture: () => string;
9
+ export declare const unrecognizedKeysConfigFixture: () => string;
10
10
  //# sourceMappingURL=fixtures.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"fixtures.d.ts","sourceRoot":"","sources":["../../../../../src/libs/util/app-config/src/lib/fixtures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAEnC,eAAO,MAAM,SAAS,2zDA6DrB,CAAA;AAED,eAAO,MAAM,wBAAwB,2zDAAY,CAAA;AAEjD,eAAO,MAAM,cAAc,yPAU1B,CAAA;AAED,eAAO,MAAM,kBAAkB,EAAE,SAwBhC,CAAA;AAED,eAAO,MAAM,gBAAgB,4DAI5B,CAAA;AAED,eAAO,MAAM,wBAAwB,sIAMpC,CAAA;AAED,eAAO,MAAM,0BAA0B,+RAatC,CAAA;AAED,eAAO,MAAM,wBAAwB,kiCAmCpC,CAAA"}
1
+ {"version":3,"file":"fixtures.d.ts","sourceRoot":"","sources":["../../../../../src/libs/util/app-config/src/lib/fixtures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAEnC,eAAO,MAAM,kBAAkB,cA6D9B,CAAA;AAED,eAAO,MAAM,+BAA+B,cAA6B,CAAA;AAEzE,eAAO,MAAM,uBAAuB,cAUnC,CAAA;AAED,eAAO,MAAM,gBAAgB,QAAO,SAwBlC,CAAA;AAEF,eAAO,MAAM,sBAAsB,cAIlC,CAAA;AAED,eAAO,MAAM,6BAA6B,cAMzC,CAAA;AAED,eAAO,MAAM,8BAA8B,cAa1C,CAAA;AAED,eAAO,MAAM,6BAA6B,cAmCzC,CAAA"}
@@ -0,0 +1,4 @@
1
+ import { LayerConfig } from './model';
2
+ import { MapContextLayer } from '@geospatial-sdk/core';
3
+ export declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
4
+ //# sourceMappingURL=map-layers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map-layers.d.ts","sourceRoot":"","sources":["../../../../../src/libs/util/app-config/src/lib/map-layers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAEtD,wBAAgB,4BAA4B,CAC1C,MAAM,EAAE,WAAW,GAClB,eAAe,CAyBjB"}
@@ -1,4 +1,4 @@
1
- import { DatasetDistribution } from '../../../../../../libs/common/domain/src/lib/model/record';
1
+ import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare enum LinkUsage {
4
4
  API = "api",
@@ -10,8 +10,8 @@ export declare enum LinkUsage {
10
10
  UNKNOWN = "unknown"
11
11
  }
12
12
  export declare class LinkClassifierService {
13
- getUsagesForLink(link: DatasetDistribution): LinkUsage[];
14
- hasUsage(link: DatasetDistribution, usage: LinkUsage): boolean;
13
+ getUsagesForLink(link: DatasetOnlineResource): LinkUsage[];
14
+ hasUsage(link: DatasetOnlineResource, usage: LinkUsage): boolean;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkClassifierService, never>;
16
16
  static ɵprov: i0.ɵɵInjectableDeclaration<LinkClassifierService>;
17
17
  }
@@ -1 +1 @@
1
- {"version":3,"file":"link-classifier.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/util/shared/src/lib/links/link-classifier.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,2DAA2D,CAAA;;AAE/F,oBAAY,SAAS;IACnB,GAAG,QAAQ;IACX,OAAO,WAAW;IAClB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,YAAY,gBAAgB;IAC5B,OAAO,YAAY;CACpB;AAED,qBAGa,qBAAqB;IAChC,gBAAgB,CAAC,IAAI,EAAE,mBAAmB,GAAG,SAAS,EAAE;IAoCxD,QAAQ,CAAC,IAAI,EAAE,mBAAmB,EAAE,KAAK,EAAE,SAAS;yCArCzC,qBAAqB;6CAArB,qBAAqB;CAwCjC"}
1
+ {"version":3,"file":"link-classifier.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/util/shared/src/lib/links/link-classifier.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;;AAGjG,oBAAY,SAAS;IACnB,GAAG,QAAQ;IACX,OAAO,WAAW;IAClB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,YAAY,gBAAgB;IAC5B,OAAO,YAAY;CACpB;AAED,qBAGa,qBAAqB;IAChC,gBAAgB,CAAC,IAAI,EAAE,qBAAqB,GAAG,SAAS,EAAE;IAoC1D,QAAQ,CAAC,IAAI,EAAE,qBAAqB,EAAE,KAAK,EAAE,SAAS;yCArC3C,qBAAqB;6CAArB,qBAAqB;CAwCjC"}