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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (922) hide show
  1. package/esm2022/libs/api/metadata-converter/src/index.mjs +4 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +64 -0
  3. package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +14 -0
  4. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +254 -0
  5. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/index.mjs +2 -0
  6. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.mjs +17 -0
  7. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +196 -0
  8. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +46 -0
  9. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +74 -0
  10. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.mjs +2 -0
  11. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +27 -0
  12. package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +11 -1
  13. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +2 -1
  14. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
  15. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +1 -1
  16. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  17. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +6 -6
  18. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +7 -4
  19. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +17 -29
  20. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +12 -17
  21. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +35 -7
  22. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
  23. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +76 -54
  24. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +44 -5
  25. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +99 -32
  26. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +2 -1
  27. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +3 -1
  28. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +12 -2
  29. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +59 -11
  30. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
  31. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  32. package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +1 -1
  33. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
  34. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  35. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  36. package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
  37. package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
  38. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
  39. package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +1 -1
  40. package/esm2022/libs/feature/catalog/src/index.mjs +2 -1
  41. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -4
  42. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +11 -11
  43. package/esm2022/libs/feature/catalog/src/lib/organization-url.token.mjs +4 -0
  44. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +4 -6
  45. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
  46. package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +10 -7
  47. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +40 -50
  48. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
  49. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
  50. package/esm2022/libs/feature/editor/src/index.mjs +2 -1
  51. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +3 -1
  52. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +10 -5
  53. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +10 -2
  54. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
  55. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +7 -3
  56. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +16 -6
  57. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +17 -0
  58. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +80 -0
  59. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +95 -0
  60. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +71 -0
  61. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +109 -0
  62. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +147 -0
  63. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +19 -0
  64. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +31 -38
  65. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +11 -9
  66. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +79 -0
  67. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +148 -0
  68. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +44 -0
  69. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +103 -0
  70. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +12 -16
  71. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +9 -8
  72. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +140 -5
  73. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +41 -68
  74. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +17 -15
  75. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +47 -44
  76. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -3
  77. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +13 -7
  78. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +3 -3
  79. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +8 -8
  80. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  81. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +6 -4
  82. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +207 -57
  83. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
  84. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
  85. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +12 -7
  86. package/esm2022/libs/feature/map/src/index.mjs +2 -9
  87. package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +4 -7
  88. package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +9 -15
  89. package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +13 -44
  90. package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +3 -2
  91. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +6 -6
  92. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +20 -19
  93. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +23 -14
  94. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +15 -14
  95. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +18 -13
  96. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +16 -11
  97. package/esm2022/libs/feature/map/src/lib/constant/index.mjs +1 -2
  98. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +9 -68
  99. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +43 -29
  100. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +43 -18
  101. package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +27 -0
  102. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
  103. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +12 -171
  104. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  105. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +42 -23
  106. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +13 -5
  107. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +49 -15
  108. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +21 -17
  109. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +14 -8
  110. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +40 -52
  111. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +11 -13
  112. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +2 -1
  113. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +1 -1
  114. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +9 -2
  115. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +8 -1
  116. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
  117. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +54 -9
  118. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +8 -3
  119. package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +4 -1
  120. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +7 -3
  121. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +5 -5
  122. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +7 -7
  123. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +5 -7
  124. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -8
  125. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
  126. package/esm2022/libs/ui/elements/src/index.mjs +3 -3
  127. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -3
  128. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
  129. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
  130. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
  131. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +5 -3
  132. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
  133. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +6 -5
  134. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  135. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +6 -6
  136. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
  137. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
  138. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
  139. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +24 -5
  140. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +15 -11
  141. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
  142. package/esm2022/libs/ui/inputs/src/index.mjs +6 -1
  143. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +24 -7
  144. package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +5 -3
  145. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +8 -1
  146. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +11 -4
  147. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +9 -3
  148. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +26 -24
  149. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
  150. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +19 -15
  151. package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +6 -4
  152. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +32 -0
  153. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +7 -21
  154. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +6 -17
  155. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +4 -13
  156. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +43 -0
  157. package/esm2022/libs/ui/layout/src/index.mjs +4 -1
  158. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +5 -3
  159. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
  160. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +71 -0
  161. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
  162. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
  163. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +1 -1
  164. package/esm2022/libs/ui/map/src/index.mjs +4 -3
  165. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +8 -6
  166. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +137 -0
  167. package/esm2022/libs/ui/map/src/lib/components/map-container/map-settings.token.mjs +13 -0
  168. package/esm2022/libs/ui/map/src/lib/map-utils.mjs +37 -0
  169. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
  170. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +67 -0
  171. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +33 -13
  172. package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
  173. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
  174. package/esm2022/libs/util/app-config/src/index.mjs +2 -1
  175. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
  176. package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +27 -0
  177. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
  178. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
  179. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +2 -1
  180. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
  181. package/esm2022/translations/de.json +160 -37
  182. package/esm2022/translations/en.json +161 -38
  183. package/esm2022/translations/es.json +131 -8
  184. package/esm2022/translations/fr.json +193 -70
  185. package/esm2022/translations/it.json +134 -11
  186. package/esm2022/translations/nl.json +131 -8
  187. package/esm2022/translations/pt.json +131 -8
  188. package/fesm2022/geonetwork-ui.mjs +11427 -8541
  189. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  190. package/libs/api/metadata-converter/src/index.d.ts +3 -0
  191. package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
  192. package/libs/api/metadata-converter/src/lib/common/license.d.ts +3 -0
  193. package/libs/api/metadata-converter/src/lib/common/license.d.ts.map +1 -0
  194. package/libs/api/metadata-converter/src/lib/common/url.d.ts +7 -0
  195. package/libs/api/metadata-converter/src/lib/common/url.d.ts.map +1 -0
  196. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +13 -0
  197. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -0
  198. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts +2 -0
  199. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts.map +1 -0
  200. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts +16 -0
  201. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts.map +1 -0
  202. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +20 -0
  203. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +1 -0
  204. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +9 -0
  205. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +1 -0
  206. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts +8 -0
  207. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +1 -0
  208. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts +2 -0
  209. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts.map +1 -0
  210. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts +6 -0
  211. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +1 -0
  212. package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +1 -1
  213. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  214. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
  215. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  216. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +2 -6
  217. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +1 -1
  218. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +1 -0
  219. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  220. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
  221. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
  222. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  223. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -2
  224. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
  225. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  226. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +12 -6
  227. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  228. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
  229. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
  230. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +13 -12
  231. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  232. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +59 -0
  233. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  234. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +19 -8
  235. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  236. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  237. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  238. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  239. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +24 -3
  240. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  241. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +2 -1
  242. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  243. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +9 -7
  244. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  245. package/libs/common/domain/src/lib/model/record/organization.model.d.ts +1 -0
  246. package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -1
  247. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  248. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  249. package/libs/common/domain/src/lib/platform.service.interface.d.ts +18 -1
  250. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  251. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +24 -0
  252. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  253. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
  254. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
  255. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
  256. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
  257. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  258. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +1 -1
  259. package/libs/feature/catalog/src/index.d.ts +1 -0
  260. package/libs/feature/catalog/src/index.d.ts.map +1 -1
  261. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +2 -1
  262. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  263. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  264. package/libs/feature/catalog/src/lib/organization-url.token.d.ts +3 -0
  265. package/libs/feature/catalog/src/lib/organization-url.token.d.ts.map +1 -0
  266. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
  267. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
  268. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  269. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +10 -9
  270. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -1
  271. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +13 -20
  272. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
  273. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
  274. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  275. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
  276. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  277. package/libs/feature/editor/src/index.d.ts +1 -0
  278. package/libs/feature/editor/src/index.d.ts.map +1 -1
  279. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +6 -0
  280. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  281. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
  282. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  283. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +5 -4
  284. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  285. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
  286. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  287. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
  288. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  289. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
  290. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  291. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +8 -0
  292. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  293. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +33 -0
  294. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
  295. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +34 -0
  296. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -0
  297. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
  298. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
  299. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts +38 -0
  300. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -0
  301. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +41 -0
  302. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -0
  303. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +9 -0
  304. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts.map +1 -0
  305. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +11 -19
  306. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  307. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +6 -4
  308. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  309. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +15 -0
  310. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -0
  311. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
  312. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -0
  313. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +15 -0
  314. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -0
  315. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +31 -0
  316. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
  317. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +4 -6
  318. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  319. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +4 -3
  320. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
  321. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +28 -0
  322. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
  323. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +10 -16
  324. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
  325. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +5 -5
  326. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -1
  327. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +18 -20
  328. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  329. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -2
  330. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  331. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +7 -7
  332. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  333. package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
  334. package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
  335. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -1
  336. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  337. package/libs/feature/editor/src/lib/fields.config.d.ts +55 -2
  338. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  339. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +42 -0
  340. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
  341. package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
  342. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  343. package/libs/feature/editor/src/lib/services/editor.service.d.ts +4 -3
  344. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  345. package/libs/feature/map/src/index.d.ts +1 -8
  346. package/libs/feature/map/src/index.d.ts.map +1 -1
  347. package/libs/feature/map/src/lib/+state/map.actions.d.ts +13 -39
  348. package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -1
  349. package/libs/feature/map/src/lib/+state/map.facade.d.ts +9 -10
  350. package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -1
  351. package/libs/feature/map/src/lib/+state/map.reducer.d.ts +4 -2
  352. package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -1
  353. package/libs/feature/map/src/lib/+state/map.selectors.d.ts +6 -1
  354. package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -1
  355. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +1 -1
  356. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  357. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +8 -10
  358. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  359. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +1 -1
  360. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  361. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +3 -3
  362. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  363. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +2 -2
  364. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  365. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +2 -2
  366. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  367. package/libs/feature/map/src/lib/constant/index.d.ts +0 -1
  368. package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -1
  369. package/libs/feature/map/src/lib/feature-map.module.d.ts +12 -23
  370. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  371. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +7 -7
  372. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
  373. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +5 -4
  374. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  375. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts +14 -0
  376. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts.map +1 -0
  377. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
  378. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
  379. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +0 -30
  380. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  381. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
  382. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  383. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
  384. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  385. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
  386. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
  387. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
  388. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  389. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +10 -7
  390. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  391. package/libs/feature/record/src/lib/feature-record.module.d.ts +13 -11
  392. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  393. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +14 -20
  394. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  395. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
  396. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  397. package/libs/feature/router/src/lib/default/constants.d.ts +1 -0
  398. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  399. package/libs/feature/router/src/lib/default/router.config.d.ts +1 -0
  400. package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -1
  401. package/libs/feature/router/src/lib/default/router.service.d.ts +1 -0
  402. package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -1
  403. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -0
  404. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  405. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +18 -6
  406. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  407. package/libs/feature/search/src/lib/state/search.facade.d.ts +2 -0
  408. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  409. package/libs/feature/search/src/lib/state/selectors.d.ts +1 -0
  410. package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
  411. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  412. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +2 -2
  413. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +1 -1
  414. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -1
  415. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +9 -9
  416. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
  417. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -2
  418. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
  419. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
  420. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
  421. package/libs/ui/elements/src/index.d.ts +2 -2
  422. package/libs/ui/elements/src/index.d.ts.map +1 -1
  423. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
  424. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
  425. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
  426. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  427. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
  428. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  429. package/libs/ui/elements/src/lib/error/error.component.d.ts +3 -1
  430. package/libs/ui/elements/src/lib/error/error.component.d.ts.map +1 -1
  431. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
  432. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  433. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +2 -2
  434. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  435. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
  436. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  437. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
  438. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +5 -1
  439. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
  440. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +17 -15
  441. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  442. package/libs/ui/inputs/src/index.d.ts +5 -0
  443. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  444. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  445. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  446. package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
  447. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  448. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  449. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
  450. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  451. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +5 -3
  452. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
  453. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +24 -0
  454. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
  455. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +4 -5
  456. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  457. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +1 -1
  458. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -1
  459. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +16 -0
  460. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
  461. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
  462. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  463. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -4
  464. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  465. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +33 -35
  466. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  467. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +18 -0
  468. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
  469. package/libs/ui/layout/src/index.d.ts +3 -0
  470. package/libs/ui/layout/src/index.d.ts.map +1 -1
  471. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +2 -2
  472. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -1
  473. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +1 -1
  474. package/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.d.ts +2 -2
  475. package/libs/ui/layout/src/lib/max-lines/max-lines.component.d.ts.map +1 -0
  476. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
  477. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
  478. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
  479. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
  480. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  481. package/libs/ui/map/src/index.d.ts +3 -2
  482. package/libs/ui/map/src/index.d.ts.map +1 -1
  483. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +3 -4
  484. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
  485. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts +37 -0
  486. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +1 -0
  487. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts +18 -0
  488. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +1 -0
  489. package/libs/ui/map/src/lib/map-utils.d.ts +7 -0
  490. package/libs/ui/map/src/lib/map-utils.d.ts.map +1 -0
  491. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
  492. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
  493. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +20 -0
  494. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
  495. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +11 -5
  496. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  497. package/libs/ui/widgets/src/index.d.ts +1 -0
  498. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  499. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
  500. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
  501. package/libs/util/app-config/src/index.d.ts +1 -0
  502. package/libs/util/app-config/src/index.d.ts.map +1 -1
  503. package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
  504. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  505. package/libs/util/app-config/src/lib/map-layers.d.ts +4 -0
  506. package/libs/util/app-config/src/lib/map-layers.d.ts.map +1 -0
  507. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  508. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  509. package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
  510. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  511. package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
  512. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
  513. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
  514. package/package.json +5 -3
  515. package/src/libs/api/metadata-converter/src/index.ts +3 -0
  516. package/src/libs/api/metadata-converter/src/lib/common/license.ts +66 -0
  517. package/src/libs/api/metadata-converter/src/lib/common/url.ts +15 -0
  518. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +378 -0
  519. package/src/libs/api/metadata-converter/src/lib/dcat-ap/index.ts +1 -0
  520. package/src/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.ts +17 -0
  521. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +370 -0
  522. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.ts +95 -0
  523. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/individual-name.ts +20 -0
  524. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/keyword.mapper.ts +16 -0
  525. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/role.mapper.ts +48 -0
  526. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.ts +97 -0
  527. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/status.mapper.ts +19 -0
  528. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/update-frequency.mapper.ts +67 -0
  529. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.ts +1 -0
  530. package/src/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.ts +68 -0
  531. package/src/libs/api/metadata-converter/src/lib/find-converter.ts +13 -0
  532. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +272 -0
  533. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +7 -2
  534. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +6 -2
  535. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +38 -13
  536. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +6 -2
  537. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +110 -0
  538. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +85 -0
  539. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +73 -0
  540. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
  541. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
  542. package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
  543. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  544. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +5 -6
  545. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
  546. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +21 -43
  547. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -16
  548. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +85 -17
  549. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
  550. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +203 -157
  551. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +50 -7
  552. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +163 -59
  553. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -0
  554. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +3 -1
  555. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +13 -2
  556. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +116 -30
  557. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +29 -1
  558. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +10 -8
  559. package/src/libs/common/domain/src/lib/model/record/organization.model.ts +1 -0
  560. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  561. package/src/libs/common/domain/src/lib/platform.service.interface.ts +35 -1
  562. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +32 -0
  563. package/src/libs/common/fixtures/src/index.ts +6 -1
  564. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
  565. package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
  566. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
  567. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
  568. package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
  569. package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
  570. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
  571. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
  572. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
  573. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
  574. package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
  575. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
  576. package/src/libs/common/fixtures/src/lib/individual.fixtures.ts +61 -0
  577. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
  578. package/src/libs/common/fixtures/src/lib/map/index.ts +1 -0
  579. package/src/libs/common/fixtures/src/lib/map/map-context.fixtures.ts +53 -0
  580. package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
  581. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +65 -3
  582. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
  583. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +17 -9
  584. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
  585. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
  586. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
  587. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +45 -15
  588. package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +4 -0
  589. package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +2 -0
  590. package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
  591. package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
  592. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
  593. package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +1 -1
  594. package/src/libs/data-access/gn4/src/spec.yaml +0 -8
  595. package/src/libs/feature/catalog/src/index.ts +1 -0
  596. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +5 -2
  597. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +1 -1
  598. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +2 -2
  599. package/src/libs/feature/catalog/src/lib/organization-url.token.ts +6 -0
  600. package/src/libs/feature/catalog/src/lib/records/records.service.ts +6 -8
  601. package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
  602. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
  603. package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +6 -2
  604. package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
  605. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +5 -2
  606. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +38 -78
  607. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
  608. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
  609. package/src/libs/feature/editor/src/index.ts +1 -0
  610. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +7 -0
  611. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +28 -6
  612. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  613. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
  614. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
  615. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
  616. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +15 -0
  617. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +18 -0
  618. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +26 -0
  619. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +90 -0
  620. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +47 -0
  621. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +132 -0
  622. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
  623. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
  624. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +40 -0
  625. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +170 -0
  626. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +4 -0
  627. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +66 -0
  628. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +210 -0
  629. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.html +4 -0
  630. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.ts +21 -0
  631. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -16
  632. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +43 -42
  633. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css +8 -0
  634. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +13 -5
  635. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +1 -0
  636. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +86 -0
  637. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +34 -0
  638. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +182 -0
  639. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css +0 -0
  640. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  641. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +48 -0
  642. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
  643. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -0
  644. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +122 -0
  645. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +15 -8
  646. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +11 -14
  647. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +5 -3
  648. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +11 -4
  649. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +20 -1
  650. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +212 -1
  651. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.css +4 -0
  652. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +31 -4
  653. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +43 -86
  654. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +4 -0
  655. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +16 -14
  656. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +17 -15
  657. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +119 -70
  658. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +54 -44
  659. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -2
  660. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +52 -9
  661. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +20 -7
  662. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +2 -6
  663. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
  664. package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
  665. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
  666. package/src/libs/feature/editor/src/lib/fields.config.ts +247 -57
  667. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +65 -0
  668. package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
  669. package/src/libs/feature/editor/src/lib/services/editor.service.ts +22 -7
  670. package/src/libs/feature/map/src/index.ts +1 -8
  671. package/src/libs/feature/map/src/lib/+state/map.actions.ts +10 -25
  672. package/src/libs/feature/map/src/lib/+state/map.facade.ts +11 -15
  673. package/src/libs/feature/map/src/lib/+state/map.reducer.ts +16 -53
  674. package/src/libs/feature/map/src/lib/+state/map.selectors.ts +7 -2
  675. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
  676. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +23 -22
  677. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +22 -11
  678. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
  679. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +21 -19
  680. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
  681. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +17 -10
  682. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +1 -1
  683. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +17 -10
  684. package/src/libs/feature/map/src/lib/constant/index.ts +0 -1
  685. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -41
  686. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +38 -20
  687. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +2 -2
  688. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +39 -6
  689. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.css +0 -0
  690. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.html +4 -0
  691. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts +29 -0
  692. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
  693. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +8 -232
  694. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
  695. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +36 -19
  696. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
  697. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +11 -0
  698. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +59 -12
  699. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +29 -20
  700. package/src/libs/feature/record/src/lib/feature-record.module.ts +11 -3
  701. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +4 -4
  702. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +45 -72
  703. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +47 -32
  704. package/src/libs/feature/router/src/lib/default/constants.ts +1 -0
  705. package/src/libs/feature/router/src/lib/default/router.config.ts +1 -0
  706. package/src/libs/feature/router/src/lib/default/router.service.ts +13 -1
  707. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +8 -0
  708. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +2 -1
  709. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +8 -2
  710. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +70 -5
  711. package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
  712. package/src/libs/feature/search/src/lib/state/search.facade.ts +11 -0
  713. package/src/libs/feature/search/src/lib/state/selectors.ts +7 -0
  714. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +16 -2
  715. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +8 -6
  716. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
  717. package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +8 -1
  718. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +2 -3
  719. package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
  720. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +11 -3
  721. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +3 -7
  722. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
  723. package/src/libs/ui/elements/src/index.ts +2 -2
  724. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +29 -29
  725. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
  726. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
  727. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
  728. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  729. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
  730. package/src/libs/ui/elements/src/lib/error/error.component.html +30 -6
  731. package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -0
  732. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
  733. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +13 -17
  734. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -1
  735. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +7 -1
  736. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
  737. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
  738. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
  739. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  740. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
  741. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +1 -1
  742. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +22 -1
  743. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +10 -6
  744. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
  745. package/src/libs/ui/inputs/src/index.ts +5 -0
  746. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +25 -18
  747. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +38 -24
  748. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +19 -4
  749. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +11 -3
  750. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +2 -1
  751. package/src/libs/ui/inputs/src/lib/button/button.component.ts +15 -1
  752. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +7 -2
  753. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +14 -6
  754. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +7 -1
  755. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +7 -2
  756. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +28 -23
  757. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +7 -1
  758. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +40 -26
  759. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +4 -0
  760. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +89 -0
  761. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +92 -0
  762. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +4 -0
  763. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +76 -68
  764. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +17 -14
  765. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +5 -1
  766. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +32 -0
  767. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +14 -0
  768. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +37 -0
  769. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +3 -2
  770. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +3 -28
  771. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
  772. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
  773. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -6
  774. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +9 -0
  775. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +37 -0
  776. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +33 -0
  777. package/src/libs/ui/layout/src/index.ts +3 -0
  778. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +8 -3
  779. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +4 -3
  780. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.css +1 -1
  781. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +3 -2
  782. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.css +0 -0
  783. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.html +1 -0
  784. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.ts +9 -5
  785. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.css +0 -0
  786. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
  787. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
  788. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
  789. package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +15 -18
  790. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -1
  791. package/src/libs/ui/map/src/index.ts +3 -2
  792. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +1 -1
  793. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +8 -5
  794. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.css +0 -0
  795. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +203 -0
  796. package/src/libs/ui/map/src/lib/components/map-container/map-settings.token.ts +23 -0
  797. package/src/libs/ui/map/src/lib/map-utils.ts +54 -0
  798. package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
  799. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
  800. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +26 -0
  801. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +74 -0
  802. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +35 -10
  803. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +31 -18
  804. package/src/libs/ui/widgets/src/index.ts +1 -0
  805. package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
  806. package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
  807. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
  808. package/src/libs/util/app-config/src/index.ts +1 -0
  809. package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
  810. package/src/libs/util/app-config/src/lib/map-layers.ts +31 -0
  811. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
  812. package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
  813. package/src/libs/util/shared/src/lib/services/theme.service.ts +1 -0
  814. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
  815. package/tailwind.base.config.js +1 -0
  816. package/tailwind.base.css +53 -8
  817. package/translations/de.json +160 -37
  818. package/translations/en.json +161 -38
  819. package/translations/es.json +131 -8
  820. package/translations/fr.json +193 -70
  821. package/translations/it.json +134 -11
  822. package/translations/nl.json +131 -8
  823. package/translations/pt.json +131 -8
  824. package/translations/sk.json +133 -10
  825. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -15
  826. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
  827. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
  828. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
  829. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
  830. package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +0 -15
  831. package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +0 -2
  832. package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +0 -8
  833. package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +0 -17
  834. package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +0 -38
  835. package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +0 -19
  836. package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +0 -19
  837. package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +0 -27
  838. package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +0 -46
  839. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +0 -10
  840. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +0 -289
  841. package/esm2022/libs/ui/elements/src/lib/max-lines/max-lines.component.mjs +0 -69
  842. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -43
  843. package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +0 -40
  844. package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +0 -33
  845. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +0 -8
  846. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +0 -1
  847. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
  848. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
  849. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
  850. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
  851. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
  852. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
  853. package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
  854. package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
  855. package/libs/feature/map/src/lib/+state/map.effects.d.ts +0 -9
  856. package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +0 -1
  857. package/libs/feature/map/src/lib/+state/map.models.d.ts +0 -9
  858. package/libs/feature/map/src/lib/+state/map.models.d.ts.map +0 -1
  859. package/libs/feature/map/src/lib/constant/map-options.d.ts +0 -9
  860. package/libs/feature/map/src/lib/constant/map-options.d.ts.map +0 -1
  861. package/libs/feature/map/src/lib/constant/style.constant.d.ts +0 -4
  862. package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +0 -1
  863. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +0 -16
  864. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +0 -1
  865. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +0 -9
  866. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +0 -1
  867. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +0 -11
  868. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +0 -1
  869. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +0 -12
  870. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +0 -1
  871. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +0 -26
  872. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +0 -1
  873. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +0 -77
  874. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +0 -1
  875. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +0 -26
  876. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +0 -1
  877. package/libs/ui/elements/src/lib/max-lines/max-lines.component.d.ts.map +0 -1
  878. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -22
  879. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
  880. package/libs/ui/map/src/lib/components/map/map.component.d.ts +0 -19
  881. package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +0 -1
  882. package/libs/ui/map/src/lib/ui-map.module.d.ts +0 -13
  883. package/libs/ui/map/src/lib/ui-map.module.d.ts.map +0 -1
  884. package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
  885. package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
  886. package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
  887. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -8
  888. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -70
  889. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +0 -4
  890. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +0 -15
  891. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
  892. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
  893. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
  894. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
  895. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
  896. package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
  897. package/src/libs/feature/map/src/lib/+state/map.effects.ts +0 -7
  898. package/src/libs/feature/map/src/lib/+state/map.models.ts +0 -9
  899. package/src/libs/feature/map/src/lib/constant/map-options.ts +0 -17
  900. package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +0 -42
  901. package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +0 -10
  902. package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +0 -13
  903. package/src/libs/feature/map/src/lib/map-container/map-container.component.html +0 -1
  904. package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +0 -26
  905. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +0 -1
  906. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +0 -57
  907. package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +0 -51
  908. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +0 -95
  909. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +0 -318
  910. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -36
  911. package/src/libs/ui/map/src/lib/components/map/map.component.ts +0 -57
  912. package/src/libs/ui/map/src/lib/ui-map.module.ts +0 -19
  913. /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → contact-card/contact-card.component.css} +0 -0
  914. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css → generic-keywords/generic-keywords.component.css} +0 -0
  915. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → import-record/import-record.component.css} +0 -0
  916. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → online-resource-card/online-resource-card.component.css} +0 -0
  917. /package/src/libs/feature/{map/src/lib/map-container/map-container.component.css → editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.css} +0 -0
  918. /package/src/libs/feature/{map/src/lib/map-context/component/map-context.component.css → editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.css} +0 -0
  919. /package/src/libs/{ui/elements/src/lib/max-lines/max-lines.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.css} +0 -0
  920. /package/src/libs/{ui/map/src/lib/components/map/map.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.css} +0 -0
  921. /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
  922. /package/src/libs/ui/map/src/lib/components/{map/map.component.html → map-container/map-container.component.html} +0 -0
