geonetwork-ui 2.1.0-initial

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 (2135) hide show
  1. package/README.md +55 -0
  2. package/esm2022/geonetwork-ui.mjs +5 -0
  3. package/esm2022/index.mjs +24 -0
  4. package/esm2022/libs/api/metadata-converter/src/index.mjs +5 -0
  5. package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +20 -0
  6. package/esm2022/libs/api/metadata-converter/src/lib/convert-utils.mjs +19 -0
  7. package/esm2022/libs/api/metadata-converter/src/lib/function-utils.mjs +40 -0
  8. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +49 -0
  9. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +265 -0
  10. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.mjs +49 -0
  11. package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +29 -0
  12. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.mjs +12 -0
  13. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/index.mjs +4 -0
  14. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +2 -0
  15. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/search.model.mjs +11 -0
  16. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.mjs +48 -0
  17. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.mjs +18 -0
  18. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.mjs +64 -0
  19. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/converter.mjs +122 -0
  20. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +329 -0
  21. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +366 -0
  22. package/esm2022/libs/api/metadata-converter/src/lib/metadata-base.mapper.mjs +14 -0
  23. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +300 -0
  24. package/esm2022/libs/api/repository/src/index.mjs +3 -0
  25. package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +63 -0
  26. package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +3 -0
  27. package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +25 -0
  28. package/esm2022/libs/api/repository/src/lib/gn4/auth/index.mjs +4 -0
  29. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +31 -0
  30. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +444 -0
  31. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/index.mjs +3 -0
  32. package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +66 -0
  33. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +69 -0
  34. package/esm2022/libs/api/repository/src/lib/gn4/index.mjs +7 -0
  35. package/esm2022/libs/api/repository/src/lib/gn4/organizations/index.mjs +7 -0
  36. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +103 -0
  37. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +185 -0
  38. package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +23 -0
  39. package/esm2022/libs/api/repository/src/lib/metadata-language.mjs +3 -0
  40. package/esm2022/libs/api/repository/src/lib/repository-url.mjs +10 -0
  41. package/esm2022/libs/common/domain/src/lib/dataviz-configuration.model.mjs +9 -0
  42. package/esm2022/libs/common/domain/src/lib/organizations.service.interface.mjs +3 -0
  43. package/esm2022/libs/common/domain/src/lib/record/contact.model.mjs +24 -0
  44. package/esm2022/libs/common/domain/src/lib/record/index.mjs +4 -0
  45. package/esm2022/libs/common/domain/src/lib/record/metadata.model.mjs +24 -0
  46. package/esm2022/libs/common/domain/src/lib/record/organization.model.mjs +2 -0
  47. package/esm2022/libs/common/domain/src/lib/records-repository.interface.mjs +3 -0
  48. package/esm2022/libs/common/domain/src/lib/search/aggregation.model.mjs +2 -0
  49. package/esm2022/libs/common/domain/src/lib/search/filter.model.mjs +2 -0
  50. package/esm2022/libs/common/domain/src/lib/search/index.mjs +5 -0
  51. package/esm2022/libs/common/domain/src/lib/search/search.model.mjs +2 -0
  52. package/esm2022/libs/common/domain/src/lib/search/sort-by.model.mjs +7 -0
  53. package/esm2022/libs/common/domain/src/lib/user.model.mjs +2 -0
  54. package/esm2022/libs/data-access/gn4/src/fixtures/index.mjs +3 -0
  55. package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +61 -0
  56. package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +5 -0
  57. package/esm2022/libs/data-access/gn4/src/index.mjs +3 -0
  58. package/esm2022/libs/data-access/gn4/src/openapi/api/api.mjs +90 -0
  59. package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +151 -0
  60. package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +285 -0
  61. package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +128 -0
  62. package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +195 -0
  63. package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +117 -0
  64. package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +238 -0
  65. package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +183 -0
  66. package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +351 -0
  67. package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +117 -0
  68. package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +117 -0
  69. package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +193 -0
  70. package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +274 -0
  71. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +3105 -0
  72. package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +156 -0
  73. package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +780 -0
  74. package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +132 -0
  75. package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +128 -0
  76. package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +190 -0
  77. package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +576 -0
  78. package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +150 -0
  79. package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +412 -0
  80. package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +145 -0
  81. package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +183 -0
  82. package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +420 -0
  83. package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +182 -0
  84. package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +405 -0
  85. package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +533 -0
  86. package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +343 -0
  87. package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +258 -0
  88. package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +41 -0
  89. package/esm2022/libs/data-access/gn4/src/openapi/configuration.mjs +72 -0
  90. package/esm2022/libs/data-access/gn4/src/openapi/encoder.mjs +19 -0
  91. package/esm2022/libs/data-access/gn4/src/openapi/index.mjs +6 -0
  92. package/esm2022/libs/data-access/gn4/src/openapi/model/address.api.model.mjs +13 -0
  93. package/esm2022/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.mjs +2 -0
  94. package/esm2022/libs/data-access/gn4/src/openapi/model/associated.api.model.mjs +2 -0
  95. package/esm2022/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.mjs +2 -0
  96. package/esm2022/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.mjs +2 -0
  97. package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.mjs +13 -0
  98. package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.mjs +2 -0
  99. package/esm2022/libs/data-access/gn4/src/openapi/model/category.api.model.mjs +13 -0
  100. package/esm2022/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.mjs +13 -0
  101. package/esm2022/libs/data-access/gn4/src/openapi/model/children.api.model.mjs +2 -0
  102. package/esm2022/libs/data-access/gn4/src/openapi/model/codelist.api.model.mjs +2 -0
  103. package/esm2022/libs/data-access/gn4/src/openapi/model/crs.api.model.mjs +13 -0
  104. package/esm2022/libs/data-access/gn4/src/openapi/model/dataset.api.model.mjs +2 -0
  105. package/esm2022/libs/data-access/gn4/src/openapi/model/description.api.model.mjs +2 -0
  106. package/esm2022/libs/data-access/gn4/src/openapi/model/element.api.model.mjs +2 -0
  107. package/esm2022/libs/data-access/gn4/src/openapi/model/entry.api.model.mjs +13 -0
  108. package/esm2022/libs/data-access/gn4/src/openapi/model/extentDto.api.model.mjs +13 -0
  109. package/esm2022/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.mjs +13 -0
  110. package/esm2022/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.mjs +2 -0
  111. package/esm2022/libs/data-access/gn4/src/openapi/model/fcat.api.model.mjs +2 -0
  112. package/esm2022/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.mjs +13 -0
  113. package/esm2022/libs/data-access/gn4/src/openapi/model/featureType.api.model.mjs +2 -0
  114. package/esm2022/libs/data-access/gn4/src/openapi/model/field.api.model.mjs +13 -0
  115. package/esm2022/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.mjs +13 -0
  116. package/esm2022/libs/data-access/gn4/src/openapi/model/group.api.model.mjs +2 -0
  117. package/esm2022/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.mjs +13 -0
  118. package/esm2022/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.mjs +33 -0
  119. package/esm2022/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.mjs +2 -0
  120. package/esm2022/libs/data-access/gn4/src/openapi/model/hassource.api.model.mjs +2 -0
  121. package/esm2022/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.mjs +13 -0
  122. package/esm2022/libs/data-access/gn4/src/openapi/model/iSODate.api.model.mjs +13 -0
  123. package/esm2022/libs/data-access/gn4/src/openapi/model/infoReport.api.model.mjs +13 -0
  124. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.mjs +13 -0
  125. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.mjs +13 -0
  126. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +13 -0
  127. package/esm2022/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.mjs +13 -0
  128. package/esm2022/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.mjs +13 -0
  129. package/esm2022/libs/data-access/gn4/src/openapi/model/link.api.model.mjs +8 -0
  130. package/esm2022/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.mjs +2 -0
  131. package/esm2022/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.mjs +2 -0
  132. package/esm2022/libs/data-access/gn4/src/openapi/model/localizedString.api.model.mjs +13 -0
  133. package/esm2022/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.mjs +13 -0
  134. package/esm2022/libs/data-access/gn4/src/openapi/model/mapServer.api.model.mjs +13 -0
  135. package/esm2022/libs/data-access/gn4/src/openapi/model/meResponse.api.model.mjs +13 -0
  136. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.mjs +13 -0
  137. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.mjs +13 -0
  138. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.mjs +13 -0
  139. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.mjs +2 -0
  140. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.mjs +2 -0
  141. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.mjs +8 -0
  142. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.mjs +2 -0
  143. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.mjs +2 -0
  144. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.mjs +2 -0
  145. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.mjs +2 -0
  146. package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +110 -0
  147. package/esm2022/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.mjs +2 -0
  148. package/esm2022/libs/data-access/gn4/src/openapi/model/online.api.model.mjs +2 -0
  149. package/esm2022/libs/data-access/gn4/src/openapi/model/operation.api.model.mjs +23 -0
  150. package/esm2022/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.mjs +13 -0
  151. package/esm2022/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.mjs +39 -0
  152. package/esm2022/libs/data-access/gn4/src/openapi/model/pageLink.api.model.mjs +2 -0
  153. package/esm2022/libs/data-access/gn4/src/openapi/model/pageable.api.model.mjs +2 -0
  154. package/esm2022/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.mjs +2 -0
  155. package/esm2022/libs/data-access/gn4/src/openapi/model/parent.api.model.mjs +2 -0
  156. package/esm2022/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.mjs +13 -0
  157. package/esm2022/libs/data-access/gn4/src/openapi/model/processingReport.api.model.mjs +2 -0
  158. package/esm2022/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.mjs +13 -0
  159. package/esm2022/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.mjs +13 -0
  160. package/esm2022/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.mjs +13 -0
  161. package/esm2022/libs/data-access/gn4/src/openapi/model/related.api.model.mjs +2 -0
  162. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.mjs +2 -0
  163. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.mjs +2 -0
  164. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.mjs +2 -0
  165. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.mjs +2 -0
  166. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.mjs +2 -0
  167. package/esm2022/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.mjs +13 -0
  168. package/esm2022/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.mjs +2 -0
  169. package/esm2022/libs/data-access/gn4/src/openapi/model/report.api.model.mjs +13 -0
  170. package/esm2022/libs/data-access/gn4/src/openapi/model/reports.api.model.mjs +2 -0
  171. package/esm2022/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.mjs +13 -0
  172. package/esm2022/libs/data-access/gn4/src/openapi/model/section.api.model.mjs +2 -0
  173. package/esm2022/libs/data-access/gn4/src/openapi/model/selection.api.model.mjs +13 -0
  174. package/esm2022/libs/data-access/gn4/src/openapi/model/service.api.model.mjs +2 -0
  175. package/esm2022/libs/data-access/gn4/src/openapi/model/setting.api.model.mjs +21 -0
  176. package/esm2022/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.mjs +2 -0
  177. package/esm2022/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.mjs +2 -0
  178. package/esm2022/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.mjs +2 -0
  179. package/esm2022/libs/data-access/gn4/src/openapi/model/siblings.api.model.mjs +2 -0
  180. package/esm2022/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.mjs +2 -0
  181. package/esm2022/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.mjs +13 -0
  182. package/esm2022/libs/data-access/gn4/src/openapi/model/sort.api.model.mjs +13 -0
  183. package/esm2022/libs/data-access/gn4/src/openapi/model/source.api.model.mjs +2 -0
  184. package/esm2022/libs/data-access/gn4/src/openapi/model/status.api.model.mjs +22 -0
  185. package/esm2022/libs/data-access/gn4/src/openapi/model/statusValue.api.model.mjs +32 -0
  186. package/esm2022/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.mjs +13 -0
  187. package/esm2022/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.mjs +13 -0
  188. package/esm2022/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.mjs +2 -0
  189. package/esm2022/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.mjs +13 -0
  190. package/esm2022/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.mjs +13 -0
  191. package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +13 -0
  192. package/esm2022/libs/data-access/gn4/src/openapi/model/userDto.api.model.mjs +2 -0
  193. package/esm2022/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.mjs +13 -0
  194. package/esm2022/libs/data-access/gn4/src/openapi/model/userGroup.api.model.mjs +13 -0
  195. package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.mjs +24 -0
  196. package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.mjs +13 -0
  197. package/esm2022/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.mjs +2 -0
  198. package/esm2022/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.mjs +13 -0
  199. package/esm2022/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.mjs +19 -0
  200. package/esm2022/libs/data-access/gn4/src/openapi/model/values.api.model.mjs +13 -0
  201. package/esm2022/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.mjs +2 -0
  202. package/esm2022/libs/data-access/gn4/src/openapi/variables.mjs +9 -0
  203. package/esm2022/libs/feature/auth/src/index.mjs +2 -0
  204. package/esm2022/libs/feature/auth/src/lib/feature-auth.module.mjs +17 -0
  205. package/esm2022/libs/feature/catalog/src/index.mjs +8 -0
  206. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +84 -0
  207. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +81 -0
  208. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +23 -0
  209. package/esm2022/libs/feature/catalog/src/lib/site-title/site-title.component.mjs +22 -0
  210. package/esm2022/libs/feature/catalog/src/lib/source-label/source-label.component.mjs +22 -0
  211. package/esm2022/libs/feature/catalog/src/lib/sources/sources.model.mjs +2 -0
  212. package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +28 -0
  213. package/esm2022/libs/feature/dataviz/src/index.mjs +7 -0
  214. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +187 -0
  215. package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +68 -0
  216. package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +36 -0
  217. package/esm2022/libs/feature/dataviz/src/lib/figure/figure.service.mjs +31 -0
  218. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +109 -0
  219. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +147 -0
  220. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +74 -0
  221. package/esm2022/libs/feature/editor/src/index.mjs +7 -0
  222. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +75 -0
  223. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +169 -0
  224. package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +53 -0
  225. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +60 -0
  226. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +3 -0
  227. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.model.mjs +2 -0
  228. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.type.mjs +9 -0
  229. package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +24 -0
  230. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +86 -0
  231. package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +87 -0
  232. package/esm2022/libs/feature/map/src/index.mjs +20 -0
  233. package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +8 -0
  234. package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +15 -0
  235. package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +34 -0
  236. package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +2 -0
  237. package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +58 -0
  238. package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +6 -0
  239. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +45 -0
  240. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +59 -0
  241. package/esm2022/libs/feature/map/src/lib/constant/index.mjs +2 -0
  242. package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +8 -0
  243. package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +17 -0
  244. package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +38 -0
  245. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +103 -0
  246. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +26 -0
  247. package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +19 -0
  248. package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +19 -0
  249. package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +27 -0
  250. package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +46 -0
  251. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +9 -0
  252. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +211 -0
  253. package/esm2022/libs/feature/map/src/lib/style/index.mjs +3 -0
  254. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +43 -0
  255. package/esm2022/libs/feature/map/src/lib/style/map-style.service.mjs +96 -0
  256. package/esm2022/libs/feature/map/src/lib/utils/index.mjs +4 -0
  257. package/esm2022/libs/feature/map/src/lib/utils/map-utils-wms.service.mjs +38 -0
  258. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +180 -0
  259. package/esm2022/libs/feature/map/src/lib/utils/projections.mjs +2 -0
  260. package/esm2022/libs/feature/record/src/index.mjs +10 -0
  261. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +54 -0
  262. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +61 -0
  263. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +25 -0
  264. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +52 -0
  265. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +49 -0
  266. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +106 -0
  267. package/esm2022/libs/feature/record/src/lib/gn-ui-version.token.mjs +3 -0
  268. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +135 -0
  269. package/esm2022/libs/feature/record/src/lib/state/index.mjs +3 -0
  270. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +9 -0
  271. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +30 -0
  272. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +61 -0
  273. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +39 -0
  274. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +11 -0
  275. package/esm2022/libs/feature/router/src/index.mjs +2 -0
  276. package/esm2022/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.mjs +21 -0
  277. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +10 -0
  278. package/esm2022/libs/feature/router/src/lib/default/container/search-router.container.directive.mjs +40 -0
  279. package/esm2022/libs/feature/router/src/lib/default/index.mjs +8 -0
  280. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +3 -0
  281. package/esm2022/libs/feature/router/src/lib/default/router.module.mjs +66 -0
  282. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +46 -0
  283. package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +56 -0
  284. package/esm2022/libs/feature/router/src/lib/default/state/router.actions.mjs +5 -0
  285. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +114 -0
  286. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +58 -0
  287. package/esm2022/libs/feature/router/src/lib/default/state/router.selectors.mjs +14 -0
  288. package/esm2022/libs/feature/search/src/index.mjs +21 -0
  289. package/esm2022/libs/feature/search/src/lib/constants.mjs +36 -0
  290. package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +64 -0
  291. package/esm2022/libs/feature/search/src/lib/facets/facets.module.mjs +21 -0
  292. package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +232 -0
  293. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +104 -0
  294. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +131 -0
  295. package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +42 -0
  296. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +71 -0
  297. package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +44 -0
  298. package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +18 -0
  299. package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +33 -0
  300. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +70 -0
  301. package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +53 -0
  302. package/esm2022/libs/feature/search/src/lib/state/actions.mjs +208 -0
  303. package/esm2022/libs/feature/search/src/lib/state/container/search-state.container.directive.mjs +28 -0
  304. package/esm2022/libs/feature/search/src/lib/state/effects.mjs +107 -0
  305. package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +286 -0
  306. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +126 -0
  307. package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +27 -0
  308. package/esm2022/libs/feature/search/src/lib/utils/operators/search.operator.mjs +31 -0
  309. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +230 -0
  310. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +73 -0
  311. package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +34 -0
  312. package/esm2022/libs/ui/catalog/src/index.mjs +6 -0
  313. package/esm2022/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.mjs +18 -0
  314. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +46 -0
  315. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +27 -0
  316. package/esm2022/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.mjs +40 -0
  317. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +54 -0
  318. package/esm2022/libs/ui/dataviz/src/index.mjs +6 -0
  319. package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +165 -0
  320. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +35 -0
  321. package/esm2022/libs/ui/dataviz/src/lib/table/table.component.mjs +61 -0
  322. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +40 -0
  323. package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +19 -0
  324. package/esm2022/libs/ui/elements/src/index.mjs +21 -0
  325. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +15 -0
  326. package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +19 -0
  327. package/esm2022/libs/ui/elements/src/lib/content-ghost/content-ghost.component.mjs +19 -0
  328. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +30 -0
  329. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +82 -0
  330. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +15 -0
  331. package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +14 -0
  332. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +35 -0
  333. package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +43 -0
  334. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +49 -0
  335. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +64 -0
  336. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +23 -0
  337. package/esm2022/libs/ui/elements/src/lib/pagination/pagination.component.mjs +54 -0
  338. package/esm2022/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.mjs +66 -0
  339. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +18 -0
  340. package/esm2022/libs/ui/elements/src/lib/search-results-error/search-results-error.component.mjs +29 -0
  341. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +92 -0
  342. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +144 -0
  343. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +20 -0
  344. package/esm2022/libs/ui/inputs/src/index.mjs +19 -0
  345. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +126 -0
  346. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +74 -0
  347. package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +29 -0
  348. package/esm2022/libs/ui/inputs/src/lib/chips-input/chips-input.component.mjs +78 -0
  349. package/esm2022/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.mjs +30 -0
  350. package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +36 -0
  351. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +190 -0
  352. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.mjs +2 -0
  353. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +176 -0
  354. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.mjs +2 -0
  355. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +11 -0
  356. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +27 -0
  357. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +11 -0
  358. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +27 -0
  359. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +49 -0
  360. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
  361. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
  362. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +74 -0
  363. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +2 -0
  364. package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +10 -0
  365. package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +16 -0
  366. package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +40 -0
  367. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +41 -0
  368. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +41 -0
  369. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +149 -0
  370. package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +46 -0
  371. package/esm2022/libs/ui/layout/src/index.mjs +7 -0
  372. package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +64 -0
  373. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +44 -0
  374. package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +31 -0
  375. package/esm2022/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.mjs +23 -0
  376. package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +80 -0
  377. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +45 -0
  378. package/esm2022/libs/ui/map/src/index.mjs +4 -0
  379. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +19 -0
  380. package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +40 -0
  381. package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +33 -0
  382. package/esm2022/libs/ui/search/src/index.mjs +21 -0
  383. package/esm2022/libs/ui/search/src/lib/facets/facet-block/facet-block.component.mjs +125 -0
  384. package/esm2022/libs/ui/search/src/lib/facets/facet-item/facet-item.component.mjs +64 -0
  385. package/esm2022/libs/ui/search/src/lib/facets/facet-list/facet-list.component.mjs +48 -0
  386. package/esm2022/libs/ui/search/src/lib/facets/facets.model.mjs +2 -0
  387. package/esm2022/libs/ui/search/src/lib/facets/facets.module.mjs +23 -0
  388. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +50 -0
  389. package/esm2022/libs/ui/search/src/lib/facets/fixtures/index.mjs +2 -0
  390. package/esm2022/libs/ui/search/src/lib/record-metric/record-metric.component.mjs +25 -0
  391. package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +62 -0
  392. package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +13 -0
  393. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +36 -0
  394. package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +15 -0
  395. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +20 -0
  396. package/esm2022/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.mjs +13 -0
  397. package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +13 -0
  398. package/esm2022/libs/ui/search/src/lib/record-table/record-table.component.mjs +91 -0
  399. package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +17 -0
  400. package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +27 -0
  401. package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +30 -0
  402. package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +52 -0
  403. package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +130 -0
  404. package/esm2022/libs/ui/widgets/src/index.mjs +9 -0
  405. package/esm2022/libs/ui/widgets/src/lib/badge/badge.component.mjs +17 -0
  406. package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +11 -0
  407. package/esm2022/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.mjs +14 -0
  408. package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +50 -0
  409. package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +44 -0
  410. package/esm2022/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.mjs +11 -0
  411. package/esm2022/libs/ui/widgets/src/lib/step-bar/step-bar.component.mjs +55 -0
  412. package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +82 -0
  413. package/esm2022/libs/util/app-config/src/index.mjs +4 -0
  414. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +219 -0
  415. package/esm2022/libs/util/app-config/src/lib/constants.mjs +439 -0
  416. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +160 -0
  417. package/esm2022/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.mjs +18 -0
  418. package/esm2022/libs/util/app-config/src/lib/model.mjs +2 -0
  419. package/esm2022/libs/util/app-config/src/lib/parse-utils.mjs +88 -0
  420. package/esm2022/libs/util/data-fetcher/src/index.mjs +5 -0
  421. package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +61 -0
  422. package/esm2022/libs/util/data-fetcher/src/lib/headers.mjs +22 -0
  423. package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +54 -0
  424. package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +37 -0
  425. package/esm2022/libs/util/data-fetcher/src/lib/readers/base.mjs +62 -0
  426. package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +37 -0
  427. package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +24 -0
  428. package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +21 -0
  429. package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +36 -0
  430. package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +19 -0
  431. package/esm2022/libs/util/data-fetcher/src/lib/sql-utils.mjs +93 -0
  432. package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +205 -0
  433. package/esm2022/libs/util/i18n/src/index.mjs +8 -0
  434. package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +17 -0
  435. package/esm2022/libs/util/i18n/src/lib/file.translate.loader.mjs +14 -0
  436. package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +64 -0
  437. package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +24 -0
  438. package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +31 -0
  439. package/esm2022/libs/util/i18n/src/lib/testing/test.translate.loader.mjs +24 -0
  440. package/esm2022/libs/util/i18n/src/lib/testing/test.translate.module.mjs +109 -0
  441. package/esm2022/libs/util/i18n/src/lib/testing/translations.model.mjs +6 -0
  442. package/esm2022/libs/util/i18n/src/lib/translate.loader.utils.mjs +8 -0
  443. package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +37 -0
  444. package/esm2022/libs/util/shared/src/index.mjs +7 -0
  445. package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +27 -0
  446. package/esm2022/libs/util/shared/src/lib/links/index.mjs +3 -0
  447. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +60 -0
  448. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +183 -0
  449. package/esm2022/libs/util/shared/src/lib/pipes/SafePipe.mjs +34 -0
  450. package/esm2022/libs/util/shared/src/lib/pipes/index.mjs +2 -0
  451. package/esm2022/libs/util/shared/src/lib/services/index.mjs +4 -0
  452. package/esm2022/libs/util/shared/src/lib/services/log.service.mjs +22 -0
  453. package/esm2022/libs/util/shared/src/lib/services/proxy.service.mjs +42 -0
  454. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +86 -0
  455. package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +19 -0
  456. package/esm2022/libs/util/shared/src/lib/utils/event.mjs +12 -0
  457. package/esm2022/libs/util/shared/src/lib/utils/geojson.mjs +21 -0
  458. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -0
  459. package/esm2022/libs/util/shared/src/lib/utils/parse.mjs +33 -0
  460. package/esm2022/libs/util/shared/src/lib/utils/remove-whitespace.mjs +4 -0
  461. package/esm2022/libs/util/shared/src/lib/utils/sort-by.mjs +14 -0
  462. package/esm2022/libs/util/shared/src/lib/utils/strip-html.mjs +5 -0
  463. package/esm2022/libs/util/shared/src/lib/utils/url.mjs +18 -0
  464. package/esm2022/translations/de.json +270 -0
  465. package/esm2022/translations/en.json +289 -0
  466. package/esm2022/translations/es.json +289 -0
  467. package/esm2022/translations/fr.json +289 -0
  468. package/esm2022/translations/it.json +289 -0
  469. package/esm2022/translations/nl.json +289 -0
  470. package/esm2022/translations/pt.json +289 -0
  471. package/fesm2022/geonetwork-ui.mjs +27093 -0
  472. package/fesm2022/geonetwork-ui.mjs.map +1 -0
  473. package/geonetwork-ui.d.ts.map +1 -0
  474. package/index.d.ts +23 -0
  475. package/index.d.ts.map +1 -0
  476. package/index.ts +23 -0
  477. package/libs/api/metadata-converter/src/index.d.ts +5 -0
  478. package/libs/api/metadata-converter/src/index.d.ts.map +1 -0
  479. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts +4 -0
  480. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -0
  481. package/libs/api/metadata-converter/src/lib/convert-utils.d.ts +2 -0
  482. package/libs/api/metadata-converter/src/lib/convert-utils.d.ts.map +1 -0
  483. package/libs/api/metadata-converter/src/lib/function-utils.d.ts +27 -0
  484. package/libs/api/metadata-converter/src/lib/function-utils.d.ts.map +1 -0
  485. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +17 -0
  486. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -0
  487. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +25 -0
  488. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -0
  489. package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts +16 -0
  490. package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts.map +1 -0
  491. package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts +12 -0
  492. package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts.map +1 -0
  493. package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts +37 -0
  494. package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts.map +1 -0
  495. package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts +4 -0
  496. package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts.map +1 -0
  497. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +192 -0
  498. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -0
  499. package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts +78 -0
  500. package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts.map +1 -0
  501. package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts +3 -0
  502. package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts.map +1 -0
  503. package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts +3 -0
  504. package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts.map +1 -0
  505. package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts +3 -0
  506. package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts.map +1 -0
  507. package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts +4 -0
  508. package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts.map +1 -0
  509. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +29 -0
  510. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -0
  511. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +24 -0
  512. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -0
  513. package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts +13 -0
  514. package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts.map +1 -0
  515. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +43 -0
  516. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -0
  517. package/libs/api/repository/src/index.d.ts +3 -0
  518. package/libs/api/repository/src/index.d.ts.map +1 -0
  519. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +26 -0
  520. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -0
  521. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +5 -0
  522. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -0
  523. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +14 -0
  524. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -0
  525. package/libs/api/repository/src/lib/gn4/auth/index.d.ts +4 -0
  526. package/libs/api/repository/src/lib/gn4/auth/index.d.ts.map +1 -0
  527. package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts +11 -0
  528. package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +1 -0
  529. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +66 -0
  530. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -0
  531. package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts +3 -0
  532. package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts.map +1 -0
  533. package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts +20 -0
  534. package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts.map +1 -0
  535. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +24 -0
  536. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -0
  537. package/libs/api/repository/src/lib/gn4/index.d.ts +7 -0
  538. package/libs/api/repository/src/lib/gn4/index.d.ts.map +1 -0
  539. package/libs/api/repository/src/lib/gn4/organizations/index.d.ts +6 -0
  540. package/libs/api/repository/src/lib/gn4/organizations/index.d.ts.map +1 -0
  541. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +28 -0
  542. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -0
  543. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +40 -0
  544. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -0
  545. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +12 -0
  546. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +1 -0
  547. package/libs/api/repository/src/lib/metadata-language.d.ts +3 -0
  548. package/libs/api/repository/src/lib/metadata-language.d.ts.map +1 -0
  549. package/libs/api/repository/src/lib/repository-url.d.ts +3 -0
  550. package/libs/api/repository/src/lib/repository-url.d.ts.map +1 -0
  551. package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts +10 -0
  552. package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts.map +1 -0
  553. package/libs/common/domain/src/lib/organizations.service.interface.d.ts +12 -0
  554. package/libs/common/domain/src/lib/organizations.service.interface.d.ts.map +1 -0
  555. package/libs/common/domain/src/lib/record/contact.model.d.ts +14 -0
  556. package/libs/common/domain/src/lib/record/contact.model.d.ts.map +1 -0
  557. package/libs/common/domain/src/lib/record/index.d.ts +4 -0
  558. package/libs/common/domain/src/lib/record/index.d.ts.map +1 -0
  559. package/libs/common/domain/src/lib/record/metadata.model.d.ts +111 -0
  560. package/libs/common/domain/src/lib/record/metadata.model.d.ts.map +1 -0
  561. package/libs/common/domain/src/lib/record/organization.model.d.ts +8 -0
  562. package/libs/common/domain/src/lib/record/organization.model.d.ts.map +1 -0
  563. package/libs/common/domain/src/lib/records-repository.interface.d.ts +12 -0
  564. package/libs/common/domain/src/lib/records-repository.interface.d.ts.map +1 -0
  565. package/libs/common/domain/src/lib/search/aggregation.model.d.ts +44 -0
  566. package/libs/common/domain/src/lib/search/aggregation.model.d.ts.map +1 -0
  567. package/libs/common/domain/src/lib/search/filter.model.d.ts +6 -0
  568. package/libs/common/domain/src/lib/search/filter.model.d.ts.map +1 -0
  569. package/libs/common/domain/src/lib/search/index.d.ts +5 -0
  570. package/libs/common/domain/src/lib/search/index.d.ts.map +1 -0
  571. package/libs/common/domain/src/lib/search/search.model.d.ts +21 -0
  572. package/libs/common/domain/src/lib/search/search.model.d.ts.map +1 -0
  573. package/libs/common/domain/src/lib/search/sort-by.model.d.ts +3 -0
  574. package/libs/common/domain/src/lib/search/sort-by.model.d.ts.map +1 -0
  575. package/libs/common/domain/src/lib/user.model.d.ts +11 -0
  576. package/libs/common/domain/src/lib/user.model.d.ts.map +1 -0
  577. package/libs/data-access/gn4/src/fixtures/index.d.ts +3 -0
  578. package/libs/data-access/gn4/src/fixtures/index.d.ts.map +1 -0
  579. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +61 -0
  580. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -0
  581. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +5 -0
  582. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -0
  583. package/libs/data-access/gn4/src/index.d.ts +3 -0
  584. package/libs/data-access/gn4/src/index.d.ts.map +1 -0
  585. package/libs/data-access/gn4/src/openapi/api/api.d.ts +60 -0
  586. package/libs/data-access/gn4/src/openapi/api/api.d.ts.map +1 -0
  587. package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts +54 -0
  588. package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts.map +1 -0
  589. package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts +116 -0
  590. package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts.map +1 -0
  591. package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts +33 -0
  592. package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts.map +1 -0
  593. package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts +65 -0
  594. package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts.map +1 -0
  595. package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts +33 -0
  596. package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts.map +1 -0
  597. package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts +86 -0
  598. package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts.map +1 -0
  599. package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts +63 -0
  600. package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts.map +1 -0
  601. package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts +137 -0
  602. package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts.map +1 -0
  603. package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts +33 -0
  604. package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts.map +1 -0
  605. package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts +33 -0
  606. package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts.map +1 -0
  607. package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts +70 -0
  608. package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts.map +1 -0
  609. package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts +109 -0
  610. package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts.map +1 -0
  611. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +1433 -0
  612. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -0
  613. package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts +50 -0
  614. package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts.map +1 -0
  615. package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts +313 -0
  616. package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts.map +1 -0
  617. package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts +41 -0
  618. package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts.map +1 -0
  619. package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts +34 -0
  620. package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts.map +1 -0
  621. package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts +64 -0
  622. package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts.map +1 -0
  623. package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts +284 -0
  624. package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts.map +1 -0
  625. package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts +50 -0
  626. package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts.map +1 -0
  627. package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts +196 -0
  628. package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts.map +1 -0
  629. package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts +47 -0
  630. package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts.map +1 -0
  631. package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts +63 -0
  632. package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts.map +1 -0
  633. package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts +213 -0
  634. package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts.map +1 -0
  635. package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts +63 -0
  636. package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts.map +1 -0
  637. package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts +172 -0
  638. package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts.map +1 -0
  639. package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts +246 -0
  640. package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts.map +1 -0
  641. package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts +144 -0
  642. package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts.map +1 -0
  643. package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts +97 -0
  644. package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts.map +1 -0
  645. package/libs/data-access/gn4/src/openapi/api.module.d.ts +12 -0
  646. package/libs/data-access/gn4/src/openapi/api.module.d.ts.map +1 -0
  647. package/libs/data-access/gn4/src/openapi/configuration.d.ts +81 -0
  648. package/libs/data-access/gn4/src/openapi/configuration.d.ts.map +1 -0
  649. package/libs/data-access/gn4/src/openapi/encoder.d.ts +12 -0
  650. package/libs/data-access/gn4/src/openapi/encoder.d.ts.map +1 -0
  651. package/libs/data-access/gn4/src/openapi/index.d.ts +6 -0
  652. package/libs/data-access/gn4/src/openapi/index.d.ts.map +1 -0
  653. package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts +20 -0
  654. package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts.map +1 -0
  655. package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts +29 -0
  656. package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts.map +1 -0
  657. package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts +16 -0
  658. package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts.map +1 -0
  659. package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts +26 -0
  660. package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts.map +1 -0
  661. package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts +16 -0
  662. package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts.map +1 -0
  663. package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts +17 -0
  664. package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts.map +1 -0
  665. package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts +16 -0
  666. package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts.map +1 -0
  667. package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts +16 -0
  668. package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts.map +1 -0
  669. package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts +17 -0
  670. package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts.map +1 -0
  671. package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts +16 -0
  672. package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts.map +1 -0
  673. package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts +18 -0
  674. package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts.map +1 -0
  675. package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts +19 -0
  676. package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts.map +1 -0
  677. package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts +16 -0
  678. package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts.map +1 -0
  679. package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts +16 -0
  680. package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts.map +1 -0
  681. package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts +21 -0
  682. package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts.map +1 -0
  683. package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts +18 -0
  684. package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts.map +1 -0
  685. package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts +18 -0
  686. package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts.map +1 -0
  687. package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts +17 -0
  688. package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts.map +1 -0
  689. package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts +25 -0
  690. package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts.map +1 -0
  691. package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts +16 -0
  692. package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts.map +1 -0
  693. package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts +17 -0
  694. package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts.map +1 -0
  695. package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts +16 -0
  696. package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts.map +1 -0
  697. package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts +22 -0
  698. package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts.map +1 -0
  699. package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts +15 -0
  700. package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts.map +1 -0
  701. package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts +29 -0
  702. package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts.map +1 -0
  703. package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts +18 -0
  704. package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts.map +1 -0
  705. package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts +44 -0
  706. package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts.map +1 -0
  707. package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts +16 -0
  708. package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts.map +1 -0
  709. package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts +16 -0
  710. package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts.map +1 -0
  711. package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts +21 -0
  712. package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts.map +1 -0
  713. package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts +28 -0
  714. package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts.map +1 -0
  715. package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts +19 -0
  716. package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts.map +1 -0
  717. package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts +15 -0
  718. package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts.map +1 -0
  719. package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts +15 -0
  720. package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts.map +1 -0
  721. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +15 -0
  722. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +1 -0
  723. package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts +20 -0
  724. package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts.map +1 -0
  725. package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts +30 -0
  726. package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts.map +1 -0
  727. package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts +32 -0
  728. package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +1 -0
  729. package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts +21 -0
  730. package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts.map +1 -0
  731. package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts +22 -0
  732. package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts.map +1 -0
  733. package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts +17 -0
  734. package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts.map +1 -0
  735. package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts +16 -0
  736. package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts.map +1 -0
  737. package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts +28 -0
  738. package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts.map +1 -0
  739. package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts +27 -0
  740. package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts.map +1 -0
  741. package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts +19 -0
  742. package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts.map +1 -0
  743. package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts +20 -0
  744. package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts.map +1 -0
  745. package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts +16 -0
  746. package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts.map +1 -0
  747. package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts +39 -0
  748. package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts.map +1 -0
  749. package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts +47 -0
  750. package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts.map +1 -0
  751. package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts +33 -0
  752. package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +1 -0
  753. package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts +38 -0
  754. package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts.map +1 -0
  755. package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts +32 -0
  756. package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts.map +1 -0
  757. package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts +44 -0
  758. package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts.map +1 -0
  759. package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts +21 -0
  760. package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts.map +1 -0
  761. package/libs/data-access/gn4/src/openapi/model/models.d.ts +110 -0
  762. package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -0
  763. package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts +16 -0
  764. package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts.map +1 -0
  765. package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts +16 -0
  766. package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts.map +1 -0
  767. package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts +32 -0
  768. package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +1 -0
  769. package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts +17 -0
  770. package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts.map +1 -0
  771. package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts +49 -0
  772. package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts.map +1 -0
  773. package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts +28 -0
  774. package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts.map +1 -0
  775. package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts +21 -0
  776. package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts.map +1 -0
  777. package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts +17 -0
  778. package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts.map +1 -0
  779. package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts +16 -0
  780. package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts.map +1 -0
  781. package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts +16 -0
  782. package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts.map +1 -0
  783. package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts +25 -0
  784. package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts.map +1 -0
  785. package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts +20 -0
  786. package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts.map +1 -0
  787. package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts +20 -0
  788. package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts.map +1 -0
  789. package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts +24 -0
  790. package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts.map +1 -0
  791. package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts +16 -0
  792. package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts.map +1 -0
  793. package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts +24 -0
  794. package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts.map +1 -0
  795. package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts +23 -0
  796. package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts.map +1 -0
  797. package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts +40 -0
  798. package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts.map +1 -0
  799. package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts +25 -0
  800. package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts.map +1 -0
  801. package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts +19 -0
  802. package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts.map +1 -0
  803. package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts +17 -0
  804. package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts.map +1 -0
  805. package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts +21 -0
  806. package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts.map +1 -0
  807. package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts +19 -0
  808. package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts.map +1 -0
  809. package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts +16 -0
  810. package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts.map +1 -0
  811. package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts +19 -0
  812. package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts.map +1 -0
  813. package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts +17 -0
  814. package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts.map +1 -0
  815. package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts +20 -0
  816. package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts.map +1 -0
  817. package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts +16 -0
  818. package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts.map +1 -0
  819. package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts +29 -0
  820. package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +1 -0
  821. package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts +16 -0
  822. package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts.map +1 -0
  823. package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts +17 -0
  824. package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts.map +1 -0
  825. package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts +18 -0
  826. package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts.map +1 -0
  827. package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts +16 -0
  828. package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts.map +1 -0
  829. package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts +39 -0
  830. package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts.map +1 -0
  831. package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts +29 -0
  832. package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts.map +1 -0
  833. package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts +17 -0
  834. package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts.map +1 -0
  835. package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts +16 -0
  836. package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts.map +1 -0
  837. package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts +28 -0
  838. package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts.map +1 -0
  839. package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts +45 -0
  840. package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +1 -0
  841. package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts +21 -0
  842. package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts.map +1 -0
  843. package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts +24 -0
  844. package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts.map +1 -0
  845. package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts +16 -0
  846. package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts.map +1 -0
  847. package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts +18 -0
  848. package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts.map +1 -0
  849. package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts +16 -0
  850. package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts.map +1 -0
  851. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +47 -0
  852. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +1 -0
  853. package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts +31 -0
  854. package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts.map +1 -0
  855. package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts +34 -0
  856. package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts.map +1 -0
  857. package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts +33 -0
  858. package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +1 -0
  859. package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts +29 -0
  860. package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +1 -0
  861. package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts +19 -0
  862. package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts.map +1 -0
  863. package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts +23 -0
  864. package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts.map +1 -0
  865. package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts +25 -0
  866. package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts.map +1 -0
  867. package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts +25 -0
  868. package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +1 -0
  869. package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts +17 -0
  870. package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts.map +1 -0
  871. package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts +41 -0
  872. package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts.map +1 -0
  873. package/libs/data-access/gn4/src/openapi/variables.d.ts +9 -0
  874. package/libs/data-access/gn4/src/openapi/variables.d.ts.map +1 -0
  875. package/libs/feature/auth/src/index.d.ts +2 -0
  876. package/libs/feature/auth/src/index.d.ts.map +1 -0
  877. package/libs/feature/auth/src/lib/feature-auth.module.d.ts +8 -0
  878. package/libs/feature/auth/src/lib/feature-auth.module.d.ts.map +1 -0
  879. package/libs/feature/catalog/src/index.d.ts +8 -0
  880. package/libs/feature/catalog/src/index.d.ts.map +1 -0
  881. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +18 -0
  882. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -0
  883. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +26 -0
  884. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -0
  885. package/libs/feature/catalog/src/lib/records/records.service.d.ts +11 -0
  886. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -0
  887. package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts +11 -0
  888. package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts.map +1 -0
  889. package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts +12 -0
  890. package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts.map +1 -0
  891. package/libs/feature/catalog/src/lib/sources/sources.model.d.ts +8 -0
  892. package/libs/feature/catalog/src/lib/sources/sources.model.d.ts.map +1 -0
  893. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +15 -0
  894. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -0
  895. package/libs/feature/dataviz/src/index.d.ts +7 -0
  896. package/libs/feature/dataviz/src/index.d.ts.map +1 -0
  897. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +54 -0
  898. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -0
  899. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +20 -0
  900. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -0
  901. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts +19 -0
  902. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -0
  903. package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts +10 -0
  904. package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts.map +1 -0
  905. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +39 -0
  906. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -0
  907. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +19 -0
  908. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -0
  909. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +25 -0
  910. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -0
  911. package/libs/feature/editor/src/index.d.ts +7 -0
  912. package/libs/feature/editor/src/index.d.ts.map +1 -0
  913. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts +31 -0
  914. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts.map +1 -0
  915. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +44 -0
  916. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +1 -0
  917. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +17 -0
  918. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +1 -0
  919. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +20 -0
  920. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -0
  921. package/libs/feature/editor/src/lib/models/index.d.ts +3 -0
  922. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -0
  923. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts +10 -0
  924. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts.map +1 -0
  925. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts +8 -0
  926. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts.map +1 -0
  927. package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts +11 -0
  928. package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +1 -0
  929. package/libs/feature/editor/src/lib/services/editor.service.d.ts +27 -0
  930. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -0
  931. package/libs/feature/editor/src/lib/services/wizard.service.d.ts +33 -0
  932. package/libs/feature/editor/src/lib/services/wizard.service.d.ts.map +1 -0
  933. package/libs/feature/map/src/index.d.ts +20 -0
  934. package/libs/feature/map/src/index.d.ts.map +1 -0
  935. package/libs/feature/map/src/lib/+state/map.actions.d.ts +40 -0
  936. package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -0
  937. package/libs/feature/map/src/lib/+state/map.effects.d.ts +9 -0
  938. package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +1 -0
  939. package/libs/feature/map/src/lib/+state/map.facade.d.ts +19 -0
  940. package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -0
  941. package/libs/feature/map/src/lib/+state/map.models.d.ts +9 -0
  942. package/libs/feature/map/src/lib/+state/map.models.d.ts.map +1 -0
  943. package/libs/feature/map/src/lib/+state/map.reducer.d.ts +12 -0
  944. package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -0
  945. package/libs/feature/map/src/lib/+state/map.selectors.d.ts +4 -0
  946. package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -0
  947. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +11 -0
  948. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -0
  949. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +23 -0
  950. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -0
  951. package/libs/feature/map/src/lib/constant/index.d.ts +2 -0
  952. package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -0
  953. package/libs/feature/map/src/lib/constant/map-options.d.ts +9 -0
  954. package/libs/feature/map/src/lib/constant/map-options.d.ts.map +1 -0
  955. package/libs/feature/map/src/lib/constant/style.constant.d.ts +4 -0
  956. package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +1 -0
  957. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +16 -0
  958. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +1 -0
  959. package/libs/feature/map/src/lib/feature-map.module.d.ts +24 -0
  960. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -0
  961. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +11 -0
  962. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -0
  963. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +9 -0
  964. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +1 -0
  965. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +11 -0
  966. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +1 -0
  967. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +12 -0
  968. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +1 -0
  969. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +26 -0
  970. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +1 -0
  971. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +64 -0
  972. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -0
  973. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +24 -0
  974. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -0
  975. package/libs/feature/map/src/lib/style/index.d.ts +3 -0
  976. package/libs/feature/map/src/lib/style/index.d.ts.map +1 -0
  977. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +4 -0
  978. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -0
  979. package/libs/feature/map/src/lib/style/map-style.service.d.ts +24 -0
  980. package/libs/feature/map/src/lib/style/map-style.service.d.ts.map +1 -0
  981. package/libs/feature/map/src/lib/utils/index.d.ts +4 -0
  982. package/libs/feature/map/src/lib/utils/index.d.ts.map +1 -0
  983. package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts +16 -0
  984. package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts.map +1 -0
  985. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +39 -0
  986. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -0
  987. package/libs/feature/map/src/lib/utils/projections.d.ts +2 -0
  988. package/libs/feature/map/src/lib/utils/projections.d.ts.map +1 -0
  989. package/libs/feature/record/src/index.d.ts +10 -0
  990. package/libs/feature/record/src/index.d.ts.map +1 -0
  991. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +22 -0
  992. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -0
  993. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +16 -0
  994. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -0
  995. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +8 -0
  996. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -0
  997. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +13 -0
  998. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -0
  999. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +13 -0
  1000. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -0
  1001. package/libs/feature/record/src/lib/feature-record.module.d.ts +28 -0
  1002. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -0
  1003. package/libs/feature/record/src/lib/gn-ui-version.token.d.ts +3 -0
  1004. package/libs/feature/record/src/lib/gn-ui-version.token.d.ts.map +1 -0
  1005. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +46 -0
  1006. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -0
  1007. package/libs/feature/record/src/lib/state/index.d.ts +3 -0
  1008. package/libs/feature/record/src/lib/state/index.d.ts.map +1 -0
  1009. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +36 -0
  1010. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -0
  1011. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +20 -0
  1012. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -0
  1013. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +42 -0
  1014. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -0
  1015. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +17 -0
  1016. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -0
  1017. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +16 -0
  1018. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -0
  1019. package/libs/feature/router/src/index.d.ts +2 -0
  1020. package/libs/feature/router/src/index.d.ts.map +1 -0
  1021. package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts +10 -0
  1022. package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts.map +1 -0
  1023. package/libs/feature/router/src/lib/default/constants.d.ts +10 -0
  1024. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -0
  1025. package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts +12 -0
  1026. package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts.map +1 -0
  1027. package/libs/feature/router/src/lib/default/index.d.ts +8 -0
  1028. package/libs/feature/router/src/lib/default/index.d.ts.map +1 -0
  1029. package/libs/feature/router/src/lib/default/router.config.d.ts +8 -0
  1030. package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -0
  1031. package/libs/feature/router/src/lib/default/router.module.d.ts +17 -0
  1032. package/libs/feature/router/src/lib/default/router.module.d.ts.map +1 -0
  1033. package/libs/feature/router/src/lib/default/router.service.d.ts +14 -0
  1034. package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -0
  1035. package/libs/feature/router/src/lib/default/services/router-search.service.d.ts +18 -0
  1036. package/libs/feature/router/src/lib/default/services/router-search.service.d.ts.map +1 -0
  1037. package/libs/feature/router/src/lib/default/state/router.actions.d.ts +10 -0
  1038. package/libs/feature/router/src/lib/default/state/router.actions.d.ts.map +1 -0
  1039. package/libs/feature/router/src/lib/default/state/router.effects.d.ts +34 -0
  1040. package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +1 -0
  1041. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +24 -0
  1042. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -0
  1043. package/libs/feature/router/src/lib/default/state/router.selectors.d.ts +4 -0
  1044. package/libs/feature/router/src/lib/default/state/router.selectors.d.ts.map +1 -0
  1045. package/libs/feature/search/src/index.d.ts +21 -0
  1046. package/libs/feature/search/src/index.d.ts.map +1 -0
  1047. package/libs/feature/search/src/lib/constants.d.ts +6 -0
  1048. package/libs/feature/search/src/lib/constants.d.ts.map +1 -0
  1049. package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts +22 -0
  1050. package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts.map +1 -0
  1051. package/libs/feature/search/src/lib/facets/facets.module.d.ts +11 -0
  1052. package/libs/feature/search/src/lib/facets/facets.module.d.ts.map +1 -0
  1053. package/libs/feature/search/src/lib/facets/facets.service.d.ts +49 -0
  1054. package/libs/feature/search/src/lib/facets/facets.service.d.ts.map +1 -0
  1055. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +32 -0
  1056. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -0
  1057. package/libs/feature/search/src/lib/feature-search.module.d.ts +31 -0
  1058. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -0
  1059. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +22 -0
  1060. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +1 -0
  1061. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +35 -0
  1062. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -0
  1063. package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts +19 -0
  1064. package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts.map +1 -0
  1065. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts +9 -0
  1066. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts.map +1 -0
  1067. package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts +16 -0
  1068. package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts.map +1 -0
  1069. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +32 -0
  1070. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -0
  1071. package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts +22 -0
  1072. package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +1 -0
  1073. package/libs/feature/search/src/lib/state/actions.d.ts +162 -0
  1074. package/libs/feature/search/src/lib/state/actions.d.ts.map +1 -0
  1075. package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts +12 -0
  1076. package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts.map +1 -0
  1077. package/libs/feature/search/src/lib/state/effects.d.ts +26 -0
  1078. package/libs/feature/search/src/lib/state/effects.d.ts.map +1 -0
  1079. package/libs/feature/search/src/lib/state/reducer.d.ts +41 -0
  1080. package/libs/feature/search/src/lib/state/reducer.d.ts.map +1 -0
  1081. package/libs/feature/search/src/lib/state/search.facade.d.ts +52 -0
  1082. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -0
  1083. package/libs/feature/search/src/lib/state/selectors.d.ts +25 -0
  1084. package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -0
  1085. package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts +11 -0
  1086. package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts.map +1 -0
  1087. package/libs/feature/search/src/lib/utils/service/fields.d.ts +66 -0
  1088. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -0
  1089. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +20 -0
  1090. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -0
  1091. package/libs/feature/search/src/lib/utils/service/search.service.d.ts +22 -0
  1092. package/libs/feature/search/src/lib/utils/service/search.service.d.ts.map +1 -0
  1093. package/libs/ui/catalog/src/index.d.ts +6 -0
  1094. package/libs/ui/catalog/src/index.d.ts.map +1 -0
  1095. package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts +9 -0
  1096. package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts.map +1 -0
  1097. package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts +16 -0
  1098. package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -0
  1099. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +12 -0
  1100. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -0
  1101. package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts +14 -0
  1102. package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts.map +1 -0
  1103. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +16 -0
  1104. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -0
  1105. package/libs/ui/dataviz/src/index.d.ts +6 -0
  1106. package/libs/ui/dataviz/src/index.d.ts.map +1 -0
  1107. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +29 -0
  1108. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -0
  1109. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +14 -0
  1110. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -0
  1111. package/libs/ui/dataviz/src/lib/table/table.component.d.ts +29 -0
  1112. package/libs/ui/dataviz/src/lib/table/table.component.d.ts.map +1 -0
  1113. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +11 -0
  1114. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -0
  1115. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +10 -0
  1116. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -0
  1117. package/libs/ui/elements/src/index.d.ts +21 -0
  1118. package/libs/ui/elements/src/index.d.ts.map +1 -0
  1119. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +8 -0
  1120. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -0
  1121. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +9 -0
  1122. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +1 -0
  1123. package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts +8 -0
  1124. package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts.map +1 -0
  1125. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +14 -0
  1126. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -0
  1127. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +24 -0
  1128. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -0
  1129. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +8 -0
  1130. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -0
  1131. package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts +7 -0
  1132. package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts.map +1 -0
  1133. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +14 -0
  1134. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -0
  1135. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +13 -0
  1136. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +1 -0
  1137. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +15 -0
  1138. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -0
  1139. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +32 -0
  1140. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -0
  1141. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +14 -0
  1142. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -0
  1143. package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts +16 -0
  1144. package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts.map +1 -0
  1145. package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts +17 -0
  1146. package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +1 -0
  1147. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +8 -0
  1148. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -0
  1149. package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts +15 -0
  1150. package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts.map +1 -0
  1151. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +28 -0
  1152. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -0
  1153. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +35 -0
  1154. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -0
  1155. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +10 -0
  1156. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -0
  1157. package/libs/ui/inputs/src/index.d.ts +19 -0
  1158. package/libs/ui/inputs/src/index.d.ts.map +1 -0
  1159. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +39 -0
  1160. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -0
  1161. package/libs/ui/inputs/src/lib/button/button.component.d.ts +16 -0
  1162. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -0
  1163. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +13 -0
  1164. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -0
  1165. package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts +33 -0
  1166. package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts.map +1 -0
  1167. package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts +11 -0
  1168. package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts.map +1 -0
  1169. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +14 -0
  1170. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +1 -0
  1171. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +46 -0
  1172. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -0
  1173. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts +5 -0
  1174. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts.map +1 -0
  1175. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +40 -0
  1176. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -0
  1177. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts +5 -0
  1178. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts.map +1 -0
  1179. package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts +6 -0
  1180. package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
  1181. package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts +11 -0
  1182. package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
  1183. package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts +6 -0
  1184. package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
  1185. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +11 -0
  1186. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
  1187. package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts +18 -0
  1188. package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
  1189. package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +6 -0
  1190. package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -0
  1191. package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts +6 -0
  1192. package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +1 -0
  1193. package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts +25 -0
  1194. package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +1 -0
  1195. package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts +27 -0
  1196. package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +1 -0
  1197. package/libs/ui/inputs/src/lib/form-field/index.d.ts +10 -0
  1198. package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +1 -0
  1199. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +8 -0
  1200. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +1 -0
  1201. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +12 -0
  1202. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -0
  1203. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +17 -0
  1204. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -0
  1205. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +17 -0
  1206. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -0
  1207. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +40 -0
  1208. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -0
  1209. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +18 -0
  1210. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +1 -0
  1211. package/libs/ui/layout/src/index.d.ts +7 -0
  1212. package/libs/ui/layout/src/index.d.ts.map +1 -0
  1213. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +19 -0
  1214. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -0
  1215. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +18 -0
  1216. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -0
  1217. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +13 -0
  1218. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -0
  1219. package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts +10 -0
  1220. package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts.map +1 -0
  1221. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +37 -0
  1222. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +1 -0
  1223. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +15 -0
  1224. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -0
  1225. package/libs/ui/map/src/index.d.ts +4 -0
  1226. package/libs/ui/map/src/index.d.ts.map +1 -0
  1227. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +10 -0
  1228. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -0
  1229. package/libs/ui/map/src/lib/components/map/map.component.d.ts +19 -0
  1230. package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +1 -0
  1231. package/libs/ui/map/src/lib/ui-map.module.d.ts +13 -0
  1232. package/libs/ui/map/src/lib/ui-map.module.d.ts.map +1 -0
  1233. package/libs/ui/search/src/index.d.ts +21 -0
  1234. package/libs/ui/search/src/index.d.ts.map +1 -0
  1235. package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts +44 -0
  1236. package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts.map +1 -0
  1237. package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts +26 -0
  1238. package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts.map +1 -0
  1239. package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts +19 -0
  1240. package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts.map +1 -0
  1241. package/libs/ui/search/src/lib/facets/facets.model.d.ts +27 -0
  1242. package/libs/ui/search/src/lib/facets/facets.model.d.ts.map +1 -0
  1243. package/libs/ui/search/src/lib/facets/facets.module.d.ts +13 -0
  1244. package/libs/ui/search/src/lib/facets/facets.module.d.ts.map +1 -0
  1245. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +5 -0
  1246. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -0
  1247. package/libs/ui/search/src/lib/facets/fixtures/index.d.ts +2 -0
  1248. package/libs/ui/search/src/lib/facets/fixtures/index.d.ts.map +1 -0
  1249. package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts +12 -0
  1250. package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts.map +1 -0
  1251. package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts +29 -0
  1252. package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts.map +1 -0
  1253. package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts +7 -0
  1254. package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts.map +1 -0
  1255. package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts +18 -0
  1256. package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts.map +1 -0
  1257. package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts +7 -0
  1258. package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts.map +1 -0
  1259. package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts +10 -0
  1260. package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts.map +1 -0
  1261. package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts +7 -0
  1262. package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts.map +1 -0
  1263. package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts +7 -0
  1264. package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts.map +1 -0
  1265. package/libs/ui/search/src/lib/record-table/record-table.component.d.ts +23 -0
  1266. package/libs/ui/search/src/lib/record-table/record-table.component.d.ts.map +1 -0
  1267. package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts +8 -0
  1268. package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts.map +1 -0
  1269. package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts +13 -0
  1270. package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts.map +1 -0
  1271. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts +18 -0
  1272. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -0
  1273. package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts +25 -0
  1274. package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts.map +1 -0
  1275. package/libs/ui/search/src/lib/ui-search.module.d.ts +31 -0
  1276. package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -0
  1277. package/libs/ui/widgets/src/index.d.ts +9 -0
  1278. package/libs/ui/widgets/src/index.d.ts.map +1 -0
  1279. package/libs/ui/widgets/src/lib/badge/badge.component.d.ts +7 -0
  1280. package/libs/ui/widgets/src/lib/badge/badge.component.d.ts.map +1 -0
  1281. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +6 -0
  1282. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +1 -0
  1283. package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts +7 -0
  1284. package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts.map +1 -0
  1285. package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts +19 -0
  1286. package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +1 -0
  1287. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +16 -0
  1288. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +1 -0
  1289. package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts +6 -0
  1290. package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts.map +1 -0
  1291. package/libs/ui/widgets/src/lib/step-bar/step-bar.component.d.ts +21 -0
  1292. package/libs/ui/widgets/src/lib/step-bar/step-bar.component.d.ts.map +1 -0
  1293. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +22 -0
  1294. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +1 -0
  1295. package/libs/util/app-config/src/index.d.ts +4 -0
  1296. package/libs/util/app-config/src/index.d.ts.map +1 -0
  1297. package/libs/util/app-config/src/lib/app-config.d.ts +27 -0
  1298. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -0
  1299. package/libs/util/app-config/src/lib/constants.d.ts +2 -0
  1300. package/libs/util/app-config/src/lib/constants.d.ts.map +1 -0
  1301. package/libs/util/app-config/src/lib/fixtures.d.ts +10 -0
  1302. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -0
  1303. package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts +10 -0
  1304. package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts.map +1 -0
  1305. package/libs/util/app-config/src/lib/model.d.ts +70 -0
  1306. package/libs/util/app-config/src/lib/model.d.ts.map +1 -0
  1307. package/libs/util/app-config/src/lib/parse-utils.d.ts +19 -0
  1308. package/libs/util/app-config/src/lib/parse-utils.d.ts.map +1 -0
  1309. package/libs/util/data-fetcher/src/index.d.ts +5 -0
  1310. package/libs/util/data-fetcher/src/index.d.ts.map +1 -0
  1311. package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts +22 -0
  1312. package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts.map +1 -0
  1313. package/libs/util/data-fetcher/src/lib/headers.d.ts +3 -0
  1314. package/libs/util/data-fetcher/src/lib/headers.d.ts.map +1 -0
  1315. package/libs/util/data-fetcher/src/lib/model.d.ts +67 -0
  1316. package/libs/util/data-fetcher/src/lib/model.d.ts.map +1 -0
  1317. package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts +16 -0
  1318. package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts.map +1 -0
  1319. package/libs/util/data-fetcher/src/lib/readers/base.d.ts +24 -0
  1320. package/libs/util/data-fetcher/src/lib/readers/base.d.ts.map +1 -0
  1321. package/libs/util/data-fetcher/src/lib/readers/csv.d.ts +13 -0
  1322. package/libs/util/data-fetcher/src/lib/readers/csv.d.ts.map +1 -0
  1323. package/libs/util/data-fetcher/src/lib/readers/excel.d.ts +18 -0
  1324. package/libs/util/data-fetcher/src/lib/readers/excel.d.ts.map +1 -0
  1325. package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts +18 -0
  1326. package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts.map +1 -0
  1327. package/libs/util/data-fetcher/src/lib/readers/gml.d.ts +17 -0
  1328. package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +1 -0
  1329. package/libs/util/data-fetcher/src/lib/readers/json.d.ts +17 -0
  1330. package/libs/util/data-fetcher/src/lib/readers/json.d.ts.map +1 -0
  1331. package/libs/util/data-fetcher/src/lib/sql-utils.d.ts +13 -0
  1332. package/libs/util/data-fetcher/src/lib/sql-utils.d.ts.map +1 -0
  1333. package/libs/util/data-fetcher/src/lib/utils.d.ts +26 -0
  1334. package/libs/util/data-fetcher/src/lib/utils.d.ts.map +1 -0
  1335. package/libs/util/i18n/src/index.d.ts +8 -0
  1336. package/libs/util/i18n/src/index.d.ts.map +1 -0
  1337. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +6 -0
  1338. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +1 -0
  1339. package/libs/util/i18n/src/lib/file.translate.loader.d.ts +9 -0
  1340. package/libs/util/i18n/src/lib/file.translate.loader.d.ts.map +1 -0
  1341. package/libs/util/i18n/src/lib/i18n.constants.d.ts +39 -0
  1342. package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -0
  1343. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +12 -0
  1344. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +1 -0
  1345. package/libs/util/i18n/src/lib/lang.service.d.ts +13 -0
  1346. package/libs/util/i18n/src/lib/lang.service.d.ts.map +1 -0
  1347. package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts +17 -0
  1348. package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts.map +1 -0
  1349. package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts +131 -0
  1350. package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts.map +1 -0
  1351. package/libs/util/i18n/src/lib/testing/translations.model.d.ts +21 -0
  1352. package/libs/util/i18n/src/lib/testing/translations.model.d.ts.map +1 -0
  1353. package/libs/util/i18n/src/lib/translate.loader.utils.d.ts +2 -0
  1354. package/libs/util/i18n/src/lib/translate.loader.utils.d.ts.map +1 -0
  1355. package/libs/util/i18n/src/lib/util-i18n.module.d.ts +12 -0
  1356. package/libs/util/i18n/src/lib/util-i18n.module.d.ts.map +1 -0
  1357. package/libs/util/shared/src/index.d.ts +7 -0
  1358. package/libs/util/shared/src/index.d.ts.map +1 -0
  1359. package/libs/util/shared/src/lib/image-fallback.directive.d.ts +11 -0
  1360. package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +1 -0
  1361. package/libs/util/shared/src/lib/links/index.d.ts +3 -0
  1362. package/libs/util/shared/src/lib/links/index.d.ts.map +1 -0
  1363. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +18 -0
  1364. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -0
  1365. package/libs/util/shared/src/lib/links/link-utils.d.ts +81 -0
  1366. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -0
  1367. package/libs/util/shared/src/lib/pipes/SafePipe.d.ts +11 -0
  1368. package/libs/util/shared/src/lib/pipes/SafePipe.d.ts.map +1 -0
  1369. package/libs/util/shared/src/lib/pipes/index.d.ts +2 -0
  1370. package/libs/util/shared/src/lib/pipes/index.d.ts.map +1 -0
  1371. package/libs/util/shared/src/lib/services/index.d.ts +4 -0
  1372. package/libs/util/shared/src/lib/services/index.d.ts.map +1 -0
  1373. package/libs/util/shared/src/lib/services/log.service.d.ts +9 -0
  1374. package/libs/util/shared/src/lib/services/log.service.d.ts.map +1 -0
  1375. package/libs/util/shared/src/lib/services/proxy.service.d.ts +16 -0
  1376. package/libs/util/shared/src/lib/services/proxy.service.d.ts.map +1 -0
  1377. package/libs/util/shared/src/lib/services/theme.service.d.ts +10 -0
  1378. package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -0
  1379. package/libs/util/shared/src/lib/util-shared.module.d.ts +10 -0
  1380. package/libs/util/shared/src/lib/util-shared.module.d.ts.map +1 -0
  1381. package/libs/util/shared/src/lib/utils/event.d.ts +7 -0
  1382. package/libs/util/shared/src/lib/utils/event.d.ts.map +1 -0
  1383. package/libs/util/shared/src/lib/utils/geojson.d.ts +3 -0
  1384. package/libs/util/shared/src/lib/utils/geojson.d.ts.map +1 -0
  1385. package/libs/util/shared/src/lib/utils/index.d.ts +8 -0
  1386. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -0
  1387. package/libs/util/shared/src/lib/utils/parse.d.ts +6 -0
  1388. package/libs/util/shared/src/lib/utils/parse.d.ts.map +1 -0
  1389. package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts +2 -0
  1390. package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts.map +1 -0
  1391. package/libs/util/shared/src/lib/utils/sort-by.d.ts +5 -0
  1392. package/libs/util/shared/src/lib/utils/sort-by.d.ts.map +1 -0
  1393. package/libs/util/shared/src/lib/utils/strip-html.d.ts +2 -0
  1394. package/libs/util/shared/src/lib/utils/strip-html.d.ts.map +1 -0
  1395. package/libs/util/shared/src/lib/utils/url.d.ts +7 -0
  1396. package/libs/util/shared/src/lib/utils/url.d.ts.map +1 -0
  1397. package/package.json +85 -0
  1398. package/src/libs/api/metadata-converter/src/index.ts +4 -0
  1399. package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +16 -0
  1400. package/src/libs/api/metadata-converter/src/lib/convert-utils.ts +26 -0
  1401. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +122 -0
  1402. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +75 -0
  1403. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +222 -0
  1404. package/src/libs/api/metadata-converter/src/lib/function-utils.ts +171 -0
  1405. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +94 -0
  1406. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +403 -0
  1407. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.ts +52 -0
  1408. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +21 -0
  1409. package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +54 -0
  1410. package/src/libs/api/metadata-converter/src/lib/gn4/types/index.ts +3 -0
  1411. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +203 -0
  1412. package/src/libs/api/metadata-converter/src/lib/gn4/types/search.model.ts +91 -0
  1413. package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.ts +48 -0
  1414. package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.ts +19 -0
  1415. package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.ts +67 -0
  1416. package/src/libs/api/metadata-converter/src/lib/iso19139/converter.ts +187 -0
  1417. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +749 -0
  1418. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +971 -0
  1419. package/src/libs/api/metadata-converter/src/lib/metadata-base.mapper.ts +23 -0
  1420. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +382 -0
  1421. package/src/libs/api/repository/src/index.ts +2 -0
  1422. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +79 -0
  1423. package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +4 -0
  1424. package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +24 -0
  1425. package/src/libs/api/repository/src/lib/gn4/auth/index.ts +3 -0
  1426. package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +32 -0
  1427. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +533 -0
  1428. package/src/libs/api/repository/src/lib/gn4/elasticsearch/index.ts +2 -0
  1429. package/src/libs/api/repository/src/lib/gn4/favorites/favorites.service.ts +116 -0
  1430. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +162 -0
  1431. package/src/libs/api/repository/src/lib/gn4/index.ts +6 -0
  1432. package/src/libs/api/repository/src/lib/gn4/organizations/index.ts +13 -0
  1433. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +137 -0
  1434. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +319 -0
  1435. package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +22 -0
  1436. package/src/libs/api/repository/src/lib/metadata-language.ts +3 -0
  1437. package/src/libs/api/repository/src/lib/repository-url.ts +14 -0
  1438. package/src/libs/common/domain/src/lib/dataviz-configuration.model.ts +19 -0
  1439. package/src/libs/common/domain/src/lib/organizations.service.interface.ts +19 -0
  1440. package/src/libs/common/domain/src/lib/record/contact.model.ts +38 -0
  1441. package/src/libs/common/domain/src/lib/record/index.ts +3 -0
  1442. package/src/libs/common/domain/src/lib/record/metadata.model.ts +188 -0
  1443. package/src/libs/common/domain/src/lib/record/organization.model.ts +7 -0
  1444. package/src/libs/common/domain/src/lib/records-repository.interface.ts +22 -0
  1445. package/src/libs/common/domain/src/lib/search/aggregation.model.ts +52 -0
  1446. package/src/libs/common/domain/src/lib/search/filter.model.ts +6 -0
  1447. package/src/libs/common/domain/src/lib/search/index.ts +4 -0
  1448. package/src/libs/common/domain/src/lib/search/search.model.ts +22 -0
  1449. package/src/libs/common/domain/src/lib/search/sort-by.model.ts +8 -0
  1450. package/src/libs/common/domain/src/lib/user.model.ts +10 -0
  1451. package/src/libs/common/fixtures/src/index.ts +11 -0
  1452. package/src/libs/common/fixtures/src/lib/elasticsearch/aggregations-request.ts +26 -0
  1453. package/src/libs/common/fixtures/src/lib/elasticsearch/aggregations-response.ts +79 -0
  1454. package/src/libs/common/fixtures/src/lib/elasticsearch/full-response.ts +1594 -0
  1455. package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +6 -0
  1456. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +144 -0
  1457. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1755 -0
  1458. package/src/libs/common/fixtures/src/lib/elasticsearch/search-requests.ts +146 -0
  1459. package/src/libs/common/fixtures/src/lib/elasticsearch/search-responses.ts +445 -0
  1460. package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57313 -0
  1461. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +80 -0
  1462. package/src/libs/common/fixtures/src/lib/gn4/index.ts +1 -0
  1463. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +154 -0
  1464. package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +7 -0
  1465. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +71 -0
  1466. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +31 -0
  1467. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +204 -0
  1468. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +8 -0
  1469. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +70 -0
  1470. package/src/libs/common/fixtures/src/lib/search/index.ts +1 -0
  1471. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +35 -0
  1472. package/src/libs/common/fixtures/src/lib/utils/freeze.ts +10 -0
  1473. package/src/libs/common/fixtures/src/lib/utils/index.ts +1 -0
  1474. package/src/libs/data-access/datafeeder/src/index.ts +1 -0
  1475. package/src/libs/data-access/datafeeder/src/openapi/api/api.ts +11 -0
  1476. package/src/libs/data-access/datafeeder/src/openapi/api/config.api.service.ts +168 -0
  1477. package/src/libs/data-access/datafeeder/src/openapi/api/dataPublishing.api.service.ts +270 -0
  1478. package/src/libs/data-access/datafeeder/src/openapi/api/fileUpload.api.service.ts +734 -0
  1479. package/src/libs/data-access/datafeeder/src/openapi/api.module.ts +46 -0
  1480. package/src/libs/data-access/datafeeder/src/openapi/configuration.ts +125 -0
  1481. package/src/libs/data-access/datafeeder/src/openapi/encoder.ts +20 -0
  1482. package/src/libs/data-access/datafeeder/src/openapi/index.ts +5 -0
  1483. package/src/libs/data-access/datafeeder/src/openapi/model/analysisStatusEnum.api.model.ts +24 -0
  1484. package/src/libs/data-access/datafeeder/src/openapi/model/boundingBox.api.model.ts +20 -0
  1485. package/src/libs/data-access/datafeeder/src/openapi/model/cRS.api.model.ts +25 -0
  1486. package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +41 -0
  1487. package/src/libs/data-access/datafeeder/src/openapi/model/datasetPublishRequest.api.model.ts +39 -0
  1488. package/src/libs/data-access/datafeeder/src/openapi/model/datasetPublishingStatus.api.model.ts +50 -0
  1489. package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +37 -0
  1490. package/src/libs/data-access/datafeeder/src/openapi/model/models.ts +13 -0
  1491. package/src/libs/data-access/datafeeder/src/openapi/model/property.api.model.ts +17 -0
  1492. package/src/libs/data-access/datafeeder/src/openapi/model/publishJobStatus.api.model.ts +33 -0
  1493. package/src/libs/data-access/datafeeder/src/openapi/model/publishRequest.api.model.ts +16 -0
  1494. package/src/libs/data-access/datafeeder/src/openapi/model/publishStatusEnum.api.model.ts +20 -0
  1495. package/src/libs/data-access/datafeeder/src/openapi/model/publishStepEnum.api.model.ts +42 -0
  1496. package/src/libs/data-access/datafeeder/src/openapi/model/uploadJobStatus.api.model.ts +33 -0
  1497. package/src/libs/data-access/datafeeder/src/openapi/variables.ts +9 -0
  1498. package/src/libs/data-access/datafeeder/src/spec.yaml +537 -0
  1499. package/src/libs/data-access/gn-data-platform/src/openapi/api/api.ts +3 -0
  1500. package/src/libs/data-access/gn-data-platform/src/openapi/api/dataviz.api.service.ts +488 -0
  1501. package/src/libs/data-access/gn-data-platform/src/openapi/api.module.ts +44 -0
  1502. package/src/libs/data-access/gn-data-platform/src/openapi/configuration.ts +125 -0
  1503. package/src/libs/data-access/gn-data-platform/src/openapi/encoder.ts +20 -0
  1504. package/src/libs/data-access/gn-data-platform/src/openapi/index.ts +5 -0
  1505. package/src/libs/data-access/gn-data-platform/src/openapi/model/createDatavizDto.api.model.ts +22 -0
  1506. package/src/libs/data-access/gn-data-platform/src/openapi/model/dataviz.api.model.ts +26 -0
  1507. package/src/libs/data-access/gn-data-platform/src/openapi/model/models.ts +2 -0
  1508. package/src/libs/data-access/gn-data-platform/src/openapi/variables.ts +9 -0
  1509. package/src/libs/data-access/gn4/src/fixtures/index.ts +2 -0
  1510. package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +65 -0
  1511. package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +5 -0
  1512. package/src/libs/data-access/gn4/src/index.ts +2 -0
  1513. package/src/libs/data-access/gn4/src/openapi/api/api.ts +89 -0
  1514. package/src/libs/data-access/gn4/src/openapi/api/customstyle.api.service.ts +249 -0
  1515. package/src/libs/data-access/gn4/src/openapi/api/groups.api.service.ts +603 -0
  1516. package/src/libs/data-access/gn4/src/openapi/api/harvesters.api.service.ts +202 -0
  1517. package/src/libs/data-access/gn4/src/openapi/api/identifiers.api.service.ts +362 -0
  1518. package/src/libs/data-access/gn4/src/openapi/api/languages.api.service.ts +171 -0
  1519. package/src/libs/data-access/gn4/src/openapi/api/links.api.service.ts +489 -0
  1520. package/src/libs/data-access/gn4/src/openapi/api/logos.api.service.ts +336 -0
  1521. package/src/libs/data-access/gn4/src/openapi/api/mapservers.api.service.ts +794 -0
  1522. package/src/libs/data-access/gn4/src/openapi/api/me.api.service.ts +171 -0
  1523. package/src/libs/data-access/gn4/src/openapi/api/operations.api.service.ts +171 -0
  1524. package/src/libs/data-access/gn4/src/openapi/api/pages.api.service.ts +423 -0
  1525. package/src/libs/data-access/gn4/src/openapi/api/processes.api.service.ts +611 -0
  1526. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +8296 -0
  1527. package/src/libs/data-access/gn4/src/openapi/api/regions.api.service.ts +272 -0
  1528. package/src/libs/data-access/gn4/src/openapi/api/registries.api.service.ts +1963 -0
  1529. package/src/libs/data-access/gn4/src/openapi/api/related.api.service.ts +265 -0
  1530. package/src/libs/data-access/gn4/src/openapi/api/search.api.service.ts +198 -0
  1531. package/src/libs/data-access/gn4/src/openapi/api/selections.api.service.ts +360 -0
  1532. package/src/libs/data-access/gn4/src/openapi/api/site.api.service.ts +1381 -0
  1533. package/src/libs/data-access/gn4/src/openapi/api/sources.api.service.ts +256 -0
  1534. package/src/libs/data-access/gn4/src/openapi/api/standards.api.service.ts +964 -0
  1535. package/src/libs/data-access/gn4/src/openapi/api/status.api.service.ts +242 -0
  1536. package/src/libs/data-access/gn4/src/openapi/api/tags.api.service.ts +336 -0
  1537. package/src/libs/data-access/gn4/src/openapi/api/tools.api.service.ts +916 -0
  1538. package/src/libs/data-access/gn4/src/openapi/api/ui.api.service.ts +333 -0
  1539. package/src/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.ts +928 -0
  1540. package/src/libs/data-access/gn4/src/openapi/api/users.api.service.ts +1213 -0
  1541. package/src/libs/data-access/gn4/src/openapi/api/usersearches.api.service.ts +741 -0
  1542. package/src/libs/data-access/gn4/src/openapi/api/userselections.api.service.ts +530 -0
  1543. package/src/libs/data-access/gn4/src/openapi/api.module.ts +42 -0
  1544. package/src/libs/data-access/gn4/src/openapi/configuration.ts +125 -0
  1545. package/src/libs/data-access/gn4/src/openapi/encoder.ts +20 -0
  1546. package/src/libs/data-access/gn4/src/openapi/index.ts +5 -0
  1547. package/src/libs/data-access/gn4/src/openapi/model/address.api.model.ts +20 -0
  1548. package/src/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.ts +29 -0
  1549. package/src/libs/data-access/gn4/src/openapi/model/associated.api.model.ts +16 -0
  1550. package/src/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.ts +26 -0
  1551. package/src/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.ts +16 -0
  1552. package/src/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.ts +17 -0
  1553. package/src/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.ts +16 -0
  1554. package/src/libs/data-access/gn4/src/openapi/model/category.api.model.ts +16 -0
  1555. package/src/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.ts +15 -0
  1556. package/src/libs/data-access/gn4/src/openapi/model/children.api.model.ts +16 -0
  1557. package/src/libs/data-access/gn4/src/openapi/model/codelist.api.model.ts +18 -0
  1558. package/src/libs/data-access/gn4/src/openapi/model/crs.api.model.ts +19 -0
  1559. package/src/libs/data-access/gn4/src/openapi/model/dataset.api.model.ts +16 -0
  1560. package/src/libs/data-access/gn4/src/openapi/model/description.api.model.ts +16 -0
  1561. package/src/libs/data-access/gn4/src/openapi/model/element.api.model.ts +21 -0
  1562. package/src/libs/data-access/gn4/src/openapi/model/entry.api.model.ts +18 -0
  1563. package/src/libs/data-access/gn4/src/openapi/model/extentDto.api.model.ts +18 -0
  1564. package/src/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.ts +17 -0
  1565. package/src/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.ts +25 -0
  1566. package/src/libs/data-access/gn4/src/openapi/model/fcat.api.model.ts +16 -0
  1567. package/src/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.ts +15 -0
  1568. package/src/libs/data-access/gn4/src/openapi/model/featureType.api.model.ts +16 -0
  1569. package/src/libs/data-access/gn4/src/openapi/model/field.api.model.ts +22 -0
  1570. package/src/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.ts +15 -0
  1571. package/src/libs/data-access/gn4/src/openapi/model/group.api.model.ts +27 -0
  1572. package/src/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.ts +16 -0
  1573. package/src/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.ts +56 -0
  1574. package/src/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.ts +16 -0
  1575. package/src/libs/data-access/gn4/src/openapi/model/hassource.api.model.ts +16 -0
  1576. package/src/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.ts +21 -0
  1577. package/src/libs/data-access/gn4/src/openapi/model/iSODate.api.model.ts +28 -0
  1578. package/src/libs/data-access/gn4/src/openapi/model/infoReport.api.model.ts +19 -0
  1579. package/src/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.ts +15 -0
  1580. package/src/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.ts +15 -0
  1581. package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +15 -0
  1582. package/src/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.ts +18 -0
  1583. package/src/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.ts +26 -0
  1584. package/src/libs/data-access/gn4/src/openapi/model/link.api.model.ts +32 -0
  1585. package/src/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.ts +21 -0
  1586. package/src/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.ts +20 -0
  1587. package/src/libs/data-access/gn4/src/openapi/model/localizedString.api.model.ts +17 -0
  1588. package/src/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.ts +16 -0
  1589. package/src/libs/data-access/gn4/src/openapi/model/mapServer.api.model.ts +28 -0
  1590. package/src/libs/data-access/gn4/src/openapi/model/meResponse.api.model.ts +27 -0
  1591. package/src/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.ts +17 -0
  1592. package/src/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.ts +20 -0
  1593. package/src/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.ts +16 -0
  1594. package/src/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.ts +35 -0
  1595. package/src/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.ts +41 -0
  1596. package/src/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.ts +33 -0
  1597. package/src/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.ts +30 -0
  1598. package/src/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.ts +32 -0
  1599. package/src/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.ts +44 -0
  1600. package/src/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.ts +21 -0
  1601. package/src/libs/data-access/gn4/src/openapi/model/models.ts +109 -0
  1602. package/src/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.ts +16 -0
  1603. package/src/libs/data-access/gn4/src/openapi/model/online.api.model.ts +16 -0
  1604. package/src/libs/data-access/gn4/src/openapi/model/operation.api.model.ts +36 -0
  1605. package/src/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.ts +17 -0
  1606. package/src/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.ts +58 -0
  1607. package/src/libs/data-access/gn4/src/openapi/model/pageLink.api.model.ts +28 -0
  1608. package/src/libs/data-access/gn4/src/openapi/model/pageable.api.model.ts +21 -0
  1609. package/src/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.ts +17 -0
  1610. package/src/libs/data-access/gn4/src/openapi/model/parent.api.model.ts +16 -0
  1611. package/src/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.ts +16 -0
  1612. package/src/libs/data-access/gn4/src/openapi/model/processingReport.api.model.ts +25 -0
  1613. package/src/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.ts +18 -0
  1614. package/src/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.ts +18 -0
  1615. package/src/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.ts +22 -0
  1616. package/src/libs/data-access/gn4/src/openapi/model/related.api.model.ts +16 -0
  1617. package/src/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.ts +24 -0
  1618. package/src/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.ts +23 -0
  1619. package/src/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.ts +40 -0
  1620. package/src/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.ts +25 -0
  1621. package/src/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.ts +19 -0
  1622. package/src/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.ts +17 -0
  1623. package/src/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.ts +21 -0
  1624. package/src/libs/data-access/gn4/src/openapi/model/report.api.model.ts +19 -0
  1625. package/src/libs/data-access/gn4/src/openapi/model/reports.api.model.ts +16 -0
  1626. package/src/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.ts +19 -0
  1627. package/src/libs/data-access/gn4/src/openapi/model/section.api.model.ts +17 -0
  1628. package/src/libs/data-access/gn4/src/openapi/model/selection.api.model.ts +18 -0
  1629. package/src/libs/data-access/gn4/src/openapi/model/service.api.model.ts +16 -0
  1630. package/src/libs/data-access/gn4/src/openapi/model/setting.api.model.ts +29 -0
  1631. package/src/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.ts +16 -0
  1632. package/src/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.ts +17 -0
  1633. package/src/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.ts +18 -0
  1634. package/src/libs/data-access/gn4/src/openapi/model/siblings.api.model.ts +16 -0
  1635. package/src/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.ts +35 -0
  1636. package/src/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.ts +19 -0
  1637. package/src/libs/data-access/gn4/src/openapi/model/sort.api.model.ts +17 -0
  1638. package/src/libs/data-access/gn4/src/openapi/model/source.api.model.ts +16 -0
  1639. package/src/libs/data-access/gn4/src/openapi/model/status.api.model.ts +33 -0
  1640. package/src/libs/data-access/gn4/src/openapi/model/statusValue.api.model.ts +57 -0
  1641. package/src/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.ts +21 -0
  1642. package/src/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.ts +24 -0
  1643. package/src/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.ts +16 -0
  1644. package/src/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.ts +18 -0
  1645. package/src/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.ts +16 -0
  1646. package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +54 -0
  1647. package/src/libs/data-access/gn4/src/openapi/model/userDto.api.model.ts +31 -0
  1648. package/src/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.ts +32 -0
  1649. package/src/libs/data-access/gn4/src/openapi/model/userGroup.api.model.ts +40 -0
  1650. package/src/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.ts +36 -0
  1651. package/src/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.ts +19 -0
  1652. package/src/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.ts +23 -0
  1653. package/src/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.ts +23 -0
  1654. package/src/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.ts +25 -0
  1655. package/src/libs/data-access/gn4/src/openapi/model/values.api.model.ts +17 -0
  1656. package/src/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.ts +37 -0
  1657. package/src/libs/data-access/gn4/src/openapi/variables.ts +9 -0
  1658. package/src/libs/data-access/gn4/src/spec.yaml +11305 -0
  1659. package/src/libs/feature/auth/src/index.ts +1 -0
  1660. package/src/libs/feature/auth/src/lib/feature-auth.module.ts +12 -0
  1661. package/src/libs/feature/catalog/src/index.ts +7 -0
  1662. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +85 -0
  1663. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.css +0 -0
  1664. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +26 -0
  1665. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +105 -0
  1666. package/src/libs/feature/catalog/src/lib/records/records.service.ts +18 -0
  1667. package/src/libs/feature/catalog/src/lib/site-title/site-title.component.css +0 -0
  1668. package/src/libs/feature/catalog/src/lib/site-title/site-title.component.html +5 -0
  1669. package/src/libs/feature/catalog/src/lib/site-title/site-title.component.ts +23 -0
  1670. package/src/libs/feature/catalog/src/lib/source-label/source-label.component.css +0 -0
  1671. package/src/libs/feature/catalog/src/lib/source-label/source-label.component.html +1 -0
  1672. package/src/libs/feature/catalog/src/lib/source-label/source-label.component.ts +17 -0
  1673. package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +92 -0
  1674. package/src/libs/feature/catalog/src/lib/sources/sources.model.ts +24 -0
  1675. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +28 -0
  1676. package/src/libs/feature/catalog/src/lib/users/users.service.ts +12 -0
  1677. package/src/libs/feature/dataviz/src/index.ts +6 -0
  1678. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.css +0 -0
  1679. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +62 -0
  1680. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +232 -0
  1681. package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +43 -0
  1682. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.css +0 -0
  1683. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.html +6 -0
  1684. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +33 -0
  1685. package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +40 -0
  1686. package/src/libs/feature/dataviz/src/lib/figure/figure.service.ts +30 -0
  1687. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.css +0 -0
  1688. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +17 -0
  1689. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +156 -0
  1690. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +208 -0
  1691. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.css +0 -0
  1692. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +22 -0
  1693. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +90 -0
  1694. package/src/libs/feature/editor/src/index.ts +6 -0
  1695. package/src/libs/feature/editor/src/lib/components/configs/datepicker.config.ts +26 -0
  1696. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.css +5 -0
  1697. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +26 -0
  1698. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts +93 -0
  1699. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.css +31 -0
  1700. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +75 -0
  1701. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +208 -0
  1702. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.css +3 -0
  1703. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.html +21 -0
  1704. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +59 -0
  1705. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +35 -0
  1706. package/src/libs/feature/editor/src/lib/models/index.ts +2 -0
  1707. package/src/libs/feature/editor/src/lib/models/wizard-field.model.ts +10 -0
  1708. package/src/libs/feature/editor/src/lib/models/wizard-field.type.ts +7 -0
  1709. package/src/libs/feature/editor/src/lib/record-form/record-form.component.css +0 -0
  1710. package/src/libs/feature/editor/src/lib/record-form/record-form.component.html +8 -0
  1711. package/src/libs/feature/editor/src/lib/record-form/record-form.component.ts +23 -0
  1712. package/src/libs/feature/editor/src/lib/services/editor.service.ts +107 -0
  1713. package/src/libs/feature/editor/src/lib/services/wizard.service.ts +105 -0
  1714. package/src/libs/feature/map/src/index.ts +19 -0
  1715. package/src/libs/feature/map/src/lib/+state/map.actions.ts +32 -0
  1716. package/src/libs/feature/map/src/lib/+state/map.effects.ts +7 -0
  1717. package/src/libs/feature/map/src/lib/+state/map.facade.ts +30 -0
  1718. package/src/libs/feature/map/src/lib/+state/map.models.ts +9 -0
  1719. package/src/libs/feature/map/src/lib/+state/map.reducer.ts +83 -0
  1720. package/src/libs/feature/map/src/lib/+state/map.selectors.ts +10 -0
  1721. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.css +4 -0
  1722. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.html +6 -0
  1723. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +44 -0
  1724. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.css +0 -0
  1725. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.html +23 -0
  1726. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +75 -0
  1727. package/src/libs/feature/map/src/lib/constant/index.ts +1 -0
  1728. package/src/libs/feature/map/src/lib/constant/map-options.ts +17 -0
  1729. package/src/libs/feature/map/src/lib/constant/style.constant.ts +18 -0
  1730. package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +42 -0
  1731. package/src/libs/feature/map/src/lib/feature-map.module.ts +61 -0
  1732. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +49 -0
  1733. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.scss +0 -0
  1734. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +17 -0
  1735. package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +10 -0
  1736. package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +13 -0
  1737. package/src/libs/feature/map/src/lib/map-container/map-container.component.css +0 -0
  1738. package/src/libs/feature/map/src/lib/map-container/map-container.component.html +1 -0
  1739. package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +26 -0
  1740. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.css +0 -0
  1741. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +1 -0
  1742. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +57 -0
  1743. package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +51 -0
  1744. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +80 -0
  1745. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +232 -0
  1746. package/src/libs/feature/map/src/lib/style/index.ts +2 -0
  1747. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +45 -0
  1748. package/src/libs/feature/map/src/lib/style/map-style.service.ts +108 -0
  1749. package/src/libs/feature/map/src/lib/utils/index.ts +3 -0
  1750. package/src/libs/feature/map/src/lib/utils/map-utils-wms.service.ts +40 -0
  1751. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +242 -0
  1752. package/src/libs/feature/map/src/lib/utils/projections.ts +1 -0
  1753. package/src/libs/feature/record/src/index.ts +9 -0
  1754. package/src/libs/feature/record/src/lib/data-view/data-view.component.css +0 -0
  1755. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +21 -0
  1756. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +59 -0
  1757. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.css +0 -0
  1758. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.html +5 -0
  1759. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +58 -0
  1760. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.css +10 -0
  1761. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +30 -0
  1762. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +21 -0
  1763. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.css +0 -0
  1764. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.html +5 -0
  1765. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +51 -0
  1766. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.css +0 -0
  1767. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +9 -0
  1768. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +54 -0
  1769. package/src/libs/feature/record/src/lib/feature-record.module.ts +62 -0
  1770. package/src/libs/feature/record/src/lib/gn-ui-version.token.ts +3 -0
  1771. package/src/libs/feature/record/src/lib/map-view/map-view.component.css +0 -0
  1772. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +54 -0
  1773. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +201 -0
  1774. package/src/libs/feature/record/src/lib/state/index.ts +2 -0
  1775. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +35 -0
  1776. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +43 -0
  1777. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +106 -0
  1778. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +61 -0
  1779. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +36 -0
  1780. package/src/libs/feature/router/src/index.ts +1 -0
  1781. package/src/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.ts +34 -0
  1782. package/src/libs/feature/router/src/lib/default/constants.ts +11 -0
  1783. package/src/libs/feature/router/src/lib/default/container/search-router.container.directive.ts +23 -0
  1784. package/src/libs/feature/router/src/lib/default/index.ts +7 -0
  1785. package/src/libs/feature/router/src/lib/default/router.config.ts +11 -0
  1786. package/src/libs/feature/router/src/lib/default/router.module.ts +50 -0
  1787. package/src/libs/feature/router/src/lib/default/router.service.ts +39 -0
  1788. package/src/libs/feature/router/src/lib/default/services/router-search.service.ts +65 -0
  1789. package/src/libs/feature/router/src/lib/default/state/router.actions.ts +15 -0
  1790. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +163 -0
  1791. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +80 -0
  1792. package/src/libs/feature/router/src/lib/default/state/router.selectors.ts +17 -0
  1793. package/src/libs/feature/search/src/index.ts +20 -0
  1794. package/src/libs/feature/search/src/lib/constants.ts +40 -0
  1795. package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.css +0 -0
  1796. package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.html +7 -0
  1797. package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.ts +83 -0
  1798. package/src/libs/feature/search/src/lib/facets/facets.module.ts +12 -0
  1799. package/src/libs/feature/search/src/lib/facets/facets.service.ts +256 -0
  1800. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.css +0 -0
  1801. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +10 -0
  1802. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +128 -0
  1803. package/src/libs/feature/search/src/lib/feature-search.module.ts +83 -0
  1804. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.css +0 -0
  1805. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +11 -0
  1806. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +60 -0
  1807. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.css +0 -0
  1808. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +10 -0
  1809. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +79 -0
  1810. package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.css +0 -0
  1811. package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.html +10 -0
  1812. package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.ts +45 -0
  1813. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.html +4 -0
  1814. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts +10 -0
  1815. package/src/libs/feature/search/src/lib/results-layout/results-layout.component.html +7 -0
  1816. package/src/libs/feature/search/src/lib/results-layout/results-layout.component.ts +29 -0
  1817. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.css +0 -0
  1818. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +58 -0
  1819. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +86 -0
  1820. package/src/libs/feature/search/src/lib/sort-by/sort-by.component.html +7 -0
  1821. package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +55 -0
  1822. package/src/libs/feature/search/src/lib/state/actions.ts +273 -0
  1823. package/src/libs/feature/search/src/lib/state/container/search-state.container.directive.ts +17 -0
  1824. package/src/libs/feature/search/src/lib/state/effects.ts +218 -0
  1825. package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +29 -0
  1826. package/src/libs/feature/search/src/lib/state/reducer.ts +340 -0
  1827. package/src/libs/feature/search/src/lib/state/search.facade.ts +219 -0
  1828. package/src/libs/feature/search/src/lib/state/selectors.ts +94 -0
  1829. package/src/libs/feature/search/src/lib/utils/operators/search.operator.ts +40 -0
  1830. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +120 -0
  1831. package/src/libs/feature/search/src/lib/utils/service/fields.ts +315 -0
  1832. package/src/libs/feature/search/src/lib/utils/service/search.service.ts +43 -0
  1833. package/src/libs/ui/catalog/src/index.ts +5 -0
  1834. package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.css +0 -0
  1835. package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.html +21 -0
  1836. package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.ts +12 -0
  1837. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.css +0 -0
  1838. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +9 -0
  1839. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +51 -0
  1840. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.css +13 -0
  1841. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +40 -0
  1842. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +25 -0
  1843. package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.css +0 -0
  1844. package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.html +17 -0
  1845. package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.ts +40 -0
  1846. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +33 -0
  1847. package/src/libs/ui/dataviz/src/index.ts +5 -0
  1848. package/src/libs/ui/dataviz/src/lib/chart/chart.component.css +0 -0
  1849. package/src/libs/ui/dataviz/src/lib/chart/chart.component.html +3 -0
  1850. package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +222 -0
  1851. package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +43 -0
  1852. package/src/libs/ui/dataviz/src/lib/figure/figure.component.css +3 -0
  1853. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +20 -0
  1854. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +27 -0
  1855. package/src/libs/ui/dataviz/src/lib/table/table.component.css +32 -0
  1856. package/src/libs/ui/dataviz/src/lib/table/table.component.html +40 -0
  1857. package/src/libs/ui/dataviz/src/lib/table/table.component.ts +80 -0
  1858. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +40 -0
  1859. package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +11 -0
  1860. package/src/libs/ui/elements/src/index.ts +20 -0
  1861. package/src/libs/ui/elements/src/lib/api-card/api-card.component.css +0 -0
  1862. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +23 -0
  1863. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +12 -0
  1864. package/src/libs/ui/elements/src/lib/avatar/avatar.component.html +10 -0
  1865. package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +15 -0
  1866. package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.css +29 -0
  1867. package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.html +5 -0
  1868. package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.ts +12 -0
  1869. package/src/libs/ui/elements/src/lib/download-item/download-item.component.css +0 -0
  1870. package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +34 -0
  1871. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +26 -0
  1872. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.css +0 -0
  1873. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +33 -0
  1874. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +100 -0
  1875. package/src/libs/ui/elements/src/lib/link-card/link-card.component.css +0 -0
  1876. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +25 -0
  1877. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +12 -0
  1878. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.css +0 -0
  1879. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.html +8 -0
  1880. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +11 -0
  1881. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.css +0 -0
  1882. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +32 -0
  1883. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +40 -0
  1884. package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +38 -0
  1885. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +9 -0
  1886. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +105 -0
  1887. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +47 -0
  1888. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.css +3 -0
  1889. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +27 -0
  1890. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +84 -0
  1891. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +4 -0
  1892. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +26 -0
  1893. package/src/libs/ui/elements/src/lib/pagination/pagination.component.css +0 -0
  1894. package/src/libs/ui/elements/src/lib/pagination/pagination.component.html +55 -0
  1895. package/src/libs/ui/elements/src/lib/pagination/pagination.component.ts +50 -0
  1896. package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.css +0 -0
  1897. package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.html +33 -0
  1898. package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.ts +68 -0
  1899. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.css +0 -0
  1900. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +30 -0
  1901. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +12 -0
  1902. package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.css +30 -0
  1903. package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.html +35 -0
  1904. package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.ts +20 -0
  1905. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.html +18 -0
  1906. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +113 -0
  1907. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +85 -0
  1908. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +11 -0
  1909. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +16 -0
  1910. package/src/libs/ui/inputs/src/index.ts +18 -0
  1911. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +31 -0
  1912. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +51 -0
  1913. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +159 -0
  1914. package/src/libs/ui/inputs/src/lib/button/button.component.css +5 -0
  1915. package/src/libs/ui/inputs/src/lib/button/button.component.html +9 -0
  1916. package/src/libs/ui/inputs/src/lib/button/button.component.ts +75 -0
  1917. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.css +0 -0
  1918. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.html +19 -0
  1919. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +25 -0
  1920. package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.css +36 -0
  1921. package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.html +23 -0
  1922. package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.ts +78 -0
  1923. package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.css +0 -0
  1924. package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.html +32 -0
  1925. package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.ts +19 -0
  1926. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.css +4 -0
  1927. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +14 -0
  1928. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +27 -0
  1929. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.css +0 -0
  1930. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +123 -0
  1931. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +198 -0
  1932. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.ts +4 -0
  1933. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.css +0 -0
  1934. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +73 -0
  1935. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +181 -0
  1936. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.ts +5 -0
  1937. package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.css +0 -0
  1938. package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.html +1 -0
  1939. package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.ts +9 -0
  1940. package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.css +0 -0
  1941. package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.html +12 -0
  1942. package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.ts +15 -0
  1943. package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.css +0 -0
  1944. package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.html +1 -0
  1945. package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.ts +9 -0
  1946. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.css +0 -0
  1947. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +11 -0
  1948. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +15 -0
  1949. package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.css +0 -0
  1950. package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.html +27 -0
  1951. package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.ts +37 -0
  1952. package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css +0 -0
  1953. package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +1 -0
  1954. package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +9 -0
  1955. package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css +0 -0
  1956. package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.html +1 -0
  1957. package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.ts +9 -0
  1958. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.css +0 -0
  1959. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.html +68 -0
  1960. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +78 -0
  1961. package/src/libs/ui/inputs/src/lib/form-field/form-field.model.ts +44 -0
  1962. package/src/libs/ui/inputs/src/lib/form-field/index.ts +9 -0
  1963. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +0 -0
  1964. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +6 -0
  1965. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +12 -0
  1966. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +41 -0
  1967. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +34 -0
  1968. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +37 -0
  1969. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.css +3 -0
  1970. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +12 -0
  1971. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +42 -0
  1972. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +3 -0
  1973. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -0
  1974. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +41 -0
  1975. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +94 -0
  1976. package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.css +0 -0
  1977. package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.html +1 -0
  1978. package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +58 -0
  1979. package/src/libs/ui/layout/src/index.ts +6 -0
  1980. package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +59 -0
  1981. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +20 -0
  1982. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +16 -0
  1983. package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +50 -0
  1984. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.css +0 -0
  1985. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +24 -0
  1986. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +31 -0
  1987. package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.css +12 -0
  1988. package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.html +22 -0
  1989. package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.ts +21 -0
  1990. package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.css +0 -0
  1991. package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.html +16 -0
  1992. package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +109 -0
  1993. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +28 -0
  1994. package/src/libs/ui/map/src/index.ts +3 -0
  1995. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.css +6 -0
  1996. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +6 -0
  1997. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +21 -0
  1998. package/src/libs/ui/map/src/lib/components/map/map.component.css +0 -0
  1999. package/src/libs/ui/map/src/lib/components/map/map.component.html +15 -0
  2000. package/src/libs/ui/map/src/lib/components/map/map.component.ts +57 -0
  2001. package/src/libs/ui/map/src/lib/ui-map.module.ts +19 -0
  2002. package/src/libs/ui/search/src/index.ts +20 -0
  2003. package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.css +0 -0
  2004. package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.html +88 -0
  2005. package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.ts +138 -0
  2006. package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.css +0 -0
  2007. package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.html +52 -0
  2008. package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.ts +40 -0
  2009. package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.css +0 -0
  2010. package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.html +8 -0
  2011. package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.ts +45 -0
  2012. package/src/libs/ui/search/src/lib/facets/facets.model.ts +31 -0
  2013. package/src/libs/ui/search/src/lib/facets/facets.module.ts +14 -0
  2014. package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +52 -0
  2015. package/src/libs/ui/search/src/lib/facets/fixtures/index.ts +1 -0
  2016. package/src/libs/ui/search/src/lib/record-metric/record-metric.component.css +0 -0
  2017. package/src/libs/ui/search/src/lib/record-metric/record-metric.component.html +22 -0
  2018. package/src/libs/ui/search/src/lib/record-metric/record-metric.component.ts +25 -0
  2019. package/src/libs/ui/search/src/lib/record-preview/record-preview.component.ts +76 -0
  2020. package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.html +25 -0
  2021. package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.scss +0 -0
  2022. package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.ts +10 -0
  2023. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.css +4 -0
  2024. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +83 -0
  2025. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +34 -0
  2026. package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.html +42 -0
  2027. package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.scss +3 -0
  2028. package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.ts +10 -0
  2029. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.css +3 -0
  2030. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +77 -0
  2031. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.ts +14 -0
  2032. package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.html +40 -0
  2033. package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.scss +0 -0
  2034. package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.ts +10 -0
  2035. package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.html +23 -0
  2036. package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.scss +0 -0
  2037. package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.ts +10 -0
  2038. package/src/libs/ui/search/src/lib/record-table/record-table.component.css +7 -0
  2039. package/src/libs/ui/search/src/lib/record-table/record-table.component.html +150 -0
  2040. package/src/libs/ui/search/src/lib/record-table/record-table.component.ts +93 -0
  2041. package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +10 -0
  2042. package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.ts +10 -0
  2043. package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +48 -0
  2044. package/src/libs/ui/search/src/lib/results-list/results-list.component.css +0 -0
  2045. package/src/libs/ui/search/src/lib/results-list/results-list.component.html +32 -0
  2046. package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +30 -0
  2047. package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.css +0 -0
  2048. package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.html +1 -0
  2049. package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.ts +65 -0
  2050. package/src/libs/ui/search/src/lib/ui-search.module.ts +79 -0
  2051. package/src/libs/ui/widgets/src/index.ts +8 -0
  2052. package/src/libs/ui/widgets/src/lib/badge/badge.component.css +0 -0
  2053. package/src/libs/ui/widgets/src/lib/badge/badge.component.html +8 -0
  2054. package/src/libs/ui/widgets/src/lib/badge/badge.component.ts +11 -0
  2055. package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.css +0 -0
  2056. package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.html +83 -0
  2057. package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.ts +8 -0
  2058. package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.css +20 -0
  2059. package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.html +5 -0
  2060. package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.ts +16 -0
  2061. package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.css +33 -0
  2062. package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.html +23 -0
  2063. package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +51 -0
  2064. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.css +3 -0
  2065. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +12 -0
  2066. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +44 -0
  2067. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.css +0 -0
  2068. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +22 -0
  2069. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.ts +8 -0
  2070. package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.css +3 -0
  2071. package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.html +13 -0
  2072. package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.ts +55 -0
  2073. package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +48 -0
  2074. package/src/libs/util/app-config/src/index.ts +3 -0
  2075. package/src/libs/util/app-config/src/lib/app-config.ts +327 -0
  2076. package/src/libs/util/app-config/src/lib/constants.ts +438 -0
  2077. package/src/libs/util/app-config/src/lib/fixtures.ts +169 -0
  2078. package/src/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.ts +20 -0
  2079. package/src/libs/util/app-config/src/lib/model.ts +76 -0
  2080. package/src/libs/util/app-config/src/lib/parse-utils.ts +142 -0
  2081. package/src/libs/util/data-fetcher/src/fixtures/sample.ts +80 -0
  2082. package/src/libs/util/data-fetcher/src/index.ts +10 -0
  2083. package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +71 -0
  2084. package/src/libs/util/data-fetcher/src/lib/headers.ts +22 -0
  2085. package/src/libs/util/data-fetcher/src/lib/model.ts +129 -0
  2086. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +65 -0
  2087. package/src/libs/util/data-fetcher/src/lib/readers/base.ts +76 -0
  2088. package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +52 -0
  2089. package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +33 -0
  2090. package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +29 -0
  2091. package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +54 -0
  2092. package/src/libs/util/data-fetcher/src/lib/readers/json.ts +28 -0
  2093. package/src/libs/util/data-fetcher/src/lib/sql-utils.ts +115 -0
  2094. package/src/libs/util/data-fetcher/src/lib/utils.ts +253 -0
  2095. package/src/libs/util/i18n/src/index.ts +7 -0
  2096. package/src/libs/util/i18n/src/lib/embedded.translate.loader.ts +18 -0
  2097. package/src/libs/util/i18n/src/lib/file.translate.loader.ts +14 -0
  2098. package/src/libs/util/i18n/src/lib/i18n.constants.ts +72 -0
  2099. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +27 -0
  2100. package/src/libs/util/i18n/src/lib/lang.service.ts +23 -0
  2101. package/src/libs/util/i18n/src/lib/testing/test.translate.loader.ts +26 -0
  2102. package/src/libs/util/i18n/src/lib/testing/test.translate.module.ts +235 -0
  2103. package/src/libs/util/i18n/src/lib/testing/translations.model.ts +28 -0
  2104. package/src/libs/util/i18n/src/lib/translate.loader.utils.ts +11 -0
  2105. package/src/libs/util/i18n/src/lib/util-i18n.module.ts +26 -0
  2106. package/src/libs/util/shared/src/index.ts +6 -0
  2107. package/src/libs/util/shared/src/lib/image-fallback.directive.ts +19 -0
  2108. package/src/libs/util/shared/src/lib/links/index.ts +2 -0
  2109. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +55 -0
  2110. package/src/libs/util/shared/src/lib/links/link-utils.ts +200 -0
  2111. package/src/libs/util/shared/src/lib/pipes/SafePipe.ts +36 -0
  2112. package/src/libs/util/shared/src/lib/pipes/index.ts +1 -0
  2113. package/src/libs/util/shared/src/lib/services/index.ts +3 -0
  2114. package/src/libs/util/shared/src/lib/services/log.service.ts +16 -0
  2115. package/src/libs/util/shared/src/lib/services/proxy.service.ts +34 -0
  2116. package/src/libs/util/shared/src/lib/services/theme.service.ts +143 -0
  2117. package/src/libs/util/shared/src/lib/util-shared.module.ts +11 -0
  2118. package/src/libs/util/shared/src/lib/utils/event.ts +12 -0
  2119. package/src/libs/util/shared/src/lib/utils/geojson.ts +26 -0
  2120. package/src/libs/util/shared/src/lib/utils/index.ts +7 -0
  2121. package/src/libs/util/shared/src/lib/utils/parse.ts +34 -0
  2122. package/src/libs/util/shared/src/lib/utils/remove-whitespace.ts +3 -0
  2123. package/src/libs/util/shared/src/lib/utils/sort-by.ts +17 -0
  2124. package/src/libs/util/shared/src/lib/utils/strip-html.ts +4 -0
  2125. package/src/libs/util/shared/src/lib/utils/url.ts +20 -0
  2126. package/style.css +4 -0
  2127. package/tailwind.base.config.js +72 -0
  2128. package/tailwind.base.css +25 -0
  2129. package/translations/de.json +270 -0
  2130. package/translations/en.json +289 -0
  2131. package/translations/es.json +289 -0
  2132. package/translations/fr.json +289 -0
  2133. package/translations/it.json +289 -0
  2134. package/translations/nl.json +289 -0
  2135. package/translations/pt.json +289 -0
