geonetwork-ui 2.8.0-dev.c77b0c7dd → 2.8.0-dev.d7c07c0b9

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 (2149) hide show
  1. package/fesm2022/geonetwork-ui-date-locales-DhlIiWpT.mjs +35 -0
  2. package/fesm2022/geonetwork-ui-date-locales-DhlIiWpT.mjs.map +1 -0
  3. package/fesm2022/geonetwork-ui.mjs +3267 -2924
  4. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  5. package/index.d.ts +6636 -23
  6. package/index.d.ts.map +1 -1
  7. package/index.ts +1 -0
  8. package/package.json +27 -29
  9. package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +2 -0
  10. package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +11 -0
  11. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +2 -2
  12. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -1
  13. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.service+eaux-usees.ts +1 -1
  14. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +5 -2
  15. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
  16. package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -1
  17. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +2 -2
  18. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +1 -1
  19. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.service+napitswallonia.ts +1 -1
  20. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +42 -8
  21. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +3 -5
  22. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +13 -6
  23. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +6 -2
  24. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +3 -3
  25. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +4 -2
  26. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +11 -10
  27. package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +3 -3
  28. package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +1 -1
  29. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +6 -8
  30. package/src/libs/api/repository/src/lib/gn4/favorites/favorites.service.ts +4 -6
  31. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +10 -12
  32. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +2 -0
  33. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +2 -0
  34. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +14 -6
  35. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +51 -50
  36. package/src/libs/api/repository/src/lib/gn4/selection/selection.service.ts +4 -2
  37. package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +6 -5
  38. package/src/libs/common/domain/src/index.ts +2 -0
  39. package/src/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.ts +1 -1
  40. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +12 -1
  41. package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +5 -0
  42. package/src/libs/common/domain/src/lib/platform.service.interface.ts +1 -1
  43. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +5 -0
  44. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +26 -0
  45. package/src/libs/common/fixtures/src/lib/map/map-context.fixtures.ts +1 -1
  46. package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +2 -2
  47. package/src/libs/data-access/gn4/src/openapi/api/atom.api.service.ts +7 -6
  48. package/src/libs/data-access/gn4/src/openapi/api/customstyle.api.service.ts +7 -6
  49. package/src/libs/data-access/gn4/src/openapi/api/formatters.api.service.ts +7 -6
  50. package/src/libs/data-access/gn4/src/openapi/api/groups.api.service.ts +7 -6
  51. package/src/libs/data-access/gn4/src/openapi/api/harvesters.api.service.ts +7 -6
  52. package/src/libs/data-access/gn4/src/openapi/api/identifiers.api.service.ts +7 -6
  53. package/src/libs/data-access/gn4/src/openapi/api/languages.api.service.ts +7 -6
  54. package/src/libs/data-access/gn4/src/openapi/api/links.api.service.ts +7 -6
  55. package/src/libs/data-access/gn4/src/openapi/api/logos.api.service.ts +7 -6
  56. package/src/libs/data-access/gn4/src/openapi/api/mapservers.api.service.ts +7 -6
  57. package/src/libs/data-access/gn4/src/openapi/api/mapservices.api.service.ts +7 -6
  58. package/src/libs/data-access/gn4/src/openapi/api/me.api.service.ts +7 -6
  59. package/src/libs/data-access/gn4/src/openapi/api/operations.api.service.ts +7 -6
  60. package/src/libs/data-access/gn4/src/openapi/api/pages.api.service.ts +7 -6
  61. package/src/libs/data-access/gn4/src/openapi/api/processes.api.service.ts +7 -6
  62. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +7 -6
  63. package/src/libs/data-access/gn4/src/openapi/api/regions.api.service.ts +7 -6
  64. package/src/libs/data-access/gn4/src/openapi/api/registries.api.service.ts +7 -6
  65. package/src/libs/data-access/gn4/src/openapi/api/related.api.service.ts +7 -6
  66. package/src/libs/data-access/gn4/src/openapi/api/search.api.service.ts +7 -6
  67. package/src/libs/data-access/gn4/src/openapi/api/selections.api.service.ts +7 -6
  68. package/src/libs/data-access/gn4/src/openapi/api/site.api.service.ts +7 -6
  69. package/src/libs/data-access/gn4/src/openapi/api/sources.api.service.ts +7 -6
  70. package/src/libs/data-access/gn4/src/openapi/api/standards.api.service.ts +7 -6
  71. package/src/libs/data-access/gn4/src/openapi/api/status.api.service.ts +7 -6
  72. package/src/libs/data-access/gn4/src/openapi/api/tags.api.service.ts +7 -6
  73. package/src/libs/data-access/gn4/src/openapi/api/tools.api.service.ts +7 -6
  74. package/src/libs/data-access/gn4/src/openapi/api/ui.api.service.ts +7 -6
  75. package/src/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.ts +7 -6
  76. package/src/libs/data-access/gn4/src/openapi/api/users.api.service.ts +7 -6
  77. package/src/libs/data-access/gn4/src/openapi/api/usersearches.api.service.ts +7 -6
  78. package/src/libs/data-access/gn4/src/openapi/api/userselections.api.service.ts +7 -6
  79. package/src/libs/data-access/gn4/src/openapi/api.module.ts +5 -10
  80. package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +1 -1
  81. package/src/libs/feature/catalog/src/lib/my-org/my-org.service.ts +5 -5
  82. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +19 -17
  83. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +4 -9
  84. package/src/libs/feature/catalog/src/lib/records/records.service.ts +3 -3
  85. package/src/libs/feature/catalog/src/lib/site-title/site-title.component.html +6 -5
  86. package/src/libs/feature/catalog/src/lib/site-title/site-title.component.ts +4 -2
  87. package/src/libs/feature/catalog/src/lib/source-label/source-label.component.ts +8 -2
  88. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +4 -6
  89. package/src/libs/feature/catalog/src/lib/users/users.service.ts +3 -3
  90. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +36 -32
  91. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +7 -7
  92. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +3 -2
  93. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +3 -2
  94. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +32 -7
  95. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +26 -22
  96. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +9 -6
  97. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.html +20 -17
  98. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +1 -2
  99. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +1 -3
  100. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +16 -13
  101. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -4
  102. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +23 -20
  103. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +8 -10
  104. package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +26 -27
  105. package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +0 -2
  106. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.html +123 -107
  107. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.ts +9 -10
  108. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +17 -15
  109. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +2 -2
  110. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +66 -59
  111. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +3 -2
  112. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +1 -2
  113. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.html +20 -19
  114. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +3 -2
  115. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +16 -20
  116. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +6 -7
  117. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +48 -53
  118. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +4 -7
  119. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +4 -4
  120. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +7 -10
  121. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.html +43 -19
  122. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +7 -10
  123. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +7 -9
  124. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +1 -2
  125. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +5 -7
  126. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.ts +3 -3
  127. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +27 -25
  128. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +3 -2
  129. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.html +7 -6
  130. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +6 -15
  131. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -2
  132. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +3 -3
  133. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +30 -0
  134. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +24 -32
  135. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +3 -3
  136. package/src/libs/feature/editor/src/lib/fields.config.ts +1 -1
  137. package/src/libs/feature/editor/src/lib/services/editor.service.ts +2 -2
  138. package/src/libs/feature/map/src/lib/+state/map.facade.ts +3 -3
  139. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +7 -4
  140. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.html +2 -2
  141. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +16 -8
  142. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +10 -6
  143. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +5 -13
  144. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +39 -36
  145. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +4 -4
  146. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +32 -25
  147. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +4 -8
  148. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +46 -35
  149. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +4 -6
  150. package/src/libs/feature/map/src/lib/constant/style.constant.ts +2 -2
  151. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.html +33 -31
  152. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +7 -7
  153. package/src/libs/feature/map/src/lib/geocoding.service.ts +2 -4
  154. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +13 -14
  155. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +3 -2
  156. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts +3 -3
  157. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +1 -1
  158. package/src/libs/feature/map/src/lib/style/map-style.service.ts +4 -4
  159. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +1 -1
  160. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +16 -15
  161. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +2 -2
  162. package/src/libs/feature/record/src/index.ts +1 -0
  163. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +30 -28
  164. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +8 -3
  165. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.html +6 -5
  166. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +12 -11
  167. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +12 -8
  168. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +6 -9
  169. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +24 -10
  170. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +10 -9
  171. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +7 -13
  172. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.html +14 -15
  173. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +13 -10
  174. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.html +18 -15
  175. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +3 -3
  176. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +41 -42
  177. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +13 -10
  178. package/src/libs/feature/record/src/lib/record-meta/record-meta.component.ts +4 -4
  179. package/src/libs/feature/record/src/lib/stac-view/stac-view.component.css +8 -0
  180. package/src/libs/feature/record/src/lib/stac-view/stac-view.component.html +87 -0
  181. package/src/libs/feature/record/src/lib/stac-view/stac-view.component.ts +338 -0
  182. package/src/libs/feature/record/src/lib/stac-view/utils.ts +57 -0
  183. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +6 -8
  184. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +35 -8
  185. package/src/libs/feature/router/src/lib/default/container/search-router.container.directive.ts +3 -3
  186. package/src/libs/feature/router/src/lib/default/router.module.ts +4 -2
  187. package/src/libs/feature/router/src/lib/default/router.service.ts +11 -5
  188. package/src/libs/feature/router/src/lib/default/services/router-search.service.ts +4 -6
  189. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +12 -15
  190. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +4 -6
  191. package/src/libs/feature/search/src/lib/constants.ts +1 -1
  192. package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.ts +4 -6
  193. package/src/libs/feature/search/src/lib/facets/facets.service.ts +2 -2
  194. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +5 -6
  195. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +7 -8
  196. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +10 -10
  197. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +5 -6
  198. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +5 -6
  199. package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.html +10 -8
  200. package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.ts +10 -3
  201. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.html +7 -6
  202. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.ts +5 -7
  203. package/src/libs/feature/search/src/lib/results-layout/results-layout.component.ts +6 -7
  204. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +52 -48
  205. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +15 -17
  206. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +17 -16
  207. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +8 -9
  208. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.html +18 -16
  209. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +9 -15
  210. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.html +20 -20
  211. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +7 -9
  212. package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +12 -18
  213. package/src/libs/feature/search/src/lib/state/container/search-state.container.directive.ts +3 -3
  214. package/src/libs/feature/search/src/lib/state/effects.ts +10 -12
  215. package/src/libs/feature/search/src/lib/state/search.facade.ts +6 -8
  216. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +4 -3
  217. package/src/libs/feature/search/src/lib/utils/service/fields.ts +37 -33
  218. package/src/libs/feature/search/src/lib/utils/service/search.service.ts +2 -2
  219. package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.html +15 -15
  220. package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.ts +1 -2
  221. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +4 -8
  222. package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +3 -3
  223. package/src/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.ts +4 -2
  224. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +34 -33
  225. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +5 -6
  226. package/src/libs/ui/elements/src/index.ts +2 -0
  227. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +55 -50
  228. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.html +25 -23
  229. package/src/libs/ui/elements/src/lib/avatar/avatar.component.html +12 -10
  230. package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +1 -2
  231. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +7 -5
  232. package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.html +10 -5
  233. package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.ts +1 -2
  234. package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +5 -3
  235. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +66 -62
  236. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +3 -4
  237. package/src/libs/ui/elements/src/lib/error/error.component.html +68 -55
  238. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +47 -25
  239. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +12 -3
  240. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.html +15 -15
  241. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.ts +8 -3
  242. package/src/libs/ui/elements/src/lib/image-input/image-input.component.html +83 -89
  243. package/src/libs/ui/elements/src/lib/image-input/image-input.component.ts +4 -5
  244. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +22 -21
  245. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +1 -8
  246. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +40 -34
  247. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +4 -4
  248. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.html +10 -15
  249. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +0 -2
  250. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +1 -0
  251. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +83 -69
  252. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -2
  253. package/src/libs/ui/elements/src/lib/metadata-doi/metadata-doi.component.css +0 -0
  254. package/src/libs/ui/elements/src/lib/metadata-doi/metadata-doi.component.html +32 -0
  255. package/src/libs/ui/elements/src/lib/metadata-doi/metadata-doi.component.ts +24 -0
  256. package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +3 -5
  257. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +333 -271
  258. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +5 -12
  259. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +30 -27
  260. package/src/libs/ui/elements/src/lib/notification/notification.component.html +5 -8
  261. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +10 -11
  262. package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.html +102 -95
  263. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.html +110 -92
  264. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +11 -8
  265. package/src/libs/ui/elements/src/lib/stac-items-result-grid/stac-items-result-grid.component.css +0 -0
  266. package/src/libs/ui/elements/src/lib/stac-items-result-grid/stac-items-result-grid.component.html +15 -0
  267. package/src/libs/ui/elements/src/lib/stac-items-result-grid/stac-items-result-grid.component.ts +14 -0
  268. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +5 -8
  269. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +74 -65
  270. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +2 -2
  271. package/src/libs/ui/inputs/src/index.ts +1 -0
  272. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +60 -57
  273. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +3 -2
  274. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +17 -16
  275. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.html +3 -3
  276. package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.css +8 -8
  277. package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.html +16 -14
  278. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +18 -1
  279. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +11 -10
  280. package/src/libs/ui/inputs/src/lib/date-range-inputs/date-range-inputs.component.css +0 -0
  281. package/src/libs/ui/inputs/src/lib/date-range-inputs/date-range-inputs.component.html +15 -0
  282. package/src/libs/ui/inputs/src/lib/date-range-inputs/date-range-inputs.component.ts +40 -0
  283. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +8 -4
  284. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +1 -2
  285. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +68 -61
  286. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +5 -11
  287. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +29 -27
  288. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +4 -2
  289. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +4 -5
  290. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +35 -35
  291. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +3 -2
  292. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.html +22 -20
  293. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.html +47 -46
  294. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.html +10 -9
  295. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +6 -4
  296. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +1 -1
  297. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +9 -8
  298. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -2
  299. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +12 -11
  300. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +3 -2
  301. package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +3 -2
  302. package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +3 -2
  303. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +1 -1
  304. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +3 -2
  305. package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +3 -2
  306. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.html +31 -29
  307. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.ts +6 -13
  308. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +13 -13
  309. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +3 -2
  310. package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.html +6 -2
  311. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.ts +1 -2
  312. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +59 -53
  313. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +14 -12
  314. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.ts +3 -2
  315. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +3 -5
  316. package/src/libs/ui/layout/src/lib/paginable.interface.ts +3 -3
  317. package/src/libs/ui/layout/src/lib/pagination/pagination.component.html +13 -11
  318. package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +2 -8
  319. package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.html +26 -24
  320. package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.ts +2 -2
  321. package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.html +17 -15
  322. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +12 -6
  323. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +4 -1
  324. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +2 -3
  325. package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +5 -7
  326. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.html +9 -8
  327. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.ts +6 -6
  328. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +9 -5
  329. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.html +16 -14
  330. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +142 -72
  331. package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.html +3 -1
  332. package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.ts +1 -2
  333. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +3 -2
  334. package/src/libs/ui/map/src/lib/map-utils.ts +9 -4
  335. package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.html +85 -82
  336. package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.ts +2 -8
  337. package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.html +38 -36
  338. package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.ts +1 -2
  339. package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.html +9 -8
  340. package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.ts +2 -2
  341. package/src/libs/ui/search/src/lib/record-metric/record-metric.component.ts +1 -2
  342. package/src/libs/ui/search/src/lib/record-preview/record-preview.component.ts +6 -3
  343. package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.ts +2 -3
  344. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +48 -42
  345. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +23 -15
  346. package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.html +22 -14
  347. package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.ts +2 -8
  348. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.ts +10 -4
  349. package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.ts +2 -3
  350. package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.ts +2 -3
  351. package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +16 -10
  352. package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.ts +1 -2
  353. package/src/libs/ui/search/src/lib/results-list/results-list.component.html +13 -15
  354. package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.ts +4 -5
  355. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +38 -34
  356. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +4 -7
  357. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +7 -8
  358. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +5 -7
  359. package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +3 -2
  360. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +6 -7
  361. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +1 -2
  362. package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +1 -1
  363. package/src/libs/util/i18n/src/lib/date-locales.ts +63 -0
  364. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
  365. package/src/libs/util/shared/src/index.ts +1 -0
  366. package/src/libs/util/shared/src/lib/humanize-date.directive.ts +40 -0
  367. package/src/libs/util/shared/src/lib/image-fallback.directive.ts +9 -2
  368. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -0
  369. package/src/libs/util/shared/src/lib/links/link-utils.ts +29 -5
  370. package/src/libs/util/shared/src/lib/services/date.service.ts +29 -3
  371. package/src/libs/util/shared/src/lib/services/proxy.service.ts +7 -5
  372. package/src/libs/util/shared/src/lib/utils/sort-by.ts +8 -5
  373. package/tailwind.base.css +1 -1
  374. package/translations/de.json +294 -275
  375. package/translations/en.json +24 -6
  376. package/translations/es.json +22 -3
  377. package/translations/fr.json +24 -5
  378. package/translations/it.json +25 -6
  379. package/translations/nl.json +22 -3
  380. package/translations/pt.json +22 -3
  381. package/translations/sk.json +23 -4
  382. package/esm2022/geonetwork-ui.mjs +0 -5
  383. package/esm2022/index.mjs +0 -24
  384. package/esm2022/libs/api/metadata-converter/src/index.mjs +0 -9
  385. package/esm2022/libs/api/metadata-converter/src/lib/base.converter.mjs +0 -14
  386. package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +0 -26
  387. package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +0 -64
  388. package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +0 -40
  389. package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +0 -14
  390. package/esm2022/libs/api/metadata-converter/src/lib/convert-utils.mjs +0 -19
  391. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +0 -279
  392. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/index.mjs +0 -2
  393. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.mjs +0 -17
  394. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +0 -224
  395. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +0 -57
  396. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +0 -96
  397. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.mjs +0 -2
  398. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +0 -47
  399. package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +0 -25
  400. package/esm2022/libs/api/metadata-converter/src/lib/function-utils.mjs +0 -40
  401. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +0 -77
  402. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.converter.mjs +0 -54
  403. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +0 -384
  404. package/esm2022/libs/api/metadata-converter/src/lib/gn4/index.mjs +0 -4
  405. package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +0 -29
  406. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.mjs +0 -12
  407. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/index.mjs +0 -5
  408. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +0 -2
  409. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +0 -2
  410. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/search.model.mjs +0 -11
  411. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/index.mjs +0 -2
  412. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +0 -129
  413. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +0 -143
  414. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +0 -153
  415. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/index.mjs +0 -2
  416. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +0 -310
  417. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +0 -485
  418. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +0 -31
  419. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.mjs +0 -18
  420. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.mjs +0 -14
  421. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.mjs +0 -48
  422. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.mjs +0 -21
  423. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.mjs +0 -8
  424. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +0 -516
  425. package/esm2022/libs/api/metadata-converter/src/lib/translate-utils.mjs +0 -17
  426. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +0 -456
  427. package/esm2022/libs/api/repository/src/index.mjs +0 -4
  428. package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +0 -67
  429. package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +0 -3
  430. package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +0 -39
  431. package/esm2022/libs/api/repository/src/lib/gn4/auth/index.mjs +0 -4
  432. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +0 -32
  433. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.mjs +0 -12
  434. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +0 -552
  435. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/index.mjs +0 -4
  436. package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +0 -66
  437. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +0 -336
  438. package/esm2022/libs/api/repository/src/lib/gn4/gn4.provider.mjs +0 -42
  439. package/esm2022/libs/api/repository/src/lib/gn4/index.mjs +0 -11
  440. package/esm2022/libs/api/repository/src/lib/gn4/organizations/index.mjs +0 -5
  441. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organization-strategy.token.mjs +0 -5
  442. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +0 -104
  443. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +0 -198
  444. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-service.factory.mjs +0 -6
  445. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +0 -100
  446. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +0 -270
  447. package/esm2022/libs/api/repository/src/lib/gn4/selection/selection.service.mjs +0 -52
  448. package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +0 -26
  449. package/esm2022/libs/api/repository/src/lib/metadata-language.token.mjs +0 -3
  450. package/esm2022/libs/api/repository/src/lib/repository-url.mjs +0 -10
  451. package/esm2022/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.mjs +0 -9
  452. package/esm2022/libs/common/domain/src/lib/model/error/index.mjs +0 -2
  453. package/esm2022/libs/common/domain/src/lib/model/error/publication-version.error.mjs +0 -8
  454. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +0 -51
  455. package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +0 -6
  456. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +0 -64
  457. package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +0 -2
  458. package/esm2022/libs/common/domain/src/lib/model/record/translation.model.mjs +0 -2
  459. package/esm2022/libs/common/domain/src/lib/model/record/user-feedbacks.model.mjs +0 -2
  460. package/esm2022/libs/common/domain/src/lib/model/search/aggregation.model.mjs +0 -2
  461. package/esm2022/libs/common/domain/src/lib/model/search/field.model.mjs +0 -2
  462. package/esm2022/libs/common/domain/src/lib/model/search/filter.model.mjs +0 -2
  463. package/esm2022/libs/common/domain/src/lib/model/search/index.mjs +0 -6
  464. package/esm2022/libs/common/domain/src/lib/model/search/search.model.mjs +0 -2
  465. package/esm2022/libs/common/domain/src/lib/model/search/sort-by.model.mjs +0 -8
  466. package/esm2022/libs/common/domain/src/lib/model/thesaurus/index.mjs +0 -2
  467. package/esm2022/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.mjs +0 -2
  468. package/esm2022/libs/common/domain/src/lib/model/user/index.mjs +0 -2
  469. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +0 -2
  470. package/esm2022/libs/common/domain/src/lib/organizations.service.interface.mjs +0 -3
  471. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +0 -3
  472. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +0 -3
  473. package/esm2022/libs/data-access/gn4/src/fixtures/index.mjs +0 -3
  474. package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +0 -61
  475. package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +0 -5
  476. package/esm2022/libs/data-access/gn4/src/index.mjs +0 -3
  477. package/esm2022/libs/data-access/gn4/src/openapi/api/api.mjs +0 -99
  478. package/esm2022/libs/data-access/gn4/src/openapi/api/atom.api.service.mjs +0 -251
  479. package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +0 -151
  480. package/esm2022/libs/data-access/gn4/src/openapi/api/formatters.api.service.mjs +0 -363
  481. package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +0 -313
  482. package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +0 -164
  483. package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +0 -223
  484. package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +0 -223
  485. package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +0 -337
  486. package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +0 -211
  487. package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +0 -421
  488. package/esm2022/libs/data-access/gn4/src/openapi/api/mapservices.api.service.mjs +0 -117
  489. package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +0 -117
  490. package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +0 -117
  491. package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +0 -456
  492. package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +0 -389
  493. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +0 -4080
  494. package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +0 -204
  495. package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +0 -979
  496. package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +0 -135
  497. package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +0 -174
  498. package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +0 -215
  499. package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +0 -770
  500. package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +0 -249
  501. package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +0 -412
  502. package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +0 -170
  503. package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +0 -246
  504. package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +0 -608
  505. package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +0 -244
  506. package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +0 -405
  507. package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +0 -570
  508. package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +0 -343
  509. package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +0 -323
  510. package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +0 -41
  511. package/esm2022/libs/data-access/gn4/src/openapi/configuration.mjs +0 -72
  512. package/esm2022/libs/data-access/gn4/src/openapi/encoder.mjs +0 -19
  513. package/esm2022/libs/data-access/gn4/src/openapi/index.mjs +0 -6
  514. package/esm2022/libs/data-access/gn4/src/openapi/model/address.api.model.mjs +0 -13
  515. package/esm2022/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.mjs +0 -2
  516. package/esm2022/libs/data-access/gn4/src/openapi/model/associated.api.model.mjs +0 -2
  517. package/esm2022/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.mjs +0 -2
  518. package/esm2022/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.mjs +0 -2
  519. package/esm2022/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.mjs +0 -2
  520. package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.mjs +0 -13
  521. package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.mjs +0 -2
  522. package/esm2022/libs/data-access/gn4/src/openapi/model/category.api.model.mjs +0 -13
  523. package/esm2022/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.mjs +0 -13
  524. package/esm2022/libs/data-access/gn4/src/openapi/model/children.api.model.mjs +0 -2
  525. package/esm2022/libs/data-access/gn4/src/openapi/model/codelist.api.model.mjs +0 -2
  526. package/esm2022/libs/data-access/gn4/src/openapi/model/crs.api.model.mjs +0 -13
  527. package/esm2022/libs/data-access/gn4/src/openapi/model/dataset.api.model.mjs +0 -2
  528. package/esm2022/libs/data-access/gn4/src/openapi/model/description.api.model.mjs +0 -2
  529. package/esm2022/libs/data-access/gn4/src/openapi/model/element.api.model.mjs +0 -2
  530. package/esm2022/libs/data-access/gn4/src/openapi/model/entry.api.model.mjs +0 -13
  531. package/esm2022/libs/data-access/gn4/src/openapi/model/extentDto.api.model.mjs +0 -13
  532. package/esm2022/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.mjs +0 -2
  533. package/esm2022/libs/data-access/gn4/src/openapi/model/fcat.api.model.mjs +0 -2
  534. package/esm2022/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.mjs +0 -13
  535. package/esm2022/libs/data-access/gn4/src/openapi/model/featureType.api.model.mjs +0 -2
  536. package/esm2022/libs/data-access/gn4/src/openapi/model/field.api.model.mjs +0 -13
  537. package/esm2022/libs/data-access/gn4/src/openapi/model/formatterData.api.model.mjs +0 -13
  538. package/esm2022/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.mjs +0 -2
  539. package/esm2022/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.mjs +0 -13
  540. package/esm2022/libs/data-access/gn4/src/openapi/model/group.api.model.mjs +0 -2
  541. package/esm2022/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.mjs +0 -13
  542. package/esm2022/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.mjs +0 -33
  543. package/esm2022/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.mjs +0 -2
  544. package/esm2022/libs/data-access/gn4/src/openapi/model/hassource.api.model.mjs +0 -2
  545. package/esm2022/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.mjs +0 -13
  546. package/esm2022/libs/data-access/gn4/src/openapi/model/iSODate.api.model.mjs +0 -13
  547. package/esm2022/libs/data-access/gn4/src/openapi/model/infoReport.api.model.mjs +0 -13
  548. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.mjs +0 -13
  549. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.mjs +0 -13
  550. package/esm2022/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.mjs +0 -13
  551. package/esm2022/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.mjs +0 -13
  552. package/esm2022/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.mjs +0 -26
  553. package/esm2022/libs/data-access/gn4/src/openapi/model/language.api.model.mjs +0 -13
  554. package/esm2022/libs/data-access/gn4/src/openapi/model/link.api.model.mjs +0 -8
  555. package/esm2022/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.mjs +0 -2
  556. package/esm2022/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.mjs +0 -2
  557. package/esm2022/libs/data-access/gn4/src/openapi/model/localizedString.api.model.mjs +0 -13
  558. package/esm2022/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.mjs +0 -13
  559. package/esm2022/libs/data-access/gn4/src/openapi/model/mapServer.api.model.mjs +0 -13
  560. package/esm2022/libs/data-access/gn4/src/openapi/model/mapService.api.model.mjs +0 -13
  561. package/esm2022/libs/data-access/gn4/src/openapi/model/meResponse.api.model.mjs +0 -13
  562. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.mjs +0 -13
  563. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.mjs +0 -13
  564. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.mjs +0 -13
  565. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.mjs +0 -13
  566. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.mjs +0 -13
  567. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.mjs +0 -2
  568. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.mjs +0 -2
  569. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.mjs +0 -8
  570. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.mjs +0 -20
  571. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.mjs +0 -20
  572. package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +0 -119
  573. package/esm2022/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.mjs +0 -2
  574. package/esm2022/libs/data-access/gn4/src/openapi/model/online.api.model.mjs +0 -2
  575. package/esm2022/libs/data-access/gn4/src/openapi/model/operation.api.model.mjs +0 -23
  576. package/esm2022/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.mjs +0 -13
  577. package/esm2022/libs/data-access/gn4/src/openapi/model/pageLink.api.model.mjs +0 -2
  578. package/esm2022/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.mjs +0 -36
  579. package/esm2022/libs/data-access/gn4/src/openapi/model/pageable.api.model.mjs +0 -2
  580. package/esm2022/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.mjs +0 -2
  581. package/esm2022/libs/data-access/gn4/src/openapi/model/parent.api.model.mjs +0 -2
  582. package/esm2022/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.mjs +0 -13
  583. package/esm2022/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.mjs +0 -13
  584. package/esm2022/libs/data-access/gn4/src/openapi/model/processingReport.api.model.mjs +0 -2
  585. package/esm2022/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.mjs +0 -13
  586. package/esm2022/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.mjs +0 -36
  587. package/esm2022/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.mjs +0 -13
  588. package/esm2022/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.mjs +0 -13
  589. package/esm2022/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.mjs +0 -13
  590. package/esm2022/libs/data-access/gn4/src/openapi/model/related.api.model.mjs +0 -2
  591. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.mjs +0 -2
  592. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.mjs +0 -2
  593. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.mjs +0 -2
  594. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.mjs +0 -2
  595. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.mjs +0 -2
  596. package/esm2022/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.mjs +0 -13
  597. package/esm2022/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.mjs +0 -2
  598. package/esm2022/libs/data-access/gn4/src/openapi/model/report.api.model.mjs +0 -13
  599. package/esm2022/libs/data-access/gn4/src/openapi/model/reports.api.model.mjs +0 -2
  600. package/esm2022/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.mjs +0 -13
  601. package/esm2022/libs/data-access/gn4/src/openapi/model/section.api.model.mjs +0 -2
  602. package/esm2022/libs/data-access/gn4/src/openapi/model/selection.api.model.mjs +0 -13
  603. package/esm2022/libs/data-access/gn4/src/openapi/model/service.api.model.mjs +0 -2
  604. package/esm2022/libs/data-access/gn4/src/openapi/model/setting.api.model.mjs +0 -21
  605. package/esm2022/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.mjs +0 -2
  606. package/esm2022/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.mjs +0 -2
  607. package/esm2022/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.mjs +0 -2
  608. package/esm2022/libs/data-access/gn4/src/openapi/model/siblings.api.model.mjs +0 -2
  609. package/esm2022/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.mjs +0 -2
  610. package/esm2022/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.mjs +0 -13
  611. package/esm2022/libs/data-access/gn4/src/openapi/model/sort.api.model.mjs +0 -13
  612. package/esm2022/libs/data-access/gn4/src/openapi/model/source.api.model.mjs +0 -2
  613. package/esm2022/libs/data-access/gn4/src/openapi/model/status.api.model.mjs +0 -22
  614. package/esm2022/libs/data-access/gn4/src/openapi/model/statusValue.api.model.mjs +0 -33
  615. package/esm2022/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.mjs +0 -13
  616. package/esm2022/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.mjs +0 -13
  617. package/esm2022/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.mjs +0 -13
  618. package/esm2022/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.mjs +0 -2
  619. package/esm2022/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.mjs +0 -13
  620. package/esm2022/libs/data-access/gn4/src/openapi/model/translations.api.model.mjs +0 -13
  621. package/esm2022/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.mjs +0 -13
  622. package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +0 -13
  623. package/esm2022/libs/data-access/gn4/src/openapi/model/userDto.api.model.mjs +0 -2
  624. package/esm2022/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.mjs +0 -13
  625. package/esm2022/libs/data-access/gn4/src/openapi/model/userGroup.api.model.mjs +0 -13
  626. package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.mjs +0 -24
  627. package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.mjs +0 -13
  628. package/esm2022/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.mjs +0 -2
  629. package/esm2022/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.mjs +0 -13
  630. package/esm2022/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.mjs +0 -19
  631. package/esm2022/libs/data-access/gn4/src/openapi/model/values.api.model.mjs +0 -13
  632. package/esm2022/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.mjs +0 -2
  633. package/esm2022/libs/data-access/gn4/src/openapi/variables.mjs +0 -9
  634. package/esm2022/libs/feature/catalog/src/index.mjs +0 -9
  635. package/esm2022/libs/feature/catalog/src/lib/my-org/my-org.service.mjs +0 -42
  636. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +0 -127
  637. package/esm2022/libs/feature/catalog/src/lib/organization-url.token.mjs +0 -6
  638. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +0 -21
  639. package/esm2022/libs/feature/catalog/src/lib/site-title/site-title.component.mjs +0 -23
  640. package/esm2022/libs/feature/catalog/src/lib/source-label/source-label.component.mjs +0 -23
  641. package/esm2022/libs/feature/catalog/src/lib/sources/sources.model.mjs +0 -2
  642. package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +0 -27
  643. package/esm2022/libs/feature/dataviz/src/index.mjs +0 -6
  644. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +0 -245
  645. package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +0 -36
  646. package/esm2022/libs/feature/dataviz/src/lib/figure/figure.service.mjs +0 -31
  647. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +0 -98
  648. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +0 -244
  649. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +0 -101
  650. package/esm2022/libs/feature/editor/src/index.mjs +0 -13
  651. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +0 -17
  652. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +0 -68
  653. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +0 -66
  654. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +0 -2
  655. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +0 -84
  656. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +0 -27
  657. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +0 -66
  658. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +0 -16
  659. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +0 -89
  660. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +0 -111
  661. package/esm2022/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.mjs +0 -80
  662. package/esm2022/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.mjs +0 -275
  663. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +0 -75
  664. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +0 -172
  665. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +0 -11
  666. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +0 -73
  667. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.mjs +0 -35
  668. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +0 -129
  669. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +0 -105
  670. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +0 -150
  671. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.mjs +0 -19
  672. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +0 -28
  673. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +0 -39
  674. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +0 -60
  675. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +0 -11
  676. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +0 -151
  677. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +0 -181
  678. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +0 -104
  679. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +0 -41
  680. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +0 -32
  681. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -123
  682. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.mjs +0 -44
  683. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +0 -88
  684. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.mjs +0 -55
  685. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +0 -96
  686. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +0 -122
  687. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +0 -14
  688. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +0 -34
  689. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +0 -13
  690. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +0 -27
  691. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +0 -376
  692. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +0 -2
  693. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +0 -2
  694. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +0 -63
  695. package/esm2022/libs/feature/map/src/index.mjs +0 -14
  696. package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +0 -5
  697. package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +0 -28
  698. package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +0 -27
  699. package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +0 -7
  700. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +0 -49
  701. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +0 -60
  702. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +0 -118
  703. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +0 -129
  704. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +0 -74
  705. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +0 -73
  706. package/esm2022/libs/feature/map/src/lib/constant/index.mjs +0 -2
  707. package/esm2022/libs/feature/map/src/lib/constant/projections.mjs +0 -2
  708. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +0 -34
  709. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +0 -101
  710. package/esm2022/libs/feature/map/src/lib/geocoding.service.mjs +0 -40
  711. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +0 -77
  712. package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +0 -27
  713. package/esm2022/libs/feature/map/src/lib/style/index.mjs +0 -3
  714. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +0 -43
  715. package/esm2022/libs/feature/map/src/lib/style/map-style.service.mjs +0 -96
  716. package/esm2022/libs/feature/map/src/lib/utils/index.mjs +0 -2
  717. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +0 -29
  718. package/esm2022/libs/feature/notifications/src/index.mjs +0 -3
  719. package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +0 -2
  720. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +0 -49
  721. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +0 -30
  722. package/esm2022/libs/feature/record/src/index.mjs +0 -11
  723. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +0 -110
  724. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +0 -77
  725. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +0 -40
  726. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +0 -83
  727. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +0 -82
  728. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +0 -29
  729. package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +0 -169
  730. package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +0 -58
  731. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +0 -348
  732. package/esm2022/libs/feature/record/src/lib/record-meta/record-meta.component.mjs +0 -47
  733. package/esm2022/libs/feature/record/src/lib/state/index.mjs +0 -3
  734. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +0 -32
  735. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +0 -73
  736. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +0 -119
  737. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +0 -96
  738. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +0 -33
  739. package/esm2022/libs/feature/router/src/index.mjs +0 -2
  740. package/esm2022/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.mjs +0 -21
  741. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +0 -13
  742. package/esm2022/libs/feature/router/src/lib/default/container/search-router.container.directive.mjs +0 -41
  743. package/esm2022/libs/feature/router/src/lib/default/index.mjs +0 -9
  744. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +0 -3
  745. package/esm2022/libs/feature/router/src/lib/default/router.module.mjs +0 -63
  746. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +0 -61
  747. package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +0 -56
  748. package/esm2022/libs/feature/router/src/lib/default/state/query-params.utils.mjs +0 -51
  749. package/esm2022/libs/feature/router/src/lib/default/state/router.actions.mjs +0 -5
  750. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +0 -114
  751. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +0 -73
  752. package/esm2022/libs/feature/router/src/lib/default/state/router.selectors.mjs +0 -14
  753. package/esm2022/libs/feature/search/src/index.mjs +0 -26
  754. package/esm2022/libs/feature/search/src/lib/constants.mjs +0 -38
  755. package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +0 -71
  756. package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +0 -232
  757. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +0 -121
  758. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +0 -28
  759. package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +0 -68
  760. package/esm2022/libs/feature/search/src/lib/filter-geometry.token.mjs +0 -4
  761. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +0 -92
  762. package/esm2022/libs/feature/search/src/lib/record-url.token.mjs +0 -6
  763. package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +0 -45
  764. package/esm2022/libs/feature/search/src/lib/results-hits/results-hits.container.component.mjs +0 -48
  765. package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +0 -34
  766. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +0 -108
  767. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +0 -99
  768. package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +0 -65
  769. package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +0 -84
  770. package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +0 -58
  771. package/esm2022/libs/feature/search/src/lib/state/actions.mjs +0 -208
  772. package/esm2022/libs/feature/search/src/lib/state/container/search-state.container.directive.mjs +0 -29
  773. package/esm2022/libs/feature/search/src/lib/state/effects.mjs +0 -124
  774. package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +0 -289
  775. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +0 -130
  776. package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +0 -22
  777. package/esm2022/libs/feature/search/src/lib/utils/operators/search.operator.mjs +0 -31
  778. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +0 -436
  779. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +0 -90
  780. package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +0 -37
  781. package/esm2022/libs/ui/catalog/src/index.mjs +0 -6
  782. package/esm2022/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.mjs +0 -19
  783. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +0 -43
  784. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +0 -42
  785. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +0 -48
  786. package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +0 -16
  787. package/esm2022/libs/ui/dataviz/src/index.mjs +0 -5
  788. package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +0 -167
  789. package/esm2022/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.mjs +0 -51
  790. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.component.mjs +0 -139
  791. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.data.source.mjs +0 -24
  792. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.mjs +0 -82
  793. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +0 -33
  794. package/esm2022/libs/ui/elements/src/index.mjs +0 -29
  795. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +0 -87
  796. package/esm2022/libs/ui/elements/src/lib/application-banner/application-banner.component.mjs +0 -78
  797. package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +0 -20
  798. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +0 -29
  799. package/esm2022/libs/ui/elements/src/lib/content-ghost/content-ghost.component.mjs +0 -20
  800. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +0 -62
  801. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +0 -122
  802. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +0 -49
  803. package/esm2022/libs/ui/elements/src/lib/external-link-card/external-link-card.component.mjs +0 -59
  804. package/esm2022/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.mjs +0 -61
  805. package/esm2022/libs/ui/elements/src/lib/image-input/image-input.component.mjs +0 -227
  806. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +0 -45
  807. package/esm2022/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.mjs +0 -89
  808. package/esm2022/libs/ui/elements/src/lib/kind-badge/kind-badge.component.mjs +0 -76
  809. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +0 -41
  810. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +0 -19
  811. package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +0 -14
  812. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +0 -61
  813. package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +0 -78
  814. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +0 -128
  815. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +0 -82
  816. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +0 -45
  817. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +0 -71
  818. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +0 -142
  819. package/esm2022/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.mjs +0 -70
  820. package/esm2022/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.mjs +0 -165
  821. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +0 -96
  822. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +0 -59
  823. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +0 -77
  824. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +0 -21
  825. package/esm2022/libs/ui/inputs/src/index.mjs +0 -27
  826. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +0 -285
  827. package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +0 -44
  828. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +0 -62
  829. package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +0 -30
  830. package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +0 -35
  831. package/esm2022/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.mjs +0 -33
  832. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +0 -39
  833. package/esm2022/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.mjs +0 -65
  834. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +0 -44
  835. package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +0 -37
  836. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +0 -215
  837. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.mjs +0 -2
  838. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +0 -202
  839. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.mjs +0 -2
  840. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +0 -48
  841. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +0 -106
  842. package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +0 -59
  843. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.mjs +0 -43
  844. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.mjs +0 -2
  845. package/esm2022/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.mjs +0 -74
  846. package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +0 -46
  847. package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +0 -57
  848. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +0 -36
  849. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +0 -50
  850. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +0 -48
  851. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +0 -95
  852. package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +0 -46
  853. package/esm2022/libs/ui/layout/src/index.mjs +0 -20
  854. package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +0 -105
  855. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +0 -128
  856. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +0 -73
  857. package/esm2022/libs/ui/layout/src/lib/cell-popin/cell-popin.component.mjs +0 -110
  858. package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +0 -54
  859. package/esm2022/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.mjs +0 -25
  860. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +0 -20
  861. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.mjs +0 -38
  862. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +0 -67
  863. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +0 -70
  864. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +0 -29
  865. package/esm2022/libs/ui/layout/src/lib/paginable.interface.mjs +0 -2
  866. package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +0 -51
  867. package/esm2022/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.mjs +0 -52
  868. package/esm2022/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.mjs +0 -36
  869. package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +0 -26
  870. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +0 -35
  871. package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +0 -81
  872. package/esm2022/libs/ui/layout/src/lib/truncated-text/truncated-text.component.mjs +0 -71
  873. package/esm2022/libs/ui/map/src/index.mjs +0 -7
  874. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +0 -46
  875. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +0 -157
  876. package/esm2022/libs/ui/map/src/lib/components/map-container/map-settings.token.mjs +0 -13
  877. package/esm2022/libs/ui/map/src/lib/components/map-legend/map-legend.component.mjs +0 -36
  878. package/esm2022/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.mjs +0 -80
  879. package/esm2022/libs/ui/map/src/lib/map-utils.mjs +0 -37
  880. package/esm2022/libs/ui/search/src/index.mjs +0 -21
  881. package/esm2022/libs/ui/search/src/lib/facets/facet-block/facet-block.component.mjs +0 -109
  882. package/esm2022/libs/ui/search/src/lib/facets/facet-item/facet-item.component.mjs +0 -43
  883. package/esm2022/libs/ui/search/src/lib/facets/facet-list/facet-list.component.mjs +0 -51
  884. package/esm2022/libs/ui/search/src/lib/facets/facets.model.mjs +0 -2
  885. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +0 -50
  886. package/esm2022/libs/ui/search/src/lib/facets/fixtures/index.mjs +0 -2
  887. package/esm2022/libs/ui/search/src/lib/record-metric/record-metric.component.mjs +0 -26
  888. package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +0 -62
  889. package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +0 -14
  890. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +0 -68
  891. package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +0 -21
  892. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +0 -29
  893. package/esm2022/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.mjs +0 -14
  894. package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +0 -14
  895. package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +0 -18
  896. package/esm2022/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.mjs +0 -63
  897. package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +0 -29
  898. package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +0 -31
  899. package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +0 -54
  900. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +0 -76
  901. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +0 -219
  902. package/esm2022/libs/ui/widgets/src/index.mjs +0 -7
  903. package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +0 -11
  904. package/esm2022/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.mjs +0 -15
  905. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +0 -68
  906. package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +0 -62
  907. package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +0 -51
  908. package/esm2022/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.mjs +0 -11
  909. package/esm2022/libs/util/app-config/src/index.mjs +0 -5
  910. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +0 -216
  911. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +0 -164
  912. package/esm2022/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.mjs +0 -18
  913. package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +0 -33
  914. package/esm2022/libs/util/app-config/src/lib/model.mjs +0 -2
  915. package/esm2022/libs/util/app-config/src/lib/parse-utils.mjs +0 -89
  916. package/esm2022/libs/util/data-fetcher/src/index.mjs +0 -7
  917. package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +0 -70
  918. package/esm2022/libs/util/data-fetcher/src/lib/headers.mjs +0 -23
  919. package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +0 -62
  920. package/esm2022/libs/util/data-fetcher/src/lib/readers/base-cache.mjs +0 -12
  921. package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +0 -37
  922. package/esm2022/libs/util/data-fetcher/src/lib/readers/base.mjs +0 -62
  923. package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +0 -37
  924. package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +0 -24
  925. package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +0 -21
  926. package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +0 -38
  927. package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +0 -19
  928. package/esm2022/libs/util/data-fetcher/src/lib/readers/wfs.mjs +0 -133
  929. package/esm2022/libs/util/data-fetcher/src/lib/sql-utils.mjs +0 -93
  930. package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +0 -211
  931. package/esm2022/libs/util/i18n/src/index.mjs +0 -8
  932. package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +0 -18
  933. package/esm2022/libs/util/i18n/src/lib/file.translate.loader.mjs +0 -14
  934. package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +0 -52
  935. package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +0 -25
  936. package/esm2022/libs/util/i18n/src/lib/i18n.providers.mjs +0 -41
  937. package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +0 -141
  938. package/esm2022/libs/util/i18n/src/lib/translate.loader.utils.mjs +0 -8
  939. package/esm2022/libs/util/shared/src/index.mjs +0 -7
  940. package/esm2022/libs/util/shared/src/lib/gn-ui-version.mjs +0 -6
  941. package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +0 -28
  942. package/esm2022/libs/util/shared/src/lib/links/index.mjs +0 -3
  943. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +0 -68
  944. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +0 -306
  945. package/esm2022/libs/util/shared/src/lib/record/index.mjs +0 -3
  946. package/esm2022/libs/util/shared/src/lib/record/quality-score.util.mjs +0 -46
  947. package/esm2022/libs/util/shared/src/lib/record/record.util.mjs +0 -56
  948. package/esm2022/libs/util/shared/src/lib/services/date.service.mjs +0 -41
  949. package/esm2022/libs/util/shared/src/lib/services/index.mjs +0 -5
  950. package/esm2022/libs/util/shared/src/lib/services/log.service.mjs +0 -22
  951. package/esm2022/libs/util/shared/src/lib/services/proxy.service.mjs +0 -45
  952. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +0 -94
  953. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +0 -7
  954. package/esm2022/libs/util/shared/src/lib/utils/event.mjs +0 -12
  955. package/esm2022/libs/util/shared/src/lib/utils/format-fields.mjs +0 -9
  956. package/esm2022/libs/util/shared/src/lib/utils/fuzzy-filter.mjs +0 -27
  957. package/esm2022/libs/util/shared/src/lib/utils/geojson.mjs +0 -78
  958. package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +0 -60
  959. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +0 -16
  960. package/esm2022/libs/util/shared/src/lib/utils/mobile-screen.mjs +0 -9
  961. package/esm2022/libs/util/shared/src/lib/utils/no-duplicate-file-name.mjs +0 -19
  962. package/esm2022/libs/util/shared/src/lib/utils/parse.mjs +0 -33
  963. package/esm2022/libs/util/shared/src/lib/utils/remove-whitespace.mjs +0 -4
  964. package/esm2022/libs/util/shared/src/lib/utils/scroll.mjs +0 -40
  965. package/esm2022/libs/util/shared/src/lib/utils/sort-by.mjs +0 -14
  966. package/esm2022/libs/util/shared/src/lib/utils/strip-html.mjs +0 -7
  967. package/esm2022/libs/util/shared/src/lib/utils/temporal-extent-union.mjs +0 -32
  968. package/esm2022/libs/util/shared/src/lib/utils/url.mjs +0 -18
  969. package/esm2022/translations/de.json +0 -649
  970. package/esm2022/translations/en.json +0 -650
  971. package/esm2022/translations/es.json +0 -649
  972. package/esm2022/translations/fr.json +0 -649
  973. package/esm2022/translations/it.json +0 -649
  974. package/esm2022/translations/nl.json +0 -649
  975. package/esm2022/translations/pt.json +0 -649
  976. package/esm2022/translations/sk.json +0 -649
  977. package/geonetwork-ui.d.ts.map +0 -1
  978. package/libs/api/metadata-converter/src/index.d.ts +0 -9
  979. package/libs/api/metadata-converter/src/index.d.ts.map +0 -1
  980. package/libs/api/metadata-converter/src/lib/base.converter.d.ts +0 -13
  981. package/libs/api/metadata-converter/src/lib/base.converter.d.ts.map +0 -1
  982. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts +0 -4
  983. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +0 -1
  984. package/libs/api/metadata-converter/src/lib/common/license.d.ts +0 -3
  985. package/libs/api/metadata-converter/src/lib/common/license.d.ts.map +0 -1
  986. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +0 -26
  987. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +0 -1
  988. package/libs/api/metadata-converter/src/lib/common/url.d.ts +0 -7
  989. package/libs/api/metadata-converter/src/lib/common/url.d.ts.map +0 -1
  990. package/libs/api/metadata-converter/src/lib/convert-utils.d.ts +0 -2
  991. package/libs/api/metadata-converter/src/lib/convert-utils.d.ts.map +0 -1
  992. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +0 -13
  993. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +0 -1
  994. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts +0 -2
  995. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts.map +0 -1
  996. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts +0 -16
  997. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts.map +0 -1
  998. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +0 -21
  999. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +0 -1
  1000. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +0 -15
  1001. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +0 -1
  1002. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts +0 -8
  1003. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +0 -1
  1004. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts +0 -2
  1005. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts.map +0 -1
  1006. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts +0 -6
  1007. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +0 -1
  1008. package/libs/api/metadata-converter/src/lib/find-converter.d.ts +0 -3
  1009. package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +0 -1
  1010. package/libs/api/metadata-converter/src/lib/function-utils.d.ts +0 -27
  1011. package/libs/api/metadata-converter/src/lib/function-utils.d.ts.map +0 -1
  1012. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +0 -20
  1013. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +0 -1
  1014. package/libs/api/metadata-converter/src/lib/gn4/gn4.converter.d.ts +0 -16
  1015. package/libs/api/metadata-converter/src/lib/gn4/gn4.converter.d.ts.map +0 -1
  1016. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +0 -24
  1017. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +0 -1
  1018. package/libs/api/metadata-converter/src/lib/gn4/index.d.ts +0 -4
  1019. package/libs/api/metadata-converter/src/lib/gn4/index.d.ts.map +0 -1
  1020. package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts +0 -12
  1021. package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts.map +0 -1
  1022. package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts +0 -37
  1023. package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts.map +0 -1
  1024. package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts +0 -5
  1025. package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts.map +0 -1
  1026. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +0 -27
  1027. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +0 -1
  1028. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +0 -196
  1029. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +0 -1
  1030. package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts +0 -78
  1031. package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts.map +0 -1
  1032. package/libs/api/metadata-converter/src/lib/iso19115-3/index.d.ts +0 -2
  1033. package/libs/api/metadata-converter/src/lib/iso19115-3/index.d.ts.map +0 -1
  1034. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts +0 -9
  1035. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +0 -1
  1036. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +0 -24
  1037. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +0 -1
  1038. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +0 -23
  1039. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +0 -1
  1040. package/libs/api/metadata-converter/src/lib/iso19139/index.d.ts +0 -2
  1041. package/libs/api/metadata-converter/src/lib/iso19139/index.d.ts.map +0 -1
  1042. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts +0 -13
  1043. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +0 -1
  1044. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +0 -78
  1045. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +0 -1
  1046. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +0 -5
  1047. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +0 -1
  1048. package/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.d.ts +0 -8
  1049. package/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.d.ts.map +0 -1
  1050. package/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.d.ts +0 -3
  1051. package/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.d.ts.map +0 -1
  1052. package/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.d.ts +0 -3
  1053. package/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.d.ts.map +0 -1
  1054. package/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.d.ts +0 -3
  1055. package/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.d.ts.map +0 -1
  1056. package/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.d.ts +0 -3
  1057. package/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.d.ts.map +0 -1
  1058. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +0 -71
  1059. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +0 -1
  1060. package/libs/api/metadata-converter/src/lib/translate-utils.d.ts +0 -2
  1061. package/libs/api/metadata-converter/src/lib/translate-utils.d.ts.map +0 -1
  1062. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +0 -158
  1063. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +0 -1
  1064. package/libs/api/repository/src/index.d.ts +0 -4
  1065. package/libs/api/repository/src/index.d.ts.map +0 -1
  1066. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +0 -27
  1067. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +0 -1
  1068. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +0 -7
  1069. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +0 -1
  1070. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +0 -17
  1071. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +0 -1
  1072. package/libs/api/repository/src/lib/gn4/auth/index.d.ts +0 -4
  1073. package/libs/api/repository/src/lib/gn4/auth/index.d.ts.map +0 -1
  1074. package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts +0 -11
  1075. package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +0 -1
  1076. package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts +0 -4
  1077. package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts.map +0 -1
  1078. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +0 -74
  1079. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +0 -1
  1080. package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts +0 -4
  1081. package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts.map +0 -1
  1082. package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts +0 -20
  1083. package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts.map +0 -1
  1084. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +0 -69
  1085. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +0 -1
  1086. package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts +0 -7
  1087. package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts.map +0 -1
  1088. package/libs/api/repository/src/lib/gn4/index.d.ts +0 -11
  1089. package/libs/api/repository/src/lib/gn4/index.d.ts.map +0 -1
  1090. package/libs/api/repository/src/lib/gn4/organizations/index.d.ts +0 -5
  1091. package/libs/api/repository/src/lib/gn4/organizations/index.d.ts.map +0 -1
  1092. package/libs/api/repository/src/lib/gn4/organizations/organization-strategy.token.d.ts +0 -4
  1093. package/libs/api/repository/src/lib/gn4/organizations/organization-strategy.token.d.ts.map +0 -1
  1094. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +0 -29
  1095. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +0 -1
  1096. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +0 -40
  1097. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +0 -1
  1098. package/libs/api/repository/src/lib/gn4/organizations/organizations-service.factory.d.ts +0 -9
  1099. package/libs/api/repository/src/lib/gn4/organizations/organizations-service.factory.d.ts.map +0 -1
  1100. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +0 -20
  1101. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +0 -1
  1102. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +0 -68
  1103. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +0 -1
  1104. package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts +0 -17
  1105. package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts.map +0 -1
  1106. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +0 -15
  1107. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +0 -1
  1108. package/libs/api/repository/src/lib/metadata-language.token.d.ts +0 -5
  1109. package/libs/api/repository/src/lib/metadata-language.token.d.ts.map +0 -1
  1110. package/libs/api/repository/src/lib/repository-url.d.ts +0 -3
  1111. package/libs/api/repository/src/lib/repository-url.d.ts.map +0 -1
  1112. package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts +0 -17
  1113. package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts.map +0 -1
  1114. package/libs/common/domain/src/lib/model/error/index.d.ts +0 -2
  1115. package/libs/common/domain/src/lib/model/error/index.d.ts.map +0 -1
  1116. package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts +0 -5
  1117. package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts.map +0 -1
  1118. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +0 -15
  1119. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +0 -1
  1120. package/libs/common/domain/src/lib/model/record/index.d.ts +0 -6
  1121. package/libs/common/domain/src/lib/model/record/index.d.ts.map +0 -1
  1122. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +0 -182
  1123. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +0 -1
  1124. package/libs/common/domain/src/lib/model/record/organization.model.d.ts +0 -11
  1125. package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +0 -1
  1126. package/libs/common/domain/src/lib/model/record/translation.model.d.ts +0 -26
  1127. package/libs/common/domain/src/lib/model/record/translation.model.d.ts.map +0 -1
  1128. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts +0 -15
  1129. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts.map +0 -1
  1130. package/libs/common/domain/src/lib/model/search/aggregation.model.d.ts +0 -44
  1131. package/libs/common/domain/src/lib/model/search/aggregation.model.d.ts.map +0 -1
  1132. package/libs/common/domain/src/lib/model/search/field.model.d.ts +0 -2
  1133. package/libs/common/domain/src/lib/model/search/field.model.d.ts.map +0 -1
  1134. package/libs/common/domain/src/lib/model/search/filter.model.d.ts +0 -21
  1135. package/libs/common/domain/src/lib/model/search/filter.model.d.ts.map +0 -1
  1136. package/libs/common/domain/src/lib/model/search/index.d.ts +0 -6
  1137. package/libs/common/domain/src/lib/model/search/index.d.ts.map +0 -1
  1138. package/libs/common/domain/src/lib/model/search/search.model.d.ts +0 -20
  1139. package/libs/common/domain/src/lib/model/search/search.model.d.ts.map +0 -1
  1140. package/libs/common/domain/src/lib/model/search/sort-by.model.d.ts +0 -3
  1141. package/libs/common/domain/src/lib/model/search/sort-by.model.d.ts.map +0 -1
  1142. package/libs/common/domain/src/lib/model/thesaurus/index.d.ts +0 -2
  1143. package/libs/common/domain/src/lib/model/thesaurus/index.d.ts.map +0 -1
  1144. package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts +0 -14
  1145. package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts.map +0 -1
  1146. package/libs/common/domain/src/lib/model/user/index.d.ts +0 -2
  1147. package/libs/common/domain/src/lib/model/user/index.d.ts.map +0 -1
  1148. package/libs/common/domain/src/lib/model/user/user.model.d.ts +0 -11
  1149. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +0 -1
  1150. package/libs/common/domain/src/lib/organizations.service.interface.d.ts +0 -11
  1151. package/libs/common/domain/src/lib/organizations.service.interface.d.ts.map +0 -1
  1152. package/libs/common/domain/src/lib/platform.service.interface.d.ts +0 -39
  1153. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +0 -1
  1154. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +0 -74
  1155. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +0 -1
  1156. package/libs/data-access/gn4/src/fixtures/index.d.ts +0 -3
  1157. package/libs/data-access/gn4/src/fixtures/index.d.ts.map +0 -1
  1158. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +0 -61
  1159. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +0 -1
  1160. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +0 -5
  1161. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +0 -1
  1162. package/libs/data-access/gn4/src/index.d.ts +0 -3
  1163. package/libs/data-access/gn4/src/index.d.ts.map +0 -1
  1164. package/libs/data-access/gn4/src/openapi/api/api.d.ts +0 -66
  1165. package/libs/data-access/gn4/src/openapi/api/api.d.ts.map +0 -1
  1166. package/libs/data-access/gn4/src/openapi/api/atom.api.service.d.ts +0 -97
  1167. package/libs/data-access/gn4/src/openapi/api/atom.api.service.d.ts.map +0 -1
  1168. package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts +0 -54
  1169. package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts.map +0 -1
  1170. package/libs/data-access/gn4/src/openapi/api/formatters.api.service.d.ts +0 -150
  1171. package/libs/data-access/gn4/src/openapi/api/formatters.api.service.d.ts.map +0 -1
  1172. package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts +0 -132
  1173. package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts.map +0 -1
  1174. package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts +0 -49
  1175. package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts.map +0 -1
  1176. package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts +0 -80
  1177. package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts.map +0 -1
  1178. package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts +0 -96
  1179. package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts.map +0 -1
  1180. package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts +0 -128
  1181. package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts.map +0 -1
  1182. package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts +0 -78
  1183. package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts.map +0 -1
  1184. package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts +0 -170
  1185. package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts.map +0 -1
  1186. package/libs/data-access/gn4/src/openapi/api/mapservices.api.service.d.ts +0 -33
  1187. package/libs/data-access/gn4/src/openapi/api/mapservices.api.service.d.ts.map +0 -1
  1188. package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts +0 -33
  1189. package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts.map +0 -1
  1190. package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts +0 -33
  1191. package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts.map +0 -1
  1192. package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts +0 -186
  1193. package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts.map +0 -1
  1194. package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts +0 -157
  1195. package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts.map +0 -1
  1196. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +0 -1879
  1197. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +0 -1
  1198. package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts +0 -72
  1199. package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts.map +0 -1
  1200. package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts +0 -391
  1201. package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts.map +0 -1
  1202. package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts +0 -42
  1203. package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts.map +0 -1
  1204. package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts +0 -53
  1205. package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts.map +0 -1
  1206. package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts +0 -84
  1207. package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts.map +0 -1
  1208. package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts +0 -396
  1209. package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts.map +0 -1
  1210. package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts +0 -96
  1211. package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts.map +0 -1
  1212. package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts +0 -195
  1213. package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts.map +0 -1
  1214. package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts +0 -61
  1215. package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts.map +0 -1
  1216. package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts +0 -94
  1217. package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts.map +0 -1
  1218. package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts +0 -302
  1219. package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts.map +0 -1
  1220. package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts +0 -93
  1221. package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts.map +0 -1
  1222. package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts +0 -172
  1223. package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts.map +0 -1
  1224. package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts +0 -262
  1225. package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts.map +0 -1
  1226. package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts +0 -144
  1227. package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts.map +0 -1
  1228. package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts +0 -128
  1229. package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts.map +0 -1
  1230. package/libs/data-access/gn4/src/openapi/api.module.d.ts +0 -12
  1231. package/libs/data-access/gn4/src/openapi/api.module.d.ts.map +0 -1
  1232. package/libs/data-access/gn4/src/openapi/configuration.d.ts +0 -81
  1233. package/libs/data-access/gn4/src/openapi/configuration.d.ts.map +0 -1
  1234. package/libs/data-access/gn4/src/openapi/encoder.d.ts +0 -12
  1235. package/libs/data-access/gn4/src/openapi/encoder.d.ts.map +0 -1
  1236. package/libs/data-access/gn4/src/openapi/index.d.ts +0 -6
  1237. package/libs/data-access/gn4/src/openapi/index.d.ts.map +0 -1
  1238. package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts +0 -20
  1239. package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts.map +0 -1
  1240. package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts +0 -29
  1241. package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts.map +0 -1
  1242. package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts +0 -16
  1243. package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts.map +0 -1
  1244. package/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.d.ts +0 -21
  1245. package/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.d.ts.map +0 -1
  1246. package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts +0 -26
  1247. package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts.map +0 -1
  1248. package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts +0 -16
  1249. package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts.map +0 -1
  1250. package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts +0 -17
  1251. package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts.map +0 -1
  1252. package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts +0 -16
  1253. package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts.map +0 -1
  1254. package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts +0 -16
  1255. package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts.map +0 -1
  1256. package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts +0 -17
  1257. package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts.map +0 -1
  1258. package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts +0 -16
  1259. package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts.map +0 -1
  1260. package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts +0 -18
  1261. package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts.map +0 -1
  1262. package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts +0 -19
  1263. package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts.map +0 -1
  1264. package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts +0 -16
  1265. package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts.map +0 -1
  1266. package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts +0 -16
  1267. package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts.map +0 -1
  1268. package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts +0 -21
  1269. package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts.map +0 -1
  1270. package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts +0 -18
  1271. package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts.map +0 -1
  1272. package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts +0 -18
  1273. package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts.map +0 -1
  1274. package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts +0 -25
  1275. package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts.map +0 -1
  1276. package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts +0 -16
  1277. package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts.map +0 -1
  1278. package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts +0 -17
  1279. package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts.map +0 -1
  1280. package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts +0 -16
  1281. package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts.map +0 -1
  1282. package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts +0 -22
  1283. package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts.map +0 -1
  1284. package/libs/data-access/gn4/src/openapi/model/formatterData.api.model.d.ts +0 -16
  1285. package/libs/data-access/gn4/src/openapi/model/formatterData.api.model.d.ts.map +0 -1
  1286. package/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.d.ts +0 -16
  1287. package/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.d.ts.map +0 -1
  1288. package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts +0 -15
  1289. package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts.map +0 -1
  1290. package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts +0 -32
  1291. package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts.map +0 -1
  1292. package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts +0 -18
  1293. package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts.map +0 -1
  1294. package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts +0 -44
  1295. package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts.map +0 -1
  1296. package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts +0 -16
  1297. package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts.map +0 -1
  1298. package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts +0 -16
  1299. package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts.map +0 -1
  1300. package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts +0 -21
  1301. package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts.map +0 -1
  1302. package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts +0 -29
  1303. package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts.map +0 -1
  1304. package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts +0 -19
  1305. package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts.map +0 -1
  1306. package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts +0 -18
  1307. package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts.map +0 -1
  1308. package/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.d.ts +0 -18
  1309. package/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.d.ts.map +0 -1
  1310. package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts +0 -20
  1311. package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts.map +0 -1
  1312. package/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.d.ts +0 -15
  1313. package/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.d.ts.map +0 -1
  1314. package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts +0 -50
  1315. package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts.map +0 -1
  1316. package/libs/data-access/gn4/src/openapi/model/language.api.model.d.ts +0 -18
  1317. package/libs/data-access/gn4/src/openapi/model/language.api.model.d.ts.map +0 -1
  1318. package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts +0 -32
  1319. package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +0 -1
  1320. package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts +0 -21
  1321. package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts.map +0 -1
  1322. package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts +0 -22
  1323. package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts.map +0 -1
  1324. package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts +0 -17
  1325. package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts.map +0 -1
  1326. package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts +0 -16
  1327. package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts.map +0 -1
  1328. package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts +0 -31
  1329. package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts.map +0 -1
  1330. package/libs/data-access/gn4/src/openapi/model/mapService.api.model.d.ts +0 -18
  1331. package/libs/data-access/gn4/src/openapi/model/mapService.api.model.d.ts.map +0 -1
  1332. package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts +0 -27
  1333. package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts.map +0 -1
  1334. package/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.d.ts +0 -18
  1335. package/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.d.ts.map +0 -1
  1336. package/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.d.ts +0 -17
  1337. package/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.d.ts.map +0 -1
  1338. package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts +0 -19
  1339. package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts.map +0 -1
  1340. package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts +0 -23
  1341. package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts.map +0 -1
  1342. package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts +0 -16
  1343. package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts.map +0 -1
  1344. package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts +0 -40
  1345. package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts.map +0 -1
  1346. package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts +0 -48
  1347. package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts.map +0 -1
  1348. package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts +0 -33
  1349. package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +0 -1
  1350. package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts +0 -25
  1351. package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts.map +0 -1
  1352. package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts +0 -31
  1353. package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts.map +0 -1
  1354. package/libs/data-access/gn4/src/openapi/model/models.d.ts +0 -119
  1355. package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +0 -1
  1356. package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts +0 -16
  1357. package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts.map +0 -1
  1358. package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts +0 -16
  1359. package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts.map +0 -1
  1360. package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts +0 -32
  1361. package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +0 -1
  1362. package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts +0 -17
  1363. package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts.map +0 -1
  1364. package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts +0 -28
  1365. package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts.map +0 -1
  1366. package/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.d.ts +0 -48
  1367. package/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.d.ts.map +0 -1
  1368. package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts +0 -21
  1369. package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts.map +0 -1
  1370. package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts +0 -17
  1371. package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts.map +0 -1
  1372. package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts +0 -16
  1373. package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts.map +0 -1
  1374. package/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.d.ts +0 -17
  1375. package/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.d.ts.map +0 -1
  1376. package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts +0 -19
  1377. package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts.map +0 -1
  1378. package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts +0 -25
  1379. package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts.map +0 -1
  1380. package/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.d.ts +0 -21
  1381. package/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.d.ts.map +0 -1
  1382. package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts +0 -46
  1383. package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts.map +0 -1
  1384. package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts +0 -20
  1385. package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts.map +0 -1
  1386. package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts +0 -20
  1387. package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts.map +0 -1
  1388. package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts +0 -24
  1389. package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts.map +0 -1
  1390. package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts +0 -16
  1391. package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts.map +0 -1
  1392. package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts +0 -25
  1393. package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts.map +0 -1
  1394. package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts +0 -23
  1395. package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts.map +0 -1
  1396. package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts +0 -40
  1397. package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts.map +0 -1
  1398. package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts +0 -25
  1399. package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts.map +0 -1
  1400. package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts +0 -19
  1401. package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts.map +0 -1
  1402. package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts +0 -17
  1403. package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts.map +0 -1
  1404. package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts +0 -21
  1405. package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts.map +0 -1
  1406. package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts +0 -19
  1407. package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts.map +0 -1
  1408. package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts +0 -16
  1409. package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts.map +0 -1
  1410. package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts +0 -19
  1411. package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts.map +0 -1
  1412. package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts +0 -17
  1413. package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts.map +0 -1
  1414. package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts +0 -20
  1415. package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts.map +0 -1
  1416. package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts +0 -16
  1417. package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts.map +0 -1
  1418. package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts +0 -34
  1419. package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +0 -1
  1420. package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts +0 -16
  1421. package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts.map +0 -1
  1422. package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts +0 -20
  1423. package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts.map +0 -1
  1424. package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts +0 -18
  1425. package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts.map +0 -1
  1426. package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts +0 -16
  1427. package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts.map +0 -1
  1428. package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts +0 -40
  1429. package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts.map +0 -1
  1430. package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts +0 -29
  1431. package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts.map +0 -1
  1432. package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts +0 -17
  1433. package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts.map +0 -1
  1434. package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts +0 -16
  1435. package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts.map +0 -1
  1436. package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts +0 -28
  1437. package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts.map +0 -1
  1438. package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts +0 -46
  1439. package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +0 -1
  1440. package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts +0 -21
  1441. package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts.map +0 -1
  1442. package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts +0 -24
  1443. package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts.map +0 -1
  1444. package/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.d.ts +0 -29
  1445. package/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.d.ts.map +0 -1
  1446. package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts +0 -16
  1447. package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts.map +0 -1
  1448. package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts +0 -18
  1449. package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts.map +0 -1
  1450. package/libs/data-access/gn4/src/openapi/model/translations.api.model.d.ts +0 -18
  1451. package/libs/data-access/gn4/src/openapi/model/translations.api.model.d.ts.map +0 -1
  1452. package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts +0 -16
  1453. package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts.map +0 -1
  1454. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +0 -47
  1455. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +0 -1
  1456. package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts +0 -31
  1457. package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts.map +0 -1
  1458. package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts +0 -34
  1459. package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts.map +0 -1
  1460. package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts +0 -33
  1461. package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +0 -1
  1462. package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts +0 -29
  1463. package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +0 -1
  1464. package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts +0 -19
  1465. package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts.map +0 -1
  1466. package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts +0 -26
  1467. package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts.map +0 -1
  1468. package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts +0 -28
  1469. package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts.map +0 -1
  1470. package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts +0 -25
  1471. package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +0 -1
  1472. package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts +0 -17
  1473. package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts.map +0 -1
  1474. package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts +0 -42
  1475. package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts.map +0 -1
  1476. package/libs/data-access/gn4/src/openapi/variables.d.ts +0 -9
  1477. package/libs/data-access/gn4/src/openapi/variables.d.ts.map +0 -1
  1478. package/libs/feature/catalog/src/index.d.ts +0 -9
  1479. package/libs/feature/catalog/src/index.d.ts.map +0 -1
  1480. package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts +0 -20
  1481. package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts.map +0 -1
  1482. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +0 -38
  1483. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +0 -1
  1484. package/libs/feature/catalog/src/lib/organization-url.token.d.ts +0 -4
  1485. package/libs/feature/catalog/src/lib/organization-url.token.d.ts.map +0 -1
  1486. package/libs/feature/catalog/src/lib/records/records.service.d.ts +0 -11
  1487. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +0 -1
  1488. package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts +0 -11
  1489. package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts.map +0 -1
  1490. package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts +0 -12
  1491. package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts.map +0 -1
  1492. package/libs/feature/catalog/src/lib/sources/sources.model.d.ts +0 -8
  1493. package/libs/feature/catalog/src/lib/sources/sources.model.d.ts.map +0 -1
  1494. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +0 -15
  1495. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +0 -1
  1496. package/libs/feature/dataviz/src/index.d.ts +0 -6
  1497. package/libs/feature/dataviz/src/index.d.ts.map +0 -1
  1498. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +0 -60
  1499. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +0 -1
  1500. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts +0 -19
  1501. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +0 -1
  1502. package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts +0 -10
  1503. package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts.map +0 -1
  1504. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +0 -30
  1505. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +0 -1
  1506. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +0 -40
  1507. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +0 -1
  1508. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +0 -26
  1509. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +0 -1
  1510. package/libs/feature/editor/src/index.d.ts +0 -13
  1511. package/libs/feature/editor/src/index.d.ts.map +0 -1
  1512. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +0 -73
  1513. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +0 -1
  1514. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +0 -35
  1515. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +0 -1
  1516. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +0 -36
  1517. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +0 -1
  1518. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +0 -10
  1519. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +0 -1
  1520. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +0 -34
  1521. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +0 -1
  1522. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +0 -21
  1523. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +0 -1
  1524. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts +0 -16
  1525. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +0 -1
  1526. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +0 -8
  1527. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +0 -1
  1528. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +0 -33
  1529. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +0 -1
  1530. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +0 -33
  1531. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +0 -1
  1532. package/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.d.ts +0 -19
  1533. package/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.d.ts.map +0 -1
  1534. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts +0 -52
  1535. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts.map +0 -1
  1536. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +0 -15
  1537. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +0 -1
  1538. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +0 -59
  1539. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +0 -1
  1540. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts +0 -6
  1541. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
  1542. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts +0 -18
  1543. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +0 -1
  1544. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts +0 -6
  1545. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts.map +0 -1
  1546. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.d.ts +0 -32
  1547. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.d.ts.map +0 -1
  1548. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts +0 -38
  1549. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +0 -1
  1550. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +0 -42
  1551. 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 +0 -1
  1552. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts +0 -9
  1553. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts.map +0 -1
  1554. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts +0 -11
  1555. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
  1556. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +0 -17
  1557. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +0 -1
  1558. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +0 -20
  1559. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +0 -1
  1560. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts +0 -6
  1561. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
  1562. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +0 -35
  1563. 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 +0 -1
  1564. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts +0 -43
  1565. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +0 -1
  1566. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +0 -31
  1567. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +0 -1
  1568. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +0 -14
  1569. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
  1570. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +0 -13
  1571. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
  1572. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +0 -30
  1573. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
  1574. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.d.ts +0 -14
  1575. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.d.ts.map +0 -1
  1576. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +0 -25
  1577. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +0 -1
  1578. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.d.ts +0 -20
  1579. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.d.ts.map +0 -1
  1580. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +0 -21
  1581. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +0 -1
  1582. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +0 -31
  1583. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +0 -1
  1584. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +0 -14
  1585. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +0 -1
  1586. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +0 -16
  1587. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +0 -1
  1588. package/libs/feature/editor/src/lib/expressions.d.ts +0 -4
  1589. package/libs/feature/editor/src/lib/expressions.d.ts.map +0 -1
  1590. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +0 -9
  1591. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +0 -1
  1592. package/libs/feature/editor/src/lib/fields.config.d.ts +0 -72
  1593. package/libs/feature/editor/src/lib/fields.config.d.ts.map +0 -1
  1594. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +0 -45
  1595. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +0 -1
  1596. package/libs/feature/editor/src/lib/models/index.d.ts +0 -2
  1597. package/libs/feature/editor/src/lib/models/index.d.ts.map +0 -1
  1598. package/libs/feature/editor/src/lib/services/editor.service.d.ts +0 -19
  1599. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +0 -1
  1600. package/libs/feature/map/src/index.d.ts +0 -14
  1601. package/libs/feature/map/src/index.d.ts.map +0 -1
  1602. package/libs/feature/map/src/lib/+state/map.actions.d.ts +0 -14
  1603. package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +0 -1
  1604. package/libs/feature/map/src/lib/+state/map.facade.d.ts +0 -18
  1605. package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +0 -1
  1606. package/libs/feature/map/src/lib/+state/map.reducer.d.ts +0 -14
  1607. package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +0 -1
  1608. package/libs/feature/map/src/lib/+state/map.selectors.d.ts +0 -9
  1609. package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +0 -1
  1610. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +0 -11
  1611. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +0 -1
  1612. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +0 -21
  1613. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +0 -1
  1614. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +0 -22
  1615. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +0 -1
  1616. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +0 -28
  1617. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +0 -1
  1618. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +0 -22
  1619. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +0 -1
  1620. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +0 -22
  1621. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +0 -1
  1622. package/libs/feature/map/src/lib/constant/index.d.ts +0 -2
  1623. package/libs/feature/map/src/lib/constant/index.d.ts.map +0 -1
  1624. package/libs/feature/map/src/lib/constant/projections.d.ts +0 -2
  1625. package/libs/feature/map/src/lib/constant/projections.d.ts.map +0 -1
  1626. package/libs/feature/map/src/lib/feature-map.module.d.ts +0 -8
  1627. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +0 -1
  1628. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +0 -25
  1629. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +0 -1
  1630. package/libs/feature/map/src/lib/geocoding.service.d.ts +0 -18
  1631. package/libs/feature/map/src/lib/geocoding.service.d.ts.map +0 -1
  1632. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +0 -14
  1633. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +0 -1
  1634. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts +0 -14
  1635. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts.map +0 -1
  1636. package/libs/feature/map/src/lib/style/index.d.ts +0 -3
  1637. package/libs/feature/map/src/lib/style/index.d.ts.map +0 -1
  1638. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +0 -4
  1639. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +0 -1
  1640. package/libs/feature/map/src/lib/style/map-style.service.d.ts +0 -24
  1641. package/libs/feature/map/src/lib/style/map-style.service.d.ts.map +0 -1
  1642. package/libs/feature/map/src/lib/utils/index.d.ts +0 -2
  1643. package/libs/feature/map/src/lib/utils/index.d.ts.map +0 -1
  1644. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +0 -9
  1645. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +0 -1
  1646. package/libs/feature/notifications/src/index.d.ts +0 -3
  1647. package/libs/feature/notifications/src/index.d.ts.map +0 -1
  1648. package/libs/feature/notifications/src/lib/notification.model.d.ts +0 -7
  1649. package/libs/feature/notifications/src/lib/notification.model.d.ts.map +0 -1
  1650. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +0 -12
  1651. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +0 -1
  1652. package/libs/feature/notifications/src/lib/notifications.service.d.ts +0 -15
  1653. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +0 -1
  1654. package/libs/feature/record/src/index.d.ts +0 -11
  1655. package/libs/feature/record/src/index.d.ts.map +0 -1
  1656. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +0 -43
  1657. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +0 -1
  1658. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +0 -18
  1659. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +0 -1
  1660. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +0 -11
  1661. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +0 -1
  1662. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +0 -15
  1663. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +0 -1
  1664. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +0 -20
  1665. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +0 -1
  1666. package/libs/feature/record/src/lib/feature-record.module.d.ts +0 -10
  1667. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +0 -1
  1668. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts +0 -74
  1669. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +0 -1
  1670. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts +0 -19
  1671. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +0 -1
  1672. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +0 -65
  1673. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +0 -1
  1674. package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts +0 -14
  1675. package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts.map +0 -1
  1676. package/libs/feature/record/src/lib/state/index.d.ts +0 -3
  1677. package/libs/feature/record/src/lib/state/index.d.ts.map +0 -1
  1678. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +0 -95
  1679. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +0 -1
  1680. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +0 -53
  1681. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +0 -1
  1682. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +0 -64
  1683. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +0 -1
  1684. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +0 -25
  1685. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +0 -1
  1686. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +0 -23
  1687. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +0 -1
  1688. package/libs/feature/router/src/index.d.ts +0 -2
  1689. package/libs/feature/router/src/index.d.ts.map +0 -1
  1690. package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts +0 -10
  1691. package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts.map +0 -1
  1692. package/libs/feature/router/src/lib/default/constants.d.ts +0 -14
  1693. package/libs/feature/router/src/lib/default/constants.d.ts.map +0 -1
  1694. package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts +0 -12
  1695. package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts.map +0 -1
  1696. package/libs/feature/router/src/lib/default/index.d.ts +0 -9
  1697. package/libs/feature/router/src/lib/default/index.d.ts.map +0 -1
  1698. package/libs/feature/router/src/lib/default/router.config.d.ts +0 -11
  1699. package/libs/feature/router/src/lib/default/router.config.d.ts.map +0 -1
  1700. package/libs/feature/router/src/lib/default/router.module.d.ts +0 -16
  1701. package/libs/feature/router/src/lib/default/router.module.d.ts.map +0 -1
  1702. package/libs/feature/router/src/lib/default/router.service.d.ts +0 -15
  1703. package/libs/feature/router/src/lib/default/router.service.d.ts.map +0 -1
  1704. package/libs/feature/router/src/lib/default/services/router-search.service.d.ts +0 -18
  1705. package/libs/feature/router/src/lib/default/services/router-search.service.d.ts.map +0 -1
  1706. package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts +0 -4
  1707. package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts.map +0 -1
  1708. package/libs/feature/router/src/lib/default/state/router.actions.d.ts +0 -10
  1709. package/libs/feature/router/src/lib/default/state/router.actions.d.ts.map +0 -1
  1710. package/libs/feature/router/src/lib/default/state/router.effects.d.ts +0 -34
  1711. package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +0 -1
  1712. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +0 -30
  1713. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +0 -1
  1714. package/libs/feature/router/src/lib/default/state/router.selectors.d.ts +0 -4
  1715. package/libs/feature/router/src/lib/default/state/router.selectors.d.ts.map +0 -1
  1716. package/libs/feature/search/src/index.d.ts +0 -26
  1717. package/libs/feature/search/src/index.d.ts.map +0 -1
  1718. package/libs/feature/search/src/lib/constants.d.ts +0 -6
  1719. package/libs/feature/search/src/lib/constants.d.ts.map +0 -1
  1720. package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts +0 -22
  1721. package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts.map +0 -1
  1722. package/libs/feature/search/src/lib/facets/facets.service.d.ts +0 -49
  1723. package/libs/feature/search/src/lib/facets/facets.service.d.ts.map +0 -1
  1724. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +0 -37
  1725. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +0 -1
  1726. package/libs/feature/search/src/lib/feature-search.module.d.ts +0 -9
  1727. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +0 -1
  1728. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +0 -29
  1729. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +0 -1
  1730. package/libs/feature/search/src/lib/filter-geometry.token.d.ts +0 -4
  1731. package/libs/feature/search/src/lib/filter-geometry.token.d.ts.map +0 -1
  1732. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +0 -41
  1733. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +0 -1
  1734. package/libs/feature/search/src/lib/record-url.token.d.ts +0 -5
  1735. package/libs/feature/search/src/lib/record-url.token.d.ts.map +0 -1
  1736. package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts +0 -19
  1737. package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts.map +0 -1
  1738. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts +0 -22
  1739. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts.map +0 -1
  1740. package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts +0 -16
  1741. package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts.map +0 -1
  1742. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +0 -36
  1743. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +0 -1
  1744. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +0 -38
  1745. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +0 -1
  1746. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +0 -21
  1747. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +0 -1
  1748. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts +0 -34
  1749. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +0 -1
  1750. package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts +0 -22
  1751. package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +0 -1
  1752. package/libs/feature/search/src/lib/state/actions.d.ts +0 -162
  1753. package/libs/feature/search/src/lib/state/actions.d.ts.map +0 -1
  1754. package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts +0 -12
  1755. package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts.map +0 -1
  1756. package/libs/feature/search/src/lib/state/effects.d.ts +0 -27
  1757. package/libs/feature/search/src/lib/state/effects.d.ts.map +0 -1
  1758. package/libs/feature/search/src/lib/state/reducer.d.ts +0 -41
  1759. package/libs/feature/search/src/lib/state/reducer.d.ts.map +0 -1
  1760. package/libs/feature/search/src/lib/state/search.facade.d.ts +0 -52
  1761. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +0 -1
  1762. package/libs/feature/search/src/lib/state/selectors.d.ts +0 -24
  1763. package/libs/feature/search/src/lib/state/selectors.d.ts.map +0 -1
  1764. package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts +0 -11
  1765. package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts.map +0 -1
  1766. package/libs/feature/search/src/lib/utils/service/fields.d.ts +0 -135
  1767. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +0 -1
  1768. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +0 -22
  1769. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +0 -1
  1770. package/libs/feature/search/src/lib/utils/service/search.service.d.ts +0 -23
  1771. package/libs/feature/search/src/lib/utils/service/search.service.d.ts.map +0 -1
  1772. package/libs/ui/catalog/src/index.d.ts +0 -6
  1773. package/libs/ui/catalog/src/index.d.ts.map +0 -1
  1774. package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts +0 -9
  1775. package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts.map +0 -1
  1776. package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts +0 -18
  1777. package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +0 -1
  1778. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +0 -12
  1779. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +0 -1
  1780. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +0 -18
  1781. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +0 -1
  1782. package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts +0 -8
  1783. package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts.map +0 -1
  1784. package/libs/ui/dataviz/src/index.d.ts +0 -5
  1785. package/libs/ui/dataviz/src/index.d.ts.map +0 -1
  1786. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +0 -30
  1787. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +0 -1
  1788. package/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.d.ts +0 -14
  1789. package/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.d.ts.map +0 -1
  1790. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts +0 -50
  1791. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts.map +0 -1
  1792. package/libs/ui/dataviz/src/lib/data-table/data-table.data.source.d.ts +0 -12
  1793. package/libs/ui/dataviz/src/lib/data-table/data-table.data.source.d.ts.map +0 -1
  1794. package/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.d.ts +0 -10
  1795. package/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.d.ts.map +0 -1
  1796. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +0 -13
  1797. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +0 -1
  1798. package/libs/ui/elements/src/index.d.ts +0 -29
  1799. package/libs/ui/elements/src/index.d.ts.map +0 -1
  1800. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +0 -24
  1801. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +0 -1
  1802. package/libs/ui/elements/src/lib/application-banner/application-banner.component.d.ts +0 -16
  1803. package/libs/ui/elements/src/lib/application-banner/application-banner.component.d.ts.map +0 -1
  1804. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +0 -9
  1805. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +0 -1
  1806. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +0 -20
  1807. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +0 -1
  1808. package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts +0 -8
  1809. package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts.map +0 -1
  1810. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +0 -21
  1811. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +0 -1
  1812. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +0 -32
  1813. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +0 -1
  1814. package/libs/ui/elements/src/lib/error/error.component.d.ts +0 -18
  1815. package/libs/ui/elements/src/lib/error/error.component.d.ts.map +0 -1
  1816. package/libs/ui/elements/src/lib/external-link-card/external-link-card.component.d.ts +0 -18
  1817. package/libs/ui/elements/src/lib/external-link-card/external-link-card.component.d.ts.map +0 -1
  1818. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts +0 -16
  1819. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts.map +0 -1
  1820. package/libs/ui/elements/src/lib/image-input/image-input.component.d.ts +0 -46
  1821. package/libs/ui/elements/src/lib/image-input/image-input.component.d.ts.map +0 -1
  1822. package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts +0 -10
  1823. package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts.map +0 -1
  1824. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts +0 -30
  1825. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts.map +0 -1
  1826. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts +0 -14
  1827. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts.map +0 -1
  1828. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +0 -13
  1829. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +0 -1
  1830. package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts +0 -9
  1831. package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts.map +0 -1
  1832. package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts +0 -7
  1833. package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts.map +0 -1
  1834. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +0 -15
  1835. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +0 -1
  1836. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +0 -15
  1837. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +0 -1
  1838. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +0 -33
  1839. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +0 -1
  1840. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -21
  1841. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +0 -1
  1842. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +0 -14
  1843. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +0 -1
  1844. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +0 -14
  1845. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +0 -1
  1846. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +0 -33
  1847. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +0 -1
  1848. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts +0 -27
  1849. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts.map +0 -1
  1850. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts +0 -31
  1851. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts.map +0 -1
  1852. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +0 -29
  1853. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +0 -1
  1854. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts +0 -11
  1855. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts.map +0 -1
  1856. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +0 -21
  1857. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +0 -1
  1858. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +0 -10
  1859. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +0 -1
  1860. package/libs/ui/inputs/src/index.d.ts +0 -27
  1861. package/libs/ui/inputs/src/index.d.ts.map +0 -1
  1862. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +0 -74
  1863. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +0 -1
  1864. package/libs/ui/inputs/src/lib/badge/badge.component.d.ts +0 -11
  1865. package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +0 -1
  1866. package/libs/ui/inputs/src/lib/button/button.component.d.ts +0 -14
  1867. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +0 -1
  1868. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +0 -13
  1869. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +0 -1
  1870. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +0 -13
  1871. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +0 -1
  1872. package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts +0 -11
  1873. package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts.map +0 -1
  1874. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts +0 -9
  1875. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +0 -1
  1876. package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts +0 -20
  1877. package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts.map +0 -1
  1878. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +0 -11
  1879. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +0 -1
  1880. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +0 -14
  1881. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +0 -1
  1882. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +0 -46
  1883. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +0 -1
  1884. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts +0 -5
  1885. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts.map +0 -1
  1886. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +0 -41
  1887. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +0 -1
  1888. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts +0 -5
  1889. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts.map +0 -1
  1890. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +0 -15
  1891. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +0 -1
  1892. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +0 -25
  1893. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +0 -1
  1894. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts +0 -14
  1895. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts.map +0 -1
  1896. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts +0 -14
  1897. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts.map +0 -1
  1898. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts +0 -6
  1899. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts.map +0 -1
  1900. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts +0 -18
  1901. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts.map +0 -1
  1902. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +0 -13
  1903. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +0 -1
  1904. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +0 -13
  1905. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +0 -1
  1906. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +0 -18
  1907. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +0 -1
  1908. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -19
  1909. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +0 -1
  1910. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +0 -19
  1911. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +0 -1
  1912. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +0 -25
  1913. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +0 -1
  1914. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +0 -18
  1915. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +0 -1
  1916. package/libs/ui/layout/src/index.d.ts +0 -20
  1917. package/libs/ui/layout/src/index.d.ts.map +0 -1
  1918. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +0 -26
  1919. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +0 -1
  1920. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +0 -35
  1921. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +0 -1
  1922. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +0 -27
  1923. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +0 -1
  1924. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts +0 -28
  1925. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts.map +0 -1
  1926. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +0 -20
  1927. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +0 -1
  1928. package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts +0 -10
  1929. package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts.map +0 -1
  1930. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +0 -8
  1931. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +0 -1
  1932. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +0 -15
  1933. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts.map +0 -1
  1934. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts +0 -20
  1935. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +0 -1
  1936. package/libs/ui/layout/src/lib/max-lines/max-lines.component.d.ts +0 -20
  1937. package/libs/ui/layout/src/lib/max-lines/max-lines.component.d.ts.map +0 -1
  1938. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +0 -20
  1939. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +0 -1
  1940. package/libs/ui/layout/src/lib/paginable.interface.d.ts +0 -15
  1941. package/libs/ui/layout/src/lib/paginable.interface.d.ts.map +0 -1
  1942. package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts +0 -11
  1943. package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts.map +0 -1
  1944. package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts +0 -9
  1945. package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +0 -1
  1946. package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts +0 -10
  1947. package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts.map +0 -1
  1948. package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +0 -8
  1949. package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +0 -1
  1950. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +0 -14
  1951. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
  1952. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +0 -37
  1953. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +0 -1
  1954. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts +0 -22
  1955. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts.map +0 -1
  1956. package/libs/ui/map/src/index.d.ts +0 -7
  1957. package/libs/ui/map/src/index.d.ts.map +0 -1
  1958. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +0 -13
  1959. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +0 -1
  1960. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts +0 -39
  1961. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +0 -1
  1962. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts +0 -18
  1963. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +0 -1
  1964. package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts +0 -12
  1965. package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts.map +0 -1
  1966. package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts +0 -15
  1967. package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts.map +0 -1
  1968. package/libs/ui/map/src/lib/map-utils.d.ts +0 -7
  1969. package/libs/ui/map/src/lib/map-utils.d.ts.map +0 -1
  1970. package/libs/ui/search/src/index.d.ts +0 -21
  1971. package/libs/ui/search/src/index.d.ts.map +0 -1
  1972. package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts +0 -34
  1973. package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts.map +0 -1
  1974. package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts +0 -16
  1975. package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts.map +0 -1
  1976. package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts +0 -19
  1977. package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts.map +0 -1
  1978. package/libs/ui/search/src/lib/facets/facets.model.d.ts +0 -27
  1979. package/libs/ui/search/src/lib/facets/facets.model.d.ts.map +0 -1
  1980. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +0 -5
  1981. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +0 -1
  1982. package/libs/ui/search/src/lib/facets/fixtures/index.d.ts +0 -2
  1983. package/libs/ui/search/src/lib/facets/fixtures/index.d.ts.map +0 -1
  1984. package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts +0 -12
  1985. package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts.map +0 -1
  1986. package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts +0 -27
  1987. package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts.map +0 -1
  1988. package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts +0 -7
  1989. package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts.map +0 -1
  1990. package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts +0 -18
  1991. package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts.map +0 -1
  1992. package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts +0 -7
  1993. package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts.map +0 -1
  1994. package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts +0 -12
  1995. package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts.map +0 -1
  1996. package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts +0 -7
  1997. package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts.map +0 -1
  1998. package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts +0 -7
  1999. package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts.map +0 -1
  2000. package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts +0 -8
  2001. package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts.map +0 -1
  2002. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts +0 -17
  2003. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts.map +0 -1
  2004. package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts +0 -13
  2005. package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts.map +0 -1
  2006. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts +0 -17
  2007. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +0 -1
  2008. package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts +0 -24
  2009. package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts.map +0 -1
  2010. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +0 -27
  2011. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +0 -1
  2012. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +0 -53
  2013. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +0 -1
  2014. package/libs/ui/widgets/src/index.d.ts +0 -7
  2015. package/libs/ui/widgets/src/index.d.ts.map +0 -1
  2016. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +0 -6
  2017. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +0 -1
  2018. package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts +0 -7
  2019. package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts.map +0 -1
  2020. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +0 -19
  2021. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +0 -1
  2022. package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts +0 -19
  2023. package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +0 -1
  2024. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +0 -16
  2025. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +0 -1
  2026. package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts +0 -6
  2027. package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts.map +0 -1
  2028. package/libs/util/app-config/src/index.d.ts +0 -5
  2029. package/libs/util/app-config/src/index.d.ts.map +0 -1
  2030. package/libs/util/app-config/src/lib/app-config.d.ts +0 -26
  2031. package/libs/util/app-config/src/lib/app-config.d.ts.map +0 -1
  2032. package/libs/util/app-config/src/lib/fixtures.d.ts +0 -10
  2033. package/libs/util/app-config/src/lib/fixtures.d.ts.map +0 -1
  2034. package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts +0 -10
  2035. package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts.map +0 -1
  2036. package/libs/util/app-config/src/lib/map-layers.d.ts +0 -4
  2037. package/libs/util/app-config/src/lib/map-layers.d.ts.map +0 -1
  2038. package/libs/util/app-config/src/lib/model.d.ts +0 -71
  2039. package/libs/util/app-config/src/lib/model.d.ts.map +0 -1
  2040. package/libs/util/app-config/src/lib/parse-utils.d.ts +0 -19
  2041. package/libs/util/app-config/src/lib/parse-utils.d.ts.map +0 -1
  2042. package/libs/util/data-fetcher/src/index.d.ts +0 -7
  2043. package/libs/util/data-fetcher/src/index.d.ts.map +0 -1
  2044. package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts +0 -23
  2045. package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts.map +0 -1
  2046. package/libs/util/data-fetcher/src/lib/headers.d.ts +0 -3
  2047. package/libs/util/data-fetcher/src/lib/headers.d.ts.map +0 -1
  2048. package/libs/util/data-fetcher/src/lib/model.d.ts +0 -68
  2049. package/libs/util/data-fetcher/src/lib/model.d.ts.map +0 -1
  2050. package/libs/util/data-fetcher/src/lib/readers/base-cache.d.ts +0 -8
  2051. package/libs/util/data-fetcher/src/lib/readers/base-cache.d.ts.map +0 -1
  2052. package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts +0 -16
  2053. package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts.map +0 -1
  2054. package/libs/util/data-fetcher/src/lib/readers/base.d.ts +0 -24
  2055. package/libs/util/data-fetcher/src/lib/readers/base.d.ts.map +0 -1
  2056. package/libs/util/data-fetcher/src/lib/readers/csv.d.ts +0 -13
  2057. package/libs/util/data-fetcher/src/lib/readers/csv.d.ts.map +0 -1
  2058. package/libs/util/data-fetcher/src/lib/readers/excel.d.ts +0 -18
  2059. package/libs/util/data-fetcher/src/lib/readers/excel.d.ts.map +0 -1
  2060. package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts +0 -18
  2061. package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts.map +0 -1
  2062. package/libs/util/data-fetcher/src/lib/readers/gml.d.ts +0 -19
  2063. package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +0 -1
  2064. package/libs/util/data-fetcher/src/lib/readers/json.d.ts +0 -17
  2065. package/libs/util/data-fetcher/src/lib/readers/json.d.ts.map +0 -1
  2066. package/libs/util/data-fetcher/src/lib/readers/wfs.d.ts +0 -25
  2067. package/libs/util/data-fetcher/src/lib/readers/wfs.d.ts.map +0 -1
  2068. package/libs/util/data-fetcher/src/lib/sql-utils.d.ts +0 -13
  2069. package/libs/util/data-fetcher/src/lib/sql-utils.d.ts.map +0 -1
  2070. package/libs/util/data-fetcher/src/lib/utils.d.ts +0 -26
  2071. package/libs/util/data-fetcher/src/lib/utils.d.ts.map +0 -1
  2072. package/libs/util/i18n/src/index.d.ts +0 -8
  2073. package/libs/util/i18n/src/index.d.ts.map +0 -1
  2074. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +0 -6
  2075. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +0 -1
  2076. package/libs/util/i18n/src/lib/file.translate.loader.d.ts +0 -9
  2077. package/libs/util/i18n/src/lib/file.translate.loader.d.ts.map +0 -1
  2078. package/libs/util/i18n/src/lib/i18n.constants.d.ts +0 -12
  2079. package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +0 -1
  2080. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +0 -12
  2081. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +0 -1
  2082. package/libs/util/i18n/src/lib/i18n.providers.d.ts +0 -4
  2083. package/libs/util/i18n/src/lib/i18n.providers.d.ts.map +0 -1
  2084. package/libs/util/i18n/src/lib/language-codes.d.ts +0 -94
  2085. package/libs/util/i18n/src/lib/language-codes.d.ts.map +0 -1
  2086. package/libs/util/i18n/src/lib/translate.loader.utils.d.ts +0 -2
  2087. package/libs/util/i18n/src/lib/translate.loader.utils.d.ts.map +0 -1
  2088. package/libs/util/shared/src/index.d.ts +0 -7
  2089. package/libs/util/shared/src/index.d.ts.map +0 -1
  2090. package/libs/util/shared/src/lib/gn-ui-version.d.ts +0 -3
  2091. package/libs/util/shared/src/lib/gn-ui-version.d.ts.map +0 -1
  2092. package/libs/util/shared/src/lib/image-fallback.directive.d.ts +0 -11
  2093. package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +0 -1
  2094. package/libs/util/shared/src/lib/links/index.d.ts +0 -3
  2095. package/libs/util/shared/src/lib/links/index.d.ts.map +0 -1
  2096. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +0 -18
  2097. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +0 -1
  2098. package/libs/util/shared/src/lib/links/link-utils.d.ts +0 -139
  2099. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +0 -1
  2100. package/libs/util/shared/src/lib/record/index.d.ts +0 -3
  2101. package/libs/util/shared/src/lib/record/index.d.ts.map +0 -1
  2102. package/libs/util/shared/src/lib/record/quality-score.util.d.ts +0 -13
  2103. package/libs/util/shared/src/lib/record/quality-score.util.d.ts.map +0 -1
  2104. package/libs/util/shared/src/lib/record/record.util.d.ts +0 -3
  2105. package/libs/util/shared/src/lib/record/record.util.d.ts.map +0 -1
  2106. package/libs/util/shared/src/lib/services/date.service.d.ts +0 -13
  2107. package/libs/util/shared/src/lib/services/date.service.d.ts.map +0 -1
  2108. package/libs/util/shared/src/lib/services/index.d.ts +0 -5
  2109. package/libs/util/shared/src/lib/services/index.d.ts.map +0 -1
  2110. package/libs/util/shared/src/lib/services/log.service.d.ts +0 -9
  2111. package/libs/util/shared/src/lib/services/log.service.d.ts.map +0 -1
  2112. package/libs/util/shared/src/lib/services/proxy.service.d.ts +0 -18
  2113. package/libs/util/shared/src/lib/services/proxy.service.d.ts.map +0 -1
  2114. package/libs/util/shared/src/lib/services/theme.service.d.ts +0 -11
  2115. package/libs/util/shared/src/lib/services/theme.service.d.ts.map +0 -1
  2116. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +0 -3
  2117. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +0 -1
  2118. package/libs/util/shared/src/lib/utils/event.d.ts +0 -7
  2119. package/libs/util/shared/src/lib/utils/event.d.ts.map +0 -1
  2120. package/libs/util/shared/src/lib/utils/format-fields.d.ts +0 -2
  2121. package/libs/util/shared/src/lib/utils/format-fields.d.ts.map +0 -1
  2122. package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts +0 -9
  2123. package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts.map +0 -1
  2124. package/libs/util/shared/src/lib/utils/geojson.d.ts +0 -8
  2125. package/libs/util/shared/src/lib/utils/geojson.d.ts.map +0 -1
  2126. package/libs/util/shared/src/lib/utils/image-resize.d.ts +0 -3
  2127. package/libs/util/shared/src/lib/utils/image-resize.d.ts.map +0 -1
  2128. package/libs/util/shared/src/lib/utils/index.d.ts +0 -16
  2129. package/libs/util/shared/src/lib/utils/index.d.ts.map +0 -1
  2130. package/libs/util/shared/src/lib/utils/mobile-screen.d.ts +0 -2
  2131. package/libs/util/shared/src/lib/utils/mobile-screen.d.ts.map +0 -1
  2132. package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts +0 -2
  2133. package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts.map +0 -1
  2134. package/libs/util/shared/src/lib/utils/parse.d.ts +0 -6
  2135. package/libs/util/shared/src/lib/utils/parse.d.ts.map +0 -1
  2136. package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts +0 -2
  2137. package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts.map +0 -1
  2138. package/libs/util/shared/src/lib/utils/scroll.d.ts +0 -12
  2139. package/libs/util/shared/src/lib/utils/scroll.d.ts.map +0 -1
  2140. package/libs/util/shared/src/lib/utils/sort-by.d.ts +0 -5
  2141. package/libs/util/shared/src/lib/utils/sort-by.d.ts.map +0 -1
  2142. package/libs/util/shared/src/lib/utils/strip-html.d.ts +0 -2
  2143. package/libs/util/shared/src/lib/utils/strip-html.d.ts.map +0 -1
  2144. package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts +0 -9
  2145. package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts.map +0 -1
  2146. package/libs/util/shared/src/lib/utils/url.d.ts +0 -7
  2147. package/libs/util/shared/src/lib/utils/url.d.ts.map +0 -1
  2148. package/src/libs/common/domain/src/lib/index.ts +0 -2
  2149. package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +0 -54