@@ -2,7 +2,7 @@
2
2
  "Add Layer As": "",
3
3
  "button.login": "",
4
4
  "catalog.figures.datasets": "conjuntos de dados",
5
- "catalog.figures.organisations": "organizações",
5
+ "catalog.figures.organizations": "organizações",
6
6
  "chart.aggregation.average": "média",
7
7
  "chart.aggregation.count": "contagem",
8
8
  "chart.aggregation.max": "máximo",
@@ -24,8 +24,14 @@
24
24
  "dashboard.catalog.discussion": "",
25
25
  "dashboard.catalog.thesaurus": "",
26
26
  "dashboard.createRecord": "",
27
+ "dashboard.importRecord": "",
28
+ "dashboard.importRecord.importExternal": "",
29
+ "dashboard.importRecord.importExternalLabel": "",
30
+ "dashboard.importRecord.useModel": "",
27
31
  "dashboard.labels.catalog": "Catálogo",
28
32
  "dashboard.labels.mySpace": "Meu espaço",
33
+ "dashboard.myRecords.currentlyEdited": "",
34
+ "dashboard.myRecords.publishedMetadatas": "",
29
35
  "dashboard.records.all": "Catálogo",
30
36
  "dashboard.records.hasDraft": "",
31
37
  "dashboard.records.myDraft": "Meus rascunhos",
