geonetwork-ui 2.4.0-dev.f6f2f023 → 2.4.0-dev.fdf8f64b

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 (962) 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 +108 -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 +5 -5
  46. package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +14 -8
  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 +2 -2
  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/online-service-resource-input/online-service-resource-input.component.mjs +72 -0
  62. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +109 -0
  63. 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
  64. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +19 -0
  65. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +31 -68
  66. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +11 -9
  67. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +79 -0
  68. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +150 -0
  69. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +191 -0
  70. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +44 -0
  71. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +103 -0
  72. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +12 -16
  73. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +9 -8
  74. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +140 -5
  75. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +41 -68
  76. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +17 -15
  77. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +49 -44
  78. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -3
  79. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +13 -7
  80. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +3 -3
  81. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +8 -8
  82. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  83. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +6 -4
  84. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +215 -57
  85. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
  86. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
  87. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +12 -7
  88. package/esm2022/libs/feature/map/src/index.mjs +2 -9
  89. package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +4 -7
  90. package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +9 -15
  91. package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +13 -44
  92. package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +3 -2
  93. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +6 -6
  94. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +20 -19
  95. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +23 -14
  96. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +15 -14
  97. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +18 -13
  98. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +16 -11
  99. package/esm2022/libs/feature/map/src/lib/constant/index.mjs +1 -2
  100. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +9 -68
  101. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +43 -29
  102. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +43 -18
  103. package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +27 -0
  104. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
  105. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +12 -171
  106. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  107. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +42 -23
  108. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +13 -5
  109. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +49 -15
  110. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +21 -17
  111. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +18 -9
  112. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +40 -52
  113. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +11 -13
  114. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +2 -1
  115. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +1 -1
  116. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +9 -2
  117. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +8 -1
  118. package/esm2022/libs/feature/search/src/index.mjs +2 -2
  119. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +7 -4
  120. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +4 -4
  121. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +94 -0
  122. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +8 -3
  123. package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +4 -1
  124. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +7 -3
  125. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +5 -5
  126. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +7 -7
  127. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +5 -7
  128. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -8
  129. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
  130. package/esm2022/libs/ui/elements/src/index.mjs +3 -3
  131. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -3
  132. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
  133. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
  134. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
  135. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +5 -3
  136. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
  137. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +6 -5
  138. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  139. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +6 -6
  140. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
  141. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
  142. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
  143. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +24 -5
  144. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +15 -11
  145. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
  146. package/esm2022/libs/ui/inputs/src/index.mjs +6 -1
  147. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +79 -29
  148. package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +5 -3
  149. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +8 -1
  150. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +11 -4
  151. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +9 -3
  152. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +26 -24
  153. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
  154. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +19 -15
  155. package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +6 -4
  156. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +34 -0
  157. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +7 -21
  158. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +6 -17
  159. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +4 -18
  160. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +59 -0
  161. package/esm2022/libs/ui/layout/src/index.mjs +4 -1
  162. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +5 -3
  163. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
  164. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +71 -0
  165. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
  166. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
  167. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +1 -1
  168. package/esm2022/libs/ui/map/src/index.mjs +4 -3
  169. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +8 -6
  170. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +137 -0
  171. package/esm2022/libs/ui/map/src/lib/components/map-container/map-settings.token.mjs +13 -0
  172. package/esm2022/libs/ui/map/src/lib/map-utils.mjs +37 -0
  173. package/esm2022/libs/ui/search/src/index.mjs +2 -1
  174. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
  175. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +67 -0
  176. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +140 -0
  177. package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
  178. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
  179. package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +5 -3
  180. package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +1 -6
  181. package/esm2022/libs/util/app-config/src/index.mjs +2 -1
  182. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
  183. package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +27 -0
  184. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
  185. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
  186. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +2 -1
  187. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
  188. package/esm2022/translations/de.json +175 -38
  189. package/esm2022/translations/en.json +176 -39
  190. package/esm2022/translations/es.json +146 -9
  191. package/esm2022/translations/fr.json +207 -70
  192. package/esm2022/translations/it.json +149 -12
  193. package/esm2022/translations/nl.json +146 -9
  194. package/esm2022/translations/pt.json +146 -9
  195. package/fesm2022/geonetwork-ui.mjs +11807 -8523
  196. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  197. package/libs/api/metadata-converter/src/index.d.ts +3 -0
  198. package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
  199. package/libs/api/metadata-converter/src/lib/common/license.d.ts +3 -0
  200. package/libs/api/metadata-converter/src/lib/common/license.d.ts.map +1 -0
  201. package/libs/api/metadata-converter/src/lib/common/url.d.ts +7 -0
  202. package/libs/api/metadata-converter/src/lib/common/url.d.ts.map +1 -0
  203. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +13 -0
  204. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -0
  205. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts +2 -0
  206. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts.map +1 -0
  207. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts +16 -0
  208. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts.map +1 -0
  209. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +20 -0
  210. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +1 -0
  211. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +9 -0
  212. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +1 -0
  213. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts +8 -0
  214. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +1 -0
  215. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts +2 -0
  216. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts.map +1 -0
  217. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts +6 -0
  218. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +1 -0
  219. package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +1 -1
  220. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  221. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
  222. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  223. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +2 -6
  224. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +1 -1
  225. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +1 -0
  226. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  227. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
  228. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
  229. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  230. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -2
  231. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
  232. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  233. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +12 -6
  234. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  235. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
  236. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
  237. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +13 -12
  238. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  239. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +59 -0
  240. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  241. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +20 -8
  242. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  243. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  244. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  245. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  246. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +24 -3
  247. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  248. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +2 -1
  249. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  250. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +9 -7
  251. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  252. package/libs/common/domain/src/lib/model/record/organization.model.d.ts +1 -0
  253. package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -1
  254. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  255. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  256. package/libs/common/domain/src/lib/platform.service.interface.d.ts +18 -1
  257. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  258. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +26 -0
  259. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  260. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
  261. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
  262. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
  263. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
  264. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  265. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +1 -1
  266. package/libs/feature/catalog/src/index.d.ts +1 -0
  267. package/libs/feature/catalog/src/index.d.ts.map +1 -1
  268. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +2 -1
  269. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  270. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  271. package/libs/feature/catalog/src/lib/organization-url.token.d.ts +3 -0
  272. package/libs/feature/catalog/src/lib/organization-url.token.d.ts.map +1 -0
  273. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
  274. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
  275. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  276. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +10 -8
  277. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -1
  278. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +13 -20
  279. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
  280. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
  281. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  282. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
  283. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  284. package/libs/feature/editor/src/index.d.ts +1 -0
  285. package/libs/feature/editor/src/index.d.ts.map +1 -1
  286. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +6 -0
  287. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  288. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
  289. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  290. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +5 -4
  291. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  292. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
  293. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  294. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
  295. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  296. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
  297. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  298. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +8 -0
  299. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  300. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +33 -0
  301. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
  302. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +34 -0
  303. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -0
  304. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
  305. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
  306. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +16 -0
  307. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -0
  308. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts +38 -0
  309. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -0
  310. 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
  311. 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
  312. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +9 -0
  313. 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
  314. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +13 -31
  315. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  316. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +6 -4
  317. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  318. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +15 -0
  319. 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
  320. 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
  321. 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
  322. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts +44 -0
  323. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -0
  324. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +15 -0
  325. 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
  326. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +31 -0
  327. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
  328. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +4 -6
  329. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  330. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +4 -3
  331. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
  332. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +28 -0
  333. 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
  334. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +10 -16
  335. 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
  336. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +5 -5
  337. 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
  338. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +18 -20
  339. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  340. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -2
  341. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  342. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +7 -7
  343. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  344. package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
  345. package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
  346. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -1
  347. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  348. package/libs/feature/editor/src/lib/fields.config.d.ts +56 -2
  349. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  350. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +42 -0
  351. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
  352. package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
  353. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  354. package/libs/feature/editor/src/lib/services/editor.service.d.ts +4 -3
  355. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  356. package/libs/feature/map/src/index.d.ts +1 -8
  357. package/libs/feature/map/src/index.d.ts.map +1 -1
  358. package/libs/feature/map/src/lib/+state/map.actions.d.ts +13 -39
  359. package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -1
  360. package/libs/feature/map/src/lib/+state/map.facade.d.ts +9 -10
  361. package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -1
  362. package/libs/feature/map/src/lib/+state/map.reducer.d.ts +4 -2
  363. package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -1
  364. package/libs/feature/map/src/lib/+state/map.selectors.d.ts +6 -1
  365. package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -1
  366. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +1 -1
  367. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  368. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +8 -10
  369. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  370. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +1 -1
  371. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  372. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +3 -3
  373. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  374. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +2 -2
  375. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  376. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +2 -2
  377. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  378. package/libs/feature/map/src/lib/constant/index.d.ts +0 -1
  379. package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -1
  380. package/libs/feature/map/src/lib/feature-map.module.d.ts +12 -23
  381. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  382. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +7 -7
  383. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
  384. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +5 -4
  385. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  386. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts +14 -0
  387. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts.map +1 -0
  388. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
  389. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
  390. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +0 -30
  391. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  392. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
  393. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  394. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
  395. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  396. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
  397. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
  398. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
  399. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  400. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +10 -7
  401. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  402. package/libs/feature/record/src/lib/feature-record.module.d.ts +13 -10
  403. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  404. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +14 -20
  405. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  406. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
  407. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  408. package/libs/feature/router/src/lib/default/constants.d.ts +1 -0
  409. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  410. package/libs/feature/router/src/lib/default/router.config.d.ts +1 -0
  411. package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -1
  412. package/libs/feature/router/src/lib/default/router.service.d.ts +1 -0
  413. package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -1
  414. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -0
  415. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  416. package/libs/feature/search/src/index.d.ts +1 -1
  417. package/libs/feature/search/src/index.d.ts.map +1 -1
  418. package/libs/feature/search/src/lib/feature-search.module.d.ts +2 -1
  419. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
  420. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
  421. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +37 -0
  422. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -0
  423. package/libs/feature/search/src/lib/state/search.facade.d.ts +2 -0
  424. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  425. package/libs/feature/search/src/lib/state/selectors.d.ts +1 -0
  426. package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
  427. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  428. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +2 -2
  429. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +1 -1
  430. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -1
  431. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +9 -9
  432. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
  433. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -2
  434. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
  435. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
  436. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
  437. package/libs/ui/elements/src/index.d.ts +2 -2
  438. package/libs/ui/elements/src/index.d.ts.map +1 -1
  439. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
  440. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
  441. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
  442. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  443. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
  444. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  445. package/libs/ui/elements/src/lib/error/error.component.d.ts +3 -1
  446. package/libs/ui/elements/src/lib/error/error.component.d.ts.map +1 -1
  447. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
  448. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  449. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +2 -2
  450. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  451. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
  452. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  453. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
  454. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +5 -1
  455. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
  456. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +17 -15
  457. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  458. package/libs/ui/inputs/src/index.d.ts +5 -0
  459. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  460. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +15 -4
  461. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  462. package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
  463. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  464. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  465. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
  466. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  467. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +5 -3
  468. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
  469. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +24 -0
  470. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
  471. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +4 -5
  472. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  473. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +1 -1
  474. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -1
  475. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +17 -0
  476. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
  477. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
  478. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  479. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -4
  480. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  481. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +33 -36
  482. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  483. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +21 -0
  484. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
  485. package/libs/ui/layout/src/index.d.ts +3 -0
  486. package/libs/ui/layout/src/index.d.ts.map +1 -1
  487. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +2 -2
  488. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -1
  489. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +1 -1
  490. package/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.d.ts +2 -2
  491. package/libs/ui/layout/src/lib/max-lines/max-lines.component.d.ts.map +1 -0
  492. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
  493. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
  494. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
  495. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
  496. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  497. package/libs/ui/map/src/index.d.ts +3 -2
  498. package/libs/ui/map/src/index.d.ts.map +1 -1
  499. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +3 -4
  500. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
  501. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts +37 -0
  502. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +1 -0
  503. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts +18 -0
  504. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +1 -0
  505. package/libs/ui/map/src/lib/map-utils.d.ts +7 -0
  506. package/libs/ui/map/src/lib/map-utils.d.ts.map +1 -0
  507. package/libs/ui/search/src/index.d.ts +1 -0
  508. package/libs/ui/search/src/index.d.ts.map +1 -1
  509. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
  510. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
  511. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +20 -0
  512. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
  513. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +36 -0
  514. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -0
  515. package/libs/ui/widgets/src/index.d.ts +1 -0
  516. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  517. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
  518. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
  519. package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts +1 -1
  520. package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +1 -1
  521. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +10 -11
  522. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +1 -1
  523. package/libs/util/app-config/src/index.d.ts +1 -0
  524. package/libs/util/app-config/src/index.d.ts.map +1 -1
  525. package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
  526. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  527. package/libs/util/app-config/src/lib/map-layers.d.ts +4 -0
  528. package/libs/util/app-config/src/lib/map-layers.d.ts.map +1 -0
  529. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  530. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  531. package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
  532. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  533. package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
  534. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
  535. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
  536. package/package.json +5 -3
  537. package/src/libs/api/metadata-converter/src/index.ts +3 -0
  538. package/src/libs/api/metadata-converter/src/lib/common/license.ts +66 -0
  539. package/src/libs/api/metadata-converter/src/lib/common/url.ts +15 -0
  540. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +378 -0
  541. package/src/libs/api/metadata-converter/src/lib/dcat-ap/index.ts +1 -0
  542. package/src/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.ts +17 -0
  543. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +370 -0
  544. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.ts +95 -0
  545. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/individual-name.ts +20 -0
  546. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/keyword.mapper.ts +16 -0
  547. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/role.mapper.ts +48 -0
  548. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.ts +97 -0
  549. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/status.mapper.ts +19 -0
  550. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/update-frequency.mapper.ts +67 -0
  551. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.ts +1 -0
  552. package/src/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.ts +68 -0
  553. package/src/libs/api/metadata-converter/src/lib/find-converter.ts +13 -0
  554. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +272 -0
  555. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +7 -2
  556. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +6 -2
  557. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +38 -13
  558. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +6 -2
  559. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +110 -0
  560. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +85 -0
  561. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +73 -0
  562. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
  563. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
  564. package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
  565. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  566. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +5 -6
  567. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
  568. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +21 -43
  569. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -16
  570. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +85 -17
  571. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
  572. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +203 -157
  573. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +50 -7
  574. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +176 -58
  575. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -0
  576. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +3 -1
  577. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +13 -2
  578. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +116 -30
  579. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +29 -1
  580. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +10 -8
  581. package/src/libs/common/domain/src/lib/model/record/organization.model.ts +1 -0
  582. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  583. package/src/libs/common/domain/src/lib/platform.service.interface.ts +35 -1
  584. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +35 -0
  585. package/src/libs/common/fixtures/src/index.ts +6 -1
  586. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
  587. package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
  588. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
  589. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
  590. package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
  591. package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
  592. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
  593. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
  594. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
  595. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
  596. package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
  597. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
  598. package/src/libs/common/fixtures/src/lib/individual.fixtures.ts +61 -0
  599. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
  600. package/src/libs/common/fixtures/src/lib/map/index.ts +1 -0
  601. package/src/libs/common/fixtures/src/lib/map/map-context.fixtures.ts +53 -0
  602. package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
  603. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +65 -3
  604. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
  605. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +17 -9
  606. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
  607. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
  608. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
  609. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +45 -15
  610. package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +4 -0
  611. package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +2 -0
  612. package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
  613. package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
  614. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
  615. package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +1 -1
  616. package/src/libs/data-access/gn4/src/spec.yaml +0 -8
  617. package/src/libs/feature/catalog/src/index.ts +1 -0
  618. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +5 -2
  619. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +1 -1
  620. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +2 -2
  621. package/src/libs/feature/catalog/src/lib/organization-url.token.ts +6 -0
  622. package/src/libs/feature/catalog/src/lib/records/records.service.ts +6 -8
  623. package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
  624. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
  625. package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +8 -3
  626. package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
  627. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +5 -2
  628. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +38 -78
  629. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
  630. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
  631. package/src/libs/feature/editor/src/index.ts +1 -0
  632. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +7 -0
  633. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +28 -6
  634. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  635. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
  636. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
  637. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
  638. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +15 -0
  639. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +18 -0
  640. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +26 -0
  641. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +90 -0
  642. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +47 -0
  643. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +132 -0
  644. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
  645. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
  646. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +31 -0
  647. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +82 -0
  648. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +40 -0
  649. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +170 -0
  650. 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
  651. 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
  652. 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
  653. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.html +4 -0
  654. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.ts +21 -0
  655. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +8 -18
  656. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +40 -81
  657. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css +8 -0
  658. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +13 -5
  659. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +1 -0
  660. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +86 -0
  661. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +43 -0
  662. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +185 -0
  663. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.css +0 -0
  664. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.html +71 -0
  665. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +241 -0
  666. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css +0 -0
  667. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  668. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +48 -0
  669. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
  670. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -0
  671. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +122 -0
  672. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +15 -8
  673. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +11 -14
  674. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +5 -3
  675. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +11 -4
  676. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +20 -1
  677. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +212 -1
  678. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.css +4 -0
  679. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +31 -4
  680. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +43 -86
  681. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +4 -0
  682. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +16 -14
  683. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +17 -15
  684. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +127 -70
  685. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +56 -44
  686. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -2
  687. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +52 -9
  688. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +20 -7
  689. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +2 -6
  690. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
  691. package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
  692. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
  693. package/src/libs/feature/editor/src/lib/fields.config.ts +256 -57
  694. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +65 -0
  695. package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
  696. package/src/libs/feature/editor/src/lib/services/editor.service.ts +22 -7
  697. package/src/libs/feature/map/src/index.ts +1 -8
  698. package/src/libs/feature/map/src/lib/+state/map.actions.ts +10 -25
  699. package/src/libs/feature/map/src/lib/+state/map.facade.ts +11 -15
  700. package/src/libs/feature/map/src/lib/+state/map.reducer.ts +16 -53
  701. package/src/libs/feature/map/src/lib/+state/map.selectors.ts +7 -2
  702. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
  703. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +23 -22
  704. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +22 -11
  705. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
  706. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +21 -19
  707. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
  708. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +17 -10
  709. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +1 -1
  710. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +17 -10
  711. package/src/libs/feature/map/src/lib/constant/index.ts +0 -1
  712. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -41
  713. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +38 -20
  714. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +2 -2
  715. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +39 -6
  716. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.css +0 -0
  717. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.html +4 -0
  718. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts +29 -0
  719. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
  720. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +8 -232
  721. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
  722. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +36 -19
  723. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
  724. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +11 -0
  725. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +59 -12
  726. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +29 -20
  727. package/src/libs/feature/record/src/lib/feature-record.module.ts +14 -5
  728. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +4 -4
  729. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +45 -72
  730. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +47 -32
  731. package/src/libs/feature/router/src/lib/default/constants.ts +1 -0
  732. package/src/libs/feature/router/src/lib/default/router.config.ts +1 -0
  733. package/src/libs/feature/router/src/lib/default/router.service.ts +13 -1
  734. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +8 -0
  735. package/src/libs/feature/search/src/index.ts +1 -1
  736. package/src/libs/feature/search/src/lib/feature-search.module.ts +2 -1
  737. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +2 -1
  738. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +2 -2
  739. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.css +0 -0
  740. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +15 -0
  741. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +114 -0
  742. package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
  743. package/src/libs/feature/search/src/lib/state/search.facade.ts +11 -0
  744. package/src/libs/feature/search/src/lib/state/selectors.ts +7 -0
  745. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +16 -2
  746. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +8 -6
  747. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
  748. package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +8 -1
  749. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +2 -3
  750. package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
  751. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +11 -3
  752. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +3 -7
  753. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
  754. package/src/libs/ui/elements/src/index.ts +2 -2
  755. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +29 -29
  756. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
  757. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
  758. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
  759. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  760. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
  761. package/src/libs/ui/elements/src/lib/error/error.component.html +30 -6
  762. package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -0
  763. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
  764. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +13 -17
  765. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -1
  766. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +7 -1
  767. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
  768. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
  769. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
  770. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  771. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
  772. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +1 -1
  773. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +22 -1
  774. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +10 -6
  775. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
  776. package/src/libs/ui/inputs/src/index.ts +5 -0
  777. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +25 -19
  778. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +33 -15
  779. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +97 -30
  780. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +11 -3
  781. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +2 -1
  782. package/src/libs/ui/inputs/src/lib/button/button.component.ts +15 -1
  783. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +7 -2
  784. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +14 -6
  785. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +7 -1
  786. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +7 -2
  787. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +28 -23
  788. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +7 -1
  789. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +40 -26
  790. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +4 -0
  791. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +89 -0
  792. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +92 -0
  793. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +4 -0
  794. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +76 -68
  795. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +17 -14
  796. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +5 -1
  797. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +32 -0
  798. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +14 -0
  799. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +39 -0
  800. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +3 -2
  801. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +3 -28
  802. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
  803. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
  804. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -9
  805. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +9 -0
  806. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +41 -0
  807. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +56 -0
  808. package/src/libs/ui/layout/src/index.ts +3 -0
  809. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +8 -3
  810. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +4 -3
  811. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.css +1 -1
  812. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +3 -2
  813. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.css +0 -0
  814. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.html +1 -0
  815. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.ts +9 -5
  816. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.css +0 -0
  817. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
  818. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
  819. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
  820. package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +15 -18
  821. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -1
  822. package/src/libs/ui/map/src/index.ts +3 -2
  823. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +1 -1
  824. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +8 -5
  825. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.css +0 -0
  826. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +203 -0
  827. package/src/libs/ui/map/src/lib/components/map-container/map-settings.token.ts +23 -0
  828. package/src/libs/ui/map/src/lib/map-utils.ts +54 -0
  829. package/src/libs/ui/search/src/index.ts +1 -0
  830. package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
  831. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
  832. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +26 -0
  833. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +74 -0
  834. package/src/libs/ui/search/src/lib/results-table/results-table.component.css +0 -0
  835. package/src/libs/{feature → ui}/search/src/lib/results-table/results-table.component.html +41 -16
  836. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +151 -0
  837. package/src/libs/ui/widgets/src/index.ts +1 -0
  838. package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
  839. package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
  840. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
  841. package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +4 -0
  842. package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +0 -3
  843. package/src/libs/util/app-config/src/index.ts +1 -0
  844. package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
  845. package/src/libs/util/app-config/src/lib/map-layers.ts +31 -0
  846. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
  847. package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
  848. package/src/libs/util/shared/src/lib/services/theme.service.ts +1 -0
  849. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
  850. package/tailwind.base.config.js +1 -0
  851. package/tailwind.base.css +53 -8
  852. package/translations/de.json +175 -38
  853. package/translations/en.json +176 -39
  854. package/translations/es.json +146 -9
  855. package/translations/fr.json +207 -70
  856. package/translations/it.json +149 -12
  857. package/translations/nl.json +146 -9
  858. package/translations/pt.json +146 -9
  859. package/translations/sk.json +148 -11
  860. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -15
  861. 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
  862. 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
  863. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
  864. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
  865. package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +0 -15
  866. package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +0 -2
  867. package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +0 -8
  868. package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +0 -17
  869. package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +0 -38
  870. package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +0 -19
  871. package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +0 -19
  872. package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +0 -27
  873. package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +0 -46
  874. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +0 -10
  875. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +0 -289
  876. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +0 -136
  877. package/esm2022/libs/ui/elements/src/lib/max-lines/max-lines.component.mjs +0 -69
  878. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -43
  879. package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +0 -40
  880. package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +0 -33
  881. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +0 -8
  882. 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
  883. 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
  884. 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
  885. 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
  886. 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
  887. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
  888. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
  889. package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
  890. package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
  891. package/libs/feature/map/src/lib/+state/map.effects.d.ts +0 -9
  892. package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +0 -1
  893. package/libs/feature/map/src/lib/+state/map.models.d.ts +0 -9
  894. package/libs/feature/map/src/lib/+state/map.models.d.ts.map +0 -1
  895. package/libs/feature/map/src/lib/constant/map-options.d.ts +0 -9
  896. package/libs/feature/map/src/lib/constant/map-options.d.ts.map +0 -1
  897. package/libs/feature/map/src/lib/constant/style.constant.d.ts +0 -4
  898. package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +0 -1
  899. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +0 -16
  900. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +0 -1
  901. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +0 -9
  902. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +0 -1
  903. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +0 -11
  904. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +0 -1
  905. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +0 -12
  906. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +0 -1
  907. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +0 -26
  908. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +0 -1
  909. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +0 -77
  910. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +0 -1
  911. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +0 -26
  912. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +0 -1
  913. package/libs/feature/search/src/lib/results-table/results-table.component.d.ts +0 -36
  914. package/libs/feature/search/src/lib/results-table/results-table.component.d.ts.map +0 -1
  915. package/libs/ui/elements/src/lib/max-lines/max-lines.component.d.ts.map +0 -1
  916. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -22
  917. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
  918. package/libs/ui/map/src/lib/components/map/map.component.d.ts +0 -19
  919. package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +0 -1
  920. package/libs/ui/map/src/lib/ui-map.module.d.ts +0 -13
  921. package/libs/ui/map/src/lib/ui-map.module.d.ts.map +0 -1
  922. package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
  923. package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
  924. package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
  925. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -8
  926. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -70
  927. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +0 -4
  928. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +0 -15
  929. 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
  930. 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
  931. 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
  932. 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
  933. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
  934. package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
  935. package/src/libs/feature/map/src/lib/+state/map.effects.ts +0 -7
  936. package/src/libs/feature/map/src/lib/+state/map.models.ts +0 -9
  937. package/src/libs/feature/map/src/lib/constant/map-options.ts +0 -17
  938. package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +0 -42
  939. package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +0 -10
  940. package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +0 -13
  941. package/src/libs/feature/map/src/lib/map-container/map-container.component.html +0 -1
  942. package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +0 -26
  943. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +0 -1
  944. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +0 -57
  945. package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +0 -51
  946. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +0 -95
  947. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +0 -318
  948. package/src/libs/feature/search/src/lib/results-table/results-table.component.ts +0 -171
  949. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -36
  950. package/src/libs/ui/map/src/lib/components/map/map.component.ts +0 -57
  951. package/src/libs/ui/map/src/lib/ui-map.module.ts +0 -19
  952. /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → contact-card/contact-card.component.css} +0 -0
  953. /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
  954. /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
  955. /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
  956. /package/src/libs/feature/{map/src/lib/map-container/map-container.component.css → editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.css} +0 -0
  957. /package/src/libs/feature/{map/src/lib/map-context/component/map-context.component.css → editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.css} +0 -0
  958. /package/src/libs/feature/{search/src/lib/results-table/results-table.component.css → editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.css} +0 -0
  959. /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
  960. /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
  961. /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
  962. /package/src/libs/ui/map/src/lib/components/{map/map.component.html → map-container/map-container.component.html} +0 -0