@@ -1,96 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, } from '@angular/core';
2
- import { updateFrequencyCodeValues, } from '../../../../../../../../../libs/common/domain/src/lib/model/record';
3
- import { CheckToggleComponent, DropdownSelectorComponent, } from '../../../../../../../../../libs/ui/inputs/src';
4
- import { TranslatePipe, TranslateService } from '@ngx-translate/core';
5
- import { firstValueFrom } from 'rxjs';
6
- import * as i0 from "@angular/core";
7
- import * as i1 from "@ngx-translate/core";
8
- const initialListValues = updateFrequencyCodeValues.filter((code) => !['unknown', 'notPlanned', 'asNeeded', 'irregular'].includes(code));
9
- export class FormFieldUpdateFrequencyComponent {
10
- get planned() {
11
- return this.value && this.value !== 'notPlanned' && this.value !== 'unknown';
12
- }
13
- constructor(translateService) {
14
- this.translateService = translateService;
15
- this.valueChange = new EventEmitter();
16
- this.choices = [];
17
- }
18
- async ngOnInit() {
19
- this.choices = await this.getInitialChoices();
20
- if (!this.planned) {
21
- return;
22
- }
23
- if (typeof this.value === 'string' &&
24
- !this.choices.map((choice) => choice.value).includes(this.value)) {
25
- this.choices = [
26
- {
27
- value: this.value,
28
- label: await firstValueFrom(this.translateService.get(`domain.record.updateFrequency.${this.value}`)),
29
- },
30
- ...this.choices,
31
- ];
32
- }
33
- if (typeof this.value === 'string') {
34
- return;
35
- }
36
- const updatedTimes = this.value.updatedTimes;
37
- const per = this.value.per;
38
- // the update frequency is not in the list; make it appear there
39
- if (updatedTimes) {
40
- this.choices = [
41
- {
42
- value: `${per}.${updatedTimes}`,
43
- label: await firstValueFrom(this.translateService.get(`domain.record.updateFrequency.${per}`, {
44
- count: updatedTimes,
45
- })),
46
- },
47
- ...this.choices,
48
- ];
49
- }
50
- }
51
- onPlannedToggled() {
52
- if (this.planned) {
53
- this.valueChange.emit('notPlanned');
54
- }
55
- else {
56
- this.valueChange.emit(this.choices[0].value);
57
- }
58
- }
59
- get selectedFrequency() {
60
- if (!this.value)
61
- return null;
62
- if (typeof this.value === 'string')
63
- return this.value;
64
- const { updatedTimes, per } = this.value;
65
- return `${per}.${updatedTimes}`;
66
- }
67
- onSelectFrequencyValue(value) {
68
- if (!value.includes('.')) {
69
- this.valueChange.emit(value);
70
- }
71
- else {
72
- const split = value.split('.');
73
- this.valueChange.emit({
74
- updatedTimes: Number(split[1]),
75
- per: split[0],
76
- });
77
- }
78
- }
79
- async getInitialChoices() {
80
- return Promise.all(initialListValues.map(async (value) => ({
81
- value,
82
- label: await firstValueFrom(this.translateService.get(`domain.record.updateFrequency.${value}`)),
83
- })));
84
- }
85
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FormFieldUpdateFrequencyComponent, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
86
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FormFieldUpdateFrequencyComponent, isStandalone: true, selector: "gn-ui-form-field-update-frequency", inputs: { value: "value" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: "<div class=\"flex flex-col gap-2\">\n <gn-ui-check-toggle\n [label]=\"'editor.record.form.updateFrequency.planned' | translate\"\n [value]=\"planned\"\n (toggled)=\"onPlannedToggled()\"\n ></gn-ui-check-toggle>\n <gn-ui-dropdown-selector\n [title]=\"'editor.record.form.field.updateFrequency' | translate\"\n [showTitle]=\"false\"\n [choices]=\"choices\"\n [selected]=\"selectedFrequency\"\n (selectValue)=\"onSelectFrequencyValue($event)\"\n [disabled]=\"!planned\"\n [extraBtnClass]=\"'input-as-button gn-ui-text-input'\"\n >\n </gn-ui-dropdown-selector>\n</div>\n", styles: ["gn-ui-dropdown-selector{max-width:calc(50% - 16px)}\n"], dependencies: [{ kind: "component", type: CheckToggleComponent, selector: "gn-ui-check-toggle", inputs: ["title", "label", "value", "color"], outputs: ["toggled"] }, { kind: "component", type: DropdownSelectorComponent, selector: "gn-ui-dropdown-selector", inputs: ["title", "showTitle", "ariaName", "choices", "selected", "maxRows", "extraBtnClass", "minWidth", "disabled"], outputs: ["selectValue"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
87
- }
88
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FormFieldUpdateFrequencyComponent, decorators: [{
89
- type: Component,
90
- args: [{ selector: 'gn-ui-form-field-update-frequency', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CheckToggleComponent, DropdownSelectorComponent, TranslatePipe], template: "<div class=\"flex flex-col gap-2\">\n <gn-ui-check-toggle\n [label]=\"'editor.record.form.updateFrequency.planned' | translate\"\n [value]=\"planned\"\n (toggled)=\"onPlannedToggled()\"\n ></gn-ui-check-toggle>\n <gn-ui-dropdown-selector\n [title]=\"'editor.record.form.field.updateFrequency' | translate\"\n [showTitle]=\"false\"\n [choices]=\"choices\"\n [selected]=\"selectedFrequency\"\n (selectValue)=\"onSelectFrequencyValue($event)\"\n [disabled]=\"!planned\"\n [extraBtnClass]=\"'input-as-button gn-ui-text-input'\"\n >\n </gn-ui-dropdown-selector>\n</div>\n", styles: ["gn-ui-dropdown-selector{max-width:calc(50% - 16px)}\n"] }]
91
- }], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { value: [{
92
- type: Input
93
- }], valueChange: [{
94
- type: Output
95
- }] } });
96
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC11cGRhdGUtZnJlcXVlbmN5LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL3JlY29yZC1mb3JtL2Zvcm0tZmllbGQvZm9ybS1maWVsZC11cGRhdGUtZnJlcXVlbmN5L2Zvcm0tZmllbGQtdXBkYXRlLWZyZXF1ZW5jeS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZWRpdG9yL3NyYy9saWIvY29tcG9uZW50cy9yZWNvcmQtZm9ybS9mb3JtLWZpZWxkL2Zvcm0tZmllbGQtdXBkYXRlLWZyZXF1ZW5jeS9mb3JtLWZpZWxkLXVwZGF0ZS1mcmVxdWVuY3kuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFFTCxNQUFNLEdBQ1AsTUFBTSxlQUFlLENBQUE7QUFDdEIsT0FBTyxFQUdMLHlCQUF5QixHQUUxQixNQUFNLG9FQUFvRSxDQUFBO0FBQzNFLE9BQU8sRUFDTCxvQkFBb0IsRUFFcEIseUJBQXlCLEdBQzFCLE1BQU0sK0NBQStDLENBQUE7QUFDdEQsT0FBTyxFQUFFLGFBQWEsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFBO0FBQ3JFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxNQUFNLENBQUE7OztBQUVyQyxNQUFNLGlCQUFpQixHQUFHLHlCQUF5QixDQUFDLE1BQU0sQ0FDeEQsQ0FBQyxJQUFJLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxTQUFTLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxXQUFXLENBQUMsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQzdFLENBQUE7QUFVRCxNQUFNLE9BQU8saUNBQWlDO0lBTTVDLElBQUksT0FBTztRQUNULE9BQU8sSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsS0FBSyxLQUFLLFlBQVksSUFBSSxJQUFJLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQTtJQUM5RSxDQUFDO0lBRUQsWUFBb0IsZ0JBQWtDO1FBQWxDLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7UUFSNUMsZ0JBQVcsR0FBa0MsSUFBSSxZQUFZLEVBQUUsQ0FBQTtRQUUvRCxZQUFPLEdBQXFCLEVBQUUsQ0FBQTtJQU1pQixDQUFDO0lBRTFELEtBQUssQ0FBQyxRQUFRO1FBQ1osSUFBSSxDQUFDLE9BQU8sR0FBRyxNQUFNLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFBO1FBQzdDLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUM7WUFDbEIsT0FBTTtRQUNSLENBQUM7UUFDRCxJQUNFLE9BQU8sSUFBSSxDQUFDLEtBQUssS0FBSyxRQUFRO1lBQzlCLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQyxNQUFNLEVBQUUsRUFBRSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxFQUNoRSxDQUFDO1lBQ0QsSUFBSSxDQUFDLE9BQU8sR0FBRztnQkFDYjtvQkFDRSxLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUs7b0JBQ2pCLEtBQUssRUFBRSxNQUFNLGNBQWMsQ0FDekIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLEdBQUcsQ0FDdkIsaUNBQWlDLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FDOUMsQ0FDRjtpQkFDRjtnQkFDRCxHQUFHLElBQUksQ0FBQyxPQUFPO2FBQ2hCLENBQUE7UUFDSCxDQUFDO1FBQ0QsSUFBSSxPQUFPLElBQUksQ0FBQyxLQUFLLEtBQUssUUFBUSxFQUFFLENBQUM7WUFDbkMsT0FBTTtRQUNSLENBQUM7UUFDRCxNQUFNLFlBQVksR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLFlBQVksQ0FBQTtRQUM1QyxNQUFNLEdBQUcsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQTtRQUMxQixnRUFBZ0U7UUFDaEUsSUFBSSxZQUFZLEVBQUUsQ0FBQztZQUNqQixJQUFJLENBQUMsT0FBTyxHQUFHO2dCQUNiO29CQUNFLEtBQUssRUFBRSxHQUFHLEdBQUcsSUFBSSxZQUFZLEVBQUU7b0JBQy9CLEtBQUssRUFBRSxNQUFNLGNBQWMsQ0FDekIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLEdBQUcsQ0FBQyxpQ0FBaUMsR0FBRyxFQUFFLEVBQUU7d0JBQ2hFLEtBQUssRUFBRSxZQUFZO3FCQUNwQixDQUFDLENBQ0g7aUJBQ0Y7Z0JBQ0QsR0FBRyxJQUFJLENBQUMsT0FBTzthQUNoQixDQUFBO1FBQ0gsQ0FBQztJQUNILENBQUM7SUFFRCxnQkFBZ0I7UUFDZCxJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUNqQixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQTtRQUNyQyxDQUFDO2FBQU0sQ0FBQztZQUNOLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBNEIsQ0FBQyxDQUFBO1FBQ3JFLENBQUM7SUFDSCxDQUFDO0lBRUQsSUFBSSxpQkFBaUI7UUFDbkIsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLO1lBQUUsT0FBTyxJQUFJLENBQUE7UUFDNUIsSUFBSSxPQUFPLElBQUksQ0FBQyxLQUFLLEtBQUssUUFBUTtZQUFFLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQTtRQUNyRCxNQUFNLEVBQUUsWUFBWSxFQUFFLEdBQUcsRUFBRSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUE7UUFDeEMsT0FBTyxHQUFHLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQTtJQUNqQyxDQUFDO0lBRUQsc0JBQXNCLENBQUMsS0FBYTtRQUNsQyxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDO1lBQ3pCLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLEtBQTRCLENBQUMsQ0FBQTtRQUNyRCxDQUFDO2FBQU0sQ0FBQztZQUNOLE1BQU0sS0FBSyxHQUFJLEtBQWdCLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFBO1lBQzFDLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDO2dCQUNwQixZQUFZLEVBQUUsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFDOUIsR0FBRyxFQUFFLEtBQUssQ0FBQyxDQUFDLENBQWlDO2FBQzlDLENBQUMsQ0FBQTtRQUNKLENBQUM7SUFDSCxDQUFDO0lBRU8sS0FBSyxDQUFDLGlCQUFpQjtRQUM3QixPQUFPLE9BQU8sQ0FBQyxHQUFHLENBQ2hCLGlCQUFpQixDQUFDLEdBQUcsQ0FBQyxLQUFLLEVBQUUsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1lBQ3RDLEtBQUs7WUFDTCxLQUFLLEVBQUUsTUFBTSxjQUFjLENBQ3pCLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxHQUFHLENBQUMsaUNBQWlDLEtBQUssRUFBRSxDQUFDLENBQ3BFO1NBQ0YsQ0FBQyxDQUFDLENBQ0osQ0FBQTtJQUNILENBQUM7K0dBMUZVLGlDQUFpQzttR0FBakMsaUNBQWlDLGtLQ2xDOUMsMmxCQWlCQSwrR0RlWSxvQkFBb0IsbUlBQUUseUJBQXlCLGdOQUFFLGFBQWE7OzRGQUU3RCxpQ0FBaUM7a0JBUjdDLFNBQVM7K0JBQ0UsbUNBQW1DLG1CQUc1Qix1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUksV0FDUCxDQUFDLG9CQUFvQixFQUFFLHlCQUF5QixFQUFFLGFBQWEsQ0FBQztxRkFHaEUsS0FBSztzQkFBYixLQUFLO2dCQUNJLFdBQVc7c0JBQXBCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBFdmVudEVtaXR0ZXIsXG4gIElucHV0LFxuICBPbkluaXQsXG4gIE91dHB1dCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7XG4gIFVwZGF0ZUZyZXF1ZW5jeSxcbiAgVXBkYXRlRnJlcXVlbmN5Q29kZSxcbiAgdXBkYXRlRnJlcXVlbmN5Q29kZVZhbHVlcyxcbiAgVXBkYXRlRnJlcXVlbmN5Q3VzdG9tLFxufSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbW1vbi9kb21haW4vc3JjL2xpYi9tb2RlbC9yZWNvcmQnXG5pbXBvcnQge1xuICBDaGVja1RvZ2dsZUNvbXBvbmVudCxcbiAgRHJvcGRvd25DaG9pY2UsXG4gIERyb3Bkb3duU2VsZWN0b3JDb21wb25lbnQsXG59IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYydcbmltcG9ydCB7IFRyYW5zbGF0ZVBpcGUsIFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJ1xuaW1wb3J0IHsgZmlyc3RWYWx1ZUZyb20gfSBmcm9tICdyeGpzJ1xuXG5jb25zdCBpbml0aWFsTGlzdFZhbHVlcyA9IHVwZGF0ZUZyZXF1ZW5jeUNvZGVWYWx1ZXMuZmlsdGVyKFxuICAoY29kZSkgPT4gIVsndW5rbm93bicsICdub3RQbGFubmVkJywgJ2FzTmVlZGVkJywgJ2lycmVndWxhciddLmluY2x1ZGVzKGNvZGUpXG4pXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtdXBkYXRlLWZyZXF1ZW5jeScsXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLWZpZWxkLXVwZGF0ZS1mcmVxdWVuY3kuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mb3JtLWZpZWxkLXVwZGF0ZS1mcmVxdWVuY3kuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0NoZWNrVG9nZ2xlQ29tcG9uZW50LCBEcm9wZG93blNlbGVjdG9yQ29tcG9uZW50LCBUcmFuc2xhdGVQaXBlXSxcbn0pXG5leHBvcnQgY2xhc3MgRm9ybUZpZWxkVXBkYXRlRnJlcXVlbmN5Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgQElucHV0KCkgdmFsdWU6IFVwZGF0ZUZyZXF1ZW5jeVxuICBAT3V0cHV0KCkgdmFsdWVDaGFuZ2U6IEV2ZW50RW1pdHRlcjxVcGRhdGVGcmVxdWVuY3k+ID0gbmV3IEV2ZW50RW1pdHRlcigpXG5cbiAgcHJvdGVjdGVkIGNob2ljZXM6IERyb3Bkb3duQ2hvaWNlW10gPSBbXVxuXG4gIGdldCBwbGFubmVkKCkge1xuICAgIHJldHVybiB0aGlzLnZhbHVlICYmIHRoaXMudmFsdWUgIT09ICdub3RQbGFubmVkJyAmJiB0aGlzLnZhbHVlICE9PSAndW5rbm93bidcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgdHJhbnNsYXRlU2VydmljZTogVHJhbnNsYXRlU2VydmljZSkge31cblxuICBhc3luYyBuZ09uSW5pdCgpIHtcbiAgICB0aGlzLmNob2ljZXMgPSBhd2FpdCB0aGlzLmdldEluaXRpYWxDaG9pY2VzKClcbiAgICBpZiAoIXRoaXMucGxhbm5lZCkge1xuICAgICAgcmV0dXJuXG4gICAgfVxuICAgIGlmIChcbiAgICAgIHR5cGVvZiB0aGlzLnZhbHVlID09PSAnc3RyaW5nJyAmJlxuICAgICAgIXRoaXMuY2hvaWNlcy5tYXAoKGNob2ljZSkgPT4gY2hvaWNlLnZhbHVlKS5pbmNsdWRlcyh0aGlzLnZhbHVlKVxuICAgICkge1xuICAgICAgdGhpcy5jaG9pY2VzID0gW1xuICAgICAgICB7XG4gICAgICAgICAgdmFsdWU6IHRoaXMudmFsdWUsXG4gICAgICAgICAgbGFiZWw6IGF3YWl0IGZpcnN0VmFsdWVGcm9tKFxuICAgICAgICAgICAgdGhpcy50cmFuc2xhdGVTZXJ2aWNlLmdldChcbiAgICAgICAgICAgICAgYGRvbWFpbi5yZWNvcmQudXBkYXRlRnJlcXVlbmN5LiR7dGhpcy52YWx1ZX1gXG4gICAgICAgICAgICApXG4gICAgICAgICAgKSxcbiAgICAgICAgfSxcbiAgICAgICAgLi4udGhpcy5jaG9pY2VzLFxuICAgICAgXVxuICAgIH1cbiAgICBpZiAodHlwZW9mIHRoaXMudmFsdWUgPT09ICdzdHJpbmcnKSB7XG4gICAgICByZXR1cm5cbiAgICB9XG4gICAgY29uc3QgdXBkYXRlZFRpbWVzID0gdGhpcy52YWx1ZS51cGRhdGVkVGltZXNcbiAgICBjb25zdCBwZXIgPSB0aGlzLnZhbHVlLnBlclxuICAgIC8vIHRoZSB1cGRhdGUgZnJlcXVlbmN5IGlzIG5vdCBpbiB0aGUgbGlzdDsgbWFrZSBpdCBhcHBlYXIgdGhlcmVcbiAgICBpZiAodXBkYXRlZFRpbWVzKSB7XG4gICAgICB0aGlzLmNob2ljZXMgPSBbXG4gICAgICAgIHtcbiAgICAgICAgICB2YWx1ZTogYCR7cGVyfS4ke3VwZGF0ZWRUaW1lc31gLFxuICAgICAgICAgIGxhYmVsOiBhd2FpdCBmaXJzdFZhbHVlRnJvbShcbiAgICAgICAgICAgIHRoaXMudHJhbnNsYXRlU2VydmljZS5nZXQoYGRvbWFpbi5yZWNvcmQudXBkYXRlRnJlcXVlbmN5LiR7cGVyfWAsIHtcbiAgICAgICAgICAgICAgY291bnQ6IHVwZGF0ZWRUaW1lcyxcbiAgICAgICAgICAgIH0pXG4gICAgICAgICAgKSxcbiAgICAgICAgfSxcbiAgICAgICAgLi4udGhpcy5jaG9pY2VzLFxuICAgICAgXVxuICAgIH1cbiAgfVxuXG4gIG9uUGxhbm5lZFRvZ2dsZWQoKSB7XG4gICAgaWYgKHRoaXMucGxhbm5lZCkge1xuICAgICAgdGhpcy52YWx1ZUNoYW5nZS5lbWl0KCdub3RQbGFubmVkJylcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy52YWx1ZUNoYW5nZS5lbWl0KHRoaXMuY2hvaWNlc1swXS52YWx1ZSBhcyBVcGRhdGVGcmVxdWVuY3lDb2RlKVxuICAgIH1cbiAgfVxuXG4gIGdldCBzZWxlY3RlZEZyZXF1ZW5jeSgpOiBzdHJpbmcge1xuICAgIGlmICghdGhpcy52YWx1ZSkgcmV0dXJuIG51bGxcbiAgICBpZiAodHlwZW9mIHRoaXMudmFsdWUgPT09ICdzdHJpbmcnKSByZXR1cm4gdGhpcy52YWx1ZVxuICAgIGNvbnN0IHsgdXBkYXRlZFRpbWVzLCBwZXIgfSA9IHRoaXMudmFsdWVcbiAgICByZXR1cm4gYCR7cGVyfS4ke3VwZGF0ZWRUaW1lc31gXG4gIH1cblxuICBvblNlbGVjdEZyZXF1ZW5jeVZhbHVlKHZhbHVlOiBzdHJpbmcpIHtcbiAgICBpZiAoIXZhbHVlLmluY2x1ZGVzKCcuJykpIHtcbiAgICAgIHRoaXMudmFsdWVDaGFuZ2UuZW1pdCh2YWx1ZSBhcyBVcGRhdGVGcmVxdWVuY3lDb2RlKVxuICAgIH0gZWxzZSB7XG4gICAgICBjb25zdCBzcGxpdCA9ICh2YWx1ZSBhcyBzdHJpbmcpLnNwbGl0KCcuJylcbiAgICAgIHRoaXMudmFsdWVDaGFuZ2UuZW1pdCh7XG4gICAgICAgIHVwZGF0ZWRUaW1lczogTnVtYmVyKHNwbGl0WzFdKSxcbiAgICAgICAgcGVyOiBzcGxpdFswXSBhcyBVcGRhdGVGcmVxdWVuY3lDdXN0b21bJ3BlciddLFxuICAgICAgfSlcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGFzeW5jIGdldEluaXRpYWxDaG9pY2VzKCkge1xuICAgIHJldHVybiBQcm9taXNlLmFsbChcbiAgICAgIGluaXRpYWxMaXN0VmFsdWVzLm1hcChhc3luYyAodmFsdWUpID0+ICh7XG4gICAgICAgIHZhbHVlLFxuICAgICAgICBsYWJlbDogYXdhaXQgZmlyc3RWYWx1ZUZyb20oXG4gICAgICAgICAgdGhpcy50cmFuc2xhdGVTZXJ2aWNlLmdldChgZG9tYWluLnJlY29yZC51cGRhdGVGcmVxdWVuY3kuJHt2YWx1ZX1gKVxuICAgICAgICApLFxuICAgICAgfSkpXG4gICAgKVxuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZmxleCBmbGV4LWNvbCBnYXAtMlwiPlxuICA8Z24tdWktY2hlY2stdG9nZ2xlXG4gICAgW2xhYmVsXT1cIidlZGl0b3IucmVjb3JkLmZvcm0udXBkYXRlRnJlcXVlbmN5LnBsYW5uZWQnIHwgdHJhbnNsYXRlXCJcbiAgICBbdmFsdWVdPVwicGxhbm5lZFwiXG4gICAgKHRvZ2dsZWQpPVwib25QbGFubmVkVG9nZ2xlZCgpXCJcbiAgPjwvZ24tdWktY2hlY2stdG9nZ2xlPlxuICA8Z24tdWktZHJvcGRvd24tc2VsZWN0b3JcbiAgICBbdGl0bGVdPVwiJ2VkaXRvci5yZWNvcmQuZm9ybS5maWVsZC51cGRhdGVGcmVxdWVuY3knIHwgdHJhbnNsYXRlXCJcbiAgICBbc2hvd1RpdGxlXT1cImZhbHNlXCJcbiAgICBbY2hvaWNlc109XCJjaG9pY2VzXCJcbiAgICBbc2VsZWN0ZWRdPVwic2VsZWN0ZWRGcmVxdWVuY3lcIlxuICAgIChzZWxlY3RWYWx1ZSk9XCJvblNlbGVjdEZyZXF1ZW5jeVZhbHVlKCRldmVudClcIlxuICAgIFtkaXNhYmxlZF09XCIhcGxhbm5lZFwiXG4gICAgW2V4dHJhQnRuQ2xhc3NdPVwiJ2lucHV0LWFzLWJ1dHRvbiBnbi11aS10ZXh0LWlucHV0J1wiXG4gID5cbiAgPC9nbi11aS1kcm9wZG93bi1zZWxlY3Rvcj5cbjwvZGl2PlxuIl19
@@ -1,122 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { ChangeDetectionStrategy, Component, ElementRef, EventEmitter, Input, Output, ViewChild, } from '@angular/core';
3
- import { MatTooltipModule } from '@angular/material/tooltip';
4
- import { FormFieldWrapperComponent } from '../../../../../../../../libs/ui/layout/src';
5
- import { TranslatePipe } from '@ngx-translate/core';
6
- import { FormFieldDateComponent, FormFieldLicenseComponent, FormFieldTemporalExtentsComponent, } from '.';
7
- import { FormFieldContactsForResourceComponent } from './form-field-contacts-for-resource/form-field-contacts-for-resource.component';
8
- import { FormFieldContactsComponent } from './form-field-contacts/form-field-contacts.component';
9
- import { FormFieldKeywordsComponent } from './form-field-keywords/form-field-keywords.component';
10
- import { FormFieldOnlineLinkResourcesComponent } from './form-field-online-link-resources/form-field-online-link-resources.component';
11
- import { FormFieldOnlineResourcesComponent } from './form-field-online-resources/form-field-online-resources.component';
12
- import { FormFieldOverviewsComponent } from './form-field-overviews/form-field-overviews.component';
13
- import { FormFieldRichComponent } from './form-field-rich/form-field-rich.component';
14
- import { FormFieldSimpleComponent } from './form-field-simple/form-field-simple.component';
15
- import { FormFieldSpatialExtentComponent } from './form-field-spatial-extent/form-field-spatial-extent.component';
16
- import { FormFieldUpdateFrequencyComponent } from './form-field-update-frequency/form-field-update-frequency.component';
17
- import { FormFieldConstraintsShortcutsComponent } from './form-field-constraints-shortcuts/form-field-constraints-shortcuts.component';
18
- import { FormFieldConstraintsComponent } from './form-field-constraints/form-field-constraints.component';
19
- import { TextFieldModule } from '@angular/cdk/text-field';
20
- import { FormFieldSpatialToggleComponent } from './form-field-spatial-toggle/form-field-spatial-toggle.component';
21
- import { FormFieldTopicsComponent } from './form-field-topics/form-field-topics.component';
22
- import * as i0 from "@angular/core";
23
- import * as i1 from "@angular/common";
24
- import * as i2 from "@angular/material/tooltip";
25
- import * as i3 from "@angular/cdk/text-field";
26
- export class FormFieldComponent {
27
- constructor() {
28
- this.valueChange = new EventEmitter();
29
- this.isOpenData = false;
30
- }
31
- toggleIsOpenData(event) {
32
- this.isOpenData = event;
33
- }
34
- focusTitleInput() {
35
- this.titleInput.nativeElement.focus();
36
- }
37
- get withoutWrapper() {
38
- return (this.model === 'title' ||
39
- this.model === 'abstract' ||
40
- this.model === 'legalConstraints' ||
41
- this.model === 'securityConstraints' ||
42
- this.model === 'otherConstraints' ||
43
- this.componentName === 'form-field-constraints-shortcuts');
44
- }
45
- get valueAsString() {
46
- return this.value;
47
- }
48
- get valueAsDate() {
49
- return this.value;
50
- }
51
- get valueAsOverviews() {
52
- return this.value;
53
- }
54
- get valueAsUpdateFrequency() {
55
- return this.value;
56
- }
57
- get valueAsTemporalExtents() {
58
- return this.value;
59
- }
60
- get valueAsKeywords() {
61
- return this.value;
62
- }
63
- get valueAsTopics() {
64
- return this.value;
65
- }
66
- get valueAsConstraints() {
67
- return this.value;
68
- }
69
- get valueAsIndividuals() {
70
- return this.value;
71
- }
72
- get valueAsOnlineResources() {
73
- return this.value;
74
- }
75
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FormFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
76
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FormFieldComponent, isStandalone: true, selector: "gn-ui-form-field", inputs: { uniqueIdentifier: "uniqueIdentifier", model: "model", modelSpecifier: "modelSpecifier", componentName: "componentName", config: "config", value: "value" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "titleInput", first: true, predicate: ["titleInput"], descendants: true }], ngImport: i0, template: "<!-- TEMPORARY - disabling the open data switch -->\n<!-- <ng-container *ngIf=\"model === 'licenses'\">\n <gn-ui-form-field-open-data\n [value]=\"valueAsConstraints\"\n (valueChange)=\"valueChange.emit($event)\"\n (openDataChange)=\"toggleIsOpenData($event)\"\n ></gn-ui-form-field-open-data>\n</ng-container> -->\n<div class=\"flex flex-col h-full\">\n <ng-container *ngIf=\"withoutWrapper; else withGenericWrapper\">\n <ng-container *ngTemplateOutlet=\"fieldContent\"></ng-container>\n </ng-container>\n <ng-template #withGenericWrapper>\n <gn-ui-form-field-wrapper\n [label]=\"config.labelKey! | translate\"\n [hint]=\"config.hintKey! | translate\"\n >\n <ng-container *ngTemplateOutlet=\"fieldContent\"></ng-container>\n </gn-ui-form-field-wrapper>\n </ng-template>\n</div>\n\n<ng-template #fieldContent>\n <ng-container [ngSwitch]=\"model\">\n <ng-container *ngSwitchCase=\"'title'\">\n <div class=\"flex flex-row flex-start items-center gap-3 mb-[12px]\">\n <textarea\n #titleInput\n cdkTextareaAutosize\n #autosize=\"cdkTextareaAutosize\"\n cdkAutosizeMinRows=\"1\"\n data-test=\"recordTitleInput\"\n class=\"grow font-title text-3xl font-normal overflow-hidden text-black/80\"\n (change)=\"valueChange.emit($event.target.value)\"\n [placeholder]=\"\n 'editor.record.form.field.title.placeholder' | translate\n \"\n >{{ valueAsString }}</textarea\n >\n <div class=\"flex flex-row justify-between self-start mt-0.5\">\n <span\n class=\"material-symbols-outlined gn-ui-icon-small m-2 cursor-pointer\"\n (click)=\"focusTitleInput()\"\n >edit</span\n >\n <span\n *ngIf=\"config.hintKey\"\n class=\"material-symbols-outlined gn-ui-icon-small m-2\"\n [matTooltip]=\"config.hintKey! | translate\"\n matTooltipPosition=\"above\"\n >\n help\n </span>\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'abstract'\">\n <gn-ui-form-field-rich\n [label]=\"config.labelKey! | translate\"\n [hint]=\"config.hintKey! | translate\"\n [value]=\"valueAsString\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-rich>\n </ng-container>\n <ng-container *ngSwitchCase=\"'overviews'\">\n <gn-ui-form-field-overviews\n [metadataUuid]=\"uniqueIdentifier\"\n [value]=\"valueAsOverviews\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-overviews>\n </ng-container>\n <ng-container *ngSwitchCase=\"'resourceIdentifier'\">\n <gn-ui-form-field-simple\n [type]=\"'text'\"\n [value]=\"valueAsString\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-simple>\n </ng-container>\n <ng-container *ngSwitchCase=\"'resourceCreated'\">\n <gn-ui-form-field-date\n [value]=\"valueAsDate\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-date>\n </ng-container>\n <ng-container *ngSwitchCase=\"'resourceUpdated'\">\n <gn-ui-form-field-date\n [value]=\"valueAsDate\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-date>\n </ng-container>\n <ng-container *ngSwitchCase=\"'updateFrequency'\">\n <gn-ui-form-field-update-frequency\n [value]=\"valueAsUpdateFrequency\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-update-frequency>\n </ng-container>\n <ng-container *ngSwitchCase=\"'temporalExtents'\">\n <gn-ui-form-field-temporal-extents\n [value]=\"valueAsTemporalExtents\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-temporal-extents>\n </ng-container>\n <ng-container *ngSwitchCase=\"'spatialExtents'\">\n <gn-ui-form-field-spatial-extent></gn-ui-form-field-spatial-extent>\n </ng-container>\n <ng-container *ngSwitchCase=\"'keywords'\">\n <gn-ui-form-field-keywords\n [value]=\"valueAsKeywords\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-keywords>\n </ng-container>\n <ng-container *ngSwitchCase=\"'topics'\">\n <gn-ui-form-field-topics\n [value]=\"valueAsTopics\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-topics>\n </ng-container>\n <ng-container *ngSwitchCase=\"'licenses'\">\n <gn-ui-form-field-license\n [label]=\"config.labelKey! | translate\"\n [recordLicences]=\"valueAsConstraints\"\n (recordLicencesChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-license>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'legalConstraints'\">\n <ng-container *ngTemplateOutlet=\"formFieldConstraints\"></ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'securityConstraints'\">\n <ng-container *ngTemplateOutlet=\"formFieldConstraints\"></ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'otherConstraints'\">\n <ng-container *ngTemplateOutlet=\"formFieldConstraints\"></ng-container\n ></ng-container>\n <ng-template #formFieldConstraints>\n <gn-ui-form-field-constraints\n [label]=\"config.labelKey\"\n [value]=\"valueAsConstraints\"\n [constraintType]=\"model\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-constraints\n ></ng-template>\n\n <ng-container *ngSwitchCase=\"'contactsForResource'\">\n <gn-ui-form-field-contacts-for-resource\n [value]=\"valueAsIndividuals\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-contacts-for-resource>\n </ng-container>\n <ng-container *ngSwitchCase=\"'contacts'\">\n <gn-ui-form-field-contacts\n [value]=\"valueAsIndividuals\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-contacts>\n </ng-container>\n <ng-container *ngSwitchCase=\"'onlineResources'\">\n <gn-ui-form-field-online-resources\n *ngIf=\"modelSpecifier === 'onlineResourceType:!link'\"\n [metadataUuid]=\"uniqueIdentifier\"\n [value]=\"valueAsOnlineResources\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-online-resources>\n </ng-container>\n <ng-container *ngSwitchCase=\"'onlineResources'\">\n <gn-ui-form-field-online-link-resources\n *ngIf=\"modelSpecifier === 'onlineResourceType:link'\"\n [metadataUuid]=\"uniqueIdentifier\"\n [value]=\"valueAsOnlineResources\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-online-link-resources>\n </ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"!model\">\n <ng-container [ngSwitch]=\"componentName\">\n <ng-container *ngSwitchCase=\"'form-field-constraints-shortcuts'\">\n <gn-ui-form-field-constraints-shortcuts></gn-ui-form-field-constraints-shortcuts>\n </ng-container>\n <ng-container *ngSwitchCase=\"'form-field-spatial-toggle'\">\n <gn-ui-form-field-spatial-toggle></gn-ui-form-field-spatial-toggle>\n </ng-container>\n </ng-container>\n </ng-container>\n</ng-template>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "component", type: FormFieldWrapperComponent, selector: "gn-ui-form-field-wrapper", inputs: ["label", "hint"] }, { kind: "component", type: FormFieldLicenseComponent, selector: "gn-ui-form-field-license", inputs: ["label", "recordLicences"], outputs: ["recordLicencesChange"] }, { kind: "component", type: FormFieldDateComponent, selector: "gn-ui-form-field-date", inputs: ["value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldUpdateFrequencyComponent, selector: "gn-ui-form-field-update-frequency", inputs: ["value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldTemporalExtentsComponent, selector: "gn-ui-form-field-temporal-extents", inputs: ["value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldSimpleComponent, selector: "gn-ui-form-field-simple", inputs: ["type", "readonly", "invalid", "placeholder", "value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldRichComponent, selector: "gn-ui-form-field-rich", inputs: ["label", "hint", "placeholder", "value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldSpatialExtentComponent, selector: "gn-ui-form-field-spatial-extent" }, { kind: "component", type: FormFieldKeywordsComponent, selector: "gn-ui-form-field-keywords", inputs: ["value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldOverviewsComponent, selector: "gn-ui-form-field-overviews", inputs: ["metadataUuid", "value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldContactsForResourceComponent, selector: "gn-ui-form-field-contacts-for-resource", inputs: ["value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldOnlineResourcesComponent, selector: "gn-ui-form-field-online-resources", inputs: ["metadataUuid", "value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldOnlineLinkResourcesComponent, selector: "gn-ui-form-field-online-link-resources", inputs: ["metadataUuid", "value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldContactsComponent, selector: "gn-ui-form-field-contacts", inputs: ["value"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldConstraintsComponent, selector: "gn-ui-form-field-constraints", inputs: ["label", "value", "constraintType"], outputs: ["valueChange"] }, { kind: "component", type: FormFieldConstraintsShortcutsComponent, selector: "gn-ui-form-field-constraints-shortcuts" }, { kind: "component", type: FormFieldSpatialToggleComponent, selector: "gn-ui-form-field-spatial-toggle" }, { kind: "component", type: FormFieldTopicsComponent, selector: "gn-ui-form-field-topics", inputs: ["value"], outputs: ["valueChange"] }, { kind: "ngmodule", type: TextFieldModule }, { kind: "directive", type: i3.CdkTextareaAutosize, selector: "textarea[cdkTextareaAutosize]", inputs: ["cdkAutosizeMinRows", "cdkAutosizeMaxRows", "cdkTextareaAutosize", "placeholder"], exportAs: ["cdkTextareaAutosize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
77
- }
78
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FormFieldComponent, decorators: [{
79
- type: Component,
80
- args: [{ selector: 'gn-ui-form-field', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
81
- CommonModule,
82
- TranslatePipe,
83
- MatTooltipModule,
84
- FormFieldWrapperComponent,
85
- FormFieldLicenseComponent,
86
- FormFieldDateComponent,
87
- FormFieldUpdateFrequencyComponent,
88
- FormFieldTemporalExtentsComponent,
89
- FormFieldSimpleComponent,
90
- FormFieldRichComponent,
91
- FormFieldSpatialExtentComponent,
92
- FormFieldKeywordsComponent,
93
- FormFieldOverviewsComponent,
94
- FormFieldContactsForResourceComponent,
95
- FormFieldOnlineResourcesComponent,
96
- FormFieldOnlineLinkResourcesComponent,
97
- FormFieldContactsComponent,
98
- FormFieldConstraintsComponent,
99
- FormFieldConstraintsShortcutsComponent,
100
- FormFieldSpatialToggleComponent,
101
- FormFieldTopicsComponent,
102
- TextFieldModule,
103
- ], template: "<!-- TEMPORARY - disabling the open data switch -->\n<!-- <ng-container *ngIf=\"model === 'licenses'\">\n <gn-ui-form-field-open-data\n [value]=\"valueAsConstraints\"\n (valueChange)=\"valueChange.emit($event)\"\n (openDataChange)=\"toggleIsOpenData($event)\"\n ></gn-ui-form-field-open-data>\n</ng-container> -->\n<div class=\"flex flex-col h-full\">\n <ng-container *ngIf=\"withoutWrapper; else withGenericWrapper\">\n <ng-container *ngTemplateOutlet=\"fieldContent\"></ng-container>\n </ng-container>\n <ng-template #withGenericWrapper>\n <gn-ui-form-field-wrapper\n [label]=\"config.labelKey! | translate\"\n [hint]=\"config.hintKey! | translate\"\n >\n <ng-container *ngTemplateOutlet=\"fieldContent\"></ng-container>\n </gn-ui-form-field-wrapper>\n </ng-template>\n</div>\n\n<ng-template #fieldContent>\n <ng-container [ngSwitch]=\"model\">\n <ng-container *ngSwitchCase=\"'title'\">\n <div class=\"flex flex-row flex-start items-center gap-3 mb-[12px]\">\n <textarea\n #titleInput\n cdkTextareaAutosize\n #autosize=\"cdkTextareaAutosize\"\n cdkAutosizeMinRows=\"1\"\n data-test=\"recordTitleInput\"\n class=\"grow font-title text-3xl font-normal overflow-hidden text-black/80\"\n (change)=\"valueChange.emit($event.target.value)\"\n [placeholder]=\"\n 'editor.record.form.field.title.placeholder' | translate\n \"\n >{{ valueAsString }}</textarea\n >\n <div class=\"flex flex-row justify-between self-start mt-0.5\">\n <span\n class=\"material-symbols-outlined gn-ui-icon-small m-2 cursor-pointer\"\n (click)=\"focusTitleInput()\"\n >edit</span\n >\n <span\n *ngIf=\"config.hintKey\"\n class=\"material-symbols-outlined gn-ui-icon-small m-2\"\n [matTooltip]=\"config.hintKey! | translate\"\n matTooltipPosition=\"above\"\n >\n help\n </span>\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'abstract'\">\n <gn-ui-form-field-rich\n [label]=\"config.labelKey! | translate\"\n [hint]=\"config.hintKey! | translate\"\n [value]=\"valueAsString\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-rich>\n </ng-container>\n <ng-container *ngSwitchCase=\"'overviews'\">\n <gn-ui-form-field-overviews\n [metadataUuid]=\"uniqueIdentifier\"\n [value]=\"valueAsOverviews\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-overviews>\n </ng-container>\n <ng-container *ngSwitchCase=\"'resourceIdentifier'\">\n <gn-ui-form-field-simple\n [type]=\"'text'\"\n [value]=\"valueAsString\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-simple>\n </ng-container>\n <ng-container *ngSwitchCase=\"'resourceCreated'\">\n <gn-ui-form-field-date\n [value]=\"valueAsDate\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-date>\n </ng-container>\n <ng-container *ngSwitchCase=\"'resourceUpdated'\">\n <gn-ui-form-field-date\n [value]=\"valueAsDate\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-date>\n </ng-container>\n <ng-container *ngSwitchCase=\"'updateFrequency'\">\n <gn-ui-form-field-update-frequency\n [value]=\"valueAsUpdateFrequency\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-update-frequency>\n </ng-container>\n <ng-container *ngSwitchCase=\"'temporalExtents'\">\n <gn-ui-form-field-temporal-extents\n [value]=\"valueAsTemporalExtents\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-temporal-extents>\n </ng-container>\n <ng-container *ngSwitchCase=\"'spatialExtents'\">\n <gn-ui-form-field-spatial-extent></gn-ui-form-field-spatial-extent>\n </ng-container>\n <ng-container *ngSwitchCase=\"'keywords'\">\n <gn-ui-form-field-keywords\n [value]=\"valueAsKeywords\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-keywords>\n </ng-container>\n <ng-container *ngSwitchCase=\"'topics'\">\n <gn-ui-form-field-topics\n [value]=\"valueAsTopics\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-topics>\n </ng-container>\n <ng-container *ngSwitchCase=\"'licenses'\">\n <gn-ui-form-field-license\n [label]=\"config.labelKey! | translate\"\n [recordLicences]=\"valueAsConstraints\"\n (recordLicencesChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-license>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'legalConstraints'\">\n <ng-container *ngTemplateOutlet=\"formFieldConstraints\"></ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'securityConstraints'\">\n <ng-container *ngTemplateOutlet=\"formFieldConstraints\"></ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'otherConstraints'\">\n <ng-container *ngTemplateOutlet=\"formFieldConstraints\"></ng-container\n ></ng-container>\n <ng-template #formFieldConstraints>\n <gn-ui-form-field-constraints\n [label]=\"config.labelKey\"\n [value]=\"valueAsConstraints\"\n [constraintType]=\"model\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-constraints\n ></ng-template>\n\n <ng-container *ngSwitchCase=\"'contactsForResource'\">\n <gn-ui-form-field-contacts-for-resource\n [value]=\"valueAsIndividuals\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-contacts-for-resource>\n </ng-container>\n <ng-container *ngSwitchCase=\"'contacts'\">\n <gn-ui-form-field-contacts\n [value]=\"valueAsIndividuals\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-contacts>\n </ng-container>\n <ng-container *ngSwitchCase=\"'onlineResources'\">\n <gn-ui-form-field-online-resources\n *ngIf=\"modelSpecifier === 'onlineResourceType:!link'\"\n [metadataUuid]=\"uniqueIdentifier\"\n [value]=\"valueAsOnlineResources\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-online-resources>\n </ng-container>\n <ng-container *ngSwitchCase=\"'onlineResources'\">\n <gn-ui-form-field-online-link-resources\n *ngIf=\"modelSpecifier === 'onlineResourceType:link'\"\n [metadataUuid]=\"uniqueIdentifier\"\n [value]=\"valueAsOnlineResources\"\n (valueChange)=\"valueChange.emit($event)\"\n ></gn-ui-form-field-online-link-resources>\n </ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"!model\">\n <ng-container [ngSwitch]=\"componentName\">\n <ng-container *ngSwitchCase=\"'form-field-constraints-shortcuts'\">\n <gn-ui-form-field-constraints-shortcuts></gn-ui-form-field-constraints-shortcuts>\n </ng-container>\n <ng-container *ngSwitchCase=\"'form-field-spatial-toggle'\">\n <gn-ui-form-field-spatial-toggle></gn-ui-form-field-spatial-toggle>\n </ng-container>\n </ng-container>\n </ng-container>\n</ng-template>\n" }]
104
- }], propDecorators: { uniqueIdentifier: [{
105
- type: Input
106
- }], model: [{
107
- type: Input
108
- }], modelSpecifier: [{
109
- type: Input
110
- }], componentName: [{
111
- type: Input
112
- }], config: [{
113
- type: Input
114
- }], value: [{
115
- type: Input
116
- }], valueChange: [{
117
- type: Output
118
- }], titleInput: [{
119
- type: ViewChild,
120
- args: ['titleInput']
121
- }] } });
122
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZWRpdG9yL3NyYy9saWIvY29tcG9uZW50cy9yZWNvcmQtZm9ybS9mb3JtLWZpZWxkL2Zvcm0tZmllbGQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTtBQUM5QyxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsWUFBWSxFQUNaLEtBQUssRUFDTCxNQUFNLEVBQ04sU0FBUyxHQUNWLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFBO0FBVzVELE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDRDQUE0QyxDQUFBO0FBQ3RGLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTtBQUNuRCxPQUFPLEVBQ0wsc0JBQXNCLEVBQ3RCLHlCQUF5QixFQUN6QixpQ0FBaUMsR0FDbEMsTUFBTSxHQUFHLENBQUE7QUFNVixPQUFPLEVBQUUscUNBQXFDLEVBQUUsTUFBTSwrRUFBK0UsQ0FBQTtBQUNySSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxxREFBcUQsQ0FBQTtBQUNoRyxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxxREFBcUQsQ0FBQTtBQUNoRyxPQUFPLEVBQUUscUNBQXFDLEVBQUUsTUFBTSwrRUFBK0UsQ0FBQTtBQUNySSxPQUFPLEVBQUUsaUNBQWlDLEVBQUUsTUFBTSxxRUFBcUUsQ0FBQTtBQUN2SCxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSx1REFBdUQsQ0FBQTtBQUNuRyxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQTtBQUNwRixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQTtBQUMxRixPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSxpRUFBaUUsQ0FBQTtBQUNqSCxPQUFPLEVBQUUsaUNBQWlDLEVBQUUsTUFBTSxxRUFBcUUsQ0FBQTtBQUN2SCxPQUFPLEVBQUUsc0NBQXNDLEVBQUUsTUFBTSwrRUFBK0UsQ0FBQTtBQUN0SSxPQUFPLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSwyREFBMkQsQ0FBQTtBQUN6RyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0seUJBQXlCLENBQUE7QUFDekQsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0saUVBQWlFLENBQUE7QUFDakgsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0saURBQWlELENBQUE7Ozs7O0FBaUMxRixNQUFNLE9BQU8sa0JBQWtCO0lBL0IvQjtRQXdDWSxnQkFBVyxHQUEwQixJQUFJLFlBQVksRUFBRSxDQUFBO1FBR2pFLGVBQVUsR0FBRyxLQUFLLENBQUE7S0FvRG5CO0lBbERDLGdCQUFnQixDQUFDLEtBQWM7UUFDN0IsSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLENBQUE7SUFDekIsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxLQUFLLEVBQUUsQ0FBQTtJQUN2QyxDQUFDO0lBRUQsSUFBSSxjQUFjO1FBQ2hCLE9BQU8sQ0FDTCxJQUFJLENBQUMsS0FBSyxLQUFLLE9BQU87WUFDdEIsSUFBSSxDQUFDLEtBQUssS0FBSyxVQUFVO1lBQ3pCLElBQUksQ0FBQyxLQUFLLEtBQUssa0JBQWtCO1lBQ2pDLElBQUksQ0FBQyxLQUFLLEtBQUsscUJBQXFCO1lBQ3BDLElBQUksQ0FBQyxLQUFLLEtBQUssa0JBQWtCO1lBQ2pDLElBQUksQ0FBQyxhQUFhLEtBQUssa0NBQWtDLENBQzFELENBQUE7SUFDSCxDQUFDO0lBRUQsSUFBSSxhQUFhO1FBQ2YsT0FBTyxJQUFJLENBQUMsS0FBZSxDQUFBO0lBQzdCLENBQUM7SUFDRCxJQUFJLFdBQVc7UUFDYixPQUFPLElBQUksQ0FBQyxLQUFhLENBQUE7SUFDM0IsQ0FBQztJQUVELElBQUksZ0JBQWdCO1FBQ2xCLE9BQU8sSUFBSSxDQUFDLEtBQStCLENBQUE7SUFDN0MsQ0FBQztJQUNELElBQUksc0JBQXNCO1FBQ3hCLE9BQU8sSUFBSSxDQUFDLEtBQXdCLENBQUE7SUFDdEMsQ0FBQztJQUNELElBQUksc0JBQXNCO1FBQ3hCLE9BQU8sSUFBSSxDQUFDLEtBQXFDLENBQUE7SUFDbkQsQ0FBQztJQUNELElBQUksZUFBZTtRQUNqQixPQUFPLElBQUksQ0FBQyxLQUF1QixDQUFBO0lBQ3JDLENBQUM7SUFDRCxJQUFJLGFBQWE7UUFDZixPQUFPLElBQUksQ0FBQyxLQUFzQixDQUFBO0lBQ3BDLENBQUM7SUFDRCxJQUFJLGtCQUFrQjtRQUNwQixPQUFPLElBQUksQ0FBQyxLQUEwQixDQUFBO0lBQ3hDLENBQUM7SUFDRCxJQUFJLGtCQUFrQjtRQUNwQixPQUFPLElBQUksQ0FBQyxLQUEwQixDQUFBO0lBQ3hDLENBQUM7SUFDRCxJQUFJLHNCQUFzQjtRQUN4QixPQUFPLElBQUksQ0FBQyxLQUE4QixDQUFBO0lBQzVDLENBQUM7K0dBL0RVLGtCQUFrQjttR0FBbEIsa0JBQWtCLHFZQ2hGL0IsaXVPQXdMQSx5RERoSUksWUFBWSxpZUFDWixhQUFhLGlEQUNiLGdCQUFnQiw2VEFDaEIseUJBQXlCLGdHQUN6Qix5QkFBeUIsNklBQ3pCLHNCQUFzQiwrR0FDdEIsaUNBQWlDLDJIQUNqQyxpQ0FBaUMsMkhBQ2pDLHdCQUF3QiwrSkFDeEIsc0JBQXNCLCtJQUN0QiwrQkFBK0IsNEVBQy9CLDBCQUEwQixtSEFDMUIsMkJBQTJCLG9JQUMzQixxQ0FBcUMsZ0lBQ3JDLGlDQUFpQywySUFDakMscUNBQXFDLGdKQUNyQywwQkFBMEIsbUhBQzFCLDZCQUE2QixpSkFDN0Isc0NBQXNDLG1GQUN0QywrQkFBK0IsNEVBQy9CLHdCQUF3QixnSEFDeEIsZUFBZTs7NEZBR04sa0JBQWtCO2tCQS9COUIsU0FBUzsrQkFDRSxrQkFBa0IsbUJBR1gsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1A7d0JBQ1AsWUFBWTt3QkFDWixhQUFhO3dCQUNiLGdCQUFnQjt3QkFDaEIseUJBQXlCO3dCQUN6Qix5QkFBeUI7d0JBQ3pCLHNCQUFzQjt3QkFDdEIsaUNBQWlDO3dCQUNqQyxpQ0FBaUM7d0JBQ2pDLHdCQUF3Qjt3QkFDeEIsc0JBQXNCO3dCQUN0QiwrQkFBK0I7d0JBQy9CLDBCQUEwQjt3QkFDMUIsMkJBQTJCO3dCQUMzQixxQ0FBcUM7d0JBQ3JDLGlDQUFpQzt3QkFDakMscUNBQXFDO3dCQUNyQywwQkFBMEI7d0JBQzFCLDZCQUE2Qjt3QkFDN0Isc0NBQXNDO3dCQUN0QywrQkFBK0I7d0JBQy9CLHdCQUF3Qjt3QkFDeEIsZUFBZTtxQkFDaEI7OEJBR1EsZ0JBQWdCO3NCQUF4QixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxjQUFjO3NCQUF0QixLQUFLO2dCQUNHLGFBQWE7c0JBQXJCLEtBQUs7Z0JBRUcsTUFBTTtzQkFBZCxLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFFSSxXQUFXO3NCQUFwQixNQUFNO2dCQUVrQixVQUFVO3NCQUFsQyxTQUFTO3VCQUFDLFlBQVkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nXG5pbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBFbGVtZW50UmVmLFxuICBFdmVudEVtaXR0ZXIsXG4gIElucHV0LFxuICBPdXRwdXQsXG4gIFZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IE1hdFRvb2x0aXBNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC90b29sdGlwJ1xuaW1wb3J0IHtcbiAgQ2F0YWxvZ1JlY29yZEtleXMsXG4gIENvbnN0cmFpbnQsXG4gIERhdGFzZXRUZW1wb3JhbEV4dGVudCxcbiAgR3JhcGhpY092ZXJ2aWV3LFxuICBJbmRpdmlkdWFsLFxuICBLZXl3b3JkLFxuICBPbmxpbmVSZXNvdXJjZSxcbiAgVXBkYXRlRnJlcXVlbmN5LFxufSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbW1vbi9kb21haW4vc3JjL2xpYi9tb2RlbC9yZWNvcmQnXG5pbXBvcnQgeyBGb3JtRmllbGRXcmFwcGVyQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9sYXlvdXQvc3JjJ1xuaW1wb3J0IHsgVHJhbnNsYXRlUGlwZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnXG5pbXBvcnQge1xuICBGb3JtRmllbGREYXRlQ29tcG9uZW50LFxuICBGb3JtRmllbGRMaWNlbnNlQ29tcG9uZW50LFxuICBGb3JtRmllbGRUZW1wb3JhbEV4dGVudHNDb21wb25lbnQsXG59IGZyb20gJy4nXG5pbXBvcnQge1xuICBGaWVsZE1vZGVsU3BlY2lmaWVyLFxuICBGb3JtRmllbGRDb21wb25lbnROYW1lLFxuICBGb3JtRmllbGRDb25maWcsXG59IGZyb20gJy4uLy4uLy4uL21vZGVscydcbmltcG9ydCB7IEZvcm1GaWVsZENvbnRhY3RzRm9yUmVzb3VyY2VDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tZmllbGQtY29udGFjdHMtZm9yLXJlc291cmNlL2Zvcm0tZmllbGQtY29udGFjdHMtZm9yLXJlc291cmNlLmNvbXBvbmVudCdcbmltcG9ydCB7IEZvcm1GaWVsZENvbnRhY3RzQ29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLWZpZWxkLWNvbnRhY3RzL2Zvcm0tZmllbGQtY29udGFjdHMuY29tcG9uZW50J1xuaW1wb3J0IHsgRm9ybUZpZWxkS2V5d29yZHNDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tZmllbGQta2V5d29yZHMvZm9ybS1maWVsZC1rZXl3b3Jkcy5jb21wb25lbnQnXG5pbXBvcnQgeyBGb3JtRmllbGRPbmxpbmVMaW5rUmVzb3VyY2VzQ29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLWZpZWxkLW9ubGluZS1saW5rLXJlc291cmNlcy9mb3JtLWZpZWxkLW9ubGluZS1saW5rLXJlc291cmNlcy5jb21wb25lbnQnXG5pbXBvcnQgeyBGb3JtRmllbGRPbmxpbmVSZXNvdXJjZXNDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tZmllbGQtb25saW5lLXJlc291cmNlcy9mb3JtLWZpZWxkLW9ubGluZS1yZXNvdXJjZXMuY29tcG9uZW50J1xuaW1wb3J0IHsgRm9ybUZpZWxkT3ZlcnZpZXdzQ29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLWZpZWxkLW92ZXJ2aWV3cy9mb3JtLWZpZWxkLW92ZXJ2aWV3cy5jb21wb25lbnQnXG5pbXBvcnQgeyBGb3JtRmllbGRSaWNoQ29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLWZpZWxkLXJpY2gvZm9ybS1maWVsZC1yaWNoLmNvbXBvbmVudCdcbmltcG9ydCB7IEZvcm1GaWVsZFNpbXBsZUNvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1maWVsZC1zaW1wbGUvZm9ybS1maWVsZC1zaW1wbGUuY29tcG9uZW50J1xuaW1wb3J0IHsgRm9ybUZpZWxkU3BhdGlhbEV4dGVudENvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1maWVsZC1zcGF0aWFsLWV4dGVudC9mb3JtLWZpZWxkLXNwYXRpYWwtZXh0ZW50LmNvbXBvbmVudCdcbmltcG9ydCB7IEZvcm1GaWVsZFVwZGF0ZUZyZXF1ZW5jeUNvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1maWVsZC11cGRhdGUtZnJlcXVlbmN5L2Zvcm0tZmllbGQtdXBkYXRlLWZyZXF1ZW5jeS5jb21wb25lbnQnXG5pbXBvcnQgeyBGb3JtRmllbGRDb25zdHJhaW50c1Nob3J0Y3V0c0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1maWVsZC1jb25zdHJhaW50cy1zaG9ydGN1dHMvZm9ybS1maWVsZC1jb25zdHJhaW50cy1zaG9ydGN1dHMuY29tcG9uZW50J1xuaW1wb3J0IHsgRm9ybUZpZWxkQ29uc3RyYWludHNDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tZmllbGQtY29uc3RyYWludHMvZm9ybS1maWVsZC1jb25zdHJhaW50cy5jb21wb25lbnQnXG5pbXBvcnQgeyBUZXh0RmllbGRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jZGsvdGV4dC1maWVsZCdcbmltcG9ydCB7IEZvcm1GaWVsZFNwYXRpYWxUb2dnbGVDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tZmllbGQtc3BhdGlhbC10b2dnbGUvZm9ybS1maWVsZC1zcGF0aWFsLXRvZ2dsZS5jb21wb25lbnQnXG5pbXBvcnQgeyBGb3JtRmllbGRUb3BpY3NDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tZmllbGQtdG9waWNzL2Zvcm0tZmllbGQtdG9waWNzLmNvbXBvbmVudCdcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktZm9ybS1maWVsZCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLWZpZWxkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZm9ybS1maWVsZC5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIFRyYW5zbGF0ZVBpcGUsXG4gICAgTWF0VG9vbHRpcE1vZHVsZSxcbiAgICBGb3JtRmllbGRXcmFwcGVyQ29tcG9uZW50LFxuICAgIEZvcm1GaWVsZExpY2Vuc2VDb21wb25lbnQsXG4gICAgRm9ybUZpZWxkRGF0ZUNvbXBvbmVudCxcbiAgICBGb3JtRmllbGRVcGRhdGVGcmVxdWVuY3lDb21wb25lbnQsXG4gICAgRm9ybUZpZWxkVGVtcG9yYWxFeHRlbnRzQ29tcG9uZW50LFxuICAgIEZvcm1GaWVsZFNpbXBsZUNvbXBvbmVudCxcbiAgICBGb3JtRmllbGRSaWNoQ29tcG9uZW50LFxuICAgIEZvcm1GaWVsZFNwYXRpYWxFeHRlbnRDb21wb25lbnQsXG4gICAgRm9ybUZpZWxkS2V5d29yZHNDb21wb25lbnQsXG4gICAgRm9ybUZpZWxkT3ZlcnZpZXdzQ29tcG9uZW50LFxuICAgIEZvcm1GaWVsZENvbnRhY3RzRm9yUmVzb3VyY2VDb21wb25lbnQsXG4gICAgRm9ybUZpZWxkT25saW5lUmVzb3VyY2VzQ29tcG9uZW50LFxuICAgIEZvcm1GaWVsZE9ubGluZUxpbmtSZXNvdXJjZXNDb21wb25lbnQsXG4gICAgRm9ybUZpZWxkQ29udGFjdHNDb21wb25lbnQsXG4gICAgRm9ybUZpZWxkQ29uc3RyYWludHNDb21wb25lbnQsXG4gICAgRm9ybUZpZWxkQ29uc3RyYWludHNTaG9ydGN1dHNDb21wb25lbnQsXG4gICAgRm9ybUZpZWxkU3BhdGlhbFRvZ2dsZUNvbXBvbmVudCxcbiAgICBGb3JtRmllbGRUb3BpY3NDb21wb25lbnQsXG4gICAgVGV4dEZpZWxkTW9kdWxlLFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBGb3JtRmllbGRDb21wb25lbnQge1xuICBASW5wdXQoKSB1bmlxdWVJZGVudGlmaWVyOiBzdHJpbmdcbiAgQElucHV0KCkgbW9kZWw6IENhdGFsb2dSZWNvcmRLZXlzXG4gIEBJbnB1dCgpIG1vZGVsU3BlY2lmaWVyOiBGaWVsZE1vZGVsU3BlY2lmaWVyXG4gIEBJbnB1dCgpIGNvbXBvbmVudE5hbWU6IEZvcm1GaWVsZENvbXBvbmVudE5hbWVcblxuICBASW5wdXQoKSBjb25maWc6IEZvcm1GaWVsZENvbmZpZ1xuICBASW5wdXQoKSB2YWx1ZTogdW5rbm93blxuXG4gIEBPdXRwdXQoKSB2YWx1ZUNoYW5nZTogRXZlbnRFbWl0dGVyPHVua25vd24+ID0gbmV3IEV2ZW50RW1pdHRlcigpXG5cbiAgQFZpZXdDaGlsZCgndGl0bGVJbnB1dCcpIHRpdGxlSW5wdXQ6IEVsZW1lbnRSZWZcbiAgaXNPcGVuRGF0YSA9IGZhbHNlXG5cbiAgdG9nZ2xlSXNPcGVuRGF0YShldmVudDogYm9vbGVhbikge1xuICAgIHRoaXMuaXNPcGVuRGF0YSA9IGV2ZW50XG4gIH1cblxuICBmb2N1c1RpdGxlSW5wdXQoKSB7XG4gICAgdGhpcy50aXRsZUlucHV0Lm5hdGl2ZUVsZW1lbnQuZm9jdXMoKVxuICB9XG5cbiAgZ2V0IHdpdGhvdXRXcmFwcGVyKCkge1xuICAgIHJldHVybiAoXG4gICAgICB0aGlzLm1vZGVsID09PSAndGl0bGUnIHx8XG4gICAgICB0aGlzLm1vZGVsID09PSAnYWJzdHJhY3QnIHx8XG4gICAgICB0aGlzLm1vZGVsID09PSAnbGVnYWxDb25zdHJhaW50cycgfHxcbiAgICAgIHRoaXMubW9kZWwgPT09ICdzZWN1cml0eUNvbnN0cmFpbnRzJyB8fFxuICAgICAgdGhpcy5tb2RlbCA9PT0gJ290aGVyQ29uc3RyYWludHMnIHx8XG4gICAgICB0aGlzLmNvbXBvbmVudE5hbWUgPT09ICdmb3JtLWZpZWxkLWNvbnN0cmFpbnRzLXNob3J0Y3V0cydcbiAgICApXG4gIH1cblxuICBnZXQgdmFsdWVBc1N0cmluZygpIHtcbiAgICByZXR1cm4gdGhpcy52YWx1ZSBhcyBzdHJpbmdcbiAgfVxuICBnZXQgdmFsdWVBc0RhdGUoKSB7XG4gICAgcmV0dXJuIHRoaXMudmFsdWUgYXMgRGF0ZVxuICB9XG5cbiAgZ2V0IHZhbHVlQXNPdmVydmlld3MoKSB7XG4gICAgcmV0dXJuIHRoaXMudmFsdWUgYXMgQXJyYXk8R3JhcGhpY092ZXJ2aWV3PlxuICB9XG4gIGdldCB2YWx1ZUFzVXBkYXRlRnJlcXVlbmN5KCkge1xuICAgIHJldHVybiB0aGlzLnZhbHVlIGFzIFVwZGF0ZUZyZXF1ZW5jeVxuICB9XG4gIGdldCB2YWx1ZUFzVGVtcG9yYWxFeHRlbnRzKCkge1xuICAgIHJldHVybiB0aGlzLnZhbHVlIGFzIEFycmF5PERhdGFzZXRUZW1wb3JhbEV4dGVudD5cbiAgfVxuICBnZXQgdmFsdWVBc0tleXdvcmRzKCkge1xuICAgIHJldHVybiB0aGlzLnZhbHVlIGFzIEFycmF5PEtleXdvcmQ+XG4gIH1cbiAgZ2V0IHZhbHVlQXNUb3BpY3MoKSB7XG4gICAgcmV0dXJuIHRoaXMudmFsdWUgYXMgQXJyYXk8c3RyaW5nPlxuICB9XG4gIGdldCB2YWx1ZUFzQ29uc3RyYWludHMoKSB7XG4gICAgcmV0dXJuIHRoaXMudmFsdWUgYXMgQXJyYXk8Q29uc3RyYWludD5cbiAgfVxuICBnZXQgdmFsdWVBc0luZGl2aWR1YWxzKCkge1xuICAgIHJldHVybiB0aGlzLnZhbHVlIGFzIEFycmF5PEluZGl2aWR1YWw+XG4gIH1cbiAgZ2V0IHZhbHVlQXNPbmxpbmVSZXNvdXJjZXMoKSB7XG4gICAgcmV0dXJuIHRoaXMudmFsdWUgYXMgQXJyYXk8T25saW5lUmVzb3VyY2U+XG4gIH1cbn1cbiIsIjwhLS0gVEVNUE9SQVJZIC0gZGlzYWJsaW5nIHRoZSBvcGVuIGRhdGEgc3dpdGNoIC0tPlxuPCEtLSA8bmctY29udGFpbmVyICpuZ0lmPVwibW9kZWwgPT09ICdsaWNlbnNlcydcIj5cbiAgPGduLXVpLWZvcm0tZmllbGQtb3Blbi1kYXRhXG4gICAgW3ZhbHVlXT1cInZhbHVlQXNDb25zdHJhaW50c1wiXG4gICAgKHZhbHVlQ2hhbmdlKT1cInZhbHVlQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4gICAgKG9wZW5EYXRhQ2hhbmdlKT1cInRvZ2dsZUlzT3BlbkRhdGEoJGV2ZW50KVwiXG4gID48L2duLXVpLWZvcm0tZmllbGQtb3Blbi1kYXRhPlxuPC9uZy1jb250YWluZXI+IC0tPlxuPGRpdiBjbGFzcz1cImZsZXggZmxleC1jb2wgaC1mdWxsXCI+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJ3aXRob3V0V3JhcHBlcjsgZWxzZSB3aXRoR2VuZXJpY1dyYXBwZXJcIj5cbiAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiZmllbGRDb250ZW50XCI+PC9uZy1jb250YWluZXI+XG4gIDwvbmctY29udGFpbmVyPlxuICA8bmctdGVtcGxhdGUgI3dpdGhHZW5lcmljV3JhcHBlcj5cbiAgICA8Z24tdWktZm9ybS1maWVsZC13cmFwcGVyXG4gICAgICBbbGFiZWxdPVwiY29uZmlnLmxhYmVsS2V5ISB8IHRyYW5zbGF0ZVwiXG4gICAgICBbaGludF09XCJjb25maWcuaGludEtleSEgfCB0cmFuc2xhdGVcIlxuICAgID5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJmaWVsZENvbnRlbnRcIj48L25nLWNvbnRhaW5lcj5cbiAgICA8L2duLXVpLWZvcm0tZmllbGQtd3JhcHBlcj5cbiAgPC9uZy10ZW1wbGF0ZT5cbjwvZGl2PlxuXG48bmctdGVtcGxhdGUgI2ZpZWxkQ29udGVudD5cbiAgPG5nLWNvbnRhaW5lciBbbmdTd2l0Y2hdPVwibW9kZWxcIj5cbiAgICA8bmctY29udGFpbmVyICpuZ1N3aXRjaENhc2U9XCIndGl0bGUnXCI+XG4gICAgICA8ZGl2IGNsYXNzPVwiZmxleCBmbGV4LXJvdyBmbGV4LXN0YXJ0IGl0ZW1zLWNlbnRlciBnYXAtMyBtYi1bMTJweF1cIj5cbiAgICAgICAgPHRleHRhcmVhXG4gICAgICAgICAgI3RpdGxlSW5wdXRcbiAgICAgICAgICBjZGtUZXh0YXJlYUF1dG9zaXplXG4gICAgICAgICAgI2F1dG9zaXplPVwiY2RrVGV4dGFyZWFBdXRvc2l6ZVwiXG4gICAgICAgICAgY2RrQXV0b3NpemVNaW5Sb3dzPVwiMVwiXG4gICAgICAgICAgZGF0YS10ZXN0PVwicmVjb3JkVGl0bGVJbnB1dFwiXG4gICAgICAgICAgY2xhc3M9XCJncm93IGZvbnQtdGl0bGUgdGV4dC0zeGwgZm9udC1ub3JtYWwgb3ZlcmZsb3ctaGlkZGVuIHRleHQtYmxhY2svODBcIlxuICAgICAgICAgIChjaGFuZ2UpPVwidmFsdWVDaGFuZ2UuZW1pdCgkZXZlbnQudGFyZ2V0LnZhbHVlKVwiXG4gICAgICAgICAgW3BsYWNlaG9sZGVyXT1cIlxuICAgICAgICAgICAgJ2VkaXRvci5yZWNvcmQuZm9ybS5maWVsZC50aXRsZS5wbGFjZWhvbGRlcicgfCB0cmFuc2xhdGVcbiAgICAgICAgICBcIlxuICAgICAgICAgID57eyB2YWx1ZUFzU3RyaW5nIH19PC90ZXh0YXJlYVxuICAgICAgICA+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGZsZXgtcm93IGp1c3RpZnktYmV0d2VlbiBzZWxmLXN0YXJ0IG10LTAuNVwiPlxuICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgZ24tdWktaWNvbi1zbWFsbCBtLTIgY3Vyc29yLXBvaW50ZXJcIlxuICAgICAgICAgICAgKGNsaWNrKT1cImZvY3VzVGl0bGVJbnB1dCgpXCJcbiAgICAgICAgICAgID5lZGl0PC9zcGFuXG4gICAgICAgICAgPlxuICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICAqbmdJZj1cImNvbmZpZy5oaW50S2V5XCJcbiAgICAgICAgICAgIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBnbi11aS1pY29uLXNtYWxsIG0tMlwiXG4gICAgICAgICAgICBbbWF0VG9vbHRpcF09XCJjb25maWcuaGludEtleSEgfCB0cmFuc2xhdGVcIlxuICAgICAgICAgICAgbWF0VG9vbHRpcFBvc2l0aW9uPVwiYWJvdmVcIlxuICAgICAgICAgID5cbiAgICAgICAgICAgIGhlbHBcbiAgICAgICAgICA8L3NwYW4+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ2Fic3RyYWN0J1wiPlxuICAgICAgPGduLXVpLWZvcm0tZmllbGQtcmljaFxuICAgICAgICBbbGFiZWxdPVwiY29uZmlnLmxhYmVsS2V5ISB8IHRyYW5zbGF0ZVwiXG4gICAgICAgIFtoaW50XT1cImNvbmZpZy5oaW50S2V5ISB8IHRyYW5zbGF0ZVwiXG4gICAgICAgIFt2YWx1ZV09XCJ2YWx1ZUFzU3RyaW5nXCJcbiAgICAgICAgKHZhbHVlQ2hhbmdlKT1cInZhbHVlQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4gICAgICA+PC9nbi11aS1mb3JtLWZpZWxkLXJpY2g+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ292ZXJ2aWV3cydcIj5cbiAgICAgIDxnbi11aS1mb3JtLWZpZWxkLW92ZXJ2aWV3c1xuICAgICAgICBbbWV0YWRhdGFVdWlkXT1cInVuaXF1ZUlkZW50aWZpZXJcIlxuICAgICAgICBbdmFsdWVdPVwidmFsdWVBc092ZXJ2aWV3c1wiXG4gICAgICAgICh2YWx1ZUNoYW5nZSk9XCJ2YWx1ZUNoYW5nZS5lbWl0KCRldmVudClcIlxuICAgICAgPjwvZ24tdWktZm9ybS1maWVsZC1vdmVydmlld3M+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ3Jlc291cmNlSWRlbnRpZmllcidcIj5cbiAgICAgIDxnbi11aS1mb3JtLWZpZWxkLXNpbXBsZVxuICAgICAgICBbdHlwZV09XCIndGV4dCdcIlxuICAgICAgICBbdmFsdWVdPVwidmFsdWVBc1N0cmluZ1wiXG4gICAgICAgICh2YWx1ZUNoYW5nZSk9XCJ2YWx1ZUNoYW5nZS5lbWl0KCRldmVudClcIlxuICAgICAgPjwvZ24tdWktZm9ybS1maWVsZC1zaW1wbGU+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ3Jlc291cmNlQ3JlYXRlZCdcIj5cbiAgICAgIDxnbi11aS1mb3JtLWZpZWxkLWRhdGVcbiAgICAgICAgW3ZhbHVlXT1cInZhbHVlQXNEYXRlXCJcbiAgICAgICAgKHZhbHVlQ2hhbmdlKT1cInZhbHVlQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4gICAgICA+PC9nbi11aS1mb3JtLWZpZWxkLWRhdGU+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ3Jlc291cmNlVXBkYXRlZCdcIj5cbiAgICAgIDxnbi11aS1mb3JtLWZpZWxkLWRhdGVcbiAgICAgICAgW3ZhbHVlXT1cInZhbHVlQXNEYXRlXCJcbiAgICAgICAgKHZhbHVlQ2hhbmdlKT1cInZhbHVlQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4gICAgICA+PC9nbi11aS1mb3JtLWZpZWxkLWRhdGU+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ3VwZGF0ZUZyZXF1ZW5jeSdcIj5cbiAgICAgIDxnbi11aS1mb3JtLWZpZWxkLXVwZGF0ZS1mcmVxdWVuY3lcbiAgICAgICAgW3ZhbHVlXT1cInZhbHVlQXNVcGRhdGVGcmVxdWVuY3lcIlxuICAgICAgICAodmFsdWVDaGFuZ2UpPVwidmFsdWVDaGFuZ2UuZW1pdCgkZXZlbnQpXCJcbiAgICAgID48L2duLXVpLWZvcm0tZmllbGQtdXBkYXRlLWZyZXF1ZW5jeT5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8bmctY29udGFpbmVyICpuZ1N3aXRjaENhc2U9XCIndGVtcG9yYWxFeHRlbnRzJ1wiPlxuICAgICAgPGduLXVpLWZvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50c1xuICAgICAgICBbdmFsdWVdPVwidmFsdWVBc1RlbXBvcmFsRXh0ZW50c1wiXG4gICAgICAgICh2YWx1ZUNoYW5nZSk9XCJ2YWx1ZUNoYW5nZS5lbWl0KCRldmVudClcIlxuICAgICAgPjwvZ24tdWktZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzPlxuICAgIDwvbmctY29udGFpbmVyPlxuICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIidzcGF0aWFsRXh0ZW50cydcIj5cbiAgICAgIDxnbi11aS1mb3JtLWZpZWxkLXNwYXRpYWwtZXh0ZW50PjwvZ24tdWktZm9ybS1maWVsZC1zcGF0aWFsLWV4dGVudD5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8bmctY29udGFpbmVyICpuZ1N3aXRjaENhc2U9XCIna2V5d29yZHMnXCI+XG4gICAgICA8Z24tdWktZm9ybS1maWVsZC1rZXl3b3Jkc1xuICAgICAgICBbdmFsdWVdPVwidmFsdWVBc0tleXdvcmRzXCJcbiAgICAgICAgKHZhbHVlQ2hhbmdlKT1cInZhbHVlQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4gICAgICA+PC9nbi11aS1mb3JtLWZpZWxkLWtleXdvcmRzPlxuICAgIDwvbmctY29udGFpbmVyPlxuICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIid0b3BpY3MnXCI+XG4gICAgICA8Z24tdWktZm9ybS1maWVsZC10b3BpY3NcbiAgICAgICAgW3ZhbHVlXT1cInZhbHVlQXNUb3BpY3NcIlxuICAgICAgICAodmFsdWVDaGFuZ2UpPVwidmFsdWVDaGFuZ2UuZW1pdCgkZXZlbnQpXCJcbiAgICAgID48L2duLXVpLWZvcm0tZmllbGQtdG9waWNzPlxuICAgIDwvbmctY29udGFpbmVyPlxuICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIidsaWNlbnNlcydcIj5cbiAgICAgIDxnbi11aS1mb3JtLWZpZWxkLWxpY2Vuc2VcbiAgICAgICAgW2xhYmVsXT1cImNvbmZpZy5sYWJlbEtleSEgfCB0cmFuc2xhdGVcIlxuICAgICAgICBbcmVjb3JkTGljZW5jZXNdPVwidmFsdWVBc0NvbnN0cmFpbnRzXCJcbiAgICAgICAgKHJlY29yZExpY2VuY2VzQ2hhbmdlKT1cInZhbHVlQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4gICAgICA+PC9nbi11aS1mb3JtLWZpZWxkLWxpY2Vuc2U+XG4gICAgPC9uZy1jb250YWluZXI+XG5cbiAgICA8bmctY29udGFpbmVyICpuZ1N3aXRjaENhc2U9XCInbGVnYWxDb25zdHJhaW50cydcIj5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJmb3JtRmllbGRDb25zdHJhaW50c1wiPjwvbmctY29udGFpbmVyPlxuICAgIDwvbmctY29udGFpbmVyPlxuICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIidzZWN1cml0eUNvbnN0cmFpbnRzJ1wiPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImZvcm1GaWVsZENvbnN0cmFpbnRzXCI+PC9uZy1jb250YWluZXI+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ290aGVyQ29uc3RyYWludHMnXCI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiZm9ybUZpZWxkQ29uc3RyYWludHNcIj48L25nLWNvbnRhaW5lclxuICAgID48L25nLWNvbnRhaW5lcj5cbiAgICA8bmctdGVtcGxhdGUgI2Zvcm1GaWVsZENvbnN0cmFpbnRzPlxuICAgICAgPGduLXVpLWZvcm0tZmllbGQtY29uc3RyYWludHNcbiAgICAgICAgW2xhYmVsXT1cImNvbmZpZy5sYWJlbEtleVwiXG4gICAgICAgIFt2YWx1ZV09XCJ2YWx1ZUFzQ29uc3RyYWludHNcIlxuICAgICAgICBbY29uc3RyYWludFR5cGVdPVwibW9kZWxcIlxuICAgICAgICAodmFsdWVDaGFuZ2UpPVwidmFsdWVDaGFuZ2UuZW1pdCgkZXZlbnQpXCJcbiAgICAgID48L2duLXVpLWZvcm0tZmllbGQtY29uc3RyYWludHNcbiAgICA+PC9uZy10ZW1wbGF0ZT5cblxuICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIidjb250YWN0c0ZvclJlc291cmNlJ1wiPlxuICAgICAgPGduLXVpLWZvcm0tZmllbGQtY29udGFjdHMtZm9yLXJlc291cmNlXG4gICAgICAgIFt2YWx1ZV09XCJ2YWx1ZUFzSW5kaXZpZHVhbHNcIlxuICAgICAgICAodmFsdWVDaGFuZ2UpPVwidmFsdWVDaGFuZ2UuZW1pdCgkZXZlbnQpXCJcbiAgICAgID48L2duLXVpLWZvcm0tZmllbGQtY29udGFjdHMtZm9yLXJlc291cmNlPlxuICAgIDwvbmctY29udGFpbmVyPlxuICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIidjb250YWN0cydcIj5cbiAgICAgIDxnbi11aS1mb3JtLWZpZWxkLWNvbnRhY3RzXG4gICAgICAgIFt2YWx1ZV09XCJ2YWx1ZUFzSW5kaXZpZHVhbHNcIlxuICAgICAgICAodmFsdWVDaGFuZ2UpPVwidmFsdWVDaGFuZ2UuZW1pdCgkZXZlbnQpXCJcbiAgICAgID48L2duLXVpLWZvcm0tZmllbGQtY29udGFjdHM+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdTd2l0Y2hDYXNlPVwiJ29ubGluZVJlc291cmNlcydcIj5cbiAgICAgIDxnbi11aS1mb3JtLWZpZWxkLW9ubGluZS1yZXNvdXJjZXNcbiAgICAgICAgKm5nSWY9XCJtb2RlbFNwZWNpZmllciA9PT0gJ29ubGluZVJlc291cmNlVHlwZTohbGluaydcIlxuICAgICAgICBbbWV0YWRhdGFVdWlkXT1cInVuaXF1ZUlkZW50aWZpZXJcIlxuICAgICAgICBbdmFsdWVdPVwidmFsdWVBc09ubGluZVJlc291cmNlc1wiXG4gICAgICAgICh2YWx1ZUNoYW5nZSk9XCJ2YWx1ZUNoYW5nZS5lbWl0KCRldmVudClcIlxuICAgICAgPjwvZ24tdWktZm9ybS1maWVsZC1vbmxpbmUtcmVzb3VyY2VzPlxuICAgIDwvbmctY29udGFpbmVyPlxuICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIidvbmxpbmVSZXNvdXJjZXMnXCI+XG4gICAgICA8Z24tdWktZm9ybS1maWVsZC1vbmxpbmUtbGluay1yZXNvdXJjZXNcbiAgICAgICAgKm5nSWY9XCJtb2RlbFNwZWNpZmllciA9PT0gJ29ubGluZVJlc291cmNlVHlwZTpsaW5rJ1wiXG4gICAgICAgIFttZXRhZGF0YVV1aWRdPVwidW5pcXVlSWRlbnRpZmllclwiXG4gICAgICAgIFt2YWx1ZV09XCJ2YWx1ZUFzT25saW5lUmVzb3VyY2VzXCJcbiAgICAgICAgKHZhbHVlQ2hhbmdlKT1cInZhbHVlQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4gICAgICA+PC9nbi11aS1mb3JtLWZpZWxkLW9ubGluZS1saW5rLXJlc291cmNlcz5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFtb2RlbFwiPlxuICAgIDxuZy1jb250YWluZXIgW25nU3dpdGNoXT1cImNvbXBvbmVudE5hbWVcIj5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIidmb3JtLWZpZWxkLWNvbnN0cmFpbnRzLXNob3J0Y3V0cydcIj5cbiAgICAgICAgPGduLXVpLWZvcm0tZmllbGQtY29uc3RyYWludHMtc2hvcnRjdXRzPjwvZ24tdWktZm9ybS1maWVsZC1jb25zdHJhaW50cy1zaG9ydGN1dHM+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nU3dpdGNoQ2FzZT1cIidmb3JtLWZpZWxkLXNwYXRpYWwtdG9nZ2xlJ1wiPlxuICAgICAgICA8Z24tdWktZm9ybS1maWVsZC1zcGF0aWFsLXRvZ2dsZT48L2duLXVpLWZvcm0tZmllbGQtc3BhdGlhbC10b2dnbGU+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgPC9uZy1jb250YWluZXI+XG48L25nLXRlbXBsYXRlPlxuIl19
@@ -1,14 +0,0 @@
1
- export * from './form-field-keywords/form-field-keywords.component';
2
- export * from './form-field-license/form-field-license.component';
3
- export * from './form-field-date/form-field-date.component';
4
- export * from './form-field-temporal-extents/form-field-temporal-extents.component';
5
- export * from './form-field-simple/form-field-simple.component';
6
- export * from './form-field-file/form-field-file.component';
7
- export * from './form-field-rich/form-field-rich.component';
8
- export * from './form-field-object/form-field-object.component';
9
- export * from './form-field-array/form-field-array.component';
10
- export * from './form-field-spatial-extent/form-field-spatial-extent.component';
11
- export * from './form-field.component';
12
- export * from './form-field-constraints-shortcuts/constraints.utils';
13
- export * from './form-field-topics/form-field-topics.component';
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZWRpdG9yL3NyYy9saWIvY29tcG9uZW50cy9yZWNvcmQtZm9ybS9mb3JtLWZpZWxkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscURBQXFELENBQUE7QUFDbkUsY0FBYyxtREFBbUQsQ0FBQTtBQUNqRSxjQUFjLDZDQUE2QyxDQUFBO0FBQzNELGNBQWMscUVBQXFFLENBQUE7QUFDbkYsY0FBYyxpREFBaUQsQ0FBQTtBQUMvRCxjQUFjLDZDQUE2QyxDQUFBO0FBQzNELGNBQWMsNkNBQTZDLENBQUE7QUFDM0QsY0FBYyxpREFBaUQsQ0FBQTtBQUMvRCxjQUFjLCtDQUErQyxDQUFBO0FBQzdELGNBQWMsaUVBQWlFLENBQUE7QUFDL0UsY0FBYyx3QkFBd0IsQ0FBQTtBQUN0QyxjQUFjLHNEQUFzRCxDQUFBO0FBQ3BFLGNBQWMsaURBQWlELENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQta2V5d29yZHMvZm9ybS1maWVsZC1rZXl3b3Jkcy5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQtbGljZW5zZS9mb3JtLWZpZWxkLWxpY2Vuc2UuY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9mb3JtLWZpZWxkLWRhdGUvZm9ybS1maWVsZC1kYXRlLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQtc2ltcGxlL2Zvcm0tZmllbGQtc2ltcGxlLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vZm9ybS1maWVsZC1maWxlL2Zvcm0tZmllbGQtZmlsZS5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQtcmljaC9mb3JtLWZpZWxkLXJpY2guY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9mb3JtLWZpZWxkLW9iamVjdC9mb3JtLWZpZWxkLW9iamVjdC5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQtYXJyYXkvZm9ybS1maWVsZC1hcnJheS5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQtc3BhdGlhbC1leHRlbnQvZm9ybS1maWVsZC1zcGF0aWFsLWV4dGVudC5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQuY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9mb3JtLWZpZWxkLWNvbnN0cmFpbnRzLXNob3J0Y3V0cy9jb25zdHJhaW50cy51dGlscydcbmV4cG9ydCAqIGZyb20gJy4vZm9ybS1maWVsZC10b3BpY3MvZm9ybS1maWVsZC10b3BpY3MuY29tcG9uZW50J1xuIl19
@@ -1,34 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { ChangeDetectionStrategy, Component } from '@angular/core';
3
- import { EditorFacade } from '../../+state/editor.facade';
4
- import { FormFieldComponent } from './form-field';
5
- import { TranslateDirective } from '@ngx-translate/core';
6
- import { map } from 'rxjs';
7
- import * as i0 from "@angular/core";
8
- import * as i1 from "../../+state/editor.facade";
9
- import * as i2 from "@angular/common";
10
- export class RecordFormComponent {
11
- constructor(facade) {
12
- this.facade = facade;
13
- this.recordUniqueIdentifier$ = this.facade.record$.pipe(map((record) => record.uniqueIdentifier));
14
- }
15
- handleFieldValueChange(model, newValue) {
16
- if (!model) {
17
- return;
18
- }
19
- this.facade.updateRecordField(model, newValue);
20
- }
21
- fieldTracker(index, field) {
22
- return field.config.model;
23
- }
24
- sectionTracker(index, section) {
25
- return section.labelKey;
26
- }
27
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RecordFormComponent, deps: [{ token: i1.EditorFacade }], target: i0.ɵɵFactoryTarget.Component }); }
28
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: RecordFormComponent, isStandalone: true, selector: "gn-ui-record-form", ngImport: i0, template: "<div class=\"flex flex-col gap-6\">\n <ng-container\n *ngFor=\"\n let section of facade.currentSections$ | async;\n trackBy: sectionTracker\n \"\n >\n <ng-container *ngIf=\"!section.hidden\">\n <div class=\"flex flex-col gap-6 border p-8 rounded-[8px] shadow\">\n <div class=\"flex flex-col gap-2\">\n <div\n *ngIf=\"section.labelKey\"\n class=\"text-2xl font-title text-black\"\n translate\n >\n {{ section.labelKey }}\n </div>\n <div\n *ngIf=\"section.descriptionKey\"\n class=\"text-gray-800 text-sm\"\n translate\n >\n {{ section.descriptionKey }}\n </div>\n </div>\n <div class=\"grid auto-rows-auto grid-cols-2 gap-[32px]\">\n <ng-container\n *ngFor=\"\n let field of section.fieldsWithValues;\n trackBy: fieldTracker\n \"\n >\n <ng-container *ngIf=\"!field.config.hidden\">\n <gn-ui-form-field\n [ngClass]=\"\n field.config.gridColumnSpan === 1\n ? 'col-span-1'\n : 'col-span-2'\n \"\n [uniqueIdentifier]=\"recordUniqueIdentifier$ | async\"\n [model]=\"field.config.model!\"\n [modelSpecifier]=\"field.config.modelSpecifier!\"\n [config]=\"field.config.formFieldConfig\"\n [value]=\"field.value\"\n [componentName]=\"field.config.componentName\"\n (valueChange)=\"\n handleFieldValueChange(field.config.model!, $event)\n \"\n ></gn-ui-form-field>\n </ng-container>\n </ng-container>\n </div>\n </div>\n </ng-container>\n </ng-container>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "component", type: FormFieldComponent, selector: "gn-ui-form-field", inputs: ["uniqueIdentifier", "model", "modelSpecifier", "componentName", "config", "value"], outputs: ["valueChange"] }, { kind: "directive", type: TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
29
- }
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RecordFormComponent, decorators: [{
31
- type: Component,
32
- args: [{ selector: 'gn-ui-record-form', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule, FormFieldComponent, TranslateDirective], template: "<div class=\"flex flex-col gap-6\">\n <ng-container\n *ngFor=\"\n let section of facade.currentSections$ | async;\n trackBy: sectionTracker\n \"\n >\n <ng-container *ngIf=\"!section.hidden\">\n <div class=\"flex flex-col gap-6 border p-8 rounded-[8px] shadow\">\n <div class=\"flex flex-col gap-2\">\n <div\n *ngIf=\"section.labelKey\"\n class=\"text-2xl font-title text-black\"\n translate\n >\n {{ section.labelKey }}\n </div>\n <div\n *ngIf=\"section.descriptionKey\"\n class=\"text-gray-800 text-sm\"\n translate\n >\n {{ section.descriptionKey }}\n </div>\n </div>\n <div class=\"grid auto-rows-auto grid-cols-2 gap-[32px]\">\n <ng-container\n *ngFor=\"\n let field of section.fieldsWithValues;\n trackBy: fieldTracker\n \"\n >\n <ng-container *ngIf=\"!field.config.hidden\">\n <gn-ui-form-field\n [ngClass]=\"\n field.config.gridColumnSpan === 1\n ? 'col-span-1'\n : 'col-span-2'\n \"\n [uniqueIdentifier]=\"recordUniqueIdentifier$ | async\"\n [model]=\"field.config.model!\"\n [modelSpecifier]=\"field.config.modelSpecifier!\"\n [config]=\"field.config.formFieldConfig\"\n [value]=\"field.value\"\n [componentName]=\"field.config.componentName\"\n (valueChange)=\"\n handleFieldValueChange(field.config.model!, $event)\n \"\n ></gn-ui-form-field>\n </ng-container>\n </ng-container>\n </div>\n </div>\n </ng-container>\n </ng-container>\n</div>\n" }]
33
- }], ctorParameters: () => [{ type: i1.EditorFacade }] });
34
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjb3JkLWZvcm0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vcmVjb3JkLWZvcm0uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vcmVjb3JkLWZvcm0uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFBO0FBQzlDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDbEUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDRCQUE0QixDQUFBO0FBRXpELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGNBQWMsQ0FBQTtBQUNqRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTtBQUt4RCxPQUFPLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFBOzs7O0FBVzFCLE1BQU0sT0FBTyxtQkFBbUI7SUFLOUIsWUFBbUIsTUFBb0I7UUFBcEIsV0FBTSxHQUFOLE1BQU0sQ0FBYztRQUp2Qyw0QkFBdUIsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQ2hELEdBQUcsQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUMsTUFBTSxDQUFDLGdCQUFnQixDQUFDLENBQ3pDLENBQUE7SUFFeUMsQ0FBQztJQUUzQyxzQkFBc0IsQ0FBQyxLQUF3QixFQUFFLFFBQTBCO1FBQ3pFLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUNYLE9BQU07UUFDUixDQUFDO1FBQ0QsSUFBSSxDQUFDLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLEVBQUUsUUFBUSxDQUFDLENBQUE7SUFDaEQsQ0FBQztJQUVELFlBQVksQ0FBQyxLQUFhLEVBQUUsS0FBMkI7UUFDckQsT0FBTyxLQUFLLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQTtJQUMzQixDQUFDO0lBRUQsY0FBYyxDQUFDLEtBQWEsRUFBRSxPQUFnQztRQUM1RCxPQUFPLE9BQU8sQ0FBQyxRQUFRLENBQUE7SUFDekIsQ0FBQzsrR0FwQlUsbUJBQW1CO21HQUFuQixtQkFBbUIsNkVDckJoQyxpM0RBd0RBLHlERHJDWSxZQUFZLG1aQUFFLGtCQUFrQixvTEFBRSxrQkFBa0I7OzRGQUVuRCxtQkFBbUI7a0JBUi9CLFNBQVM7K0JBQ0UsbUJBQW1CLG1CQUdaLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLGtCQUFrQixFQUFFLGtCQUFrQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJ1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBFZGl0b3JGYWNhZGUgfSBmcm9tICcuLi8uLi8rc3RhdGUvZWRpdG9yLmZhY2FkZSdcbmltcG9ydCB7IEVkaXRvckZpZWxkVmFsdWUgfSBmcm9tICcuLi8uLi9tb2RlbHMnXG5pbXBvcnQgeyBGb3JtRmllbGRDb21wb25lbnQgfSBmcm9tICcuL2Zvcm0tZmllbGQnXG5pbXBvcnQgeyBUcmFuc2xhdGVEaXJlY3RpdmUgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJ1xuaW1wb3J0IHtcbiAgRWRpdG9yRmllbGRXaXRoVmFsdWUsXG4gIEVkaXRvclNlY3Rpb25XaXRoVmFsdWVzLFxufSBmcm9tICcuLi8uLi8rc3RhdGUvZWRpdG9yLm1vZGVscydcbmltcG9ydCB7IG1hcCB9IGZyb20gJ3J4anMnXG5pbXBvcnQgeyBDYXRhbG9nUmVjb3JkS2V5cyB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tbW9uL2RvbWFpbi9zcmMvbGliL21vZGVsL3JlY29yZCdcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktcmVjb3JkLWZvcm0nLFxuICB0ZW1wbGF0ZVVybDogJy4vcmVjb3JkLWZvcm0uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9yZWNvcmQtZm9ybS5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBGb3JtRmllbGRDb21wb25lbnQsIFRyYW5zbGF0ZURpcmVjdGl2ZV0sXG59KVxuZXhwb3J0IGNsYXNzIFJlY29yZEZvcm1Db21wb25lbnQge1xuICByZWNvcmRVbmlxdWVJZGVudGlmaWVyJCA9IHRoaXMuZmFjYWRlLnJlY29yZCQucGlwZShcbiAgICBtYXAoKHJlY29yZCkgPT4gcmVjb3JkLnVuaXF1ZUlkZW50aWZpZXIpXG4gIClcblxuICBjb25zdHJ1Y3RvcihwdWJsaWMgZmFjYWRlOiBFZGl0b3JGYWNhZGUpIHt9XG5cbiAgaGFuZGxlRmllbGRWYWx1ZUNoYW5nZShtb2RlbDogQ2F0YWxvZ1JlY29yZEtleXMsIG5ld1ZhbHVlOiBFZGl0b3JGaWVsZFZhbHVlKSB7XG4gICAgaWYgKCFtb2RlbCkge1xuICAgICAgcmV0dXJuXG4gICAgfVxuICAgIHRoaXMuZmFjYWRlLnVwZGF0ZVJlY29yZEZpZWxkKG1vZGVsLCBuZXdWYWx1ZSlcbiAgfVxuXG4gIGZpZWxkVHJhY2tlcihpbmRleDogbnVtYmVyLCBmaWVsZDogRWRpdG9yRmllbGRXaXRoVmFsdWUpIHtcbiAgICByZXR1cm4gZmllbGQuY29uZmlnLm1vZGVsXG4gIH1cblxuICBzZWN0aW9uVHJhY2tlcihpbmRleDogbnVtYmVyLCBzZWN0aW9uOiBFZGl0b3JTZWN0aW9uV2l0aFZhbHVlcykge1xuICAgIHJldHVybiBzZWN0aW9uLmxhYmVsS2V5XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJmbGV4IGZsZXgtY29sIGdhcC02XCI+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdGb3I9XCJcbiAgICAgIGxldCBzZWN0aW9uIG9mIGZhY2FkZS5jdXJyZW50U2VjdGlvbnMkIHwgYXN5bmM7XG4gICAgICB0cmFja0J5OiBzZWN0aW9uVHJhY2tlclxuICAgIFwiXG4gID5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIXNlY3Rpb24uaGlkZGVuXCI+XG4gICAgICA8ZGl2IGNsYXNzPVwiZmxleCBmbGV4LWNvbCBnYXAtNiBib3JkZXIgcC04IHJvdW5kZWQtWzhweF0gc2hhZG93XCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGZsZXgtY29sIGdhcC0yXCI+XG4gICAgICAgICAgPGRpdlxuICAgICAgICAgICAgKm5nSWY9XCJzZWN0aW9uLmxhYmVsS2V5XCJcbiAgICAgICAgICAgIGNsYXNzPVwidGV4dC0yeGwgZm9udC10aXRsZSB0ZXh0LWJsYWNrXCJcbiAgICAgICAgICAgIHRyYW5zbGF0ZVxuICAgICAgICAgID5cbiAgICAgICAgICAgIHt7IHNlY3Rpb24ubGFiZWxLZXkgfX1cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAqbmdJZj1cInNlY3Rpb24uZGVzY3JpcHRpb25LZXlcIlxuICAgICAgICAgICAgY2xhc3M9XCJ0ZXh0LWdyYXktODAwIHRleHQtc21cIlxuICAgICAgICAgICAgdHJhbnNsYXRlXG4gICAgICAgICAgPlxuICAgICAgICAgICAge3sgc2VjdGlvbi5kZXNjcmlwdGlvbktleSB9fVxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImdyaWQgYXV0by1yb3dzLWF1dG8gZ3JpZC1jb2xzLTIgZ2FwLVszMnB4XVwiPlxuICAgICAgICAgIDxuZy1jb250YWluZXJcbiAgICAgICAgICAgICpuZ0Zvcj1cIlxuICAgICAgICAgICAgICBsZXQgZmllbGQgb2Ygc2VjdGlvbi5maWVsZHNXaXRoVmFsdWVzO1xuICAgICAgICAgICAgICB0cmFja0J5OiBmaWVsZFRyYWNrZXJcbiAgICAgICAgICAgIFwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFmaWVsZC5jb25maWcuaGlkZGVuXCI+XG4gICAgICAgICAgICAgIDxnbi11aS1mb3JtLWZpZWxkXG4gICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwiXG4gICAgICAgICAgICAgICAgICBmaWVsZC5jb25maWcuZ3JpZENvbHVtblNwYW4gPT09IDFcbiAgICAgICAgICAgICAgICAgICAgPyAnY29sLXNwYW4tMSdcbiAgICAgICAgICAgICAgICAgICAgOiAnY29sLXNwYW4tMidcbiAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgIFt1bmlxdWVJZGVudGlmaWVyXT1cInJlY29yZFVuaXF1ZUlkZW50aWZpZXIkIHwgYXN5bmNcIlxuICAgICAgICAgICAgICAgIFttb2RlbF09XCJmaWVsZC5jb25maWcubW9kZWwhXCJcbiAgICAgICAgICAgICAgICBbbW9kZWxTcGVjaWZpZXJdPVwiZmllbGQuY29uZmlnLm1vZGVsU3BlY2lmaWVyIVwiXG4gICAgICAgICAgICAgICAgW2NvbmZpZ109XCJmaWVsZC5jb25maWcuZm9ybUZpZWxkQ29uZmlnXCJcbiAgICAgICAgICAgICAgICBbdmFsdWVdPVwiZmllbGQudmFsdWVcIlxuICAgICAgICAgICAgICAgIFtjb21wb25lbnROYW1lXT1cImZpZWxkLmNvbmZpZy5jb21wb25lbnROYW1lXCJcbiAgICAgICAgICAgICAgICAodmFsdWVDaGFuZ2UpPVwiXG4gICAgICAgICAgICAgICAgICBoYW5kbGVGaWVsZFZhbHVlQ2hhbmdlKGZpZWxkLmNvbmZpZy5tb2RlbCEsICRldmVudClcbiAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICA+PC9nbi11aS1mb3JtLWZpZWxkPlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG4gICAgPC9uZy1jb250YWluZXI+XG4gIDwvbmctY29udGFpbmVyPlxuPC9kaXY+XG4iXX0=
@@ -1,13 +0,0 @@
1
- export function evaluate(expression) {
2
- if (expression.match(/^\${.*}$/)) {
3
- return evaluate(expression.slice(2, -1));
4
- }
5
- const operator = expression.split('(')[0];
6
- switch (operator) {
7
- case 'dateNow':
8
- return () => new Date();
9
- default:
10
- throw new Error(`Unknown operator: ${operator}`);
11
- }
12
- }
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwcmVzc2lvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZWRpdG9yL3NyYy9saWIvZXhwcmVzc2lvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBSUEsTUFBTSxVQUFVLFFBQVEsQ0FBQyxVQUFrQjtJQUN6QyxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsVUFBVSxDQUFDLEVBQUUsQ0FBQztRQUNqQyxPQUFPLFFBQVEsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDMUMsQ0FBQztJQUNELE1BQU0sUUFBUSxHQUFHLFVBQVUsQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDekMsUUFBUSxRQUFRLEVBQUUsQ0FBQztRQUNqQixLQUFLLFNBQVM7WUFDWixPQUFPLEdBQUcsRUFBRSxDQUFDLElBQUksSUFBSSxFQUFFLENBQUE7UUFDekI7WUFDRSxNQUFNLElBQUksS0FBSyxDQUFDLHFCQUFxQixRQUFRLEVBQUUsQ0FBQyxDQUFBO0lBQ3BELENBQUM7QUFDSCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRWRpdG9yRmllbGRTdGF0ZSwgRWRpdG9yRmllbGRWYWx1ZSB9IGZyb20gJy4vbW9kZWxzLydcblxuZXhwb3J0IHR5cGUgRXhwcmVzc2lvbkV2YWx1YXRvciA9IChmaWVsZDogRWRpdG9yRmllbGRTdGF0ZSkgPT4gRWRpdG9yRmllbGRWYWx1ZVxuXG5leHBvcnQgZnVuY3Rpb24gZXZhbHVhdGUoZXhwcmVzc2lvbjogc3RyaW5nKTogRXhwcmVzc2lvbkV2YWx1YXRvciB7XG4gIGlmIChleHByZXNzaW9uLm1hdGNoKC9eXFwkey4qfSQvKSkge1xuICAgIHJldHVybiBldmFsdWF0ZShleHByZXNzaW9uLnNsaWNlKDIsIC0xKSlcbiAgfVxuICBjb25zdCBvcGVyYXRvciA9IGV4cHJlc3Npb24uc3BsaXQoJygnKVswXVxuICBzd2l0Y2ggKG9wZXJhdG9yKSB7XG4gICAgY2FzZSAnZGF0ZU5vdyc6XG4gICAgICByZXR1cm4gKCkgPT4gbmV3IERhdGUoKVxuICAgIGRlZmF1bHQ6XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoYFVua25vd24gb3BlcmF0b3I6ICR7b3BlcmF0b3J9YClcbiAgfVxufVxuIl19
@@ -1,27 +0,0 @@
1
- import { provideHttpClient } from '@angular/common/http';
2
- import { NgModule } from '@angular/core';
3
- import { EffectsModule } from '@ngrx/effects';
4
- import { StoreModule } from '@ngrx/store';
5
- import { EditorEffects } from './+state/editor.effects';
6
- import { EditorFacade } from './+state/editor.facade';
7
- import * as fromEditor from './+state/editor.reducer';
8
- import * as i0 from "@angular/core";
9
- import * as i1 from "@ngrx/store";
10
- import * as i2 from "@ngrx/effects";
11
- export class FeatureEditorModule {
12
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FeatureEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
13
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: FeatureEditorModule, imports: [i1.StoreFeatureModule, i2.EffectsFeatureModule] }); }
14
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FeatureEditorModule, providers: [EditorFacade, provideHttpClient()], imports: [StoreModule.forFeature(fromEditor.EDITOR_FEATURE_KEY, fromEditor.editorReducer),
15
- EffectsModule.forFeature([EditorEffects])] }); }
16
- }
17
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FeatureEditorModule, decorators: [{
18
- type: NgModule,
19
- args: [{
20
- imports: [
21
- StoreModule.forFeature(fromEditor.EDITOR_FEATURE_KEY, fromEditor.editorReducer),
22
- EffectsModule.forFeature([EditorEffects]),
23
- ],
24
- providers: [EditorFacade, provideHttpClient()],
25
- }]
26
- }] });
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmVhdHVyZS1lZGl0b3IubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2ZlYXR1cmUtZWRpdG9yLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQTtBQUN4RCxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQ3hDLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDN0MsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGFBQWEsQ0FBQTtBQUN6QyxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0seUJBQXlCLENBQUE7QUFDdkQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHdCQUF3QixDQUFBO0FBQ3JELE9BQU8sS0FBSyxVQUFVLE1BQU0seUJBQXlCLENBQUE7Ozs7QUFZckQsTUFBTSxPQUFPLG1CQUFtQjsrR0FBbkIsbUJBQW1CO2dIQUFuQixtQkFBbUI7Z0hBQW5CLG1CQUFtQixhQUZuQixDQUFDLFlBQVksRUFBRSxpQkFBaUIsRUFBRSxDQUFDLFlBTjVDLFdBQVcsQ0FBQyxVQUFVLENBQ3BCLFVBQVUsQ0FBQyxrQkFBa0IsRUFDN0IsVUFBVSxDQUFDLGFBQWEsQ0FDekI7WUFDRCxhQUFhLENBQUMsVUFBVSxDQUFDLENBQUMsYUFBYSxDQUFDLENBQUM7OzRGQUloQyxtQkFBbUI7a0JBVi9CLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLFdBQVcsQ0FBQyxVQUFVLENBQ3BCLFVBQVUsQ0FBQyxrQkFBa0IsRUFDN0IsVUFBVSxDQUFDLGFBQWEsQ0FDekI7d0JBQ0QsYUFBYSxDQUFDLFVBQVUsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxDQUFDO3FCQUMxQztvQkFDRCxTQUFTLEVBQUUsQ0FBQyxZQUFZLEVBQUUsaUJBQWlCLEVBQUUsQ0FBQztpQkFDL0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBwcm92aWRlSHR0cENsaWVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbi9odHRwJ1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgRWZmZWN0c01vZHVsZSB9IGZyb20gJ0BuZ3J4L2VmZmVjdHMnXG5pbXBvcnQgeyBTdG9yZU1vZHVsZSB9IGZyb20gJ0BuZ3J4L3N0b3JlJ1xuaW1wb3J0IHsgRWRpdG9yRWZmZWN0cyB9IGZyb20gJy4vK3N0YXRlL2VkaXRvci5lZmZlY3RzJ1xuaW1wb3J0IHsgRWRpdG9yRmFjYWRlIH0gZnJvbSAnLi8rc3RhdGUvZWRpdG9yLmZhY2FkZSdcbmltcG9ydCAqIGFzIGZyb21FZGl0b3IgZnJvbSAnLi8rc3RhdGUvZWRpdG9yLnJlZHVjZXInXG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtcbiAgICBTdG9yZU1vZHVsZS5mb3JGZWF0dXJlKFxuICAgICAgZnJvbUVkaXRvci5FRElUT1JfRkVBVFVSRV9LRVksXG4gICAgICBmcm9tRWRpdG9yLmVkaXRvclJlZHVjZXJcbiAgICApLFxuICAgIEVmZmVjdHNNb2R1bGUuZm9yRmVhdHVyZShbRWRpdG9yRWZmZWN0c10pLFxuICBdLFxuICBwcm92aWRlcnM6IFtFZGl0b3JGYWNhZGUsIHByb3ZpZGVIdHRwQ2xpZW50KCldLFxufSlcbmV4cG9ydCBjbGFzcyBGZWF0dXJlRWRpdG9yTW9kdWxlIHt9XG4iXX0=