@@ -49,6 +55,8 @@
49
55
  "datafeeder.datasetValidation.submitButton": "",
50
56
  "datafeeder.datasetValidation.title": "",
51
57
  "datafeeder.datasetValidation.unknown": "",
58
+ "datafeeder.datasetValidationCsv.explicitLineNumbers": "",
59
+ "datafeeder.datasetValidationCsv.lineNumbers": "",
52
60
  "datafeeder.form.abstract": "",
53
61
  "datafeeder.form.datepicker": "",
54
62
  "datafeeder.form.description": "",
@@ -76,6 +84,7 @@
76
84
  "datafeeder.publishSuccess.geonetworkRecord": "",
77
85
  "datafeeder.publishSuccess.illustration.title": "",
78
86
  "datafeeder.publishSuccess.mapViewer": "",
87
+ "datafeeder.publishSuccess.ogcFeature": "",
79
88
  "datafeeder.publishSuccess.subtitle": "",
80
89
  "datafeeder.publishSuccess.title": "",
81
90
  "datafeeder.publishSuccess.uploadAnotherData": "",
@@ -104,6 +113,15 @@
104
113
  "datafeeder.upload.maxFileSize": "",
105
114
  "datafeeder.upload.title": "",
106
115
  "datafeeder.upload.uploadButton": "",