@@ -0,0 +1,49 @@
1
+ import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "@angular/material/icon";
5
+ import * as i3 from "../../../../widgets/src/lib/badge/badge.component";
6
+ import * as i4 from "../../../../layout/src/lib/expandable-panel/expandable-panel.component";
7
+ import * as i5 from "@ngx-translate/core";
8
+ import * as i6 from "../content-ghost/content-ghost.component";
9
+ import * as i7 from "./linkify.directive";
10
+ import * as i8 from "../../../../../util/shared/src/lib/pipes/SafePipe";
11
+ export class MetadataInfoComponent {
12
+ constructor() {
13
+ this.keyword = new EventEmitter();
14
+ }
15
+ get hasUsage() {
16
+ return (this.metadata.extras?.isOpenData === true ||
17
+ this.metadata.useLimitations?.length ||
18
+ this.metadata.accessConstraints?.length);
19
+ }
20
+ get usages() {
21
+ let array = [];
22
+ if (this.metadata.useLimitations?.length) {
23
+ array = array.concat(this.metadata.useLimitations);
24
+ }
25
+ if (this.metadata.accessConstraints?.length) {
26
+ array = array.concat(this.metadata.accessConstraints.map((c) => c.text));
27
+ }
28
+ return array;
29
+ }
30
+ fieldReady(propName) {
31
+ return !this.incomplete || propName in this.metadata;
32
+ }
33
+ onKeywordClick(keyword) {
34
+ this.keyword.emit(keyword);
35
+ }
36
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataInfoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
37
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: MetadataInfoComponent, selector: "gn-ui-metadata-info", inputs: { metadata: "metadata", incomplete: "incomplete" }, outputs: { keyword: "keyword" }, ngImport: i0, template: "<p\n class=\"text-[28px] text-title text-center mb-6 font-title sm:text-left\"\n translate\n>\n record.metadata.about\n</p>\n<div class=\"mb-6 md-description sm:mb-4 sm:pr-16\">\n <gn-ui-content-ghost ghostClass=\"h-32\" [showContent]=\"fieldReady('abstract')\">\n <p\n class=\"whitespace-pre-line break-words\"\n [innerHTML]=\"metadata.abstract | safe: 'html'\"\n *ngIf=\"metadata.abstract\"\n ></p>\n </gn-ui-content-ghost>\n</div>\n\n<ng-container *ngIf=\"metadata.keywords?.length\">\n <p class=\"mb-3 font-medium text-primary text-sm\" translate>\n record.metadata.keywords\n </p>\n <div class=\"mb-9 sm:mb-16\">\n <gn-ui-badge\n class=\"inline-block mr-2 mb-2 lowercase\"\n (click)=\"onKeywordClick(keyword)\"\n [clickable]=\"true\"\n *ngFor=\"let keyword of metadata.keywords\"\n >{{ keyword }}</gn-ui-badge\n >\n </div>\n</ng-container>\n\n<gn-ui-expandable-panel\n class=\"metadata-origin\"\n *ngIf=\"\n metadata.lineage ||\n metadata.recordUpdated ||\n metadata.updateFrequency ||\n metadata.status\n \"\n [title]=\"'record.metadata.origin' | translate\"\n>\n <p\n *ngIf=\"metadata.lineage\"\n class=\"mb-5 pt-4 whitespace-pre-line break-words\"\n gnUiLinkify\n >\n {{ metadata.lineage }}\n </p>\n <div\n class=\"py-4 px-6 rounded bg-gray-100 grid grid-cols-2 gap-y-[10px] gap-x-[20px] text-gray-700 info-grid\"\n >\n <div *ngIf=\"metadata.recordUpdated\">\n <p class=\"text-sm\" translate>record.metadata.updatedOn</p>\n <p class=\"text-primary font-medium mt-1\">\n {{ metadata.recordUpdated && metadata.recordUpdated.toLocaleString() }}\n </p>\n </div>\n <div *ngIf=\"metadata.updateFrequency\">\n <p class=\"text-sm\" translate>record.metadata.updateFrequency</p>\n <p class=\"text-primary font-medium mt-1\" translate>\n domain.record.updateFrequency.{{ metadata.updateFrequency }}\n </p>\n </div>\n <div *ngIf=\"metadata.status\">\n <p class=\"text-sm\" translate>record.metadata.updateStatus</p>\n <p class=\"text-primary font-medium mt-1\" translate>\n domain.record.status.{{ metadata.status }}\n </p>\n </div>\n </div>\n</gn-ui-expandable-panel>\n<gn-ui-expandable-panel [title]=\"'record.metadata.usage' | translate\">\n <div class=\"py-4 px-6 rounded bg-gray-100 text-gray-700 flex flex-wrap gap-2\">\n <gn-ui-badge *ngIf=\"metadata.extras?.isOpenData\">\n <span translate>record.metadata.isOpenData</span>\n </gn-ui-badge>\n <span\n class=\"text-primary font-medium\"\n *ngFor=\"let usage of usages\"\n gnUiLinkify\n >\n {{ usage }}\n </span>\n <span class=\"text-primary font-medium noUsage\" *ngIf=\"!hasUsage\">\n {{ 'record.metadata.noUsage' | translate }}\n </span>\n </div>\n</gn-ui-expandable-panel>\n<gn-ui-expandable-panel\n *ngIf=\"metadata.landingPage\"\n [title]=\"'record.metadata.details' | translate\"\n>\n <div class=\"py-5 px-5 rounded bg-gray-100 text-gray-700\">\n <p class=\"text-sm\" translate>record.metadata.sheet</p>\n <p class=\"text-primary font-medium mt-1\" translate>\n <a [href]=\"metadata.landingPage\" target=\"_blank\">\n <mat-icon\n class=\"material-symbols-outlined inline-block align-bottom pt-1.5 text-xs text-black !w-[20px]\"\n >open_in_new</mat-icon\n >\n <span class=\"break-all\">{{ metadata.landingPage }}</span>\n </a>\n </p>\n </div>\n</gn-ui-expandable-panel>\n", styles: [".md-description ::ng-deep a{@apply underline text-blue-600 hover:text-blue-800;}.info-grid>:nth-last-child(n+3){padding-bottom:10px;@apply border-b border-gray-300;}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i3.BadgeComponent, selector: "gn-ui-badge", inputs: ["clickable"] }, { kind: "component", type: i4.ExpandablePanelComponent, selector: "gn-ui-expandable-panel", inputs: ["title", "collapsed"] }, { kind: "directive", type: i5.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: i6.ContentGhostComponent, selector: "gn-ui-content-ghost", inputs: ["showContent", "ghostClass"] }, { kind: "directive", type: i7.GnUiLinkifyDirective, selector: "[gnUiLinkify]" }, { kind: "pipe", type: i5.TranslatePipe, name: "translate" }, { kind: "pipe", type: i8.SafePipe, name: "safe" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
38
+ }
39
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataInfoComponent, decorators: [{
40
+ type: Component,
41
+ args: [{ selector: 'gn-ui-metadata-info', changeDetection: ChangeDetectionStrategy.OnPush, template: "<p\n class=\"text-[28px] text-title text-center mb-6 font-title sm:text-left\"\n translate\n>\n record.metadata.about\n</p>\n<div class=\"mb-6 md-description sm:mb-4 sm:pr-16\">\n <gn-ui-content-ghost ghostClass=\"h-32\" [showContent]=\"fieldReady('abstract')\">\n <p\n class=\"whitespace-pre-line break-words\"\n [innerHTML]=\"metadata.abstract | safe: 'html'\"\n *ngIf=\"metadata.abstract\"\n ></p>\n </gn-ui-content-ghost>\n</div>\n\n<ng-container *ngIf=\"metadata.keywords?.length\">\n <p class=\"mb-3 font-medium text-primary text-sm\" translate>\n record.metadata.keywords\n </p>\n <div class=\"mb-9 sm:mb-16\">\n <gn-ui-badge\n class=\"inline-block mr-2 mb-2 lowercase\"\n (click)=\"onKeywordClick(keyword)\"\n [clickable]=\"true\"\n *ngFor=\"let keyword of metadata.keywords\"\n >{{ keyword }}</gn-ui-badge\n >\n </div>\n</ng-container>\n\n<gn-ui-expandable-panel\n class=\"metadata-origin\"\n *ngIf=\"\n metadata.lineage ||\n metadata.recordUpdated ||\n metadata.updateFrequency ||\n metadata.status\n \"\n [title]=\"'record.metadata.origin' | translate\"\n>\n <p\n *ngIf=\"metadata.lineage\"\n class=\"mb-5 pt-4 whitespace-pre-line break-words\"\n gnUiLinkify\n >\n {{ metadata.lineage }}\n </p>\n <div\n class=\"py-4 px-6 rounded bg-gray-100 grid grid-cols-2 gap-y-[10px] gap-x-[20px] text-gray-700 info-grid\"\n >\n <div *ngIf=\"metadata.recordUpdated\">\n <p class=\"text-sm\" translate>record.metadata.updatedOn</p>\n <p class=\"text-primary font-medium mt-1\">\n {{ metadata.recordUpdated && metadata.recordUpdated.toLocaleString() }}\n </p>\n </div>\n <div *ngIf=\"metadata.updateFrequency\">\n <p class=\"text-sm\" translate>record.metadata.updateFrequency</p>\n <p class=\"text-primary font-medium mt-1\" translate>\n domain.record.updateFrequency.{{ metadata.updateFrequency }}\n </p>\n </div>\n <div *ngIf=\"metadata.status\">\n <p class=\"text-sm\" translate>record.metadata.updateStatus</p>\n <p class=\"text-primary font-medium mt-1\" translate>\n domain.record.status.{{ metadata.status }}\n </p>\n </div>\n </div>\n</gn-ui-expandable-panel>\n<gn-ui-expandable-panel [title]=\"'record.metadata.usage' | translate\">\n <div class=\"py-4 px-6 rounded bg-gray-100 text-gray-700 flex flex-wrap gap-2\">\n <gn-ui-badge *ngIf=\"metadata.extras?.isOpenData\">\n <span translate>record.metadata.isOpenData</span>\n </gn-ui-badge>\n <span\n class=\"text-primary font-medium\"\n *ngFor=\"let usage of usages\"\n gnUiLinkify\n >\n {{ usage }}\n </span>\n <span class=\"text-primary font-medium noUsage\" *ngIf=\"!hasUsage\">\n {{ 'record.metadata.noUsage' | translate }}\n </span>\n </div>\n</gn-ui-expandable-panel>\n<gn-ui-expandable-panel\n *ngIf=\"metadata.landingPage\"\n [title]=\"'record.metadata.details' | translate\"\n>\n <div class=\"py-5 px-5 rounded bg-gray-100 text-gray-700\">\n <p class=\"text-sm\" translate>record.metadata.sheet</p>\n <p class=\"text-primary font-medium mt-1\" translate>\n <a [href]=\"metadata.landingPage\" target=\"_blank\">\n <mat-icon\n class=\"material-symbols-outlined inline-block align-bottom pt-1.5 text-xs text-black !w-[20px]\"\n >open_in_new</mat-icon\n >\n <span class=\"break-all\">{{ metadata.landingPage }}</span>\n </a>\n </p>\n </div>\n</gn-ui-expandable-panel>\n", styles: [".md-description ::ng-deep a{@apply underline text-blue-600 hover:text-blue-800;}.info-grid>:nth-last-child(n+3){padding-bottom:10px;@apply border-b border-gray-300;}\n"] }]
42
+ }], propDecorators: { metadata: [{
43
+ type: Input
44
+ }], incomplete: [{
45
+ type: Input
46
+ }], keyword: [{
47
+ type: Output
48
+ }] } });
49
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWV0YWRhdGEtaW5mby5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvbWV0YWRhdGEtaW5mby9tZXRhZGF0YS1pbmZvLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9tZXRhZGF0YS1pbmZvL21ldGFkYXRhLWluZm8uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFDTCxNQUFNLEdBQ1AsTUFBTSxlQUFlLENBQUE7Ozs7Ozs7Ozs7QUFTdEIsTUFBTSxPQUFPLHFCQUFxQjtJQU5sQztRQVNZLFlBQU8sR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFBO0tBNEIvQztJQTFCQyxJQUFJLFFBQVE7UUFDVixPQUFPLENBQ0wsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLEVBQUUsVUFBVSxLQUFLLElBQUk7WUFDekMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxjQUFjLEVBQUUsTUFBTTtZQUNwQyxJQUFJLENBQUMsUUFBUSxDQUFDLGlCQUFpQixFQUFFLE1BQU0sQ0FDeEMsQ0FBQTtJQUNILENBQUM7SUFFRCxJQUFJLE1BQU07UUFDUixJQUFJLEtBQUssR0FBRyxFQUFFLENBQUE7UUFDZCxJQUFJLElBQUksQ0FBQyxRQUFRLENBQUMsY0FBYyxFQUFFLE1BQU0sRUFBRTtZQUN4QyxLQUFLLEdBQUcsS0FBSyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLGNBQWMsQ0FBQyxDQUFBO1NBQ25EO1FBQ0QsSUFBSSxJQUFJLENBQUMsUUFBUSxDQUFDLGlCQUFpQixFQUFFLE1BQU0sRUFBRTtZQUMzQyxLQUFLLEdBQUcsS0FBSyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLGlCQUFpQixDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUE7U0FDekU7UUFDRCxPQUFPLEtBQUssQ0FBQTtJQUNkLENBQUM7SUFFRCxVQUFVLENBQUMsUUFBZ0I7UUFDekIsT0FBTyxDQUFDLElBQUksQ0FBQyxVQUFVLElBQUksUUFBUSxJQUFJLElBQUksQ0FBQyxRQUFRLENBQUE7SUFDdEQsQ0FBQztJQUVELGNBQWMsQ0FBQyxPQUFlO1FBQzVCLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFBO0lBQzVCLENBQUM7OEdBOUJVLHFCQUFxQjtrR0FBckIscUJBQXFCLHdKQ2ZsQyw0OEdBeUdBOzsyRkQxRmEscUJBQXFCO2tCQU5qQyxTQUFTOytCQUNFLHFCQUFxQixtQkFHZCx1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0ksT0FBTztzQkFBaEIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE91dHB1dCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IERhdGFzZXRSZWNvcmQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbW1vbi9kb21haW4vc3JjL2xpYi9yZWNvcmQnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLW1ldGFkYXRhLWluZm8nLFxuICB0ZW1wbGF0ZVVybDogJy4vbWV0YWRhdGEtaW5mby5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL21ldGFkYXRhLWluZm8uY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgTWV0YWRhdGFJbmZvQ29tcG9uZW50IHtcbiAgQElucHV0KCkgbWV0YWRhdGE6IFBhcnRpYWw8RGF0YXNldFJlY29yZD5cbiAgQElucHV0KCkgaW5jb21wbGV0ZTogYm9vbGVhblxuICBAT3V0cHV0KCkga2V5d29yZCA9IG5ldyBFdmVudEVtaXR0ZXI8c3RyaW5nPigpXG5cbiAgZ2V0IGhhc1VzYWdlKCkge1xuICAgIHJldHVybiAoXG4gICAgICB0aGlzLm1ldGFkYXRhLmV4dHJhcz8uaXNPcGVuRGF0YSA9PT0gdHJ1ZSB8fFxuICAgICAgdGhpcy5tZXRhZGF0YS51c2VMaW1pdGF0aW9ucz8ubGVuZ3RoIHx8XG4gICAgICB0aGlzLm1ldGFkYXRhLmFjY2Vzc0NvbnN0cmFpbnRzPy5sZW5ndGhcbiAgICApXG4gIH1cblxuICBnZXQgdXNhZ2VzKCk6IHN0cmluZ1tdIHtcbiAgICBsZXQgYXJyYXkgPSBbXVxuICAgIGlmICh0aGlzLm1ldGFkYXRhLnVzZUxpbWl0YXRpb25zPy5sZW5ndGgpIHtcbiAgICAgIGFycmF5ID0gYXJyYXkuY29uY2F0KHRoaXMubWV0YWRhdGEudXNlTGltaXRhdGlvbnMpXG4gICAgfVxuICAgIGlmICh0aGlzLm1ldGFkYXRhLmFjY2Vzc0NvbnN0cmFpbnRzPy5sZW5ndGgpIHtcbiAgICAgIGFycmF5ID0gYXJyYXkuY29uY2F0KHRoaXMubWV0YWRhdGEuYWNjZXNzQ29uc3RyYWludHMubWFwKChjKSA9PiBjLnRleHQpKVxuICAgIH1cbiAgICByZXR1cm4gYXJyYXlcbiAgfVxuXG4gIGZpZWxkUmVhZHkocHJvcE5hbWU6IHN0cmluZykge1xuICAgIHJldHVybiAhdGhpcy5pbmNvbXBsZXRlIHx8IHByb3BOYW1lIGluIHRoaXMubWV0YWRhdGFcbiAgfVxuXG4gIG9uS2V5d29yZENsaWNrKGtleXdvcmQ6IHN0cmluZykge1xuICAgIHRoaXMua2V5d29yZC5lbWl0KGtleXdvcmQpXG4gIH1cbn1cbiIsIjxwXG4gIGNsYXNzPVwidGV4dC1bMjhweF0gdGV4dC10aXRsZSB0ZXh0LWNlbnRlciBtYi02IGZvbnQtdGl0bGUgc206dGV4dC1sZWZ0XCJcbiAgdHJhbnNsYXRlXG4+XG4gIHJlY29yZC5tZXRhZGF0YS5hYm91dFxuPC9wPlxuPGRpdiBjbGFzcz1cIm1iLTYgbWQtZGVzY3JpcHRpb24gc206bWItNCBzbTpwci0xNlwiPlxuICA8Z24tdWktY29udGVudC1naG9zdCBnaG9zdENsYXNzPVwiaC0zMlwiIFtzaG93Q29udGVudF09XCJmaWVsZFJlYWR5KCdhYnN0cmFjdCcpXCI+XG4gICAgPHBcbiAgICAgIGNsYXNzPVwid2hpdGVzcGFjZS1wcmUtbGluZSBicmVhay13b3Jkc1wiXG4gICAgICBbaW5uZXJIVE1MXT1cIm1ldGFkYXRhLmFic3RyYWN0IHwgc2FmZTogJ2h0bWwnXCJcbiAgICAgICpuZ0lmPVwibWV0YWRhdGEuYWJzdHJhY3RcIlxuICAgID48L3A+XG4gIDwvZ24tdWktY29udGVudC1naG9zdD5cbjwvZGl2PlxuXG48bmctY29udGFpbmVyICpuZ0lmPVwibWV0YWRhdGEua2V5d29yZHM/Lmxlbmd0aFwiPlxuICA8cCBjbGFzcz1cIm1iLTMgZm9udC1tZWRpdW0gdGV4dC1wcmltYXJ5IHRleHQtc21cIiB0cmFuc2xhdGU+XG4gICAgcmVjb3JkLm1ldGFkYXRhLmtleXdvcmRzXG4gIDwvcD5cbiAgPGRpdiBjbGFzcz1cIm1iLTkgc206bWItMTZcIj5cbiAgICA8Z24tdWktYmFkZ2VcbiAgICAgIGNsYXNzPVwiaW5saW5lLWJsb2NrIG1yLTIgbWItMiBsb3dlcmNhc2VcIlxuICAgICAgKGNsaWNrKT1cIm9uS2V5d29yZENsaWNrKGtleXdvcmQpXCJcbiAgICAgIFtjbGlja2FibGVdPVwidHJ1ZVwiXG4gICAgICAqbmdGb3I9XCJsZXQga2V5d29yZCBvZiBtZXRhZGF0YS5rZXl3b3Jkc1wiXG4gICAgICA+e3sga2V5d29yZCB9fTwvZ24tdWktYmFkZ2VcbiAgICA+XG4gIDwvZGl2PlxuPC9uZy1jb250YWluZXI+XG5cbjxnbi11aS1leHBhbmRhYmxlLXBhbmVsXG4gIGNsYXNzPVwibWV0YWRhdGEtb3JpZ2luXCJcbiAgKm5nSWY9XCJcbiAgICBtZXRhZGF0YS5saW5lYWdlIHx8XG4gICAgbWV0YWRhdGEucmVjb3JkVXBkYXRlZCB8fFxuICAgIG1ldGFkYXRhLnVwZGF0ZUZyZXF1ZW5jeSB8fFxuICAgIG1ldGFkYXRhLnN0YXR1c1xuICBcIlxuICBbdGl0bGVdPVwiJ3JlY29yZC5tZXRhZGF0YS5vcmlnaW4nIHwgdHJhbnNsYXRlXCJcbj5cbiAgPHBcbiAgICAqbmdJZj1cIm1ldGFkYXRhLmxpbmVhZ2VcIlxuICAgIGNsYXNzPVwibWItNSBwdC00IHdoaXRlc3BhY2UtcHJlLWxpbmUgYnJlYWstd29yZHNcIlxuICAgIGduVWlMaW5raWZ5XG4gID5cbiAgICB7eyBtZXRhZGF0YS5saW5lYWdlIH19XG4gIDwvcD5cbiAgPGRpdlxuICAgIGNsYXNzPVwicHktNCBweC02IHJvdW5kZWQgYmctZ3JheS0xMDAgZ3JpZCBncmlkLWNvbHMtMiBnYXAteS1bMTBweF0gZ2FwLXgtWzIwcHhdIHRleHQtZ3JheS03MDAgaW5mby1ncmlkXCJcbiAgPlxuICAgIDxkaXYgKm5nSWY9XCJtZXRhZGF0YS5yZWNvcmRVcGRhdGVkXCI+XG4gICAgICA8cCBjbGFzcz1cInRleHQtc21cIiB0cmFuc2xhdGU+cmVjb3JkLm1ldGFkYXRhLnVwZGF0ZWRPbjwvcD5cbiAgICAgIDxwIGNsYXNzPVwidGV4dC1wcmltYXJ5IGZvbnQtbWVkaXVtIG10LTFcIj5cbiAgICAgICAge3sgbWV0YWRhdGEucmVjb3JkVXBkYXRlZCAmJiBtZXRhZGF0YS5yZWNvcmRVcGRhdGVkLnRvTG9jYWxlU3RyaW5nKCkgfX1cbiAgICAgIDwvcD5cbiAgICA8L2Rpdj5cbiAgICA8ZGl2ICpuZ0lmPVwibWV0YWRhdGEudXBkYXRlRnJlcXVlbmN5XCI+XG4gICAgICA8cCBjbGFzcz1cInRleHQtc21cIiB0cmFuc2xhdGU+cmVjb3JkLm1ldGFkYXRhLnVwZGF0ZUZyZXF1ZW5jeTwvcD5cbiAgICAgIDxwIGNsYXNzPVwidGV4dC1wcmltYXJ5IGZvbnQtbWVkaXVtIG10LTFcIiB0cmFuc2xhdGU+XG4gICAgICAgIGRvbWFpbi5yZWNvcmQudXBkYXRlRnJlcXVlbmN5Lnt7IG1ldGFkYXRhLnVwZGF0ZUZyZXF1ZW5jeSB9fVxuICAgICAgPC9wPlxuICAgIDwvZGl2PlxuICAgIDxkaXYgKm5nSWY9XCJtZXRhZGF0YS5zdGF0dXNcIj5cbiAgICAgIDxwIGNsYXNzPVwidGV4dC1zbVwiIHRyYW5zbGF0ZT5yZWNvcmQubWV0YWRhdGEudXBkYXRlU3RhdHVzPC9wPlxuICAgICAgPHAgY2xhc3M9XCJ0ZXh0LXByaW1hcnkgZm9udC1tZWRpdW0gbXQtMVwiIHRyYW5zbGF0ZT5cbiAgICAgICAgZG9tYWluLnJlY29yZC5zdGF0dXMue3sgbWV0YWRhdGEuc3RhdHVzIH19XG4gICAgICA8L3A+XG4gICAgPC9kaXY+XG4gIDwvZGl2PlxuPC9nbi11aS1leHBhbmRhYmxlLXBhbmVsPlxuPGduLXVpLWV4cGFuZGFibGUtcGFuZWwgW3RpdGxlXT1cIidyZWNvcmQubWV0YWRhdGEudXNhZ2UnIHwgdHJhbnNsYXRlXCI+XG4gIDxkaXYgY2xhc3M9XCJweS00IHB4LTYgcm91bmRlZCBiZy1ncmF5LTEwMCB0ZXh0LWdyYXktNzAwIGZsZXggZmxleC13cmFwIGdhcC0yXCI+XG4gICAgPGduLXVpLWJhZGdlICpuZ0lmPVwibWV0YWRhdGEuZXh0cmFzPy5pc09wZW5EYXRhXCI+XG4gICAgICA8c3BhbiB0cmFuc2xhdGU+cmVjb3JkLm1ldGFkYXRhLmlzT3BlbkRhdGE8L3NwYW4+XG4gICAgPC9nbi11aS1iYWRnZT5cbiAgICA8c3BhblxuICAgICAgY2xhc3M9XCJ0ZXh0LXByaW1hcnkgZm9udC1tZWRpdW1cIlxuICAgICAgKm5nRm9yPVwibGV0IHVzYWdlIG9mIHVzYWdlc1wiXG4gICAgICBnblVpTGlua2lmeVxuICAgID5cbiAgICAgIHt7IHVzYWdlIH19XG4gICAgPC9zcGFuPlxuICAgIDxzcGFuIGNsYXNzPVwidGV4dC1wcmltYXJ5IGZvbnQtbWVkaXVtIG5vVXNhZ2VcIiAqbmdJZj1cIiFoYXNVc2FnZVwiPlxuICAgICAge3sgJ3JlY29yZC5tZXRhZGF0YS5ub1VzYWdlJyB8IHRyYW5zbGF0ZSB9fVxuICAgIDwvc3Bhbj5cbiAgPC9kaXY+XG48L2duLXVpLWV4cGFuZGFibGUtcGFuZWw+XG48Z24tdWktZXhwYW5kYWJsZS1wYW5lbFxuICAqbmdJZj1cIm1ldGFkYXRhLmxhbmRpbmdQYWdlXCJcbiAgW3RpdGxlXT1cIidyZWNvcmQubWV0YWRhdGEuZGV0YWlscycgfCB0cmFuc2xhdGVcIlxuPlxuICA8ZGl2IGNsYXNzPVwicHktNSBweC01IHJvdW5kZWQgYmctZ3JheS0xMDAgdGV4dC1ncmF5LTcwMFwiPlxuICAgIDxwIGNsYXNzPVwidGV4dC1zbVwiIHRyYW5zbGF0ZT5yZWNvcmQubWV0YWRhdGEuc2hlZXQ8L3A+XG4gICAgPHAgY2xhc3M9XCJ0ZXh0LXByaW1hcnkgZm9udC1tZWRpdW0gbXQtMVwiIHRyYW5zbGF0ZT5cbiAgICAgIDxhIFtocmVmXT1cIm1ldGFkYXRhLmxhbmRpbmdQYWdlXCIgdGFyZ2V0PVwiX2JsYW5rXCI+XG4gICAgICAgIDxtYXQtaWNvblxuICAgICAgICAgIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBpbmxpbmUtYmxvY2sgYWxpZ24tYm90dG9tIHB0LTEuNSB0ZXh0LXhzIHRleHQtYmxhY2sgIXctWzIwcHhdXCJcbiAgICAgICAgICA+b3Blbl9pbl9uZXc8L21hdC1pY29uXG4gICAgICAgID5cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJicmVhay1hbGxcIj57eyBtZXRhZGF0YS5sYW5kaW5nUGFnZSB9fTwvc3Bhbj5cbiAgICAgIDwvYT5cbiAgICA8L3A+XG4gIDwvZGl2PlxuPC9nbi11aS1leHBhbmRhYmxlLXBhbmVsPlxuIl19
@@ -0,0 +1,64 @@
1
+ import { ChangeDetectionStrategy, Component, Input, } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "../../../../widgets/src/lib/progress-bar/progress-bar.component";
5
+ import * as i3 from "@ngx-translate/core";
6
+ import * as i4 from "../metadata-quality-item/metadata-quality-item.component";
7
+ export class MetadataQualityComponent {
8
+ constructor() {
9
+ this.smaller = false;
10
+ this.items = [];
11
+ this.isMenuShown = false;
12
+ }
13
+ get qualityScore() {
14
+ const qualityScore = this.metadata?.extras?.qualityScore;
15
+ return typeof qualityScore === 'number'
16
+ ? qualityScore
17
+ : this.calculatedQualityScore;
18
+ }
19
+ get calculatedQualityScore() {
20
+ return Math.round((this.items.filter(({ value }) => value === true).length * 100) /
21
+ this.items.length);
22
+ }
23
+ showMenu() {
24
+ this.isMenuShown = true;
25
+ }
26
+ hideMenu() {
27
+ this.isMenuShown = false;
28
+ }
29
+ add(name, value) {
30
+ if (this.metadataQualityDisplay?.[name] !== false) {
31
+ this.items.push({ name, value });
32
+ }
33
+ }
34
+ initialize() {
35
+ const contact = this.metadata?.contacts?.[0];
36
+ this.items = [];
37
+ this.add('title', !!this.metadata?.title);
38
+ this.add('description', !!this.metadata?.abstract);
39
+ this.add('topic', this.metadata?.themes?.length > 0);
40
+ this.add('keywords', this.metadata?.keywords?.length > 0);
41
+ this.add('legalConstraints', this.metadata?.legalConstraints?.length > 0);
42
+ this.add('organisation', !!contact?.organization);
43
+ this.add('contact', !!contact?.email);
44
+ this.add('updateFrequency', !!this.metadata?.updateFrequency);
45
+ }
46
+ ngOnChanges(changes) {
47
+ if (changes['metadata'] || changes['metadataQualityDisplay']) {
48
+ this.initialize();
49
+ }
50
+ }
51
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataQualityComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
52
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: MetadataQualityComponent, selector: "gn-ui-metadata-quality", inputs: { metadata: "metadata", smaller: "smaller", metadataQualityDisplay: "metadataQualityDisplay" }, usesOnChanges: true, ngImport: i0, template: "<div\n *ngIf=\"metadataQualityDisplay?.widget === true\"\n class=\"mb-6 metadata-quality\"\n (mouseenter)=\"showMenu()\"\n (mouseleave)=\"hideMenu()\"\n>\n <div class=\"min-w-[200px]\" [class]=\"smaller ? 'leading-[8px]' : ''\">\n <gn-ui-progress-bar\n (focus)=\"showMenu()\"\n (blur)=\"hideMenu()\"\n tabindex=\"0\"\n [value]=\"qualityScore\"\n type=\"primary\"\n ></gn-ui-progress-bar>\n </div>\n <div\n class=\"absolute z-10 bg-white border border-black border-opacity-35 rounded-lg shadow-lg p-5 whitespace-nowrap\"\n [class]=\"isMenuShown ? 'block' : 'hidden'\"\n >\n <div class=\"mb-4 font-bold\" translate>record.metadata.quality.details</div>\n <gn-ui-metadata-quality-item\n *ngFor=\"let e of items\"\n [name]=\"e.name\"\n [value]=\"e.value\"\n ></gn-ui-metadata-quality-item>\n </div>\n</div>\n", styles: [":host gn-ui-progress-bar{--progress-bar-font-weight: \"normal\"}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.ProgressBarComponent, selector: "gn-ui-progress-bar", inputs: ["value", "type"] }, { kind: "directive", type: i3.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: i4.MetadataQualityItemComponent, selector: "gn-ui-metadata-quality-item", inputs: ["name", "value"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
53
+ }
54
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataQualityComponent, decorators: [{
55
+ type: Component,
56
+ args: [{ selector: 'gn-ui-metadata-quality', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n *ngIf=\"metadataQualityDisplay?.widget === true\"\n class=\"mb-6 metadata-quality\"\n (mouseenter)=\"showMenu()\"\n (mouseleave)=\"hideMenu()\"\n>\n <div class=\"min-w-[200px]\" [class]=\"smaller ? 'leading-[8px]' : ''\">\n <gn-ui-progress-bar\n (focus)=\"showMenu()\"\n (blur)=\"hideMenu()\"\n tabindex=\"0\"\n [value]=\"qualityScore\"\n type=\"primary\"\n ></gn-ui-progress-bar>\n </div>\n <div\n class=\"absolute z-10 bg-white border border-black border-opacity-35 rounded-lg shadow-lg p-5 whitespace-nowrap\"\n [class]=\"isMenuShown ? 'block' : 'hidden'\"\n >\n <div class=\"mb-4 font-bold\" translate>record.metadata.quality.details</div>\n <gn-ui-metadata-quality-item\n *ngFor=\"let e of items\"\n [name]=\"e.name\"\n [value]=\"e.value\"\n ></gn-ui-metadata-quality-item>\n </div>\n</div>\n", styles: [":host gn-ui-progress-bar{--progress-bar-font-weight: \"normal\"}\n"] }]
57
+ }], propDecorators: { metadata: [{
58
+ type: Input
59
+ }], smaller: [{
60
+ type: Input
61
+ }], metadataQualityDisplay: [{
62
+ type: Input
63
+ }] } });
64
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWV0YWRhdGEtcXVhbGl0eS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvbWV0YWRhdGEtcXVhbGl0eS9tZXRhZGF0YS1xdWFsaXR5LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9tZXRhZGF0YS1xdWFsaXR5L21ldGFkYXRhLXF1YWxpdHkuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsS0FBSyxHQUdOLE1BQU0sZUFBZSxDQUFBOzs7Ozs7QUFzQnRCLE1BQU0sT0FBTyx3QkFBd0I7SUFOckM7UUFRVyxZQUFPLEdBQUcsS0FBSyxDQUFBO1FBR3hCLFVBQUssR0FBMEIsRUFBRSxDQUFBO1FBRWpDLGdCQUFXLEdBQUcsS0FBSyxDQUFBO0tBZ0RwQjtJQTlDQyxJQUFJLFlBQVk7UUFDZCxNQUFNLFlBQVksR0FBRyxJQUFJLENBQUMsUUFBUSxFQUFFLE1BQU0sRUFBRSxZQUFZLENBQUE7UUFDeEQsT0FBTyxPQUFPLFlBQVksS0FBSyxRQUFRO1lBQ3JDLENBQUMsQ0FBQyxZQUFZO1lBQ2QsQ0FBQyxDQUFDLElBQUksQ0FBQyxzQkFBc0IsQ0FBQTtJQUNqQyxDQUFDO0lBRUQsSUFBSSxzQkFBc0I7UUFDeEIsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUNmLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUFFLEtBQUssRUFBRSxFQUFFLEVBQUUsQ0FBQyxLQUFLLEtBQUssSUFBSSxDQUFDLENBQUMsTUFBTSxHQUFHLEdBQUcsQ0FBQztZQUM3RCxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FDcEIsQ0FBQTtJQUNILENBQUM7SUFFRCxRQUFRO1FBQ04sSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUE7SUFDekIsQ0FBQztJQUVELFFBQVE7UUFDTixJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQTtJQUMxQixDQUFDO0lBRU8sR0FBRyxDQUFDLElBQVksRUFBRSxLQUFjO1FBQ3RDLElBQUksSUFBSSxDQUFDLHNCQUFzQixFQUFFLENBQUMsSUFBSSxDQUFDLEtBQUssS0FBSyxFQUFFO1lBQ2pELElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLEVBQUUsSUFBSSxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUE7U0FDakM7SUFDSCxDQUFDO0lBRUQsVUFBVTtRQUNSLE1BQU0sT0FBTyxHQUFHLElBQUksQ0FBQyxRQUFRLEVBQUUsUUFBUSxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUE7UUFDNUMsSUFBSSxDQUFDLEtBQUssR0FBRyxFQUFFLENBQUE7UUFDZixJQUFJLENBQUMsR0FBRyxDQUFDLE9BQU8sRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxLQUFLLENBQUMsQ0FBQTtRQUN6QyxJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxRQUFRLENBQUMsQ0FBQTtRQUNsRCxJQUFJLENBQUMsR0FBRyxDQUFDLE9BQU8sRUFBRSxJQUFJLENBQUMsUUFBUSxFQUFFLE1BQU0sRUFBRSxNQUFNLEdBQUcsQ0FBQyxDQUFDLENBQUE7UUFDcEQsSUFBSSxDQUFDLEdBQUcsQ0FBQyxVQUFVLEVBQUUsSUFBSSxDQUFDLFFBQVEsRUFBRSxRQUFRLEVBQUUsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUFBO1FBQ3pELElBQUksQ0FBQyxHQUFHLENBQUMsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLFFBQVEsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLEdBQUcsQ0FBQyxDQUFDLENBQUE7UUFDekUsSUFBSSxDQUFDLEdBQUcsQ0FBQyxjQUFjLEVBQUUsQ0FBQyxDQUFDLE9BQU8sRUFBRSxZQUFZLENBQUMsQ0FBQTtRQUNqRCxJQUFJLENBQUMsR0FBRyxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUMsT0FBTyxFQUFFLEtBQUssQ0FBQyxDQUFBO1FBQ3JDLElBQUksQ0FBQyxHQUFHLENBQUMsaUJBQWlCLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsZUFBZSxDQUFDLENBQUE7SUFDL0QsQ0FBQztJQUVELFdBQVcsQ0FBQyxPQUFzQjtRQUNoQyxJQUFJLE9BQU8sQ0FBQyxVQUFVLENBQUMsSUFBSSxPQUFPLENBQUMsd0JBQXdCLENBQUMsRUFBRTtZQUM1RCxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUE7U0FDbEI7SUFDSCxDQUFDOzhHQXREVSx3QkFBd0I7a0dBQXhCLHdCQUF3QiwyTEM1QnJDLDQyQkEyQkE7OzJGRENhLHdCQUF3QjtrQkFOcEMsU0FBUzsrQkFDRSx3QkFBd0IsbUJBR2pCLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUNHLHNCQUFzQjtzQkFBOUIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIElucHV0LFxuICBPbkNoYW5nZXMsXG4gIFNpbXBsZUNoYW5nZXMsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBNZXRhZGF0YVF1YWxpdHlJdGVtIH0gZnJvbSAnLi4vbWV0YWRhdGEtcXVhbGl0eS1pdGVtL21ldGFkYXRhLXF1YWxpdHktaXRlbS5jb21wb25lbnQnXG5pbXBvcnQgeyBDYXRhbG9nUmVjb3JkIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21tb24vZG9tYWluL3NyYy9saWIvcmVjb3JkJ1xuXG5leHBvcnQgaW50ZXJmYWNlIE1ldGFkYXRhUXVhbGl0eURpc3BsYXkge1xuICB3aWRnZXQ6IGJvb2xlYW5cbiAgdGl0bGU6IGJvb2xlYW5cbiAgZGVzY3JpcHRpb246IGJvb2xlYW5cbiAgdG9waWM6IGJvb2xlYW5cbiAga2V5d29yZHM6IGJvb2xlYW5cbiAgbGVnYWxDb25zdHJhaW50czogYm9vbGVhblxuICBvcmdhbmlzYXRpb246IGJvb2xlYW5cbiAgY29udGFjdDogYm9vbGVhblxuICB1cGRhdGVGcmVxdWVuY3k6IGJvb2xlYW5cbn1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktbWV0YWRhdGEtcXVhbGl0eScsXG4gIHRlbXBsYXRlVXJsOiAnLi9tZXRhZGF0YS1xdWFsaXR5LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vbWV0YWRhdGEtcXVhbGl0eS5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBNZXRhZGF0YVF1YWxpdHlDb21wb25lbnQgaW1wbGVtZW50cyBPbkNoYW5nZXMge1xuICBASW5wdXQoKSBtZXRhZGF0YTogUGFydGlhbDxDYXRhbG9nUmVjb3JkPlxuICBASW5wdXQoKSBzbWFsbGVyID0gZmFsc2VcbiAgQElucHV0KCkgbWV0YWRhdGFRdWFsaXR5RGlzcGxheTogTWV0YWRhdGFRdWFsaXR5RGlzcGxheVxuXG4gIGl0ZW1zOiBNZXRhZGF0YVF1YWxpdHlJdGVtW10gPSBbXVxuXG4gIGlzTWVudVNob3duID0gZmFsc2VcblxuICBnZXQgcXVhbGl0eVNjb3JlKCkge1xuICAgIGNvbnN0IHF1YWxpdHlTY29yZSA9IHRoaXMubWV0YWRhdGE/LmV4dHJhcz8ucXVhbGl0eVNjb3JlXG4gICAgcmV0dXJuIHR5cGVvZiBxdWFsaXR5U2NvcmUgPT09ICdudW1iZXInXG4gICAgICA/IHF1YWxpdHlTY29yZVxuICAgICAgOiB0aGlzLmNhbGN1bGF0ZWRRdWFsaXR5U2NvcmVcbiAgfVxuXG4gIGdldCBjYWxjdWxhdGVkUXVhbGl0eVNjb3JlKCk6IG51bWJlciB7XG4gICAgcmV0dXJuIE1hdGgucm91bmQoXG4gICAgICAodGhpcy5pdGVtcy5maWx0ZXIoKHsgdmFsdWUgfSkgPT4gdmFsdWUgPT09IHRydWUpLmxlbmd0aCAqIDEwMCkgL1xuICAgICAgICB0aGlzLml0ZW1zLmxlbmd0aFxuICAgIClcbiAgfVxuXG4gIHNob3dNZW51KCkge1xuICAgIHRoaXMuaXNNZW51U2hvd24gPSB0cnVlXG4gIH1cblxuICBoaWRlTWVudSgpIHtcbiAgICB0aGlzLmlzTWVudVNob3duID0gZmFsc2VcbiAgfVxuXG4gIHByaXZhdGUgYWRkKG5hbWU6IHN0cmluZywgdmFsdWU6IGJvb2xlYW4pIHtcbiAgICBpZiAodGhpcy5tZXRhZGF0YVF1YWxpdHlEaXNwbGF5Py5bbmFtZV0gIT09IGZhbHNlKSB7XG4gICAgICB0aGlzLml0ZW1zLnB1c2goeyBuYW1lLCB2YWx1ZSB9KVxuICAgIH1cbiAgfVxuXG4gIGluaXRpYWxpemUoKSB7XG4gICAgY29uc3QgY29udGFjdCA9IHRoaXMubWV0YWRhdGE/LmNvbnRhY3RzPy5bMF1cbiAgICB0aGlzLml0ZW1zID0gW11cbiAgICB0aGlzLmFkZCgndGl0bGUnLCAhIXRoaXMubWV0YWRhdGE/LnRpdGxlKVxuICAgIHRoaXMuYWRkKCdkZXNjcmlwdGlvbicsICEhdGhpcy5tZXRhZGF0YT8uYWJzdHJhY3QpXG4gICAgdGhpcy5hZGQoJ3RvcGljJywgdGhpcy5tZXRhZGF0YT8udGhlbWVzPy5sZW5ndGggPiAwKVxuICAgIHRoaXMuYWRkKCdrZXl3b3JkcycsIHRoaXMubWV0YWRhdGE/LmtleXdvcmRzPy5sZW5ndGggPiAwKVxuICAgIHRoaXMuYWRkKCdsZWdhbENvbnN0cmFpbnRzJywgdGhpcy5tZXRhZGF0YT8ubGVnYWxDb25zdHJhaW50cz8ubGVuZ3RoID4gMClcbiAgICB0aGlzLmFkZCgnb3JnYW5pc2F0aW9uJywgISFjb250YWN0Py5vcmdhbml6YXRpb24pXG4gICAgdGhpcy5hZGQoJ2NvbnRhY3QnLCAhIWNvbnRhY3Q/LmVtYWlsKVxuICAgIHRoaXMuYWRkKCd1cGRhdGVGcmVxdWVuY3knLCAhIXRoaXMubWV0YWRhdGE/LnVwZGF0ZUZyZXF1ZW5jeSlcbiAgfVxuXG4gIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICBpZiAoY2hhbmdlc1snbWV0YWRhdGEnXSB8fCBjaGFuZ2VzWydtZXRhZGF0YVF1YWxpdHlEaXNwbGF5J10pIHtcbiAgICAgIHRoaXMuaW5pdGlhbGl6ZSgpXG4gICAgfVxuICB9XG59XG4iLCI8ZGl2XG4gICpuZ0lmPVwibWV0YWRhdGFRdWFsaXR5RGlzcGxheT8ud2lkZ2V0ID09PSB0cnVlXCJcbiAgY2xhc3M9XCJtYi02IG1ldGFkYXRhLXF1YWxpdHlcIlxuICAobW91c2VlbnRlcik9XCJzaG93TWVudSgpXCJcbiAgKG1vdXNlbGVhdmUpPVwiaGlkZU1lbnUoKVwiXG4+XG4gIDxkaXYgY2xhc3M9XCJtaW4tdy1bMjAwcHhdXCIgW2NsYXNzXT1cInNtYWxsZXIgPyAnbGVhZGluZy1bOHB4XScgOiAnJ1wiPlxuICAgIDxnbi11aS1wcm9ncmVzcy1iYXJcbiAgICAgIChmb2N1cyk9XCJzaG93TWVudSgpXCJcbiAgICAgIChibHVyKT1cImhpZGVNZW51KClcIlxuICAgICAgdGFiaW5kZXg9XCIwXCJcbiAgICAgIFt2YWx1ZV09XCJxdWFsaXR5U2NvcmVcIlxuICAgICAgdHlwZT1cInByaW1hcnlcIlxuICAgID48L2duLXVpLXByb2dyZXNzLWJhcj5cbiAgPC9kaXY+XG4gIDxkaXZcbiAgICBjbGFzcz1cImFic29sdXRlIHotMTAgYmctd2hpdGUgYm9yZGVyIGJvcmRlci1ibGFjayBib3JkZXItb3BhY2l0eS0zNSByb3VuZGVkLWxnIHNoYWRvdy1sZyBwLTUgd2hpdGVzcGFjZS1ub3dyYXBcIlxuICAgIFtjbGFzc109XCJpc01lbnVTaG93biA/ICdibG9jaycgOiAnaGlkZGVuJ1wiXG4gID5cbiAgICA8ZGl2IGNsYXNzPVwibWItNCBmb250LWJvbGRcIiB0cmFuc2xhdGU+cmVjb3JkLm1ldGFkYXRhLnF1YWxpdHkuZGV0YWlsczwvZGl2PlxuICAgIDxnbi11aS1tZXRhZGF0YS1xdWFsaXR5LWl0ZW1cbiAgICAgICpuZ0Zvcj1cImxldCBlIG9mIGl0ZW1zXCJcbiAgICAgIFtuYW1lXT1cImUubmFtZVwiXG4gICAgICBbdmFsdWVdPVwiZS52YWx1ZVwiXG4gICAgPjwvZ24tdWktbWV0YWRhdGEtcXVhbGl0eS1pdGVtPlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
@@ -0,0 +1,23 @@
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/material/icon";
4
+ import * as i2 from "@ngx-translate/core";
5
+ export class MetadataQualityItemComponent {
6
+ get icon() {
7
+ return this.value ? 'check' : 'warning_amber';
8
+ }
9
+ get labelKey() {
10
+ return `record.metadata.quality.${this.name}.${this.value ? 'success' : 'failed'}`;
11
+ }
12
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataQualityItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
13
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: MetadataQualityItemComponent, selector: "gn-ui-metadata-quality-item", inputs: { name: "name", value: "value" }, ngImport: i0, template: "<div class=\"ml-4 flex flex-row\">\n <mat-icon>{{ icon }}</mat-icon>\n <p class=\"ml-2 text\">{{ labelKey | translate }}</p>\n</div>\n", dependencies: [{ kind: "component", type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i2.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14
+ }
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataQualityItemComponent, decorators: [{
16
+ type: Component,
17
+ args: [{ selector: 'gn-ui-metadata-quality-item', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"ml-4 flex flex-row\">\n <mat-icon>{{ icon }}</mat-icon>\n <p class=\"ml-2 text\">{{ labelKey | translate }}</p>\n</div>\n" }]
18
+ }], propDecorators: { name: [{
19
+ type: Input
20
+ }], value: [{
21
+ type: Input
22
+ }] } });
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWV0YWRhdGEtcXVhbGl0eS1pdGVtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9tZXRhZGF0YS1xdWFsaXR5LWl0ZW0vbWV0YWRhdGEtcXVhbGl0eS1pdGVtLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9tZXRhZGF0YS1xdWFsaXR5LWl0ZW0vbWV0YWRhdGEtcXVhbGl0eS1pdGVtLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFBOzs7O0FBWXpFLE1BQU0sT0FBTyw0QkFBNEI7SUFJdkMsSUFBSSxJQUFJO1FBQ04sT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLGVBQWUsQ0FBQTtJQUMvQyxDQUFDO0lBRUQsSUFBSSxRQUFRO1FBQ1YsT0FBTywyQkFBMkIsSUFBSSxDQUFDLElBQUksSUFDekMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxRQUMzQixFQUFFLENBQUE7SUFDSixDQUFDOzhHQVpVLDRCQUE0QjtrR0FBNUIsNEJBQTRCLDZHQ1p6QywwSUFJQTs7MkZEUWEsNEJBQTRCO2tCQUx4QyxTQUFTOytCQUNFLDZCQUE2QixtQkFFdEIsdUJBQXVCLENBQUMsTUFBTTs4QkFHdEMsSUFBSTtzQkFBWixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcblxuZXhwb3J0IGludGVyZmFjZSBNZXRhZGF0YVF1YWxpdHlJdGVtIHtcbiAgbmFtZTogc3RyaW5nXG4gIHZhbHVlOiBib29sZWFuXG59XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLW1ldGFkYXRhLXF1YWxpdHktaXRlbScsXG4gIHRlbXBsYXRlVXJsOiAnLi9tZXRhZGF0YS1xdWFsaXR5LWl0ZW0uY29tcG9uZW50Lmh0bWwnLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgTWV0YWRhdGFRdWFsaXR5SXRlbUNvbXBvbmVudCBpbXBsZW1lbnRzIE1ldGFkYXRhUXVhbGl0eUl0ZW0ge1xuICBASW5wdXQoKSBuYW1lOiBzdHJpbmdcbiAgQElucHV0KCkgdmFsdWU6IGJvb2xlYW5cblxuICBnZXQgaWNvbigpIHtcbiAgICByZXR1cm4gdGhpcy52YWx1ZSA/ICdjaGVjaycgOiAnd2FybmluZ19hbWJlcidcbiAgfVxuXG4gIGdldCBsYWJlbEtleSgpIHtcbiAgICByZXR1cm4gYHJlY29yZC5tZXRhZGF0YS5xdWFsaXR5LiR7dGhpcy5uYW1lfS4ke1xuICAgICAgdGhpcy52YWx1ZSA/ICdzdWNjZXNzJyA6ICdmYWlsZWQnXG4gICAgfWBcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cIm1sLTQgZmxleCBmbGV4LXJvd1wiPlxuICA8bWF0LWljb24+e3sgaWNvbiB9fTwvbWF0LWljb24+XG4gIDxwIGNsYXNzPVwibWwtMiB0ZXh0XCI+e3sgbGFiZWxLZXkgfCB0cmFuc2xhdGUgfX08L3A+XG48L2Rpdj5cbiJdfQ==
@@ -0,0 +1,54 @@
1
+ import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "@angular/material/icon";
5
+ import * as i3 from "@ngx-translate/core";
6
+ import * as i4 from "../../../../inputs/src/lib/button/button.component";
7
+ import * as i5 from "@angular/forms";
8
+ export class PaginationComponent {
9
+ constructor() {
10
+ this.currentPage = 1;
11
+ this.nPages = 1;
12
+ this.hideButton = false;
13
+ this.newCurrentPageEvent = new EventEmitter();
14
+ }
15
+ applyPageBounds() {
16
+ // make sure this works with NaN inputs as well by adding `|| 1`
17
+ this.nPages = Math.max(1, this.nPages || 1);
18
+ this.currentPage = Math.max(1, Math.min(this.nPages, this.currentPage || 1));
19
+ }
20
+ ngOnChanges(changes) {
21
+ // make sure the inputs are valid
22
+ if ('currentPage' in changes || 'nPages' in changes) {
23
+ this.applyPageBounds();
24
+ }
25
+ }
26
+ setPage(newPage) {
27
+ if (!Number.isInteger(newPage))
28
+ return;
29
+ this.currentPage = newPage;
30
+ this.applyPageBounds();
31
+ this.newCurrentPageEvent.emit(this.currentPage);
32
+ }
33
+ nextPage() {
34
+ this.setPage(this.currentPage + 1);
35
+ }
36
+ previousPage() {
37
+ this.setPage(this.currentPage - 1);
38
+ }
39
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: PaginationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
40
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: PaginationComponent, selector: "gn-ui-pagination", inputs: { currentPage: "currentPage", nPages: "nPages", hideButton: "hideButton" }, outputs: { newCurrentPageEvent: "newCurrentPageEvent" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"relative\">\n <div class=\"sm:absolute sm:inset-0\" *ngIf=\"!hideButton\">\n <gn-ui-button\n (buttonClick)=\"nextPage()\"\n type=\"secondary\"\n [disabled]=\"currentPage === nPages\"\n extraClass=\"lg:m-auto !p-[22px]\"\n >\n <span class=\"uppercase font-medium tracking-widest\" translate\n >pagination.nextPage</span\n >\n </gn-ui-button>\n </div>\n <div\n class=\"relative pointer-events-none flex flex-row justify-start sm:justify-end\"\n >\n <div class=\"pointer-events-auto flex flex-row items-center py-[13px]\">\n <span class=\"mr-3 capitalize text-sm text-gray-900\" translate\n >pagination.page</span\n >\n <input\n type=\"number\"\n [ngModel]=\"currentPage\"\n [min]=\"1\"\n [max]=\"nPages\"\n (ngModelChange)=\"setPage($event)\"\n class=\"border border-gray-300 rounded w-[54px] h-[34px] pl-[12px] mr-3 text-center\"\n />\n <span class=\"mr-3 text-sm text-gray-900\"\n ><span translate>pagination.pageOf</span> {{ nPages }}</span\n >\n <gn-ui-button\n (buttonClick)=\"previousPage()\"\n id=\"navigate_previous\"\n class=\"mr-2\"\n [disabled]=\"currentPage === 1\"\n [type]=\"'light'\"\n extraClass=\"!px-[3px]\"\n data-cy=\"prev-page\"\n >\n <mat-icon class=\"material-symbols-outlined\">navigate_before</mat-icon>\n </gn-ui-button>\n <gn-ui-button\n (buttonClick)=\"nextPage()\"\n id=\"navigate_next\"\n [disabled]=\"currentPage === nPages\"\n [type]=\"'light'\"\n extraClass=\"!px-[3px]\"\n data-cy=\"next-page\"\n >\n <mat-icon class=\"material-symbols-outlined\">navigate_next</mat-icon>\n </gn-ui-button>\n </div>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i3.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: i4.ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.MinValidator, selector: "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]", inputs: ["min"] }, { kind: "directive", type: i5.MaxValidator, selector: "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]", inputs: ["max"] }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
41
+ }
42
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: PaginationComponent, decorators: [{
43
+ type: Component,
44
+ args: [{ selector: 'gn-ui-pagination', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"relative\">\n <div class=\"sm:absolute sm:inset-0\" *ngIf=\"!hideButton\">\n <gn-ui-button\n (buttonClick)=\"nextPage()\"\n type=\"secondary\"\n [disabled]=\"currentPage === nPages\"\n extraClass=\"lg:m-auto !p-[22px]\"\n >\n <span class=\"uppercase font-medium tracking-widest\" translate\n >pagination.nextPage</span\n >\n </gn-ui-button>\n </div>\n <div\n class=\"relative pointer-events-none flex flex-row justify-start sm:justify-end\"\n >\n <div class=\"pointer-events-auto flex flex-row items-center py-[13px]\">\n <span class=\"mr-3 capitalize text-sm text-gray-900\" translate\n >pagination.page</span\n >\n <input\n type=\"number\"\n [ngModel]=\"currentPage\"\n [min]=\"1\"\n [max]=\"nPages\"\n (ngModelChange)=\"setPage($event)\"\n class=\"border border-gray-300 rounded w-[54px] h-[34px] pl-[12px] mr-3 text-center\"\n />\n <span class=\"mr-3 text-sm text-gray-900\"\n ><span translate>pagination.pageOf</span> {{ nPages }}</span\n >\n <gn-ui-button\n (buttonClick)=\"previousPage()\"\n id=\"navigate_previous\"\n class=\"mr-2\"\n [disabled]=\"currentPage === 1\"\n [type]=\"'light'\"\n extraClass=\"!px-[3px]\"\n data-cy=\"prev-page\"\n >\n <mat-icon class=\"material-symbols-outlined\">navigate_before</mat-icon>\n </gn-ui-button>\n <gn-ui-button\n (buttonClick)=\"nextPage()\"\n id=\"navigate_next\"\n [disabled]=\"currentPage === nPages\"\n [type]=\"'light'\"\n extraClass=\"!px-[3px]\"\n data-cy=\"next-page\"\n >\n <mat-icon class=\"material-symbols-outlined\">navigate_next</mat-icon>\n </gn-ui-button>\n </div>\n </div>\n</div>\n" }]
45
+ }], propDecorators: { currentPage: [{
46
+ type: Input
47
+ }], nPages: [{
48
+ type: Input
49
+ }], hideButton: [{
50
+ type: Input
51
+ }], newCurrentPageEvent: [{
52
+ type: Output
53
+ }] } });
54
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvcGFnaW5hdGlvbi9wYWdpbmF0aW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9wYWdpbmF0aW9uL3BhZ2luYXRpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFFTCxNQUFNLEdBRVAsTUFBTSxlQUFlLENBQUE7Ozs7Ozs7QUFRdEIsTUFBTSxPQUFPLG1CQUFtQjtJQU5oQztRQU9XLGdCQUFXLEdBQUcsQ0FBQyxDQUFBO1FBQ2YsV0FBTSxHQUFHLENBQUMsQ0FBQTtRQUNWLGVBQVUsR0FBRyxLQUFLLENBQUE7UUFDakIsd0JBQW1CLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQTtLQTZCM0Q7SUEzQlMsZUFBZTtRQUNyQixnRUFBZ0U7UUFDaEUsSUFBSSxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFBO1FBQzNDLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxXQUFXLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQTtJQUM5RSxDQUFDO0lBRUQsV0FBVyxDQUFDLE9BQXNCO1FBQ2hDLGlDQUFpQztRQUNqQyxJQUFJLGFBQWEsSUFBSSxPQUFPLElBQUksUUFBUSxJQUFJLE9BQU8sRUFBRTtZQUNuRCxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUE7U0FDdkI7SUFDSCxDQUFDO0lBRUQsT0FBTyxDQUFDLE9BQU87UUFDYixJQUFJLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFBRSxPQUFNO1FBQ3RDLElBQUksQ0FBQyxXQUFXLEdBQUcsT0FBTyxDQUFBO1FBQzFCLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQTtRQUN0QixJQUFJLENBQUMsbUJBQW1CLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQTtJQUNqRCxDQUFDO0lBRUQsUUFBUTtRQUNOLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLENBQUMsQ0FBQTtJQUNwQyxDQUFDO0lBRUQsWUFBWTtRQUNWLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLENBQUMsQ0FBQTtJQUNwQyxDQUFDOzhHQWhDVSxtQkFBbUI7a0dBQW5CLG1CQUFtQiwwTkNoQmhDLHF6REF1REE7OzJGRHZDYSxtQkFBbUI7a0JBTi9CLFNBQVM7K0JBQ0Usa0JBQWtCLG1CQUdYLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0ksbUJBQW1CO3NCQUE1QixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT25DaGFuZ2VzLFxuICBPdXRwdXQsXG4gIFNpbXBsZUNoYW5nZXMsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLXBhZ2luYXRpb24nLFxuICB0ZW1wbGF0ZVVybDogJy4vcGFnaW5hdGlvbi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3BhZ2luYXRpb24uY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgUGFnaW5hdGlvbkNvbXBvbmVudCBpbXBsZW1lbnRzIE9uQ2hhbmdlcyB7XG4gIEBJbnB1dCgpIGN1cnJlbnRQYWdlID0gMVxuICBASW5wdXQoKSBuUGFnZXMgPSAxXG4gIEBJbnB1dCgpIGhpZGVCdXR0b24gPSBmYWxzZVxuICBAT3V0cHV0KCkgbmV3Q3VycmVudFBhZ2VFdmVudCA9IG5ldyBFdmVudEVtaXR0ZXI8bnVtYmVyPigpXG5cbiAgcHJpdmF0ZSBhcHBseVBhZ2VCb3VuZHMoKSB7XG4gICAgLy8gbWFrZSBzdXJlIHRoaXMgd29ya3Mgd2l0aCBOYU4gaW5wdXRzIGFzIHdlbGwgYnkgYWRkaW5nIGB8fCAxYFxuICAgIHRoaXMublBhZ2VzID0gTWF0aC5tYXgoMSwgdGhpcy5uUGFnZXMgfHwgMSlcbiAgICB0aGlzLmN1cnJlbnRQYWdlID0gTWF0aC5tYXgoMSwgTWF0aC5taW4odGhpcy5uUGFnZXMsIHRoaXMuY3VycmVudFBhZ2UgfHwgMSkpXG4gIH1cblxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKSB7XG4gICAgLy8gbWFrZSBzdXJlIHRoZSBpbnB1dHMgYXJlIHZhbGlkXG4gICAgaWYgKCdjdXJyZW50UGFnZScgaW4gY2hhbmdlcyB8fCAnblBhZ2VzJyBpbiBjaGFuZ2VzKSB7XG4gICAgICB0aGlzLmFwcGx5UGFnZUJvdW5kcygpXG4gICAgfVxuICB9XG5cbiAgc2V0UGFnZShuZXdQYWdlKSB7XG4gICAgaWYgKCFOdW1iZXIuaXNJbnRlZ2VyKG5ld1BhZ2UpKSByZXR1cm5cbiAgICB0aGlzLmN1cnJlbnRQYWdlID0gbmV3UGFnZVxuICAgIHRoaXMuYXBwbHlQYWdlQm91bmRzKClcbiAgICB0aGlzLm5ld0N1cnJlbnRQYWdlRXZlbnQuZW1pdCh0aGlzLmN1cnJlbnRQYWdlKVxuICB9XG5cbiAgbmV4dFBhZ2UoKSB7XG4gICAgdGhpcy5zZXRQYWdlKHRoaXMuY3VycmVudFBhZ2UgKyAxKVxuICB9XG5cbiAgcHJldmlvdXNQYWdlKCkge1xuICAgIHRoaXMuc2V0UGFnZSh0aGlzLmN1cnJlbnRQYWdlIC0gMSlcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cInJlbGF0aXZlXCI+XG4gIDxkaXYgY2xhc3M9XCJzbTphYnNvbHV0ZSBzbTppbnNldC0wXCIgKm5nSWY9XCIhaGlkZUJ1dHRvblwiPlxuICAgIDxnbi11aS1idXR0b25cbiAgICAgIChidXR0b25DbGljayk9XCJuZXh0UGFnZSgpXCJcbiAgICAgIHR5cGU9XCJzZWNvbmRhcnlcIlxuICAgICAgW2Rpc2FibGVkXT1cImN1cnJlbnRQYWdlID09PSBuUGFnZXNcIlxuICAgICAgZXh0cmFDbGFzcz1cImxnOm0tYXV0byAhcC1bMjJweF1cIlxuICAgID5cbiAgICAgIDxzcGFuIGNsYXNzPVwidXBwZXJjYXNlIGZvbnQtbWVkaXVtIHRyYWNraW5nLXdpZGVzdFwiIHRyYW5zbGF0ZVxuICAgICAgICA+cGFnaW5hdGlvbi5uZXh0UGFnZTwvc3BhblxuICAgICAgPlxuICAgIDwvZ24tdWktYnV0dG9uPlxuICA8L2Rpdj5cbiAgPGRpdlxuICAgIGNsYXNzPVwicmVsYXRpdmUgcG9pbnRlci1ldmVudHMtbm9uZSBmbGV4IGZsZXgtcm93IGp1c3RpZnktc3RhcnQgc206anVzdGlmeS1lbmRcIlxuICA+XG4gICAgPGRpdiBjbGFzcz1cInBvaW50ZXItZXZlbnRzLWF1dG8gZmxleCBmbGV4LXJvdyBpdGVtcy1jZW50ZXIgcHktWzEzcHhdXCI+XG4gICAgICA8c3BhbiBjbGFzcz1cIm1yLTMgY2FwaXRhbGl6ZSB0ZXh0LXNtIHRleHQtZ3JheS05MDBcIiB0cmFuc2xhdGVcbiAgICAgICAgPnBhZ2luYXRpb24ucGFnZTwvc3BhblxuICAgICAgPlxuICAgICAgPGlucHV0XG4gICAgICAgIHR5cGU9XCJudW1iZXJcIlxuICAgICAgICBbbmdNb2RlbF09XCJjdXJyZW50UGFnZVwiXG4gICAgICAgIFttaW5dPVwiMVwiXG4gICAgICAgIFttYXhdPVwiblBhZ2VzXCJcbiAgICAgICAgKG5nTW9kZWxDaGFuZ2UpPVwic2V0UGFnZSgkZXZlbnQpXCJcbiAgICAgICAgY2xhc3M9XCJib3JkZXIgYm9yZGVyLWdyYXktMzAwIHJvdW5kZWQgdy1bNTRweF0gaC1bMzRweF0gcGwtWzEycHhdIG1yLTMgdGV4dC1jZW50ZXJcIlxuICAgICAgLz5cbiAgICAgIDxzcGFuIGNsYXNzPVwibXItMyB0ZXh0LXNtIHRleHQtZ3JheS05MDBcIlxuICAgICAgICA+PHNwYW4gdHJhbnNsYXRlPnBhZ2luYXRpb24ucGFnZU9mPC9zcGFuPiB7eyBuUGFnZXMgfX08L3NwYW5cbiAgICAgID5cbiAgICAgIDxnbi11aS1idXR0b25cbiAgICAgICAgKGJ1dHRvbkNsaWNrKT1cInByZXZpb3VzUGFnZSgpXCJcbiAgICAgICAgaWQ9XCJuYXZpZ2F0ZV9wcmV2aW91c1wiXG4gICAgICAgIGNsYXNzPVwibXItMlwiXG4gICAgICAgIFtkaXNhYmxlZF09XCJjdXJyZW50UGFnZSA9PT0gMVwiXG4gICAgICAgIFt0eXBlXT1cIidsaWdodCdcIlxuICAgICAgICBleHRyYUNsYXNzPVwiIXB4LVszcHhdXCJcbiAgICAgICAgZGF0YS1jeT1cInByZXYtcGFnZVwiXG4gICAgICA+XG4gICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWRcIj5uYXZpZ2F0ZV9iZWZvcmU8L21hdC1pY29uPlxuICAgICAgPC9nbi11aS1idXR0b24+XG4gICAgICA8Z24tdWktYnV0dG9uXG4gICAgICAgIChidXR0b25DbGljayk9XCJuZXh0UGFnZSgpXCJcbiAgICAgICAgaWQ9XCJuYXZpZ2F0ZV9uZXh0XCJcbiAgICAgICAgW2Rpc2FibGVkXT1cImN1cnJlbnRQYWdlID09PSBuUGFnZXNcIlxuICAgICAgICBbdHlwZV09XCInbGlnaHQnXCJcbiAgICAgICAgZXh0cmFDbGFzcz1cIiFweC1bM3B4XVwiXG4gICAgICAgIGRhdGEtY3k9XCJuZXh0LXBhZ2VcIlxuICAgICAgPlxuICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkXCI+bmF2aWdhdGVfbmV4dDwvbWF0LWljb24+XG4gICAgICA8L2duLXVpLWJ1dHRvbj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG48L2Rpdj5cbiJdfQ==
@@ -0,0 +1,66 @@
1
+ import { Component, EventEmitter, Input, Output, } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "@angular/material/icon";
5
+ import * as i3 from "../../../../inputs/src/lib/button/button.component";
6
+ export class PaginationButtonsComponent {
7
+ constructor() {
8
+ this.visiblePages = [];
9
+ this.newCurrentPageEvent = new EventEmitter();
10
+ }
11
+ ngOnChanges() {
12
+ this.calculateVisiblePages();
13
+ }
14
+ calculateVisiblePages() {
15
+ const maxVisiblePages = 5;
16
+ const halfVisible = Math.floor(maxVisiblePages / 2);
17
+ const startPage = Math.max(this.currentPage - halfVisible, 1);
18
+ const endPage = Math.min(this.currentPage + halfVisible, this.totalPages);
19
+ const visiblePages = [];
20
+ if (startPage > 1) {
21
+ visiblePages.push(1);
22
+ if (startPage > 2) {
23
+ visiblePages.push('...');
24
+ }
25
+ }
26
+ for (let page = startPage; page <= endPage; page++) {
27
+ visiblePages.push(page);
28
+ }
29
+ if (endPage < this.totalPages) {
30
+ if (endPage < this.totalPages - 1) {
31
+ visiblePages.push('...');
32
+ }
33
+ visiblePages.push(this.totalPages);
34
+ }
35
+ this.visiblePages = visiblePages;
36
+ }
37
+ changePage(page) {
38
+ this.setPage(page);
39
+ }
40
+ nextPage() {
41
+ this.setPage(this.currentPage + 1);
42
+ }
43
+ previousPage() {
44
+ this.setPage(this.currentPage - 1);
45
+ }
46
+ setPage(newPage) {
47
+ if (!Number.isInteger(newPage))
48
+ return;
49
+ this.currentPage = newPage;
50
+ this.calculateVisiblePages();
51
+ this.newCurrentPageEvent.emit(this.currentPage);
52
+ }
53
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: PaginationButtonsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
54
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: PaginationButtonsComponent, selector: "gn-ui-pagination-buttons", inputs: { currentPage: "currentPage", totalPages: "totalPages" }, outputs: { newCurrentPageEvent: "newCurrentPageEvent" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"relative\">\n <div class=\"flex flex-row gap-[5px] items-center\">\n <gn-ui-button\n type=\"light\"\n [disabled]=\"currentPage === 1\"\n (buttonClick)=\"previousPage()\"\n extraClass=\"!px-[3px]\"\n >\n <mat-icon class=\"material-symbols-outlined\">chevron_left</mat-icon>\n </gn-ui-button>\n <ng-container *ngFor=\"let page of visiblePages\">\n <ng-container *ngIf=\"page === '...'\">\n <span class=\"mx-[5px]\">{{ page }}</span>\n </ng-container>\n <ng-container *ngIf=\"page !== '...'\">\n <gn-ui-button\n [type]=\"page === currentPage ? 'primary' : 'light'\"\n [disabled]=\"page === currentPage\"\n (buttonClick)=\"changePage(page)\"\n >{{ page }}</gn-ui-button\n >\n </ng-container>\n </ng-container>\n <gn-ui-button\n type=\"light\"\n [disabled]=\"currentPage === totalPages\"\n (buttonClick)=\"nextPage()\"\n extraClass=\"!px-[3px]\"\n >\n <mat-icon class=\"material-symbols-outlined\">chevron_right</mat-icon>\n </gn-ui-button>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i3.ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }] }); }
55
+ }
56
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: PaginationButtonsComponent, decorators: [{
57
+ type: Component,
58
+ args: [{ selector: 'gn-ui-pagination-buttons', template: "<div class=\"relative\">\n <div class=\"flex flex-row gap-[5px] items-center\">\n <gn-ui-button\n type=\"light\"\n [disabled]=\"currentPage === 1\"\n (buttonClick)=\"previousPage()\"\n extraClass=\"!px-[3px]\"\n >\n <mat-icon class=\"material-symbols-outlined\">chevron_left</mat-icon>\n </gn-ui-button>\n <ng-container *ngFor=\"let page of visiblePages\">\n <ng-container *ngIf=\"page === '...'\">\n <span class=\"mx-[5px]\">{{ page }}</span>\n </ng-container>\n <ng-container *ngIf=\"page !== '...'\">\n <gn-ui-button\n [type]=\"page === currentPage ? 'primary' : 'light'\"\n [disabled]=\"page === currentPage\"\n (buttonClick)=\"changePage(page)\"\n >{{ page }}</gn-ui-button\n >\n </ng-container>\n </ng-container>\n <gn-ui-button\n type=\"light\"\n [disabled]=\"currentPage === totalPages\"\n (buttonClick)=\"nextPage()\"\n extraClass=\"!px-[3px]\"\n >\n <mat-icon class=\"material-symbols-outlined\">chevron_right</mat-icon>\n </gn-ui-button>\n </div>\n</div>\n" }]
59
+ }], propDecorators: { currentPage: [{
60
+ type: Input
61
+ }], totalPages: [{
62
+ type: Input
63
+ }], newCurrentPageEvent: [{
64
+ type: Output
65
+ }] } });
66
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi1idXR0b25zLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9wYWdpbmF0aW9uLWJ1dHRvbnMvcGFnaW5hdGlvbi1idXR0b25zLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9wYWdpbmF0aW9uLWJ1dHRvbnMvcGFnaW5hdGlvbi1idXR0b25zLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCxTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFFTCxNQUFNLEdBQ1AsTUFBTSxlQUFlLENBQUE7Ozs7O0FBT3RCLE1BQU0sT0FBTywwQkFBMEI7SUFMdkM7UUFRRSxpQkFBWSxHQUF1QixFQUFFLENBQUE7UUFDM0Isd0JBQW1CLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQTtLQWtEM0Q7SUFoREMsV0FBVztRQUNULElBQUksQ0FBQyxxQkFBcUIsRUFBRSxDQUFBO0lBQzlCLENBQUM7SUFFRCxxQkFBcUI7UUFDbkIsTUFBTSxlQUFlLEdBQUcsQ0FBQyxDQUFBO1FBQ3pCLE1BQU0sV0FBVyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZSxHQUFHLENBQUMsQ0FBQyxDQUFBO1FBQ25ELE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFdBQVcsR0FBRyxXQUFXLEVBQUUsQ0FBQyxDQUFDLENBQUE7UUFDN0QsTUFBTSxPQUFPLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsV0FBVyxHQUFHLFdBQVcsRUFBRSxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUE7UUFFekUsTUFBTSxZQUFZLEdBQXVCLEVBQUUsQ0FBQTtRQUMzQyxJQUFJLFNBQVMsR0FBRyxDQUFDLEVBQUU7WUFDakIsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQTtZQUNwQixJQUFJLFNBQVMsR0FBRyxDQUFDLEVBQUU7Z0JBQ2pCLFlBQVksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUE7YUFDekI7U0FDRjtRQUNELEtBQUssSUFBSSxJQUFJLEdBQUcsU0FBUyxFQUFFLElBQUksSUFBSSxPQUFPLEVBQUUsSUFBSSxFQUFFLEVBQUU7WUFDbEQsWUFBWSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQTtTQUN4QjtRQUNELElBQUksT0FBTyxHQUFHLElBQUksQ0FBQyxVQUFVLEVBQUU7WUFDN0IsSUFBSSxPQUFPLEdBQUcsSUFBSSxDQUFDLFVBQVUsR0FBRyxDQUFDLEVBQUU7Z0JBQ2pDLFlBQVksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUE7YUFDekI7WUFDRCxZQUFZLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQTtTQUNuQztRQUVELElBQUksQ0FBQyxZQUFZLEdBQUcsWUFBWSxDQUFBO0lBQ2xDLENBQUM7SUFFRCxVQUFVLENBQUMsSUFBSTtRQUNiLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUE7SUFDcEIsQ0FBQztJQUVELFFBQVE7UUFDTixJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxDQUFDLENBQUE7SUFDcEMsQ0FBQztJQUVELFlBQVk7UUFDVixJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxDQUFDLENBQUE7SUFDcEMsQ0FBQztJQUVELE9BQU8sQ0FBQyxPQUFPO1FBQ2IsSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQUUsT0FBTTtRQUN0QyxJQUFJLENBQUMsV0FBVyxHQUFHLE9BQU8sQ0FBQTtRQUMxQixJQUFJLENBQUMscUJBQXFCLEVBQUUsQ0FBQTtRQUM1QixJQUFJLENBQUMsbUJBQW1CLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQTtJQUNqRCxDQUFDOzhHQXJEVSwwQkFBMEI7a0dBQTFCLDBCQUEwQixnTkNidkMsa21DQWlDQTs7MkZEcEJhLDBCQUEwQjtrQkFMdEMsU0FBUzsrQkFDRSwwQkFBMEI7OEJBSzNCLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFFSSxtQkFBbUI7c0JBQTVCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE9uQ2hhbmdlcyxcbiAgT3V0cHV0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1wYWdpbmF0aW9uLWJ1dHRvbnMnLFxuICB0ZW1wbGF0ZVVybDogJy4vcGFnaW5hdGlvbi1idXR0b25zLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcGFnaW5hdGlvbi1idXR0b25zLmNvbXBvbmVudC5jc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgUGFnaW5hdGlvbkJ1dHRvbnNDb21wb25lbnQgaW1wbGVtZW50cyBPbkNoYW5nZXMge1xuICBASW5wdXQoKSBjdXJyZW50UGFnZTogbnVtYmVyXG4gIEBJbnB1dCgpIHRvdGFsUGFnZXM6IG51bWJlclxuICB2aXNpYmxlUGFnZXM6IChudW1iZXIgfCAnLi4uJylbXSA9IFtdXG4gIEBPdXRwdXQoKSBuZXdDdXJyZW50UGFnZUV2ZW50ID0gbmV3IEV2ZW50RW1pdHRlcjxudW1iZXI+KClcblxuICBuZ09uQ2hhbmdlcygpOiB2b2lkIHtcbiAgICB0aGlzLmNhbGN1bGF0ZVZpc2libGVQYWdlcygpXG4gIH1cblxuICBjYWxjdWxhdGVWaXNpYmxlUGFnZXMoKTogdm9pZCB7XG4gICAgY29uc3QgbWF4VmlzaWJsZVBhZ2VzID0gNVxuICAgIGNvbnN0IGhhbGZWaXNpYmxlID0gTWF0aC5mbG9vcihtYXhWaXNpYmxlUGFnZXMgLyAyKVxuICAgIGNvbnN0IHN0YXJ0UGFnZSA9IE1hdGgubWF4KHRoaXMuY3VycmVudFBhZ2UgLSBoYWxmVmlzaWJsZSwgMSlcbiAgICBjb25zdCBlbmRQYWdlID0gTWF0aC5taW4odGhpcy5jdXJyZW50UGFnZSArIGhhbGZWaXNpYmxlLCB0aGlzLnRvdGFsUGFnZXMpXG5cbiAgICBjb25zdCB2aXNpYmxlUGFnZXM6IChudW1iZXIgfCAnLi4uJylbXSA9IFtdXG4gICAgaWYgKHN0YXJ0UGFnZSA+IDEpIHtcbiAgICAgIHZpc2libGVQYWdlcy5wdXNoKDEpXG4gICAgICBpZiAoc3RhcnRQYWdlID4gMikge1xuICAgICAgICB2aXNpYmxlUGFnZXMucHVzaCgnLi4uJylcbiAgICAgIH1cbiAgICB9XG4gICAgZm9yIChsZXQgcGFnZSA9IHN0YXJ0UGFnZTsgcGFnZSA8PSBlbmRQYWdlOyBwYWdlKyspIHtcbiAgICAgIHZpc2libGVQYWdlcy5wdXNoKHBhZ2UpXG4gICAgfVxuICAgIGlmIChlbmRQYWdlIDwgdGhpcy50b3RhbFBhZ2VzKSB7XG4gICAgICBpZiAoZW5kUGFnZSA8IHRoaXMudG90YWxQYWdlcyAtIDEpIHtcbiAgICAgICAgdmlzaWJsZVBhZ2VzLnB1c2goJy4uLicpXG4gICAgICB9XG4gICAgICB2aXNpYmxlUGFnZXMucHVzaCh0aGlzLnRvdGFsUGFnZXMpXG4gICAgfVxuXG4gICAgdGhpcy52aXNpYmxlUGFnZXMgPSB2aXNpYmxlUGFnZXNcbiAgfVxuXG4gIGNoYW5nZVBhZ2UocGFnZSkge1xuICAgIHRoaXMuc2V0UGFnZShwYWdlKVxuICB9XG5cbiAgbmV4dFBhZ2UoKSB7XG4gICAgdGhpcy5zZXRQYWdlKHRoaXMuY3VycmVudFBhZ2UgKyAxKVxuICB9XG5cbiAgcHJldmlvdXNQYWdlKCkge1xuICAgIHRoaXMuc2V0UGFnZSh0aGlzLmN1cnJlbnRQYWdlIC0gMSlcbiAgfVxuXG4gIHNldFBhZ2UobmV3UGFnZSkge1xuICAgIGlmICghTnVtYmVyLmlzSW50ZWdlcihuZXdQYWdlKSkgcmV0dXJuXG4gICAgdGhpcy5jdXJyZW50UGFnZSA9IG5ld1BhZ2VcbiAgICB0aGlzLmNhbGN1bGF0ZVZpc2libGVQYWdlcygpXG4gICAgdGhpcy5uZXdDdXJyZW50UGFnZUV2ZW50LmVtaXQodGhpcy5jdXJyZW50UGFnZSlcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cInJlbGF0aXZlXCI+XG4gIDxkaXYgY2xhc3M9XCJmbGV4IGZsZXgtcm93IGdhcC1bNXB4XSBpdGVtcy1jZW50ZXJcIj5cbiAgICA8Z24tdWktYnV0dG9uXG4gICAgICB0eXBlPVwibGlnaHRcIlxuICAgICAgW2Rpc2FibGVkXT1cImN1cnJlbnRQYWdlID09PSAxXCJcbiAgICAgIChidXR0b25DbGljayk9XCJwcmV2aW91c1BhZ2UoKVwiXG4gICAgICBleHRyYUNsYXNzPVwiIXB4LVszcHhdXCJcbiAgICA+XG4gICAgICA8bWF0LWljb24gY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkXCI+Y2hldnJvbl9sZWZ0PC9tYXQtaWNvbj5cbiAgICA8L2duLXVpLWJ1dHRvbj5cbiAgICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBwYWdlIG9mIHZpc2libGVQYWdlc1wiPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInBhZ2UgPT09ICcuLi4nXCI+XG4gICAgICAgIDxzcGFuIGNsYXNzPVwibXgtWzVweF1cIj57eyBwYWdlIH19PC9zcGFuPlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwicGFnZSAhPT0gJy4uLidcIj5cbiAgICAgICAgPGduLXVpLWJ1dHRvblxuICAgICAgICAgIFt0eXBlXT1cInBhZ2UgPT09IGN1cnJlbnRQYWdlID8gJ3ByaW1hcnknIDogJ2xpZ2h0J1wiXG4gICAgICAgICAgW2Rpc2FibGVkXT1cInBhZ2UgPT09IGN1cnJlbnRQYWdlXCJcbiAgICAgICAgICAoYnV0dG9uQ2xpY2spPVwiY2hhbmdlUGFnZShwYWdlKVwiXG4gICAgICAgICAgPnt7IHBhZ2UgfX08L2duLXVpLWJ1dHRvblxuICAgICAgICA+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8Z24tdWktYnV0dG9uXG4gICAgICB0eXBlPVwibGlnaHRcIlxuICAgICAgW2Rpc2FibGVkXT1cImN1cnJlbnRQYWdlID09PSB0b3RhbFBhZ2VzXCJcbiAgICAgIChidXR0b25DbGljayk9XCJuZXh0UGFnZSgpXCJcbiAgICAgIGV4dHJhQ2xhc3M9XCIhcHgtWzNweF1cIlxuICAgID5cbiAgICAgIDxtYXQtaWNvbiBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWRcIj5jaGV2cm9uX3JpZ2h0PC9tYXQtaWNvbj5cbiAgICA8L2duLXVpLWJ1dHRvbj5cbiAgPC9kaXY+XG48L2Rpdj5cbiJdfQ==
@@ -0,0 +1,18 @@
1
+ import { Component, ChangeDetectionStrategy, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/material/icon";
4
+ import * as i2 from "@angular/material/tooltip";
5
+ import * as i3 from "@angular/router";
6
+ import * as i4 from "../thumbnail/thumbnail.component";
7
+ import * as i5 from "@ngx-translate/core";
8
+ export class RelatedRecordCardComponent {
9
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RelatedRecordCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: RelatedRecordCardComponent, selector: "gn-ui-related-record-card", inputs: { record: "record" }, ngImport: i0, template: "<a\n class=\"w-72 h-96 overflow-hidden rounded-lg bg-white cursor-pointer block hover:-translate-y-2 duration-[180ms]\"\n [routerLink]=\"['/dataset', record.uniqueIdentifier]\"\n target=\"_blank\"\n>\n <div class=\"h-52 bg-gray-100\">\n <gn-ui-thumbnail\n class=\"h-52 w-full object-cover\"\n [thumbnailUrl]=\"record.overviews?.[0].url.toString()\"\n ></gn-ui-thumbnail>\n </div>\n <div class=\"flex flex-col justify-between h-44 px-5 pt-4 pb-6\">\n <h4\n class=\"max-h-24 font-title text-21 text-black text-ellipsis overflow-hidden\"\n >\n {{ record.title }}\n </h4>\n <div>\n <button\n mat-raised-button\n [matTooltip]=\"'tooltip.url.open' | translate\"\n matTooltipPosition=\"above\"\n >\n <mat-icon class=\"material-symbols-outlined align-middle text-secondary\"\n >open_in_new</mat-icon\n >\n </button>\n </div>\n </div>\n</a>\n", styles: [""], dependencies: [{ kind: "component", type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }, { kind: "directive", type: i3.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: i4.ThumbnailComponent, selector: "gn-ui-thumbnail", inputs: ["thumbnailUrl", "fit"] }, { kind: "pipe", type: i5.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
11
+ }
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RelatedRecordCardComponent, decorators: [{
13
+ type: Component,
14
+ args: [{ selector: 'gn-ui-related-record-card', changeDetection: ChangeDetectionStrategy.OnPush, template: "<a\n class=\"w-72 h-96 overflow-hidden rounded-lg bg-white cursor-pointer block hover:-translate-y-2 duration-[180ms]\"\n [routerLink]=\"['/dataset', record.uniqueIdentifier]\"\n target=\"_blank\"\n>\n <div class=\"h-52 bg-gray-100\">\n <gn-ui-thumbnail\n class=\"h-52 w-full object-cover\"\n [thumbnailUrl]=\"record.overviews?.[0].url.toString()\"\n ></gn-ui-thumbnail>\n </div>\n <div class=\"flex flex-col justify-between h-44 px-5 pt-4 pb-6\">\n <h4\n class=\"max-h-24 font-title text-21 text-black text-ellipsis overflow-hidden\"\n >\n {{ record.title }}\n </h4>\n <div>\n <button\n mat-raised-button\n [matTooltip]=\"'tooltip.url.open' | translate\"\n matTooltipPosition=\"above\"\n >\n <mat-icon class=\"material-symbols-outlined align-middle text-secondary\"\n >open_in_new</mat-icon\n >\n </button>\n </div>\n </div>\n</a>\n" }]
15
+ }], propDecorators: { record: [{
16
+ type: Input
17
+ }] } });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVsYXRlZC1yZWNvcmQtY2FyZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvcmVsYXRlZC1yZWNvcmQtY2FyZC9yZWxhdGVkLXJlY29yZC1jYXJkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9yZWxhdGVkLXJlY29yZC1jYXJkL3JlbGF0ZWQtcmVjb3JkLWNhcmQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSx1QkFBdUIsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7Ozs7Ozs7QUFTekUsTUFBTSxPQUFPLDBCQUEwQjs4R0FBMUIsMEJBQTBCO2tHQUExQiwwQkFBMEIsK0ZDVHZDLDg2QkE4QkE7OzJGRHJCYSwwQkFBMEI7a0JBTnRDLFNBQVM7K0JBQ0UsMkJBQTJCLG1CQUdwQix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxNQUFNO3NCQUFkLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBDYXRhbG9nUmVjb3JkIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21tb24vZG9tYWluL3NyYy9saWIvcmVjb3JkJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1yZWxhdGVkLXJlY29yZC1jYXJkJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3JlbGF0ZWQtcmVjb3JkLWNhcmQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9yZWxhdGVkLXJlY29yZC1jYXJkLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFJlbGF0ZWRSZWNvcmRDYXJkQ29tcG9uZW50IHtcbiAgQElucHV0KCkgcmVjb3JkOiBDYXRhbG9nUmVjb3JkXG59XG4iLCI8YVxuICBjbGFzcz1cInctNzIgaC05NiBvdmVyZmxvdy1oaWRkZW4gcm91bmRlZC1sZyBiZy13aGl0ZSBjdXJzb3ItcG9pbnRlciBibG9jayBob3ZlcjotdHJhbnNsYXRlLXktMiBkdXJhdGlvbi1bMTgwbXNdXCJcbiAgW3JvdXRlckxpbmtdPVwiWycvZGF0YXNldCcsIHJlY29yZC51bmlxdWVJZGVudGlmaWVyXVwiXG4gIHRhcmdldD1cIl9ibGFua1wiXG4+XG4gIDxkaXYgY2xhc3M9XCJoLTUyIGJnLWdyYXktMTAwXCI+XG4gICAgPGduLXVpLXRodW1ibmFpbFxuICAgICAgY2xhc3M9XCJoLTUyIHctZnVsbCBvYmplY3QtY292ZXJcIlxuICAgICAgW3RodW1ibmFpbFVybF09XCJyZWNvcmQub3ZlcnZpZXdzPy5bMF0udXJsLnRvU3RyaW5nKClcIlxuICAgID48L2duLXVpLXRodW1ibmFpbD5cbiAgPC9kaXY+XG4gIDxkaXYgY2xhc3M9XCJmbGV4IGZsZXgtY29sIGp1c3RpZnktYmV0d2VlbiBoLTQ0IHB4LTUgcHQtNCBwYi02XCI+XG4gICAgPGg0XG4gICAgICBjbGFzcz1cIm1heC1oLTI0IGZvbnQtdGl0bGUgdGV4dC0yMSB0ZXh0LWJsYWNrIHRleHQtZWxsaXBzaXMgb3ZlcmZsb3ctaGlkZGVuXCJcbiAgICA+XG4gICAgICB7eyByZWNvcmQudGl0bGUgfX1cbiAgICA8L2g0PlxuICAgIDxkaXY+XG4gICAgICA8YnV0dG9uXG4gICAgICAgIG1hdC1yYWlzZWQtYnV0dG9uXG4gICAgICAgIFttYXRUb29sdGlwXT1cIid0b29sdGlwLnVybC5vcGVuJyB8IHRyYW5zbGF0ZVwiXG4gICAgICAgIG1hdFRvb2x0aXBQb3NpdGlvbj1cImFib3ZlXCJcbiAgICAgID5cbiAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBhbGlnbi1taWRkbGUgdGV4dC1zZWNvbmRhcnlcIlxuICAgICAgICAgID5vcGVuX2luX25ldzwvbWF0LWljb25cbiAgICAgICAgPlxuICAgICAgPC9idXR0b24+XG4gICAgPC9kaXY+XG4gIDwvZGl2PlxuPC9hPlxuIl19
@@ -0,0 +1,29 @@
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "@angular/material/icon";
5
+ import * as i3 from "@ngx-translate/core";
6
+ export var ErrorType;
7
+ (function (ErrorType) {
8
+ ErrorType[ErrorType["COULD_NOT_REACH_API"] = 0] = "COULD_NOT_REACH_API";
9
+ ErrorType[ErrorType["RECEIVED_ERROR"] = 1] = "RECEIVED_ERROR";
10
+ ErrorType[ErrorType["RECORD_NOT_FOUND"] = 2] = "RECORD_NOT_FOUND";
11
+ })(ErrorType || (ErrorType = {}));
12
+ export class SearchResultsErrorComponent {
13
+ constructor() {
14
+ this.types = ErrorType;
15
+ }
16
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: SearchResultsErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
17
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: SearchResultsErrorComponent, selector: "gn-ui-search-results-error", inputs: { type: "type", error: "error", recordId: "recordId" }, ngImport: i0, template: "<div\n class=\"p-[1.7em] bg-red-50 text-red-800 text-[1.5em] text-center rounded-lg\"\n>\n <div *ngIf=\"type === types.COULD_NOT_REACH_API\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined face\">face</mat-icon>\n <mat-icon class=\"material-symbols-outlined question-mark1\"\n >question_mark</mat-icon\n >\n <mat-icon class=\"material-symbols-outlined question-mark2\"\n >question_mark</mat-icon\n >\n </div>\n <div translate>search.error.couldNotReachApi</div>\n </div>\n <div *ngIf=\"type === types.RECEIVED_ERROR\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined face\">mood_bad</mat-icon>\n </div>\n <div translate>search.error.receivedError</div>\n <div *ngIf=\"error\">{{ error }}</div>\n </div>\n <div *ngIf=\"type === types.RECORD_NOT_FOUND\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined computer\">computer</mat-icon>\n <mat-icon class=\"material-symbols-outlined computer-question-mark\"\n >question_mark</mat-icon\n >\n </div>\n <div translate [translateParams]=\"{ id: recordId }\">\n search.error.recordNotFound\n </div>\n <div *ngIf=\"error\">{{ error }}</div>\n </div>\n</div>\n", styles: ["mat-icon{width:auto;height:auto}mat-icon.face{font-size:3em}mat-icon.question-mark1{position:absolute;bottom:1.1em;left:calc(50% + .7em);font-size:1.7em}mat-icon.question-mark2{position:absolute;bottom:1.6em;left:calc(50% + 1.6em);font-size:1.4em}.computer{font-size:3em}.computer-question-mark{position:absolute;top:.6em;left:calc(50% - .5em);font-size:1.2em}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i3.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
18
+ }
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: SearchResultsErrorComponent, decorators: [{
20
+ type: Component,
21
+ args: [{ selector: 'gn-ui-search-results-error', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"p-[1.7em] bg-red-50 text-red-800 text-[1.5em] text-center rounded-lg\"\n>\n <div *ngIf=\"type === types.COULD_NOT_REACH_API\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined face\">face</mat-icon>\n <mat-icon class=\"material-symbols-outlined question-mark1\"\n >question_mark</mat-icon\n >\n <mat-icon class=\"material-symbols-outlined question-mark2\"\n >question_mark</mat-icon\n >\n </div>\n <div translate>search.error.couldNotReachApi</div>\n </div>\n <div *ngIf=\"type === types.RECEIVED_ERROR\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined face\">mood_bad</mat-icon>\n </div>\n <div translate>search.error.receivedError</div>\n <div *ngIf=\"error\">{{ error }}</div>\n </div>\n <div *ngIf=\"type === types.RECORD_NOT_FOUND\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined computer\">computer</mat-icon>\n <mat-icon class=\"material-symbols-outlined computer-question-mark\"\n >question_mark</mat-icon\n >\n </div>\n <div translate [translateParams]=\"{ id: recordId }\">\n search.error.recordNotFound\n </div>\n <div *ngIf=\"error\">{{ error }}</div>\n </div>\n</div>\n", styles: ["mat-icon{width:auto;height:auto}mat-icon.face{font-size:3em}mat-icon.question-mark1{position:absolute;bottom:1.1em;left:calc(50% + .7em);font-size:1.7em}mat-icon.question-mark2{position:absolute;bottom:1.6em;left:calc(50% + 1.6em);font-size:1.4em}.computer{font-size:3em}.computer-question-mark{position:absolute;top:.6em;left:calc(50% - .5em);font-size:1.2em}\n"] }]
22
+ }], propDecorators: { type: [{
23
+ type: Input
24
+ }], error: [{
25
+ type: Input
26
+ }], recordId: [{
27
+ type: Input
28
+ }] } });
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLXJlc3VsdHMtZXJyb3IuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9lbGVtZW50cy9zcmMvbGliL3NlYXJjaC1yZXN1bHRzLWVycm9yL3NlYXJjaC1yZXN1bHRzLWVycm9yLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9zZWFyY2gtcmVzdWx0cy1lcnJvci9zZWFyY2gtcmVzdWx0cy1lcnJvci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTs7Ozs7QUFFekUsTUFBTSxDQUFOLElBQVksU0FJWDtBQUpELFdBQVksU0FBUztJQUNuQix1RUFBbUIsQ0FBQTtJQUNuQiw2REFBYyxDQUFBO0lBQ2QsaUVBQWdCLENBQUE7QUFDbEIsQ0FBQyxFQUpXLFNBQVMsS0FBVCxTQUFTLFFBSXBCO0FBUUQsTUFBTSxPQUFPLDJCQUEyQjtJQU54QztRQVVFLFVBQUssR0FBRyxTQUFTLENBQUE7S0FDbEI7OEdBTFksMkJBQTJCO2tHQUEzQiwyQkFBMkIsa0lDZHhDLDJ5Q0FtQ0E7OzJGRHJCYSwyQkFBMkI7a0JBTnZDLFNBQVM7K0JBQ0UsNEJBQTRCLG1CQUdyQix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5cbmV4cG9ydCBlbnVtIEVycm9yVHlwZSB7XG4gIENPVUxEX05PVF9SRUFDSF9BUEksXG4gIFJFQ0VJVkVEX0VSUk9SLFxuICBSRUNPUkRfTk9UX0ZPVU5ELFxufVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1zZWFyY2gtcmVzdWx0cy1lcnJvcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9zZWFyY2gtcmVzdWx0cy1lcnJvci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlYXJjaC1yZXN1bHRzLWVycm9yLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFNlYXJjaFJlc3VsdHNFcnJvckNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHR5cGUhOiBFcnJvclR5cGVcbiAgQElucHV0KCkgZXJyb3I/OiBzdHJpbmdcbiAgQElucHV0KCkgcmVjb3JkSWQ/OiBzdHJpbmdcbiAgdHlwZXMgPSBFcnJvclR5cGVcbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJwLVsxLjdlbV0gYmctcmVkLTUwIHRleHQtcmVkLTgwMCB0ZXh0LVsxLjVlbV0gdGV4dC1jZW50ZXIgcm91bmRlZC1sZ1wiXG4+XG4gIDxkaXYgKm5nSWY9XCJ0eXBlID09PSB0eXBlcy5DT1VMRF9OT1RfUkVBQ0hfQVBJXCI+XG4gICAgPGRpdiBjbGFzcz1cInJlbGF0aXZlIG9wYWNpdHktNDBcIj5cbiAgICAgIDxtYXQtaWNvbiBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgZmFjZVwiPmZhY2U8L21hdC1pY29uPlxuICAgICAgPG1hdC1pY29uIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBxdWVzdGlvbi1tYXJrMVwiXG4gICAgICAgID5xdWVzdGlvbl9tYXJrPC9tYXQtaWNvblxuICAgICAgPlxuICAgICAgPG1hdC1pY29uIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBxdWVzdGlvbi1tYXJrMlwiXG4gICAgICAgID5xdWVzdGlvbl9tYXJrPC9tYXQtaWNvblxuICAgICAgPlxuICAgIDwvZGl2PlxuICAgIDxkaXYgdHJhbnNsYXRlPnNlYXJjaC5lcnJvci5jb3VsZE5vdFJlYWNoQXBpPC9kaXY+XG4gIDwvZGl2PlxuICA8ZGl2ICpuZ0lmPVwidHlwZSA9PT0gdHlwZXMuUkVDRUlWRURfRVJST1JcIj5cbiAgICA8ZGl2IGNsYXNzPVwicmVsYXRpdmUgb3BhY2l0eS00MFwiPlxuICAgICAgPG1hdC1pY29uIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBmYWNlXCI+bW9vZF9iYWQ8L21hdC1pY29uPlxuICAgIDwvZGl2PlxuICAgIDxkaXYgdHJhbnNsYXRlPnNlYXJjaC5lcnJvci5yZWNlaXZlZEVycm9yPC9kaXY+XG4gICAgPGRpdiAqbmdJZj1cImVycm9yXCI+e3sgZXJyb3IgfX08L2Rpdj5cbiAgPC9kaXY+XG4gIDxkaXYgKm5nSWY9XCJ0eXBlID09PSB0eXBlcy5SRUNPUkRfTk9UX0ZPVU5EXCI+XG4gICAgPGRpdiBjbGFzcz1cInJlbGF0aXZlIG9wYWNpdHktNDBcIj5cbiAgICAgIDxtYXQtaWNvbiBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgY29tcHV0ZXJcIj5jb21wdXRlcjwvbWF0LWljb24+XG4gICAgICA8bWF0LWljb24gY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIGNvbXB1dGVyLXF1ZXN0aW9uLW1hcmtcIlxuICAgICAgICA+cXVlc3Rpb25fbWFyazwvbWF0LWljb25cbiAgICAgID5cbiAgICA8L2Rpdj5cbiAgICA8ZGl2IHRyYW5zbGF0ZSBbdHJhbnNsYXRlUGFyYW1zXT1cInsgaWQ6IHJlY29yZElkIH1cIj5cbiAgICAgIHNlYXJjaC5lcnJvci5yZWNvcmROb3RGb3VuZFxuICAgIDwvZGl2PlxuICAgIDxkaXYgKm5nSWY9XCJlcnJvclwiPnt7IGVycm9yIH19PC9kaXY+XG4gIDwvZGl2PlxuPC9kaXY+XG4iXX0=
@@ -0,0 +1,92 @@
1
+ import { ChangeDetectionStrategy, Component, ElementRef, Inject, InjectionToken, Input, Optional, ViewChild, } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "../../../../../util/shared/src/lib/pipes/SafePipe";
5
+ export const THUMBNAIL_PLACEHOLDER = new InjectionToken('thumbnail-placeholder');
6
+ const DEFAULT_PLACEHOLDER = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH5gkNDCUFYjA1nwAAA1pJREFUeNrtnW2TmjAURh8CLlTdrmun///3tZ22+zLuYlehH7jsMGogwRiiec4MM44K6D3x3hAwAIQQQgghhJDYSM5cPwNQAMgBpACUg22GTg2gArAD8A9AKY+9CsgALAF8YRsGALwDeAWw9yGgALCKoKWP+WU8iwxjUsudLBj83sZciIiPSwhoWz7pJ5dUZFQXlEXOZ/DNeTBt3JnhBpc9aacGsOn0BuoIUk3b+5trGnEC4B7Ak4sUlInRU+wB/JbgVxG18KrTBc01EmYmcTFJQUVPy/9zTh/4BthLDOqeenB2DdBtZBN58LsSNpcUoEtTJWM/GIvMhQDde9j6h2OhXAjo6/2Q/lgkLgSQC0IBFEABZEKyiaQv5AAv7fSlS+lPVxRwOXTnEtoTPAs04yfRHGMoz8F/HOiaJfKeggLc78dmOHsVS33y9SUXsDuLlsg6FOAw/fhYhwI0pJ7WoQASpoC9p3UoQEPpaR0K0LCB3fB1e6KfAhxRweAKgQ5PsQxJ+CzCJYC/A7+EWt4TzVCE77GgEsBPHA/G7QBswcE4b+noVRZ2QxkCCqAAQgEUQCiAAggFUAChAAogFEABhAJcfT9FAdOxQuB/ML9lAfdo/qWYy2MK8EiO5mrrliUCvdIudAEzWWzQzWuxwjRnAK9WwAzAWhZTCe3l7cryNQrQBL/txZhKGGrlwc36ogIPfvdzfhuQsDDM80EVZXUFwe+mEJ2EOwBfLfYTTFFWVxL8Qwl3nedSye1jjhEyCjAPflfCWiScU1iDKMrqyoJ/KOFxRDf1sCg/xCxgTPC7EnIHn6GYsiirKw2+ayYryorBn7YoKwb/qCgntywg1OBPdqSsGPyTRXnp07gvPgD8AAl6KIICCAVQAAlLwOg5MSNi9NyqJgKqAHpQoZNZxs5KgG7SDN7AZzgWOxcCtprn5/wVfLb+uWXsrASUPXlvHbmETGKQjBVgMitVJTuaaQS2t/GoEMeE3onEor2jlK4RvwN4G1u9T4n6zp6PMTWAXzCYdCq12OCOhdeYZzT3mIErAW1Fr+HmNOAt82KSesYIAJoRzR2aIVumo+Ms8WwT/HOOZlM0Y+Zzxv2zp/gCTzfzPOyGtdfgp7LEcDvbvSxbWXg/HUIIIYQQQogx/wHLoX7NoCMFPwAAAABJRU5ErkJggg==';
7
+ export class ThumbnailComponent {
8
+ get isPlaceholder() {
9
+ return this.imgUrl === this.placeholderUrl;
10
+ }
11
+ constructor(optionalPlaceholderUrl) {
12
+ this.optionalPlaceholderUrl = optionalPlaceholderUrl;
13
+ this.fit = 'cover';
14
+ this.placeholderUrl = this.optionalPlaceholderUrl || DEFAULT_PLACEHOLDER;
15
+ this.images = [];
16
+ }
17
+ ngOnInit() {
18
+ this.updateImageList();
19
+ }
20
+ ngOnChanges(changes) {
21
+ if (!('thumbnailUrl' in changes) && !('fit' in changes)) {
22
+ return;
23
+ }
24
+ this.updateImageList();
25
+ }
26
+ updateImageList() {
27
+ if (!this.thumbnailUrl) {
28
+ this.setPlaceholder();
29
+ return;
30
+ }
31
+ const urls = Array.isArray(this.thumbnailUrl)
32
+ ? this.thumbnailUrl
33
+ : [this.thumbnailUrl];
34
+ this.images = urls
35
+ .map((url, index) => ({
36
+ url,
37
+ fit: (Array.isArray(this.fit) ? this.fit[index] : this.fit) || 'cover',
38
+ }))
39
+ .filter((img) => !!img.url);
40
+ if (!this.images.length) {
41
+ this.setPlaceholder();
42
+ return;
43
+ }
44
+ this.setNewSrcImage(this.images[0]);
45
+ }
46
+ setNewSrcImage(image) {
47
+ this.imgFit = image.fit;
48
+ this.imgUrl = image.url;
49
+ }
50
+ setPlaceholder() {
51
+ this.setNewSrcImage({ url: this.placeholderUrl, fit: 'scale-down' });
52
+ }
53
+ useFallback() {
54
+ if (this.images.length > 1) {
55
+ this.images.shift();
56
+ this.setNewSrcImage(this.images[0]);
57
+ }
58
+ else {
59
+ this.setPlaceholder();
60
+ }
61
+ }
62
+ setObjectFit() {
63
+ const cw = this.containerElement?.nativeElement?.clientWidth;
64
+ const ch = this.containerElement?.nativeElement?.clientHeight;
65
+ if (this.imgElement.nativeElement.naturalWidth < cw &&
66
+ this.imgElement.nativeElement.naturalHeight < ch) {
67
+ this.imgFit = 'scale-down';
68
+ }
69
+ }
70
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ThumbnailComponent, deps: [{ token: THUMBNAIL_PLACEHOLDER, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
71
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: ThumbnailComponent, selector: "gn-ui-thumbnail", inputs: { thumbnailUrl: "thumbnailUrl", fit: "fit" }, viewQueries: [{ propertyName: "imgElement", first: true, predicate: ["imageElement"], descendants: true }, { propertyName: "containerElement", first: true, predicate: ["containerElement"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div\n #containerElement\n class=\"h-full w-full relative shrink-0 overflow-hidden flex items-center\"\n [ngClass]=\"isPlaceholder ? 'bg-gray-100' : 'bg-white'\"\n [attr.data-cy-is-placeholder]=\"isPlaceholder.toString()\"\n>\n <img\n #imageElement\n class=\"relative w-full object-center\"\n [ngClass]=\"imgFit === 'contain' ? 'h-4/5' : 'h-full'\"\n [ngStyle]=\"{ objectFit: imgFit }\"\n alt=\"thumbnail\"\n loading=\"lazy\"\n (load)=\"setObjectFit()\"\n [src]=\"imgUrl | safe: 'url'\"\n (error)=\"useFallback()\"\n />\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "pipe", type: i2.SafePipe, name: "safe" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
72
+ }
73
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ThumbnailComponent, decorators: [{
74
+ type: Component,
75
+ args: [{ selector: 'gn-ui-thumbnail', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n #containerElement\n class=\"h-full w-full relative shrink-0 overflow-hidden flex items-center\"\n [ngClass]=\"isPlaceholder ? 'bg-gray-100' : 'bg-white'\"\n [attr.data-cy-is-placeholder]=\"isPlaceholder.toString()\"\n>\n <img\n #imageElement\n class=\"relative w-full object-center\"\n [ngClass]=\"imgFit === 'contain' ? 'h-4/5' : 'h-full'\"\n [ngStyle]=\"{ objectFit: imgFit }\"\n alt=\"thumbnail\"\n loading=\"lazy\"\n (load)=\"setObjectFit()\"\n [src]=\"imgUrl | safe: 'url'\"\n (error)=\"useFallback()\"\n />\n</div>\n" }]
76
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
77
+ type: Optional
78
+ }, {
79
+ type: Inject,
80
+ args: [THUMBNAIL_PLACEHOLDER]
81
+ }] }]; }, propDecorators: { thumbnailUrl: [{
82
+ type: Input
83
+ }], fit: [{
84
+ type: Input
85
+ }], imgElement: [{
86
+ type: ViewChild,
87
+ args: ['imageElement']
88
+ }], containerElement: [{
89
+ type: ViewChild,
90
+ args: ['containerElement']
91
+ }] } });
92
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGh1bWJuYWlsLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi90aHVtYm5haWwvdGh1bWJuYWlsLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi90aHVtYm5haWwvdGh1bWJuYWlsLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFVBQVUsRUFDVixNQUFNLEVBQ04sY0FBYyxFQUNkLEtBQUssRUFHTCxRQUFRLEVBRVIsU0FBUyxHQUNWLE1BQU0sZUFBZSxDQUFBOzs7O0FBRXRCLE1BQU0sQ0FBQyxNQUFNLHFCQUFxQixHQUFHLElBQUksY0FBYyxDQUNyRCx1QkFBdUIsQ0FDeEIsQ0FBQTtBQU9ELE1BQU0sbUJBQW1CLEdBQ3ZCLDR5Q0FBNHlDLENBQUE7QUFTOXlDLE1BQU0sT0FBTyxrQkFBa0I7SUFRN0IsSUFBSSxhQUFhO1FBQ2YsT0FBTyxJQUFJLENBQUMsTUFBTSxLQUFLLElBQUksQ0FBQyxjQUFjLENBQUE7SUFDNUMsQ0FBQztJQUdELFlBR1Usc0JBQThCO1FBQTlCLDJCQUFzQixHQUF0QixzQkFBc0IsQ0FBUTtRQWQvQixRQUFHLEdBQThCLE9BQU8sQ0FBQTtRQUtqRCxtQkFBYyxHQUFHLElBQUksQ0FBQyxzQkFBc0IsSUFBSSxtQkFBbUIsQ0FBQTtRQUkzRCxXQUFNLEdBQTJCLEVBQUUsQ0FBQTtJQU14QyxDQUFDO0lBRUosUUFBUTtRQUNOLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQTtJQUN4QixDQUFDO0lBRUQsV0FBVyxDQUFDLE9BQXNCO1FBQ2hDLElBQUksQ0FBQyxDQUFDLGNBQWMsSUFBSSxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxJQUFJLE9BQU8sQ0FBQyxFQUFFO1lBQ3ZELE9BQU07U0FDUDtRQUNELElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQTtJQUN4QixDQUFDO0lBRU8sZUFBZTtRQUNyQixJQUFJLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRTtZQUN0QixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUE7WUFDckIsT0FBTTtTQUNQO1FBQ0QsTUFBTSxJQUFJLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDO1lBQzNDLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWTtZQUNuQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUE7UUFDdkIsSUFBSSxDQUFDLE1BQU0sR0FBRyxJQUFJO2FBQ2YsR0FBRyxDQUFDLENBQUMsR0FBRyxFQUFFLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQztZQUNwQixHQUFHO1lBQ0gsR0FBRyxFQUFFLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxPQUFPO1NBQ3ZFLENBQUMsQ0FBQzthQUNGLE1BQU0sQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQTtRQUM3QixJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLEVBQUU7WUFDdkIsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFBO1lBQ3JCLE9BQU07U0FDUDtRQUNELElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFBO0lBQ3JDLENBQUM7SUFFTyxjQUFjLENBQUMsS0FBMkI7UUFDaEQsSUFBSSxDQUFDLE1BQU0sR0FBRyxLQUFLLENBQUMsR0FBRyxDQUFBO1FBQ3ZCLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDLEdBQUcsQ0FBQTtJQUN6QixDQUFDO0lBRU8sY0FBYztRQUNwQixJQUFJLENBQUMsY0FBYyxDQUFDLEVBQUUsR0FBRyxFQUFFLElBQUksQ0FBQyxjQUFjLEVBQUUsR0FBRyxFQUFFLFlBQVksRUFBRSxDQUFDLENBQUE7SUFDdEUsQ0FBQztJQUVELFdBQVc7UUFDVCxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsTUFBTSxHQUFHLENBQUMsRUFBRTtZQUMxQixJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFBO1lBQ25CLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFBO1NBQ3BDO2FBQU07WUFDTCxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUE7U0FDdEI7SUFDSCxDQUFDO0lBRUQsWUFBWTtRQUNWLE1BQU0sRUFBRSxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxhQUFhLEVBQUUsV0FBVyxDQUFBO1FBQzVELE1BQU0sRUFBRSxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxhQUFhLEVBQUUsWUFBWSxDQUFBO1FBQzdELElBQ0UsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsWUFBWSxHQUFHLEVBQUU7WUFDL0MsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsYUFBYSxHQUFHLEVBQUUsRUFDaEQ7WUFDQSxJQUFJLENBQUMsTUFBTSxHQUFHLFlBQVksQ0FBQTtTQUMzQjtJQUNILENBQUM7OEdBOUVVLGtCQUFrQixrQkFlbkIscUJBQXFCO2tHQWZwQixrQkFBa0IscVZDakMvQixvakJBa0JBOzsyRkRlYSxrQkFBa0I7a0JBTDlCLFNBQVM7K0JBQ0UsaUJBQWlCLG1CQUVWLHVCQUF1QixDQUFDLE1BQU07OzBCQWdCNUMsUUFBUTs7MEJBQ1IsTUFBTTsyQkFBQyxxQkFBcUI7NENBZHRCLFlBQVk7c0JBQXBCLEtBQUs7Z0JBQ0csR0FBRztzQkFBWCxLQUFLO2dCQUNxQixVQUFVO3NCQUFwQyxTQUFTO3VCQUFDLGNBQWM7Z0JBQ00sZ0JBQWdCO3NCQUE5QyxTQUFTO3VCQUFDLGtCQUFrQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIEluamVjdCxcbiAgSW5qZWN0aW9uVG9rZW4sXG4gIElucHV0LFxuICBPbkNoYW5nZXMsXG4gIE9uSW5pdCxcbiAgT3B0aW9uYWwsXG4gIFNpbXBsZUNoYW5nZXMsXG4gIFZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcblxuZXhwb3J0IGNvbnN0IFRIVU1CTkFJTF9QTEFDRUhPTERFUiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxzdHJpbmc+KFxuICAndGh1bWJuYWlsLXBsYWNlaG9sZGVyJ1xuKVxuXG50eXBlIFRodW1ibmFpbEltYWdlT2JqZWN0ID0ge1xuICB1cmw6IHN0cmluZ1xuICBmaXQ/OiAnY292ZXInIHwgJ2NvbnRhaW4nIHwgJ3NjYWxlLWRvd24nXG59XG5cbmNvbnN0IERFRkFVTFRfUExBQ0VIT0xERVIgPVxuICAnZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFHQUFBQUJnQ0FZQUFBRGltSGM0QUFBQUJtSkxSMFFBL3dEL0FQK2d2YWVUQUFBQUNYQklXWE1BQUEzWEFBQU4xd0ZDS0p0NEFBQUFCM1JKVFVVSDVna05EQ1VGWWpBMW53QUFBMXBKUkVGVWVOcnRuVzJUbWpBVVJoOENMbFRkcm11bi8vLzN0WjIyK3pMdVlsZWhIN2pzTUdvZ3dSaWllYzRNTTQ0SzZEM3gzaEF3QUlRUVFnZ2hoSkRZU001Y1B3TlFBTWdCcEFDVWcyMkdUZzJnQXJBRDhBOUFLWSs5Q3NnQUxBRjhZUnNHQUx3RGVBV3c5eUdnQUxDS29LV1ArV1U4aXd4alVzdWRMQmo4M3NaY2lJaVBTd2hvV3o3cEo1ZFVaRlFYbEVYT1ovRE5lVEJ0M0puaEJwYzlhYWNHc09uMEJ1b0lVazNiKzV0ckduRUM0QjdBazRzVWxJblJVK3dCL0piZ1Z4RzE4S3JUQmMwMUVtWW1jVEZKUVVWUHkvOXpUaC80QnRoTERPcWVlbkIyRGRCdFpCTjU4THNTTnBjVW9FdFRKV00vR0l2TWhRRGRlOWo2aDJPaFhBam82LzJRL2xna0xnU1FDMElCRkVBQlpFS3lpYVF2NUFBdjdmU2xTK2xQVnhSd09YVG5FdG9UUEFzMDR5ZlJIR01vejhGL0hPaWFKZktlZ2dMYzc4ZG1PSHNWUzMzeTlTVVhzRHVMbHNnNkZPQXcvZmhZaHdJMHBKN1dvUUFTcG9DOXAzVW9RRVBwYVIwSzBMQ0IzZkIxZTZLZkFoeFJ3ZUFLZ1E1UHNReEorQ3pDSllDL0E3K0VXdDRUelZDRTc3R2dFc0JQSEEvRzdRQnN3Y0U0Yitub1ZSWjJReGtDQ3FBQVFnRVVRQ2lBQWdnRlVBQ2hBQW9nRkVBQmhBSmNmVDlGQWRPeFF1Qi9NTDlsQWZkby9xV1l5Mk1LOEVpTzVtcnJsaVVDdmRJdWRBRXpXV3pReld1eHdqUm5BSzlXd0F6QVdoWlRDZTNsN2NyeU5RclFCTC90eFpoS0dHcmx3YzM2b2dJUGZ2ZHpmaHVRc0RETTgwRVZaWFVGd2UrbUVKMkVPd0JmTGZZVFRGRldWeEw4UXdsM25lZFN5ZTFqamhFeUNqQVBmbGZDV2lTY1UxaURLTXJxeW9KL0tPRnhSRGYxc0NnL3hDeGdUUEM3RW5JSG42R1lzaWlyS3cyK2F5WXJ5b3JCbjdZb0t3Yi9xQ2dudHl3ZzFPQlBkcVNzR1B5VFJYbnAwN2d2UGdEOEFBbDZLSUlDQ0FWUUFBbEx3T2c1TVNOaTlOeXFKZ0txQUhwUW9aTlp4czVLZ0c3U0RON0FaemdXT3hjQ3Rwcm41L3dWZkxiK3VXWHNyQVNVUFhsdkhibUVUR0tRakJWZ01pdFZKVHVhYVFTMnQvR29FTWVFM29uRW9yMmpsSzRSdndONEcxdTlUNG42enA2UE1UV0FYekNZZENxMTJPQ09oZGVZWnpUM21JRXJBVzFGcitIbU5PQXQ4MktTZXNZSUFKb1J6UjJhSVZ1bW8rTXM4V3dUL0hPT1psTTBZK1p6eHYyenAvZ0NUemZ6UE95R3RkZmdwN0xFY0R2YnZTeGJXWGcvSFVJSUlZUVFRb2d4L3dITG9YN05vQ01GUHdBQUFBQkpSVTVFcmtKZ2dnPT0nXG5cbnR5cGUgRml0T3B0aW9ucyA9ICdjb3ZlcicgfCAnY29udGFpbicgfCAnc2NhbGUtZG93bidcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktdGh1bWJuYWlsJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3RodW1ibmFpbC5jb21wb25lbnQuaHRtbCcsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBUaHVtYm5haWxDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uQ2hhbmdlcyB7XG4gIEBJbnB1dCgpIHRodW1ibmFpbFVybDogc3RyaW5nIHwgc3RyaW5nW11cbiAgQElucHV0KCkgZml0OiBGaXRPcHRpb25zIHwgRml0T3B0aW9uc1tdID0gJ2NvdmVyJ1xuICBAVmlld0NoaWxkKCdpbWFnZUVsZW1lbnQnKSBpbWdFbGVtZW50OiBFbGVtZW50UmVmPEhUTUxJbWFnZUVsZW1lbnQ+XG4gIEBWaWV3Q2hpbGQoJ2NvbnRhaW5lckVsZW1lbnQnKSBjb250YWluZXJFbGVtZW50OiBFbGVtZW50UmVmPEhUTUxEaXZFbGVtZW50PlxuICBpbWdVcmw6IHN0cmluZ1xuICBpbWdGaXQ6IEZpdE9wdGlvbnNcbiAgcGxhY2Vob2xkZXJVcmwgPSB0aGlzLm9wdGlvbmFsUGxhY2Vob2xkZXJVcmwgfHwgREVGQVVMVF9QTEFDRUhPTERFUlxuICBnZXQgaXNQbGFjZWhvbGRlcigpIHtcbiAgICByZXR1cm4gdGhpcy5pbWdVcmwgPT09IHRoaXMucGxhY2Vob2xkZXJVcmxcbiAgfVxuICBwcml2YXRlIGltYWdlczogVGh1bWJuYWlsSW1hZ2VPYmplY3RbXSA9IFtdXG5cbiAgY29uc3RydWN0b3IoXG4gICAgQE9wdGlvbmFsKClcbiAgICBASW5qZWN0KFRIVU1CTkFJTF9QTEFDRUhPTERFUilcbiAgICBwcml2YXRlIG9wdGlvbmFsUGxhY2Vob2xkZXJVcmw6IHN0cmluZ1xuICApIHt9XG5cbiAgbmdPbkluaXQoKSB7XG4gICAgdGhpcy51cGRhdGVJbWFnZUxpc3QoKVxuICB9XG5cbiAgbmdPbkNoYW5nZXMoY2hhbmdlczogU2ltcGxlQ2hhbmdlcyk6IHZvaWQge1xuICAgIGlmICghKCd0aHVtYm5haWxVcmwnIGluIGNoYW5nZXMpICYmICEoJ2ZpdCcgaW4gY2hhbmdlcykpIHtcbiAgICAgIHJldHVyblxuICAgIH1cbiAgICB0aGlzLnVwZGF0ZUltYWdlTGlzdCgpXG4gIH1cblxuICBwcml2YXRlIHVwZGF0ZUltYWdlTGlzdCgpIHtcbiAgICBpZiAoIXRoaXMudGh1bWJuYWlsVXJsKSB7XG4gICAgICB0aGlzLnNldFBsYWNlaG9sZGVyKClcbiAgICAgIHJldHVyblxuICAgIH1cbiAgICBjb25zdCB1cmxzID0gQXJyYXkuaXNBcnJheSh0aGlzLnRodW1ibmFpbFVybClcbiAgICAgID8gdGhpcy50aHVtYm5haWxVcmxcbiAgICAgIDogW3RoaXMudGh1bWJuYWlsVXJsXVxuICAgIHRoaXMuaW1hZ2VzID0gdXJsc1xuICAgICAgLm1hcCgodXJsLCBpbmRleCkgPT4gKHtcbiAgICAgICAgdXJsLFxuICAgICAgICBmaXQ6IChBcnJheS5pc0FycmF5KHRoaXMuZml0KSA/IHRoaXMuZml0W2luZGV4XSA6IHRoaXMuZml0KSB8fCAnY292ZXInLFxuICAgICAgfSkpXG4gICAgICAuZmlsdGVyKChpbWcpID0+ICEhaW1nLnVybClcbiAgICBpZiAoIXRoaXMuaW1hZ2VzLmxlbmd0aCkge1xuICAgICAgdGhpcy5zZXRQbGFjZWhvbGRlcigpXG4gICAgICByZXR1cm5cbiAgICB9XG4gICAgdGhpcy5zZXROZXdTcmNJbWFnZSh0aGlzLmltYWdlc1swXSlcbiAgfVxuXG4gIHByaXZhdGUgc2V0TmV3U3JjSW1hZ2UoaW1hZ2U6IFRodW1ibmFpbEltYWdlT2JqZWN0KSB7XG4gICAgdGhpcy5pbWdGaXQgPSBpbWFnZS5maXRcbiAgICB0aGlzLmltZ1VybCA9IGltYWdlLnVybFxuICB9XG5cbiAgcHJpdmF0ZSBzZXRQbGFjZWhvbGRlcigpOiB2b2lkIHtcbiAgICB0aGlzLnNldE5ld1NyY0ltYWdlKHsgdXJsOiB0aGlzLnBsYWNlaG9sZGVyVXJsLCBmaXQ6ICdzY2FsZS1kb3duJyB9KVxuICB9XG5cbiAgdXNlRmFsbGJhY2soKSB7XG4gICAgaWYgKHRoaXMuaW1hZ2VzLmxlbmd0aCA+IDEpIHtcbiAgICAgIHRoaXMuaW1hZ2VzLnNoaWZ0KClcbiAgICAgIHRoaXMuc2V0TmV3U3JjSW1hZ2UodGhpcy5pbWFnZXNbMF0pXG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuc2V0UGxhY2Vob2xkZXIoKVxuICAgIH1cbiAgfVxuXG4gIHNldE9iamVjdEZpdCgpIHtcbiAgICBjb25zdCBjdyA9IHRoaXMuY29udGFpbmVyRWxlbWVudD8ubmF0aXZlRWxlbWVudD8uY2xpZW50V2lkdGhcbiAgICBjb25zdCBjaCA9IHRoaXMuY29udGFpbmVyRWxlbWVudD8ubmF0aXZlRWxlbWVudD8uY2xpZW50SGVpZ2h0XG4gICAgaWYgKFxuICAgICAgdGhpcy5pbWdFbGVtZW50Lm5hdGl2ZUVsZW1lbnQubmF0dXJhbFdpZHRoIDwgY3cgJiZcbiAgICAgIHRoaXMuaW1nRWxlbWVudC5uYXRpdmVFbGVtZW50Lm5hdHVyYWxIZWlnaHQgPCBjaFxuICAgICkge1xuICAgICAgdGhpcy5pbWdGaXQgPSAnc2NhbGUtZG93bidcbiAgICB9XG4gIH1cbn1cbiIsIjxkaXZcbiAgI2NvbnRhaW5lckVsZW1lbnRcbiAgY2xhc3M9XCJoLWZ1bGwgdy1mdWxsIHJlbGF0aXZlIHNocmluay0wIG92ZXJmbG93LWhpZGRlbiBmbGV4IGl0ZW1zLWNlbnRlclwiXG4gIFtuZ0NsYXNzXT1cImlzUGxhY2Vob2xkZXIgPyAnYmctZ3JheS0xMDAnIDogJ2JnLXdoaXRlJ1wiXG4gIFthdHRyLmRhdGEtY3ktaXMtcGxhY2Vob2xkZXJdPVwiaXNQbGFjZWhvbGRlci50b1N0cmluZygpXCJcbj5cbiAgPGltZ1xuICAgICNpbWFnZUVsZW1lbnRcbiAgICBjbGFzcz1cInJlbGF0aXZlIHctZnVsbCBvYmplY3QtY2VudGVyXCJcbiAgICBbbmdDbGFzc109XCJpbWdGaXQgPT09ICdjb250YWluJyA/ICdoLTQvNScgOiAnaC1mdWxsJ1wiXG4gICAgW25nU3R5bGVdPVwieyBvYmplY3RGaXQ6IGltZ0ZpdCB9XCJcbiAgICBhbHQ9XCJ0aHVtYm5haWxcIlxuICAgIGxvYWRpbmc9XCJsYXp5XCJcbiAgICAobG9hZCk9XCJzZXRPYmplY3RGaXQoKVwiXG4gICAgW3NyY109XCJpbWdVcmwgfCBzYWZlOiAndXJsJ1wiXG4gICAgKGVycm9yKT1cInVzZUZhbGxiYWNrKClcIlxuICAvPlxuPC9kaXY+XG4iXX0=