@@ -1,43 +0,0 @@
1
- import { CdkDrag, CdkDragHandle, CdkDropList, moveItemInArray, } from '@angular/cdk/drag-drop';
2
- import { NgComponentOutlet, NgFor } from '@angular/common';
3
- import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, } from '@angular/core';
4
- import { MatIconModule } from '@angular/material/icon';
5
- import { ButtonComponent } from '../../../../../../libs/ui/inputs/src';
6
- import * as i0 from "@angular/core";
7
- export class SortableListComponent {
8
- constructor() {
9
- this.elementsChange = new EventEmitter();
10
- this.add = new EventEmitter();
11
- }
12
- drop(event) {
13
- moveItemInArray(this.elements, event.previousIndex, event.currentIndex);
14
- this.elementsChange.emit(this.elements);
15
- }
16
- removeElement(index) {
17
- this.elements = this.elements.filter((_, i) => i !== index);
18
- this.elementsChange.emit(this.elements);
19
- }
20
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortableListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
21
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SortableListComponent, isStandalone: true, selector: "gn-ui-sortable-list", inputs: { elements: "elements", addOptions: "addOptions" }, outputs: { elementsChange: "elementsChange", add: "add" }, ngImport: i0, template: "<div class=\"flex gap-2 mb-2\">\n <gn-ui-button\n *ngFor=\"let addOption of addOptions\"\n (buttonClick)=\"add.emit(addOption.eventName)\"\n >\n <span class=\"material-symbols-outlined gn-ui-icon-small\"> add </span>\n &nbsp;{{ addOption.buttonLabel }}</gn-ui-button\n >\n</div>\n<div\n cdkDropList\n class=\"sortable-list flex flex-col gap-3 p-2\"\n (cdkDropListDropped)=\"drop($event)\"\n>\n <ng-container *ngFor=\"let element of elements; index as index\">\n <div class=\"sortable-box bg-white flex items-center\" cdkDrag>\n <span\n cdkDragHandle\n class=\"material-symbols-outlined mx-[10px] cursor-grab gn-ui-icon-medium flex-none\"\n >\n drag_handle\n </span>\n <div class=\"flex-1\">\n <ng-container\n *ngComponentOutlet=\"element.component; inputs: element.inputs\"\n ></ng-container>\n </div>\n <span\n (click)=\"removeElement(index)\"\n class=\"material-symbols-outlined mx-[10px] cursor-pointer gn-ui-icon-medium flex-none\"\n >\n close\n </span>\n </div>\n </ng-container>\n</div>\n", styles: [".cdk-drag-preview{box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.sortable-list.cdk-drop-list-dragging .sortable-box:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}\n"], dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
22
- }
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortableListComponent, decorators: [{
24
- type: Component,
25
- args: [{ selector: 'gn-ui-sortable-list', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
26
- NgFor,
27
- NgComponentOutlet,
28
- CdkDropList,
29
- CdkDrag,
30
- CdkDragHandle,
31
- MatIconModule,
32
- ButtonComponent,
33
- ], template: "<div class=\"flex gap-2 mb-2\">\n <gn-ui-button\n *ngFor=\"let addOption of addOptions\"\n (buttonClick)=\"add.emit(addOption.eventName)\"\n >\n <span class=\"material-symbols-outlined gn-ui-icon-small\"> add </span>\n &nbsp;{{ addOption.buttonLabel }}</gn-ui-button\n >\n</div>\n<div\n cdkDropList\n class=\"sortable-list flex flex-col gap-3 p-2\"\n (cdkDropListDropped)=\"drop($event)\"\n>\n <ng-container *ngFor=\"let element of elements; index as index\">\n <div class=\"sortable-box bg-white flex items-center\" cdkDrag>\n <span\n cdkDragHandle\n class=\"material-symbols-outlined mx-[10px] cursor-grab gn-ui-icon-medium flex-none\"\n >\n drag_handle\n </span>\n <div class=\"flex-1\">\n <ng-container\n *ngComponentOutlet=\"element.component; inputs: element.inputs\"\n ></ng-container>\n </div>\n <span\n (click)=\"removeElement(index)\"\n class=\"material-symbols-outlined mx-[10px] cursor-pointer gn-ui-icon-medium flex-none\"\n >\n close\n </span>\n </div>\n </ng-container>\n</div>\n", styles: [".cdk-drag-preview{box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.sortable-list.cdk-drop-list-dragging .sortable-box:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}\n"] }]
34
- }], propDecorators: { elements: [{
35
- type: Input
36
- }], addOptions: [{
37
- type: Input
38
- }], elementsChange: [{
39
- type: Output
40
- }], add: [{
41
- type: Output
42
- }] } });
43
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic29ydGFibGUtbGlzdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvc29ydGFibGUtbGlzdC9zb3J0YWJsZS1saXN0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9zb3J0YWJsZS1saXN0L3NvcnRhYmxlLWxpc3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLE9BQU8sRUFFUCxhQUFhLEVBQ2IsV0FBVyxFQUNYLGVBQWUsR0FDaEIsTUFBTSx3QkFBd0IsQ0FBQTtBQUMvQixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsS0FBSyxFQUFFLE1BQU0saUJBQWlCLENBQUE7QUFDMUQsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFDTCxNQUFNLEdBRVAsTUFBTSxlQUFlLENBQUE7QUFDdEIsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFBO0FBQ3RELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQTs7QUF1QnRFLE1BQU0sT0FBTyxxQkFBcUI7SUFoQmxDO1FBbUJZLG1CQUFjLEdBQUcsSUFBSSxZQUFZLEVBQXlCLENBQUE7UUFDMUQsUUFBRyxHQUFHLElBQUksWUFBWSxFQUFVLENBQUE7S0FXM0M7SUFUQyxJQUFJLENBQUMsS0FBNEI7UUFDL0IsZUFBZSxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsS0FBSyxDQUFDLGFBQWEsRUFBRSxLQUFLLENBQUMsWUFBWSxDQUFDLENBQUE7UUFDdkUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFBO0lBQ3pDLENBQUM7SUFFRCxhQUFhLENBQUMsS0FBYTtRQUN6QixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLEtBQUssQ0FBQyxDQUFBO1FBQzNELElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQTtJQUN6QyxDQUFDOytHQWRVLHFCQUFxQjttR0FBckIscUJBQXFCLHNNQ3hDbEMsdW1DQW9DQSw2YURMSSxLQUFLLG1IQUNMLGlCQUFpQixvUEFDakIsV0FBVywrZEFDWCxPQUFPLHdiQUNQLGFBQWEsOEZBQ2IsYUFBYSwrQkFDYixlQUFlOzs0RkFHTixxQkFBcUI7a0JBaEJqQyxTQUFTOytCQUNFLHFCQUFxQixtQkFHZCx1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUksV0FDUDt3QkFDUCxLQUFLO3dCQUNMLGlCQUFpQjt3QkFDakIsV0FBVzt3QkFDWCxPQUFPO3dCQUNQLGFBQWE7d0JBQ2IsYUFBYTt3QkFDYixlQUFlO3FCQUNoQjs4QkFHUSxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0ksY0FBYztzQkFBdkIsTUFBTTtnQkFDRyxHQUFHO3NCQUFaLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDZGtEcmFnLFxuICBDZGtEcmFnRHJvcCxcbiAgQ2RrRHJhZ0hhbmRsZSxcbiAgQ2RrRHJvcExpc3QsXG4gIG1vdmVJdGVtSW5BcnJheSxcbn0gZnJvbSAnQGFuZ3VsYXIvY2RrL2RyYWctZHJvcCdcbmltcG9ydCB7IE5nQ29tcG9uZW50T3V0bGV0LCBOZ0ZvciB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbidcbmltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE91dHB1dCxcbiAgVHlwZSxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJ1xuaW1wb3J0IHsgQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjJ1xuXG50eXBlIER5bmFtaWNFbGVtZW50ID0ge1xuICBjb21wb25lbnQ6IFR5cGU8YW55PlxuICBpbnB1dHM6IFJlY29yZDxzdHJpbmcsIGFueT5cbn1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktc29ydGFibGUtbGlzdCcsXG4gIHRlbXBsYXRlVXJsOiAnc29ydGFibGUtbGlzdC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWydzb3J0YWJsZS1saXN0LmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtcbiAgICBOZ0ZvcixcbiAgICBOZ0NvbXBvbmVudE91dGxldCxcbiAgICBDZGtEcm9wTGlzdCxcbiAgICBDZGtEcmFnLFxuICAgIENka0RyYWdIYW5kbGUsXG4gICAgTWF0SWNvbk1vZHVsZSxcbiAgICBCdXR0b25Db21wb25lbnQsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIFNvcnRhYmxlTGlzdENvbXBvbmVudCB7XG4gIEBJbnB1dCgpIGVsZW1lbnRzOiBBcnJheTxEeW5hbWljRWxlbWVudD5cbiAgQElucHV0KCkgYWRkT3B0aW9uczogQXJyYXk8eyBidXR0b25MYWJlbDogc3RyaW5nOyBldmVudE5hbWU6IHN0cmluZyB9PlxuICBAT3V0cHV0KCkgZWxlbWVudHNDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPEFycmF5PER5bmFtaWNFbGVtZW50Pj4oKVxuICBAT3V0cHV0KCkgYWRkID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KClcblxuICBkcm9wKGV2ZW50OiBDZGtEcmFnRHJvcDxzdHJpbmdbXT4pIHtcbiAgICBtb3ZlSXRlbUluQXJyYXkodGhpcy5lbGVtZW50cywgZXZlbnQucHJldmlvdXNJbmRleCwgZXZlbnQuY3VycmVudEluZGV4KVxuICAgIHRoaXMuZWxlbWVudHNDaGFuZ2UuZW1pdCh0aGlzLmVsZW1lbnRzKVxuICB9XG5cbiAgcmVtb3ZlRWxlbWVudChpbmRleDogbnVtYmVyKSB7XG4gICAgdGhpcy5lbGVtZW50cyA9IHRoaXMuZWxlbWVudHMuZmlsdGVyKChfLCBpKSA9PiBpICE9PSBpbmRleClcbiAgICB0aGlzLmVsZW1lbnRzQ2hhbmdlLmVtaXQodGhpcy5lbGVtZW50cylcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImZsZXggZ2FwLTIgbWItMlwiPlxuICA8Z24tdWktYnV0dG9uXG4gICAgKm5nRm9yPVwibGV0IGFkZE9wdGlvbiBvZiBhZGRPcHRpb25zXCJcbiAgICAoYnV0dG9uQ2xpY2spPVwiYWRkLmVtaXQoYWRkT3B0aW9uLmV2ZW50TmFtZSlcIlxuICA+XG4gICAgPHNwYW4gY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIGduLXVpLWljb24tc21hbGxcIj4gYWRkIDwvc3Bhbj5cbiAgICAmbmJzcDt7eyBhZGRPcHRpb24uYnV0dG9uTGFiZWwgfX08L2duLXVpLWJ1dHRvblxuICA+XG48L2Rpdj5cbjxkaXZcbiAgY2RrRHJvcExpc3RcbiAgY2xhc3M9XCJzb3J0YWJsZS1saXN0IGZsZXggZmxleC1jb2wgZ2FwLTMgcC0yXCJcbiAgKGNka0Ryb3BMaXN0RHJvcHBlZCk9XCJkcm9wKCRldmVudClcIlxuPlxuICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBlbGVtZW50IG9mIGVsZW1lbnRzOyBpbmRleCBhcyBpbmRleFwiPlxuICAgIDxkaXYgY2xhc3M9XCJzb3J0YWJsZS1ib3ggYmctd2hpdGUgZmxleCBpdGVtcy1jZW50ZXJcIiBjZGtEcmFnPlxuICAgICAgPHNwYW5cbiAgICAgICAgY2RrRHJhZ0hhbmRsZVxuICAgICAgICBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgbXgtWzEwcHhdIGN1cnNvci1ncmFiIGduLXVpLWljb24tbWVkaXVtIGZsZXgtbm9uZVwiXG4gICAgICA+XG4gICAgICAgIGRyYWdfaGFuZGxlXG4gICAgICA8L3NwYW4+XG4gICAgICA8ZGl2IGNsYXNzPVwiZmxleC0xXCI+XG4gICAgICAgIDxuZy1jb250YWluZXJcbiAgICAgICAgICAqbmdDb21wb25lbnRPdXRsZXQ9XCJlbGVtZW50LmNvbXBvbmVudDsgaW5wdXRzOiBlbGVtZW50LmlucHV0c1wiXG4gICAgICAgID48L25nLWNvbnRhaW5lcj5cbiAgICAgIDwvZGl2PlxuICAgICAgPHNwYW5cbiAgICAgICAgKGNsaWNrKT1cInJlbW92ZUVsZW1lbnQoaW5kZXgpXCJcbiAgICAgICAgY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIG14LVsxMHB4XSBjdXJzb3ItcG9pbnRlciBnbi11aS1pY29uLW1lZGl1bSBmbGV4LW5vbmVcIlxuICAgICAgPlxuICAgICAgICBjbG9zZVxuICAgICAgPC9zcGFuPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuIl19
@@ -1,40 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, ElementRef, Input, ViewChild, } from '@angular/core';
2
- import Map from 'ol/Map';
3
- import { fromEvent, merge, of, timer } from 'rxjs';
4
- import { delay, map, startWith, switchMap } from 'rxjs/operators';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@angular/common";
7
- import * as i2 from "@angular/material/icon";
8
- import * as i3 from "@ngx-translate/core";
9
- export class MapComponent {
10
- constructor(_element) {
11
- this._element = _element;
12
- this.resizeObserver = new ResizeObserver(() => {
13
- this.map.updateSize();
14
- this.resizeObserver.unobserve(this.container.nativeElement);
15
- });
16
- }
17
- ngOnInit() {
18
- // this will show the message when a 'mapmuted' event is received and hide it a few seconds later
19
- // 'movestart' and 'singleclick' will cancel displaying the message in particular for two finger interactions on mobile
20
- this.displayMessage$ = merge(fromEvent(this.map, 'mapmuted').pipe(map(() => true)), fromEvent(this.map, 'movestart').pipe(map(() => false)), fromEvent(this.map, 'singleclick').pipe(map(() => false))).pipe(switchMap((muted) => muted
21
- ? timer(2000).pipe(map(() => false), startWith(true), delay(400))
22
- : of(false)));
23
- }
24
- ngAfterViewInit() {
25
- this.map.setTarget(this.container.nativeElement);
26
- this.resizeObserver.observe(this.container.nativeElement);
27
- }
28
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MapComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
29
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MapComponent, selector: "gn-ui-map", inputs: { map: "map" }, viewQueries: [{ propertyName: "container", first: true, predicate: ["map"], descendants: true }], ngImport: i0, template: "<div class=\"h-full w-full\" #map></div>\n<div\n class=\"absolute inset-0 p-2 rounded z-40 transition-all flex flex-col justify-center items-center text-primary font-sans pointer-events-none\"\n [ngClass]=\"\n (displayMessage$ | async) ? 'visible opacity-100' : 'invisible opacity-0'\n \"\n>\n <div\n class=\"absolute z-[-1] inset-0 bg-gradient-to-b from-white to-primary-lightest opacity-60\"\n ></div>\n <mat-icon class=\"material-symbols-outlined !w-16 !h-16 text-[64px] mb-4\"\n >swipe</mat-icon\n >\n <p translate>map.navigation.message</p>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i3.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
30
- }
31
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MapComponent, decorators: [{
32
- type: Component,
33
- args: [{ selector: 'gn-ui-map', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"h-full w-full\" #map></div>\n<div\n class=\"absolute inset-0 p-2 rounded z-40 transition-all flex flex-col justify-center items-center text-primary font-sans pointer-events-none\"\n [ngClass]=\"\n (displayMessage$ | async) ? 'visible opacity-100' : 'invisible opacity-0'\n \"\n>\n <div\n class=\"absolute z-[-1] inset-0 bg-gradient-to-b from-white to-primary-lightest opacity-60\"\n ></div>\n <mat-icon class=\"material-symbols-outlined !w-16 !h-16 text-[64px] mb-4\"\n >swipe</mat-icon\n >\n <p translate>map.navigation.message</p>\n</div>\n" }]
34
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { map: [{
35
- type: Input
36
- }], container: [{
37
- type: ViewChild,
38
- args: ['map']
39
- }] } });
40
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFwLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvbWFwL3NyYy9saWIvY29tcG9uZW50cy9tYXAvbWFwLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvbWFwL3NyYy9saWIvY29tcG9uZW50cy9tYXAvbWFwLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFFTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFVBQVUsRUFDVixLQUFLLEVBRUwsU0FBUyxHQUNWLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sR0FBRyxNQUFNLFFBQVEsQ0FBQTtBQUN4QixPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBYyxFQUFFLEVBQUUsS0FBSyxFQUFFLE1BQU0sTUFBTSxDQUFBO0FBQzlELE9BQU8sRUFBRSxLQUFLLEVBQUUsR0FBRyxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQTs7Ozs7QUFRakUsTUFBTSxPQUFPLFlBQVk7SUFXdkIsWUFBb0IsUUFBb0I7UUFBcEIsYUFBUSxHQUFSLFFBQVEsQ0FBWTtRQVJ4QyxtQkFBYyxHQUFHLElBQUksY0FBYyxDQUFDLEdBQUcsRUFBRTtZQUN2QyxJQUFJLENBQUMsR0FBRyxDQUFDLFVBQVUsRUFBRSxDQUFBO1lBQ3JCLElBQUksQ0FBQyxjQUFjLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsYUFBYSxDQUFDLENBQUE7UUFDN0QsQ0FBQyxDQUFDLENBQUE7SUFLeUMsQ0FBQztJQUU1QyxRQUFRO1FBQ04saUdBQWlHO1FBQ2pHLHVIQUF1SDtRQUN2SCxJQUFJLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FDMUIsU0FBUyxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUUsVUFBVSxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsQ0FBQyxFQUNyRCxTQUFTLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRSxXQUFXLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLEdBQUcsRUFBRSxDQUFDLEtBQUssQ0FBQyxDQUFDLEVBQ3ZELFNBQVMsQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsR0FBRyxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FDMUQsQ0FBQyxJQUFJLENBQ0osU0FBUyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FDbEIsS0FBSztZQUNILENBQUMsQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsSUFBSSxDQUNkLEdBQUcsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxLQUFLLENBQUMsRUFDaEIsU0FBUyxDQUFDLElBQUksQ0FBQyxFQUNmLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FDWDtZQUNILENBQUMsQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLENBQ2QsQ0FDRixDQUFBO0lBQ0gsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsR0FBRyxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLGFBQWEsQ0FBQyxDQUFBO1FBQ2hELElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsYUFBYSxDQUFDLENBQUE7SUFDM0QsQ0FBQzsrR0FwQ1UsWUFBWTttR0FBWixZQUFZLDJLQ25CekIsOGpCQWVBOzs0RkRJYSxZQUFZO2tCQU54QixTQUFTOytCQUNFLFdBQVcsbUJBR0osdUJBQXVCLENBQUMsTUFBTTtpR0FHdEMsR0FBRztzQkFBWCxLQUFLO2dCQUNZLFNBQVM7c0JBQTFCLFNBQVM7dUJBQUMsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEFmdGVyVmlld0luaXQsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIElucHV0LFxuICBPbkluaXQsXG4gIFZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCBNYXAgZnJvbSAnb2wvTWFwJ1xuaW1wb3J0IHsgZnJvbUV2ZW50LCBtZXJnZSwgT2JzZXJ2YWJsZSwgb2YsIHRpbWVyIH0gZnJvbSAncnhqcydcbmltcG9ydCB7IGRlbGF5LCBtYXAsIHN0YXJ0V2l0aCwgc3dpdGNoTWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLW1hcCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9tYXAuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9tYXAuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgTWFwQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBBZnRlclZpZXdJbml0IHtcbiAgQElucHV0KCkgbWFwOiBNYXBcbiAgQFZpZXdDaGlsZCgnbWFwJykgY29udGFpbmVyOiBFbGVtZW50UmVmXG4gIHJlc2l6ZU9ic2VydmVyID0gbmV3IFJlc2l6ZU9ic2VydmVyKCgpID0+IHtcbiAgICB0aGlzLm1hcC51cGRhdGVTaXplKClcbiAgICB0aGlzLnJlc2l6ZU9ic2VydmVyLnVub2JzZXJ2ZSh0aGlzLmNvbnRhaW5lci5uYXRpdmVFbGVtZW50KVxuICB9KVxuICBtYXBNdXRlZCQ6IE9ic2VydmFibGU8Ym9vbGVhbj5cbiAgY2FuY2VsTWFwbXV0ZWQkOiBPYnNlcnZhYmxlPGJvb2xlYW4+XG4gIGRpc3BsYXlNZXNzYWdlJDogT2JzZXJ2YWJsZTxib29sZWFuPlxuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX2VsZW1lbnQ6IEVsZW1lbnRSZWYpIHt9XG5cbiAgbmdPbkluaXQoKSB7XG4gICAgLy8gdGhpcyB3aWxsIHNob3cgdGhlIG1lc3NhZ2Ugd2hlbiBhICdtYXBtdXRlZCcgZXZlbnQgaXMgcmVjZWl2ZWQgYW5kIGhpZGUgaXQgYSBmZXcgc2Vjb25kcyBsYXRlclxuICAgIC8vICdtb3Zlc3RhcnQnIGFuZCAnc2luZ2xlY2xpY2snIHdpbGwgY2FuY2VsIGRpc3BsYXlpbmcgdGhlIG1lc3NhZ2UgaW4gcGFydGljdWxhciBmb3IgdHdvIGZpbmdlciBpbnRlcmFjdGlvbnMgb24gbW9iaWxlXG4gICAgdGhpcy5kaXNwbGF5TWVzc2FnZSQgPSBtZXJnZShcbiAgICAgIGZyb21FdmVudCh0aGlzLm1hcCwgJ21hcG11dGVkJykucGlwZShtYXAoKCkgPT4gdHJ1ZSkpLFxuICAgICAgZnJvbUV2ZW50KHRoaXMubWFwLCAnbW92ZXN0YXJ0JykucGlwZShtYXAoKCkgPT4gZmFsc2UpKSxcbiAgICAgIGZyb21FdmVudCh0aGlzLm1hcCwgJ3NpbmdsZWNsaWNrJykucGlwZShtYXAoKCkgPT4gZmFsc2UpKVxuICAgICkucGlwZShcbiAgICAgIHN3aXRjaE1hcCgobXV0ZWQpID0+XG4gICAgICAgIG11dGVkXG4gICAgICAgICAgPyB0aW1lcigyMDAwKS5waXBlKFxuICAgICAgICAgICAgICBtYXAoKCkgPT4gZmFsc2UpLFxuICAgICAgICAgICAgICBzdGFydFdpdGgodHJ1ZSksXG4gICAgICAgICAgICAgIGRlbGF5KDQwMClcbiAgICAgICAgICAgIClcbiAgICAgICAgICA6IG9mKGZhbHNlKVxuICAgICAgKVxuICAgIClcbiAgfVxuXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcbiAgICB0aGlzLm1hcC5zZXRUYXJnZXQodGhpcy5jb250YWluZXIubmF0aXZlRWxlbWVudClcbiAgICB0aGlzLnJlc2l6ZU9ic2VydmVyLm9ic2VydmUodGhpcy5jb250YWluZXIubmF0aXZlRWxlbWVudClcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImgtZnVsbCB3LWZ1bGxcIiAjbWFwPjwvZGl2PlxuPGRpdlxuICBjbGFzcz1cImFic29sdXRlIGluc2V0LTAgcC0yIHJvdW5kZWQgei00MCB0cmFuc2l0aW9uLWFsbCBmbGV4IGZsZXgtY29sIGp1c3RpZnktY2VudGVyIGl0ZW1zLWNlbnRlciB0ZXh0LXByaW1hcnkgZm9udC1zYW5zIHBvaW50ZXItZXZlbnRzLW5vbmVcIlxuICBbbmdDbGFzc109XCJcbiAgICAoZGlzcGxheU1lc3NhZ2UkIHwgYXN5bmMpID8gJ3Zpc2libGUgb3BhY2l0eS0xMDAnIDogJ2ludmlzaWJsZSBvcGFjaXR5LTAnXG4gIFwiXG4+XG4gIDxkaXZcbiAgICBjbGFzcz1cImFic29sdXRlIHotWy0xXSBpbnNldC0wIGJnLWdyYWRpZW50LXRvLWIgZnJvbS13aGl0ZSB0by1wcmltYXJ5LWxpZ2h0ZXN0IG9wYWNpdHktNjBcIlxuICA+PC9kaXY+XG4gIDxtYXQtaWNvbiBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgIXctMTYgIWgtMTYgdGV4dC1bNjRweF0gbWItNFwiXG4gICAgPnN3aXBlPC9tYXQtaWNvblxuICA+XG4gIDxwIHRyYW5zbGF0ZT5tYXAubmF2aWdhdGlvbi5tZXNzYWdlPC9wPlxuPC9kaXY+XG4iXX0=
@@ -1,33 +0,0 @@
1
- import { HttpClientModule } from '@angular/common/http';
2
- import { NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
- import { MapComponent } from './components/map/map.component';
5
- import { FeatureDetailComponent } from './components/feature-detail/feature-detail.component';
6
- import { TranslateModule } from '@ngx-translate/core';
7
- import { MatIconModule } from '@angular/material/icon';
8
- import * as i0 from "@angular/core";
9
- import * as i1 from "@ngx-translate/core";
10
- export class UiMapModule {
11
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiMapModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
12
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: UiMapModule, declarations: [MapComponent, FeatureDetailComponent], imports: [CommonModule,
13
- HttpClientModule,
14
- MatIconModule, i1.TranslateModule], exports: [MapComponent, FeatureDetailComponent] }); }
15
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiMapModule, imports: [CommonModule,
16
- HttpClientModule,
17
- MatIconModule,
18
- TranslateModule.forRoot()] }); }
19
- }
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UiMapModule, decorators: [{
21
- type: NgModule,
22
- args: [{
23
- declarations: [MapComponent, FeatureDetailComponent],
24
- imports: [
25
- CommonModule,
26
- HttpClientModule,
27
- MatIconModule,
28
- TranslateModule.forRoot(),
29
- ],
30
- exports: [MapComponent, FeatureDetailComponent],
31
- }]
32
- }] });
33
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidWktbWFwLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvbWFwL3NyYy9saWIvdWktbWFwLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQTtBQUN2RCxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQ3hDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTtBQUM5QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sZ0NBQWdDLENBQUE7QUFDN0QsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sc0RBQXNELENBQUE7QUFDN0YsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFBO0FBQ3JELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQTs7O0FBWXRELE1BQU0sT0FBTyxXQUFXOytHQUFYLFdBQVc7Z0hBQVgsV0FBVyxpQkFUUCxZQUFZLEVBQUUsc0JBQXNCLGFBRWpELFlBQVk7WUFDWixnQkFBZ0I7WUFDaEIsYUFBYSxpQ0FHTCxZQUFZLEVBQUUsc0JBQXNCO2dIQUVuQyxXQUFXLFlBUHBCLFlBQVk7WUFDWixnQkFBZ0I7WUFDaEIsYUFBYTtZQUNiLGVBQWUsQ0FBQyxPQUFPLEVBQUU7OzRGQUloQixXQUFXO2tCQVZ2QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLFlBQVksRUFBRSxzQkFBc0IsQ0FBQztvQkFDcEQsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osZ0JBQWdCO3dCQUNoQixhQUFhO3dCQUNiLGVBQWUsQ0FBQyxPQUFPLEVBQUU7cUJBQzFCO29CQUNELE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxzQkFBc0IsQ0FBQztpQkFDaEQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwQ2xpZW50TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uL2h0dHAnXG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nXG5pbXBvcnQgeyBNYXBDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvbWFwL21hcC5jb21wb25lbnQnXG5pbXBvcnQgeyBGZWF0dXJlRGV0YWlsQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2ZlYXR1cmUtZGV0YWlsL2ZlYXR1cmUtZGV0YWlsLmNvbXBvbmVudCdcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnXG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbidcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbTWFwQ29tcG9uZW50LCBGZWF0dXJlRGV0YWlsQ29tcG9uZW50XSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBIdHRwQ2xpZW50TW9kdWxlLFxuICAgIE1hdEljb25Nb2R1bGUsXG4gICAgVHJhbnNsYXRlTW9kdWxlLmZvclJvb3QoKSxcbiAgXSxcbiAgZXhwb3J0czogW01hcENvbXBvbmVudCwgRmVhdHVyZURldGFpbENvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIFVpTWFwTW9kdWxlIHt9XG4iXX0=
@@ -1,8 +0,0 @@
1
- import { FormControl } from '@angular/forms';
2
- import * as i0 from "@angular/core";
3
- export declare class FormFieldResourceUpdatedComponent {
4
- control: FormControl;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldResourceUpdatedComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldResourceUpdatedComponent, "gn-ui-form-field-resource-updated", never, { "control": { "alias": "control"; "required": false; }; }, {}, never, never, true, never>;
7
- }
8
- //# sourceMappingURL=form-field-resource-updated.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field-resource-updated.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;;AAG5C,qBAQa,iCAAiC;IACnC,OAAO,EAAG,WAAW,CAAA;yCADnB,iCAAiC;2CAAjC,iCAAiC;CAE7C"}
@@ -1,8 +0,0 @@
1
- import { FormControl } from '@angular/forms';
2
- import * as i0 from "@angular/core";
3
- export declare class FormFieldTemporalExtentsDateComponent {
4
- control: FormControl;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldTemporalExtentsDateComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTemporalExtentsDateComponent, "gn-ui-form-field-temporal-extents-date", never, { "control": { "alias": "control"; "required": false; }; }, {}, never, never, true, never>;
7
- }
8
- //# sourceMappingURL=form-field-temporal-extents-date.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field-temporal-extents-date.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../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"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;;AAI5C,qBAQa,qCAAqC;IACvC,OAAO,EAAG,WAAW,CAAA;yCADnB,qCAAqC;2CAArC,qCAAqC;CAEjD"}
@@ -1,8 +0,0 @@
1
- import { FormControl } from '@angular/forms';
2
- import * as i0 from "@angular/core";
3
- export declare class FormFieldTemporalExtentsRangeComponent {
4
- control: FormControl;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldTemporalExtentsRangeComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTemporalExtentsRangeComponent, "gn-ui-form-field-temporal-extents-range", never, { "control": { "alias": "control"; "required": false; }; }, {}, never, never, true, never>;
7
- }
8
- //# sourceMappingURL=form-field-temporal-extents-range.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field-temporal-extents-range.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../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"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;;AAI5C,qBAQa,sCAAsC;IACxC,OAAO,EAAG,WAAW,CAAA;yCADnB,sCAAsC;2CAAtC,sCAAsC;CAElD"}
@@ -1,26 +0,0 @@
1
- type BaseFormFieldType = 'text' | 'number' | 'rich' | 'date' | 'list' | 'spatial_extent' | 'temporal_extent' | 'url' | 'file' | 'toggle';
2
- type AllFormFieldType = BaseFormFieldType | 'object' | 'array';
3
- interface FormFieldConfigBase {
4
- type: AllFormFieldType;
5
- labelKey: string;
6
- hintKey?: string;
7
- tooltipKey?: string;
8
- required?: boolean;
9
- locked?: boolean;
10
- invalid?: boolean;
11
- invalidHintKey?: string;
12
- }
13
- export interface FormFieldConfigSimple extends FormFieldConfigBase {
14
- type: BaseFormFieldType;
15
- }
16
- export interface FormFieldConfigArray extends FormFieldConfigBase {
17
- type: 'array';
18
- items: FormFieldConfig;
19
- }
20
- export interface FormFieldConfigObject extends FormFieldConfigBase {
21
- type: 'object';
22
- fields: Array<FormFieldConfig>;
23
- }
24
- export type FormFieldConfig = FormFieldConfigSimple | FormFieldConfigArray | FormFieldConfigObject;
25
- export {};
26
- //# sourceMappingURL=form-field.model.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field.model.d.ts","sourceRoot":"","sources":["../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts"],"names":[],"mappings":"AAAA,KAAK,iBAAiB,GAClB,MAAM,GACN,QAAQ,GACR,MAAM,GACN,MAAM,GACN,MAAM,GACN,gBAAgB,GAChB,iBAAiB,GACjB,KAAK,GACL,MAAM,GACN,QAAQ,CAAA;AAEZ,KAAK,gBAAgB,GAAG,iBAAiB,GAAG,QAAQ,GAAG,OAAO,CAAA;AAE9D,UAAU,mBAAmB;IAC3B,IAAI,EAAE,gBAAgB,CAAA;IACtB,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB;AAED,MAAM,WAAW,qBAAsB,SAAQ,mBAAmB;IAChE,IAAI,EAAE,iBAAiB,CAAA;CACxB;AAED,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB;IAC/D,IAAI,EAAE,OAAO,CAAA;IACb,KAAK,EAAE,eAAe,CAAA;CACvB;AAED,MAAM,WAAW,qBAAsB,SAAQ,mBAAmB;IAChE,IAAI,EAAE,QAAQ,CAAA;IACd,MAAM,EAAE,KAAK,CAAC,eAAe,CAAC,CAAA;CAC/B;AAED,MAAM,MAAM,eAAe,GACvB,qBAAqB,GACrB,oBAAoB,GACpB,qBAAqB,CAAA"}
@@ -1,15 +0,0 @@
1
- import { FormFieldConfig } from '../components/record-form/form-field';
2
- export type EditorFieldExpression = `$\{${string}}`;
3
- export interface EditorFieldConfig {
4
- formFieldConfig?: FormFieldConfig;
5
- model?: string;
6
- hidden?: boolean;
7
- onSaveProcess?: EditorFieldExpression;
8
- }
9
- export type EditorFieldsConfig = EditorFieldConfig[];
10
- export type EditorFieldValue = string | number | boolean | unknown;
11
- export interface EditorFieldState {
12
- config: EditorFieldConfig;
13
- value: string | number | boolean | unknown;
14
- }
15
- //# sourceMappingURL=fields.model.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"fields.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/editor/src/lib/models/fields.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAA;AAItE,MAAM,MAAM,qBAAqB,GAAG,MAAM,MAAM,GAAG,CAAA;AAEnD,MAAM,WAAW,iBAAiB;IAEhC,eAAe,CAAC,EAAE,eAAe,CAAA;IAGjC,KAAK,CAAC,EAAE,MAAM,CAAA;IAId,MAAM,CAAC,EAAE,OAAO,CAAA;IAGhB,aAAa,CAAC,EAAE,qBAAqB,CAAA;CACtC;AAED,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,EAAE,CAAA;AAEpD,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAA;AAElE,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,iBAAiB,CAAA;IACzB,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAA;CAC3C"}
@@ -1,9 +0,0 @@
1
- import { Actions } from '@ngrx/effects';
2
- import * as i0 from "@angular/core";
3
- export declare class MapEffects {
4
- private readonly actions$;
5
- constructor(actions$: Actions);
6
- static ɵfac: i0.ɵɵFactoryDeclaration<MapEffects, never>;
7
- static ɵprov: i0.ɵɵInjectableDeclaration<MapEffects>;
8
- }
9
- //# sourceMappingURL=map.effects.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"map.effects.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;;AAEvC,qBACa,UAAU;IACT,OAAO,CAAC,QAAQ,CAAC,QAAQ;gBAAR,QAAQ,EAAE,OAAO;yCADnC,UAAU;6CAAV,UAAU;CAEtB"}
@@ -1,9 +0,0 @@
1
- import { MapContextLayerModel } from '../map-context/map-context.model';
2
- export type MapLayer = MapContextLayerModel & {
3
- title: string;
4
- };
5
- export type MapLayerWithInfo = MapLayer & {
6
- error: string | null;
7
- loading: boolean;
8
- };
9
- //# sourceMappingURL=map.models.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"map.models.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAA;AAEvE,MAAM,MAAM,QAAQ,GAAG,oBAAoB,GAAG;IAC5C,KAAK,EAAE,MAAM,CAAA;CACd,CAAA;AACD,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG;IACxC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;IACpB,OAAO,EAAE,OAAO,CAAA;CACjB,CAAA"}
@@ -1,9 +0,0 @@
1
- import { InjectionToken } from '@angular/core';
2
- import { StyleFunction } from 'ol/style/Style';
3
- export interface MapOptionsModel {
4
- defaultStyle: StyleFunction;
5
- hlStyle: StyleFunction;
6
- }
7
- export declare const defaultMapOptions: MapOptionsModel;
8
- export declare const FEATURE_MAP_OPTIONS: InjectionToken<MapOptionsModel>;
9
- //# sourceMappingURL=map-options.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"map-options.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/constant/map-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;AAG9C,MAAM,WAAW,eAAe;IAC9B,YAAY,EAAE,aAAa,CAAA;IAC3B,OAAO,EAAE,aAAa,CAAA;CACvB;AAED,eAAO,MAAM,iBAAiB,EAAE,eAG/B,CAAA;AAED,eAAO,MAAM,mBAAmB,iCAE/B,CAAA"}
@@ -1,4 +0,0 @@
1
- import { StyleFunction } from 'ol/style/Style';
2
- export declare const defaultStyle: StyleFunction;
3
- export declare const hlStyle: StyleFunction;
4
- //# sourceMappingURL=style.constant.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"style.constant.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/constant/style.constant.ts"],"names":[],"mappings":"AACA,OAAc,EAAsB,aAAa,EAAE,MAAM,gBAAgB,CAAA;AAEzE,eAAO,MAAM,YAAY,EAAE,aAAkC,CAAA;AAc7D,eAAO,MAAM,OAAO,EAAE,aAA8B,CAAA"}
@@ -1,16 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import Feature from 'ol/Feature';
3
- import { Geometry } from 'ol/geom';
4
- import { MapManagerService } from '../manager/map-manager.service';
5
- import { MapUtilsService } from '../utils/map-utils.service';
6
- import * as i0 from "@angular/core";
7
- export declare class FeatureInfoService {
8
- private manager;
9
- private mapUtils;
10
- features$: EventEmitter<Feature<Geometry>[]>;
11
- constructor(manager: MapManagerService, mapUtils: MapUtilsService);
12
- handleFeatureInfo(): void;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<FeatureInfoService, never>;
14
- static ɵprov: i0.ɵɵInjectableDeclaration<FeatureInfoService>;
15
- }
16
- //# sourceMappingURL=feature-info.service.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"feature-info.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/feature-info/feature-info.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAc,MAAM,eAAe,CAAA;AACxD,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;;AAE5D,qBAGa,kBAAkB;IAI3B,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,QAAQ;IAJlB,SAAS,oCAA0C;gBAGzC,OAAO,EAAE,iBAAiB,EAC1B,QAAQ,EAAE,eAAe;IAGnC,iBAAiB,IAAI,IAAI;yCARd,kBAAkB;6CAAlB,kBAAkB;CA+B9B"}
@@ -1,9 +0,0 @@
1
- import { MapManagerService } from './map-manager.service';
2
- import * as i0 from "@angular/core";
3
- export declare class MapInstanceDirective {
4
- private manager;
5
- constructor(manager: MapManagerService);
6
- static ɵfac: i0.ɵɵFactoryDeclaration<MapInstanceDirective, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<MapInstanceDirective, "[gnUiMapContainer]", never, {}, {}, never, never, false, never>;
8
- }
9
- //# sourceMappingURL=map-instance.directive.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"map-instance.directive.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/manager/map-instance.directive.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;;AAEzD,qBAIa,oBAAoB;IACnB,OAAO,CAAC,OAAO;gBAAP,OAAO,EAAE,iBAAiB;yCADnC,oBAAoB;2CAApB,oBAAoB;CAEhC"}
@@ -1,11 +0,0 @@
1
- import Map from 'ol/Map';
2
- import { MapUtilsService } from '../utils/map-utils.service';
3
- import * as i0 from "@angular/core";
4
- export declare class MapManagerService {
5
- private utils;
6
- readonly map: Map;
7
- constructor(utils: MapUtilsService);
8
- static ɵfac: i0.ɵɵFactoryDeclaration<MapManagerService, never>;
9
- static ɵprov: i0.ɵɵInjectableDeclaration<MapManagerService>;
10
- }
11
- //# sourceMappingURL=map-manager.service.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"map-manager.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/manager/map-manager.service.ts"],"names":[],"mappings":"AACA,OAAO,GAAG,MAAM,QAAQ,CAAA;AACxB,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;;AAE5D,qBAGa,iBAAiB;IAEhB,OAAO,CAAC,KAAK;IADzB,QAAQ,CAAC,GAAG,EAAE,GAAG,CAAA;gBACG,KAAK,EAAE,eAAe;yCAF/B,iBAAiB;6CAAjB,iBAAiB;CAK7B"}
@@ -1,12 +0,0 @@
1
- import { Observable } from 'rxjs';
2
- import { MapFacade } from '../+state/map.facade';
3
- import { MapContextModel } from '../map-context/map-context.model';
4
- import * as i0 from "@angular/core";
5
- export declare class MapContainerComponent {
6
- private mapFacade;
7
- context$: Observable<MapContextModel>;
8
- constructor(mapFacade: MapFacade);
9
- static ɵfac: i0.ɵɵFactoryDeclaration<MapContainerComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<MapContainerComponent, "gn-ui-map-container", never, {}, {}, never, never, false, never>;
11
- }
12
- //# sourceMappingURL=map-container.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"map-container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/map-container/map-container.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAA;AAEjC,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAA;;AAGlE,qBAMa,qBAAqB;IAWpB,OAAO,CAAC,SAAS;IAV7B,QAAQ,EAAE,UAAU,CAAC,eAAe,CAAC,CAQpC;gBAEmB,SAAS,EAAE,SAAS;yCAX7B,qBAAqB;2CAArB,qBAAqB;CAYjC"}
@@ -1,26 +0,0 @@
1
- import { EventEmitter, OnChanges } from '@angular/core';
2
- import { MapUtilsService } from '../../utils/map-utils.service';
3
- import Feature from 'ol/Feature';
4
- import { Geometry } from 'ol/geom';
5
- import Map from 'ol/Map';
6
- import { FeatureInfoService } from '../../feature-info/feature-info.service';
7
- import { MapManagerService } from '../../manager/map-manager.service';
8
- import { MapContextModel } from '../map-context.model';
9
- import { MapContextService } from '../map-context.service';
10
- import { MapConfig } from '../../../../../../../libs/util/app-config/src';
11
- import * as i0 from "@angular/core";
12
- export declare class MapContextComponent implements OnChanges {
13
- private service;
14
- private featureInfo;
15
- private manager;
16
- private utils;
17
- context: MapContextModel;
18
- mapConfig: MapConfig;
19
- featureClicked: EventEmitter<Feature<Geometry>[]>;
20
- map: Map;
21
- constructor(service: MapContextService, featureInfo: FeatureInfoService, manager: MapManagerService, utils: MapUtilsService);
22
- ngOnChanges(): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<MapContextComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<MapContextComponent, "gn-ui-map-context", never, { "context": { "alias": "context"; "required": false; }; "mapConfig": { "alias": "mapConfig"; "required": false; }; }, { "featureClicked": "featureClicked"; }, never, never, false, never>;
25
- }
26
- //# sourceMappingURL=map-context.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"map-context.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/map/src/lib/map-context/component/map-context.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,SAAS,EAEV,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,GAAG,MAAM,QAAQ,CAAA;AACxB,OAAO,EAAE,kBAAkB,EAAE,MAAM,yCAAyC,CAAA;AAC5E,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAA;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC1D,OAAO,EAAE,SAAS,EAAE,MAAM,+CAA+C,CAAA;;AAEzE,qBAMa,mBAAoB,YAAW,SAAS;IAQjD,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,KAAK;IAVN,OAAO,EAAE,eAAe,CAAA;IACxB,SAAS,EAAE,SAAS,CAAA;IACnB,cAAc,oCAA0C;IAElE,GAAG,EAAE,GAAG,CAAA;gBAGE,OAAO,EAAE,iBAAiB,EAC1B,WAAW,EAAE,kBAAkB,EAC/B,OAAO,EAAE,iBAAiB,EAC1B,KAAK,EAAE,eAAe;IAKhC,WAAW;yCAhBA,mBAAmB;2CAAnB,mBAAmB;CA+B/B"}
@@ -1,77 +0,0 @@
1
- import type { FeatureCollection } from 'geojson';
2
- import { Coordinate } from 'ol/coordinate';
3
- import type { Extent } from 'ol/extent';
4
- export declare enum MapContextLayerTypeEnum {
5
- XYZ = "xyz",
6
- WMS = "wms",
7
- WMTS = "wmts",
8
- WFS = "wfs",
9
- GEOJSON = "geojson",
10
- OGCAPI = "ogcapi"
11
- }
12
- export interface MapContextModel {
13
- layers: MapContextLayerModel[];
14
- view?: MapContextViewModel;
15
- }
16
- export interface MapContextLayerWmsModel {
17
- type: 'wms';
18
- url: string;
19
- name: string;
20
- attributions?: string;
21
- }
22
- export interface MapContextLayerWmtsModel {
23
- type: 'wmts';
24
- url: string;
25
- name: string;
26
- attributions?: string;
27
- }
28
- interface MapContextLayerWfsModel {
29
- type: 'wfs';
30
- url: string;
31
- name: string;
32
- attributions?: string;
33
- }
34
- export interface MapContextLayerOgcapiModel {
35
- type: 'ogcapi';
36
- url: string;
37
- name: string;
38
- layerType: 'feature' | 'vectorTiles' | 'mapTiles' | 'record';
39
- attributions?: string;
40
- }
41
- interface LayerXyzModel {
42
- type: 'xyz';
43
- name?: string;
44
- attributions?: string;
45
- }
46
- interface LayerXyzModelWithUrl extends LayerXyzModel {
47
- url: string;
48
- urls?: never;
49
- }
50
- interface LayerXyzModelWithUrls extends LayerXyzModel {
51
- urls: string[];
52
- url?: never;
53
- }
54
- export type MapContextLayerXyzModel = LayerXyzModelWithUrl | LayerXyzModelWithUrls;
55
- interface LayerGeojson {
56
- type: 'geojson';
57
- attributions?: string;
58
- }
59
- interface LayerGeojsonWithUrl extends LayerGeojson {
60
- url: string;
61
- data?: never;
62
- }
63
- interface LayerGeojsonWithData extends LayerGeojson {
64
- data: FeatureCollection | string;
65
- url?: never;
66
- }
67
- export type MapContextLayerGeojsonModel = LayerGeojsonWithUrl | LayerGeojsonWithData;
68
- export type MapContextLayerModel = MapContextLayerWmsModel | MapContextLayerWmtsModel | MapContextLayerWfsModel | MapContextLayerXyzModel | MapContextLayerGeojsonModel | MapContextLayerOgcapiModel;
69
- export interface MapContextViewModel {
70
- center?: Coordinate;
71
- zoom?: number;
72
- extent?: Extent;
73
- maxZoom?: number;
74
- maxExtent?: Extent;
75
- }
76
- export {};
77
- //# sourceMappingURL=map-context.model.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"map-context.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/map-context/map-context.model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAEvC,oBAAY,uBAAuB;IACjC,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,OAAO,YAAY;IACnB,MAAM,WAAW;CAClB;AAED,MAAM,WAAW,eAAe;IAC9B,MAAM,EAAE,oBAAoB,EAAE,CAAA;IAC9B,IAAI,CAAC,EAAE,mBAAmB,CAAA;CAC3B;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,KAAK,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED,UAAU,uBAAuB;IAC/B,IAAI,EAAE,KAAK,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED,MAAM,WAAW,0BAA0B;IACzC,IAAI,EAAE,QAAQ,CAAA;IACd,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,EAAE,SAAS,GAAG,aAAa,GAAG,UAAU,GAAG,QAAQ,CAAA;IAC5D,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED,UAAU,aAAa;IACrB,IAAI,EAAE,KAAK,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AACD,UAAU,oBAAqB,SAAQ,aAAa;IAClD,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,KAAK,CAAA;CACb;AACD,UAAU,qBAAsB,SAAQ,aAAa;IACnD,IAAI,EAAE,MAAM,EAAE,CAAA;IACd,GAAG,CAAC,EAAE,KAAK,CAAA;CACZ;AACD,MAAM,MAAM,uBAAuB,GAC/B,oBAAoB,GACpB,qBAAqB,CAAA;AAEzB,UAAU,YAAY;IACpB,IAAI,EAAE,SAAS,CAAA;IACf,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AACD,UAAU,mBAAoB,SAAQ,YAAY;IAChD,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,KAAK,CAAA;CACb;AACD,UAAU,oBAAqB,SAAQ,YAAY;IACjD,IAAI,EAAE,iBAAiB,GAAG,MAAM,CAAA;IAChC,GAAG,CAAC,EAAE,KAAK,CAAA;CACZ;AACD,MAAM,MAAM,2BAA2B,GACnC,mBAAmB,GACnB,oBAAoB,CAAA;AAExB,MAAM,MAAM,oBAAoB,GAC5B,uBAAuB,GACvB,wBAAwB,GACxB,uBAAuB,GACvB,uBAAuB,GACvB,2BAA2B,GAC3B,0BAA0B,CAAA;AAE9B,MAAM,WAAW,mBAAmB;IAClC,MAAM,CAAC,EAAE,UAAU,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB"}
@@ -1,26 +0,0 @@
1
- import { MapStyleService } from '../style/map-style.service';
2
- import { MapContextLayerModel, MapContextLayerXyzModel, MapContextModel, MapContextViewModel } from './map-context.model';
3
- import Map from 'ol/Map';
4
- import View from 'ol/View';
5
- import Layer from 'ol/layer/Base';
6
- import { MapUtilsService } from '../utils/map-utils.service';
7
- import { LayerConfig, MapConfig } from '../../../../../../libs/util/app-config/src';
8
- import * as i0 from "@angular/core";
9
- export declare const DEFAULT_BASELAYER_CONTEXT: MapContextLayerXyzModel;
10
- export declare const DEFAULT_VIEW: MapContextViewModel;
11
- export declare const WFS_MAX_FEATURES = 10000;
12
- export declare class MapContextService {
13
- private mapUtils;
14
- private styleService;
15
- constructor(mapUtils: MapUtilsService, styleService: MapStyleService);
16
- resetMapFromContext(map: Map, mapContext: MapContextModel, mapConfig?: MapConfig): Map;
17
- createLayer(layerModel: MapContextLayerModel, mapConfig?: MapConfig): Layer;
18
- createView(viewModel: MapContextViewModel, map?: Map): View;
19
- addDefaultBaselayerContext(layers: MapContextLayerModel[]): MapContextLayerModel[];
20
- mergeMapConfigWithContext(mapContext: MapContextModel, mapConfig: MapConfig): MapContextModel;
21
- getFallbackView(mapConfig: MapConfig): MapContextViewModel;
22
- getContextLayerFromConfig(config: LayerConfig): MapContextLayerModel;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<MapContextService, never>;
24
- static ɵprov: i0.ɵɵInjectableDeclaration<MapContextService>;
25
- }
26
- //# sourceMappingURL=map-context.service.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"map-context.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/map-context/map-context.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC5D,OAAO,EACL,oBAAoB,EAEpB,uBAAuB,EACvB,eAAe,EACf,mBAAmB,EACpB,MAAM,qBAAqB,CAAA;AAC5B,OAAO,GAAG,MAAM,QAAQ,CAAA;AACxB,OAAO,IAAI,MAAM,SAAS,CAAA;AAC1B,OAAO,KAAK,MAAM,eAAe,CAAA;AAOjC,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAA;;AAcnF,eAAO,MAAM,yBAAyB,EAAE,uBAQvC,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,mBAG1B,CAAA;AAED,eAAO,MAAM,gBAAgB,QAAQ,CAAA;AAErC,qBAGa,iBAAiB;IAE1B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,YAAY;gBADZ,QAAQ,EAAE,eAAe,EACzB,YAAY,EAAE,eAAe;IAGvC,mBAAmB,CACjB,GAAG,EAAE,GAAG,EACR,UAAU,EAAE,eAAe,EAC3B,SAAS,CAAC,EAAE,SAAS,GACpB,GAAG;IAoBN,WAAW,CAAC,UAAU,EAAE,oBAAoB,EAAE,SAAS,CAAC,EAAE,SAAS,GAAG,KAAK;IAkJ3E,UAAU,CAAC,SAAS,EAAE,mBAAmB,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI;IAqB3D,0BAA0B,CACxB,MAAM,EAAE,oBAAoB,EAAE,GAC7B,oBAAoB,EAAE;IAMzB,yBAAyB,CACvB,UAAU,EAAE,eAAe,EAC3B,SAAS,EAAE,SAAS,GACnB,eAAe;IAsBlB,eAAe,CAAC,SAAS,EAAE,SAAS,GAAG,mBAAmB;IAM1D,yBAAyB,CAAC,MAAM,EAAE,WAAW,GAAG,oBAAoB;yCA5OzD,iBAAiB;6CAAjB,iBAAiB;CAuQ7B"}
@@ -1,36 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
3
- import { FileFormat } from '../../../../../../libs/util/shared/src';
4
- import { SearchFacade } from '../state/search.facade';
5
- import { SelectionService } from '../../../../../../libs/api/repository/src';
6
- import { Observable } from 'rxjs';
7
- import { SearchService } from '../utils/service/search.service';
8
- import { RecordsRepositoryInterface } from '../../../../../../libs/common/domain/src/lib/repository/records-repository.interface';
9
- import * as i0 from "@angular/core";
10
- export declare class ResultsTableComponent {
11
- private searchFacade;
12
- private searchService;
13
- private selectionService;
14
- private recordsRepository;
15
- recordClick: EventEmitter<CatalogRecord>;
16
- records$: Observable<CatalogRecord[]>;
17
- selectedRecords$: import("rxjs").BehaviorSubject<string[]>;
18
- constructor(searchFacade: SearchFacade, searchService: SearchService, selectionService: SelectionService, recordsRepository: RecordsRepositoryInterface);
19
- dateToString(date: Date): string;
20
- getStatus(isPublishedToAll: boolean | unknown): "published" | "not published";
21
- getRecordFormats(record: CatalogRecord): FileFormat[];
22
- formatUserInfo(userInfo: string | unknown): string;
23
- getBadgeColor(format: FileFormat): string;
24
- handleRecordClick(item: unknown): void;
25
- setSortBy(col: string, order: 'asc' | 'desc'): void;
26
- isSortedBy(col: string): Observable<'asc' | 'desc' | null>;
27
- isChecked(record: CatalogRecord): Observable<boolean>;
28
- handleRecordSelectedChange(selected: boolean, record: CatalogRecord): void;
29
- toggleSelectAll(): Promise<void>;
30
- isAllSelected(): Observable<boolean>;
31
- isSomeSelected(): Observable<boolean>;
32
- hasDraft(record: CatalogRecord): boolean;
33
- static ɵfac: i0.ɵɵFactoryDeclaration<ResultsTableComponent, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<ResultsTableComponent, "gn-ui-results-table", never, {}, { "recordClick": "recordClick"; }, never, never, true, never>;
35
- }
36
- //# sourceMappingURL=results-table.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"results-table.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/results-table/results-table.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAU,MAAM,eAAe,CAAA;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AACzF,OAAO,EACL,UAAU,EAIX,MAAM,wCAAwC,CAAA;AAQ/C,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAA;AAC5E,OAAO,EAAiC,UAAU,EAAE,MAAM,MAAM,CAAA;AAIhE,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;;AAEjI,qBAea,qBAAqB;IAO9B,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,iBAAiB;IATjB,WAAW,8BAAoC;IAEzD,QAAQ,8BAA6B;IACrC,gBAAgB,2CAAoD;gBAG1D,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAE,aAAa,EAC5B,gBAAgB,EAAE,gBAAgB,EAClC,iBAAiB,EAAE,0BAA0B;IAGvD,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,UAAU,CAAC,KAAK,GAAG,MAAM,GAAG,IAAI,CAAC;IAiB1D,SAAS,CAAC,MAAM,EAAE,aAAa,GAAG,UAAU,CAAC,OAAO,CAAC;IASrD,0BAA0B,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,aAAa;IAQ7D,eAAe;IASrB,aAAa,IAAI,UAAU,CAAC,OAAO,CAAC;IAWpC,cAAc,IAAI,UAAU,CAAC,OAAO,CAAC;IAerC,QAAQ,CAAC,MAAM,EAAE,aAAa,GAAG,OAAO;yCAhI7B,qBAAqB;2CAArB,qBAAqB;CAmIjC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"max-lines.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/max-lines/max-lines.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EAEV,aAAa,EAEb,SAAS,EACT,iBAAiB,EAClB,MAAM,eAAe,CAAA;;AAEtB,qBAMa,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"}
@@ -1,22 +0,0 @@
1
- import { CdkDragDrop } from '@angular/cdk/drag-drop';
2
- import { EventEmitter, Type } from '@angular/core';
3
- import * as i0 from "@angular/core";
4
- type DynamicElement = {
5
- component: Type<any>;
6
- inputs: Record<string, any>;
7
- };
8
- export declare class SortableListComponent {
9
- elements: Array<DynamicElement>;
10
- addOptions: Array<{
11
- buttonLabel: string;
12
- eventName: string;
13
- }>;
14
- elementsChange: EventEmitter<DynamicElement[]>;
15
- add: EventEmitter<string>;
16
- drop(event: CdkDragDrop<string[]>): void;
17
- removeElement(index: number): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<SortableListComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<SortableListComponent, "gn-ui-sortable-list", never, { "elements": { "alias": "elements"; "required": false; }; "addOptions": { "alias": "addOptions"; "required": false; }; }, { "elementsChange": "elementsChange"; "add": "add"; }, never, never, true, never>;
20
- }
21
- export {};
22
- //# sourceMappingURL=sortable-list.component.d.ts.map