116
+ "datafeeder.validation.csv.delimiter": "",
117
+ "datafeeder.validation.csv.delimiter.comma": "",
118
+ "datafeeder.validation.csv.delimiter.semicolon": "",
119
+ "datafeeder.validation.csv.lat.field": "",
120
+ "datafeeder.validation.csv.lng.field": "",
121
+ "datafeeder.validation.csv.quote.double": "",
122
+ "datafeeder.validation.csv.quote.none": "",
123
+ "datafeeder.validation.csv.quote.simple": "",
124
+ "datafeeder.validation.csv.quoteChar": "",
107
125
  "datafeeder.validation.encoding": "",
108
126
  "datafeeder.validation.extent.title": "",
109
127
  "datafeeder.validation.extent.title.unknown": "",
@@ -117,7 +135,7 @@
117
135
  "datahub.header.lastRecords": "",
118
136
  "datahub.header.myfavorites": "",
119
137
  "datahub.header.news": "",
120
- "datahub.header.organisations": "",
138
+ "datahub.header.organizations": "",
121
139
  "datahub.header.popularRecords": "",
122
140
  "datahub.header.title.html": "",
123
141
  "datahub.news.contact.contactus": "",
@@ -135,6 +153,27 @@
135
153
  "dataset.error.parse": "",
136
154
  "dataset.error.unknown": "",
137
155
  "dataset.error.unsupportedType": "",
156
+ "domain.contact.role.author": "",
157
+ "domain.contact.role.collaborator": "",
158
+ "domain.contact.role.contributor": "",
159
+ "domain.contact.role.custodian": "",
160
+ "domain.contact.role.distributor": "",
161
+ "domain.contact.role.editor": "",
162
+ "domain.contact.role.funder": "",
163
+ "domain.contact.role.mediator": "",
164
+ "domain.contact.role.originator": "",
165
+ "domain.contact.role.other": "",
166
+ "domain.contact.role.owner": "",
167
+ "domain.contact.role.point_of_contact": "",
168
+ "domain.contact.role.principal_investigator": "",
169
+ "domain.contact.role.processor": "",
170
+ "domain.contact.role.publisher": "",
171
+ "domain.contact.role.resource_provider": "",
172
+ "domain.contact.role.rights_holder": "",
173
+ "domain.contact.role.sponsor": "",
174
+ "domain.contact.role.stakeholder": "",
175
+ "domain.contact.role.unspecified": "",
176
+ "domain.contact.role.user": "",
138
177
  "domain.record.status.completed": "",
139
178
  "domain.record.status.deprecated": "",
140
179
  "domain.record.status.ongoing": "",
@@ -153,7 +192,42 @@
153
192
  "downloads.format.unknown": "",
154
193
  "downloads.wfs.featuretype.not.found": "",
155
194
  "dropFile": "",
156
- "editor.record.form.license": "",
195
+ "editor.form.keywords.placeholder": "",
196
+ "editor.form.placeKeywordWithoutExtent": "",
197
+ "editor.record.delete.confirmation.cancelText": "",
198
+ "editor.record.delete.confirmation.confirmText": "",
199
+ "editor.record.delete.confirmation.message": "",
200
+ "editor.record.delete.confirmation.title": "",
201
+ "editor.record.deleteError.body": "",
202
+ "editor.record.deleteError.closeMessage": "",
203
+ "editor.record.deleteError.title": "",
204
+ "editor.record.deleteSuccess.body": "",
205
+ "editor.record.deleteSuccess.title": "",
206
+ "editor.record.form.bottomButtons.comeBackLater": "",
207
+ "editor.record.form.bottomButtons.next": "",
208
+ "editor.record.form.bottomButtons.previous": "",
209
+ "editor.record.form.classification.opendata": "",
210
+ "editor.record.form.field.abstract": "",
211
+ "editor.record.form.field.contacts.noContact": "",
212
+ "editor.record.form.field.contactsForResource.noContact": "",
213
+ "editor.record.form.field.keywords": "",
214
+ "editor.record.form.field.license": "",
215
+ "editor.record.form.field.onlineLinkResources": "",
216
+ "editor.record.form.field.onlineResource.cancel": "",
217
+ "editor.record.form.field.onlineResource.confirm": "",
218
+ "editor.record.form.field.onlineResource.dialogTitle": "",
219
+ "editor.record.form.field.onlineResource.edit.description": "",
220
+ "editor.record.form.field.onlineResource.edit.title": "",
221
+ "editor.record.form.field.onlineResource.fileSize": "",
222
+ "editor.record.form.field.onlineResource.modify": "",
223
+ "editor.record.form.field.overviews": "",
224
+ "editor.record.form.field.recordUpdated": "",
225
+ "editor.record.form.field.resourceUpdated": "",
226
+ "editor.record.form.field.spatialExtents": "",
227
+ "editor.record.form.field.temporalExtents": "",
228
+ "editor.record.form.field.title": "",
229
+ "editor.record.form.field.uniqueIdentifier": "",
230
+ "editor.record.form.field.updateFrequency": "",
157
231
  "editor.record.form.license.cc-by": "",
158
232
  "editor.record.form.license.cc-by-sa": "",
159
233
  "editor.record.form.license.cc-zero": "",
@@ -163,27 +237,59 @@
163
237
  "editor.record.form.license.odc-by": "",
164
238
  "editor.record.form.license.pddl": "",
165
239
  "editor.record.form.license.unknown": "",
166
- "editor.record.form.resourceUpdated": "",
167
- "editor.record.form.temporalExtents": "",
240
+ "editor.record.form.page.accessAndContact": "",
241
+ "editor.record.form.page.description": "",
242
+ "editor.record.form.page.ressources": "",
243
+ "editor.record.form.section.about.description": "",
244
+ "editor.record.form.section.about.label": "",
245
+ "editor.record.form.section.annexes.label": "",
246
+ "editor.record.form.section.associatedResources.description": "",
247
+ "editor.record.form.section.associatedResources.label": "",
248
+ "editor.record.form.section.classification.description": "",
249
+ "editor.record.form.section.classification.label": "",
250
+ "editor.record.form.section.dataManagers.description": "",
251
+ "editor.record.form.section.dataManagers.label": "",
252
+ "editor.record.form.section.dataPointOfContact.description": "",
253
+ "editor.record.form.section.dataPointOfContact.label": "",
254
+ "editor.record.form.section.geographicalCoverage.label": "",
255
+ "editor.record.form.section.useAndAccessConditions.label": "",
168
256
  "editor.record.form.temporalExtents.addDate": "",
169
257
  "editor.record.form.temporalExtents.addRange": "",
170
258
  "editor.record.form.temporalExtents.date": "",
171
259
  "editor.record.form.temporalExtents.range": "",
172
- "editor.record.form.updateFrequency": "",
173
260
  "editor.record.form.updateFrequency.planned": "",
261
+ "editor.record.importFromExternalFile.failure.body": "",
262
+ "editor.record.importFromExternalFile.failure.title": "",
263
+ "editor.record.importFromExternalFile.success.body": "",
264
+ "editor.record.importFromExternalFile.success.title": "",
174
265
  "editor.record.loadError.body": "",
175
266
  "editor.record.loadError.closeMessage": "",
176
267
  "editor.record.loadError.title": "",
268
+ "editor.record.onlineResourceError.body": "",
269
+ "editor.record.onlineResourceError.closeMessage": "",
270
+ "editor.record.onlineResourceError.title": "",
271
+ "editor.record.placeKeywordWithoutLabel": "",
177
272
  "editor.record.publish": "",
178
273
  "editor.record.publishError.body": "",
179
274
  "editor.record.publishError.closeMessage": "",
180
275
  "editor.record.publishError.title": "",
181
276
  "editor.record.publishSuccess.body": "",
182
277
  "editor.record.publishSuccess.title": "",
278
+ "editor.record.resourceError.body": "",
279
+ "editor.record.resourceError.closeMessage": "",
280
+ "editor.record.resourceError.title": "",
183
281
  "editor.record.saveStatus.asDraftOnly": "",
184
282
  "editor.record.saveStatus.draftWithChangesPending": "",
185
283
  "editor.record.saveStatus.recordUpToDate": "",
284
+ "editor.record.undo.confirmation.cancelText": "",
285
+ "editor.record.undo.confirmation.confirmText": "",
286
+ "editor.record.undo.confirmation.message": "",
287
+ "editor.record.undo.confirmation.title": "",
288
+ "editor.record.undo.tooltip.disabled": "",
289
+ "editor.record.undo.tooltip.enabled": "",
186
290
  "editor.record.upToDate": "",
291
+ "editor.sidebar.menu.editor": "",
292
+ "editor.temporary.disabled": "",
187
293
  "externalviewer.dataset.unnamed": "",
188
294
  "facets.block.title.OrgForResource": "",
189
295
  "facets.block.title.availableInServices": "",
@@ -197,6 +303,11 @@
197
303
  "facets.block.title.tag.default": "",
198
304
  "facets.block.title.th_regions_tree.default": "",
199
305
  "favorite.not.authenticated.tooltip": "",
306
+ "input.file.dropFileLabel": "",
307
+ "input.file.orInputUrl": "",
308
+ "input.file.selectFileLabel": "",
309
+ "input.file.uploadProgressCancel": "",
310
+ "input.file.uploadProgressLabel": "",
200
311
  "input.image.altTextPlaceholder": "",
201
312
  "input.image.delete": "",
202
313
  "input.image.displayAltTextInput": "",
@@ -252,11 +363,17 @@
252
363
  "organisations.sortBy.nameDesc": "",
253
364
  "organisations.sortBy.recordCountAsc": "",
254
365
  "organisations.sortBy.recordCountDesc": "",
366
+ "organization.details.lastPublishedDatasets": "",
367
+ "organization.details.lastPublishedDatasets.searchAllButton": "",
368
+ "organization.details.mailContact": "",
369
+ "organization.header.recordCount": "{count, plural, =0{} one{} other{}}",
255
370
  "pagination.nextPage": "",
256
371
  "pagination.page": "",
257
372
  "pagination.pageOf": "",
258
373
  "previous": "",
374
+ "record.action.delete": "",
259
375
  "record.action.download": "",
376
+ "record.action.duplicate": "",
260
377
  "record.action.view": "",
261
378
  "record.externalViewer.open": "",
262
379
  "record.metadata.about": "",
@@ -289,7 +406,7 @@
289
406
  "record.metadata.preview": "",
290
407
  "record.metadata.producer": "",
291
408
  "record.metadata.publication": "",
292
- "record.metadata.publications": "",
409
+ "record.metadata.publications": "{count, plural, =0{} one{} other{}}",
293
410
  "record.metadata.quality": "",
294
411
  "record.metadata.quality.contact.failed": "",
295
412
  "record.metadata.quality.contact.success": "",
@@ -311,6 +428,8 @@
311
428
  "record.metadata.related": "",
312
429
  "record.metadata.sheet": "",
313
430
  "record.metadata.status": "",
431
+ "record.metadata.status.notPublished": "",
432
+ "record.metadata.status.published": "",
314
433
  "record.metadata.technical": "",
315
434
  "record.metadata.temporalExtent": "",
316
435
  "record.metadata.temporalExtent.fromDateToDate": "",
@@ -349,6 +468,8 @@
349
468
  "results.sortBy.relevancy": "",
350
469
  "search.autocomplete.error": "",
351
470
  "search.error.couldNotReachApi": "",
471
+ "search.error.organizationHasNoDataset": "",
472
+ "search.error.organizationNotFound": "",
352
473
  "search.error.receivedError": "",
353
474
  "search.error.recordHasnolink": "",
354
475
  "search.error.recordNotFound": "",
@@ -376,9 +497,11 @@
376
497
  "search.filters.minimize": "",
377
498
  "search.filters.myRecords": "",
378
499
  "search.filters.myRecordsHelp": "",
500
+ "search.filters.organization": "",
379
501
  "search.filters.otherRecords": "",
502
+ "search.filters.producerOrg": "",
380
503
  "search.filters.publicationYear": "",
381
- "search.filters.publisher": "",
504
+ "search.filters.publisherOrg": "",
382
505
  "search.filters.representationType": "",
383
506
  "search.filters.resourceType": "",
384
507
  "search.filters.standard": "",
@@ -2,7 +2,7 @@
2
2
  "Add Layer As": "",
3
3
  "button.login": "",
4
4
  "catalog.figures.datasets": "{count, plural, =0{datasety} one{dataset} other{datasety}}",
5
- "catalog.figures.organisations": "{count, plural, =0{organizácie} one{organizácia} other{organizácie}}",
5
+ "catalog.figures.organizations": "{count, plural, =0{organizácie} one{organizácia} other{organizácie}}",
6
6
  "chart.aggregation.average": "priemer",
7
7
  "chart.aggregation.count": "počet",
8
8
  "chart.aggregation.max": "maximum",
@@ -24,8 +24,14 @@
24
24
  "dashboard.catalog.discussion": "",
25
25
  "dashboard.catalog.thesaurus": "",
26
26
  "dashboard.createRecord": "",
27
+ "dashboard.importRecord": "",
28
+ "dashboard.importRecord.importExternal": "",
29
+ "dashboard.importRecord.importExternalLabel": "",
30
+ "dashboard.importRecord.useModel": "",
27
31
  "dashboard.labels.catalog": "Katalóg",
28
32
  "dashboard.labels.mySpace": "Môj priestor",
33
+ "dashboard.myRecords.currentlyEdited": "",
34
+ "dashboard.myRecords.publishedMetadatas": "",
29
35
  "dashboard.records.all": "Katalóg",
30
36
  "dashboard.records.hasDraft": "",
31
37
  "dashboard.records.myDraft": "Moje koncepty",
@@ -49,6 +55,8 @@
49
55
  "datafeeder.datasetValidation.submitButton": "OK, moje dáta sú správne",
50
56
  "datafeeder.datasetValidation.title": "Uistite sa, že dáta sú správne",
51
57
  "datafeeder.datasetValidation.unknown": " - ",
58
+ "datafeeder.datasetValidationCsv.explicitLineNumbers": "",
59
+ "datafeeder.datasetValidationCsv.lineNumbers": "",
52
60
  "datafeeder.form.abstract": "Ako by ste opísali Váš dataset?",
53
61
  "datafeeder.form.datepicker": "Viete, kedy bol dataset vytvorený?",
54
62
  "datafeeder.form.description": "Nakoniec popíšte proces, ktorý bol použitý na vytvorenie datasetu",
@@ -76,6 +84,7 @@
76
84
  "datafeeder.publishSuccess.geonetworkRecord": "Metadátový záznam",
77
85
  "datafeeder.publishSuccess.illustration.title": "Hotovo, všetko je v poriadku!",
78
86
  "datafeeder.publishSuccess.mapViewer": "Prehliadač máp",
87
+ "datafeeder.publishSuccess.ogcFeature": "",
79
88
  "datafeeder.publishSuccess.subtitle": "Pozrite si svoje dáta v:",
80
89
  "datafeeder.publishSuccess.title": "Gratulujeme! Váš dataset bol publikovaný",
81
90
  "datafeeder.publishSuccess.uploadAnotherData": "Nahrajte ďalší dataset",
@@ -104,6 +113,15 @@
104
113
  "datafeeder.upload.maxFileSize": "Maximálna veľkosť súboru je {size} MB",
105
114
  "datafeeder.upload.title": "Nahrajte svoj dataset",
106
115
  "datafeeder.upload.uploadButton": "Nahrať",
116
+ "datafeeder.validation.csv.delimiter": "",
117
+ "datafeeder.validation.csv.delimiter.comma": "",
118
+ "datafeeder.validation.csv.delimiter.semicolon": "",
119
+ "datafeeder.validation.csv.lat.field": "",
120
+ "datafeeder.validation.csv.lng.field": "",
121
+ "datafeeder.validation.csv.quote.double": "",
122
+ "datafeeder.validation.csv.quote.none": "",
123
+ "datafeeder.validation.csv.quote.simple": "",
124
+ "datafeeder.validation.csv.quoteChar": "",
107
125
  "datafeeder.validation.encoding": "kódovanie",
108
126
  "datafeeder.validation.extent.title": "Tu je rozsah datasetu",
109
127
  "datafeeder.validation.extent.title.unknown": "Systém projekcie je neznámy",
@@ -117,7 +135,7 @@
117
135
  "datahub.header.lastRecords": "Najnovšie",
118
136
  "datahub.header.myfavorites": "Moje obľúbené",
119
137
  "datahub.header.news": "Domov",
120
- "datahub.header.organisations": "Organizácie",
138
+ "datahub.header.organizations": "Organizácie",
121
139
  "datahub.header.popularRecords": "Najpopulárnejšie",
122
140
  "datahub.header.title.html": "<div class=\"text-white\">Objavte otvorené<br>dáta z mojej organizácie</div>",
123
141
  "datahub.news.contact.contactus": "Kontaktujte nás",
@@ -135,6 +153,27 @@
135
153
  "dataset.error.parse": "Dáta boli načítané, ale nedajú sa analyzovať: \"{ info }\"",
136
154
  "dataset.error.unknown": "Dáta nie je možné zobraziť: \"{ info }\"",
137
155
  "dataset.error.unsupportedType": "Nepodporovaný typ obsahu: \"{ info }\"",
156
+ "domain.contact.role.author": "",
157
+ "domain.contact.role.collaborator": "",
158
+ "domain.contact.role.contributor": "",
159
+ "domain.contact.role.custodian": "",
160
+ "domain.contact.role.distributor": "",
161
+ "domain.contact.role.editor": "",
162
+ "domain.contact.role.funder": "",
163
+ "domain.contact.role.mediator": "",
164
+ "domain.contact.role.originator": "",
165
+ "domain.contact.role.other": "",
166
+ "domain.contact.role.owner": "",
167
+ "domain.contact.role.point_of_contact": "",
168
+ "domain.contact.role.principal_investigator": "",
169
+ "domain.contact.role.processor": "",
170
+ "domain.contact.role.publisher": "",
171
+ "domain.contact.role.resource_provider": "",
172
+ "domain.contact.role.rights_holder": "",
173
+ "domain.contact.role.sponsor": "",
174
+ "domain.contact.role.stakeholder": "",
175
+ "domain.contact.role.unspecified": "",
176
+ "domain.contact.role.user": "",
138
177
  "domain.record.status.completed": "Dokončené",
139
178
  "domain.record.status.deprecated": "Zastarané",
140
179
  "domain.record.status.ongoing": "Prebiehajúce",
@@ -153,7 +192,42 @@
153
192
  "downloads.format.unknown": "neznámy",
154
193
  "downloads.wfs.featuretype.not.found": "Vrstva nebola nájdená",
155
194
  "dropFile": "nahrať súbor",
156
- "editor.record.form.license": "Licencia",
195
+ "editor.form.keywords.placeholder": "",
196
+ "editor.form.placeKeywordWithoutExtent": "",
197
+ "editor.record.delete.confirmation.cancelText": "",
198
+ "editor.record.delete.confirmation.confirmText": "",
199
+ "editor.record.delete.confirmation.message": "",
200
+ "editor.record.delete.confirmation.title": "",
201
+ "editor.record.deleteError.body": "",
202
+ "editor.record.deleteError.closeMessage": "",
203
+ "editor.record.deleteError.title": "",
204
+ "editor.record.deleteSuccess.body": "",
205
+ "editor.record.deleteSuccess.title": "",
206
+ "editor.record.form.bottomButtons.comeBackLater": "",
207
+ "editor.record.form.bottomButtons.next": "",
208
+ "editor.record.form.bottomButtons.previous": "",
209
+ "editor.record.form.classification.opendata": "",
210
+ "editor.record.form.field.abstract": "",
211
+ "editor.record.form.field.contacts.noContact": "",
212
+ "editor.record.form.field.contactsForResource.noContact": "",
213
+ "editor.record.form.field.keywords": "",
214
+ "editor.record.form.field.license": "Licencia",
215
+ "editor.record.form.field.onlineLinkResources": "",
216
+ "editor.record.form.field.onlineResource.cancel": "",
217
+ "editor.record.form.field.onlineResource.confirm": "",
218
+ "editor.record.form.field.onlineResource.dialogTitle": "",
219
+ "editor.record.form.field.onlineResource.edit.description": "",
220
+ "editor.record.form.field.onlineResource.edit.title": "",
221
+ "editor.record.form.field.onlineResource.fileSize": "",
222
+ "editor.record.form.field.onlineResource.modify": "",
223
+ "editor.record.form.field.overviews": "",
224
+ "editor.record.form.field.recordUpdated": "",
225
+ "editor.record.form.field.resourceUpdated": "",
226
+ "editor.record.form.field.spatialExtents": "",
227
+ "editor.record.form.field.temporalExtents": "",
228
+ "editor.record.form.field.title": "",
229
+ "editor.record.form.field.uniqueIdentifier": "",
230
+ "editor.record.form.field.updateFrequency": "",
157
231
  "editor.record.form.license.cc-by": "",
158
232
  "editor.record.form.license.cc-by-sa": "",
159
233
  "editor.record.form.license.cc-zero": "",
@@ -163,27 +237,59 @@
163
237
  "editor.record.form.license.odc-by": "",
164
238
  "editor.record.form.license.pddl": "",
165
239
  "editor.record.form.license.unknown": "Neznáme alebo chýbajúce",
166
- "editor.record.form.resourceUpdated": "",
167
- "editor.record.form.temporalExtents": "",
240
+ "editor.record.form.page.accessAndContact": "",
241
+ "editor.record.form.page.description": "",
242
+ "editor.record.form.page.ressources": "",
243
+ "editor.record.form.section.about.description": "",
244
+ "editor.record.form.section.about.label": "",
245
+ "editor.record.form.section.annexes.label": "",
246
+ "editor.record.form.section.associatedResources.description": "",
247
+ "editor.record.form.section.associatedResources.label": "",
248
+ "editor.record.form.section.classification.description": "",
249
+ "editor.record.form.section.classification.label": "",
250
+ "editor.record.form.section.dataManagers.description": "",
251
+ "editor.record.form.section.dataManagers.label": "",
252
+ "editor.record.form.section.dataPointOfContact.description": "",
253
+ "editor.record.form.section.dataPointOfContact.label": "",
254
+ "editor.record.form.section.geographicalCoverage.label": "",
255
+ "editor.record.form.section.useAndAccessConditions.label": "",
168
256
  "editor.record.form.temporalExtents.addDate": "",
169
257
  "editor.record.form.temporalExtents.addRange": "",
170
258
  "editor.record.form.temporalExtents.date": "",
171
259
  "editor.record.form.temporalExtents.range": "",
172
- "editor.record.form.updateFrequency": "",
173
260
  "editor.record.form.updateFrequency.planned": "",
261
+ "editor.record.importFromExternalFile.failure.body": "",
262
+ "editor.record.importFromExternalFile.failure.title": "",
263
+ "editor.record.importFromExternalFile.success.body": "",
264
+ "editor.record.importFromExternalFile.success.title": "",
174
265
  "editor.record.loadError.body": "",
175
266
  "editor.record.loadError.closeMessage": "",
176
267
  "editor.record.loadError.title": "",
268
+ "editor.record.onlineResourceError.body": "",
269
+ "editor.record.onlineResourceError.closeMessage": "",
270
+ "editor.record.onlineResourceError.title": "",
271
+ "editor.record.placeKeywordWithoutLabel": "",
177
272
  "editor.record.publish": "",
178
273
  "editor.record.publishError.body": "",
179
274
  "editor.record.publishError.closeMessage": "",
180
275
  "editor.record.publishError.title": "",
181
276
  "editor.record.publishSuccess.body": "",
182
277
  "editor.record.publishSuccess.title": "",
278
+ "editor.record.resourceError.body": "",
279
+ "editor.record.resourceError.closeMessage": "",
280
+ "editor.record.resourceError.title": "",
183
281
  "editor.record.saveStatus.asDraftOnly": "",
184
282
  "editor.record.saveStatus.draftWithChangesPending": "",
185
283
  "editor.record.saveStatus.recordUpToDate": "",
284
+ "editor.record.undo.confirmation.cancelText": "",
285
+ "editor.record.undo.confirmation.confirmText": "",
286
+ "editor.record.undo.confirmation.message": "",
287
+ "editor.record.undo.confirmation.title": "",
288
+ "editor.record.undo.tooltip.disabled": "",
289
+ "editor.record.undo.tooltip.enabled": "",
186
290
  "editor.record.upToDate": "",
291
+ "editor.sidebar.menu.editor": "",
292
+ "editor.temporary.disabled": "",
187
293
  "externalviewer.dataset.unnamed": "",
188
294
  "facets.block.title.OrgForResource": "Organizácia",
189
295
  "facets.block.title.availableInServices": "Dostupné pre",
@@ -197,6 +303,11 @@
197
303
  "facets.block.title.tag.default": "Štítok",
198
304
  "facets.block.title.th_regions_tree.default": "Regióny",
199
305
  "favorite.not.authenticated.tooltip": "<div><a href='{link}'>Prihlásiť sa</a> pre prístup k tejto funkcii</div>",
306
+ "input.file.dropFileLabel": "",
307
+ "input.file.orInputUrl": "",
308
+ "input.file.selectFileLabel": "",
309
+ "input.file.uploadProgressCancel": "",
310
+ "input.file.uploadProgressLabel": "",
200
311
  "input.image.altTextPlaceholder": "",
201
312
  "input.image.delete": "",
202
313
  "input.image.displayAltTextInput": "",
@@ -252,11 +363,17 @@
252
363
  "organisations.sortBy.nameDesc": "Názov Z → A",
253
364
  "organisations.sortBy.recordCountAsc": "Publikácie 0 → 9",
254
365
  "organisations.sortBy.recordCountDesc": "Publikácie 9 → 0",
366
+ "organization.details.lastPublishedDatasets": "",
367
+ "organization.details.lastPublishedDatasets.searchAllButton": "",
368
+ "organization.details.mailContact": "",
369
+ "organization.header.recordCount": "{count, plural, =0{} one{} other{}}",
255
370
  "pagination.nextPage": "Ďalšia stránka",
256
371
  "pagination.page": "strana",
257
372
  "pagination.pageOf": "z",
258
373
  "previous": "predchádzajúci",
374
+ "record.action.delete": "",
259
375
  "record.action.download": "Stiahnuť",
376
+ "record.action.duplicate": "",
260
377
  "record.action.view": "Zobraziť",
261
378
  "record.externalViewer.open": "Otvoriť v externom mapovom prehliadači",
262
379
  "record.metadata.about": "O",
@@ -288,8 +405,8 @@
288
405
  "record.metadata.owner": "Katalóg pôvodu",
289
406
  "record.metadata.preview": "Náhľad",
290
407
  "record.metadata.producer": "",
291
- "record.metadata.publication": "",
292
- "record.metadata.publications": "publikácie",
408
+ "record.metadata.publication": "publikácia",
409
+ "record.metadata.publications": "{count, plural, =0{publikácia} one{publikácia} other{publikácie}}",
293
410
  "record.metadata.quality": "Kvalita metadát",
294
411
  "record.metadata.quality.contact.failed": "Kontakt nie je uvedený",
295
412
  "record.metadata.quality.contact.success": "Kontakt je uvedený",
@@ -311,6 +428,8 @@
311
428
  "record.metadata.related": "Súvisiace záznamy",
312
429
  "record.metadata.sheet": "Ďalšie metadáta sú k dispozícii na:",
313
430
  "record.metadata.status": "Stav",
431
+ "record.metadata.status.notPublished": "",
432
+ "record.metadata.status.published": "",
314
433
  "record.metadata.technical": "",
315
434
  "record.metadata.temporalExtent": "",
316
435
  "record.metadata.temporalExtent.fromDateToDate": "",
@@ -349,6 +468,8 @@
349
468
  "results.sortBy.relevancy": "Relevancia",
350
469
  "search.autocomplete.error": "Návrhy sa nepodarilo načítať:",
351
470
  "search.error.couldNotReachApi": "K rozhraniu API sa nepodarilo pripojiť",
471
+ "search.error.organizationHasNoDataset": "",
472
+ "search.error.organizationNotFound": "",
352
473
  "search.error.receivedError": "Bola zaznamenaná chyba",
353
474
  "search.error.recordHasnolink": "",
354
475
  "search.error.recordNotFound": "Záznam s identifikátorom \"{ id }\" sa nepodarilo nájsť.",
@@ -376,14 +497,16 @@
376
497
  "search.filters.minimize": "Zmenšiť",
377
498
  "search.filters.myRecords": "Zobraziť len moje záznamy",
378
499
  "search.filters.myRecordsHelp": "Keď je táto možnosť zapnutá, zobrazia sa len záznamy vytvorené mnou; záznamy vytvorené inými sa nezobrazia.",
500
+ "search.filters.organization": "",
379
501
  "search.filters.otherRecords": "Zobrazenie záznamov od inej osoby",
502
+ "search.filters.producerOrg": "",
380
503
  "search.filters.publicationYear": "Rok zverejnenia",
381
- "search.filters.publisher": "Organizácie",
504
+ "search.filters.publisherOrg": "",
382
505
  "search.filters.representationType": "Typ reprezentácie",
383
506
  "search.filters.resourceType": "Typ zdroja",
384
507
  "search.filters.standard": "Štandard",
385
508
  "search.filters.title": "Filtrovanie výsledkov",
386
- "search.filters.topic": "Téma",
509
+ "search.filters.topic": "Témy",
387
510
  "search.filters.useSpatialFilter": "Najskôr zobraziť záznamy v oblasti záujmu",
388
511
  "search.filters.useSpatialFilterHelp": "Keď je táto možnosť zapnutá, záznamy nachádzajúce sa v oblasti záujmu katalógu sa zobrazia ako prvé; záznamy mimo tejto oblasti sa nezobrazia.",
389
512
  "share.tab.permalink": "Zdieľať",
@@ -1,15 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { DatePickerComponent } from '../../../../../../../../../libs/ui/inputs/src';
4
- import * as i0 from "@angular/core";
5
- export class FormFieldResourceUpdatedComponent {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldResourceUpdatedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FormFieldResourceUpdatedComponent, isStandalone: true, selector: "gn-ui-form-field-resource-updated", inputs: { control: "control" }, ngImport: i0, template: "<gn-ui-date-picker\n [date]=\"control.value\"\n (dateChange)=\"control.setValue($event)\"\n></gn-ui-date-picker>\n", styles: [""], dependencies: [{ kind: "component", type: DatePickerComponent, selector: "gn-ui-date-picker", inputs: ["date"], outputs: ["dateChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8
- }
9
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldResourceUpdatedComponent, decorators: [{
10
- type: Component,
11
- args: [{ selector: 'gn-ui-form-field-resource-updated', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [DatePickerComponent], template: "<gn-ui-date-picker\n [date]=\"control.value\"\n (dateChange)=\"control.setValue($event)\"\n></gn-ui-date-picker>\n" }]
12
- }], propDecorators: { control: [{
13
- type: Input
14
- }] } });
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC1yZXNvdXJjZS11cGRhdGVkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL3JlY29yZC1mb3JtL2Zvcm0tZmllbGQvZm9ybS1maWVsZC1yZXNvdXJjZS11cGRhdGVkL2Zvcm0tZmllbGQtcmVzb3VyY2UtdXBkYXRlZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZWRpdG9yL3NyYy9saWIvY29tcG9uZW50cy9yZWNvcmQtZm9ybS9mb3JtLWZpZWxkL2Zvcm0tZmllbGQtcmVzb3VyY2UtdXBkYXRlZC9mb3JtLWZpZWxkLXJlc291cmNlLXVwZGF0ZWQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDekUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFBO0FBQzVDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLCtDQUErQyxDQUFBOztBQVVuRixNQUFNLE9BQU8saUNBQWlDOytHQUFqQyxpQ0FBaUM7bUdBQWpDLGlDQUFpQyw2SENaOUMsc0hBSUEsMERETVksbUJBQW1COzs0RkFFbEIsaUNBQWlDO2tCQVI3QyxTQUFTOytCQUNFLG1DQUFtQyxtQkFHNUIsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyxtQkFBbUIsQ0FBQzs4QkFHckIsT0FBTztzQkFBZixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3JtcydcbmltcG9ydCB7IERhdGVQaWNrZXJDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtcmVzb3VyY2UtdXBkYXRlZCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLWZpZWxkLXJlc291cmNlLXVwZGF0ZWQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mb3JtLWZpZWxkLXJlc291cmNlLXVwZGF0ZWQuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0RhdGVQaWNrZXJDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBGb3JtRmllbGRSZXNvdXJjZVVwZGF0ZWRDb21wb25lbnQge1xuICBASW5wdXQoKSBjb250cm9sITogRm9ybUNvbnRyb2xcbn1cbiIsIjxnbi11aS1kYXRlLXBpY2tlclxuICBbZGF0ZV09XCJjb250cm9sLnZhbHVlXCJcbiAgKGRhdGVDaGFuZ2UpPVwiY29udHJvbC5zZXRWYWx1ZSgkZXZlbnQpXCJcbj48L2duLXVpLWRhdGUtcGlja2VyPlxuIl19
@@ -1,17 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { DatePickerComponent } from '../../../../../../../../../../libs/ui/inputs/src';
4
- import { TranslateModule } from '@ngx-translate/core';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@ngx-translate/core";
7
- export class FormFieldTemporalExtentsDateComponent {
8
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FormFieldTemporalExtentsDateComponent, isStandalone: true, selector: "gn-ui-form-field-temporal-extents-date", inputs: { control: "control" }, ngImport: i0, template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.date</p>\n <gn-ui-date-picker\n [date]=\"control.value?.start\"\n (dateChange)=\"control.setValue({ start: $event })\"\n ></gn-ui-date-picker>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: DatePickerComponent, selector: "gn-ui-date-picker", inputs: ["date"], outputs: ["dateChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "directive", type: i1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsDateComponent, decorators: [{
12
- type: Component,
13
- args: [{ selector: 'gn-ui-form-field-temporal-extents-date', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [DatePickerComponent, TranslateModule], template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.date</p>\n <gn-ui-date-picker\n [date]=\"control.value?.start\"\n (dateChange)=\"control.setValue({ start: $event })\"\n ></gn-ui-date-picker>\n</div>\n" }]
14
- }], propDecorators: { control: [{
15
- type: Input
16
- }] } });
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDekUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFBO0FBQzVDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGtEQUFrRCxDQUFBO0FBQ3RGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTs7O0FBVXJELE1BQU0sT0FBTyxxQ0FBcUM7K0dBQXJDLHFDQUFxQzttR0FBckMscUNBQXFDLGtJQ2JsRCxnUkFPQSwwRERJWSxtQkFBbUIsd0dBQUUsZUFBZTs7NEZBRW5DLHFDQUFxQztrQkFSakQsU0FBUzsrQkFDRSx3Q0FBd0MsbUJBR2pDLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSxXQUNQLENBQUMsbUJBQW1CLEVBQUUsZUFBZSxDQUFDOzhCQUd0QyxPQUFPO3NCQUFmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJ1xuaW1wb3J0IHsgRGF0ZVBpY2tlckNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYydcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1kYXRlJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1kYXRlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0RhdGVQaWNrZXJDb21wb25lbnQsIFRyYW5zbGF0ZU1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIEZvcm1GaWVsZFRlbXBvcmFsRXh0ZW50c0RhdGVDb21wb25lbnQge1xuICBASW5wdXQoKSBjb250cm9sITogRm9ybUNvbnRyb2xcbn1cbiIsIjxkaXYgY2xhc3M9XCJib3JkZXIgcm91bmRlZC1sZyBweC00IHBiLTRcIj5cbiAgPHAgY2xhc3M9XCJteS0yXCIgdHJhbnNsYXRlPmVkaXRvci5yZWNvcmQuZm9ybS50ZW1wb3JhbEV4dGVudHMuZGF0ZTwvcD5cbiAgPGduLXVpLWRhdGUtcGlja2VyXG4gICAgW2RhdGVdPVwiY29udHJvbC52YWx1ZT8uc3RhcnRcIlxuICAgIChkYXRlQ2hhbmdlKT1cImNvbnRyb2wuc2V0VmFsdWUoeyBzdGFydDogJGV2ZW50IH0pXCJcbiAgPjwvZ24tdWktZGF0ZS1waWNrZXI+XG48L2Rpdj5cbiJdfQ==
@@ -1,17 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { DateRangePickerComponent } from '../../../../../../../../../../libs/ui/inputs/src';
4
- import { TranslateModule } from '@ngx-translate/core';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@ngx-translate/core";
7
- export class FormFieldTemporalExtentsRangeComponent {
8
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsRangeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FormFieldTemporalExtentsRangeComponent, isStandalone: true, selector: "gn-ui-form-field-temporal-extents-range", inputs: { control: "control" }, ngImport: i0, template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.range</p>\n <gn-ui-date-range-picker\n [startDate]=\"control.value?.start\"\n [endDate]=\"control.value?.end\"\n (startDateChange)=\"\n control.setValue({ start: $event, end: control.value?.end })\n \"\n (endDateChange)=\"\n control.setValue({ start: control.value?.start, end: $event })\n \"\n ></gn-ui-date-range-picker>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: DateRangePickerComponent, selector: "gn-ui-date-range-picker", inputs: ["startDate", "endDate"], outputs: ["startDateChange", "endDateChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "directive", type: i1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsRangeComponent, decorators: [{
12
- type: Component,
13
- args: [{ selector: 'gn-ui-form-field-temporal-extents-range', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [DateRangePickerComponent, TranslateModule], template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.range</p>\n <gn-ui-date-range-picker\n [startDate]=\"control.value?.start\"\n [endDate]=\"control.value?.end\"\n (startDateChange)=\"\n control.setValue({ start: $event, end: control.value?.end })\n \"\n (endDateChange)=\"\n control.setValue({ start: control.value?.start, end: $event })\n \"\n ></gn-ui-date-range-picker>\n</div>\n" }]
14
- }], propDecorators: { control: [{
15
- type: Input
16
- }] } });
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL3JlY29yZC1mb3JtL2Zvcm0tZmllbGQvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1yYW5nZS9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMtcmFuZ2UuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1yYW5nZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUN6RSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUE7QUFDNUMsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sa0RBQWtELENBQUE7QUFDM0YsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFBOzs7QUFVckQsTUFBTSxPQUFPLHNDQUFzQzsrR0FBdEMsc0NBQXNDO21HQUF0QyxzQ0FBc0MsbUlDYm5ELDBkQWFBLDBEREZZLHdCQUF3QixvSkFBRSxlQUFlOzs0RkFFeEMsc0NBQXNDO2tCQVJsRCxTQUFTOytCQUNFLHlDQUF5QyxtQkFHbEMsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyx3QkFBd0IsRUFBRSxlQUFlLENBQUM7OEJBRzNDLE9BQU87c0JBQWYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IEZvcm1Db250cm9sIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnXG5pbXBvcnQgeyBEYXRlUmFuZ2VQaWNrZXJDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMnXG5pbXBvcnQgeyBUcmFuc2xhdGVNb2R1bGUgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMtcmFuZ2UnLFxuICB0ZW1wbGF0ZVVybDogJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtEYXRlUmFuZ2VQaWNrZXJDb21wb25lbnQsIFRyYW5zbGF0ZU1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIEZvcm1GaWVsZFRlbXBvcmFsRXh0ZW50c1JhbmdlQ29tcG9uZW50IHtcbiAgQElucHV0KCkgY29udHJvbCE6IEZvcm1Db250cm9sXG59XG4iLCI8ZGl2IGNsYXNzPVwiYm9yZGVyIHJvdW5kZWQtbGcgcHgtNCBwYi00XCI+XG4gIDxwIGNsYXNzPVwibXktMlwiIHRyYW5zbGF0ZT5lZGl0b3IucmVjb3JkLmZvcm0udGVtcG9yYWxFeHRlbnRzLnJhbmdlPC9wPlxuICA8Z24tdWktZGF0ZS1yYW5nZS1waWNrZXJcbiAgICBbc3RhcnREYXRlXT1cImNvbnRyb2wudmFsdWU/LnN0YXJ0XCJcbiAgICBbZW5kRGF0ZV09XCJjb250cm9sLnZhbHVlPy5lbmRcIlxuICAgIChzdGFydERhdGVDaGFuZ2UpPVwiXG4gICAgICBjb250cm9sLnNldFZhbHVlKHsgc3RhcnQ6ICRldmVudCwgZW5kOiBjb250cm9sLnZhbHVlPy5lbmQgfSlcbiAgICBcIlxuICAgIChlbmREYXRlQ2hhbmdlKT1cIlxuICAgICAgY29udHJvbC5zZXRWYWx1ZSh7IHN0YXJ0OiBjb250cm9sLnZhbHVlPy5zdGFydCwgZW5kOiAkZXZlbnQgfSlcbiAgICBcIlxuICA+PC9nbi11aS1kYXRlLXJhbmdlLXBpY2tlcj5cbjwvZGl2PlxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL3JlY29yZC1mb3JtL2Zvcm0tZmllbGQvZm9ybS1maWVsZC5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsidHlwZSBCYXNlRm9ybUZpZWxkVHlwZSA9XG4gIHwgJ3RleHQnXG4gIHwgJ251bWJlcidcbiAgfCAncmljaCdcbiAgfCAnZGF0ZSdcbiAgfCAnbGlzdCdcbiAgfCAnc3BhdGlhbF9leHRlbnQnXG4gIHwgJ3RlbXBvcmFsX2V4dGVudCdcbiAgfCAndXJsJ1xuICB8ICdmaWxlJ1xuICB8ICd0b2dnbGUnXG5cbnR5cGUgQWxsRm9ybUZpZWxkVHlwZSA9IEJhc2VGb3JtRmllbGRUeXBlIHwgJ29iamVjdCcgfCAnYXJyYXknXG5cbmludGVyZmFjZSBGb3JtRmllbGRDb25maWdCYXNlIHtcbiAgdHlwZTogQWxsRm9ybUZpZWxkVHlwZVxuICBsYWJlbEtleTogc3RyaW5nXG4gIGhpbnRLZXk/OiBzdHJpbmdcbiAgdG9vbHRpcEtleT86IHN0cmluZ1xuICByZXF1aXJlZD86IGJvb2xlYW5cbiAgbG9ja2VkPzogYm9vbGVhblxuICBpbnZhbGlkPzogYm9vbGVhblxuICBpbnZhbGlkSGludEtleT86IHN0cmluZ1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEZvcm1GaWVsZENvbmZpZ1NpbXBsZSBleHRlbmRzIEZvcm1GaWVsZENvbmZpZ0Jhc2Uge1xuICB0eXBlOiBCYXNlRm9ybUZpZWxkVHlwZVxufVxuXG5leHBvcnQgaW50ZXJmYWNlIEZvcm1GaWVsZENvbmZpZ0FycmF5IGV4dGVuZHMgRm9ybUZpZWxkQ29uZmlnQmFzZSB7XG4gIHR5cGU6ICdhcnJheSdcbiAgaXRlbXM6IEZvcm1GaWVsZENvbmZpZ1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEZvcm1GaWVsZENvbmZpZ09iamVjdCBleHRlbmRzIEZvcm1GaWVsZENvbmZpZ0Jhc2Uge1xuICB0eXBlOiAnb2JqZWN0J1xuICBmaWVsZHM6IEFycmF5PEZvcm1GaWVsZENvbmZpZz5cbn1cblxuZXhwb3J0IHR5cGUgRm9ybUZpZWxkQ29uZmlnID1cbiAgfCBGb3JtRmllbGRDb25maWdTaW1wbGVcbiAgfCBGb3JtRmllbGRDb25maWdBcnJheVxuICB8IEZvcm1GaWVsZENvbmZpZ09iamVjdFxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmllbGRzLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL21vZGVscy9maWVsZHMubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZvcm1GaWVsZENvbmZpZyB9IGZyb20gJy4uL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZCdcblxuLy8gRXhwcmVzc2lvbnMgc2hvdWxkIGJlIGVuY2xvc2VkIGluIGAke31gIHRvIGJlIHJlY29nbml6ZWQgYXMgc3VjaFxuLy8gZWcuICR7ZGF0ZU5vdygpfVxuZXhwb3J0IHR5cGUgRWRpdG9yRmllbGRFeHByZXNzaW9uID0gYCRcXHske3N0cmluZ319YFxuXG5leHBvcnQgaW50ZXJmYWNlIEVkaXRvckZpZWxkQ29uZmlnIHtcbiAgLy8gY29uZmlndXJhdGlvbiBvZiB0aGUgZm9ybSBmaWVsZCB1c2VkIGFzIHByZXNlbnRhdGlvbjsgb3B0aW9uYWwsIG5vdGhpbmcgc2hvd24gaWYgbm90IGRlZmluZWRcbiAgZm9ybUZpZWxkQ29uZmlnPzogRm9ybUZpZWxkQ29uZmlnXG5cbiAgLy8gbmFtZSBvZiB0aGUgdGFyZ2V0IGZpZWxkIGluIHRoZSByZWNvcmQ7IHdpbGwgbm90IGNoYW5nZSB0aGUgcmVjb3JkIGRpcmVjdGx5IGlmIG5vdCBkZWZpbmVkXG4gIG1vZGVsPzogc3RyaW5nXG5cbiAgLy8gYSBoaWRkZW4gZmllbGQgd29uJ3Qgc2hvdyBidXQgY2FuIHN0aWxsIGJlIHVzZWQgdG8gbW9kaWZ5IHRoZSByZWNvcmRcbiAgLy8gRklYTUU6IGN1cnJlbnRseSB0aGlzIGlzIHJlZHVuZGFudCB3aXRoIGFuIGFic2VuY2Ugb2YgZm9ybUZpZWxkQ29uZmlnIGJ1dCBuZWNlc3NhcnkgZm9yIGNsYXJpdHlcbiAgaGlkZGVuPzogYm9vbGVhblxuXG4gIC8vIHRoZSByZXN1bHQgb2YgdGhpcyBleHByZXNzaW9uIHdpbGwgcmVwbGFjZSB0aGUgZmllbGQgdmFsdWUgb24gc2F2ZVxuICBvblNhdmVQcm9jZXNzPzogRWRpdG9yRmllbGRFeHByZXNzaW9uXG59XG5cbmV4cG9ydCB0eXBlIEVkaXRvckZpZWxkc0NvbmZpZyA9IEVkaXRvckZpZWxkQ29uZmlnW11cblxuZXhwb3J0IHR5cGUgRWRpdG9yRmllbGRWYWx1ZSA9IHN0cmluZyB8IG51bWJlciB8IGJvb2xlYW4gfCB1bmtub3duXG5cbmV4cG9ydCBpbnRlcmZhY2UgRWRpdG9yRmllbGRTdGF0ZSB7XG4gIGNvbmZpZzogRWRpdG9yRmllbGRDb25maWdcbiAgdmFsdWU6IHN0cmluZyB8IG51bWJlciB8IGJvb2xlYW4gfCB1bmtub3duXG59XG4iXX0=